        /* 全局样式重置与基础设置 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: "Microsoft Yahei", "PingFang SC", sans-serif;
            color: #333;
            background-color: #f5f7fa;
            line-height: 1.6;
            padding-bottom: 80px;
            /* 关键：给body加顶部内边距，避免内容被固定导航遮挡 */
            padding-top: 60px !important;
        }
        a {
            text-decoration: none;
            color: #165DFF;
            transition: all 0.3s ease;
        }
        a:hover {
            color: #0E42D2;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        /* 头部导航 - 全局固定在顶部（核心修改） */
        .header {
            background-color: #FFFFFF;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
            /* 从sticky改为fixed，全局固定 */
            position: fixed !important;
            top: 0 !important;
            left: 0 !important;
            width: 100% !important; /* 撑满整个屏幕宽度 */
            z-index: 9999 !important; /* 最高层级，避免被遮挡 */
            padding: 10px 0; /* 保持原有高度 */
            height: auto;
        }

        /* LOGO样式 - 极致加粗+分色+无动画+美化提示 */
        .logo {
            font-size: 26px;
            font-weight: 900 !important; /* 极致加粗 */
            color: #165DFF !important; /* ED和.COM设为蓝色 */
            letter-spacing: 0; /* 无间隙 */
            position: relative;
            display: inline-block;
            transition: none !important; /* hover无任何颜色变化 */
            z-index: 1;
        }
        /* ICP红色+极致加粗（仅作用于LOGO内的ICP span） */
        .logo .logo-icp {
            color: #FF0000 !important; /* 强制红色，仅作用于ICP */
            font-weight: 900 !important; /* 极致加粗 */
            letter-spacing: 0;
        }
        /* LOGO下划线 - 从内往外循环滑动动画 */
        .logo::after {
            content: "";
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0; /* 初始宽度0 */
            height: 2px;
            background: #FF0000;
            z-index: -1;
            transform-origin: center; /* 动画从中心展开 */
            transition: none !important; /* 取消原有过渡，用动画替代 */
            animation: underlineExpand 3s ease-in-out infinite; /* 循环动画 */
        }
        /* 从内往外展开再收回的关键帧 */
        @keyframes underlineExpand {
            0% { width: 0; left: 50%; } /* 初始在中间，宽度0 */
            50% { width: 100%; left: 0; } /* 展开到全屏 */
            100% { width: 0; left: 50%; } /* 收回至中间 */
        }

        /* LOGO提示词 - 原蓝色背景+纯白大字号+左右慢晃动 */
        .logo-tooltip {
            display: none;
            position: absolute;
            bottom: -45px !important; /* 下划线下方 */
            left: 50%;
            transform: translateX(-50%);
            /* 恢复原深蓝色渐变背景 */
            background: linear-gradient(135deg, #165DFF 0%, #0E42D2 100%);
            /* 强制纯白文字，彻底隔离ICP红色样式 */
            color: #FFFFFF !important;
            font-size: 14px !important; /* 文字放大（原13px→14px） */
            font-weight: 600;
            padding: 8px 15px;
            border-radius: 8px;
            white-space: nowrap;
            z-index: 9999;
            box-shadow: 0 3px 10px rgba(22, 93, 255, 0.4);
            border: 1px solid rgba(255, 255, 255, 0.2);
            /* 禁止继承任何文字样式 */
            text-decoration: none !important;
            border-color: transparent !important;
            /* 左右慢晃动动画 */
            animation: tooltipShake 4s ease-in-out infinite;
        }
        /* 左右慢晃动关键帧 */
        @keyframes tooltipShake {
            0% { transform: translateX(-50%) rotate(0deg); }
            25% { transform: translateX(-52%) rotate(-0.5deg); }
            50% { transform: translateX(-50%) rotate(0deg); }
            75% { transform: translateX(-48%) rotate(0.5deg); }
            100% { transform: translateX(-50%) rotate(0deg); }
        }
        /* 提示箭头（适配原蓝色背景） */
        .logo-tooltip::before {
            content: "";
            position: absolute;
            top: -6px;
            left: 50%;
            transform: translateX(-50%);
            border-width: 0 6px 6px 6px;
            border-style: solid;
            border-color: transparent transparent #165DFF transparent;
        }
        /* hover显示提示 */
        .logo:hover .logo-tooltip {
            display: block;
            /* 保留渐显动画 */
            animation: tooltipFloat 0.3s ease forwards, tooltipShake 4s ease-in-out infinite;
        }
        @keyframes tooltipFloat {
            0% { opacity: 0; transform: translateX(-50%) translateY(5px); }
            100% { opacity: 1; transform: translateX(-50%) translateY(0); }
        }

        /* 导航容器 - 极致靠右+极小间隙 */
        .navbar-collapse {
            justify-content: flex-end !important;
            margin-left: auto !important;
        }
        .navbar-nav {
            flex-wrap: nowrap;
            margin-left: 0 !important;
        }
        .nav-item {
            position: relative;
            white-space: nowrap;
        }
        /* 主菜单样式 - 极小间隙+hover动态白色下划线 */
        .nav-link {
            color: #2C3E50 !important;
            font-weight: 500;
            margin: 0 3px !important;
            padding: 8px 8px !important;
            position: relative;
            white-space: nowrap;
            border-radius: 4px;
        }
        /* 主菜单hover效果 - 深蓝背景+白色文字 */
        .nav-link:hover {
            color: #FFFFFF !important;
            background-color: #0066CC !important;
            padding: 8px 8px !important;
        }
        /* 主菜单下划线 - 白色+仅hover显示（核心修改） */
        .nav-link::after {
            content: "";
            position: absolute;
            bottom: 2px;
            left: 8px;
            width: calc(100% - 16px);
            height: 2px;
            background: #FFFFFF !important; /* 下划线改为白色 */
            transform: scaleX(0); /* 初始隐藏 */
            transition: transform 0.3s ease; /* 动态过渡 */
            transform-origin: center;
        }
        /* 仅hover时显示白色下划线 */
        .nav-link:hover::after {
            transform: scaleX(1) !important;
        }
        /* Active状态 - 保留背景+白色下划线 */
        .nav-link.active {
            color: #FFFFFF !important;
            background-color: #165DFF !important;
            font-weight: 600;
        }
        /* Active默认显示白色下划线 */
        .nav-link.active::after {
            transform: scaleX(1) !important;
            background: #FFFFFF !important;
        }
        .nav-link.active:hover {
            color: #FFFFFF !important;
            background-color: #0E42D2 !important;
        }

        /* 电脑版子菜单 - 宽度一致+hover显示 */
/* 保留hover展开子菜单，但允许主链接点击 */
@media (min-width: 992px) {
    .nav-item.dropdown:hover .dropdown-menu {
        display: block; /* hover展开 */
        margin-top: 0;
        pointer-events: auto; /* 确保子菜单不拦截主链接点击 */
    }
    /* 关键：取消dropdown-toggle的默认点击拦截样式 */
    .nav-link.dropdown-toggle {
        pointer-events: auto !important;
        cursor: pointer;
    }
    /* 确保active类不影响点击 */
    .nav-link.dropdown-toggle.active {
        pointer-events: auto !important;
    }
}
            .dropdown-menu {
                background-color: #0066CC !important;
                border: none;
                border-radius: 4px;
                padding: 8px 0;
                box-shadow: 0 4px 12px rgba(0, 102, 204, 0.2);
                width: 100% !important;
                left: 0 !important;
                transform: none !important;
                min-width: unset !important;
                margin-top: 2px !important;
            }
            .dropdown-item {
                color: #FFFFFF !important;
                padding: 8px 16px;
                position: relative;
                white-space: nowrap;
                text-decoration: none !important;
                border-bottom: none !important;
            }
            .dropdown-item:hover {
                background-color: #0052A3 !important;
                color: #FFFFFF !important;
            }
            .dropdown-item::after {
                content: "";
                position: absolute;
                bottom: 2px;
                left: 16px;
                width: 0;
                height: 2px;
                background: #FFFFFF;
                transition: width 0.3s ease;
            }
            .dropdown-item:hover::after {
                width: calc(100% - 32px);
            }
        }

        /* 手机版样式 - 无箭头旋转 */
        @media (max-width: 991.98px) {
            .navbar-collapse {
                padding: 10px 0;
            }
            .dropdown-toggle::after {
                transition: none !important;
            }
            .dropdown-toggle.show::after {
                transform: none !important;
            }
            .nav-item.dropdown .dropdown-menu {
                position: static !important;
                transform: none !important;
                left: 0 !important;
                width: 100%;
                margin-top: 4px;
                background-color: #0066CC !important;
                min-width: 180px !important;
            }
            .dropdown-item {
                color: #FFFFFF !important;
                padding: 8px 16px;
                border-bottom: none !important;
            }
            .dropdown-item:hover {
                background-color: #0052A3 !important;
            }
            /* 手机版适配固定导航的内边距 */
            body {
                padding-top: 55px !important;
            }
        }
        
        
/* 横幅区域 */
.banner {
    /* 新增：添加相对定位，让伪元素基于banner定位 */
    position: relative;
    /* 原有渐变背景保留，与背景图片叠加 */
    background: linear-gradient(135deg, #165DFF 0%, #0E42D2 100%);
    color: #FFFFFF;
    padding: 80px 0;
    text-align: center;
    border-radius: 0 0 20px 20px;
    margin-bottom: 20px;
    /* 新增：确保内容层级高于背景图片伪元素 */
    z-index: 1;
}

/* 新增：背景图片伪元素 */
.banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("/skin/icpedi.png") center center/cover no-repeat;
    opacity: 0.35; /* 透明度可根据需要调整 */
    z-index: -1; /* 置于banner背景之下，不遮挡内容 */
    border-radius: 0 0 20px 20px; /* 与banner保持相同圆角 */
}

.banner h1 {
    font-size: 40px;
    margin-bottom: 25px;
    font-weight: 700;
    /* 可选：添加相对定位确保层级 */
    position: relative;
}

.banner p {
    font-size: 18px;
    margin-bottom: 35px;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    /* 可选：添加相对定位确保层级 */
    position: relative;
}

.banner-btn {
    background-color: #FF7D00;
    color: #FFFFFF;
    padding: 14px 35px;
    border-radius: 8px;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
    font-size: 16px;
    box-shadow: 0 4px 15px rgba(255, 125, 0, 0.3);
    /* 可选：添加相对定位确保层级 */
    position: relative;
}

.banner-btn:hover {
    background-color: #E67000;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 125, 0, 0.4);
}

/* 移动端客服按钮 */
.mobile-service-btn {
    display: none;
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 997;
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #165DFF, #0E42D2);
    color: #FFFFFF;
    text-align: center;
    font-size: 24px;
    box-shadow: 0 4px 15px rgba(22, 93, 255, 0.3);
    cursor: pointer;
    border: none;
}

/* 悬浮客服 */
.float-service {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 998;
    background: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    width: 280px;
    padding: 20px;
    border: 1px solid #EFF2F7;
    display: block;
}
.service-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #EFF2F7;
    background-color: #165DFF;
}
.service-header h4 {
    font-size: 18px;
    font-weight: 600;
    color: white;
    margin: 0;
    text-align: center;
    flex: 1;
}
.service-close {
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 50%;
    background: #f5f7fa;
    color: #6B7280;
    text-align: center;
    font-size: 16px;
    cursor: pointer;
    display: none;
}
.service-icon {
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #165DFF, #0E42D2);
    color: #FFFFFF;
    text-align: center;
    font-size: 20px;
}
.service-info {
    margin-bottom: 10px;
    text-align: center;
}
.service-info p {
    margin: 8px 0;
    color: #4B5563;
    font-size: 15px;
    line-height: 1.5;
    text-align: center;
}
.service-info p strong {
    color: #2C3E50;
}
.service-time {
    color: #FF7D00;
    font-size: 14px;
    padding-top: 10px;
    border-top: 1px dashed #EFF2F7;
    margin-top: 10px;
    text-align: center;
}
.service-qrcode {
    text-align: center;
    margin-bottom: 15px;
}
.contact-qrcode {
    width: 150px;
    height: 150px;
    margin: 0 auto 10px;
    display: block;
    border: 2px solid white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.qrcode-tip {
    margin: 0;
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}
.service-info i {
    margin-right: 8px;
    font-size: 18px;
}
.service-info .fa-weixin {
    color: #07c160;
}
.service-info .fa-qq {
    color: #12b7f5;
}

/* 弹窗核心样式 */
/* 弹窗遮罩层 - 透明背景 + 永不拦截点击 */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 10000;
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    pointer-events: none;
}
/* 遮罩层激活状态 */
.modal-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: none;
}

