/* ========== 新闻资讯区块 ========== */
.news-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8eef5 100%);
}

.news-section .news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.news-section .news-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.news-section .news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 91, 172, 0.15);
}

.news-section .news-image {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.news-section .news-content {
    padding: 20px;
}

.news-section .news-date {
    font-size: 13px;
    color: #999;
    margin-bottom: 12px;
}

.news-section .news-date i {
    margin-right: 5px;
    color: #005BAC;
}

.news-section .news-content h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.4;
}

.news-section .news-content h4 a {
    color: #333;
    transition: color 0.3s ease;
}

.news-section .news-content h4 a:hover {
    color: #005BAC;
}

.news-section .news-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-section .text-center {
    text-align: center;
}

.news-section .mt-40 {
    margin-top: 40px;
}

.news-section .no-data-tip {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: #999;
    font-size: 16px;
    background: #fff;
    border-radius: 12px;
}

.news-section .no-data-tip::before {
    content: '\f07a';
    font-family: FontAwesome;
    font-size: 48px;
    display: block;
    margin-bottom: 15px;
    color: #ddd;
}

@media (max-width: 992px) {
    .news-section {
        padding: 60px 0;
    }
    
    .news-section .news-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .news-section .news-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .news-section .news-image {
        height: 180px;
    }
    
    .news-section .news-content h4 {
        font-size: 16px;
    }
}
