@import url('font-awesome.min.css');


:root {
    --primary-color: rgba(228, 119, 19, 1);
    --primary-hover: rgba(228, 119, 19, 1);
    --secondary-color: #457b9d;
    --accent-color: #f1c40f;
    --light-bg: #f8f9fa;
    --dark-bg: #1a1a1a;
    --text-dark: #333333;
    --text-light: #f8f9fa;
    --text-color-102: rgba(102, 102, 102, 1);
    --border-radius: 4px;
    --box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    /* 边框颜色 */
    --border-primary: #fecaca;
    --border-secondary: #fca5a5;
    --border-accent: #f87171;


    --accent-light: rgba(255, 248, 225, 0.4);
    ;
    /* 新增鲜亮配色方案 */
    --vibrant-red: #FF3B30;
    --vibrant-blue: #007AFF;
    --vibrant-green: #34C759;
    --vibrant-orange: #FF9500;
    --vibrant-purple: #AF52DE;
    --vibrant-yellow: #FFCC00;
    --vibrant-teal: #5AC8FA;
    --vibrant-pink: #FF2D55;

    /* 渐变色 */
    --gradient-primary: linear-gradient(135deg, var(--vibrant-red) 0%, #FF8A80 100%);
    --gradient-secondary: linear-gradient(135deg, var(--vibrant-blue) 0%, #64B5F6 100%);
    --gradient-accent: linear-gradient(135deg, var(--vibrant-yellow) 0%, #FFD54F 100%);
    --gradient-success: linear-gradient(135deg, var(--vibrant-green) 0%, #8BC34A 100%);
    --gradient-info: linear-gradient(135deg, var(--vibrant-teal) 0%, #4DD0E1 100%);
    --gradient-purple: linear-gradient(135deg, var(--vibrant-purple) 0%, #B39DDB 100%);
}

@font-face {
    font-family: "iconfont logo";
    src: url('https://at.alicdn.com/t/font_985780_km7mi63cihi.eot?t=1545807318834');
    src: url('https://at.alicdn.com/t/font_985780_km7mi63cihi.eot?t=1545807318834#iefix') format('embedded-opentype'),
        url('https://at.alicdn.com/t/font_985780_km7mi63cihi.woff?t=1545807318834') format('woff'),
        url('https://at.alicdn.com/t/font_985780_km7mi63cihi.ttf?t=1545807318834') format('truetype'),
        url('https://at.alicdn.com/t/font_985780_km7mi63cihi.svg?t=1545807318834#iconfont') format('svg');
}

/* 本地字体引用 */
@font-face {
    font-family: 'Noto Sans SC';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/NotoSansSC-Regular.woff2') format('woff2');
}

@font-face {
    font-family: 'Font Awesome 6 Brands';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/fa-brands-400.ttf') format('truetype');
}

@font-face {
    font-family: 'Font Awesome 6 Free';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/fa-regular-400.ttf') format('truetype');
}

@font-face {
    font-family: 'Font Awesome 6 Free';
    font-style: normal;
    font-weight: 900;
    src: url('../fonts/fa-solid-900.ttf') format('truetype');
}

/* 防止页面水平滚动 */
html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

body {
    font-family: "Microsoft YaHei", sans-serif;
    overflow-x: hidden;
}

html {
    overflow-x: hidden;
}

::-webkit-scrollbar {
    display: none;
}

* {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.color-primary {
    color: var(--primary-color);
}

/* 基础样式 */
body {
    font-family: 'Microsoft YaHei', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    font-size: 16px;
    background-color: var(--light-bg);

}

a {
    /* color: var(--primary-color); */
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-hover);
}

.font-14 {
    font-size: 14px;
}

.font-16 {
    font-size: 16px;
}

.font-18 {
    font-size: 18px;
}

.line-clamp-1 {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    line-height: 1.6;

}

.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    line-height: 1.6;
    min-height: 3.25rem;
}

.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    line-height: 1.6;
}

.line-clamp-4 {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    line-height: 1.6;
}

.bg-black-800 {
    background: rgba(0, 0, 0, 0.8);
}

.bg-black-700 {
    background: rgba(0, 0, 0, 0.7);
}

.text-align-center {
    text-align: center;
}

.text-align-left {
    text-align: left;
}

.text-align-right {
    text-align: right;
}

.line-height-15 {
    line-height: 1.5;
}

.line-height-16 {
    line-height: 1.6;
}

.line-height-17 {
    line-height: 1.7;
}

.line-height-18 {
    line-height: 1.8;
}

.text-indent-2 {
    text-indent: 2em;
}

.bg-gray {
    background: rgba(245, 245, 247, 1);
}

.bg-gray-light {
    background: RGBA(249, 251, 252, 1);
}

.text-color {
    color: rgba(102, 102, 102, 1);
}

.text-gray {
    color: rgba(153, 153, 153, 1);
}

.main-header {
    position: relative;
    z-index: 99;
}

.sticky {
    position: fixed;
    width: 100%;
}

/* 模块化色块样式 */
.color-block {
    padding: 2rem;
    border-radius: var(--border-radius);
    margin-bottom: 1.5rem;
    color: var(--text-light);
    box-shadow: var(--box-shadow);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.color-block::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
    z-index: -1;
}

.color-block:hover::before {
    transform: translateX(0);
}

.block-primary {
    background: var(--gradient-primary);
}

.block-secondary {
    background: var(--gradient-secondary);
}

.block-accent {
    background: var(--gradient-accent);
}

/* 栏目样式 */
.column-header {
    position: relative;
    padding-bottom: 0.75rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: rgba(245, 158, 11);
}



/* .items-start .fas {
    color: var(--primary-color)
} */

/* .column-header:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 3px;
    transition: width 0.3s ease;
} */

.column-header:hover:after {
    width: 100px;
}

@media (max-width: 1279px) {
    .container {
        max-width: 100%;
    }
}

nav a {
    font-size: 18px;
}

/* 卡片样式 */
.card {
    background-color: #fff;
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--box-shadow);
    position: relative;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
}

.card:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.card-img-top {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card:hover .card-img-top {
    transform: scale(1.05);
}

.card-body {
    padding: 1.5rem;
}

.card-title {
    /* color: var(--text-dark); */
    font-weight: 700;
    margin-bottom: 0.75rem;
    position: relative;
    display: inline-block;
}

.card-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--vibrant-red);
    transition: width 0.3s ease;
}

.card:hover .card-title::after {
    width: 100%;
}

.card-text {
    color: #666;
    margin-bottom: 1.25rem;
}

/* 按钮样式 */
.btn {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: width 0.4s ease;
    z-index: -1;
}

.btn:hover::before {
    width: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
    color: #fff;
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.4);
}

.btn-primary:hover {
    box-shadow: 0 6px 20px rgba(230, 57, 70, 0.6);
    transform: translateY(-2px);
    color: #fff;
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--vibrant-red);
    color: var(--vibrant-red);
}