/* 弹窗容器 - 滑出效果 + 可交互 */
.modal-container {
    position: fixed;
    bottom: 20px;
    right: 0;
    width: 90%;
    max-width: 950px;
    height: 290px;
    background: linear-gradient(135deg, #ffffff 0%, #f8faff 100%);
    border-radius: 16px 0 0 16px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    display: flex;
    overflow: visible;
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid #e8f4f8;
    z-index: 10001;
    pointer-events: auto;
}
/* 弹窗激活状态 - 滑入 */
.modal-overlay.active .modal-container {
    transform: translateX(0);
}

/* LOGO区域 - 左侧固定 */
.modal-logo {
    width: 200px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: linear-gradient(135deg, #1a66db 0%, #a4a0ff 100%);
}
.logo-img {
    width: 160px;
    height: 160px;
    background: #ffffff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}
.logo-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* 备用LOGO文字 */
.logo-text {
    color: white;
    font-size: 24px;
    font-weight: 700;
    text-align: center;
}

/* 内容区域 */
.modal-content-wrap {
    flex: 1;
    padding: 25px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

/* 弹窗内容样式 */
.modal-content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.modal-content h2 {
    color: #1E293B;
    font-size: 24px;
    margin: 0 0 20px 0;
    font-weight: 800;
    line-height: 1.4;
    letter-spacing: -0.5px;
}
.modal-content .highlight {
    color: #165DFF;
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(22, 93, 255, 0.15);
}
.modal-content p {
    color: #64748B;
    font-size: 15px;
    line-height: 1.8;
    margin: 0 0 16px 0;
    width: 100%;
    font-weight: 400;
}
.modal-content a {
    color: #165DFF;
    text-decoration: none;
    transition: color 0.3s ease;
}
.modal-content a:hover {
    color: #0E42D2;
    text-decoration: underline;
}

/* 按钮区域样式 */
.modal-buttons {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    flex-wrap: nowrap;
    width: 100%;
}
.modal-btn {
    padding: 10px 20px;
    font-size: 14px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex: 1;
    max-width: 130px;
    position: relative;
    overflow: hidden;
}
/* 按钮渐变样式 */
.btn-notice {
    background: linear-gradient(135deg, #4299e1 0%, #38b2ac 100%);
    color: white;
}
.btn-contact {
    background: linear-gradient(135deg, #FF7D00 0%, #E67000 100%);
    color: white;
}
.btn-pay {
    background: linear-gradient(135deg, #9f7aea 0%, #7472FE 100%);
    color: white;
}
.modal-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.5s ease;
}
.modal-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}
.modal-btn:hover::after {
    left: 100%;
}

/* 关闭按钮样式 */
.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    color: white;
    cursor: pointer;
    background: #165DFF;
    border: 2px solid #165DFF;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    z-index: 10;
    font-weight: bold;
}
.modal-close:hover {
    background: #0E42D2;
    color: white;
    transform: rotate(90deg);
    box-shadow: 0 4px 12px rgba(22, 93, 255, 0.4);
}

/* 弹窗唤起悬浮按钮 - 抖动动画 */
@keyframes shake {
    0%, 100% { transform: translateX(0) rotate(0); }
    25% { transform: translateX(-3px) rotate(-3deg); }
    50% { transform: translateX(0) rotate(0); }
    75% { transform: translateX(3px) rotate(3deg); }
}
.modal-toggle-btn {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffae05 0%, #d2d10e 100%);
    color: white;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(22, 93, 255, 0.3);
    border: none;
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    animation: shake 2s infinite ease-in-out;
}
.modal-toggle-btn.show {
    opacity: 1;
    visibility: visible;
}
.modal-toggle-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(22, 93, 255, 0.4);
    animation: shake 1s infinite ease-in-out;
}

/* 响应式适配 */
@media (max-width: 992px) {
    .float-service {
        width: 250px;
        right: 10px;
        padding: 15px;
    }
    .banner h1 {
        font-size: 35px;
    }
}

@media (max-width: 768px) {
    .mobile-service-btn {
        display: block;
    }
    .float-service {
        right: 20px;
        top: auto;
        bottom: 90px;
        transform: none;
        width: calc(100% - 40px);
        max-width: 300px;
        display: none;
    }
    .service-close {
        display: block;
    }
    .service-icon.d-none.d-md-block {
        display: none !important;
    }
    .banner h1 {
        font-size: 30px;
    }
    
    /* 弹窗移动端适配 */
    .modal-logo {
        display: none !important;
    }
    
    .modal-container {
        width: 100%;
        height: auto;
        max-height: 420px;
        bottom: 0;
        right: 0;
        border-radius: 16px 16px 0 0;
        flex-direction: column;
        transform: translateY(100%);
    }
    .modal-overlay.active .modal-container {
        transform: translateY(0);
    }
    
    .modal-content-wrap {
        padding: 20px 25px;
    }
    .modal-content h2 {
        font-size: 19px;
    }
    .modal-content p {
        font-size: 15px;
    }
    
    .modal-close {
        top: 10px;
        right: 10px;
        width: 36px;
        height: 36px;
        font-size: 22px;
    }
    
    .modal-toggle-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
        bottom: 90px;
        right: 15px;
    }
}


/* ========== 弹窗样式（合并+修复冲突，保留所有原有布局/样式） ========== */
/* 弹窗遮罩层 - 最终版（透明背景 + 不拦截点击） */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent; /* 完全透明背景 */
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    pointer-events: none; /* 核心：遮罩层不拦截任何点击 */
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
/* 遮罩层激活状态 */
.modal-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: none; /* 保持不拦截点击 */
}

/* 弹窗容器 - 保留原有滑出效果+尺寸+位置，仅新增pointer-events */
.modal-container {
    position: fixed;
    bottom: 20px;
    right: 0;
    width: 90%;
    max-width: 950px;
    height: 290px;
    background: linear-gradient(135deg, #ffffff 0%, #f8faff 100%);
    border-radius: 16px 0 0 16px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    display: flex;
    overflow: visible;
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid #e8f4f8;
    pointer-events: auto; /* 仅弹窗容器可交互，不影响页面其他元素 */
    z-index: 10000; /* 确保弹窗在最上层，但不拦截底层点击 */
}
/* 弹窗激活状态 - 滑入 */
.modal-overlay.active .modal-container {
    transform: translateX(0);
}

/* LOGO区域 - 完全保留原有样式/位置 */
.modal-logo {
    width: 200px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0; /* 防止LOGO区域被压缩 */
    background: linear-gradient(135deg, #1a66db 0%, #a4a0ff 100%);
    padding: 10px;
}
.logo-img {
    width: 180px;
    height: 182px;
    background: #ffffff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}
.logo-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
/* 备用LOGO文字（无图片时） */
.logo-text {
    color: white;
    font-size: 24px;
    font-weight: 700;
    text-align: center;
}

/* 内容区域 - 完全保留原有排版/样式 */
.modal-content-wrap {
    flex: 1;
    padding: 25px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}
.modal-content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.modal-content h2 {
    color: #2C3E50;
    font-size: 20px;
    margin: 0 0 12px 0;
    font-weight: 700;
    line-height: 1.3;
}
.modal-content .highlight {
    color: #165DFF;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(22, 93, 255, 0.1);
}
.modal-content p {
    color: #4a5568;
    font-size: 16px;
    line-height: 1.6;
    margin: 8px 0;
    width: 100%;
}
.modal-content a {
    color: #165DFF;
    text-decoration: none;
    transition: color 0.3s ease;
}
.modal-content a:hover {
    color: #0E42D2;
    text-decoration: underline;
}

/* 按钮区域 - 完全保留原有样式/间距/位置 */
.modal-buttons {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    flex-wrap: nowrap;
    width: 100%;
}
.modal-btn {
    padding: 10px 20px;
    font-size: 14px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex: 1;
    max-width: 130px;
    position: relative;
    overflow: hidden;
}
/* 按钮渐变样式 - 保留原有配色 */
.btn-notice {
    background: linear-gradient(135deg, #4299e1 0%, #38b2ac 100%);
    color: white;
}
.btn-contact {
    background: linear-gradient(135deg, #FF7D00 0%, #E67000 100%);
    color: white;
}
.btn-pay {
    background: linear-gradient(135deg, #9f7aea 0%, #7472FE 100%);
    color: white;
}
.modal-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.5s ease;
}
.modal-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}
.modal-btn:hover::after {
    left: 100%;
}

/* 关闭按钮 - 完全保留原有位置/样式/动画 */
.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    color: white;
    cursor: pointer;
    background: #165DFF;
    border: 2px solid #165DFF;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    z-index: 10;
    font-weight: bold;
}
.modal-close:hover {
    background: #0E42D2;
    color: white;
    transform: rotate(90deg);
    box-shadow: 0 4px 12px rgba(22, 93, 255, 0.4);
}

/* 弹窗唤起悬浮按钮 - 保留原有动画/样式/位置 */
@keyframes shake {
    0%, 100% { transform: translateX(0) rotate(0); }
    25% { transform: translateX(-3px) rotate(-3deg); }
    50% { transform: translateX(0) rotate(0); }
    75% { transform: translateX(3px) rotate(3deg); }
}
.modal-toggle-btn {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffae05 0%, #d2d10e 100%);
    color: white;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(22, 93, 255, 0.3);
    border: none;
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    animation: shake 2s infinite ease-in-out; /* 抖动动画 */
}
.modal-toggle-btn.show {
    opacity: 1;
    visibility: visible;
}
.modal-toggle-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(22, 93, 255, 0.4);
    animation: shake 1s infinite ease-in-out; /* hover时抖动加快 */
}

/* 弹窗移动端适配 - 完全保留原有逻辑/样式 */
@media (max-width: 768px) {
    /* LOGO区域隐藏 */
    .modal-logo {
        display: none !important;
    }
    
    /* 弹窗适配 */
    .modal-container {
        width: 100%;
        height: auto;
        max-height: 420px;
        bottom: 0;
        right: 0;
        border-radius: 16px 16px 0 0;
        flex-direction: column;
        transform: translateY(100%);
    }
    .modal-overlay.active .modal-container {
        transform: translateY(0);
    }
    
    /* 内容区域适配 */
    .modal-content-wrap {
        padding: 20px 25px;
    }
    .modal-content h2 {
        font-size: 19px;
    }
    .modal-content p {
        font-size: 15px;
    }
    
    /* 按钮适配 */
    .modal-buttons {
        gap: 8px;
    }
    .modal-btn {
        padding: 9px 16px;
        font-size: 13px;
        max-width: none;
    }
    
    /* 关闭按钮适配 */
    .modal-close {
        top: 10px;
        right: 10px;
        width: 36px;
        height: 36px;
        font-size: 22px;
    }
    
    /* 悬浮按钮适配 */
    .modal-toggle-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
        bottom: 90px;
        right: 15px;
    }
}


/* 全局重置 - 确保底部无空白（关键） */
html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    box-sizing: border-box;
}
/* 确保页面容器撑满高度，footer贴底（若需要footer固定底部可保留，非固定则删除） */
body {
    display: flex;
    flex-direction: column;
}
.main-content { /* 需给页面主体内容添加这个类，确保footer贴底 */
    flex: 1;
}

/* 底部版权 - 美化版 */
.footer {
    background: linear-gradient(135deg, #2C3E50 0%, #1A2533 100%);
    color: #FFFFFF;
    padding: 30px 20px; /* 优化内边距，适配小屏 */
    text-align: center;
    border-radius: 20px 20px 0 0;
    width: 100%; /* 确保宽度满屏，无侧边空白 */
    margin: 0; /* 清除默认外边距 */
    box-sizing: border-box; /* 内边距不影响宽度 */
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2); /* 增加顶部阴影，提升层次感 */
    font-family: "Microsoft Yahei", sans-serif; /* 优化字体 */
}
.footer p {
    margin: 0 0 8px 0;
    font-size: 14px;
    opacity: 0.9;
    line-height: 1.6; /* 优化行高，提升可读性 */
}
/* 最后一行文字清除底部外边距，避免底部空白 */
.footer p:last-child {
    margin-bottom: 0;
}

/* 备案链接样式 - 强制白色，优化交互 */
.footer a {
    color: #FFFFFF !important; /* 强制白色，覆盖可能的全局样式 */
    text-decoration: none; /* 清除默认下划线 */
    opacity: 1; /* 备案链接不透明，突出显示 */
    border-bottom: 1px solid rgba(255, 255, 255, 0.3); /* 浅白色下划线，提升辨识度 */
    transition: all 0.3s ease; /* 过渡动画 */
}
.footer a:hover {
    border-bottom-color: #FFFFFF; /* hover时下划线变实白 */
    opacity: 0.9; /* 轻微透明度变化，提升交互感 */
}

/* 响应式适配 - 992px以下 */
@media (max-width: 992px) {
    .float-service {
        width: 250px;
        right: 10px;
        padding: 15px;
    }
    .process-steps {
        gap: 30px;
    }
    .process-steps::before {
        display: none;
    }
    .case-container {
        grid-template-columns: 1fr;
    }
    /* 响应式下footer优化 */
    .footer {
        padding: 20px 15px; /* 小屏减少内边距 */
        border-radius: 15px 15px 0 0; /* 小屏优化圆角 */
    }
    .footer p {
        font-size: 13px; /* 小屏缩小字体 */
    }
}



        /* 全局样式重置 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        /* 单独的标题样式 - 放在板块上方 */
        .section-title {
            text-align: center;
            margin-bottom: 20px;
            color: #2c3e50;
            font-weight: 600;
            font-size: 26px;
            position: relative;
            padding-bottom: 15px;
        }

        .section-title::after {
            content: "";
            display: block;
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, #007bff, #6610f2);
            margin: 0 auto;
            border-radius: 2px;
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
        }

        /* 板块容器样式 */
        .case-section {
            padding: 30px 20px;
            background: linear-gradient(135deg, #f0f8ff 0%, #f8f9fa 100%);
            margin-bottom: 50px;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0, 123, 255, 0.08);
            border: 1px solid #e8f4ff;
        }

        /* 案例项样式 */
        .case-item {
            background: #ffffff;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            height: 100%;
            border: 1px solid #f1f5f9;
        }

        .case-item:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 8px 25px rgba(0, 123, 255, 0.15);
            border-color: #007bff;
        }

        /* 案例图片样式 */
        .case-image {
            position: relative;
            height: 180px;
            overflow: hidden;
        }

        .case-image::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.02);
            z-index: 1;
            pointer-events: none;
        }

        .case-image a {
            position: relative;
            display: block;
            width: 100%;
            height: 100%;
            z-index: 2;
        }

        .case-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
            position: absolute;
            top: 0;
            left: 0;
            z-index: 0;
        }

        .case-item:hover .case-image img {
            transform: scale(1.1);
        }

        /* 案例内容样式 */
        .case-content {
            padding: 18px;
        }

        .case-title {
            font-size: 16px;
            margin-bottom: 12px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .case-title a {
            color: #2c3e50;
            text-decoration: none;
            transition: color 0.3s ease;
            font-weight: 500;
        }

        .case-title a:hover {
            color: #007bff;
        }

        /* 状态栏样式 */
        .case-meta {
            display: flex;
            justify-content: space-between;
            font-size: 14px;
            color: #64748b;
            padding-top: 10px;
            border-top: 1px solid #f1f5f9;
        }

        .case-meta-item {
            display: flex;
            align-items: center;
        }

        .case-meta-item i {
            margin-right: 6px;
            color: #007bff;
            font-size: 13px;
        }

        .case-item:hover .case-meta-item i {
            color: #6610f2;
        }

        /* 仅手机端显示的联系方式模块样式 */
        .mobile-contact-container {
            width: 100%;
            padding: 20px 0;
            margin: 30px 0;
            background: #f8f9fa;
            border-radius: 12px;
            box-shadow: 0 2px 10px rgba(0, 123, 255, 0.08);
        }

        .mobile-contact-wrapper {
            max-width: 300px;
            margin: 0 auto;
            text-align: center;
        }

        .service-qrcode {
            margin-bottom: 15px;
        }

        .contact-qrcode {
            width: 180px;
            height: 180px;
            border: 5px solid #fff;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            border-radius: 8px;
            margin: 0 auto;
        }

        .qrcode-tip {
            margin-top: 10px;
            font-size: 14px;
            color: #64748b;
            font-weight: 500;
        }

        .service-info {
            padding-top: 15px;
            border-top: 1px solid #e8f4ff;
        }

        .service-info p {
            margin: 8px 0;
            font-size: 15px;
            color: #2c3e50;
            line-height: 1.5;
        }

        .service-info i {
            color: #007bff;
            margin-right: 5px;
        }

        .service-info strong {
            color: #333;
        }

        /* 响应式调整 */
        @media (max-width: 768px) {
            .case-image {
                height: 150px;
            }
            .section-title {
                font-size: 22px;
            }
        }

        @media (max-width: 576px) {
            .case-image {
                height: 120px;
            }
            .section-title {
                font-size: 20px;
            }
            .case-title {
                font-size: 14px;
            }
            .case-meta {
                font-size: 13px;
            }
        }
        
        
        
        
        
    /* ========== 省份筛选区域 - 完全隔离样式 ========== */
    /* 重置所有子元素样式，避免继承冲突 */
    .icp-province-filter-section * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: inherit;
        font-size: inherit;
        line-height: inherit;
        color: inherit;
        text-decoration: none;
        border: none;
        outline: none;
        background: none;
        list-style: none;
    }

    /* 核心容器 - 提高权重 */
    .icp-province-filter-section {
        width: 100% !important;
        padding: 20px 0 !important;
        background: #f1f5f9 !important;
        margin: 20px 0 !important;
        border: none !important;
        box-shadow: none !important;
    }

    .icp-province-container {
        padding: 0 !important;
        margin: 0 !important;
        max-width: 100% !important;
    }

    .icp-province-wrapper {
        max-width: 100% !important;
        margin: 0 auto !important;
        padding: 0 20px !important;
    }

    /* 标题样式 - 防覆盖 */
    .icp-filter-title {
        text-align: center !important;
        font-size: 22px !important;
        color: #2c3e50 !important;
        margin-bottom: 30px !important;
        font-weight: 600 !important;
        position: relative !important;
        line-height: 1.2 !important;
        padding: 0 !important;
    }

    .icp-filter-title::after {
        content: "" !important;
        display: block !important;
        width: 60px !important;
        height: 3px !important;
        background: linear-gradient(90deg, #007bff, #6610f2) !important;
        margin: 10px auto 0 !important;
        border-radius: 3px !important;
        position: absolute !important;
        bottom: -10px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
    }

    /* 按钮组布局 - 强制生效 */
    .icp-province-btn-group {
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 15px !important;
        width: 100% !important;
    }

    /* 定义8种独立颜色（避免变量冲突，改用行内样式） */
    .icp-province-btn[data-color-index="1"] { background: linear-gradient(135deg, #007bff, #0069d9) !important; }
    .icp-province-btn[data-color-index="2"] { background: linear-gradient(135deg, #6610f2, #520dc2) !important; }
    .icp-province-btn[data-color-index="3"] { background: linear-gradient(135deg, #28a745, #218838) !important; }
    .icp-province-btn[data-color-index="4"] { background: linear-gradient(135deg, #fd7e14, #e06800) !important; }
    .icp-province-btn[data-color-index="5"] { background: linear-gradient(135deg, #dc3545, #c82333) !important; }
    .icp-province-btn[data-color-index="6"] { background: linear-gradient(135deg, #17a2b8, #138496) !important; }
    .icp-province-btn[data-color-index="7"] { background: linear-gradient(135deg, #6f42c1, #5a32a3) !important; }
    .icp-province-btn[data-color-index="8"] { background: linear-gradient(135deg, #20c997, #19a779) !important; }

    /* 省份按钮核心样式 - 最高权重 */
    .icp-province-btn {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 12px 24px !important;
        color: #ffffff !important; /* 强制文字白色 */
        text-decoration: none !important;
        border-radius: 8px !important;
        font-size: 16px !important;
        font-weight: 500 !important;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1) !important;
        transition: all 0.3s ease !important;
        cursor: pointer !important;
        min-width: 100px !important;
        text-align: center !important;
        position: relative !important;
        overflow: hidden !important;
        z-index: 1 !important;
    }

    /* 悬浮特效 - 强制生效 */
    .icp-province-btn:hover {
        transform: translateY(-5px) scale(1.05) !important;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15) !important;
        color: #ffffff !important; /* 悬浮文字仍为白色 */
        text-decoration: none !important;
    }

    /* 点击波纹特效 - 隔离 */
    .icp-province-btn::after {
        content: "" !important;
        position: absolute !important;
        top: 50% !important;
        left: 50% !important;
        width: 0 !important;
        height: 0 !important;
        background: rgba(255, 255, 255, 0.3) !important;
        border-radius: 50% !important;
        transform: translate(-50%, -50%) !important;
        transition: width 0.6s ease, height 0.6s ease, opacity 0.6s ease !important;
        z-index: -1 !important;
    }

    .icp-province-btn:active::after {
        width: 300px !important;
        height: 300px !important;
        opacity: 0 !important;
    }

    /* 响应式适配 - 强制生效 */
    @media (max-width: 768px) {
        .icp-province-btn {
            padding: 10px 20px !important;
            font-size: 14px !important;
            min-width: 100px !important;
        }
        .icp-province-btn-group {
            gap: 10px !important;
        }
        .icp-filter-title {
            font-size: 20px !important;
        }
    }

    @media (max-width: 576px) {
        .icp-province-btn {
            padding: 8px 16px !important;
            font-size: 13px !important;
            min-width: 80px !important;
        }
        .icp-province-filter-section {
            padding: 20px 0 !important;
        }
    }
    
    
    
    /* ========== 申请建议板块 - 完全隔离样式 ========== */
    .icp-apply-tips-section * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: inherit;
        font-size: inherit;
        line-height: inherit;
        color: inherit;
        text-decoration: none;
        border: none;
        outline: none;
        background: none;
        list-style: none;
    }

    /* 核心容器 */
    .icp-apply-tips-section {
        width: 100% !important;
        padding: 30px 0 !important;
        margin: 30px 0 !important;
        background: #f8f9fa !important;
        border-radius: 12px !important;
        box-shadow: 0 3px 15px rgba(0, 123, 255, 0.06) !important;
        border: 1px solid #e8f4ff !important;
    }

    .icp-apply-tips-wrapper {
        max-width: 1200px !important;
        margin: 0 auto !important;
        padding: 0 20px !important;
    }

    /* 标题样式 */
    .icp-tips-title {
        text-align: center !important;
        font-size: 20px !important;
        color: #2c3e50 !important;
        margin-bottom: 20px !important;
        font-weight: 600 !important;
        position: relative !important;
        padding-bottom: 10px !important;
    }

    .icp-tips-title::after {
        content: "" !important;
        display: block !important;
        width: 70px !important;
        height: 2px !important;
        background: #dc3545 !important;
        margin: 10px auto 0 !important;
        border-radius: 2px !important;
    }

    /* 内容容器 */
    .icp-tips-content {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
    }

    /* 警示卡片（更重要，样式更醒目） */
    .icp-warning-card {
        display: flex !important;
        align-items: flex-start !important;
        gap: 15px !important;
        padding: 25px !important;
        background: linear-gradient(135deg, #fff5f5 0%, #fff8f8 100%) !important;
        border-left: 5px solid #dc3545 !important;
        border-radius: 8px !important;
        box-shadow: 0 3px 10px rgba(220, 53, 69, 0.08) !important;
        transition: all 0.3s ease !important;
        position: relative !important;
        overflow: hidden !important;
    }

    /* 警示卡片悬浮效果（更强烈） */
    .icp-warning-card:hover {
        transform: translateY(-5px) !important;
        box-shadow: 0 8px 20px rgba(220, 53, 69, 0.12) !important;
        border-left-color: #bb2d3b !important;
    }

    /* ========== 核心修复：FA图标强制显示 ========== */
    /* 全局FA图标兜底样式（防止站点其他样式覆盖） */
    :root {
        --fa-font-solid: normal 900 1em/1 "Font Awesome 6 Free" !important;
    }
    .fa-solid {
        font-family: "Font Awesome 6 Free" !important;
        font-weight: 900 !important;
        font-style: normal !important;
        font-variant: normal !important;
        text-rendering: auto !important;
        -webkit-font-smoothing: antialiased !important;
    }

    /* 图标容器强制样式 */
    .icp-warning-icon, .icp-service-icon {
        font-size: 28px !important;
        color: #dc3545 !important;
        margin-top: 2px !important;
        flex-shrink: 0 !important;
        display: inline-block !important; /* FA图标必需 */
        width: 32px !important; /* 固定宽度 */
        height: 32px !important; /* 固定高度 */
        text-align: center !important; /* 居中 */
        line-height: 32px !important; /* 垂直居中 */
        opacity: 1 !important; /* 强制不透明 */
        visibility: visible !important; /* 强制可见 */
        z-index: 999 !important; /* 强制层级 */
    }

    .icp-service-icon {
        color: #007bff !important;
    }

    .icp-warning-text {
        flex: 1 !important;
    }

    .icp-warning-text p {
        font-size: 15px !important;
        color: #495057 !important;
        line-height: 1.8 !important;
    }

    /* 高亮警示文案（加粗+红色+链接） */
    .icp-highlight-text {
        color: #dc3545 !important;
        font-weight: 700 !important;
        text-decoration: underline !important;
        text-underline-offset: 2px !important;
        transition: color 0.2s ease !important;
    }

    .icp-highlight-text:hover {
        color: #bb2d3b !important;
        text-decoration: none !important;
    }

    /* 服务卡片 */
    .icp-service-card {
        display: flex !important;
        align-items: flex-start !important;
        gap: 15px !important;
        padding: 25px !important;
        background: linear-gradient(135deg, #e8f4f8 0%, #f0f8ff 100%) !important;
        border-left: 5px solid #007bff !important;
        border-radius: 8px !important;
        box-shadow: 0 3px 10px rgba(0, 123, 255, 0.08) !important;
        transition: all 0.3s ease !important;
    }

    /* 服务卡片悬浮效果 */
    .icp-service-card:hover {
        transform: translateY(-3px) !important;
        box-shadow: 0 6px 15px rgba(0, 123, 255, 0.1) !important;
        border-left-color: #0069d9 !important;
    }

    .icp-service-text {
        flex: 1 !important;
    }

    .icp-service-text p {
        font-size: 15px !important;
        color: #495057 !important;
        line-height: 1.8 !important;
    }

    .icp-service-highlight {
        color: #007bff !important;
        font-weight: 600 !important;
    }

    /* 响应式适配 */
    @media (max-width: 768px) {
        .icp-warning-card, .icp-service-card {
            padding: 20px !important;
            gap: 12px !important;
        }
        .icp-warning-icon, .icp-service-icon {
            font-size: 24px !important;
            width: 28px !important;
            height: 28px !important;
            line-height: 28px !important;
        }
    }

    @media (max-width: 576px) {
        .icp-tips-title {
            font-size: 18px !important;
        }
        .icp-warning-text p, .icp-service-text p {
            font-size: 14px !important;
            line-height: 1.6 !important;
        }
        .icp-warning-card, .icp-service-card {
            padding: 18px !important;
            gap: 10px !important;
        }
        .icp-warning-icon, .icp-service-icon {
            font-size: 20px !important;
            width: 24px !important;
            height: 24px !important;
            line-height: 24px !important;
        }
        /* 手机端悬浮效果弱化 */
        .icp-warning-card:hover {
            transform: translateY(-3px) !important;
        }
        .icp-service-card:hover {
            transform: translateY(-2px) !important;
        }
    }
    
        /* ========================================
   EDI/ICP办理申请条件指南板块 - 炫富效果
   ======================================== */

.guide-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
}

/* 背景装饰效果（已移除旋转动画） */
.guide-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
}

.guide-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(255,215,0,0.1) 0%, 
        rgba(255,215,0,0.05) 50%, 
        rgba(255,215,0,0.1) 100%);
    pointer-events: none;
}

.guide-title {
    text-align: center;
    color: #ffffff;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    text-shadow: 0 4px 15px rgba(0,0,0,0.3);
    position: relative;
    z-index: 1;
}

.guide-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ffd700, #ffec8b);
    margin: 15px auto 0;
    border-radius: 2px;
    box-shadow: 0 2px 10px rgba(255,215,0,0.5);
}

.guide-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.guide-column {
    background: rgba(255,255,255,0.95);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 
        0 20px 60px rgba(0,0,0,0.3),
        0 0 0 1px rgba(255,215,0,0.3),
        inset 0 1px 0 rgba(255,255,255,0.8);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.guide-column::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ffd700, #ffec8b, #ffd700);
    background-size: 200% 100%;
    animation: goldShine 3s linear infinite;
}

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

.guide-column:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 30px 80px rgba(0,0,0,0.4),
        0 0 0 2px rgba(255,215,0,0.5),
        inset 0 1px 0 rgba(255,255,255,0.9);
}

.guide-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.guide-item {
    position: relative;
    overflow: hidden;
}

.guide-link {
    display: flex;
    align-items: center;
    padding: 12px 18px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.guide-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.guide-link:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: rgba(255,215,0,0.5);
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(102,126,234,0.3);
}

.guide-link:hover::before {
    width: 90%;
}

.guide-link:hover .guide-icon,
.guide-link:hover .guide-text {
    color: #ffffff;
}

.guide-icon {
    font-size: 18px;
    color: #667eea;
    margin-right: 12px;
    flex-shrink: 0;
    transition: all 0.3s ease;
    width: 24px;
    text-align: center;
}

.guide-left .guide-icon {
    color: #ffd700;
}

.guide-right .guide-icon {
    color: #764ba2;
}

.guide-text {
    color: #2c3e50;
    font-size: 15px;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all 0.3s ease;
}

/* 左右列不同图标 */
.guide-left .guide-icon::before {
    content: '\f0a3'; /* 证书图标 */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
}

.guide-right .guide-icon::before {
    content: '\f15c'; /* 文件图标 */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
}

/* 装饰性光效 */
.guide-column::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,215,0,0.15) 0%, transparent 70%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.guide-column:hover::after {
    opacity: 1;
}

/* 响应式设计 */
@media (max-width: 992px) {
    .guide-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .guide-title {
        font-size: 28px;
        margin-bottom: 40px;
    }
    
    .guide-column {
        padding: 25px 20px;
    }
    
    .guide-link {
        padding: 10px 15px;
    }
    
    .guide-text {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .guide-section {
        padding: 40px 0;
    }
    
    .guide-title {
        font-size: 24px;
        margin-bottom: 30px;
    }
    
    .guide-column {
        padding: 20px 15px;
        border-radius: 15px;
    }
    
    .guide-link {
        padding: 8px 12px;
    }
    
    .guide-icon {
        font-size: 16px;
        margin-right: 10px;
    }
    
    .guide-text {
        font-size: 13px;
    }
}




/* ========================================
   省份定位弹窗组件样式 - 独立命名空间
   ======================================== */

/* 弹窗样式 - 横幅下拉效果 */
.ip-province-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    pointer-events: auto; /* 允许点击空白区域关闭弹窗 */
    background: transparent; /* 透明背景 */
}

.ip-province-modal-container {
    background: white;
    border-radius: 0 0 8px 8px; /* 顶部不要圆角，底部两边需要圆角 */
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15); /* 整体带有阴影感觉 */
    width: 750px; /* 固定宽度750px */
    position: absolute;
    top: 87px; /* 从顶部87px位置开始 */
    left: 50%;
    transform: translateX(-50%) translateY(-100%); /* 初始位置在87px上方 */
    animation: slideDown 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    pointer-events: auto; /* 恢复弹窗内部的点击事件 */
    overflow: hidden;
    z-index: 10000;
}

/* 下拉动画 - 更慢更自然的滑出效果 */
@keyframes slideDown {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(-100%);
        box-shadow: 0 0 0 rgba(0, 0, 0, 0.15); /* 初始无阴影 */
    }
    80% {
        opacity: 1;
        transform: translateX(-50%) translateY(5px); /* 减少缓冲量 */
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15); /* 逐渐显示阴影 */
    }
    100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0); /* 最终位置在顶部87px处 */
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15); /* 完整阴影 */
    }
}

/* 上滑收起动画 - 用于关闭弹窗 */
@keyframes slideUp {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    }
    20% {
        opacity: 1;
        transform: translateX(-50%) translateY(5px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(-100%);
        box-shadow: 0 0 0 rgba(0, 0, 0, 0.15);
    }
}

/* 关闭按钮 */
.ip-province-modal-close {
    display: none; /* 隐藏关闭按钮 */
    cursor: pointer;
    font-size: 20px;
    color: #999;
    transition: color 0.3s;
}

.ip-province-modal-close:hover {
    color: #333;
}

/* 重新设计布局：图标独立在左侧，内容在右侧 */
.ip-province-modal-header {
    display: flex;
    align-items: center;
    padding: 15px 30px; /* 缩小间隙 */
    background: linear-gradient(45deg, #ff5105, #2e3014, #1e3c72, #1f71ff);
    background-size: 400% 400%;
    border-bottom: 1px solid #eee;
    justify-content: center;
    animation: headerColorCycle 8s ease infinite;
}

.ip-province-modal-header-content {
    display: flex;
    align-items: center;
    width: 100%;
}

.ip-province-modal-title {
    margin: 0;
    font-size: 26px;
    font-weight: 400;
    color: #f0f0f0;
    line-height: 1.4;
    flex: 1;
    text-align: center;
    position: relative;
    display: inline-block;
    cursor: pointer;
    transition: color 0.3s ease;
}

.ip-province-modal-title:hover {
    color: #ffffff;
}

.ip-province-modal-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #ff9800;
    transition: width 0.5s ease;
}

.ip-province-modal-title:hover::after {
    width: 100%;
}

/* 标题内的省份部分 */
.ip-province-modal-title-province {
    font-weight: bold;
    color: #ff9800;
    background-color: rgba(255, 255, 255, 0.15);
    padding: 2px 8px;
    border-radius: 4px;
    margin: 0 5px;
}

/* 快捷链接图标 */
.ip-province-modal-title::before {
    content: '↗';
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: opacity 0.3s ease, right 0.3s ease;
    color: #ff9800;
    font-size: 14px;
}

.ip-province-modal-title:hover::before {
    opacity: 1;
    right: -25px;
}

/* 独立左侧的地图标记图标 */
.ip-province-modal-icon {
    font-size: 60px;
    color: #ff6b6b;
    margin-right: 20px;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 107, 107, 0.1);
    border-radius: 50%;
    animation: locationPulse 2s infinite ease-in-out;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.2); /* 添加阴影增强立体感 */
}

/* 定位图标上下动态动画 */
@keyframes locationPulse {
    0% {
        transform: translateY(-5px);
        opacity: 0.8;
        box-shadow: 0 4px 12px rgba(255, 107, 107, 0.2);
    }
    50% {
        transform: translateY(5px);
        opacity: 1;
        box-shadow: 0 6px 16px rgba(255, 107, 107, 0.3);
    }
    100% {
        transform: translateY(-5px);
        opacity: 0.8;
        box-shadow: 0 4px 12px rgba(255, 107, 107, 0.2);
    }
}

/* 内容区域 */
.ip-province-modal-body {
    padding: 15px 30px; /* 缩小间隙 */
    background-color: #fafafa;
}

.ip-province-modal-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px; /* 缩小间隙 */
    padding: 12px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.ip-province-modal-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.ip-province-modal-item:last-child {
    margin-bottom: 0;
}

.ip-province-modal-item-icon {
    font-size: 24px;
    color: #ff6b6b;
    margin-right: 12px;
    flex-shrink: 0;
}

.ip-province-modal-item-text {
    font-size: 18px;
    color: #555;
    line-height: 1.5;
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* 段落按钮样式 */
.ip-province-modal-item-btn {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    display: inline-block;
    margin-left: 10px;
}

/* 模板下载按钮 - 蓝色 */
.ip-province-modal-item-btn-muban {
    background-color: #2196f3;
    box-shadow: 0 2px 8px rgba(33, 150, 243, 0.3);
}

.ip-province-modal-item-btn-muban:hover {
    background-color: #1976d2;
    box-shadow: 0 4px 12px rgba(33, 150, 243, 0.4);
    transform: translateY(-1px);
}

/* 成功案例按钮 - 绿色 */
.ip-province-modal-item-btn-anli {
    background-color: #4caf50;
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.3);
}

.ip-province-modal-item-btn-anli:hover {
    background-color: #388e3c;
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.4);
    transform: translateY(-1px);
}

