 /* 基础样式文件 */
 * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}
/* Chrome/Safari/Edge 滚动条样式 */
::-webkit-scrollbar {
    width: 12px;               /* 垂直滚动条宽度 */
    height: 12px;              /* 水平滚动条高度 */
  }
  
  ::-webkit-scrollbar-thumb {
    background: #9ACD32;       /* 滑块颜色 */
    border-radius: 6px;        /* 圆角 */
    border: 3px solid transparent; /* 透明边框（创造细条效果） */
    background-clip: content-box; /* 颜色仅填充内容区域 */
  }
  
  ::-webkit-scrollbar-thumb:hover {
    background: #85b82a;       /* 悬停时稍深的绿色 */
  }
  
  ::-webkit-scrollbar-track {
    background: transparent;   /* 透明轨道 */
  }

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
    color: #333;
    line-height: 1.6;
    
    overflow-x: hidden;
}
@font-face {
    font-family: "iconfont"; /* Project id 4956672 */
    src: url('../font/iconfont.woff2?t=1750651288490') format('woff2'),
         url('../font/iconfont.woff?t=1750651288490') format('woff'),
         url('../font/iconfont.ttf?t=1750651288490') format('truetype');
}
.iconfont {
    font-family: "iconfont" !important;
    font-size: 16px;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 40px 20px;
}
.container2 {
    max-width: 1600px;
    margin: 0 auto;
    padding: 20px 20px;
}

/* 核心分页样式 */
        .custom-pagination {
            display: flex;
            justify-content: center;
            margin: 30px 0;
        }
        
        .pagination {
            display: flex;
            list-style: none;
            border-radius: 8px;
            overflow: hidden;
            background: #fff;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            border: 1px solid #eaeaea;
        }
        
        .pagination li {
            margin: 0;
        }
        
        .pagination li a, 
        .pagination li span {
            display: flex;
            align-items: center;
            justify-content: center;
            min-width: 40px;
            height: 40px;
            padding: 0 15px;
            text-decoration: none;
            color: #4a5568;
            font-weight: 500;
            transition: all 0.3s ease;
            border-right: 1px solid #eaeaea;
        }
        
        .pagination li:last-child a,
        .pagination li:last-child span {
            border-right: none;
        }
        
        .pagination li a:hover {
            background: #f1f5f9;
            color: #4b6cb7;
        }
        
        .pagination li.active span {
            background: #9ACD32;
            color: white;
            font-weight: 600;
        }
        
        .pagination li.disabled span {
            color: #cbd5e0;
            cursor: not-allowed;
        }
/* === 导航栏样式 === */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 0;
    background-color: transparent;
    color: white;
    z-index: 1000;
    transition: all 0.3s ease;
}
.nav-container {
    max-width: 1800px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}
.nav-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
.phone-link {
    display: flex;
    align-items: center;
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s ease;
    padding: 8px 15px;
    border: 1px solid white;
    border-radius: 4px;
    gap: 0.5rem;
    padding-left: 30px;
    letter-spacing: 2px;
    position: relative;
}
.phone-link::before{
    position: absolute;
    top: 45%;
    left: 5px;
    transform: translateY(-50%);
    content: "\e60f";
    font-family: "iconfont";
    font-size: 20px;
}
.main-nav.scrolled .phone-link {
    color: #9ACD32;
    border-color: #9ACD32;
}
.phone-link:hover {
    background-color: rgba(255, 255, 255, 0.2);
    color: #9ACD32;
}
.main-nav.scrolled .phone-link:hover {
    background-color: #9ACD32;
    color: #fff;
}
.logo {
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
}
.logo{
    text-decoration: none;
}
.logo .iconfont {
    color: #e63946;
    font-size: 1.5em;
}
.main-nav.scrolled .logo {
    color: #333;
}
.nav-links {
    display: flex;
    list-style: none;
    gap: 3rem;
}
.nav-links a {
    color: white;
    text-decoration: none;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s;
    font-weight: 500;
    text-decoration: none;
}
.nav-links a .brade{
    padding: 2px;
    border-radius: 3px;
    color: #f82e5a;
    font-size: 12px;
    position: absolute;
    right: -20px;
    top: -3px;
    transform: rotate(-10deg);
    animation: blink 1s infinite;
}
@keyframes blink {  
0% { opacity: 1; }  
50% { opacity: 0; }  
100% { opacity: 1; }
}
.main-nav.scrolled {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    color: #333;
    padding: 0.8rem 0;
}
.main-nav.scrolled .nav-links a {
    color: #333;    
}
.nav-links a.active,
.nav-links a:hover {
    color: #9ACD32;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -7px;
    left: 0;
    width: 0;
    height: 3px;
    border-radius: 2px;
    background-color: #9ACD32;
    transition: width 0.3s;
}
.nav-links a.active::after,
.nav-links a:hover::after {
    width: 100%;
}
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1100;
}
.main-nav.scrolled .menu-toggle {
    color: #333;
}

