    .zen-header { 
        background: #fff !important; 
        height: 80px !important; 
        border-bottom: 1px solid #f0f0f0 !important; 
        display: flex !important; 
        align-items: center !important; 
        position: sticky; 
        top: 0; 
        z-index: 9999; 
    }
    .zen-container { 
        width: 100%; 
        max-width: 1200px; 
        margin: 0 auto; 
        padding: 0 10px; 
        display: flex !important; 
        justify-content: space-between; 
        align-items: center; 
        position: relative; 
    }
    
    .zen-logo { text-decoration: none !important; display: flex !important; align-items: baseline !important; }
    .zen-logo .bold { color: #000 !important; font-weight: 850 !important; font-size: 28px !important; letter-spacing: -1px; line-height: 1; }
    .zen-logo .thin { color: #aaa !important; font-weight: 300 !important; font-size: 18px !important; margin-left: 3px !important; }

 
    .zen-nav-links { display: flex !important; list-style: none !important; margin: 0 !important; padding: 0 !important; gap: 30px !important; }
    .zen-item { position: relative !important; }
    .zen-link { 
        color: #333 !important; 
        font-size: 16px !important; 
        font-weight: 700 !important; 
        text-decoration: none !important; 
        display: flex !important; 
        align-items: center !important; 
        padding: 30px 0 !important;
        cursor: pointer;
    }
    .zen-link:hover { color: #3755fa !important; }
    .menu-arrow { display: flex; align-items: center; margin-left: 6px; transition: transform 0.3s; }
#zenLangBox {
    max-height: 400px; /* 限制高度，大约显示 8-10 个选项 */
    overflow-y: auto;  /* 开启垂直滚动 */
    scrollbar-width: thin; /* Firefox 细滚动条 */
    scrollbar-color: #ddd transparent; /* 滚动条颜色微调 */
}

/* Chrome/Safari 滚动条美化 */
#zenLangBox::-webkit-scrollbar {
    width: 6px;
}
#zenLangBox::-webkit-scrollbar-thumb {
    background: #ddd; 
    border-radius: 10px;
}


   /* 1. 基础状态：设置为不可见，但保留块级属性以支持动画 */
.zen-dropdown {
    position: absolute !important;
    top: 100% !important;
    left: 50% !important;
    transform: translateX(-50%) translateY(10px) !important; /* 初始下移 10px */
    background: #fff !important;
    min-width: 200px !important;
    box-shadow: 0 15px 45px rgba(0,0,0,0.1) !important;
    border: 1px solid #eee !important;
    padding: 12px 0 !important;
    border-radius: 12px !important; /* 增加圆角提升质感 */
    list-style: none !important;
    z-index: 10000 !important;
    
    /* 核心修复：用可见度控制隐藏 */
    visibility: hidden !important; 
    opacity: 0 !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    pointer-events: none; /* 隐藏时鼠标无法穿透点到它 */
}

