
        /* ===== 页面级变量 ===== */
        :root {
            --radius: 12px;
            --radius-sm: 8px;
            --radius-round: 50px;
            --shadow: 0 5px 20px rgba(0, 0, 0, .06);
            --shadow-hover: 0 12px 35px rgba(0, 0, 0, .1);
            --transition: .3s;
        }

        /* ===== 新闻列表区 ===== */
        .news-list-section { padding: 80px 0; background: var(--bg-light); }

        /* ===== 分类筛选 ===== */
        .news-filter {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-bottom: 40px;
            flex-wrap: wrap;
        }
        .news-filter a {
            display: inline-block;
            padding: 10px 28px;
            border: 2px solid var(--border);
            border-radius: var(--radius-round);
            font-size: 15px;
            font-weight: 500;
            color: var(--text-light);
            transition: all var(--transition);
        }
        .news-filter a:hover,
        .news-filter a.active {
            background: var(--primary);
            border-color: var(--primary);
            color: var(--white);
        }

        /* ===== 新闻列表项 ===== */
        .news-list-item {
            display: flex;
            gap: 30px;
            background: var(--white);
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            margin-bottom: 30px;
            transition: all .4s;
            text-decoration: none;
            color: inherit;
        }
        .news-list-item:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
        }

        .news-list-item .news-thumb {
            width: 300px;
            min-height: 220px;
            overflow: hidden;
            flex-shrink: 0;
            aspect-ratio: 300 / 220;
        }
        .news-list-item .news-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform .5s;
        }
        .news-list-item:hover .news-thumb img { transform: scale(1.08); }

        .news-list-item .news-detail {
            padding: 30px 30px 30px 0;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .news-list-item .news-category {
            display: inline-block;
            padding: 4px 14px;
            background: var(--primary);
            color: var(--white);
            font-size: 12px;
            border-radius: 20px;
            margin-bottom: 12px;
            align-self: flex-start;
        }

        .news-list-item .news-detail h3 {
            font-size: 20px;
            color: var(--dark);
            margin-bottom: 12px;
            line-height: 1.4;
            transition: color var(--transition);
        }
        .news-list-item:hover .news-detail h3 { color: var(--primary); }

        .news-list-item .news-detail p {
            font-size: 14px;
            color: var(--text-muted);
            line-height: 1.8;
            margin-bottom: 15px;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            line-clamp: 3;
            overflow: hidden;
        }

        .news-list-item .news-meta {
            font-size: 13px;
            color: var(--gray-light);
            display: flex;
            gap: 20px;
        }
        .news-list-item .news-meta span {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .news-list-item .news-readmore {
            color: var(--primary);
            font-weight: 600;
            font-size: 14px;
            transition: color var(--transition);
            margin-top: auto;
        }
        .news-list-item .news-readmore:hover { color: var(--primary-dark); }

        /* ===== 空状态 ===== */
        .news-empty {
            text-align: center;
            padding: 80px 20px;
            color: var(--text-muted);
        }
        .news-empty .empty-icon { font-size: 56px; margin-bottom: 20px; opacity: .5; }
        .news-empty p { font-size: 16px; margin-bottom: 8px; }
        .news-empty .empty-hint { font-size: 14px; color: var(--gray-light); }

        /* ===== 分页 ===== */
        .pagination {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin-top: 50px;
            padding: 0;
            list-style: none;
        }
        .pagination li {
            display: inline-flex;
        }
        .pagination a,
        .pagination span {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 42px;
            height: 42px;
            padding: 0 4px;
            border: 2px solid var(--border);
            border-radius: var(--radius-sm);
            font-size: 15px;
            color: var(--text-light);
            background: var(--white);
            transition: all var(--transition);
        }
        .pagination a:hover {
            background: var(--primary);
            border-color: var(--primary);
            color: var(--white);
        }
        .pagination .active span {
            background: var(--primary);
            border-color: var(--primary);
            color: var(--white);
        }
        .pagination .disabled span {
            color: var(--gray-light);
            border-color: var(--border-light);
            background: #fafafa;
            cursor: not-allowed;
        }

        /* ===== 响应式 ===== */
        @media (max-width: 992px) {
            .news-list-item { flex-direction: column; }
            .news-list-item .news-thumb {
                width: 100%;
                height: 240px;
                aspect-ratio: auto;
            }
            .news-list-item .news-detail { padding: 20px; }
        }
        @media (max-width: 768px) {
            .news-filter { gap: 10px; }
            .news-filter a { padding: 8px 18px; font-size: 13px; }
        }
    