.subtitle {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 40px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.card h3 {
    color: #9ACD32;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.card p {
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
}

.footer {
    text-align: center;
    padding: 40px 0;
    margin-top: 60px;
    color: rgba(255, 255, 255, 0.7);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.nav_box .locations{
    max-width: 1600px;
    text-align: right;
    margin: 0 auto;
    color: #666;
}
.nav_box .locations a{
    color: #666;
}
/* 浮动侧边栏样式 - 简洁版 */
.floating-sidebar {
    position: fixed;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}
.floating-sidebar a{
    text-decoration: none;
}

.sidebar-item {
    position: relative;
    width: 60px;
    height: 60px;
    background: rgba(235, 243, 238, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    color: rgb(32, 31, 31);
    font-size: 24px;
}
.sidebar-item .iconfont{
    font-size: 24px;
}

.sidebar-item:hover {
    background: #9ACD32;
    color: #f0f0f0;
}

/* 二维码弹出层在左侧 */
.qrcode-popup {
    position: absolute;
    left: -150px;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: -1;
}

.qrcode-popup img {
    width: 120px;
    height: 120px;
    display: block;
}

.qrcode-popup::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -10px;
    transform: translateY(-50%);
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 10px solid white;
}

.sidebar-item.qrcode:hover .qrcode-popup {
    opacity: 1;
    z-index: 1;
}

/* 提示文本 */
.tooltip {
    position: absolute;
    left: -100px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.tooltip::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -6px;
    transform: translateY(-50%);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 6px solid rgba(0, 0, 0, 0.8);
}

.sidebar-item:hover .tooltip {
    opacity: 1;
}

/* 返回顶部按钮 */
.back-to-top {
    opacity: 0;
    pointer-events: none;
}

.back-to-top.active {
    opacity: 1;
    pointer-events: auto;
}

/* === 轮播图样式 === */
.fullscreen-swiper {
    width: 100%;
    height: 100vh;
    position: relative;
    margin-bottom: 0;
    overflow: hidden;
}
.fullscreen-swiper .swiper-slide {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
}
.fullscreen-swiper .swiper-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}
.fullscreen-swiper .slide-content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    color: white;
    max-width: 600px;
    z-index: 2;
}
.fullscreen-swiper .slide-content p{
    line-height: 2.6;
}
.fullscreen-swiper .slide-content .more {
    display: inline-block;
    font-size: 0.8rem;
    color: #f0f7ff;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto 1.5rem;
    background-color: #3A3A3A;
    padding: 7px 42px 7px 12px;
    position: relative;
}
.fullscreen-swiper .slide-content .more::after{
    position: absolute;
    content: "\e8f9";
    font-family: "iconfont";
    font-size: 1.5rem;
    right: 10px;
    top: 0;
}
/* 内页轮播图  */
.flash-swiper {
    width: 100%;
    height: 600px;
    position: relative;
    margin-bottom: 0;
    overflow: hidden;
}
.flash-swiper .swiper-slide {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
}
.flash-swiper  .swiper-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1;
}
.flash-swiper  .slide-content {
    position: absolute;
    top: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transform: translateY(-50%);
    color: white;
    width: 100%;
    z-index: 2;
}
.flash-swiper  .slide-content h2{
   font-size: 3rem;
}
.flash-swiper  .slide-content p{
    line-height: 5.6;
}
.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
    content: '';
}
.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
    content: '';
}
/* 轮播导航按钮 */
.nav-buttons-2{
    width: 300px;
    height: 80px;
    position: absolute;
    right: 0;
    bottom: 0;
    background-color:rgba(255, 255, 255, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 1300;
    backdrop-filter: blur(10px);
    border-top-left-radius: 15px;
}

.nav-buttons-2 .swiper-button-prev, 
.nav-buttons-2 .swiper-button-next {
    color: #fff;
    opacity: 0.7;
    transition: all 0.3s;
    position: static;
    margin-top: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-buttons-2 .swiper-button-prev{
    position: absolute;
    left: 30px;
}

.nav-buttons-2 .swiper-button-next{
    position: absolute;
    right: 30px;
}

.nav-buttons-2 .swiper-button-prev:hover,
.nav-buttons-2  .swiper-button-next:hover {
    opacity: 1;
    transform: scale(1.2);
}

.nav-buttons-2 .swiper-button-prev::after,
.nav-buttons-2 .swiper-button-next::after {
    content: none;
}

.nav_box {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(5px);
    z-index: 10;
    padding: 15px 0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
}

.nav {
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    white-space: nowrap;
    padding: 0 20px;
    max-width: 1600px;
    margin: 0 auto;
}

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

.nav a {
    color: #333;
    text-decoration: none;
    padding: 8px 15px;
    margin: 0 5px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.nav a:hover {
    background: rgba(0, 0, 0, 0.05);
}

.nav a.active {
    color: #fff;
    background: #4CAF50;
}
/* 向下按钮样式 */
.nav-buttons-3 {
    width: 80px;
    height: 80px;
    position: fixed;
    left: calc(50% - 40px); /* 水平居中 */
    bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    cursor: pointer;
    animation: float 2s infinite ease-in-out;
}

.nav-buttons-3 .icon {
    width: 60px;
    height: 60px;
    background: rgba(15, 245, 15, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
    border: 2px solid rgba(15, 245, 15, 0.3);
    transition: all 0.4s;
}

.nav-buttons-3 i {
    color: white;
    font-size: 30px;
    transition: all 0.3s;
}
/* 浮动动画 */
@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
    100% {
        transform: translateY(0);
    }
}

/* 悬停效果 */
.nav-buttons-3:hover .icon {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1);
}

.nav-buttons-3:hover i {
    transform: translateY(5px);
}


.site-footer {
    background: linear-gradient(135deg, #2c3e50 0%, #1a2530 100%);
    color: #ecf0f1;
    padding: 40px 0 0;
    flex-shrink: 0; /* 禁止底部收缩 */
  }
  
  /* 内容区域网格布局 */
  .footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .footer-section {
    margin-bottom: 30px;
  }
  
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #3498db;
    margin: 0 0 15px;
  }
  
  .footer-description {
    line-height: 1.6;
    opacity: 0.8;
  }
  
  .footer-title {
    font-size: 1.2rem;
    border-bottom: 2px solid #3498db;
    padding-bottom: 10px;
    margin-top: 0;
    display: inline-block;
  }
  
  /* 链接交互效果 */
  .footer-links li, .footer-contact li {
    margin: 12px 0;
    list-style: none;
    padding-left: 0;
  }
  
  .footer-links a, .footer-bottom a {
    color: #bdc3c7;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
  }
  
  .footer-links a:hover {
    color: #3498db;
    transform: translateX(5px);
  }
  
  .footer-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background: #3498db;
    transition: width 0.3s;
  }
  
  .footer-links a:hover::after {
    width: 100%;
  }
  
  /* 图标设计 */
  .contact-phone::before, 
  .contact-email::before, 
  .contact-address::before 
  {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 10px;
    vertical-align: middle;
    background-size: contain;
  }
  
  .contact-phone::before { background-image: url('data:image/svg+xml;utf8,<svg>...</svg>'); }
  .contact-email::before { background-image: url('data:image/svg+xml;utf8,<svg>...</svg>'); }
  .contact-address::before { background-image: url('data:image/svg+xml;utf8,<svg>...</svg>'); }
  
  .social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #34495e;
    margin-right: 10px;
    text-align: center;
    line-height: 40px;
    transition: transform 0.3s, background 0.3s;
  }
  
  .social-icons a:hover {
    transform: translateY(-5px);
    background: #3498db;
  }
  
  /* 订阅区域 */
  .newsletter {
    display: flex;
    margin-top: 15px;
  }
  
  .newsletter input {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 4px 0 0 4px;
  }
  
  .newsletter button {
    background: #e74c3c;
    color: white;
    border: none;
    padding: 0 20px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: background 0.3s;
  }
  
  .newsletter button:hover {
    background: #c0392b;
  }
  
  /* 版权信息样式 */
  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .payment-methods {
    margin-top: 15px;
  }
  
  .payment-methods span {
    display: inline-block;
    width: 50px;
    height: 30px;
    margin: 0 5px;
    background-size: contain;
    background-repeat: no-repeat;
  }