/* 2. 桌面端 Hover 触发：仅在 992px 以上生效 */
@media (min-width: 992px) {
    .zen-item:hover .zen-dropdown {
        visibility: visible !important;
        opacity: 1 !important;
        transform: translateX(-50%) translateY(0) !important; /* 回位 */
        pointer-events: auto !important; /* 显示时恢复点击 */
    }
}
@media (max-width: 991px) {
    .zen-dropdown {
        position: static !important;
        transform: none !important;
        visibility: visible !important; /* 移动端不需要 visibility 隐藏 */
        opacity: 1 !important;
        display: none !important; /* 移动端回归 display 切换 */
        box-shadow: none !important;
        background: #f9f9f9 !important;
    }
    
    /* 仅在有 .open 类时展开 */
    .zen-item.open .zen-dropdown {
        display: block !important;
    }
}
/* 清理掉不必要的第一个元素隐藏，如果是 WHMCS 默认生成的菜单，请检查是否有 ID */
.zen-dropdown li.disabled,
.zen-dropdown li.divider {
    display: none !important;
}

    .zen-dropdown a { 
        display: block !important; padding: 10px 20px !important; color: #555 !important; 
        font-size: 13px !important; text-decoration: none !important; white-space: nowrap !important; text-align: left !important;
    }
    .zen-dropdown a:hover { background: #f8f9fa !important; color: #3755fa !important; }


    .zen-tools { display: flex; align-items: center; gap: 20px; }
    .svg-icon { width: 20px; height: 20px; fill: #333; cursor: pointer; transition: all 0.3s; vertical-align: middle; }
    .svg-icon:hover { fill: #3755fa; }
    .logout-btn .svg-icon { fill: #ff4d4f; }
   
    
    


    @media (max-width: 991px) {
        .zen-header { height: 65px !important; }
        .mobile-toggle { display: flex !important; align-items: center; cursor: pointer; }
        .mobile-toggle .svg-icon { width: 24px; height: 24px; }

        .zen-nav {
            display: none !important;
            position: absolute !important;
            top: 65px !important; left: 0 !important;
            width: 100% !important;
            background: #fff !important;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
            z-index: 9998 !important;
            max-height: calc(100vh - 65px);
            overflow-y: auto;
        }
        .zen-nav.active { display: block !important; }
        .zen-nav-links { flex-direction: column !important; gap: 0 !important; padding: 0 !important; }
        .zen-item { border-bottom: 1px solid #f9f9f9; width: 100%; }
        .zen-link { padding: 15px 20px !important; justify-content: space-between !important; }
        
   
        .zen-dropdown { 
            position: static !important; 
            transform: none !important; 
            width: 100% !important; 
            box-shadow: none !important; 
            border: none !important; 
            background: #fafafa !important; 
            display: none !important; 
            padding: 5px 0 !important;
        }
        .zen-item.open .zen-dropdown { display: block !important; }
        .zen-item.open .menu-arrow { transform: rotate(180deg); }
        .zen-dropdown a { padding: 12px 35px !important; }
    }

.zen-dropdown li:first-child {
    display: none !important;
}


.zen-dropdown hr, 
.zen-dropdown .divider {
    display: none !important;
}

/* --- 1. 下拉菜单容器：注入高级质感 --- */
.zen-dropdown { 
    /* 保持逻辑：隐藏状态 */
    position: absolute !important; 
    top: 100% !important; 
    left: 50% !important; 
    transform: translateX(-50%) translateY(15px) !important; /* 初始下移，动画更明显 */
    background: rgba(255, 255, 255, 0.98) !important; /* 微透白 */
    min-width: 200px !important; 
    
    /* 注入设计：圆角与弥散阴影 */
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.12) !important; 
    border: 1px solid rgba(0, 0, 0, 0.05) !important; 
    padding: 12px !important; 
    border-radius: 14px !important; 
    
    list-style: none !important; 
    z-index: 10000 !important; 
    visibility: hidden !important; 
    opacity: 0 !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important; /* 丝滑回弹曲线 */
    pointer-events: none;
}

/* --- 2. 桌面端展示：滑入效果 --- */
@media (min-width: 992px) {
    .zen-item:hover .zen-dropdown { 
        visibility: visible !important; 
        opacity: 1 !important; 
        transform: translateX(-50%) translateY(0) !important; /* 平滑滑入 */
        pointer-events: auto !important; 
    }
}

/* --- 3. 菜单项设计：注入蓝色互动感 --- */
.zen-dropdown li {
    margin: 2px 0 !important;
}

.zen-dropdown a { 
    display: flex !important; 
    align-items: center !important;
    padding: 10px 15px !important; 
    color: #444 !important; 
    font-size: 14px !important; 
    font-weight: 500 !important; 
    text-decoration: none !important; 
    white-space: nowrap !important; 
    text-align: left !important;
    border-radius: 8px !important;
    transition: all 0.2s ease !important;
}

/* 悬停变色：文字微移 + 浅蓝底色 */
.zen-dropdown a:hover { 
    background: #f0f7ff !important; 
    color: #3755fa !important; 
    padding-left: 20px !important; /* 动感位移 */
}

/* 菜单项前的小圆点点缀 */
.zen-dropdown a::before {
    content: '';
    width: 5px;
    height: 5px;
    background: #3755fa;
    border-radius: 50%;
    margin-right: 10px;
    opacity: 0;
    transition: opacity 0.2s;
}
.zen-dropdown a:hover::before {
    opacity: 1;
}

/* --- 4. 移动端适配：回归简洁布局 --- */
@media (max-width: 991px) {
    .zen-dropdown { 
        position: static !important; 
        transform: none !important; 
        visibility: visible !important; 
        opacity: 1 !important; 
        display: none !important; 
        box-shadow: none !important; 
        border: none !important; 
        background: #f9f9f9 !important; 
        padding: 5px 0 !important;
        border-radius: 0 !important;
    }
    .zen-item.open .zen-dropdown { display: block !important; }
    .zen-dropdown a { padding: 12px 30px !important; border-radius: 0 !important; }
}
/* 1. 扩大触发区域，方便点击 */

/* 2. 语言列表初始状态：隐藏 */
.lang-list-box {
    position: absolute !important;
    top: 100% !important;
    right: 0 !important;
    background: #fff !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15) !important;
    border-radius: 8px !important;
    min-width: 150px !important;
    z-index: 10001 !important;
    
    /* 核心逻辑：默认隐藏 */
    display: none !important; 
}

/* 3. 激活状态：当有 .active 类时显示 */
.lang-list-box.active {
    display: block !important;
    animation: zenFadeIn 0.2s ease-out;
}

@keyframes zenFadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}



/* 初始状态：完全隐藏 */
#langListBox {
    display: none !important; /* 默认关闭 */
    position: absolute !important;
    top: 100% !important;
    right: 0 !important;
    left: auto !important;
    transform: translateY(10px) !important;
    opacity: 0;
    transition: all 0.2s ease;
}

/* 激活状态：显示 */
#langListBox.show {
    display: block !important;
    opacity: 1;
    transform: translateY(0) !important;
}










/* 状态栏 */











.provider-section {
    padding: 80px 20px;
    background-color: #fff;
}

.provider-card {
    max-width: 1140px;
    margin: 0 auto;
    /* 核心：图中的浅蓝色渐变背景 */
    background: linear-gradient(135deg, #eef5ff 0%, #f4f9ff 100%);
    border-radius: 30px; /* 大圆角 */
    display: flex;
    align-items: center;
    padding: 40px; /* 内部留白，让图片和文字不贴边 */
    gap: 50px;
}

/* 左侧图片框 */
.provider-img-wrap {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    line-height: 0;
    /* 给图片加一点阴影，更有3D感 */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.provider-img-wrap img {
    width: 100%;
    height: auto;
    display: block;
}

/* 右侧文字 */
.provider-info {
    flex: 1.2; /* 文字区域稍宽一点点 */
    text-align: left;
}

.provider-info h2 {
    font-size: 32px;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-weight: 700;
}

.provider-info p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
}

/* --- 手机端完美适配 --- */
@media (max-width: 991px) {
    .provider-card {
        flex-direction: column; /* 变成上下排列 */
        padding: 30px 20px;
        gap: 30px;
        margin: 0 10px;
    }

    .provider-info {
        text-align: center; /* 手机端文字居中 */
    }

    .provider-info h2 {
        font-size: 24px;
    }
}

/* 容器整体样式 */
.why-choose-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.main-title {
    font-size: 28px;
    color: #333;
    margin-bottom: 50px;
    font-weight: bold;
}

/* 栅格布局 */
.feature-grid {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

/* 单个卡片样式 */
.feature-item {
    flex: 1;
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease;
    /* 如果需要淡淡的阴影可以加上 */
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

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

.feature-content h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 15px;
    font-weight: bold;
}

.feature-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* 图片区域 */
.feature-img-box {
    text-align: center;
}

.feature-img-box img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* --- 手机端适配 --- */
@media (max-width: 991px) {
    .feature-grid {
        flex-direction: column; /* 手机端变成垂直排列 */
    }
    
    .main-title {
        font-size: 22px;
        margin-bottom: 30px;
    }

    .feature-item {
        padding: 20px;
    }
}
.feature-item {
    background: #fafafa; /* 极淡的蓝色背景 */
    border: 1px solid #e1eeff; /* 浅蓝色边框 */
    border-radius: 12px;
    padding: 30px;
    transition: all 0.3s ease;
}

/* 鼠标放上去时，颜色加深一点 */
.feature-item:hover {
    background: #ffffff;
    border-color: #007bff;
    box-shadow: 0 10px 25px rgba(0, 123, 255, 0.1);
    transform: translateY(-5px);
}

.feature-content h3 {
    color: #0056b3; /* 标题用深蓝色 */
}

/* 1. 基础样式（全端通用）：确保图片是块级元素以便执行动画 */
.hero-3d-img {
    display: inline-block;
    max-width: 100%;
    height: auto;
    /* 默认不写 animation，所以手机端是静止的 */
}

/* 2. 仅在电脑端（屏幕宽度大于 991px）执行动画 */
@media (min-width: 992px) {
    .hero-3d-img {
        animation: simpleFloat 3s ease-in-out infinite;
        will-change: transform;
    }
}

/* 动画帧定义 */
@keyframes simpleFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px); /* 电脑端上下动 15px */
    }
}

