@charset "utf-8";
/* CSS Document */
/* ===== 强制覆盖弹出层样式 ===== */
.intl-modal-overlay#csSolutionModal {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: rgba(0,0,0,0.55) !important;
    display: none !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 10000 !important;
    padding: 30px !important;
}

.intl-modal-overlay#csSolutionModal.active {
    display: flex !important;
    animation: intlFadeIn 0.35s ease !important;
}

.intl-modal-overlay#csSolutionModal .intl-modal-content {
    background: #fff !important;
    max-width: 800px !important;
    width: 100% !important;
    max-height: 90% !important;
    overflow-y: auto !important;
    padding: 30px 40px !important;
    border-radius: 50px / 30px !important; /* 椭圆形角 */
    box-shadow: 0 15px 40px rgba(0,0,0,0.2) !important;
    position: relative !important;
    animation: intlSlideUp 0.35s ease !important;
}

/* 滚动条美化 - Chrome/Edge/Safari */
.intl-modal-overlay#csSolutionModal .intl-modal-content::-webkit-scrollbar {
    width: 10px !important;
}
.intl-modal-overlay#csSolutionModal .intl-modal-content::-webkit-scrollbar-track {
    background: rgba(0,0,0,0.05) !important;
    border-radius: 20px !important;
}
.intl-modal-overlay#csSolutionModal .intl-modal-content::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #06D6A0, #05c090) !important;
    border-radius: 20px !important;
    border: 2px solid #fff !important;
}
.intl-modal-overlay#csSolutionModal .intl-modal-content::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #05c090, #049d7a) !important;
}

/* 滚动条美化 - Firefox */
.intl-modal-overlay#csSolutionModal .intl-modal-content {
    scrollbar-width: thin !important;
    scrollbar-color: #06D6A0 rgba(0,0,0,0.05) !important;
}

/* 关闭按钮 */
.intl-modal-overlay#csSolutionModal .intl-modal-close {
    position: absolute !important;
    top: 14px !important;
    right: 18px !important;
    font-size: 26px !important;
    color: #888 !important;
    background: none !important;
    border: none !important;
    cursor: pointer !important;
    transition: color 0.3s ease !important;
}
.intl-modal-overlay#csSolutionModal .intl-modal-close:hover {
    color: #06D6A0 !important;
}

/* 动画 */
@keyframes intlFadeIn {
    from {opacity: 0;}
    to {opacity: 1;}
}
@keyframes intlSlideUp {
    from {transform: translateY(20px); opacity: 0;}
    to {transform: translateY(0); opacity: 1;}
}

        .container_box {
            max-width:99%;
            margin: 100px auto;
            padding: 0 20px;
        }

        /* 标题区域 */
        .section-header {
            text-align: center;
            margin-bottom: 40px;
            padding: 20px;
            border-radius: 12px;
            background-color: rgba(6, 214, 160, 0.05);
        }

        .section-header h2 {
            font-size: 32px;
            font-weight: 800;
            margin-bottom: 12px;
            color: #06D6A0;
            position: relative;
            display: inline-block;
            font-family: "Inter", "Microsoft YaHei", sans-serif;
        }

        .section-header h2::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -6px;
            width: 100%;
            height: 4px;
            background-color: #06D6A0;
            border-radius: 2px;
            transform: skew(-12deg);
        }

        .section-header p {
            font-size: 17px;
            color: #3d5a52;
            max-width: 800px;
            margin: 0 auto;
            font-family: "Inter", "Microsoft YaHei", sans-serif;
        }

        /* 云总机卡片样式 - 默认状态为原滑动后效果 */
        .cloud-pbx-card {
            background-color: #fff;
            border-radius: 20px;
            padding: 40px 50px;
            box-shadow: 0 25px 50px rgba(6, 214, 160, 0.15);
            position: relative;
            overflow: hidden;
            transition: all 0.6s cubic-bezier(0.33, 1, 0.68, 1);
            border: 1px solid rgba(6, 214, 160, 0.2);
            transform: translateY(-8px); /* 默认应用悬浮效果 */
        }

        /* 滑动/交互后的强化效果 */
        .cloud-pbx-card:hover {
            transform: translateY(-12px) scale(1.02); /* 更强的上浮和微缩放 */
            box-shadow: 0 35px 70px rgba(6, 214, 160, 0.25); /* 更深的阴影 */
            border-color: rgba(6, 214, 160, 0.3);
        }

        /* 动态背景装饰元素 - 默认更明显 */
        .cloud-pbx-card::before {
            content: '';
            position: absolute;
            width: 750px;
            height: 750px;
            background: radial-gradient(circle, rgba(6, 214, 160, 0.45) 0%, rgba(6, 214, 160, 0) 60%);
            border-radius: 50%;
            z-index: 1;
            transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
            transform: translate(50%, -50%) scale(1.2); /* 默认更大更明显 */
            right: 0;
            top: 50%;
            opacity: 0.8;
        }

        .cloud-pbx-card::after {
            content: '';
            position: absolute;
            width: 550px;
            height: 550px;
            background: radial-gradient(circle, rgba(6, 214, 160, 0.35) 0%, rgba(6, 214, 160, 0) 50%);
            border-radius: 50%;
            z-index: 1;
            transition: all 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
            transform: translate(-30%, 30%) scale(1.2);
            left: 0;
            bottom: 0;
            opacity: 0.6;
        }

        /* 交互后的背景强化 */
        .cloud-pbx-card:hover::before {
            width: 850px;
            height: 850px;
            transform: translate(50%, -50%) scale(1.4);
            opacity: 0.9;
        }

        .cloud-pbx-card:hover::after {
            width: 650px;
            height: 650px;
            transform: translate(-30%, 30%) scale(1.4);
            opacity: 0.7;
        }

        /* 图标样式 - 默认增强 */
        .pbx-icon {
            width: 85px;
            height: 85px;
            background-color: #06D6A0;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 30px;
            position: relative;
            z-index: 2;
            transition: all 0.5s ease;
            transform: scale(1.05);
        }

        .cloud-pbx-card:hover .pbx-icon {
            background-color: #06D6A0;
            transform: scale(1.2) rotate(5deg);
            box-shadow: 0 10px 20px rgba(6, 214, 160, 0.3);
        }

        .pbx-icon i {
            font-size: 42px;
            color: #fff;
            transition: all 0.5s ease;
            transform: rotate(5deg);
        }

        .cloud-pbx-card:hover .pbx-icon i {
            color: #fff;
            transform: rotate(15deg) scale(1.2);
        }

        /* 卡片内容 - 默认增强 */
        .pbx-content {
            position: relative;
            z-index: 2;
        }

        .pbx-title {
            font-size: 28px;
            font-weight: 700;
            color: #05b890;
            margin-bottom: 20px;
            transition: color 0.4s ease, transform 0.4s ease;
            font-family: "Inter", "Microsoft YaHei", sans-serif;
            transform: translateX(3px);
        }

        .cloud-pbx-card:hover .pbx-title {
            color: #04a07c;
            transform: translateX(8px) scale(1.03);
        }

        .pbx-description {
            font-size: 17px;
            color: #3d5a52;
            line-height: 1.7;
            margin-bottom: 25px;
            max-width: 900px;
            transition: transform 0.4s ease;
            font-family: "Inter", "Microsoft YaHei", sans-serif;
            transform: translateX(2px);
        }

        .cloud-pbx-card:hover .pbx-description {
            transform: translateX(5px);
        }

        /* 特性标签 - 默认增强 */
        .pbx-features {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-bottom: 25px;
        }

        .feature-tag {
            background-color: rgba(6, 214, 160, 0.2);
            color: #06D6A0;
            padding: 6px 18px;
            border-radius: 30px;
            font-size: 14px;
            font-weight: 600;
            transition: all 0.4s ease;
            border: 1px solid rgba(6, 214, 160, 0.3);
            font-family: "Inter", "Microsoft YaHei", sans-serif;
            transform: translateY(-2px);
        }

        .cloud-pbx-card:hover .feature-tag {
            background-color: rgba(6, 214, 160, 0.3);
            border-color: rgba(6, 214, 160, 0.4);
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 5px 10px rgba(6, 214, 160, 0.15);
        }

        /* 强调数据 */
        .highlight-stat {
            display: inline-block;
            font-size: 18px;
            font-weight: 700;
            color: #06D6A0;
            margin-left: 5px;
            text-shadow: 0 1px 3px rgba(6, 214, 160, 0.2);
        }

        /* 行动按钮 - 默认增强 */
        .pbx-cta {
            display: inline-flex;
            align-items: center;
            background-color: #06D6A0;
            color: #fff;
            padding: 11px 30px;
            border-radius: 30px;
            font-size: 16px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.4s ease;
            box-shadow: 0 5px 15px rgba(6, 214, 160, 0.3);
            border: 1px solid #06D6A0;
            font-family: "Inter", "Microsoft YaHei", sans-serif;
            transform: translateY(-2px);
        }

        .pbx-cta i {
            margin-left: 8px;
            transition: transform 0.4s ease;
            transform: translateX(2px);
        }

        .cloud-pbx-card:hover .pbx-cta {
            background-color: #05b890;
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 10px 25px rgba(6, 214, 160, 0.4);
            border-color: #05b890;
        }

        .cloud-pbx-card:hover .pbx-cta i {
            transform: translateX(8px) rotate(15deg) scale(1.2);
        }

        /* 响应式适配 */
        @media (max-width: 768px) {
            .cloud-pbx-card {
                padding: 30px 25px;
                transform: translateY(-5px);
            }
            
            .section-header h2 {
                font-size: 28px;
            }
            
            .pbx-icon {
                width: 75px;
                height: 75px;
            }
            
            .pbx-icon i {
                font-size: 36px;
            }
            
            .pbx-title {
                font-size: 24px;
            }
            
            .pbx-description {
                font-size: 16px;
            }
        }

        @media (max-width: 576px) {
            .pbx-features {
                gap: 8px;
            }
            
            .feature-tag {
                padding: 5px 12px;
                font-size: 12px;
            }
            
            .pbx-cta {
                padding: 8px 20px;
                font-size: 14px;
            }
        }  
			  
			   /* 容器样式 - 避免冲突，使用特定类名前缀 */
.comm-digitalization-section .et-title span{
    color: #06D6A0;
}
.comm-digitalization-section .et-title span::after{
    background-color: rgba(6,214,160,0.2);
}
.container_box .et-title span{
    color: #06D6A0;
}
.container_box .et-title span::after{
    background-color: rgba(6,214,160,0.2);
}
        .comm-container {
            max-width:99%;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
        }

        /* 标题区域 - 优化标题样式 */
        .comm-section-header {
            text-align: center;
            margin-bottom: 100px;
            position: relative;
            z-index: 5;
        }

        .comm-section-header h2 {
            font-size: 42px;
            font-weight: 800;
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
            line-height: 1.3;
        }

        /* 标题文字颜色区分 */
        .comm-title-black {
            color: #1a1a1a;
            margin-right: 4px;
        }
        
        .comm-title-green {
            color: #06D6A0;
            position: relative;
            padding-bottom: 4px;
            margin-left: 4px;
            display: inline-block;
        }
        
        /* 下划线背景单独应用skew(-12deg)倾斜效果 */
        .comm-title-green::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 100%;
            height: 8px;
            background-color: rgba(6, 214, 160, 0.2);
            border-radius: 4px;
            transform: skew(-12deg); /* 仅下划线背景倾斜 */
            z-index: -1;
            transition: all 0.3s ease;
        }
        
        .comm-title-green:hover::after {
            height: 10px;
            background-color: rgba(6, 214, 160, 0.3);
            transform: skew(-12deg) scaleX(1.05);
        }

        .comm-section-header p {
            font-size: 19px;
            color: #666;
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.8;
        }

        /* 卡片容器 - 确保浮动上层 */
        .comm-service-container {
            position: relative;
            z-index: 20;
            padding: 20px 0;
            overflow: visible;
        }

        .comm-service-slider {
            display: flex;
            gap: 35px;
            transition: all 0.6s cubic-bezier(0.33, 1, 0.68, 1);
            position: relative;
        }

        /* 卡片核心样式 - 含优化的右下角渐变 */
        .comm-service-card {
            min-width: calc(25% - 26px);
            border-radius: 16px;
            padding: 50px 30px;
            transition: all 0.6s cubic-bezier(0.33, 1, 0.68, 1);
            position: relative;
            cursor: pointer;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
            background-color: #fff;
            z-index: 10;
            overflow: hidden; /* 限制渐变范围 */
        }

        /* 优化的右下角渐变效果 - 更平滑融入 */
        .comm-service-card::after {
            content: '';
            position: absolute;
            bottom: 0;
            right: 0;
            width: 240px;
            height: 240px;
            background: linear-gradient(130deg, 
                        rgba(6, 214, 160, 0) 0%, 
                        rgba(6, 214, 160, 0.05) 50%, 
                        rgba(6, 214, 160, 0.15) 100%);
            border-radius: 60% 0 0 0; /* 更柔和的扇形角度 */
            transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
            z-index: 1; /* 渐变在内容之下 */
            transform-origin: bottom right;
            opacity: 0.9;
        }

        /*  hover时渐变增强 - 更平滑过渡 */
        .comm-service-card:hover::after {
            width: 300px;
            height: 300px;
            background: linear-gradient(130deg, 
                        rgba(6, 214, 160, 0) 0%, 
                        rgba(6, 214, 160, 0.1) 50%, 
                        rgba(6, 214, 160, 0.22) 100%);
            transform: scale(1.05);
        }

        /* 卡片交互效果 */
        .comm-service-slider:hover .comm-service-card:not(:hover) {
            transform: scale(0.9) translateY(10px);
            z-index: 10;
            opacity: 0.85;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
        }

        .comm-service-card:hover {
            background-color: #06D6A0;
            transform: scale(1.2) translateY(-15px);
            z-index: 50;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
            opacity: 1;
        }

        /* 右侧卡片滑动效果 */
        .comm-service-card:nth-child(1):hover ~ .comm-service-card {
            transform: scale(0.85) translateY(10px) translateX(80px);
        }

        .comm-service-card:nth-child(2):hover ~ .comm-service-card {
            transform: scale(0.85) translateY(10px) translateX(80px);
        }

        .comm-service-card:nth-child(3):hover ~ .comm-service-card {
            transform: scale(0.85) translateY(10px) translateX(80px);
        }

        /* 图标样式 */
        .comm-service-icon {
            width: 80px;
            height: 80px;
            background-color: rgba(6, 214, 160, 0.1);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 30px;
            transition: all 0.5s ease;
            position: relative;
            z-index: 2;
        }

        .comm-service-icon i {
            font-size: 36px;
            color: #06D6A0;
            transition: all 0.5s ease;
        }

        .comm-service-card:hover .comm-service-icon {
            background-color: #fff;
        }

        .comm-service-card:hover .comm-service-icon i {
            color: #06D6A0;
            transform: scale(1.1) rotate(10deg);
        }

        /* 卡片内容样式 */
        .comm-service-title {
            font-size: 24px;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 15px;
            transition: color 0.4s ease, transform 0.4s ease;
            position: relative;
            z-index: 2;
        }

        .comm-service-desc {
            font-size: 16px;
            color: #666;
            line-height: 1.8;
            margin-bottom: 15px;
            transition: color 0.4s ease, transform 0.4s ease;
            position: relative;
            z-index: 2;
        }

        .comm-service-feature {
            font-size: 14px;
            color: #777;
            line-height: 1.6;
            margin-bottom: 8px; /* 缩小间距 */
            padding-left: 20px;
            position: relative;
            z-index: 2;
            transition: color 0.4s ease;
        }

        .comm-service-feature::before {
            content: "?";
            color: #06D6A0;
            font-weight: bold;
            position: absolute;
            left: 0;
        }

        .comm-service-card:hover .comm-service-title,
        .comm-service-card:hover .comm-service-desc,
        .comm-service-card:hover .comm-service-feature {
            color: #fff;
            transform: translateX(5px);
        }

        /* 链接样式 */
        .comm-service-link {
            display: inline-flex;
            align-items: center;
            font-size: 16px;
            font-weight: 600;
            color: #06D6A0;
            text-decoration: none;
            transition: all 0.4s ease;
            position: relative;
            z-index: 2;
            margin-top: 10px;
        }

        .comm-service-link i {
            margin-left: 8px;
            transition: transform 0.4s ease;
        }

        .comm-service-card:hover .comm-service-link {
            color: #fff;
            padding-left: 5px;
        }

        .comm-service-card:hover .comm-service-link i {
            transform: translateX(8px) rotate(30deg);
        }

        /* 悬浮阴影增强 */
        .comm-service-card::before {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 10%;
            width: 80%;
            height: 20px;
            background-color: rgba(0, 0, 0, 0.1);
            border-radius: 50%;
            filter: blur(10px);
            transition: all 0.6s ease;
            z-index: -1;
            opacity: 0.5;
        }

        .comm-service-card:hover::before {
            bottom: -20px;
            width: 90%;
            height: 30px;
            background-color: rgba(6, 214, 160, 0.3);
            opacity: 0.8;
            filter: blur(15px);
        }

        /* 响应式适配 - 修改后的自适应部分（添加左右滑动方案，解决小屏兼容问题） */
