        .news-section { padding: 80px 0; background: #f8fafc; }

        /* ===== 分类筛选 ===== */
        .news-filter {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-bottom: 50px;
            flex-wrap: wrap;
        }

        .news-filter a {
            display: inline-block;
            padding: 10px 28px;
            border: 2px solid #e2e8f0;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 500;
            color: #64748b;
            transition: all 0.3s;
            position: relative;
            background: #fff;
        }

        .news-filter a:hover,
        .news-filter a.active {
            background: linear-gradient(135deg, #2563eb, #7c3aed);
            border-color: transparent;
            color: #fff;
            box-shadow: 0 4px 15px rgba(37,99,235,0.2);
        }

        /* ===== 新闻列表 ===== */
        .news-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }

        .news-card {
            background: #fff;
            border-radius: 20px;
            overflow: hidden;
            transition: all 0.4s;
            border: 1px solid #f1f5f9;
            box-shadow: 0 2px 15px rgba(0,0,0,0.03);
            display: flex;
            flex-direction: column;
        }

        .news-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 50px rgba(37,99,235,0.07);
            border-color: rgba(37,99,235,0.1);
        }

        .news-card .nc-img {
            height: 220px;
            overflow: hidden;
            position: relative;
        }

        .news-card .nc-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .news-card:hover .nc-img img { transform: scale(1.06); }

        .news-card .nc-meta {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 12px;
        }

        .news-card .nc-meta .nc-cat {
            padding: 4px 12px;
            background: #eef2ff;
            color: #4f46e5;
            font-size: 12px;
            font-weight: 500;
            border-radius: 50px;
        }

        .news-card .nc-meta .nc-date {
            font-size: 13px;
            color: #94a3b8;
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .news-card .nc-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }

        .news-card .nc-body h3 {
            font-size: 18px;
            color: #0f172a;
            line-height: 1.5;
            margin-bottom: 12px;
            font-weight: 600;
            flex: 1;
        }

        .news-card .nc-body .nc-excerpt {
            font-size: 14px;
            color: #94a3b8;
            line-height: 1.7;
            margin-bottom: 16px;
        }

        .news-card .nc-body .nc-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 16px;
            border-top: 1px solid #f1f5f9;
        }

        .news-card .nc-body .nc-footer .nc-views {
            font-size: 13px;
            color: #94a3b8;
        }

        .news-card .nc-body .nc-footer .nc-link {
            color: #2563eb;
            font-weight: 600;
            font-size: 14px;
            display: inline-flex;
            align-items: center;
            gap: 4px;
            transition: gap 0.3s;
        }

        .news-card:hover .nc-body .nc-footer .nc-link { gap: 8px; }

        /* ===== 分页 ===== */
        .pagination {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin-top: 50px;
            list-style: none;
            padding: 0;
        }

        .pagination li {
            display: inline-flex;
        }

        .pagination li a,
        .pagination li span {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 42px;
            height: 42px;
            padding: 0 6px;
            border: 2px solid #e2e8f0;
            border-radius: 10px;
            font-size: 14px;
            color: #64748b;
            transition: all 0.3s;
            background: #fff;
            text-decoration: none;
        }

        .pagination li a:hover {
            background: linear-gradient(135deg, #2563eb, #7c3aed);
            border-color: transparent;
            color: #fff;
            box-shadow: 0 4px 15px rgba(37,99,235,0.2);
        }

        .pagination li.active span {
            background: linear-gradient(135deg, #2563eb, #7c3aed);
            border-color: transparent;
            color: #fff;
            box-shadow: 0 4px 15px rgba(37,99,235,0.2);
        }

        .pagination li.disabled span {
            background: #f1f5f9;
            color: #cbd5e1;
            border-color: #e2e8f0;
            cursor: not-allowed;
        }

        .pagination li.next-page a,
        .pagination li.next-page span {
            padding: 0 18px;
        }

        @media (max-width: 992px) {
            .news-grid { grid-template-columns: 1fr; }
        }

        @media (max-width: 768px) {
            .news-card .nc-img { height: 180px; }
            .news-card .nc-body { padding: 20px; }
            .news-card .nc-body h3 { font-size: 16px; }
        }
        @media (max-width: 480px) {
            .news-filter a { padding: 6px 16px; font-size: 13px; }
            .pagination li a,
            .pagination li span { min-width: 36px; height: 36px; font-size: 13px; }
        }
