@charset "UTF-8";
/* 地图标注服务网站公共样式表 - site.css */
/* 适用于 setup.php, package.php, success.php 页面 */

:root {
            --primary: #3a7bd5;
            --primary-dark:#212529;
			--primary-blue:#2a5ba8;
			--bs-body-color: #212529;
            --primary-light: #e8f0fe;
            --secondary: #6c757d;
            --accent: #4c8bf5;
            --success: #28a745;
            --warning: #ffc107;
            --error: #dc3545;
            --light-bg: #f8f9fa;
            --card-bg: #ffffff;
            --border: #dee2e6;
            --text: #333333;
            --text-light: #6c757d;
            --text-lighter: #8c939d;
			--note-color:#fff0ef;
            --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            --shadow-lg: 0 4px 12px rgba(0, 0, 0, 0.15);
            --radius: 6px;
            --radius-sm: 4px;
        }


/* ===== 全局字体优化 ===== */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
	background-color: #f5f7f9;
    color: var(--text);
	padding-top: 95px!important;
}
/**
 * 优化滚动性能 - 禁用浏览器原生smooth scroll，使用自定义控制
 * 确保所有浏览器下返回顶部速度一致
 */
html{
    scroll-behavior: auto !important; 
    /* 优化性能但不影响定位 */
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
body,html{
    overflow-x:hidden;
    max-width:100vw;
    /* 优化滚动性能 */
    -webkit-overflow-scrolling: touch; /* iOS平滑滚动 */
    scroll-snap-type: none; /* 禁用滚动捕获 */
}
/* 当模态打开时，隐藏滚动条但保留布局尺寸，避免抖动 */
body.modal-open {
    overflow: hidden !important;
}

/* 针对可能在滚动时移动的元素进行优化 */
/*.navbar,*/
.site-banner,
.service-link,
.btn,
.card-custom {
    /* 提升到复合层，避免重绘影响 */
    will-change: transform;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    /* 启用硬件加速 */
    transform: translateZ(0);
}

/* 悬浮客服单独处理，避免定位冲突 */
.floating-service-container {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    /* 不添加 transform，避免影响 fixed 定位 */
}

/* 滚动优化 - 减少重绘区域 */
.container,
.main-content {
    /* 创建新的堆叠上下文，减少重绘范围 */
    isolation: isolate;
}
/* ===== 标题层次优化 ===== */
h1 {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3;
}

h2 {
    font-size: 26px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.4;
}

h3 {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.4;
}

h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.4;
}