/* Footer Styles */
footer {
    background: #000;
    color: #f0f0f0;
    padding: 30px 0 0;
    font-size: 0.95rem;
}

.footer-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
}

.footer-top {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #222;
}

.footer-main {
    flex: 3;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.logo-section {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.logo-section a img {
    width: 60px;
    height: auto;
    background: #f7f7f7;
    border-radius: 8px;
}
.logo-section h2{
    height: 60px;
    display: flex;
    flex-direction: column;
    line-height: 40px;
    font-size:1.8rem;
}
.logo-section h2 em{
    line-height: 20px;
    letter-spacing: 4px;
    color: #666;
    font-size: 1.5rem;
}

.contact-list {
    list-style: none;
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    margin: 10px 0;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 20px;
    background: #FFF;
    border-radius: 30%;
    transition: background 0.3s;
}

.contact-list li:hover {
    background: #e3f5e8;
}

.contact-list .iconfont {
    font-size: 1.8rem;
    color: #3498db;
}

.contact-list img {
    width: 50px;
    height: 50px;
    background: #f0f0f0;
    border-radius: 5px;
    padding: 5px;
}

.footer-links {
    flex: 5;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.footer-links dl {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-links dt {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid #e3f5ec;
}

.footer-links dd {
    margin-left: 0;
    line-height: 1.8;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #3498db;
    padding-left: 5px;
}

.footer-side {
    flex: 2;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.slogan {
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.slogan h2 {
    font-size: 1.5rem;
    color: #047c04;
    margin-top: 15px;
    line-height: 1.4;
}

.slogan p {
    color: #ddd;
    line-height: 1.7;
}

.qr-codes {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.qr-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.qr-item div {
    width: 100px;
    height: 100px;
    background: #f0f0f0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.qr-item img {
    width: 90px;
    height: 90px;
    border-radius: 5px;
}

.qr-item p {
    color: #ddd;
    font-size: 0.9rem;
}

.friend-links {
    padding: 10px 0;
}

.friend-links .inner {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.friend-links h6 {
    font-size: 1.1rem;
    color: #fff;
    min-width: 100px;
}

.friend-links .links-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.friend-links a {
    color: #ccc;
    text-decoration: none;
    padding: 8px 15px;
    background: #454545;
    border-radius: 20px;
    transition: all 0.3s;
}

.friend-links a:hover {
    background: #def7ea;
    color: #373737;
}

.friend-links a.a {
    background: #017915;
    color: white;
}


.footer-bottom {
    padding: 25px 0 40px;
}

.footer-bottom .inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright {
    color: #aaa;
    font-size: 0.9rem;
}

.copyright a {
    color: #aaa;
    text-decoration: none;
}

.legal-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.legal-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.legal-links a:hover {
    color: #f9fafc;
}

.legal-links .separator {
    width: 1px;
    height: 16px;
    background: #5a5a5a;
}


/* 大型平板和小型桌面 */
@media (max-width: 1200px) {
    
}

/* 平板设备 */
@media (max-width: 992px) {   
    
    
   
}
/* 小型平板 */
@media (max-width: 768px) {
    footer{
        padding-top: 20px;
    }
    
    .flash-swiper {
        height: 400px;
    }
    .flash-swiper  .slide-content h2{
       font-size: 2rem;
    }
    .main-nav {
        padding: 1rem 0;
    }
    
    .flash-swiper .slide-content p {
        line-height: 2.6;
        padding: 0 20px;
    }
    .menu-toggle {
        display: block;
    }
    .nav-links-bg {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        /* 初始状态隐藏 */
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 98;
    }
    
    .nav-links-bg.active {
        opacity: 1;
        visibility: visible;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        z-index: 999;
        right: -300px;
        width: 280px;
        height: 100vh;
        background-color: #fff;
        flex-direction: column;
        padding: 60px 30px 30px;
        transition: right 0.4s ease;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    }

    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links a {
        color: #333;
        padding: 0.5rem 0;
        border-bottom: 1px solid #eee;
        width: 100%;
        display: inline-block;
    }
    .nav-links a::after {
        content: '';
        position: absolute;
        bottom: -7px;
        left: 0;
        width: 0;
        height: 3px;
        border-radius: 2px;
        background-color: #fff;
        transition: width 0.3s;
    }
    
    .main-nav.scrolled .nav-links a {
        color: #333;
    }
    
    .phone-link {
        display: none;
    }

    .nav-buttons-2 {
        width: 100%;
        border-radius: 0;
        background: rgba(0,0,0,0.3);
    }

    .nav-buttons-3 {
        width: 60px;
        height: 60px;
        left: calc(50% - 30px);
    }

    .footer-container {
        grid-template-columns: 1fr;
      }
    
      .footer-section {
        text-align: center;
      }
    
      .footer-title {
        border-bottom: none;
        border-left: 3px solid #3498db;
        padding-left: 10px;
      }
    
      .newsletter {
        flex-direction: column;
      }
    
      .newsletter button {
        margin-top: 10px;
        border-radius: 4px;
        padding: 12px;
      }

    .footer-links {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .footer-bottom .inner {
        flex-direction: column;
        text-align: center;
    }
    .liuyansection{
        margin-bottom: 0!important;
        margin-top: 0!important;
    }
    .nav-links{
        gap:0.1rem;
    }
    .footer-links,
    .legal-links,
    .liuyansection-left,
    .nav-links a .brade{display: none;}

    .floating-sidebar {
        right: 10px;
    }
    
    .sidebar-item {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .qrcode-popup {
        left: -130px;
    }
    
    .qrcode-popup img {
        width: 100px;
        height: 100px;
    }
    
    .tooltip {
        left: -90px;
        font-size: 12px;
    }
    .nav {
        padding: 0 10px;
    }
    .nav a {
        padding: 6px 12px;
        font-size: 13px;
    }

    
    .pages a, .pages span {
        padding: 6px 10px;
        margin: 0 3px;
    }
    
    .logo-section h2{
        font-size:1.4rem;
    }
    .logo-section h2 em{
        font-size: 1.1rem;
    }
    
    .pagination li:not(.active):not(:first-child):not(:last-child):not(.disabled) {
                display: none;
    }
            
    .pagination li a, 
    .pagination li span {
        min-width: 36px;
        height: 36px;
        padding: 0 12px;
    }
    .logo-section h2 em{
        letter-spacing: 1px;
    }
}
