 @import url('static/css/0c550b53d3c043a588dcb00b9578c707.css');
        
        body {
            font-family: 'Noto Sans SC', sans-serif;
            scroll-behavior: smooth;
        }
        
        .card-hover {
            transition: all 0.3s ease;
        }
        
        .card-hover:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px -5px rgba(59, 130, 246, 0.4);
        }
        
        .news-card {
            transition: all 0.3s ease;
        }
        
        .news-card:hover {
            transform: translateY(-3px);
        }
        
        .news-card:hover .news-title {
            color: #3b82f6;
        }
        
        .category-tag {
            transition: all 0.2s ease;
        }
        
        .category-tag:hover {
            background-color: #3b82f6;
            color: white;
        }
        
        .category-tag.active {
            background-color: #3b82f6;
            color: white;
        }
        
        /* 响应式导航 */
        .mobile-nav {
            transform: translateX(-100%);
            transition: transform 0.3s ease-in-out;
        }
        
        .mobile-nav.active {
            transform: translateX(0);
        }
        
        /* 骨架屏效果 */
        .skeleton {
            background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
            background-size: 200% 100%;
            animation: skeleton-loading 1.5s infinite;
        }
        
        @keyframes skeleton-loading {
            0% {
                background-position: 200% 0;
            }
            100% {
                background-position: -200% 0;
            }
        }
        
        /* 滚动动画 */
        .scroll-reveal {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }
        
        .scroll-reveal.active {
            opacity: 1;
            transform: translateY(0);
        }
		 
		 /* ========== 分页样式（不修改HTML结构） ========== */
.mt-10.flex.justify-center {
    gap: 0.5rem;
    flex-wrap: wrap;
}

.mt-10.flex.justify-center > span,
.mt-10.flex.justify-center > span > a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.5rem;
    height: 2.5rem;
    padding: 0 0.75rem;
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1;
    border-radius: 0.375rem;
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    color: #1e293b;
    transition: all 0.2s ease;
    cursor: pointer;
    text-decoration: none;
}

/* 针对 span 内直接包含 a 的情况，去除重复背景 */
.mt-10.flex.justify-center > span > a {
    background-color: transparent;
    border: none;
    padding: 0;
    width: 100%;
    height: 100%;
}

/* 页面状态信息（共X条）特殊样式 */
.mt-10.flex.justify-center .page-status {
    background-color: #f8fafc;
    border-color: #e2e8f0;
    color: #475569;
    cursor: default;
    pointer-events: none;
    font-weight: normal;
}

/* 链接悬停效果 */
.mt-10.flex.justify-center span:not(.page-status) > a:hover,
.mt-10.flex.justify-center > span:not(.page-status):hover {
    background-color: #eff6ff;
    border-color: #3b82f6;
    color: #2563eb;
    transform: translateY(-1px);
}

/* 当前页码高亮 */
.mt-10.flex.justify-center .page-num-current {
    background-color: #3b82f6;
    border-color: #3b82f6;
    color: #ffffff;
    cursor: default;
    pointer-events: none;
}

/* 禁用状态（前一页/后一页不可用时） */
.mt-10.flex.justify-center .page-pre a[href="javascript:;"],
.mt-10.flex.justify-center .page-next a[href="javascript:;"] {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

/* 首尾页普通样式 */
.mt-10.flex.justify-center .page-index a,
.mt-10.flex.justify-center .page-last a {
    background-color: #f8fafc;
}

/* 移动端适配 */
@media (max-width: 640px) {
    .mt-10.flex.justify-center {
        gap: 0.25rem;
    }
    .mt-10.flex.justify-center > span,
    .mt-10.flex.justify-center > span > a {
        min-width: 2rem;
        height: 2rem;
        padding: 0 0.5rem;
        font-size: 0.75rem;
    }
    .mt-10.flex.justify-center .page-status {
        width: 100%;
        text-align: center;
        background-color: transparent;
        border: none;
        margin-bottom: 0.5rem;
    }
}
        /* 二维码弹窗样式2 */
        /* 二维码弹窗默认隐藏 */
    .qrcode-popup2 {
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        /* 关键：垂直方向不设置 top/bottom，等待 hover 时设置 bottom */
    }

    /* 鼠标指向父容器时显示弹窗，并使其出现在按钮上方 */
    .qrcode-trigger:hover .qrcode-popup2 {
        opacity: 1;
        visibility: visible;
    }