/* 新闻通知页面样式 */

.news-list {
    margin-top: 20px;
}

.news-item {
    background: white;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.news-item h3 {
    margin: 0 0 10px 0;
    color: #1a5276;
}

.news-item h3 a {
    text-decoration: none;
    color: #1a5276;
    transition: color 0.3s ease;
}

.news-item h3 a:hover {
    color: #3498db;
}

.news-date {
    color: #666;
    font-size: 14px;
    margin-left: 15px;
    font-weight: normal;
}

.news-summary {
    color: #333;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .news-item {
        padding: 20px;
    }
}
