    /* ========= 新闻模块 ========= */
        .news-section {
            padding: 70px 0;
            background-color: #f8fafd;
        }
        .section-title {
            text-align: center;
            font-size: 2.2rem;
            font-weight: 700;
            color: #0a2b3e;
            margin-bottom: 16px;
        }
        .section-sub {
            text-align: center;
            color: #5e7e9a;
            max-width: 700px;
            margin: 0 auto 48px auto;
        }
        .news-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 32px;
        }
        .news-card {
            background: white;
            border-radius: 28px;
            overflow: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 8px 20px rgba(0,0,0,0.04);
            border: 1px solid #eef2f6;
        }
        .news-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 30px -12px rgba(0,0,0,0.1);
            border-color: rgba(247, 179, 43, 0.3);
        }
        .news-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
            transition: transform 0.4s;
        }
        .news-card:hover .news-image {
            transform: scale(1.02);
        }
        .news-content {
            padding: 24px;
        }
        .news-date {
            font-size: 0.8rem;
            color: #f7b32b;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .news-date i {
            font-size: 0.7rem;
        }
        .news-title {
            font-size: 1.25rem;
            font-weight: 700;
            color: #0a2b3e;
            margin-bottom: 12px;
            line-height: 1.4;
        }
        .news-summary {
            color: #5e7e9a;
            font-size: 0.9rem;
            line-height: 1.5;
            margin-bottom: 20px;
        }
        .news-link {
            color: #f7b32b;
            font-weight: 500;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            transition: gap 0.2s;
        }
        .news-link:hover {
            gap: 10px;
            color: #e09d1c;
        }
        @media (max-width: 768px) {
            .news-grid {
                gap: 24px;
            }
            .news-image {
                height: 180px;
            }
            .news-title {
                font-size: 1.1rem;
            }
        }