/* --- 电脑端按钮样式修复 --- */

/* 1. 强制电脑端垂直堆叠排列 */
.zt-desktop-buy-layout {
    display: flex !important;
    flex-direction: column !important; /* 电脑端上下排 */
    align-items: center !important;
    justify-content: center !important;
    width: 100%;
}

/* 2. 价格文字：强制白色且加粗 */
.zt-currency {
    color: #fff !important;
    font-size: 18px !important;
    font-weight: 900 !important;
    margin-bottom: 8px !important; /* 给按钮留出间距 */
    display: block !important;
}

/* 3. 订购按钮：强制蓝色背景+白色字 */
.zt-buy-btn-m {
    background: #3755fa !important;
    color: #fff !important;
    padding: 6px 18px !important;
    border-radius: 4px !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    text-align: center !important;
    transition: 0.3s;
}

/* 4. 整个区块悬停效果 */
.zt-buy-wrapper:hover .zt-buy-btn-m {
    background: #fff !important;
    color: #3755fa !important; /* 悬停时蓝白反色，更有交互感 */
}

/* --- 手机端(Mobile) 保持之前的横向排列 --- */
@media (max-width: 991px) {
    .zt-desktop-buy-layout {
        flex-direction: row !important; /* 手机端左右排 */
        justify-content: space-between !important;
        padding: 0 5px;
    }
    .zt-currency {
        margin-bottom: 0 !important;
        font-size: 16px !important;
    }
}