/* 驳回案例按钮 - 橙色 */
.ip-province-modal-item-btn-bohui {
    background-color: #ff9800;
    box-shadow: 0 2px 8px rgba(255, 152, 0, 0.3);
}

.ip-province-modal-item-btn-bohui:hover {
    background-color: #f57c00;
    box-shadow: 0 4px 12px rgba(255, 152, 0, 0.4);
    transform: translateY(-1px);
}
    
/* 底部按钮 */
.ip-province-modal-footer {
    padding: 15px 30px; /* 缩小间隙 */
    background-color: #fff;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: center;
}

.ip-province-modal-btn {
    display: block;
    width: 100%;
    padding: 15px 0;
    margin: 0 auto;
    background-color: #ff6b6b;
    color: white;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    font-size: 18px;
    border-radius: 25px; /* 添加圆角效果 */
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3); /* 添加阴影 */
    position: relative;
    overflow: hidden;
    cursor: pointer;
    z-index: 1;
}

.ip-province-modal-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: -1;
}

.ip-province-modal-btn:hover::before {
    width: 300px;
    height: 300px;
}

.ip-province-modal-btn:hover {
    background-color: #ff5252;
    box-shadow: 0 6px 16px rgba(255, 107, 107, 0.4);
    transform: translateY(-2px);
}