/* ===== 文本颜色层次 ===== */
.text-primary { color: #2563eb !important; }
.text-secondary { color: #6b7280 !important; }
.text-muted { color: #9ca3af !important; }
.text-success { color: #059669 !important; }
.text-danger { color: #dc3545 !important; }

/* ===== nav ===== */
:root {
    --accent-blue:#3b82f6;
}
.navbar {
    box-shadow: 0 2px 10px rgba(0, 0, 0, .1);
    padding:5px 0!important;
    height: 70px;
    /*z-index: 1000;*/
}
.navbar .nav-link {
    position:relative;
    transition:all .3s ease;
    font-size:16px;
    padding:0.5rem 1.0rem !important;
}
.navbar .nav-link.active {
    color:var(--accent-blue)!important;
}
.navbar .nav-link:hover {
    color:var(--accent-blue)!important;
}
.navbar .nav-link::after {
    content:'';
    position:absolute;
    bottom:0;
    left:0;
    width:0;
    height:2px;
    background:var(--accent-blue);
    transition:width .3s ease;
}
.navbar .nav-link:hover::after {
    width:60%;
    left:20%;
}

/* 移动端优化 */
@media (max-width:991.98px) {
    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        border-radius: 0;
        box-shadow: 0 2px 10px rgba(0,0,0,.1);
        margin-top: 0;
        padding: 15px;
        z-index: 1040;
        width: 100%;
        display: none !important;
    }
    
    .navbar-collapse.show {
        display: block !important;
    }
    
    .navbar-collapse.collapsing {
        display: block !important;
        height: auto !important;
        transition: none !important;
    }
    
    .navbar-collapse .nav-link {
        margin: 0.5rem 0;
        padding: 0.75rem 1rem !important;
        border-radius: 6px;
        transition: all 0.3s ease;
    }
    
    .navbar-collapse .nav-link:hover {
        background: rgba(59, 130, 246, 0.1);
        color: var(--accent-blue) !important;
    }
    
    .navbar .nav-link::after {
        display:none !important;
    }
    
    .navbar-brand {
        font-size: 1.1rem !important; /* 确保覆盖 Bootstrap 类 */
    }
    
    .navbar-brand i {
        font-size: 1.5rem !important; /* 确保图标大小一致 */
    }
    
    .navbar-brand span {
        font-size: 1.1rem !important; /* 确保文字大小一致 */
    }
    
    .navbar-nav .nav-link {
        font-size: 1rem !important; /* 确保导航链接字体一致 */
    }
    
    .navbar-toggler {
        padding: 0.25rem 0.5rem;
        font-size: 1.1rem;
        border: 1px solid rgba(0,0,0,0.1);
        border-radius: 6px;
        background: transparent; /* 防止点击时出现背景块 */
        cursor: pointer;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent; /* 移动端去除点击高亮 */
        user-select: none;
        outline: none; /* 去除聚焦描边 */
        box-shadow: none; /* 默认无阴影，以免显得面积过大 */
        transition: background-color .2s ease, box-shadow .2s ease, transform .08s ease; /* 轻微动效 */
    }
    
    .navbar-toggler:focus {
        outline: none;
        box-shadow: none; /* 默认移除大块阴影 */
        background: transparent;
    }

    .navbar-toggler:active {
        outline: none;
        box-shadow: none;
        background: transparent;
        transform: scale(0.98); /* 轻微按压感 */
    }

    /* 仅当键盘/无障碍聚焦时展示更小、更柔和的可见焦点环 */
    .navbar-toggler:focus-visible {
        box-shadow: 0 0 0 2px rgba(59,130,246,0.15);
        background: rgba(59,130,246,0.04);
    }

    /* 触摸或悬停时给一点点背景，不会形成大块遮罩 */
    .navbar-toggler:hover,
    .navbar-toggler:active {
        background: rgba(59,130,246,0.06);
    }
    
    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833,37,41,0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        display: inline-block;
        width: 1.5em;
        height: 1.5em;
        background-repeat: no-repeat;
        background-position: center;
        background-size: 100%;
    }
}

/* 中等屏幕设备优化 */
@media (max-width:768px) {
    .navbar-brand {
        font-size: 1.5rem !important; /* 中等屏幕字体 */
    }
    
    .navbar-brand i {
        font-size: 1.4rem !important; /* 中等屏幕图标大小 */
    }
    
    .navbar-brand span {
        font-size: 1.5rem !important; /* 中等屏幕文字大小 */
    }
    
    .navbar-nav .nav-link {
        font-size: 16px !important; /* 中等屏幕导航链接统一16px */
    }

    /* 移动端标题样式 */
    .form-title {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
}

/* 小屏幕设备优化 */
@media (max-width:576px) {
    .navbar {
        padding: 8px 0 !important;
    }
    
    .navbar-brand {
        font-size: 1.5rem !important; /* 小屏幕统一字体 */
    }
    
    .navbar-brand i {
        font-size: 1.4rem !important; /* 小屏幕图标大小 */
    }
    
    .navbar-brand span {
        font-size: 1.3rem !important; /* 小屏幕文字稍微放大 */
    }
    
    .navbar-nav .nav-link {
        font-size: 16px !important; /* 小屏幕导航链接统一16px */
    }
}


/* ===== 段落和正文优化 ===== */
p, .text-content {
    font-size: 16px;
    line-height: 1.6;
    color: #374151;
}

/* ===== 小号文字 ===== */
.text-small {
    font-size: 16px;
    color: #6b7280;
}

/* ===== 标签和辅助文字 ===== */
.label-text {
    font-size: 15px;
    font-weight: 500;
    color: #4b5563;
}

/* ===== 网站横幅样式 ===== */
.site-banner {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #06b6d4 100%);
    color: white;
    padding: 50px 0;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
}

.site-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.banner-trust-indicators {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 25px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.trust-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.trust-indicator i {
    color: #10b981;
    font-size: 16px;
}

.banner-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.banner-main-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: white;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    letter-spacing: -0.5px;
}

.banner-subtitle {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.5;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.banner-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.banner-content p {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

.banner-content a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
}

.banner-content a:hover {
    color: white;
    text-decoration: underline;
}

/* ===== 网站页脚样式 ===== */
.site-footer {
            background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
            padding: 50px 0 30px;
            margin-top: 60px;
            margin-bottom: 0;
            color: #e2e8f0;
            font-size: 14px;
            line-height: 1.7;
            position: relative;
            overflow: hidden;
        }

        .footer-content {
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .footer-trust-section {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin-bottom: 30px;
            flex-wrap: wrap;
        }

        .footer-trust-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            padding: 20px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }

        .footer-trust-item:hover {
            background: rgba(255, 255, 255, 0.08);
            transform: translateY(-2px);
        }

        .footer-trust-item i {
            font-size: 24px;
            color: #60a5fa;
            margin-bottom: 5px;
        }

        .footer-trust-title {
            font-weight: 700;
            color: #f1f5f9;
            font-size: 16px;
            margin-bottom: 5px;
        }

        .footer-trust-desc {
            font-size: 14px;
            color: #cbd5e1;
            text-align: center;
        }

        .footer-divider {
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            margin: 30px 0;
        }

        .footer-content p {
            margin-bottom: 12px;
            color: #cbd5e1;
			font-size: 14px;
        }

        .footer-content p:last-child {
            margin-bottom: 0;
            color: #94a3b8;
            font-size: 14px;
        }

        .footer-content a {
            color: inherit;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .footer-content a:hover {
            color: inherit;
            text-decoration: underline;
        }

         .footer-highlight {
             color: #f1f5f9;
             font-weight: 600;
         }
         
         /* 移动端隐藏信任指标区域 */
         @media (max-width: 768px) {
             .footer-trust-section {
                 display: none;
             }
			 
			 .site-footer{margin-top: 30px;}
             
             .footer-divider {
                 display: none;
             }
         }

/* ===== 页面标题区域 ===== */
.page-header {
    text-align: center;
    padding: 40px 0;
    margin-bottom: 20px;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 15px;
    letter-spacing: -1px;
    background: linear-gradient(135deg, #1e293b, #2563eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.page-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    font-weight: 500;
    margin: 0;
    opacity: 0.9;
}



/* ===== 标题样式 ===== */
.form-title {
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 30px;
    text-align: center;
    font-size: 1.8rem;
    letter-spacing: -0.5px;
    position: relative;
}

/*.form-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #2563eb, #06b6d4);
    border-radius: 2px;
}*/

/* ===== 步骤指示器样式 ===== */
.step-indicator {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.step {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin: 0 15px;
    position: relative;
    color: #6c757d;
    font-size: 18px;
}

.step.active {
    background: #3a7bd5;
    color: white;
    box-shadow: 0 0 0 5px rgba(58, 123, 213, 0.2);
}

.step.completed {
    background: #28a745;
    color: white;
}

.step-text {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    font-size: 16px;
    font-weight: normal;
    color: #6c757d;
}

.step.active .step-text,
.step.completed .step-text {
    color: #3a7bd5;
    font-weight: 500;
}

.step:not(:last-child):after {
    content: "";
    position: absolute;
    width: 40px;
    height: 2px;
    background: #e9ecef;
    left: 100%;
}

/* ===== 联系信息样式 ===== */
.contact-info {
    text-align: center;
    margin-top: 25px;
    color: #7f8c8d;
    font-size: 16px;
}

.contact-info a {
    color: #3a7bd5;
    text-decoration: none;
    font-weight: 500;
}



/* ===== 服务说明样式 ===== */
.service-info {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-radius: 12px;
    padding: 25px;
    margin: 25px 0;
    border: 1px solid rgba(226, 232, 240, 0.6);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    position: relative;
}



.service-agreement-link {
    color: #3a7bd5;
    text-decoration: none;
    font-weight: 500;
    margin-left: 2px;
}

.service-agreement-link:hover {
    color: #2563eb;
    text-decoration: underline;
}

.info-section {
    background: rgba(255, 255, 255, 0.6);
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 16px;
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.3s ease;
}

.info-section:hover {
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    transform: translateY(-1px);
}

.info-title {
    color: #1e293b;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.info-title i {
    color: #3a7bd5;
    font-size: 16px;
    width: 20px;
    height: 20px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.info-content {
    color: #4b5563;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    padding-left: 28px;
}

/* ===== 错误提示样式 ===== */
.error-message {
    background: #f8f9fa;
    border: 1px solid #dc3545;
    border-radius: 8px;
    color: #dc3545;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(220, 53, 69, 0.15);
    animation: slideInDown 0.3s ease-out;
    margin-bottom: 20px;
}

.error-message .btn-close {
    color: #dc3545;
    opacity: 0.8;
}

.error-message .btn-close:hover {
    opacity: 1;
}

.error-message i {
    color: #dc3545;
}


@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* ===== 常见问题样式 ===== */
        .faq-section {
            
            padding: 24px;
            margin: 24px 0;
                background: var(--card-bg);
    border-radius: 12px; 
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    padding: 30px; 
    margin-bottom: 25px;
    border: 1px solid rgba(255, 255, 255, 0.8); 
            position: relative;
            overflow: hidden;
        }
        
        .faq-section h3, .faq-section h4 {
            color: #1f2937;
            font-weight: 500; /* 降低字重更柔和 */
            text-align: left;
            margin-bottom: 12px; /* 更紧凑 */
            font-size: 18px;
            position: relative;
            padding-bottom: 0;
        }
        
        .faq-section h3::after, .faq-section h4::after { display: none; }
        
        .faq-section h4 i {
            color: #2563eb;
            margin-right: 8px;
            font-size: 1.2rem;
        }
        
        .faq-item {
            background: #fff;
            border: 1px dashed #e5e7eb;
            border-radius: 10px;
            padding: 16px 18px;
            margin-bottom: 12px;
            /*transition: box-shadow .2s ease, border-color .2s ease, transform .2s ease;*/
            position: relative;
            overflow: hidden;
            /*box-shadow: 0 2px 8px rgba(0,0,0,.04);*/
        }
        
        /*.faq-item:hover {
            border-color: #d1d5db;
            box-shadow: 0 4px 12px rgba(0,0,0,.06);
            transform: translateY(-1px);
        }*/
        
        .faq-item:last-child { margin-bottom: 0; }
        
        .faq-question {
            display: flex;
            align-items: center;
            gap: 10px;
            cursor: pointer;
            margin-bottom: 8px;
            color: var(--primary-dark);
			font-weight: 500;
			font-size: 1.05rem;
        }
        
        .faq-question:hover .faq-question-text { color: #1f4ad6; }
        
        .faq-answer {
            
            line-height: 1.6; /* 恢复原始行距 */
            color: #4b5563;
            padding: 10px 0 0 28px; /* 首段与问题更舒适的距离 */
            position: relative;
        }
        
        .faq-answer::before {
            content: '';
            position: absolute;
            left: 9px;
            top: 10px;
            width: 2px;
            height: calc(100% - 14px);
            background: #e5e7eb;
        }
        
        /* FAQ答案内段落样式 */
        .faq-intro {
            margin: 0 0 12px 0;
            line-height: 1.6;
        }
        p.faq-intro, p.faq-point {font-size:1rem!important;}
        .faq-point {
            margin: 8px 0;
            line-height: 1.5;
        }
        
        .faq-point:last-child {
            margin-bottom: 0;
        }

/* 移动端FAQ样式 */
.mobile-faq {
    background: white;
    /*border-radius: 12px;*/
    margin: 0px 4px 15px;
    border-radius: 8px; 
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(226, 232, 240, 0.6);
    overflow: hidden;
}

.mobile-faq-header {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 15px 20px;
    border-bottom: 1px solid #e2e8f0;
}

.mobile-faq-header h3, .mobile-faq-header h4 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 500;
    color: #1e293b;
    display: flex;
    align-items: center;
    gap: 8px;
}

.mobile-faq-header h3 i, .mobile-faq-header h4 i {
    color: #3b82f6;
}

.mobile-faq-content {
    padding: 0;
}

.mobile-faq-item {
    border-bottom: 1px solid #f1f5f9;
}

.mobile-faq-item:last-child {
    border-bottom: none;
}

.mobile-faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
}

.mobile-faq-question:hover {
    background: #f8fafc;
}

.mobile-faq-question span {
    /*font-size: 0.95rem;*/
	font-size: 1rem;
    font-weight: 500;
    color: #1e293b;
    flex: 1;
    text-align: left;
}

.mobile-faq-question i {
    color: #64748b;
    font-size: 0.8rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 10px;
}

.mobile-faq-answer {
    display: none;
    padding: 16px 20px 15px;
    font-size: 0.9rem;
    line-height: 1.7;
    color: #64748b;
    background: #ffffff;
}
/* ===== 移动端横幅优化 ===== */
@media (max-width: 768px) {
    .site-banner {
        margin-bottom: -15px;
    }
    
    .banner-content h1 {
        font-size: 2rem;
        margin-bottom: 12px;
    }
    
    .banner-content p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .site-banner {
        padding: 120px 0 60px;
    }
    
    .banner-content h1 {
        font-size: 1.7rem;
        margin-bottom: 10px;
    }
    
    .banner-content p {
        font-size: 0.9rem;
    }
}

/* ===== 移动端基础布局优化 ===== */
@media (max-width: 768px) {
    body {
        padding: 0;
		padding-top: 80px;
		
        overflow-y: scroll;
        padding-right: calc(100vw - 100%);
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE and Edge */
    }
    body::-webkit-scrollbar {
        display: none; /* Chrome, Safari and Opera */
    }
    html {
        overflow-y: scroll;
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE and Edge */
    }
    html::-webkit-scrollbar {
        display: none; /* Chrome, Safari and Opera */
    }
    
    .container {
        padding: 0 10px;
        max-width: 100%;
        overflow-x: hidden; /* 防止容器内元素撑出横向滚动 */
    }
    
	/* 导航容器需要允许溢出，以显示展开的菜单 */
    .navbar .container {
        overflow: visible !important;
    }
    
    .site-footer {
    padding: 20px 0;
    margin-top: 30px;
    margin-bottom: 0; /* 移动端也确保没有底部外边距 */
    font-size: 15px;
}
    
    /* 移动端服务说明优化 */
    .service-info {
        padding: 15px;
        margin: 20px 0;
    }
    

.info-title {
    font-size: 15px;
}

.info-content {
    font-size: 16px;
    padding-left: 20px;
}
    
    .step-indicator {
        margin-bottom: 20px;
    }
    
    .step {
        width: 30px;
        height: 30px;
        font-size: 16px;
        margin: 0 10px;
    }
    
    .step-text {
    font-size: 16px;
    bottom: -20px;
}
	/* 移动端FAQ区域无边距 */
            .faq-section {
                margin-left: -10px;
                margin-right: -10px;
                border-radius: 12px;
            }
			/* 移动端常见问题优化 */
            .faq-section {
                padding: 20px;
                margin: 20px 0;
            }
            
            .faq-section h4 {
                font-size: 1.3rem;
                margin-bottom: 20px;
            }
            
            .faq-section h4 i {
                font-size: 1.2rem;
            }
            
            .faq-item {
                padding: 15px 0;
                margin-bottom: 12px;
                border-radius: 0 !important;
                border: none !important;
                box-shadow: none !important;
            }
            
            .faq-question-icon {
                width: 20px;
                height: 20px;
                font-size: 11px;
            }
            
            .faq-question-text {
    font-size: 16px;
}

.faq-answer {
    font-size: 15px;
    padding-left: 32px;
}
            
            .faq-answer::before {
                left: 9px;
            }
}

/* ===== 超小屏幕优化 ===== */
@media (max-width: 480px) {
.site-banner {
        padding-top: 60px;;
    }
    .container {
        padding: 0 8px;
        max-width: 100%;
    }
    
    
    .step-indicator {
        margin-bottom: 15px;
    }
    
    .step {
    width: 25px;
    height: 25px;
    font-size: 16px;
    margin: 0 8px;
}

.step-text {
    font-size: 15px;
    bottom: -18px;
}
    
    
    
    
	/* 超小屏幕FAQ区域无边距 */
            .faq-section {
                margin-left: -8px;
                margin-right: -8px;
                border-radius: 12px;
            }
			/* 超小屏幕常见问题优化 */
            .faq-section {
                padding: 15px;
                margin: 15px 0;
            }
            
            .faq-section h4 {
                font-size: 1.1rem;
                margin-bottom: 15px;
            }
            
            .faq-section h4 i {
                font-size: 1rem;
            }
            
            .faq-item {
                padding: 12px 0;
                margin-bottom: 10px;
                border-radius: 0 !important;
                border: none !important;
                box-shadow: none !important;
            }
            
            .faq-question-icon {
                width: 18px;
                height: 18px;
                font-size: 10px;
            }
            
            .faq-question-text {
    font-size: 15px;
}

.faq-answer {
    font-size: 16px;
    padding-left: 30px;
    line-height: 1.6;
}
            
            .faq-answer::before {
                left: 8px;
            }
}

/* ===== 移动端底部导航栏样式 ===== */
/* CSS 自定义属性用于 PHP 动态配置 */
:root {
    --mobile-nav-background: #ffffff;
    --mobile-nav-text-color: #666666;
    --mobile-nav-active-color: #3a7bd5;
    --mobile-nav-fixed: fixed;
    --mobile-nav-border: 1px solid #e0e0e0;
}

/* 移动端导航栏基础样式 */
.mobile-bottom-nav {
    display: none;
    position: var(--mobile-nav-fixed, fixed);
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--mobile-nav-background);
    border-top: var(--mobile-nav-border);
    padding: 8px 0;
    margin: 0;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    justify-content: space-around;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}

.mobile-bottom-nav .nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--mobile-nav-text-color);
    font-size: 16px;
    padding: 4px 8px;
    border-radius: 6px;
    transition: all 0.3s ease;
    flex: 1;
    max-width: 80px;
}

.mobile-bottom-nav .nav-item i {
    font-size: 18px;
    margin-bottom: 2px;
    display: block;
}

.mobile-bottom-nav .nav-item span {
    font-size: 14px;
    line-height: 1.2;
    text-align: center;
    display: block;
    word-break: keep-all;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.mobile-bottom-nav .nav-item:hover,
.mobile-bottom-nav .nav-item.active {
    color: var(--mobile-nav-active-color);
    background: rgba(58, 123, 213, 0.1);
}

.mobile-bottom-nav .nav-item:active {
    transform: scale(0.95);
}

/* 移动端模态框样式 */
.mobile-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(2px);
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
}

/* 防止移动端模态框滚动条闪烁 */
body.modal-open {
    overflow: hidden !important;
}

.mobile-modal-content {
    background: white;
    border-radius: 12px;
    max-width: 90%;
    max-height: 80%;
    overflow-y: auto;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    will-change: transform, opacity;
}

.mobile-modal-body {
    /* 确保模态框内容完全居中 */
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

/* 移动端显示控制 */
@media (max-width: 768px) {
    /* 确保页面底部内容（含 .mobile-footer）不被固定底部导航遮挡 */
    body {
        padding-bottom: 60px !important;
    }
    .mobile-bottom-nav {
        display: flex !important;
        margin: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        position: fixed !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        transform: translateY(0);
    }
    
    /* 固定导航栏时的页面间距调整 */
    .mobile-nav-fixed body {
        padding-bottom: 60px !important;
        margin-bottom: 0 !important;
    }
    
    .mobile-nav-fixed .container, 
    .mobile-nav-fixed .main-content, 
    .mobile-nav-fixed #main {
        margin-bottom: 0 !important;
    }
    
    .mobile-nav-fixed html, 
    .mobile-nav-fixed body {
        margin-bottom: 0 !important;
        overflow-x: hidden; /* 防止横向滚动 */
        touch-action: manipulation; /* 减少双指缩放等手势 */
    }
    
    .mobile-nav-fixed .footer, 
    .mobile-nav-fixed footer, 
    .mobile-nav-fixed .page-footer {
        margin-bottom: 20px !important;
        padding-bottom: 10px !important;
    }
}

/* iPhone 安全区域支持 */
@supports (padding: max(0px)) {
    @media (max-width: 768px) {
        .mobile-bottom-nav {
            padding-bottom: max(8px, env(safe-area-inset-bottom));
            bottom: 0;
        }
        
        .mobile-nav-fixed body {
            padding-bottom: max(50px, calc(50px + env(safe-area-inset-bottom))) !important;
        }
        
        .mobile-nav-fixed .footer, 
        .mobile-nav-fixed footer, 
        .mobile-nav-fixed .page-footer {
            margin-bottom: max(5px, calc(5px + env(safe-area-inset-bottom))) !important;
            padding-bottom: 20px !important;
        }
    }
}

/* 模态框动画 */
@keyframes modalSlideIn {
    0% {
        opacity: 0;
        transform: scale(0.95) translateY(20px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes modalSlideOut {
    0% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
    100% {
        opacity: 0;
        transform: scale(0.95) translateY(-20px);
    }
}



/* 悬浮客服容器  start*/
.floating-service-container {
    position: fixed;
    z-index: 9999;
    font-family: Arial, sans-serif;
    opacity: 0;
    visibility: hidden;
    /* 默认位置（备用） - 靠近底部 */
    right: 60px;
    bottom: 80px;
}

/* 加载完成后启用位置过渡动画 */
.floating-service-container.transitions-enabled {
    transition: opacity 0.3s ease, visibility 0.3s ease, right 0.3s ease, bottom 0.3s ease, transform 0.3s ease;
}

/* 页面加载完成后显示 */
.floating-service-container.loaded {
    opacity: 1;
    visibility: visible;
}

/* 主控制按钮 */
.floating-service-toggle {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1e90ff, #00bfff);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(30, 144, 255, 0.4);
    transition: all 0.3s ease;
}

/* 加载完成后启用动画 */
.floating-service-container.loaded .floating-service-toggle {
    animation: pulse 2s infinite;
}

.floating-service-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(30, 144, 255, 0.6);
}

.floating-service-toggle i {
    font-size: 20px;
    margin-bottom: 2px;
}

.floating-service-toggle .service-text {
    font-size: 10px;
    font-weight: 500;
}

@keyframes pulse {
    0% { box-shadow: 0 4px 15px rgba(30, 144, 255, 0.4), 0 0 0 0 rgba(30, 144, 255, 0.7); }
    70% { box-shadow: 0 4px 15px rgba(30, 144, 255, 0.4), 0 0 0 10px rgba(30, 144, 255, 0); }
    100% { box-shadow: 0 4px 15px rgba(30, 144, 255, 0.4), 0 0 0 0 rgba(30, 144, 255, 0); }
}

/* 服务按钮菜单 */
.floating-service-menu {
    position: absolute;
    bottom: 80px;
    right: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.floating-service-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* 服务按钮项 */
.service-item {
    position: relative;
    margin-bottom: 12px;
    width: 60px;
    height: 60px;
}

.service-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 50%;
    color: #333;
    text-decoration: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid #f0f0f0;
}

.service-link:hover {
    transform: scale(1.1);
    color: #1e90ff;
    border-color: #1e90ff;
    box-shadow: 0 4px 15px rgba(30, 144, 255, 0.2);
    text-decoration: none;
}

.service-link i {
    font-size: 20px;
}

/* 确保所有链接状态都没有下划线 */
.service-link,
.service-link:hover,
.service-link:focus,
.service-link:active,
.service-link:visited {
    text-decoration: none !important;
}

/* 特定服务按钮颜色 */
.service-item:nth-child(1) .service-link:hover { color: #ff6b6b; border-color: #ff6b6b; } /* 立即标注 */
.service-item:nth-child(2) .service-link:hover { color: #4ecdc4; border-color: #4ecdc4; } /* 在线客服 */
.service-item:nth-child(3) .service-link:hover { color: #07c160; border-color: #07c160; } /* 微信客服 */
.service-item:nth-child(4) .service-link:hover { color: #ff9500; border-color: #ff9500; } /* QQ客服 */
.service-item:nth-child(5) .service-link:hover { color: #007bff; border-color: #007bff; } /* 返回顶部 */

/* 工具提示 */
.service-item::before {
    content: attr(data-tooltip);
    position: absolute;
    right: 80px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 16px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 10000;
}

/* 禁用有no-tooltip类的元素的工具提示 */
.service-item.no-tooltip::before,
.service-item.no-tooltip::after {
    display: none !important;
}

.service-item.no-tooltip:hover::before,
.service-item.no-tooltip:hover::after {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
}

.service-item::after {
    content: '';
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid rgba(0, 0, 0, 0.8);
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 10000;
}

.service-item:hover::before,
.service-item:hover::after {
    opacity: 1;
    visibility: visible;
}

/* 悬浮弹出框 */
.service-popup {
    position: absolute;
    right: 80px;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 10001;
    min-width: 200px;
}

.service-popup.active {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    padding: 15px;
}

.popup-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: #333;
}

.popup-header i {
    font-size: 18px;
    margin-right: 8px;
}

.popup-header span {
    font-weight: 600;
    font-size: 16px;
}

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

.popup-body p {
    margin: 8px 0;
    color: #666;
    font-size: 16px;
}

/* 微信二维码样式 */
.qr-code {
    width: 150px;
    height: 150px;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
}

/* QQ号码样式 */
.qq-number {
    font-size: 18px;
    font-weight: 600;
    color: #ff9500;
    margin: 10px 0;
    padding: 8px 12px;
    background: #fff8f0;
    border-radius: 4px;
    border: 1px solid #ffd700;
    cursor: pointer;
    user-select: all;
}

.copy-qq-btn {
    background: #ff9500;
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.copy-qq-btn:hover {
    background: #e6851e;
}

/* 响应式设计 - 只在PC端显示 */
@media (max-width: 768px) {
    .floating-service-container {
        display: none;
    }
}

/* 客服系统适应性定位类 */
.floating-service-container.content-relative {
    /* 当客服系统相对于内容定位时的样式 */
    position: relative;
}

.floating-service-container.screen-edge {
    /* 当客服系统位于屏幕边缘时的样式 */
    position: fixed;
}
/* 悬浮客服容器  end*/

/* ===== 通用组件样式 ===== */

/* 信息展示行样式 - 用于订单详情、申请信息等 */
.info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #e9ecef;
}

.info-row:last-child {
    border-bottom: none;
}

.info-row .label {
    font-weight: 600;
    color: #6c757d;
    flex: 0 0 120px;
}

.info-row .value {
    font-weight: 500;
    color: #495057;
    flex: 1;
    text-align: right;
    word-break: break-all;
}

/* 移动端信息行优化 */
@media (max-width: 768px) {
    .info-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
        padding: 12px 0;
    }

    .info-row .label {
        flex: none;
        font-size: 0.9rem;
    }

    .info-row .value {
        text-align: left;
    }
}

/* 返回按钮通用样式 */
.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #3a7bd5;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
    background: rgba(58, 123, 213, 0.1);
    border: 1px solid rgba(58, 123, 213, 0.2);
}

.back-btn:hover {
    background: rgba(58, 123, 213, 0.15);
    color: #2563eb;
    text-decoration: none;
    transform: translateX(-2px);
}

.back-btn i {
    font-size: 0.8rem;
}

/* 标签组件样式 */
.tag {
    background: rgba(58,123,213,.1);
    color: #3a7bd5;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: .85rem;
    font-weight: 500;
    border: 1px solid rgba(58,123,213,.2);
    display: inline-block;
}

.tag.success {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
    border-color: rgba(40, 167, 69, 0.2);
}

.tag.warning {
    background: rgba(255, 193, 7, 0.1);
    color: #ffc107;
    border-color: rgba(255, 193, 7, 0.2);
}

.tag.danger {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border-color: rgba(220, 53, 69, 0.2);
}

/* 卡片组件样式 */
.card-custom {
    background: #ffffff;
    border-radius: 12px;
    padding: 25px;
    margin: 20px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(226, 232, 240, 0.6);
    position: relative;
    transition: all 0.3s ease;
}

.card-custom:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.card-custom .card-header {
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.card-custom .card-title {
    color: #2c3e50;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.card-custom .card-title i {
    color: #3a7bd5;
    font-size: 1.1rem;
}




/* ===== 移动端字体优化 - 更协调清爽的设计 ===== */

/* 基础移动端字体设置 */
@media (max-width: 768px) {
    body {
        font-size: 15px; /* 从14px提升到15px，提高可读性 */
        line-height: 1.6;
        color: #333333;
    }
    
    /* 标题层次优化 - 更协调的比例 */
    h1 {
        font-size: 28px; /* 从30px调整到28px，更协调 */
        font-weight: 700;
        color: #1a1a1a;
        line-height: 1.3;
        margin-bottom: 16px;
    }
    
    h2 {
        font-size: 22px; /* 从24px调整到22px */
        font-weight: 600;
        color: #1a1a1a;
        line-height: 1.4;
        margin-bottom: 14px;
    }
    
    h3 {
        font-size: 18px; /* 从20px调整到18px */
        font-weight: 600;
        color: #1a1a1a;
        line-height: 1.4;
        margin-bottom: 12px;
    }
    
    h4 {
        font-size: 16px; /* 保持16px */
        font-weight: 600;
        color: #1a1a1a;
        line-height: 1.4;
        margin-bottom: 10px;
    }
    
    h5 {
        font-size: 15px;
        font-weight: 600;
        color: #1a1a1a;
        line-height: 1.4;
        margin-bottom: 8px;
    }
    
    h6 {
        font-size: 14px;
        font-weight: 600;
        color: #1a1a1a;
        line-height: 1.4;
        margin-bottom: 6px;
    }
    
    /* 段落和文本优化 */
    p {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 12px;
    }
    
    /* 小文本优化 */
    .small, small {
        font-size: 13px;
        line-height: 1.5;
    }
    
    /* 按钮文字优化 */
    .btn {
        font-size: 15px;
        font-weight: 500;
        line-height: 1.4;
    }
    
    .btn-sm {
        font-size: 14px;
    }
    
    .btn-lg {
        font-size: 16px;
    }
    
    
    /* 卡片和容器文字优化 */
    .card-title {
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 12px;
    }
    
    .card-text {
        font-size: 15px;
        line-height: 1.6;
    }
    
    /* 导航和菜单文字 */
    .nav-link {
        font-size: 15px;
        font-weight: 500;
    }
    
    /* 标签和徽章 */
    .badge {
        font-size: 12px;
        font-weight: 500;
    }
    
    /* 列表项 */
    li {
        font-size: 15px;
        line-height: 1.6;
    }
}

/* 小屏幕设备优化 (480px以下) */
@media (max-width: 480px) {
    body {
        font-size: 14px; /* 小屏幕使用14px */
        line-height: 1.6;
    }
    
    h1 {
        font-size: 24px;
        margin-bottom: 14px;
    }
    
    h2 {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    h3 {
        font-size: 17px;
        margin-bottom: 10px;
    }
    
    h4 {
        font-size: 15px;
        margin-bottom: 8px;
    }
    
    h5 {
        font-size: 14px;
        margin-bottom: 6px;
    }
    
    h6 {
        font-size: 13px;
        margin-bottom: 4px;
    }
    
    p {
        font-size: 14px;
        margin-bottom: 10px;
    }
    
    .small, small {
        font-size: 12px;
    }
    
    .btn {
        font-size: 14px;
    }
    
    .btn-sm {
        font-size: 13px;
    }
    
    .btn-lg {
        font-size: 15px;
    }
    
    
    .card-title {
        font-size: 16px;
        margin-bottom: 10px;
    }
    
    .card-text {
        font-size: 14px;
    }
    
    .nav-link {
        font-size: 14px;
    }
    
    .badge {
        font-size: 11px;
    }
    
    li {
        font-size: 14px;
    }
}

/* 超小屏幕设备优化 (360px以下) */
@media (max-width: 360px) {
    body {
        font-size: 13px;
        line-height: 1.6;
    }
    
    h1 {
        font-size: 22px;
        margin-bottom: 12px;
    }
    
    h2 {
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    h3 {
        font-size: 16px;
        margin-bottom: 8px;
    }
    
    h4 {
        font-size: 14px;
        margin-bottom: 6px;
    }
    
    h5 {
        font-size: 13px;
        margin-bottom: 4px;
    }
    
    h6 {
        font-size: 12px;
        margin-bottom: 3px;
    }
    
    p {
        font-size: 13px;
        margin-bottom: 8px;
    }
    
    .small, small {
        font-size: 11px;
    }
    
    .btn {
        font-size: 13px;
    }
    
    .btn-sm {
        font-size: 12px;
    }
    
    .btn-lg {
        font-size: 14px;
    }
    
    
    .card-title {
        font-size: 15px;
        margin-bottom: 8px;
    }
    
    .card-text {
        font-size: 13px;
    }
    
    .nav-link {
        font-size: 13px;
    }
    
    .badge {
        font-size: 10px;
    }
    
    li {
        font-size: 13px;
    }
}

/* 平板设备优化 (768px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    body {
        font-size: 16px;
        line-height: 1.6;
    }
    
    h1 {
        font-size: 32px;
        margin-bottom: 18px;
    }
    
    h2 {
        font-size: 26px;
        margin-bottom: 16px;
    }
    
    h3 {
        font-size: 22px;
        margin-bottom: 14px;
    }
    
    h4 {
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    h5 {
        font-size: 16px;
        margin-bottom: 10px;
    }
    
    h6 {
        font-size: 14px;
        margin-bottom: 8px;
    }
    
    p {
        font-size: 16px;
        margin-bottom: 14px;
    }
    
    .small, small {
        font-size: 14px;
    }
    
    .btn {
        font-size: 16px;
    }
    
    .btn-sm {
        font-size: 15px;
    }
    
    .btn-lg {
        font-size: 17px;
    }
    
    
    .card-title {
        font-size: 20px;
        margin-bottom: 14px;
    }
    
    .card-text {
        font-size: 16px;
    }
    
    .nav-link {
        font-size: 16px;
    }
    
    .badge {
        font-size: 13px;
    }
    
    li {
        font-size: 16px;
    }
}

/* ===== 移动端常见小字类：最小 1rem（排除 footer） ===== */
@media (max-width: 768px) {
    small,
    .small,
    .text-small,
    .text-muted,
    .label-text,
    .badge,
    .example-tag,
    .trust-badge,
    .map-name,
    .mobile-detail-label,
    .mobile-detail-value,
    .mobile-guarantee-item,
    .tip-btn,
    .order-number,
    .info-title,
    .info-content,
    .faq-answer,
	.mobile-faq-answer,
    .success-subtitle,
    .faq-question-text {
        font-size: 1rem !important;
    }
}

.desktop-footer {
    display: block;
}
.mobile-footer {
    display: none;
}
/* 移动端页脚样式 */
.mobile-footer {
    background: #f8fafc;
    padding: 20px 5px;
    text-align: center;
    border-top: 1px solid #e2e8f0;
    margin-top: 15px;
    margin-left: -5px;
    margin-right: -5px;
}

.mobile-footer hr {
    margin: 1.2rem auto;
    border: none;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.12); /* 半透明灰色 */
    width: 90%;
    max-width: 300px;
}
.mobile-footer p {
    margin: 0;
    font-size: 0.85rem;
    color: #64748b;
}

@media (max-width: 768px) {
.mobile-footer {
        display: block !important;
    }
.desktop-footer {
        display: none !important;
    }
	}
@media (max-width: 480px) {
.mobile-footer {
        padding: 15px 3px;
        margin-left: -3px;
        margin-right: -3px;
    }
    
    .mobile-footer p {
        font-size: 0.8rem;
    }
}

/* 按钮组合样式 */
.btn-group-custom {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

.btn-primary-custom {
    background: linear-gradient(to right, #3a7bd5, #00d2ff);
    color: #fff;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    transition: all .3s ease;
    border: none;
    font-size: 16px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary-custom:hover::before {
    left: 100%;
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(58,123,213,.3);
    color: #fff;
    text-decoration: none;
}

.btn-primary-custom:active {
    transform: translateY(0);
}

.btn-secondary-custom {
    background: linear-gradient(to right, #28a745, #2ecc71);
    color: #fff;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    transition: all .3s ease;
    border: none;
    font-size: 16px;
    cursor: pointer;
}

.btn-secondary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
    color: #fff;
    text-decoration: none;
}

.form-card, .info-card, .applications-card, .faq-section, .order-brief, .summary-card, .order-status-card, .service-guarantee-card, .mobile-order-brief, .mobile-announcement, .mobile-payment-info, .empty-state
	{
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04)!important;
	} 
	
/* 移动端按钮优化 */
@media (max-width: 768px) {
    .btn-group-custom {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .btn-primary-custom,
    .btn-secondary-custom {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 15px 20px;
    }
	body{background: #FFFFFF;}
	.form-card, .info-card, .mobile-faq, .mobile-order-brief, .mobile-announcement, .mobile-payment-info, .empty-state
	{
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04)!important;
	} 
	
}