/* 确保深色区域内的 row 容器垂直居中 */
.zen-hero-flex-align {
    display: flex !important;
    align-items: center !important; /* 核心：垂直居中 */
    justify-content: space-between;
    min-height: 400px; /* 给一个固定高度，方便定位 */
}

.hero-3d-img {
    max-width: 450px !important;
    height: auto !important;
    /* 如果图片还是偏上，微调这个数值 */
    transform: translateY(20px); 
    transition: opacity 0.4s ease; /* 切换时的淡入效果 */
}

/* --- 核心：全屏平铺背景 (已优化垂直居中) --- */
/* --- 彻底解决垂直居中与高度问题 --- */
.zen-hero-pingpu-wrapper {
    background: #0f1012 !important; 
    width: 100vw !important;         
    position: relative !important;
    left: 50% !important;
    margin-left: -50vw !important;   

    /* 1. 强制大幅度增加上下边距 */
    padding: 150px 0 !important; 
    
    /* 2. 设置最小高度，确保黑块足够深 */
    min-height: 550px !important; 
    
    /* 3. 使用 Flex 布局让内容自动在黑块里垂直居中 */
    display: flex !important;
    align-items: center !important; 

    color: #fff !important;
    border: none !important;
    /* 4. 微调顶部，确保和导航栏无缝衔接 */
    margin-top: -30px !important;    
}

/* 确保内部容器占据 100% 宽度以便居中生效 */
.zen-hero-pingpu-wrapper .container {
    width: 100% !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
}


/* 防止产生横向滚动条 */
body { overflow-x: hidden !important; }

/* 文本样式 */
.hero-title { font-size: 42px; font-weight: 800; color: #fff; margin-bottom: 20px; }
.hero-subtitle { color: #888; font-size: 16px; margin-bottom: 30px; line-height: 1.6; }
.btn-order-now-hero {
    background: #3755fa; color: #fff; padding: 12px 35px;
    border-radius: 8px; font-weight: 700; text-decoration: none !important;
    display: inline-block;
}











/* 这是香港产品页上面黑色区域的css*/







#footer.ctg-dark-footer {
    background: #111317 !important;
    padding: 70px 0 40px 0 !important;
    font-family: "Helvetica Neue", Arial, sans-serif !important;
}

#footer.ctg-dark-footer .container {
    max-width: 1400px !important;
    width: 100% !important;
    margin: 0 auto !important;
    padding: 0 40px !important;
}