/* 新增：全局box-sizing（响应式基础，不影响原有） */
*, *::before, *::after {
    box-sizing: border-box;
}

/* 原有扩展：大桌面/小平板（1200px），微调间距 */
@media (max-width: 1200px) {
    .comm-service-card {
        min-width: calc(25% - 25px);
        padding: 45px 25px;
    }
}

/* 原有扩展：中平板（992px），2列布局，简化滑动 */
@media (max-width: 992px) {
    .comm-service-card {
        min-width: calc(50% - 17px);
    }
    .comm-service-card:nth-child(1):hover ~ .comm-service-card,
    .comm-service-card:nth-child(2):hover ~ .comm-service-card,
    .comm-service-card:nth-child(3):hover ~ .comm-service-card {
        transform: scale(0.9) translateY(10px) translateX(40px);
    }
}

/* 原有扩展：小平板/大手机（768px），添加左右滑动 */
@media (max-width: 768px) {
    .comm-section-header h2 {
        font-size: 36px;
    }
    .comm-title-green::after {
        height: 6px;
    }
    .comm-service-icon {
        width: 70px;
        height: 70px;
    }
    .comm-service-icon i {
        font-size: 32px;
    }
    
    /* 关键修改：添加横向滑动容器 */
    .comm-service-container {
        overflow-x: auto; /* 启用横向滚动 */
        overflow-y: hidden;
        padding: 20px 0 30px 0; /* 增加底部padding，为滚动条留空间 */
        -webkit-overflow-scrolling: touch; /* iOS平滑滚动 */
        scrollbar-width: thin; /* Firefox细滚动条 */
    }
    
    /* 滚动条样式美化（Webkit内核） */
    .comm-service-container::-webkit-scrollbar {
        height: 6px;
    }
    
    .comm-service-container::-webkit-scrollbar-track {
        background: rgba(6, 214, 160, 0.1);
        border-radius: 3px;
    }
    
    .comm-service-container::-webkit-scrollbar-thumb {
        background: rgba(6, 214, 160, 0.5);
        border-radius: 3px;
    }
    
    .comm-service-container::-webkit-scrollbar-thumb:hover {
        background: rgba(6, 214, 160, 0.7);
    }
    
    .comm-service-slider {
        flex-direction: row; /* 保持行布局，不再垂直堆叠 */
        gap: 20px;
        width: max-content; /* 内容决定宽度，允许超出 */
        min-width: 100%; /* 至少全宽 */
        padding: 0 20px; /* 左右留白 */
    }
    
    .comm-service-card {
        min-width: 280px; /* 固定卡片最小宽度，确保内容可读 */
        max-width: 320px; /* 限制最大宽度 */
        flex-shrink: 0; /* 禁止缩小，保持尺寸 */
        padding: 30px 20px;
    }
    
    /* 禁用hover效果，避免滑动冲突 */
    .comm-service-slider:hover .comm-service-card:not(:hover) {
        transform: none;
        opacity: 1;
    }
    
    .comm-service-card:hover {
        transform: scale(1.02); /* 轻微放大，不影响布局 */
        z-index: 20;
    }
    
    .comm-service-card:nth-child(1):hover ~ .comm-service-card,
    .comm-service-card:nth-child(2):hover ~ .comm-service-card,
    .comm-service-card:nth-child(3):hover ~ .comm-service-card {
        transform: none; /* 禁用滑动效果 */
    }
}

/* 原有扩展：手机（576px），优化滑动体验 */
@media (max-width: 576px) {
    .comm-service-card {
        min-width: 260px; /* 缩小最小宽度，一屏显示更多 */
        max-width: 300px;
        padding: 24px 16px;
    }
    .comm-section-header h2 {
        font-size: 28px;
    }
    .comm-title-green::after {
        height: 5px;
    }
    
    .comm-service-slider {
        gap: 16px;
        padding: 0 16px; /* 减少左右留白 */
    }
    
    .comm-service-slider:hover .comm-service-card:not(:hover) {
        transform: none;
        opacity: 1;
    }
    .comm-service-card:hover {
        transform: scale(1.01); /* 更轻微的放大 */
    }
    .comm-service-card:nth-child(1):hover ~ .comm-service-card,
    .comm-service-card:nth-child(2):hover ~ .comm-service-card,
    .comm-service-card:nth-child(3):hover ~ .comm-service-card {
        transform: none;
    }
    
    .comm-service-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 16px;
    }
    
    .comm-service-icon i {
        font-size: 26px;
    }
    
    .comm-service-title {
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    .comm-service-desc {
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 12px;
    }
    
    .comm-service-link {
        font-size: 14px;
    }
}

/* 新增：超小手机（480px），进一步优化滑动 */
@media (max-width: 480px) {
    .comm-section-header h2 {
        font-size: 24px;
    }
    
    .comm-service-card {
        min-width: 240px; /* 进一步缩小 */
        max-width: 280px;
        padding: 20px 14px;
    }
    
    .comm-service-slider {
        gap: 12px;
        padding: 0 12px;
    }
    
    .comm-service-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 12px;
    }
    
    .comm-service-icon i {
        font-size: 22px;
    }
    
    .comm-service-title {
        font-size: 16px;
        margin-bottom: 8px;
    }
    
    .comm-service-desc {
        font-size: 13px;
        margin-bottom: 10px;
    }
    
    .comm-service-link {
        font-size: 13px;
    }
}

/* 新增：极端小屏（360px），最小化卡片 */
@media (max-width: 360px) {
    .comm-section-header h2 {
        font-size: 22px;
    }
    
    .comm-service-card {
        min-width: 220px; /* 最小化，但保证可读性 */
        max-width: 260px;
        padding: 18px 12px;
    }
    
    .comm-service-slider {
        gap: 10px;
        padding: 0 10px;
    }
    
    .comm-service-icon {
        width: 44px;
        height: 44px;
        margin-bottom: 10px;
    }
    
    .comm-service-icon i {
        font-size: 20px;
    }
    
    .comm-service-title {
        font-size: 15px;
        margin-bottom: 6px;
    }
    
    .comm-service-desc {
        font-size: 12px;
        margin-bottom: 8px;
    }
    
    .comm-service-link {
        font-size: 12px;
    }
}

/* 新增：触屏设备优化 - 禁用hover，提升滑动性能 */
@media (hover: none) and (pointer: coarse) {
    .comm-service-card:hover,
    .comm-service-card:hover::after,
    .comm-service-card:hover .comm-service-icon,
    .comm-service-card:hover .comm-service-title,
    .comm-service-card:hover .comm-service-desc,
    .comm-service-card:hover .comm-service-link {
        transform: none;
        background-color: inherit;
        color: inherit;
    }
    
    /* 改用active伪类，提供触屏反馈 */
    .comm-service-card:active {
        transform: scale(0.98);
        opacity: 0.9;
    }
}

/* 新增：横屏手机特殊处理 - 利用更多水平空间 */
@media (max-width: 768px) and (orientation: landscape) {
    .comm-service-card {
        min-width: 300px; /* 横屏时稍大卡片 */
        max-width: 350px;
    }
    
    .comm-service-slider {
        gap: 24px;
    }
    
    .comm-service-container {
        padding: 16px 0 24px 0; /* 减少垂直空间占用 */
    }
}

