  /* 滚动淡入动画 */
        .fade-on-scroll {
            opacity: 0;
            transform: translateY(35px);
            transition: opacity 0.9s cubic-bezier(0.23, 1, 0.32, 1), transform 0.9s cubic-bezier(0.23, 1, 0.32, 1);
        }
        .fade-on-scroll.visible {
            opacity: 1;
            transform: translateY(0);
        }
        /* 页面主视觉 */
        .news-hero {
            margin-top: 80px;
            height: 30vh;
            min-height: 250px;
            background: linear-gradient(115deg, #e5d8c4, #f3e7d5);
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            position: relative;
            overflow: hidden;
            border-bottom: 1px solid var(--gold-light);
        }
        .news-hero::before {
            content: '';
            position: absolute;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(179,139,74,0.15) 0%, transparent 70%);
            top: -100px;
            right: -100px;
            border-radius: 50%;
        }
        .news-hero::after {
            content: '';
            position: absolute;
            width: 250px;
            height: 250px;
            background: radial-gradient(circle, rgba(179,139,74,0.1) 0%, transparent 70%);
            bottom: -80px;
            left: -80px;
            border-radius: 50%;
        }
        .hero-content h1 {
            font-size: 3.5rem;
            font-weight: 700;
            color: var(--text-dark);
            text-shadow: 0 2px 10px rgba(255,255,255,0.5);
            margin-bottom: 0.5rem;
            position: relative;
            z-index: 2;
        }
        .hero-content p {
            font-size: 1.2rem;
            color: var(--text-muted);
            max-width: 600px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }
        /* 文章卡片网格 */
        .article-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 35px;
            margin: 50px 0 40px;
        }
        .article-card {
            background: var(--warm-surface);
            border-radius: 32px;
            overflow: hidden;
            box-shadow: var(--shadow-warm);
            transition: var(--transition-smooth);
            border: 1px solid rgba(179,139,74,0.15);
        }
        .article-card:hover {
            transform: translateY(-12px);
            border-color: var(--gold);
            box-shadow: 0 40px 60px -12px rgba(179,139,74,0.4);
        }
        .article-card img {
            height: 200px;
            width: 100%;
            transition: transform 0.8s;
        }
        .article-card:hover img {
            transform: scale(1.07);
        }
        .article-info {
            padding: 25px 22px 30px;
        }
        .article-info h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 10px;
            line-height: 1.4;
        }
        .article-info h3 a {
            color: #6b4f2e;
            transition: color 0.3s;
            text-decoration: none; /* 去掉下划线 */
        }
        .article-info h3 a:hover {
            color: var(--gold);
        }
        .article-desc {
            color: var(--text-muted);
            font-size: 0.95rem;
            margin: 10px 0 18px;
            line-height: 1.6;
        }
        .article-meta {
            display: flex;
            justify-content: space-between;
            color: #8f7e6b;
            font-size: 0.9rem;
            border-top: 1px dashed #e0d2bf;
            padding-top: 15px;
        }
        .article-meta i {
            color: var(--gold);
            margin-right: 5px;
        }
        /* 分页样式 */
        .pagination {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 10px;
            margin: 50px 0 30px;
            flex-wrap: wrap;
        }
        .page-num {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 44px;
            height: 44px;
            border-radius: 30px;
            background: var(--warm-surface);
            color: var(--text-muted);
            font-weight: 500;
            border: 1px solid rgba(179,139,74,0.2);
            transition: var(--transition-smooth);
            box-shadow: var(--shadow-warm);
            text-decoration: none;
        }
        .page-num i {
            font-size: 0.9rem;
            color: var(--gold);
        }
        .page-num:hover {
            background: var(--gold);
            color: white;
            border-color: var(--gold);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px -8px rgba(179,139,74,0.6);
        }
        .page-num:hover i {
            color: white;
        }
        .page-num-current {
            background: var(--gold);
            color: white;
            border-color: var(--gold);
            font-weight: 600;
            cursor: default;
            pointer-events: none;
        }
        .page-num-current:hover {
            background: var(--gold);
            color: white;
            transform: none;
            box-shadow: var(--shadow-warm);
        }
        .page-num.dots {
            border: none;
            background: transparent;
            box-shadow: none;
            pointer-events: none;
            width: auto;
            padding: 0 8px;
            color: var(--text-muted);
        }
        /* 响应式调整 */
        @media (max-width: 640px) {
            .page-num {
                width: 38px;
                height: 38px;
            }
        }