#footer.ctg-dark-footer .row.pt-5.pb-4 {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    justify-content: space-between !important;
    align-items: flex-start !important;
    margin: 0 !important;
    width: 100% !important;
}

#footer.ctg-dark-footer .col-lg-4 {
    flex: 0 0 25% !important;
    max-width: 25% !important;
    padding: 0 40px 0 0 !important;
    margin-bottom: 0 !important;
}

#footer.ctg-dark-footer .col-lg-8 {
    display: flex !important;
    flex: 0 0 75% !important;
    max-width: 75% !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: flex-start !important;
    padding: 0 !important;
    margin-bottom: 0 !important;
}

#footer.ctg-dark-footer .col-lg-8 > div,
#footer.ctg-dark-footer .col-lg-8 .col-md-3,
#footer.ctg-dark-footer .col-lg-8 [class*="col-"],
#footer.ctg-dark-footer .col-lg-8 .row > div {
    flex: 1 !important;
    max-width: none !important;
    width: auto !important;
    padding: 0 !important;
    margin-bottom: 0 !important;
    text-align: center !important;
}

#footer.ctg-dark-footer h5.footer-nav-title,
#footer.ctg-dark-footer h2,
#footer.ctg-dark-footer h3,
#footer.ctg-dark-footer h4,
#footer.ctg-dark-footer .footer-title,
#footer.ctg-dark-footer p:first-child:not(:has(a)) {
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    margin-bottom: 25px !important;
    letter-spacing: 0.5px !important;
    white-space: nowrap !important;
}

#footer.ctg-dark-footer .col-lg-4 h2,
#footer.ctg-dark-footer .footer-logo {
    text-align: left !important;
    font-size: 32px !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    margin-bottom: 20px !important;
    letter-spacing: -0.5px !important;
    white-space: normal !important;
}

#footer.ctg-dark-footer .footer-slogan,
#footer.ctg-dark-footer .col-lg-4 p {
    text-align: left !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    margin-bottom: 30px !important;
    line-height: 1.5 !important;
}

#footer.ctg-dark-footer ul.footer-nav-list,
#footer.ctg-dark-footer ul {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    display: inline-block !important;
    text-align: inherit !important;
}

#footer.ctg-dark-footer ul.footer-nav-list li,
#footer.ctg-dark-footer ul li {
    margin-bottom: 8px !important;
    padding: 0 !important;
}

#footer.ctg-dark-footer .col-lg-8 > div,
#footer.ctg-dark-footer .col-lg-8 .col-md-3,
#footer.ctg-dark-footer .col-lg-8 [class*="col-"],
#footer.ctg-dark-footer .col-lg-8 .row > div {
    padding-top: 5px !important;
    padding-bottom: 5px !important;
}

#footer.ctg-dark-footer ul.footer-nav-list li a,
#footer.ctg-dark-footer ul li a {
    font-size: 14px !important;
    font-weight: 500 !important;
    color: #8c9099 !important;
    text-decoration: none !important;
    transition: color 0.2s ease !important;
    display: inline-block !important;
}

#footer.ctg-dark-footer ul.footer-nav-list li a:hover,
#footer.ctg-dark-footer ul li a:hover {
    color: #ffffff !important;
}

#footer.ctg-dark-footer .footer-social,
#footer.ctg-dark-footer .social-links {
    display: flex !important;
    gap: 20px !important;
    margin-top: 20px !important;
    justify-content: flex-start !important;
}

#footer.ctg-dark-footer .footer-social a,
#footer.ctg-dark-footer .social-links a,
#footer.ctg-dark-footer .footer-social i,
#footer.ctg-dark-footer .social-links i,
#footer.ctg-dark-footer .footer-social svg,
#footer.ctg-dark-footer .social-links svg {
    font-size: 22px !important;
    width: 22px !important;
    height: 22px !important;
    line-height: 22px !important;
    color: #ffffff !important;
    opacity: 0.8 !important;
    transition: opacity 0.2s ease, transform 0.2s ease !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