/* 新增：滑动提示（仅小屏显示） */
@media (max-width: 768px) {
    .comm-service-container::after {
        content: '← 左右滑动查看更多 →';
        display: block;
        text-align: center;
        font-size: 12px;
        color: rgba(6, 214, 160, 0.7);
        margin-top: 10px;
        animation: fadeInOut 3s ease-in-out infinite;
    }
    
    @keyframes fadeInOut {
        0%, 100% { opacity: 0.5; }
        50% { opacity: 1; }
    }
    
    /* 滑动后隐藏提示 */
    .comm-service-container:hover::after,
    .comm-service-container.scrolled::after {
        display: none;
    }
}

		
		 /* home */
		 .et-green-container {
            width: 100%;
            margin: 0 auto;
            background-color: #06D6A0;
            border-radius: 12px;
            box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.8s ease, transform 0.8s ease;
            margin-top: 100px;
        }
        
        /* 背景装饰 */
        .et-green-decoration-1 {
            position: absolute;
            right: -80px;
            top: -80px;
            width: 256px;
            height: 256px;
            background-color: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            filter: blur(64px);
            z-index: 0;
        }
        
        .et-green-decoration-2 {
            position: absolute;
            left: -40px;
            bottom: 40px;
            width: 192px;
            height: 192px;
            background-color: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            filter: blur(64px);
            z-index: 0;
        }
        
        /* 内容容器 */
        .et-green-content {
            display: flex;
            flex-direction: column;
        }
        
        @media (min-width: 768px) {
            .et-green-content {
                flex-direction: row;
            }
        }
        
        /* 文字内容区域 */
        .et-green-text {
            width: 100%;
            padding: 40px;
            position: relative;
            z-index: 10;
            color: white;
        }
        
        @media (min-width: 768px) {
            .et-green-text {
                width: 50%;
                padding: 30px;
            }
        }
        
        /* 加大加粗"新一代企业通讯解决方案" */
        .et-green-badge {
            display: inline-block;
            padding: 5px 16px; /* 适当增加内边距配合更大字体 */
            border-radius: 999px;
            background-color: rgba(255, 255, 255, 0.2);
            color: white;
            font-weight: 700; /* 加粗 */
            font-size: 16px; /* 加大字体 */
            margin-bottom: 12px;
        }
        
        .et-green-title {
            font-size: 40px;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 12px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }
        
        .et-green-desc {
            color: rgba(255, 255, 255, 0.9);
            font-size: 16px;
            margin-bottom: 20px;
            max-width: 700px;
        }
        
        /* 特性列表 */
        .et-green-features {
            margin-bottom: 20px;
        }
        
        .et-green-feature {
            display: flex;
            align-items: center;
            margin-bottom: 8px;
        }
        
        .et-green-feature i {
            color: white;
            margin-right: 10px;
            font-size: 14px;
        }
        
        .et-green-feature span {
            color: rgba(255, 255, 255, 0.9);
            font-size: 15px;
        }
        
        /* 按钮样式 */
        .et-green-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }
        
        .et-green-btn-primary {
            background: white;
            color: #06D6A0;
            padding: 10px 24px;
            border-radius: 999px;
            font-weight: 600;
            font-size: 15px;
            text-decoration: none;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            display: inline-block;
        }
        
        .et-green-btn-primary:hover {
            box-shadow: 0 15px 20px -5px rgba(0, 0, 0, 0.15);
            transform: translateY(-2px);
        }
        
        .et-green-btn-secondary {
            border: 2px solid white;
            color: white;
            padding: 10px 24px;
            border-radius: 999px;
            font-weight: 600;
            font-size: 15px;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
        }
        
        .et-green-btn-secondary:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }
        
        /* 图像区域 */
        .et-green-image {
            width: 100%;
            padding: 20px;
            display: flex;
            justify-content: center;
            position: relative;
            z-index: 10;
            margin-top: 10px;
        }
        
        @media (min-width: 768px) {
            .et-green-image {
                width: 50%;
                margin-top: 20px;
            }
        }
        
        .et-green-img-container {
            width: 100%;
            max-width: 350px;
            position: relative;
            animation: et-green-float 6s ease-in-out infinite;
        }
        
        .et-green-main-img {
            width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.2);
            border: 3px solid white;
        }
        
        /* 通话中标识 */
        .et-green-status {
            position: absolute;
            top: 232px;
            left: -12px;
            background-color: white;
            padding: 8px;
            border-radius: 8px;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            animation: et-green-pulse 4s cubic-bezier(0.4, 0, 0.6, 1) infinite;
        }
        
        .et-green-status-indicator {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .et-green-status-dot {
            width: 10px;
            height: 10px;
            background-color: #06D6A0;
            border-radius: 50%;
        }
        
        .et-green-status-text {
            font-size: 13px;
            font-weight: 500;
            color: #333;
        }
        
        /* 节省成本标识 */
        .et-green-save {
            position: absolute;
            top: -10px;
            right: -10px;
            background-color: white;
            color: #06D6A0;
            padding: 10px;
            border-radius: 8px;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        }
        
        .et-green-save-text {
            font-weight: 700;
            font-size: 16px;
        }
        
        .et-green-save-sub {
            font-size: 12px;
            font-weight: 400;
        }
        
        /* 底部信任标志 - 加大加粗 */
        .et-green-footer {
            background-color: rgba(255, 255, 255, 0.1);
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            padding: 12px 20px; /* 适当增加内边距配合更大字体 */
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
        }
        
        /* 加大加粗"已服务超过10,000+企业客户" */
        .et-green-client {
            font-size: 16px; /* 加大字体 */
            font-weight: 700; /* 加粗 */
            color: rgba(255, 255, 255, 0.9);
        }
        
        .et-green-benefits {
            display: flex;
            align-items: center;
            gap: 22px; /* 增加间距配合更大字体 */
            margin-top: 8px;
        }
        
        @media (min-width: 640px) {
            .et-green-benefits {
                margin-top: 0;
            }
        }
        
        /* 加大加粗底部服务优势文字 */
        .et-green-benefit {
            font-size: 15px; /* 加大字体 */
            font-weight: 600; /* 加粗 */
            color: rgba(255, 255, 255, 0.85);
        }
        
        /* 动画定义 */
        @keyframes et-green-float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
            100% { transform: translateY(0px); }
        }
        
        @keyframes et-green-pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.7; }
        }
        /* 强制表格边框为0，确保HTML中的border="0"生效 */
.content table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 24px 0;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(6, 214, 160, 0.1);
  overflow: hidden;
  border: 0 !important; /* 强制表格边框为0 */
  /* 顶部添加突出的主色实线 */
  border-top: 4px solid #06D6A0 !important;
}

/* 表头样式 */
.content th {
  background-color: #f0fdf8;
  color: #064e3b;
  font-weight: 600;
  padding: 16px 20px;
  text-align: left;
  border: 0 !important; /* 强制表头边框为0 */
  border-bottom: 1px solid #dcfce7 !important;
  position: relative;
}

/* 表格单元格样式 */
.content td {
  padding: 16px 20px;
  border: 0 !important; /* 强制单元格边框为0 */
  border-bottom: 1px solid #dcfce7 !important;
  color: #334155;
  transition: background-color 0.2s ease;
}

/* 交替行颜色 */
.content tr:nth-child(even) td {
  background-color: #f0fdf8;
}

/* 悬停效果 */
.content tr:hover td {
  background-color: #dcfce7;
}

/* 第一列强调 */
.content td:first-child {
  font-weight: 500;
  color: #064e3b;
}

/* 最后一行底部边框去除 */
.content tr:last-child td {
  border-bottom: 0 !important;
}

/* 响应式设计 */
@media (max-width: 768px) {
  .content table {
    display: block;
    width: 100%;
    overflow-x: auto;
  }
  
  .content th,
  .content td {
    padding: 12px;
  }
}

/* 表格标题 */
.content caption {
  font-size: 20px;
  font-weight: 600;
  color: #064e3b;
  margin-bottom: 16px;
  text-align: left;
}

/* 排序指示 */
.content th.sortable {
  cursor: pointer;
}

.content th.sortable::after {
  content: " ?";
  font-size: 12.8px;
  color: #06D6A0;
  margin-left: 8px;
}

/* 表格内链接样式 */
.content td a {
  color: #06D6A0;
  text-decoration: none;
  transition: color 0.2s ease;
}

.content td a:hover {
  color: #064e3b;
  text-decoration: underline;
}

/* 为重要数据添加高亮 */
.content td.highlight {
  color: #06D6A0;
  font-weight: 600;
}

/* 共享模块样式 - 不使用通配符和body选择器 */
.et-module {
    color: #2D3748;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}
.et-global-decor {
    position: absolute;
    border-radius: 50%;
    z-index: 0;
}
.et-global-decor1 {
    top: -180px;
    right: -180px;
    width: 450px;
    height: 450px;
    /* 移除底色 */
}
.et-global-decor2 {
    bottom: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    /* 移除底色 */
}
.et-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0;
    position: relative;
    z-index: 1;
}
.et-header {
    text-align: center;
    margin-bottom: 80px;
    padding: 0 20px;
}
.et-title {
    font-size: 48px; /* 恢复原始大小 */
    color: #1F2937;
    margin: 0 0 25px;
    font-weight: 700;
    line-height: 1.3;
    display: inline-block;
}
.et-title span {
    position: relative;
}
.et-title span::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 100%;
    height: 12px;
    z-index: -1;
    transform: skew(-12deg);
}
.et-subtitle {
    font-size: 22px; /* 恢复原始大小 */
    color: #4A5568;
    max-width: 850px;
    margin: 0 auto;
    line-height: 1.8;
}
.et-cards {
    display: flex;
    width: 100%;
    position: relative;
    /* 移除原enjoytalk-row的底色和阴影 */
}

/* 卡片样式 - 重构类名避免冲突 */
.et-card {
    flex: 1;
    min-width: 250px;
    background-color: #FFFFFF;
    border-radius: 24px;
    padding: 50px 35px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(240,245,248,1);
    margin: 0 15px;
}
.et-card:first-child {
    margin-left: 0;
}
.et-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 220px;
    height: 220px;
    z-index: 0;
    transition: opacity 0.3s ease;
}
.et-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.12);
}
.et-card:hover::before {
    opacity: 0.9;
}
.et-card::after {
    content: '';
    position: absolute;
    bottom: 30px;
    right: 30px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    z-index: 0;
}
.et-card-icon {
    width: 75px; /* 恢复原始大小 */
    height: 75px; /* 恢复原始大小 */
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 35px;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}
.et-card:hover .et-card-icon {
    transform: scale(1.12);
}
.et-card-icon svg {
    width: 40px; /* 恢复原始大小 */
    height: 40px; /* 恢复原始大小 */
    transition: transform 0.4s ease;
}
.et-card:hover .et-card-icon svg {
    transform: rotate(8deg);
}
.et-card-content {
    position: relative;
    z-index: 1;
}
.et-card-title {
    font-size: 28px; /* 恢复原始大小 */
    color: #1F2937;
    margin: 0 0 22px;
    font-weight: 600;
    transition: color 0.3s ease;
}
.et-card-desc {
    font-size: 19px; /* 恢复原始大小 */
    color: #4A5568;
    line-height: 1.9;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* 卡片右下角"+"图标样式 */
.et-card-more {
    position: absolute;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: rgba(6, 214, 160, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #06D6A0;
    font-size: 24px;
    font-weight: bold;
    transition: all 0.3s ease;
    z-index: 1;
}

.et-card:hover .et-card-more {
    transform: scale(1.2);
    background-color: #06D6A0;
    color: white;
    box-shadow: 0 4px 12px rgba(6, 214, 160, 0.3);
}

/* 国家/地区导航样式 - 优化为两排显示 */
.et-countries {
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid rgba(240,245,248,1);
    text-align: center;
}

.et-countries-title {
    font-size: 28px; /* 保持国家相关字体大小 */
    color: #1F2937;
    margin: 0 0 30px;
    font-weight: 600;
}

.et-countries-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 35px;
    padding: 0;
    margin: 0;
    list-style: none;
}

/* 国家项容器 - 两排布局 */
.et-country-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.5s ease, filter 0.3s ease;
    cursor: pointer;
    width: 100px; /* 保持国家相关大小 */
}

/* 增强的动态效果 */
.et-country-container:hover {
    transform: scale(1.15) translateY(-5px);
    filter: brightness(1.1);
}

/* 上排圆形背景 */
.et-country-circle {
    width: 60px; /* 保持国家相关大小 */
    height: 60px; /* 保持国家相关大小 */
    border-radius: 50%;
    background-color: rgba(6, 214, 160, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.et-country-container:hover .et-country-circle {
    background-color: rgba(6, 214, 160, 0.25);
    box-shadow: 0 4px 15px rgba(6, 214, 160, 0.2);
}

/* 国旗在圆形中的样式 */
.et-country-flag {
    width: 34px; /* 保持国家相关大小 */
    height: 22px; /* 保持国家相关大小 */
    border-radius: 2px;
    transition: transform 0.3s ease;
}

.et-country-container:hover .et-country-flag {
    transform: scale(1.15) rotate(3deg);
}

/* 全球图标样式 */
.global-icon {
    width: 30px; /* 保持国家相关大小 */
    height: 30px; /* 保持国家相关大小 */
    fill: #06D6A0;
    transition: transform 0.3s ease;
}

.et-country-container:hover .global-icon {
    transform: rotate(15deg) scale(1.2);
}

/* 下排国家名称 */
.et-country-name {
    color: #4A5568;
    font-size: 18px; /* 保持国家相关字体大小 */
    transition: color 0.3s ease, transform 0.3s ease;
    text-align: center;
}

.et-country-container:hover .et-country-name {
    color: #06D6A0;
    font-weight: 500;
    transform: translateY(3px);
}

/* 全部按钮特殊样式 */
.et-all-container {
    composes: et-country-container;
}

.et-all-container .et-country-circle {
    animation: pulse 2s infinite ease-in-out;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(6, 214, 160, 0.4);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 8px rgba(6, 214, 160, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(6, 214, 160, 0);
    }
}

/* 国旗样式 - 使用CSS绘制，统一为绿色系 */
.flag-usa {
    background: linear-gradient(180deg, 
        #06D6A0 0%, #06D6A0 33.33%, 
        white 33.33%, white 66.66%, 
        #06D6A0 66.66%, #06D6A0 100%);
    position: relative;
}

.flag-usa::before {
    content: '';
    position: absolute;
    width: 40%;
    height: 66.66%;
    background-color: #04946c;
}

.flag-australia {
    background-color: #04946c;
    position: relative;
}

.flag-australia::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 45%, white 45%, white 55%, transparent 55%),
                linear-gradient(135deg, transparent 45%, white 45%, white 55%, transparent 55%);
}

.flag-australia::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    background-color: white;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.flag-japan {
    background-color: white;
    position: relative;
}

.flag-japan::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 12px;
    background-color: #06D6A0;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.flag-singapore {
    background: linear-gradient(90deg, 
        #06D6A0 0%, #06D6A0 50%, 
        white 50%, white 100%);
    position: relative;
}

.flag-singapore::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 25%;
    width: 10px;
    height: 10px;
    background-color: white;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.flag-singapore::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 75%;
    width: 8px;
    height: 8px;
    background-color: #04946c;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.flag-hongkong {
    background-color: #06D6A0;
    position: relative;
}