.btn-outline:hover {
    background: var(--gradient-primary);
    color: #fff;
    border-color: transparent;
}

/* 特殊效果 */
.hover-zoom {
    overflow: hidden;
}

.hover-zoom img {
    transition: transform 0.5s ease;
}

.hover-zoom:hover img {
    transform: scale(1.1);
}

/* 新增动画效果 */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(230, 57, 70, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(230, 57, 70, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(230, 57, 70, 0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

/* 新增悬浮动画类 */
.float-animation {
    animation: float 3s ease-in-out infinite;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .column-header {
        text-align: center;
    }

    .column-header:after {
        left: 50%;
        transform: translateX(-50%);
    }
}

/* 30周年庆祝主题 */
.anniversary-badge {
    background: linear-gradient(90deg, var(--vibrant-red), #9d0208);
    color: white;
    font-weight: bold;
    padding: 0.5rem 1.5rem;
    text-align: center;
    animation: pulse 2s infinite;
    border-radius: 30px;
    box-shadow: 0 5px 15px rgba(230, 57, 70, 0.5);
    position: relative;
    overflow: hidden;
}

.anniversary-badge::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
    transform: rotate(30deg);
    animation: shimmer 3s infinite;
    pointer-events: none;
}

/* 产品系列展示样式 */
.product-series {
    margin: 3rem 0;
}

.series-card {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    background: #fff;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 100%;
}

.series-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.series-card .card-accent {
    position: absolute;
    top: 0;
    left: 0;
    height: 6px;
    width: 100%;
    background: var(--gradient-primary);
}

.series-icon {
    width: 80px;
    height: 80px;
    margin: 1.5rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 2rem;
    transition: var(--transition);
    background: var(--light-bg);
    color: var(--vibrant-red);
}

.series-card:hover .series-icon {
    transform: rotateY(180deg);
    background: var(--vibrant-red);
    color: white;
}

.series-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.series-desc {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1.5rem;
}

/* 文章列表样式 */
.article-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.article-item {
    padding: 1rem;
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.article-item:last-child {
    margin-bottom: 0;
}

.article-title {
    font-weight: 600;
    transition: color 0.3s ease;
}

.article-title:hover {
    color: var(--vibrant-red);
}

.article-meta {
    font-size: 0.85rem;
    color: #777;
}

/* 新闻卡片样式增强 */
.news-slide {
    position: relative;
    overflow: hidden;
}

.news-slide .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
    padding: 2rem 1.5rem 1.5rem;
    color: white;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease;
}

.news-slide:hover .overlay {
    transform: translateY(0);
    opacity: 1;
}

/* 交错背景色块 */
.alternating-bg {
    position: relative;
    z-index: 1;
}

.alternating-bg:nth-child(odd) {
    background-color: #f9f9f9;
}

.alternating-bg:nth-child(even) {
    background-color: white;
}

/* 新增波浪分隔符 */
.wave-divider {
    position: relative;
    height: 70px;
    overflow: hidden;
}

.wave-divider svg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    fill: white;
}

/* 闪光边框效果 */
.glowing-border {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.glowing-border::before {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg,
            var(--vibrant-red),
            var(--vibrant-blue),
            var(--vibrant-green),
            var(--vibrant-yellow),
            var(--vibrant-purple),
            var(--vibrant-red));
    background-size: 400%;
    z-index: -1;
    animation: glowing 20s linear infinite;
    border-radius: calc(var(--border-radius) + 2px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.glowing-border:hover::before {
    opacity: 1;
}

@keyframes glowing {
    0% {
        background-position: 0 0;
    }

    50% {
        background-position: 400% 0;
    }

    100% {
        background-position: 0 0;
    }
}

/* 主题切换按钮 */
.theme-switcher {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    gap: 10px;
}

.theme-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid white;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.theme-btn:hover {
    transform: scale(1.15);
}

.theme-btn.anniversary {
    background: linear-gradient(135deg, #D7000F, #F6C845);
}

.theme-btn.brand {
    background: linear-gradient(135deg, #00966C, #4CAF50);
}

.theme-btn.contrast {
    background: linear-gradient(135deg, #004E92, #FF8C00);
}

/* Banner Aspect Ratio */
.banner-container {
    position: relative;
    padding-top: 27.865%;
    /* 535 / 1920 */
    height: 0;
    overflow: hidden;
}

.banner-container .banner-swiper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Swiper Customization */
.banner-swiper .swiper-button-next,
.banner-swiper .swiper-button-prev {
    color: #ffffff;
    background-color: rgba(0, 0, 0, 0.3);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.banner-swiper .swiper-button-next:hover,
.banner-swiper .swiper-button-prev:hover {
    background-color: rgba(0, 0, 0, 0.5);
}

.banner-swiper .swiper-button-next::after,
.banner-swiper .swiper-button-prev::after {
    font-size: 24px;
    font-weight: bold;
}

.banner-swiper .swiper-pagination-bullet {
    background-color: rgba(255, 255, 255, 0.7);
    width: 10px;
    height: 10px;
    opacity: 1;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.banner-swiper .swiper-pagination-bullet-active {
    background-color: #D7000F;
    /* Anniversary Red */
    transform: scale(1.2);
}

.announcement-swiper {
    overflow: hidden;
}

/* Enhanced Hover and Active Effects */

/* General interactive element scaling */
.hover-lift,
.btn,
.related-link-card,
.article-item {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.related-link-card:hover .fa-phone-alt,
.related-link-card:hover .fa-download,
.related-link-card:hover .fa-newspaper,
.related-link-card:hover .fa-envelope,
.related-link-card:hover .fa-hand-holding-heart,
.related-link-card:hover .fa-globe-asia {
    animation: icon-bounce 0.6s ease;
}

/* Button active state */
.btn:active,
.news-tab-btn:active,
.banner-prev:active,
.banner-next:active {
    transform: scale(0.95);
    transition: transform 0.1s ease;
}

/* Product card icon hover effect */
.product-card:hover .product-icon {
    transform: rotate(360deg) scale(1.2);
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.product-card .product-icon {
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}


/* Keyframe for icon bounce */
@keyframes icon-bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* 视差滚动效果 */
.rellax {
    position: relative;
    z-index: 1;
}

/* 图标旋转效果 */
.icon-rotate {
    animation: icon-spin 4s linear infinite;
}

.icon-rotate-hover {
    transition: transform 0.5s ease;
}

.business-card:hover .icon-rotate-hover {
    transform: rotate(360deg);
}

@keyframes icon-spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* 时间轴样式 */
.timeline-container {
    position: relative;
    padding: 20px 0;
}

.timeline-item {
    position: relative;
    padding: 20px;
    /* margin-bottom: 30px; */
}

/* .timeline-dot {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: linear-gradient(to right, #e60012, #f59e0b);
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 0 0 4px rgba(230, 0, 18, 0.2);
} */

.timeline-content {
    max-width: 90%;
    margin: 0 auto;
    transform: translateY(0);
    transition: all 0.3s ease;
}

/* .timeline-year {
    display: inline-block;
    padding: 5px 15px;
    background: linear-gradient(to right, #e60012, #f59e0b);
    color: white;
    border-radius: 20px;
    font-weight: bold;
    margin-bottom: 10px;
} */

/* 3D模型容器样式 */
#product-model-container {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

#product-model-container canvas {
    display: block;
    width: 100%;
    height: 100%;
}

/* AR按钮样式 */
#ar-view-btn {
    position: relative;
    overflow: hidden;
}

#ar-view-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.5s ease;
}

#ar-view-btn:hover::before {
    transform: translate(-50%, -50%) scale(2);
}

/* 模型按钮样式 */
#model-btn-1.active,
#model-btn-2.active,
#model-btn-3.active {
    background-color: #e60012;
    color: white;
}

/* 展开内容样式 */
.content-short,
.content-full {
    transition: all 0.5s ease;
}

.toggle-content-btn {
    transition: transform 0.3s ease;
}

.toggle-content-btn.active {
    transform: rotate(180deg);
}

/* 移动端特殊样式 */
@media (max-width: 768px) {
    /* * {
        max-width: 100%;
        box-sizing: border-box;
    } */

    .wow.fadeInLeft,
    .wow.fadeInRight {
        overflow: hidden;
    }

    body {
        max-width: 100%;
        overflow-x: hidden;
    }

    .text-indent-2 {
        text-indent: 0;
    }

    .banner-container {
        padding-top: 50.865%;
    }

    /* 移动端隐藏顶部状态栏 */
    .top-status-bar {
        display: none !important;
    }

    /* 移动端隐藏底部特定栏目 */
    .footer-hide-mobile {
        display: none !important;
    }

    /* 移动端新闻分类横向滑动 */
    .mobile-news-tabs {
        display: flex;
        overflow-x: auto;
        white-space: nowrap;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding-bottom: 8px;
    }

    .mobile-news-tabs::-webkit-scrollbar {
        display: none;
    }

    .mobile-news-tab {
        flex: 0 0 auto;
        scroll-snap-align: start;
        margin-right: 10px;
        padding: 8px 16px;
        background: #f9f9f9;
        border-radius: 20px;
        font-size: 14px;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
        transition: all 0.3s;
    }

    .mobile-news-tab.active {
        background: linear-gradient(90deg, #d7000f 0%, #ff6a3c 100%);
        color: white;
        box-shadow: 0 3px 8px rgba(215, 0, 15, 0.2);
    }
}

.theme-footer-link {
    color: var(--text-light);
    transition: color 0.3s ease;
}

.shopping-btn {
    width: 105px;
    height: 48px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    border: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* 分页样式 */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.page-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border: 2px solid #E5E7EB;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    color: #666666;
    font-weight: 500;
    font-size: 0.875rem;
    background: white;
    user-select: none;
}

.page-item:hover:not(.disabled) {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.page-item.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.page-item.disabled {
    opacity: 0.4;
    cursor: not-allowed;
    background: #F3F4F6;
    border-color: #D1D5DB;
}

.page-item.disabled:hover {
    transform: none;
    box-shadow: none;
}

/* 分页信息 */
.pagination-info {
    text-align: center;
    margin-bottom: 1rem;
    color: #666666;
    font-size: 0.875rem;
}

/* 分页导航按钮 */
.page-nav {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.75rem;
}

.page-nav i {
    font-size: 0.75rem;
}

/* footer a {
    color: rgba(209, 213, 219, var(--tw-text-opacity));
} */

.layui-laypage-vpa a,
.layui-laypage-vpa span {
    font-size: 1rem;
    /* margin: 0 0.5rem; */
    padding: 0 12px;
    /* height: 40px;
    min-width: 40px;
    line-height: 40px; */
    border: 1px solid #E5E7EB;
}

.layui-laypage-vpa a:hover {
    color: var(--primary-color);
}

.layui-laypage-vpa .layui-laypage-curr .layui-laypage-em {
    background: var(--primary-color);
    color: white;
}

.layui-laypage-vpa .layui-laypage-curr a {
    color: var(--primary-color);
}