#footer.ctg-dark-footer .footer-social a:hover,
#footer.ctg-dark-footer .social-links a:hover {
    opacity: 1 !important;
    transform: scale(1.1);
}

#footer.ctg-dark-footer .footer-bottom-at-4,
#footer.ctg-dark-footer [class*="border-top"] {
    max-width: 1400px !important;
    width: 100% !important;
    margin: 15px auto 0 auto !important;
    padding: 15px 40px 0 40px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
    font-size: 13px !important;
    color: #ffffff !important;
    box-sizing: border-box !important;
}

#footer.ctg-dark-footer .footer-bottom-at-4 p,
#footer.ctg-dark-footer [class*="border-top"] p,
#footer.ctg-dark-footer [class*="copyright"] {
    color: #ffffff !important;
}

@media (max-width: 1200px) {
    #footer.ctg-dark-footer .container {
        padding: 0 20px !important;
    }
    #footer.ctg-dark-footer .footer-bottom-at-4 {
        padding: 15px 20px 0 20px !important;
    }
}

@media (max-width: 992px) {
    #footer.ctg-dark-footer .col-lg-8 > div,
    #footer.ctg-dark-footer .col-lg-8 .col-md-3,
    #footer.ctg-dark-footer .col-lg-8 [class*="col-"],
    #footer.ctg-dark-footer .col-lg-8 .row > div {
        text-align: left !important;
    }
    #footer.ctg-dark-footer .row.pt-5.pb-4,
    #footer.ctg-dark-footer .col-lg-8 {
        flex-direction: column !important;
        flex-wrap: wrap !important;
    }
    #footer.ctg-dark-footer .col-lg-4,
    #footer.ctg-dark-footer .col-lg-8 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
    }
    #footer.ctg-dark-footer .col-lg-8 > div {
        width: 100% !important;
        margin-bottom: 30px !important;
    }
}

