/* 新闻内容容器 */
.news-container {
    padding: 80px 20px;
    background: #f9fafb;
}

.section-title {
    text-align: center;
    font-size: 32px;
    color: #004a9e;
    margin-bottom: 40px;
}

.news-list {
    max-width: 1200px;
    margin: 0 auto;
}

.news-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.news-item img {
    width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-right: 20px;
}

.news-info {
    flex: 1;
}

.news-info h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
}

.news-info p {
    line-height: 1.6;
    color: #555;
    margin-bottom: 10px;
}

.news-date {
    font-size: 14px;
    color: #888;
}

/* 移动端适配 */
@media (max-width: 768px) {
    .news-item {
        flex-direction: column;
    }

    .news-item img {
        width: 100%;
        height: 200px;
        margin-right: 0;
        margin-bottom: 20px;
    }

    .section-title {
        font-size: 28px;
    }

    .news-info h2 {
        font-size: 20px;
    }

    .news-info p {
        font-size: 14px;
    }
}