.ip-province-modal-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(255, 107, 107, 0.3);
}

/* 标题栏动态背景颜色动画 */
@keyframes headerColorCycle {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* 手机版通知栏 */
.ip-province-mobile-notice {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    padding: 10px 15px;
    justify-content: space-between;
    align-items: center;
    z-index: 9999;
}

.ip-province-mobile-notice-content {
    display: flex;
    align-items: center;
    flex: 1;
    margin-right: 10px;
}

.ip-province-mobile-notice-icon {
    font-size: 18px;
    color: #ff6b6b;
    margin-right: 8px;
    flex-shrink: 0;
}

.ip-province-mobile-notice-text {
    font-size: 12px;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
}

.ip-province-mobile-notice-actions {
    display: flex;
    align-items: center;
}

.ip-province-mobile-notice-btn {
    padding: 6px 12px;
    background: #ff6b6b;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 12px;
    margin-right: 8px;
}

.ip-province-mobile-notice-close {
    font-size: 16px;
    color: #999;
    cursor: pointer;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .ip-province-modal-overlay {
        display: none;
    }
    
    .ip-province-mobile-notice {
        display: none;
    }
    
    /* 手机版隐藏段落按钮 */
    .ip-province-modal-item-btn {
        display: none;
    }
}

@media (min-width: 769px) {
    .ip-province-mobile-notice {
        display: none;
    }
}

/* 平板设备上的调整 */
@media (min-width: 769px) and (max-width: 1024px) {
    .ip-province-modal-container {
        width: 95%;
        max-width: none;
    }
    
    .ip-province-modal-header {
        padding: 12px 20px;
    }
    
    .ip-province-modal-title {
        font-size: 16px;
    }
    
    .ip-province-modal-icon {
        font-size: 40px;
        width: 60px;
        height: 60px;
    }
    
    .ip-province-modal-body {
        padding: 12px 20px;
    }
    
    .ip-province-modal-item {
        padding: 10px;
    }
    
    .ip-province-modal-btn {
        padding: 12px 0;
        font-size: 16px;
        width: 80%;
    }
}