@media (max-width: 768px) {
    #footer.ctg-dark-footer .row.pt-5.pb-4 {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        padding: 50px 20px 20px 20px !important;
    }

    #footer.ctg-dark-footer .col-lg-4 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        width: 100% !important;
        margin-bottom: 0 !important;
        padding: 0 !important;
    }

    #footer.ctg-dark-footer .col-lg-8 {
        display: none !important;
    }

    #footer.ctg-dark-footer .footer-logo,
    #footer.ctg-dark-footer .col-lg-4 h2 {
        font-size: 32px !important;
        font-weight: 800 !important;
        color: #ffffff !important;
        text-align: center !important;
        margin-bottom: 15px !important;
    }

    #footer.ctg-dark-footer .footer-slogan,
    #footer.ctg-dark-footer .col-lg-4 p {
        font-size: 15px !important;
        font-weight: 700 !important;
        color: #ffffff !important;
        text-align: center !important;
        margin-bottom: 25px !important;
        line-height: 1.5 !important;
    }

    #footer.ctg-dark-footer .footer-social,
    #footer.ctg-dark-footer .social-links {
        display: flex !important;
        flex-direction: row !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 25px !important;
        margin: 0 auto !important;
    }

    #footer.ctg-dark-footer .footer-bottom-at-4,
    #footer.ctg-dark-footer [class*="border-top"] {
        border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
        margin-top: 40px !important;
        padding: 20px 20px 0 20px !important;
        text-align: center !important;
    }
}
 .ctg-dark-footer {
        background-color: #1a1b1e !important;
        color: #ffffff !important;
        padding-top: 40px;
        position: relative;
    }
    

 
    
  
    @media (max-width: 768px) {
        .back-to-top {
            right: 15px;
            bottom: 15px;
            width: 40px;
            height: 40px;
        }
    }

    .footer-logo { font-size: 45px; font-weight: 700; color: #fff !important; }
    .footer-logo span { font-weight: 300; font-size: 24px; margin-left: 4px; opacity: 0.9; }
    .footer-slogan { color: #f8fafc; font-size: 16px; font-weight: 600; max-width: 250px; }
    .footer-social a { color: #ffffff; font-size: 18px; margin-right: 20px; opacity: 0.8; }
    .footer-nav-title { color: #ffffff !important; font-size: 16px; font-weight: 700; margin-bottom: 25px; }
    /* 默认状态：灰色 */
.footer-nav-list li a { 
    /* 核心颜色：纯净的白灰色（无蓝调） */
    color: #9ca3af !important; 
    font-size: 14px; 
    text-decoration: none !important; 
    
    /* 增加垂直间距，让导航更易点击 */
    display: inline-block;
    padding: 10px 0;
 
    transition: color 0.3s ease; 
}

/* 鼠标悬停：变为纯白 */
.footer-nav-list li a:hover { 
    color: #ffffff !important; 
}

    .footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.1) !important; }
    .copyright { color: #9ca3af; font-size: 13px; }

    @media (max-width: 991px) {
        .footer-brand { text-align: center; }
        .footer-slogan { margin: 0 auto; }
        .footer-social { justify-content: center; display: flex; }
    }
/* 1. 外層容器：寬度也要跟著加寬，否則按鈕會溢出 */
.side-toolbar-v2 {
    position: fixed !important;
    right: 20px !important;
    bottom: 80px !important;
    
    height: auto !important;
    width: 60px !important; /* 從 46px 增加到 60px */
    max-height: fit-content !important;
    
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 15px !important;      /* 圖標之間的間距 */
    padding: 20px 0 !important; /* 上下留白 */

    background: rgba(255, 255, 255, 0.98) !important;
    border-radius: 30px !important; /* 圓角隨寬度變大 */
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1) !important;
    z-index: 99999 !important;
}

/* 2. 按鈕樣式：放大點擊區域 */
.toolbar-item-v2 {
    flex: 0 0 42px !important; /* 從 32px 增加到 42px */
    width: 42px !important;    /* 從 32px 增加到 42px */
    height: 42px !important;   /* 從 32px 增加到 42px */
    
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 12px !important; /* 圓角稍微加大一點更協調 */
    color: #33363f !important;
    text-decoration: none !important;
    
    border: none !important; 
    outline: none !important;
    background: transparent !important;
    transition: all 0.2s ease !important;
}

/* 3. 圖標樣式：放大 SVG 本身 */
.toolbar-item-v2 svg {
    width: 26px !important;  /* 從 20px 增加到 26px */
    height: 26px !important; /* 從 20px 增加到 26px */
    stroke-width: 1.8 !important; /* 保持細條線條感 */
}

/* 懸停效果：放大並變色 */
.toolbar-item-v2:hover {
    background-color: #f3f4f6 !important;
    color: #2563eb !important;
    transform: scale(1.05); /* 輕微放大感 */
}

/* 確保所有按鈕都沒有邊框 */
.toolbar-item-v2.active, 
.toolbar-item-v2#backToTop {
    border: none !important; 
    background: transparent !important;
}
/* 1. 基础样式优化 */
.footer-social {
    display: flex;
    gap: 10px; /* 图标之间的间距 */
    align-items: center;
}

.footer-social a {
    display: inline-block;
    color: #ffffff; /* 图标默认颜色 */
    font-size: 24px; /* 调整图标大小 */
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* 弹性过渡动画 */
    text-decoration: none;
}

/* 2. 悬停动效：向上位移并放大 */
.footer-social a:hover {
    transform: translateY(-8px) scale(1.2); /* 向上移动 8px 并放大 1.2 倍 */
    color: #0088cc; /* 悬停时颜色改变（Telegram 蓝），你也可以根据图标定制颜色 */
}

/* 3. 针对不同图标设置专属颜色（可选） */
.footer-social a:nth-child(1):hover { color: #0088cc; } /* Telegram */
.footer-social a:nth-child(2):hover { color: #25D366; } /* WhatsApp */
.footer-social a:nth-child(3):hover { color: #ff4b5c; } /* 邮件 */

/* 4. 添加呼吸灯效果（可选：如果不操作也想让它动） */
@keyframes pulse-soft {
    0% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.05); opacity: 1; }
    100% { transform: scale(1); opacity: 0.8; }
}

.footer-social a {
    animation: pulse-soft 3s infinite ease-in-out;
}











/*页脚和按钮*/