.flag-hongkong::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 12px;
    background-color: white;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.flag-hongkong::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 16px;
    border: 1px solid white;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.flag-uk {
    background: 
        linear-gradient(45deg, transparent 45%, #06D6A0 45%, #06D6A0 55%, transparent 55%),
        linear-gradient(135deg, transparent 45%, #06D6A0 45%, #06D6A0 55%, transparent 55%),
        linear-gradient(45deg, #04946c 0%, #04946c 45%, transparent 45%, transparent 55%, #04946c 55%, #04946c 100%),
        linear-gradient(135deg, #04946c 0%, #04946c 45%, transparent 45%, transparent 55%, #04946c 55%, #04946c 100%),
        linear-gradient(90deg, white 45%, transparent 45%, transparent 55%, white 55%),
        linear-gradient(0deg, white 45%, transparent 45%, transparent 55%, white 55%);
}

.flag-france {
    background: linear-gradient(90deg, 
        #04946c 0%, #04946c 33.33%, 
        white 33.33%, white 66.66%, 
        #06D6A0 66.66%, #06D6A0 100%);
}

.flag-canada {
    background-color: white;
    position: relative;
}

.flag-canada::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 30%;
    height: 100%;
    background-color: #06D6A0;
}

.flag-canada::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 30%;
    height: 100%;
    background-color: #06D6A0;
}

/* 弹出层样式 - 按要求修改 */
.intl-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.intl-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.intl-modal-box {
    background-color: white;
    border-radius: 16px;
    width: 90%;
    max-width: 800px;
    max-height: 80vh;
    overflow-y: auto;
    padding: 30px;
    position: relative;
    transform: translateY(20px) scale(0.95);
    transition: transform 0.3s ease;
}

.intl-modal-overlay.active .intl-modal-box {
    transform: translateY(0) scale(1);
}

.intl-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #4A5568;
    transition: color 0.3s ease, transform 0.3s ease;
    padding: 0;
    line-height: 1;
}

.intl-modal-close:hover {
    color: #06D6A0;
    transform: rotate(90deg) scale(1.2);
}

.intl-modal-box-title {
    font-size: 32px; /* 保持国家相关字体大小 */
    color: #1F2937;
    margin: 0 0 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(240,245,248,1);
}

.intl-modal-countries-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 15px;
}

.intl-modal-country-link {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.intl-modal-country-link:hover {
    background-color: rgba(6, 214, 160, 0.08);
    transform: translateX(5px);
    box-shadow: 0 3px 10px rgba(6, 214, 160, 0.1);
}

.intl-modal-country-link-flag {
    width: 36px;
    height: 24px;
    margin-right: 12px;
    border-radius: 3px;
    overflow: hidden;
    flex-shrink: 0;
}

/* 响应式样式 */
@media (max-width: 1200px) {
    .et-card {
        padding: 40px 25px;
    }
    .et-card-title {
        font-size: 24px; /* 恢复原始响应式大小 */
    }
    .et-card-desc {
        font-size: 17px; /* 恢复原始响应式大小 */
    }
    .et-countries-list {
        gap: 25px;
    }
}
@media (max-width: 992px) {
    .et-cards {
        flex-wrap: wrap;
    }
    .et-card {
        flex: 0 0 calc(50% - 30px);
        margin-bottom: 30px;
    }
}
@media (max-width: 768px) {
    .et-module {
        padding: 80px 0;
    }
    .et-card {
        flex: 0 0 100%;
        margin: 0 20px 30px;
    }
    .et-title {
        font-size: 38px; /* 恢复原始响应式大小 */
    }
    .et-subtitle {
        font-size: 19px; /* 恢复原始响应式大小 */
    }
    .et-card-icon {
        width: 65px; /* 恢复原始响应式大小 */
        height: 65px; /* 恢复原始响应式大小 */
        margin-bottom: 30px;
    }
    .et-card-icon svg {
        width: 35px; /* 恢复原始响应式大小 */
        height: 35px; /* 恢复原始响应式大小 */
    }
    .et-card::before {
        width: 180px;
        height: 180px;
    }
    .et-countries {
        margin-top: 60px;
        padding-top: 30px;
    }
    .et-countries-title {
        font-size: 24px; /* 保持国家相关响应式字体大小 */
        margin-bottom: 25px;
    }
    .et-countries-list {
        gap: 20px;
    }
    .et-country-container {
        width: 85px; /* 保持国家相关响应式大小 */
    }
    .et-country-circle {
        width: 55px; /* 保持国家相关响应式大小 */
        height: 55px; /* 保持国家相关响应式大小 */
    }
    .et-country-name {
        font-size: 16px; /* 保持国家相关响应式字体大小 */
    }
    .intl-modal-countries-list {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    }
}

@media (max-width: 576px) {
    .et-countries-list {
        gap: 15px;
    }
    .et-country-container {
        width: 70px; /* 保持国家相关响应式大小 */
    }
    .et-country-circle {
        width: 50px; /* 保持国家相关响应式大小 */
        height: 50px; /* 保持国家相关响应式大小 */
    }
    .et-country-flag {
        width: 30px; /* 保持国家相关响应式大小 */
        height: 20px; /* 保持国家相关响应式大小 */
    }
    .et-country-name {
        font-size: 15px; /* 保持国家相关响应式字体大小 */
    }
}

/* 方案优势模块特有样式 */
.et-advantages .et-card::before {
    background: linear-gradient(135deg, rgba(6,214,160,0.25) 0%, rgba(6,214,160,0) 75%);
}
.et-advantages .et-card::after {
    background-color: #06D6A0;
    box-shadow: 0 0 0 5px rgba(6,214,160,0.1);
}
.et-advantages .et-card-icon {
    background: linear-gradient(135deg, rgba(6,214,160,0.15) 0%, rgba(6,214,160,0.08) 100%);
}
.et-advantages .et-card:hover .et-card-icon {
    background: linear-gradient(135deg, rgba(6,214,160,0.25) 0%, rgba(6,214,160,0.15) 100%);
}
.et-advantages .et-card-icon svg {
    fill: #06D6A0;
}
.et-advantages .et-card:hover .et-card-title {
    color: #06D6A0;
}
.et-advantages .et-title span ,.enjoytalk-global-container .et-title span{
    color: #06D6A0;
}
.et-advantages .et-title span::after ,.enjoytalk-global-container .et-title span::after{
    background-color: rgba(6,214,160,0.2);
}

/* 客户痛点模块特有样式 */
.et-painpoints {
    margin-top: 50px;
}
.et-painpoints .et-card::before {
    background: linear-gradient(135deg, rgba(255,77,38,0.25) 0%, rgba(255,77,38,0) 75%);
}
.et-painpoints .et-card::after {
    background-color: #FF4D26;
    box-shadow: 0 0 0 5px rgba(255,77,38,0.1);
}
.et-painpoints .et-card-icon {
    background: linear-gradient(135deg, rgba(255,77,38,0.15) 0%, rgba(255,77,38,0.08) 100%);
}
.et-painpoints .et-card:hover .et-card-icon {
    background: linear-gradient(135deg, rgba(255,77,38,0.25) 0%, rgba(255,77,38,0.15) 100%);
}
.et-painpoints .et-card-icon svg {
    fill: #FF4D26;
}
.et-painpoints .et-card:hover .et-card-title {
    color: #FF4D26;
}
.et-painpoints .et-title span {
    color: #FF4D26;
}
.et-painpoints .et-title span::after {
    background-color: rgba(255,77,38,0.2);
}

.et-number-services {
    margin-top: 50px;
}
.et-number-services .et-card::before {
    background: linear-gradient(135deg, rgba(6,214,160,0.25) 0%, rgba(6,214,160,0) 75%);
}
.et-number-services .et-card::after {
    background-color: #06D6A0;
    box-shadow: 0 0 0 5px rgba(6,214,160,0.1);
}
.et-number-services .et-card-icon {
    background: linear-gradient(135deg, rgba(6,214,160,0.15) 0%, rgba(6,214,160,0.08) 100%);
}
.et-number-services .et-card:hover .et-card-icon {
    background: linear-gradient(135deg, rgba(6,214,160,0.25) 0%, rgba(6,214,160,0.15) 100%);
}
.et-number-services .et-card-icon svg {
    fill: #06D6A0;
}
.et-number-services .et-card:hover .et-card-title {
    color: #06D6A0;
}
.et-number-services .et-title span {
    color: #06D6A0;
}
.et-number-services .et-title span::after {
    background-color: rgba(6,214,160,0.2);
}

/* 全局链接样式 - 取消下划线和默认色系 */
a {
    text-decoration: none !important;
}
               /* 核心容器 - 保持现有风格 */
               /* 核心容器 - 保持现有风格 */
      /* 核心容器 - 保持外部大距离和内部距离 */
        .content nav {
            width: 100%;
            max-width: 1100px;
            margin: 50px auto;
            padding: 45px;
            background: #ffffff;
            border-radius: 16px;
            box-shadow: 0 12px 40px rgba(6, 214, 160, 0.12);
            transition: all 0.4s ease;
            font-family: "Microsoft YaHei", "Helvetica Neue", sans-serif;
            position: relative;
            overflow: hidden;
            border-top: 4px solid #06D6A0; /* 仅保留顶部线条 */
        }
        
        /* 背景装饰 */
        .content nav:before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 350px;
            height: 350px;
            background: rgba(6, 214, 160, 0.05);
            transform: translate(40%, -40%) rotate(45deg);
            z-index: 0;
        }
        
        /* 标题样式 */
        .content nav  h2 {
            font-size: 28px;
            font-weight: 700;
            color: #06D6A0;
            margin: 0 0 35px;
            padding: 0 0 15px 0;
            border-bottom: 2px solid rgba(6, 214, 160, 0.2);
            text-align: left;
            position: relative;
            z-index: 1;
            border-left: none !important; 
        }
        
        /* 栏目导航下划线装饰 */
        .content  nav  h2:after {
            content: '';
            position: absolute;
            width: 100px;
            height: 3px;
            background: #06D6A0;
            bottom: -2px;
            left: 0;
        }
        
        /* 两列布局 */
        .content  nav  ul {
            list-style: none;
            margin: 0;
            padding: 0;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            position: relative;
            z-index: 1;
        }
        
        /* 列表项 - 浅绿色底色 */
        .content  nav ul li {
            background: rgba(6, 214, 160, 0.08);
            border-radius: 10px;
            overflow: hidden;
            transition: background 0.3s ease;
            /* 强制移除左侧任何可能的线条 */
            border-left: none !important;
            box-shadow: none !important;
        }
        
        /* 列表项链接 - 确保左侧无线条 */
        .content  nav  ul  li  a {
            display: block;
            padding: 18px 25px;
            color: #222;
            text-decoration: none;
            font-size: 17px;
            font-weight: 400;
            transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
            position: relative;
            overflow: hidden;
            line-height: 1.5;
            /* 强制移除链接可能的左侧线条 */
            border-left: none !important;
        }
        
        /* 悬停效果 - 确保左侧无线条出现 */
        .content  nav  ul  li:hover {
            background: rgba(6, 214, 160, 0.12);
            border-left: none !important;
        }
        
        .content nav  ul  li > a:hover {
            color: #ffffff;
            background: #06D6A0;
            transform: translateY(-3px);
            box-shadow: 0 8px 15px rgba(6, 214, 160, 0.2);
            font-weight: 600;
            border-left: none !important; /* 悬停时也无左侧线条 */
        }
        
        /* 右侧装饰箭头 */
        .content nav  ul li a:after {
            content: '→';
            position: absolute;
            right: 25px;
            font-size: 18px;
            opacity: 0;
            transform: translateX(10px);
            transition: all 0.3s ease;
        }
        
        .content nav ul  li  a:hover:after {
            opacity: 1;
            transform: translateX(0);
        }
        
        /* 点击反馈 */
        .content  nav ul li  a:active {
            transform: translateY(-1px);
            box-shadow: 0 4px 10px rgba(6, 214, 160, 0.2);
        }
        
        /* 响应式调整 */
        @media (max-width: 768px) {
            .content  nav ul {
                grid-template-columns: 1fr;
                gap: 12px;
            }
            .content nav {
                padding: 35px 25px;
                margin: 80px 15px;
            }
            .content nav  h2 {
                font-size: 24px;
                margin: 0 0 28px;
            }
            .content nav  ul  li  a {
                padding: 15px 20px;
                font-size: 16px;
                border-left: none !important; /* 移动端同样确保无左侧线条 */
            }
        }
        
        /* 容器样式 */
        .news-container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 30px 20px;
        }
        
        /* 标题区域 - 田字形图标 */
        .news-header {
            margin-bottom: 25px;
        }
        
        .news-title {
            color: #2c3e50;
            font-size: 28px;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            line-height: 34px;
        }
        
        /* 田字形图标 - PX单位精确定义 */
        .news-title::before {
            content: '';
            display: inline-block;
            width: 20px;
            height: 20px;
            margin-right: 12px;
            background-image: 
                linear-gradient(45deg, #06D6A0 50%, transparent 50%),
                linear-gradient(-45deg, #06D6A0 50%, transparent 50%),
                linear-gradient(135deg, #06D6A0 50%, transparent 50%),
                linear-gradient(-135deg, #06D6A0 50%, transparent 50%);
            background-size: 10px 10px;
            background-position: top left, top right, bottom left, bottom right;
            background-repeat: no-repeat;
        }
        
        /* 栏目切换标签 */
        .news-tabs {
            display: flex;
            gap: 15px;
            margin-bottom: 35px;
            flex-wrap: wrap;
        }
        
        .news-tab {
            padding: 12px 28px;
            background-color: #f5f7f6;
            border: none;
            border-radius: 30px;
            font-size: 18px;
            font-weight: 500;
            color: #555555;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .news-tab:hover {
            background-color: #eafaf4;
            color: #06D6A0;
        }
        
        .news-tab.active {
            background-color: #06D6A0;
            color: #ffffff;
            box-shadow: 0 4px 15px rgba(6, 214, 160, 0.25);
        }
        
        /* 新闻列表容器 */
        .news-list {
            display: none;
            flex-direction: column;
            gap: 30px;
        }
        
        .news-list.active {
            display: flex;
        }
        
        /* 新闻列表项 */
        .news-item {
            background-color: #ffffff;
            border-radius: 12px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.07);
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            transition: all 0.3s ease;
            overflow: hidden;
        }
        
        .news-item:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        }
        
        /* 新闻图片 */
        .news-image {
            flex: 0 0 200px;
            height: 150px;
            margin: 18px;
            border-radius: 10px;
            overflow: hidden;
        }
        
        .news-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }
        
        .news-item:hover .news-image img {
            transform: scale(1.06);
        }
        
        /* 新闻内容区域 */
        .news-content {
            flex: 1;
            padding: 18px 18px 18px 0;
            min-width: 300px;
        }
        
        .news-meta {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            font-size: 15px;
        }
        
        .news-date {
            padding: 3px 10px;
            background-color: #f0fdf7;
            color: #06D6A0;
            border-radius: 4px;
            font-weight: 500;
        }
        
        .news-category {
            margin-left: 15px;
            padding: 3px 10px;
            background-color: #f8f9fa;
            color: #6c757d;
            border-radius: 4px;
            font-weight: 500;
        }
        
        .news-headline {
            font-size: 22px;
            color: #2c3e50;
            margin-bottom: 15px;
            transition: color 0.3s ease;
            line-height: 28px;
        }
        
        .news-item:hover .news-headline {
            color: #06D6A0;
        }
        
        .news-summary {
            color: #666666;
            line-height: 22px;
            margin-bottom: 18px;
            font-size: 15px;
        }
        
        .news-readmore {
            display: inline-block;
            color: #06D6A0;
            text-decoration: none;
            font-weight: 500;
            font-size: 15px;
            transition: all 0.3s ease;
        }
        
        .news-readmore:hover {
            color: #05b88c;
            text-decoration: underline;
        }
        
        /* 页码导航 */
        #pages {
            text-align: center;
            margin-top: 35px;
            padding: 15px 0;
        }
        
        #pages a, #pages span {
            display: inline-block;
            padding: 9px 15px;
            margin: 0 4px;
            text-decoration: none;
            border-radius: 4px;
            font-size: 14px;
        }
        
        #pages span {
            background-color: #06D6A0;
            color: #ffffff;
            border: 1px solid #06D6A0;
        }
        
        #pages a {
            color: #666666;
            border: 1px solid #dddddd;
        }
        
        #pages a:hover {
            border-color: #06D6A0;
            color: #06D6A0;
            background-color: #f8fff9;
        }
        
        /* 响应式适配 */
        @media (max-width: 768px) {
            .news-title {
                font-size: 24px;
            }
            
            .news-title::before {
                width: 18px;
                height: 18px;
                background-size: 9px 9px;
            }
            
            .news-tab {
                font-size: 16px;
                padding: 10px 22px;
            }
            
            .news-image {
                flex: 0 0 100%;
                height: 160px;
                margin: 18px 18px 0;
            }
            
            .news-content {
                padding: 18px;
            }
            
            .news-headline {
                font-size: 20px;
                line-height: 26px;
            }
        }
         /* 统一命名空间：确保无CSS冲突 */
        .intl-modal-wrapper * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            list-style: none;
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
        }

        .intl-modal-wrapper {
            max-width: 1280px;
            margin: 100px 0 auto;
            padding: 20px;
            
        }

        /* 1. 国际号码申请模块 */
        .intl-modal-number {
            width: 100%;
            background: linear-gradient(135deg, #06D6A0 0%, #04B887 100%);
            border-radius: 16px;
            position: relative;
            overflow: hidden;
            padding: 40px 5%;
            box-shadow: 0 8px 30px rgba(6, 214, 160, 0.25);
            color: white;
            margin-bottom: 30px;
        }

        .intl-modal-number::before {
            content: '';
            position: absolute;
            top: -30px;
            right: -30px;
            width: 200px;
            height: 200px;
            background: rgba(255, 255, 255, 0.08);
            border-radius: 50%;
        }

        .intl-modal-number::after {
            content: '';
            position: absolute;
            bottom: -20px;
            left: -20px;
            width: 150px;
            height: 150px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 50%;
        }

        .intl-modal-header {
            position: relative;
            z-index: 2;
            margin-bottom: 28px;
        }

        .intl-modal-title {
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 12px;
            line-height: 1.2;
        }

        .intl-modal-desc {
            font-size: 16px;
            opacity: 0.9;
            max-width: 650px;
            line-height: 1.5;
        }

        .intl-modal-countries {
            position: relative;
            z-index: 2;
            display: flex;
            gap: 14px;
            overflow-x: auto;
            overflow-y: hidden;
            padding-bottom: 8px;
            margin-bottom: 32px;
        }

        .intl-modal-countries::-webkit-scrollbar {
            height: 5px;
        }

        .intl-modal-countries::-webkit-scrollbar-thumb {
            background: rgba(255, 255, 255, 0.3);
            border-radius: 3px;
        }

        .intl-modal-country {
            background: rgba(255, 255, 255, 0.2);
            border-radius: 30px;
            padding: 10px 22px;
            display: flex;
            align-items: center;
            gap: 10px;
            color: white;
            font-weight: 500;
            font-size: 15px;
            text-decoration: none;
            white-space: nowrap;
            transition: all 0.3s ease;
        }

        .intl-modal-country:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: translateY(-2px);
        }

        .intl-modal-flag {
            width: 26px;
            height: 26px;
            border-radius: 50%;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.3);
        }

        .intl-modal-buttons {
            position: relative;
            z-index: 2;
            display: flex;
            gap: 20px;
            align-items: center;
        }

        .intl-modal-primary-btn {
            background: white;
            color: #06D6A0;
            border: none;
            padding: 14px 36px;
            border-radius: 30px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

        .intl-modal-primary-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
        }

        .intl-modal-global-btn {
            position: relative;
            background: transparent;
            color: white;
            border: 2px solid white;
            padding: 13px 36px;
            border-radius: 30px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            overflow: hidden;
            transition: all 0.4s ease;
            z-index: 1;
        }

        .intl-modal-global-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: white;
            transition: all 0.4s ease;
            z-index: -1;
        }

        .intl-modal-global-btn:hover {
            color: #06D6A0;
            transform: translateY(-2px) scale(1.02);
            box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
        }

        .intl-modal-global-btn:hover::before {
            left: 0;
        }

        .intl-modal-global-icon {
            display: inline-block;
            margin-right: 8px;
            transition: transform 0.6s ease;
        }

        .intl-modal-global-btn:hover .intl-modal-global-icon {
            transform: rotate(360deg);
        }

        /* 2. 客服外包模块（标题左对齐，无下划线和额外文字） */
        .intl-modal-cs {
            width: 100%;
            background: white;
            border-radius: 16px;
            position: relative;
            overflow: hidden;
            padding: 40px 5%;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.07);
            border: 1px solid rgba(6, 214, 160, 0.1);
            margin-bottom: 20px;
        }

        .intl-modal-cs::before {
            content: '';
            position: absolute;
            top: -50px;
            right: -50px;
            width: 220px;
            height: 220px;
            background: radial-gradient(circle, rgba(6, 214, 160, 0.1) 0%, rgba(6, 214, 160, 0) 70%);
            border-radius: 50%;
            z-index: 1;
        }

        /* 客服标题区：左对齐，无下划线，无额外文字 */
        .intl-modal-cs-header {
            position: relative;
            z-index: 2;
            margin-bottom: 30px;
            text-align: left; /* 标题左对齐 */
        }

        .intl-modal-cs-title {
            color: #04B887;
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 0; /* 无额外间距 */
            line-height: 1.2;
            display: inline-block;
            position: relative;
            /* 移除下划线 */
        }

        .intl-modal-cs-desc {
            display: none; /* 隐藏描述文字 */
        }

        /* 多语言客服网格 */
        .intl-modal-langs {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 20px;
            margin-bottom: 30px;
            position: relative;
            z-index: 2;
        }

        .intl-modal-lang-item {
            background: white;
            border-radius: 12px;
            padding: 25px 20px;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: 1px solid rgba(6, 214, 160, 0.1);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
        }

        .intl-modal-lang-item:hover {
            transform: translateY(-6px) scale(1.01);
            box-shadow: 0 12px 25px rgba(6, 214, 160, 0.1);
            border-color: rgba(6, 214, 160, 0.2);
        }

        .intl-modal-lang-icon {
            color: #06D6A0;
            font-size: 36px;
            margin-bottom: 18px;
            transition: transform 0.4s ease;
        }

        .intl-modal-lang-item:hover .intl-modal-lang-icon {
            transform: scale(1.1) rotate(3deg);
        }

        .intl-modal-lang-name {
            color: #04B887;
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 8px;
            position: relative;
            padding-bottom: 6px;
        }

        .intl-modal-lang-name::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 35px;
            height: 2px;
            background: #06D6A0;
            border-radius: 1px;
        }

        .intl-modal-lang-desc {
            color: #555;
            font-size: 14px;
            line-height: 1.5;
            margin-bottom: 12px;
        }

        .intl-modal-lang-tag {
            display: inline-block;
            background: rgba(6, 214, 160, 0.1);
            color: #04B887;
            font-size: 12px;
            padding: 2px 8px;
            border-radius: 12px;
            font-weight: 500;
        }

        /* 客服模块按钮 */
        .intl-modal-cs-btn-container {
            text-align: left; /* 按钮左对齐，与标题保持一致 */
            position: relative;
            z-index: 2;
        }

        .intl-modal-cs-btn {
            background: #06D6A0;
            color: white;
            border: none;
            padding: 14px 36px;
            border-radius: 30px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(6, 214, 160, 0.2);
        }

        .intl-modal-cs-btn:hover {
            background: #04B887;
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(6, 214, 160, 0.3);
        }

        /* 3. 弹出层样式（统一风格） */
        .intl-modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.5);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .intl-modal-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .intl-modal-box {
            background: white;
            border-radius: 16px;
            width: 90%;
            max-width: 1000px;
            max-height: 80vh;
            overflow-y: auto;
            padding: 30px;
            position: relative;
            transform: translateY(20px);
            transition: transform 0.3s ease;
        }

        .intl-modal-overlay.active .intl-modal-box {
            transform: translateY(0);
        }

        .intl-modal-close {
            position: absolute;
            top: 20px;
            right: 20px;
            background: none;
            border: none;
            font-size: 24px;
            color: #666;
            cursor: pointer;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .intl-modal-close:hover {
            background: rgba(6, 214, 160, 0.1);
            color: #06D6A0;
        }

        .intl-modal-box-title {
            color: #04B887;
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 25px;
            padding-bottom: 10px;
            border-bottom: 1px solid rgba(6, 214, 160, 0.1);
        }

        /* 弹出层国家列表 */
        .intl-modal-countries-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
            gap: 12px;
        }

        .intl-modal-country-link {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 10px 12px;
            border-radius: 8px;
            color: #333;
            text-decoration: none;
            font-size: 14px;
            transition: all 0.2s ease;
        }

        .intl-modal-country-link:hover {
            background: rgba(6, 214, 160, 0.05);
            color: #04B887;
        }

        .intl-modal-country-link-flag {
            width: 24px;
            height: 24px;
            border-radius: 50%;
            overflow: hidden;
            border: 1px solid rgba(0, 0, 0, 0.1);
        }

        /* 响应式设计 */
        @media (max-width: 992px) {
            .intl-modal-langs {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .intl-modal-title {
                font-size: 26px;
            }
            .intl-modal-cs-title {
                font-size: 24px;
            }
            
            .intl-modal-buttons {
                flex-direction: column;
                align-items: flex-start;
                gap: 15px;
            }
            
            .intl-modal-primary-btn,
            .intl-modal-global-btn,
            .intl-modal-cs-btn {
                width: 100%;
                text-align: center;
            }

            .intl-modal-langs {
                grid-template-columns: 1fr;
            }

            .intl-modal-countries-list {
                grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
            }
        }
        
        .intl-num-ad-container {
            width: 100%;
            margin: 0 auto;
            padding: 100px 0 0 0;
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
        }

        .intl-num-ad-banner {
            width: 100%;
            height: auto;
            background: linear-gradient(130deg, #06D6A0 0%, #04B887 100%);
            border-radius: 12px;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            padding: 40px 5%;
            box-shadow: 0 8px 30px rgba(6, 214, 160, 0.25);
            transition: transform 0.3s ease;
        }

        .intl-num-ad-banner:hover {
            transform: translateY(-3px);
        }

        /* 背景装饰 */
        .intl-num-ad-banner::before {
            content: '';
            position: absolute;
            top: -20%;
            right: -10%;
            width: 40%;
            height: 140%;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 50%;
            z-index: 1;
        }

        .intl-num-ad-banner::after {
            content: '';
            position: absolute;
            bottom: -15%;
            left: -5%;
            width: 30%;
            height: 130%;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 50%;
            z-index: 1;
        }

        /* 内容区域 */
        .intl-num-ad-content {
            position: relative;
            z-index: 2;
            width: 68%;
        }

        .intl-num-ad-title {
            color: white;
            font-size: 34px;
            font-weight: 700;
            margin: 0 0 18px;
            line-height: 1.2;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        .intl-num-ad-subtitle {
            color: rgba(255, 255, 255, 0.9);
            font-size: 16px;
            margin: 0 0 24px;
            max-width: 600px;
        }

        /* 国家标签容器 - 支持自动换行 */
        .intl-num-ad-country-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin: 0 0 28px;
            padding: 0;
            list-style: none;
        }

        /* 国家标签样式 */
        .intl-num-ad-country-tag {
            background: rgba(255, 255, 255, 0.2);
            border-radius: 30px;
            padding: 9px 20px;
            display: flex;
            align-items: center;
            gap: 8px;
            color: white;
            font-weight: 500;
            font-size: 14px;
            text-decoration: none;
            transition: all 0.3s ease;
            white-space: nowrap;
        }

        .intl-num-ad-country-tag:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: scale(1.05);
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
        }

        .intl-num-ad-country-flag {
            width: 24px;
            height: 24px;
            border-radius: 50%;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.3);
        }

        /* 按钮组 */
        .intl-num-ad-button-group {
            display: flex;
            gap: 16px;
            align-items: center;
        }

        .intl-num-ad-main-btn {
            background: white;
            color: #06D6A0;
            border: none;
            padding: 14px 38px;
            border-radius: 30px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

        .intl-num-ad-main-btn:hover {
            background: #f8f9fa;
            transform: scale(1.05);
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
        }

        .intl-num-ad-global-btn {
            background: rgba(255, 255, 255, 0.2);
            color: white;
            border: 1px solid rgba(255, 255, 255, 0.3);
            padding: 13px 30px;
            border-radius: 30px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .intl-num-ad-global-btn:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: scale(1.05);
        }

        /* 右侧图形元素 */
        .intl-num-ad-graphic {
            position: relative;
            z-index: 2;
            width: 32%;
            display: flex;
            justify-content: center;
        }

        .intl-num-ad-globe-container {
            position: relative;
            width: 220px;
            height: 220px;
        }

        .intl-num-ad-globe-icon {
            width: 220px;
            height: 220px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .intl-num-ad-globe-icon::before {
            content: '';
            position: absolute;
            width: 85%;
            height: 85%;
            border: 2px dashed rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            animation: intlNumAdRotate 20s linear infinite;
        }

        .intl-num-ad-globe-icon::after {
            content: '';
            position: absolute;
            width: 65%;
            height: 65%;
            border: 2px dashed rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            animation: intlNumAdRotate 15s linear reverse infinite;
        }

        .intl-num-ad-phone-icon {
            width: 56px;
            height: 100px;
            background: white;
            border-radius: 14px;
            position: relative;
            z-index: 3;
            box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
        }

        .intl-num-ad-phone-icon::before {
            content: '';
            position: absolute;
            top: 10px;
            left: 10px;
            width: 36px;
            height: 70px;
            background: #06D6A0;
            border-radius: 6px;
        }

        .intl-num-ad-phone-icon::after {
            content: '';
            position: absolute;
            bottom: 8px;
            left: 50%;
            transform: translateX(-50%);
            width: 18px;
            height: 18px;
            border-radius: 50%;
            background: #e0e0e0;
            border: 1px solid #d0d0d0;
        }

        /* 旋转动画 */
        @keyframes intlNumAdRotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        /* 响应式设计 */
        @media (max-width: 1024px) {
            .intl-num-ad-banner {
                flex-direction: column;
                text-align: center;
            }
            .intl-num-ad-content {
                width: 100%;
                margin-bottom: 30px;
            }
            .intl-num-ad-title {
                font-size: 28px;
            }
            .intl-num-ad-button-group {
                justify-content: center;
                flex-wrap: wrap;
            }
            .intl-num-ad-graphic {
                width: 100%;
                margin-bottom: 20px;
            }
        }

        @media (max-width: 768px) {
            .intl-num-ad-title {
                font-size: 24px;
            }
            .intl-num-ad-subtitle {
                font-size: 14px;
                margin: 0 0 20px;
            }
            .intl-num-ad-country-tag {
                padding: 8px 16px;
                font-size: 13px;
            }
            .intl-num-ad-main-btn {
                padding: 12px 32px;
                font-size: 15px;
            }
            .intl-num-ad-global-btn {
                padding: 11px 26px;
                font-size: 15px;
            }
            .intl-num-ad-globe-container {
                width: 180px;
                height: 180px;
            }
            .intl-num-ad-globe-icon {
                width: 180px;
                height: 180px;
            }
            .intl-num-ad-phone-icon {
                width: 48px;
                height: 88px;
            }
            .intl-num-ad-phone-icon::before {
                top: 8px;
                left: 8px;
                width: 32px;
                height: 64px;
            }
             .intl-num-ad-graphic,.intl-num-ad-country-flag {
        display: none !important; /* 使用 !important 确保优先级 */
    }
      #willingPopupQRcode {
        display: none !important; /* 使用 !important 确保优先级 */
    }
        }

        @media (max-width: 480px) {
            .intl-num-ad-button-group {
                gap: 12px;
            }
            .intl-num-ad-main-btn,
            .intl-num-ad-global-btn {
                width: 100%;
            }
            .intl-num-ad-country-tags {
                gap: 8px;
            }
            .intl-num-ad-graphic,.intl-num-ad-country-flag {
        display: none !important; /* 使用 !important 确保优先级 */
    }
      #willingPopupQRcode {
        display: none !important; /* 使用 !important 确保优先级 */
    }
        }
        /* 基础样式 - 避免CSS冲突 */
        .green-detail-page * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        .green-detail-page {
            background-color: #FCFEFD;
            color: #2D3E40;
            line-height: 1.7;
            padding: 30px 0;
        }
        
        /* 颜色方案 */
        .green-detail-page {
            --primary: #06D6A0;
            --primary-light: #E6F9F4;
            --primary-dark: #04B283;
            --accent: #059669; /* 加深的主色调，用于突出显示 */
            --text-dark: #2D3E40;
            --text-light: #6B8C96;
            --border-color: #E8F5F2;
            --overlay: rgba(0, 0, 0, 0.5);
        }
        
        /* 容器与布局 */
        .green-detail-page .container {
            width: 100%;
            max-width: 1310px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        .green-detail-page .content-wrapper {
            display: grid;
            grid-template-columns: 3fr 1fr;
            gap: 40px;
        }
        
        /* 主内容区 */
        .green-detail-page .main-content {
            position: relative;
        }
        
        /* 标题与元信息 */
        .green-detail-page .page-header {
            margin-bottom: 30px;
        }
        
        .green-detail-page h1 {
            font-size: 32px;
            color: var(--text-dark);
            margin: 0 0 15px;
            position: relative;
            font-weight: bold;
        }
        
        .green-detail-page h1::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -8px;
            width: 50px;
            height: 3px;
            background-color: var(--primary);
            border-radius: 2px;
        }
        
        .green-detail-page .meta-info {
            display: flex;
            align-items: center;
            gap: 20px;
            font-size: 14px;
            color: var(--text-light);
            margin-bottom: 25px;
            flex-wrap: wrap;
        }
        
        .green-detail-page .meta-item {
            display: flex;
            align-items: center;
            gap: 6px;
        }
        
        .green-detail-page .meta-icon {
            color: var(--primary);
        }
        
        /* 摘要样式 */
        .green-detail-page .intro-text {
            font-size: 15px;
            color: var(--text-dark);
            background-color: var(--primary-light);
            padding: 25px;
            border-radius: 10px;
            margin-bottom: 30px;
        }
        
        /* 目录导航 - 加大文字 
        .green-detail-page .content nav {
            background-color: white;
            border-radius: 10px;
            padding: 20px 25px;
            margin: 0 0 40px;
            box-shadow: 0 5px 15px rgba(6, 214, 160, 0.05);
            border-top: 3px solid var(--primary);
        }
        
        .green-detail-page .content nav h2 {
            font-size: 20px;
            color: var(--primary-dark);
            margin: 0 0 18px;
            padding-bottom: 10px;
            border-bottom: 1px solid var(--border-color);
            border-left: none;
            padding-left: 0;
            margin-top: 0;
            font-weight: bold;
        }
        
        /* .green-detail-page .content nav ul {
            list-style: none;
        }
        
        .green-detail-page .content nav li {
            margin-bottom: 12px;
        }
        
        .green-detail-page .content nav li:last-child {
            margin-bottom: 0;
        }
        
        .green-detail-page .content nav a {
            color: var(--text-dark);
            text-decoration: none;
            font-size: 18px; 
            padding: 5px 0;
            display: inline-block;
            position: relative;
            padding-left: 22px;
            font-weight: 500;
        }
        
        .green-detail-page .content nav a::before {
            content: '';
            position: absolute;
            left: 0;
            top: 14px;
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background-color: var(--primary);
            transition: all 0.3s ease;
        }
        
        .green-detail-page .content nav a:hover {
            color: var(--primary-dark);
        }
        
        .green-detail-page .content nav a:hover::before {
            transform: scale(1.5);
        }
        
        .green-detail-page .content nav a.active {
            color: var(--primary-dark);
            font-weight: 600;
        }
        
        .green-detail-page .content nav a.active::before {
            background-color: var(--primary-dark);
        }*/
        
        /* 章节标题 */
        .green-detail-page h2 {
            font-size: 24px;
            color: var(--primary-dark);
            margin: 40px 0 20px;
            padding-left: 15px;
            border-left: 3px solid var(--primary);
            font-weight: bold;
        }
        
        .green-detail-page h3 {
            font-size: 20px;
            color: var(--text-dark);
            margin: 30px 0 15px;
            border-bottom: none;
            padding-bottom: 0;
            font-weight: bold;
        }
        
        /* 文本样式 */
        .green-detail-page p {
            font-size: 16px;
            margin-bottom: 20px;
            max-width: 1000px;
        }
        
        .green-detail-page a {
            color: var(--primary-dark);
            text-decoration: none;
            font-weight: 500;
            position: relative;
        }
        
        /* 图片样式 */
        .green-detail-page .main-image {
            width: 100%;
            height: 450px;
            border-radius: 12px;
            overflow: hidden;
            margin: 0 0 40px;
            box-shadow: 0 10px 25px rgba(6, 214, 160, 0.1);
        }
        
        .green-detail-page .main-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 7s ease;
        }
        
        .green-detail-page .main-image:hover img {
            transform: scale(1.07);
        }
        
        .green-detail-page .image-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin: 30px 0;
        }
        
        .green-detail-page .image-card {
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(6, 214, 160, 0.08);
            transition: transform 0.3s ease;
        }
        
        .green-detail-page .image-card:hover {
            transform: translateY(-5px);
        }
        
        .green-detail-page .image-card img {
            width: 100%;
            height: 250px;
            object-fit: cover;
        }
        
        .green-detail-page .image-caption {
            padding: 15px;
            font-size: 14px;
            color: var(--text-light);
            background-color: white;
        }
        
        /* 特色内容块 */
        .green-detail-page .feature-box {
            background-color: white;
            border-radius: 12px;
            padding: 30px;
            margin: 40px 0;
            box-shadow: 0 8px 25px rgba(6, 214, 160, 0.07);
            border: none;
        }
        
        .green-detail-page .feature-title {
            font-size: 18px;
            color: var(--primary-dark);
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .green-detail-page .feature-title::before {
            content: '?';
            width: 24px;
            height: 24px;
            background-color: var(--primary);
            color: white;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
        }
        
        /* 数据统计 */
        .green-detail-page .stats-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin: 40px 0;
        }
        
        .green-detail-page .stat-item {
            background-color: white;
            padding: 25px;
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(6, 214, 160, 0.05);
            transition: all 0.3s ease;
            border: none;
        }
        
        .green-detail-page .stat-item:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(6, 214, 160, 0.1);
        }
        
        .green-detail-page .stat-value {
            font-size: 36px;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 10px;
        }
        
        .green-detail-page .stat-label {
            font-size: 14px;
            color: var(--text-light);
        }
        
        /* 标签 */
        .green-detail-page .tags-container {
            margin: 40px 0;
        }
        
        .green-detail-page .tags-title {
            font-weight: 600;
            margin-bottom: 15px;
            color: var(--text-dark);
            font-size: 16px;
        }
        
        .green-detail-page .tags-list {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }
        
        .green-detail-page .tag {
            background-color: var(--primary-light);
            color: var(--text-dark);
            padding: 8px 18px;
            border-radius: 20px;
            font-size: 14px;
            transition: all 0.3s ease;
            border: none;
        }
        
        .green-detail-page .tag:hover {
            background-color: var(--primary);
            color: white;
        }
        
        /* 相关内容 - 纯文字设计 */
        .green-detail-page .related-content {
            margin: 50px 0 20px;
        }
        
        .green-detail-page .related-title {
            font-size: 22px;
            margin-bottom: 20px;
            color: var(--text-dark);
            border-bottom: none;
            padding-bottom: 0;
             font-weight: 700;
        }
        
        .green-detail-page .related-list {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        
        .green-detail-page .related-item {
            display: block;
            color: var(--text-dark);
            text-decoration: none;
            padding: 10px 0;
            border-bottom: 1px solid var(--border-color);
            transition: all 0.3s ease;
            background: none;
            box-shadow: none;
            border-radius: 0;
        }
        
        .green-detail-page .related-item:last-child {
            border-bottom: none;
        }
        
        .green-detail-page .related-item:hover {
            transform: none;
            color: var(--primary-dark);
            padding-left: 8px;
        }
        
        .green-detail-page .related-heading {
            font-size: 16px;
            margin-bottom: 5px;
            color: inherit;
            font-weight: 700;
        }
        
        .green-detail-page .related-desc {
            font-size: 14px;
            color: var(--text-light);
            margin-bottom: 0;
        }
        
        /* 上下页导航 */
        .green-detail-page .page-navigation {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin: 60px 0 30px;
            padding: 20px 0;
            border-top: 1px solid var(--border-color);
        }
        
        .green-detail-page .nav-link {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 8px 15px;
            border-radius: 6px;

            transition: all 0.3s ease;
            color: var(--text-dark);
            text-decoration: none;
        }
        
        .green-detail-page .nav-link:hover {
            background-color: var(--primary-light);
            color: var(--primary-dark);
        }
        
        .green-detail-page .prev-link {
            justify-content: flex-start;
        }
        
        .green-detail-page .next-link {
            justify-content: flex-end;
        }
        
        .green-detail-page .nav-arrow {
            font-size: 18px;
        }
        
        .green-detail-page .nav-text {
            max-width: 250px;
        }
        
        .green-detail-page .nav-title {
            font-weight: 600;
            margin-bottom: 3px;
        }
        
        .green-detail-page .nav-desc {
            font-size: 13px;
            color: var(--text-light);
        }
        
        /* 右侧国家推荐板块 - 突出显示样式 */
        .green-detail-page .sidebar {
            position: sticky;
            top: 80px; /* 保持增加的顶部距离 */
            height: fit-content;
            transition: top 0.3s ease;
            /* 增加视觉权重 */
            padding: 15px;
            border-radius: 12px;
        }
        
        /* 主要区块突出样式 */
        .green-detail-page .sidebar-block {
            background-color: white;
            border-radius: 12px;
            padding: 30px; /* 增加内边距 */
            margin-bottom: 30px;
            /* 增强阴影效果 */
            box-shadow: 0 8px 30px rgba(6, 214, 160, 0.15);
            /* 增加边框强调 */
            border: 2px solid var(--primary-light);
            /* 添加顶部强调条 */
            border-top: 4px solid var(--accent);
            /* 轻微放大效果 */
            transform: scale(1.02);
            transition: all 0.3s ease;
        }
        
        .green-detail-page .sidebar-block:hover {
            /* 悬停时增强效果 */
            box-shadow: 0 12px 35px rgba(6, 214, 160, 0.2);
            transform: scale(1.03);
        }
        
        /* 标题突出显示 */
        .green-detail-page .sidebar-title {
            font-size: 20px; /* 增大标题 */
            color: var(--accent);
            margin-bottom: 25px;
            padding-bottom: 12px;
            border-bottom: 2px solid var(--primary-light);
            font-weight: 700; /* 加粗标题 */
            /* 添加图标增强视觉效果 */
            position: relative;
            padding-left: 30px;
        }
        
        .green-detail-page .sidebar-title::before {
            content: "??";
            position: absolute;
            left: 0;
            top: 0;
            font-size: 22px;
        }
        
        /* 国家列表突出样式 */
        .green-detail-page .region-recommendation-list {
            list-style: none;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px; /* 增加间距 */
            margin-bottom: 30px; /* 增加底部间距 */
        }
        
        .green-detail-page .region-item {
            background-color: white;
            border-radius: 8px;
            transition: all 0.3s ease;
            /* 增加边框和阴影 */
            border: 1px solid var(--primary-light);
            box-shadow: 0 3px 10px rgba(6, 214, 160, 0.08);
        }
        
        .green-detail-page .region-item:hover {
            /* 悬停时强烈突出 */
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(6, 214, 160, 0.15);
            border-color: var(--primary);
        }
        
        /* 国家链接样式增强 */
        .green-detail-page .region-item-link {
            display: block;
            padding: 12px 15px; /* 增加内边距 */
            font-size: 16px; /* 增大字体 */
            color: var(--text-dark);
            text-decoration: none !important;
            text-align: center;
            font-weight: 500; /* 加粗文字 */
            transition: all 0.3s ease;
        }
        
        .green-detail-page .region-item:hover .region-item-link {
            color: var(--accent);
        }
        
        /* 联系按钮突出设计 */

        .green-detail-page .contact-service-btn {
            display: block;
            width: 100%;
            background-color: var(--accent);
            color: white;
            border: none;
            padding: 15px 15px; /* 增大按钮 */
            border-radius: 8px;
            font-weight: 700;
            cursor: pointer;
            font-size: 17px; /* 增大字体 */
            transition: all 0.3s ease;
            text-align: center;
            text-decoration: none;
            margin-top: 30px;
            margin-bottom: 20px;
            /* 增强按钮阴影 */
            box-shadow: 0 5px 15px rgba(6, 214, 160, 0.25);
            /* 添加图标 */
            position: relative;
            padding-left: 25px;
        }
        
        .green-detail-page .contact-service-btn::before {
            content: "?";
            position: absolute;
            left: 20px;
            top: 50%;
            transform: translateY(-50%);
        }
        
        .green-detail-page .contact-service-btn:hover {
            background-color: #047857; /* 更深的绿色 */
            transform: translateY(-4px);
            box-shadow: 0 8px 20px rgba(6, 214, 160, 0.35);
        }
        
        /* 广告区块增强 */
        .green-detail-page .sidebar-ad {
            background-color: var(--primary-light);
            border-radius: 10px;
            padding: 25px; /* 增加内边距 */
            text-align: center;
            margin-top: 25px;
            border: 1px  var(--primary);
        }
        
        .green-detail-page .ad-title {
            font-size: 16px; /* 增大字体 */
            margin-bottom: 18px;
            color: var(--accent);
            font-weight: 600;
        }
        
        .green-detail-page .view-full-list-btn {
            background-color: var(--accent);
            color: white;
            border: 2px solid var(--accent);
            padding: 10px 20px; /* 增大按钮 */
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            font-size: 15px; /* 增大字体 */
            transition: all 0.3s ease;
        }
        
        .green-detail-page .view-full-list-btn:hover {
            background-color:var(--accent);
            color:white;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(6, 214, 160, 0.2);
        }
        
        /* 国家列表弹出层样式增强 */
        .green-detail-page .region-modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: var(--overlay);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        
        .green-detail-page .region-modal-overlay.active {
            opacity: 1;
            visibility: visible;
        }
        
        .green-detail-page .region-modal {
            background-color: white;
            border-radius: 12px;
            width: 90%;
            max-width: 700px;
            max-height: 80vh;
            overflow-y: auto;
            padding: 30px;
            position: relative;
            transform: translateY(20px);
            transition: transform 0.3s ease;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
            border-top: 4px solid var(--accent);
        }
        
        .green-detail-page .region-modal-overlay.active .region-modal {
            transform: translateY(0);
        }
        
        .green-detail-page .modal-close-btn {
            position: absolute;
            top: 15px;
            right: 15px;
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
            color: var(--text-light);
            transition: color 0.3s ease;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
        }
        
        .green-detail-page .modal-close-btn:hover {
            color: var(--accent);
            background-color: var(--primary-light);
        }
        
        .green-detail-page .modal-title {
            font-size: 24px;
            color: var(--accent);
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 2px solid var(--primary-light);
            font-weight: 600;
        }
        
        .green-detail-page .full-region-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
            gap: 12px;
            list-style: none;
        }
        
        .green-detail-page .full-region-list .region-item {
            background-color: var(--primary-light);
        }
        
        .green-detail-page .full-region-list .region-item-link {
            display: block;
            text-align: left;
            padding: 10px 15px;
            color: var(--text-dark);
            text-decoration: none !important;
            font-size: 15px;
            transition: all 0.3s ease;
        }
        
        .green-detail-page .full-region-list .region-item:hover {
            background-color: var(--primary);
        }
        
        .green-detail-page .full-region-list .region-item:hover .region-item-link {
            color: white;
        }
        
        /* 响应式设计 */
        @media (max-width: 992px) {
            .green-detail-page .content-wrapper {
                grid-template-columns: 1fr;
            }
            
            .green-detail-page .sidebar {
                position: static;
                max-width: 600px;
                margin: 0 auto;
                padding: 0;
            }
            
            .green-detail-page .sidebar-block {
                transform: none;
            }
            
            .green-detail-page .region-recommendation-list {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .green-detail-page h1 {
                font-size: 26px;
            }
            
            .green-detail-page h2 {
                font-size: 22px;
            }
            
            .green-detail-page .content nav a {
                font-size: 16px;
            }
            
            .green-detail-page .main-image {
                height: 300px;
            }
            
            .green-detail-page .image-grid {
                grid-template-columns: 1fr;
            }
            
            .green-detail-page .image-card img {
                height: 200px;
            }
            
            .green-detail-page .stats-container {
                grid-template-columns: 1fr 1fr;
            }
            
            .green-detail-page .page-navigation {
                flex-direction: column;
                gap: 20px;
            }
            
            .green-detail-page .prev-link,
            .green-detail-page .next-link {
                width: 100%;
                justify-content: center;
            }
            
            .green-detail-page .region-recommendation-list {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .green-detail-page .full-region-list {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 480px) {
            .green-detail-page h1 {
                font-size: 24px;
            }
            
            .green-detail-page .stats-container {
                grid-template-columns: 1fr;
            }
            
            .green-detail-page .main-image {
                height: 250px;
            }
            
            .green-detail-page .meta-info {
                flex-direction: column;
                align-items: flex-start;
                gap: 8px;
            }
            
            .green-detail-page .region-recommendation-list {
                grid-template-columns: 1fr;
            }
            
            .green-detail-page .full-region-list {
                grid-template-columns: 1fr;
            }
            
            .green-detail-page .region-modal {
                padding: 20px;
            }
        }
        
        /* 基础自适应容器 - 全屏宽度 */
.m120 {
  /* 上下固定100px间距 */
  margin-top: 80px;
  /* padding-bottom: 80px !important ;*/
}
.b120 {
  /* 上下固定100px间距 */

  margin-bottom: 80px !important ;
}
/* 响应式调整（针对小屏幕） */
@media (max-width: 768px) {
  .m120{
    /* 小屏幕下适当减小内边距 */
    padding-left: 10px;
    padding-right: 10px;
  }
}

        /* 
        使用独特前缀"afc-" (Advantage Card) 避免CSS冲突
        不使用通用选择器(*)，改用具体前缀选择器
        */
        
        .afc-advantage-container {
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .or{ color:#ff6726 !important}
        .afc-advantage-header {
            text-align: center;
            margin-top: 80px;
            position: relative;
        }
        
    
        .afc-advantage-subtitle {
            color: #6f54e2;
            font-size: 18px;
            font-weight: 500;
            margin-bottom: 12px;
            letter-spacing: 1px;
        }
        
        .afc-advantage-title {
            font-size: 42px;
            color: #2d3748;
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
            font-weight: 700;
            line-height: 1.3;
        }
        
        .afc-advantage-description {
            color: #718096;
            font-size: 18px;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.7;
        }
        
        .afc-advantage-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            margin-top: 60px;
        }
        
        .afc-advantage-card {
            background-color: #fff;
            border-radius: 20px;
            padding: 45px 30px;
            position: relative;
            overflow: hidden;
            transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            transform: translateY(0);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
            border: 1px solid rgba(0,0,0,0.03);
            opacity: 0;
            z-index: 1;
        }
        
        .afc-advantage-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
        }
        
        /* 卡片标题左对齐 */
        .afc-card-title {
            text-align: left;
            font-size: 28px;
            margin-bottom: 20px;
            transition: all 0.4s ease;
            position: relative;
        }
        
        /* 卡片1样式 - 橙色系 */
        .afc-card-1 .afc-card-icon {
            background: linear-gradient(135deg, rgba(255, 103, 38, 0.1), rgba(255, 103, 38, 0.2));
        }
        .afc-card-1 .afc-card-icon i {
            color: #ff6726;
        }
        .afc-card-1 .afc-card-badge {
            background-color: rgba(255, 103, 38, 0.1);
            color: #ff6726;
        }
        .afc-card-1 .afc-card-title {
            color: #2d3748;
            font-weight: 700;
        }
        .afc-card-1 .afc-card-title::before {
            background-color: #ff6726;
            opacity: 0;
        }
        .afc-card-1 .afc-card-features li::before {
            color: #ff6726;
        }
        .afc-card-1 .afc-card-number {
            opacity: 0.03;
        }
        
        .afc-card-1:hover .afc-card-icon {
            background-color: #ff6726;
        }
        .afc-card-1:hover .afc-card-icon i {
            color: #fff;
            transform: rotate(0) scale(1.1);
        }
        .afc-card-1:hover .afc-card-title {
            color: #1a202c;
            font-weight: 1000;
            transform: translateX(5px);
        }
        .afc-card-1:hover .afc-card-title::before {
            opacity: 1;
        }
        .afc-card-1:hover .afc-card-features li::before {
            transform: scale(1.2) translateX(3px);
        }
        .afc-card-1:hover .afc-card-number {
            opacity: 0.05;
            transform: rotate(5deg) scale(1.1);
        }
        
        /* 卡片2样式 - 深蓝色系 */
        .afc-card-2 .afc-card-icon {
            background: linear-gradient(135deg, rgba(26, 86, 219, 0.1), rgba(26, 86, 219, 0.2));
        }
        .afc-card-2 .afc-card-icon i {
            color: #1a56db;
        }
        .afc-card-2 .afc-card-badge {
            background-color: rgba(26, 86, 219, 0.1);
            color: #1a56db;
        }
        .afc-card-2 .afc-card-title {
            color: #2d3748;
            font-weight: 700;
        }
        .afc-card-2 .afc-card-title::before {
            background-color: #1a56db;
            opacity: 0;
        }
        .afc-card-2 .afc-card-features li::before {
            color: #1a56db;
        }
        .afc-card-2 .afc-card-number {
            opacity: 0.03;
        }
        
        .afc-card-2:hover .afc-card-icon {
            background-color: #1a56db;
        }
        .afc-card-2:hover .afc-card-icon i {
            color: #fff;
            transform: rotate(0) scale(1.1);
        }
        .afc-card-2:hover .afc-card-title {
            color: #1a202c;
            font-weight: 1000;
            transform: translateX(5px);
        }
        .afc-card-2:hover .afc-card-title::before {
            opacity: 1;
        }
        .afc-card-2:hover .afc-card-features li::before {
            transform: scale(1.2) translateX(3px);
        }
        .afc-card-2:hover .afc-card-number {
            opacity: 0.05;
            transform: rotate(5deg) scale(1.1);
        }
        
        /* 卡片3样式 - 绿色系 */
        .afc-card-3 .afc-card-icon {
            background: linear-gradient(135deg, rgba(72, 187, 120, 0.1), rgba(72, 187, 120, 0.2));
        }
        .afc-card-3 .afc-card-icon i {
            color: #48bb78;
        }
        .afc-card-3 .afc-card-badge {
            background-color: rgba(72, 187, 120, 0.1);
            color: #48bb78;
        }
        .afc-card-3 .afc-card-title {
            color: #2d3748;
            font-weight: 700;
        }
        .afc-card-3 .afc-card-title::before {
            background-color: #48bb78;
            opacity: 0;
        }
        .afc-card-3 .afc-card-features li::before {
            color: #48bb78;
        }
        .afc-card-3 .afc-card-number {
            opacity: 0.03;
        }
        
        .afc-card-3:hover .afc-card-icon {
            background-color: #48bb78;
        }
        .afc-card-3:hover .afc-card-icon i {
            color: #fff;
            transform: rotate(0) scale(1.1);
        }
        .afc-card-3:hover .afc-card-title {
            color: #1a202c;
            font-weight: 800;
            transform: translateX(5px);
        }
        .afc-card-3:hover .afc-card-title::before {
            opacity: 1;
        }
        .afc-card-3:hover .afc-card-features li::before {
            transform: scale(1.2) translateX(3px);
        }
        .afc-card-3:hover .afc-card-number {
            opacity: 0.05;
            transform: rotate(5deg) scale(1.1);
        }
        
        /* 卡片4样式 - 紫色系 */
        .afc-card-4 .afc-card-icon {
            background: linear-gradient(135deg, rgba(111, 84, 226, 0.1), rgba(111, 84, 226, 0.2));
        }
        .afc-card-4 .afc-card-icon i {
            color: #6f54e2;
        }
        .afc-card-4 .afc-card-badge {
            background-color: rgba(111, 84, 226, 0.1);
            color: #6f54e2;
        }
        .afc-card-4 .afc-card-title {
            color: #2d3748;
            font-weight: 700;
        }
        .afc-card-4 .afc-card-title::before {
            background-color: #6f54e2;
            opacity: 0;
        }
        .afc-card-4 .afc-card-features li::before {
            color: #6f54e2;
        }
        .afc-card-4 .afc-card-number {
            opacity: 0.03;
        }
        
        .afc-card-4:hover .afc-card-icon {
            background-color: #6f54e2;
        }
        .afc-card-4:hover .afc-card-icon i {
            color: #fff;
            transform: rotate(0) scale(1.1);
        }
        .afc-card-4:hover .afc-card-title {
            color: #1a202c;
            font-weight: 800;
            transform: translateX(5px);
        }
        .afc-card-4:hover .afc-card-title::before {
            opacity: 1;
        }
        .afc-card-4:hover .afc-card-features li::before {
            transform: scale(1.2) translateX(3px);
        }
        .afc-card-4:hover .afc-card-number {
            opacity: 0.05;
            transform: rotate(5deg) scale(1.1);
        }
        
        /* 卡片通用元素样式 */
        .afc-card-badge {
            display: inline-block;
            padding: 4px 12px;
            border-radius: 30px;
            font-size: 13px;
            font-weight: 500;
            margin-bottom: 18px;
            transition: all 0.3s ease;
        }
        
        .afc-card-icon {
            width: 80px;
            height: 80px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 30px;
            transition: all 0.5s ease;
            position: relative;
            z-index: 1;
        }
        
        .afc-card-icon::after {
            content: "";
            position: absolute;
            top: 50%;
            left: 50%;
            width: 100%;
            height: 100%;
            border-radius: 16px;
            z-index: -1;
            filter: blur(15px);
            transition: all 0.5s ease;
            opacity: 0;
        }
        .afc-card-1 .afc-card-icon::after { background-color: #ff6726; }
        .afc-card-2 .afc-card-icon::after { background-color: #1a56db; }
        .afc-card-3 .afc-card-icon::after { background-color: #48bb78; }
        .afc-card-4 .afc-card-icon::after { background-color: #6f54e2; }
        
        .afc-card-icon:hover::after {
            opacity: 0.2;
            transform: translate(-50%, -50%) scale(1);
        }
        
        .afc-card-icon i {
            font-size: 36px;
            transition: all 0.5s ease;
        }
        
        .afc-card-title::before {
            content: "";
            position: absolute;
            left: 0;
            top: 10px;
            height: calc(100% - 20px);
            width: 4px;
            border-radius: 4px;
            transition: all 0.4s ease;
        }
        
        .afc-card-desc {
            font-size: 16px;
            color: #4a5568;
            line-height: 1.7;
            margin-bottom: 25px;
            position: relative;
            z-index: 1;
        }
        
        .afc-card-features {
            list-style: none;
            margin-top: 20px;
        }
        
        .afc-card-features li {
            font-size: 16px;
            color: #718096;
            margin-bottom: 10px;
            padding-left: 24px;
            position: relative;
            line-height: 1.7;
        }
        
        .afc-card-features li::before {
            content: "√";
            font-family: "FontAwesome";
            position: absolute;
            left: 0;
            top: 3px;
            font-size: 14px;
            transition: all 0.3s ease;
        }
        
        .afc-card-decoration {
            position: absolute;
            width: 150px;
            height: 150px;
            border-radius: 50%;
            z-index: 0;
            opacity: 0.03;
            transition: all 0.7s ease;
        }
        
        .afc-card-1 .afc-card-decoration { background-color: #ff6726; }
        .afc-card-2 .afc-card-decoration { background-color: #1a56db; }
        .afc-card-3 .afc-card-decoration { background-color: #48bb78; }
        .afc-card-4 .afc-card-decoration { background-color: #6f54e2; }
        
        .afc-decoration-top { top: -50px; right: -50px; }
        .afc-decoration-bottom { bottom: -70px; left: -70px; }
        
        .afc-card-number {
            position: absolute;
            top: 30px;
            right: 30px;
            font-size: 50px;
            font-weight: 800;
            transition: all 0.5s ease;
            z-index: 0;
        }
        
        /* 响应式布局 */
        @media (max-width: 1200px) {
            .afc-advantage-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 40px;
            }
            
            .afc-card-title { font-size: 24px; }
            .afc-card-desc { font-size: 16px; }
            .afc-card-features li { font-size: 15px; }
        }
        
        @media (max-width: 768px) {
            .afc-advantage-grid {
                grid-template-columns: 1fr;
            }
            
            .afc-advantage-header { margin-bottom: 60px; }
            .afc-advantage-title { font-size: 32px; }
            .afc-advantage-description { font-size: 16px; }
        }
        
        /* 动画关键帧 - 使用独特名称避免冲突 */
        @keyframes afcFadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .afc-advantage-card.afc-active {
            animation: afcFadeInUp 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
        }


     
		
		
		  /* 基础样式重置与命名空间隔离 - 全PX单位 */
        .pricing-orange * {
            margin: 0px;
            padding: 0px;
            box-sizing: border-box;
        }
        
        .pricing-orange {
            font-family: 'Inter', system-ui, -apple-system, sans-serif;
            padding: 60px 20px;
            background-color: #fafafa;
        }
        
        /* 头部区域 - 居中对齐 */
        .pricing-orange__header {
            text-align: center;
            margin-bottom: 60px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .pricing-orange__title {
            font-size: 48px;
            font-weight: 700;
            color: #111827;
            margin-bottom: 16px;
            line-height: 1.2;
        }
        
        .pricing-orange__subtitle {
            font-size: 18px;
            color: #6B7280;
            line-height: 1.6;
        }
        
        /* 卡片容器 - 最大宽度1280PX，自适应布局 */
        .pricing-orange__container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
            max-width: 1280px; /* 限定最大宽度为1280PX */
            margin: 0px auto;
            padding: 0px 10px;
        }
        
        /* 基础卡片样式 - 分层设计 */
        .pricing-orange__card {
            background: #ffffff;
            border-radius: 20px;
            padding: 40px 30px;
            position: relative;
            transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
            box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.05);
            border: 1px solid rgba(0, 0, 0, 0.05);
            overflow: hidden;
        }
        
        /* 卡片悬停动效 - 增强交互感 */
        .pricing-orange__card:hover {
            transform: translateY(-10px);
            box-shadow: 0px 20px 40px rgba(255, 103, 38, 0.12);
        }
        
        /* 推荐卡片强化 - 视觉焦点 */
        .pricing-orange__card--recommended {
            transform: scale(1.02);
            border-color: #ff6726;
            position: relative;
            z-index: 10;
        }
        
        /* 推荐标签 - 右上角定位 */
        .pricing-orange__recommend-tag {
            position: absolute;
            top: 0px;
            right: 0px;
            background: #ff6726;
            color: white;
            padding: 6px 20px;
            font-size: 14px;
            font-weight: 600;
            border-radius: 0px 0px 0px 12px;
            text-transform: capitalize;
        }
        
        /* 卡片标题区 - 标签组合 */
        .pricing-orange__card-header {
            margin-bottom: 30px;
        }
        
        .pricing-orange__card-title {
            font-size: 24px;
            font-weight: 600;
            color: #111827;
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        /* 标签样式 - 预付/后付款区分 */
        .pricing-orange__tag {
            padding: 3px 10px;
            border-radius: 12px;
            font-size: 12px;
            font-weight: 600;
        }
        
        .pricing-orange__tag--prepay {
            background-color: #FFF1E6;
            color: #ff6726;
        }
        
        .pricing-orange__tag--postpay {
            background-color: #FFE8DF;
            color: #e05a1e;
        }
        
        .pricing-orange__card-desc {
            color: #6B7280;
            font-size: 15px;
            line-height: 1.6;
        }
        
        /* 价格区域 - 强化视觉层级 */
        .pricing-orange__price {
            margin-bottom: 30px;
        }
        
        .pricing-orange__price-amount {
            font-size: 51px; /* 放大价格字号，确保视觉突出 */
            font-weight: 700;
            color: #ff6726; /* 价格改为主色调 */
            line-height: 1.1;
            letter-spacing: -0.5px;
        }
        
        .pricing-orange__price-period {
            color: #6B7280;
            font-size: 16px;
            margin-left: 6px;
            font-weight: 500;
        }
        
        .pricing-orange__price-note {
            color: #6B7280;
            font-size: 14px;
            margin-top: 8px;
            padding-left: 2px;
            line-height: 1.5;
        }
        
        /* 特性列表 - 清晰区分 */
        .pricing-orange__features {
            list-style: none;
            margin-bottom: 40px;
        }
        
        .pricing-orange__feature {
            display: flex;
            align-items: flex-start;
            margin-bottom: 16px;
            font-size: 15px;
            line-height: 1.6;
        }
        
        .pricing-orange__feature-icon {
            margin-right: 12px;
            margin-top: 3px;
            flex-shrink: 0;
            font-size: 18px;
        }
        
        .pricing-orange__feature--included {
            color: #1F2937;
        }
        
        .pricing-orange__feature--included .pricing-orange__feature-icon {
            color: #ff6726;
        }
        
        .pricing-orange__feature--excluded {
            color: #9CA3AF;
        }
        
        .pricing-orange__feature--excluded .pricing-orange__feature-icon {
            color: #EF4444;
        }
        
        /* 按钮样式 - 主次区分 */
        .pricing-orange__button {
            display: block;
            width: 100%;
            padding: 15px 0px;
            border-radius: 12px;
            text-align: center;
            font-weight: 600;
            font-size: 16px;
            text-decoration: none;
            transition: all 0.25s ease;
            border: none;
            cursor: pointer;
        }
        
        .pricing-orange__button--primary {
            background-color: #ff6726;
            color: white;
        }
        
        .pricing-orange__button--primary:hover {
            background-color: #e05a1e;
            transform: translateY(-2px);
            box-shadow: 0px 6px 16px rgba(255, 103, 38, 0.3);
        }
        
        .pricing-orange__button--secondary {
            background-color: #F3F4F6;
            color: #111827;
            border: 1px solid #E5E7EB;
        }
        
        .pricing-orange__button--secondary:hover {
            background-color: #E5E7EB;
            border-color: #D1D5DB;
        }
        
        /* 响应式调整 - 适配移动端（全PX单位） */
        @media (max-width: 1280px) {
            .pricing-orange__container {
                padding: 0px 20px;
            }
        }
        
        @media (max-width: 992px) {
            .pricing-orange__card--recommended {
                transform: none; /* 中等屏幕取消推荐卡片放大 */
            }
        }
        
        @media (max-width: 768px) {
            .pricing-orange {
                padding: 40px 15px;
            }
            
            .pricing-orange__header {
                margin-bottom: 40px;
            }
            
            .pricing-orange__title {
                font-size: 32px;
            }
            
            .pricing-orange__card {
                padding: 35px 25px;
            }
            
            .pricing-orange__price-amount {
                font-size: 45px; /* 移动端缩小价格字号 */
            }
            
            .pricing-orange__features {
                margin-bottom: 30px;
            }
        }
        
        @media (max-width: 480px) {
            .pricing-orange__container {
                gap: 20px;
            }
            
            .pricing-orange__card {
                padding: 30px 20px;
            }
            
            .pricing-orange__card-title {
                font-size: 21px;
                flex-wrap: wrap; /* 小屏幕标签换行 */
            }
            
            .pricing-orange__price-amount {
                font-size: 40px;
            }
            
            .pricing-orange__subtitle {
                font-size: 16px;
            }
        }

html #layuicss-skincodecss{display:none;position:absolute;width:1989px}
.layui-code-h3,.layui-code-view{position:relative;font-size:12px}
.layui-code-view{display:block;margin:10px 0;padding:0;border:1px solid #eee;border-left-width:6px;background-color:#FAFAFA;color:#333;font-family:Courier New}
.layui-code-h3{padding:0 10px;height:40px;line-height:40px;border-bottom:1px solid #eee}
.layui-code-h3 a{position:absolute;right:10px;top:0;color:#999}
.layui-code-view .layui-code-ol{position:relative;overflow:auto}
.layui-code-view .layui-code-ol li{position:relative;margin-left:45px;line-height:20px;padding:0 10px;border-left:1px solid #e2e2e2;list-style-type:decimal-leading-zero;*list-style-type:decimal;background-color:#fff}
.layui-code-view .layui-code-ol li:first-child{padding-top:10px}
.layui-code-view .layui-code-ol li:last-child{padding-bottom:10px}
.layui-code-view pre{margin:0}
.layui-code-notepad{border:1px solid #0C0C0C;border-left-color:#3F3F3F;background-color:#0C0C0C;color:#C2BE9E}
.layui-code-notepad .layui-code-h3{border-bottom:none}
.layui-code-notepad .layui-code-ol li{background-color:#3F3F3F;border-left:none}
.layui-code-demo .layui-code{visibility:visible!important;margin:-15px;border-top:none;border-right:none;border-bottom:none}
.layui-code-demo .layui-tab-content{padding:15px;border-top:none}