@charset "utf-8";

        /* 自定义53客服样式 */
        #icon_menu_module {
            border-radius:8px;
        }
        #_53dk_center__53dk__centerBox {
            transform:none!important;
            will-change:unset!important;
        }

        /* ===== 全局样式 ===== */
        html {
            scroll-behavior: auto !important;
        }
        body {
            font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
            background-color: #f8fafc;
            color: #1e293b;
            line-height: 1.6;
        }
        h1, h2, h3, h4, h5, h6 {
            color: #0f172a;
            font-weight: 700;
            letter-spacing: -0.01em;
        }
        a {
            color: #2563eb;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #1d4ed8;
        }
        /* 导航栏 */
        .navbar {
            background: rgba(255,255,255,0.98) !important;
            backdrop-filter: blur(10px);
            box-shadow: 0 1px 3px rgba(0,0,0,0.05);
            padding: 0.75rem 0;
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.7rem;
            background: linear-gradient(135deg, #1e3c72, #2a5298);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        .nav-link {
            color: #334155 !important;
            font-weight: 500;
        }
        .nav-link:hover, .nav-link.active {
            color: #2563eb !important;
        }
        .navbar-toggler {
            border: 1px solid #cbd5e1;
            background: white;
        }
        .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(0,0,0,0.7)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        @media (max-width: 991.98px) {
            .navbar-collapse {
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: white;
                box-shadow: 0 10px 20px rgba(0,0,0,0.1);
                padding: 1rem;
                z-index: 1050;
            }
        }
        /* 按钮样式 */
        .btn-primary-custom {
            background: linear-gradient(95deg, #2563eb 0%, #3b82f6 100%);
            border: none;
            padding: 12px 32px;
            border-radius: 48px;
            font-weight: 600;
            color: white;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(37,99,235,0.3);
            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.3), transparent);
            transition: left 0.5s;
        }
        .btn-primary-custom:hover::before {
            left: 100%;
        }
        .btn-primary-custom:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(37,99,235,0.4);
            background: linear-gradient(95deg, #1d4ed8 0%, #2563eb 100%);
            color: white;
        }
        .btn-outline-custom {
            border: 1px solid #2563eb;
            background: transparent;
            color: #2563eb;
            border-radius: 48px;
            padding: 12px 32px;
            font-weight: 600;
            transition: all 0.2s;
        }
        .btn-outline-custom:hover {
            background: #eff6ff;
            color: #1d4ed8;
        }
        /* 明亮 Hero 区 - 无网格背景 */
        .hero-section {
            position: relative;
            background: linear-gradient(135deg, #f0f9ff 0%, #e6f0fa 100%);
            padding: 100px 0 80px;
            overflow: hidden;
        }
        /* 移除网格线伪元素 */
        .hero-section::before {
            display: none;
        }
        /* 光晕动画保留 */
        .hero-section::after {
            content: "";
            position: absolute;
            top: -30%;
            right: -10%;
            width: 80%;
            height: 150%;
            background: radial-gradient(circle, rgba(59,130,246,0.12) 0%, rgba(59,130,246,0) 70%);
            border-radius: 50%;
            pointer-events: none;
            animation: glowPulse 8s ease-in-out infinite;
        }
        @keyframes glowPulse {
            0%,100% { opacity:0.6; transform:scale(1); }
            50% { opacity:0.9; transform:scale(1.05); }
        }
        .hero-particle {
            position: absolute;
            background: rgba(59,130,246,0.2);
            border-radius: 50%;
            filter: blur(3px);
            pointer-events: none;
            animation: floatParticle linear infinite;
        }
        @keyframes floatParticle {
            0% { transform: translateY(100vh) translateX(0) scale(0); opacity:0; }
            10% { opacity:0.6; }
            90% { opacity:0.6; }
            100% { transform: translateY(-20vh) translateX(20px) scale(1); opacity:0; }
        }
        .hero-section .container { position:relative; z-index:2; }
        .hero-badge {
            display: inline-block;
            background: rgba(37,99,235,0.1);
            color: #1e40af;
            padding: 6px 18px;
            border-radius: 40px;
            font-size:0.85rem;
            font-weight:600;
            margin-bottom:1.5rem;
            border:1px solid rgba(37,99,235,0.3);
            animation: badgePulse 2s infinite;
        }
        @keyframes badgePulse {
            0%,100% { box-shadow:0 0 0 0 rgba(37,99,235,0.2); }
            50% { box-shadow:0 0 0 6px rgba(37,99,235,0); }
        }
        .hero-title {
            font-size:3rem;
            font-weight:800;
            line-height:1.2;
            margin-bottom:1.5rem;
            background: linear-gradient(135deg, #0f172a, #2563eb);
            -webkit-background-clip:text;
            background-clip:text;
            color:transparent;
            animation:textShine 3s ease infinite;
            background-size:200% auto;
        }
        @keyframes textShine {
            0% { background-position:0% center; }
            50% { background-position:100% center; }
            100% { background-position:0% center; }
        }
        .hero-subtitle {
            font-size:1.15rem;
            color:#334155;
            margin-bottom:2rem;
            max-width:90%;
        }
        .trust-badge {
            display:flex;
            gap:1.8rem;
            margin-top:2rem;
            font-size:0.9rem;
            color:#475569;
            flex-wrap:wrap;
        }
        .trust-badge span i { color:#3b82f6; margin-right:8px; }
        .hero-image-card {
            background: white;
            border-radius:32px;
            padding:1rem;
            border:1px solid #e2e8f0;
            box-shadow:0 20px 35px -12px rgba(0,0,0,0.08);
            transition: none;
            animation: floatCard 4s ease-in-out infinite;
        }
        @keyframes floatCard {
            0%,100% { transform:translateY(0); }
            50% { transform:translateY(-10px); }
        }
        .hero-image-card:hover {
            transform: none;
            border-color: #cbd5e1;
            box-shadow: 0 20px 35px -12px rgba(0,0,0,0.1);
        }
        .hero-image-card img { 
            width:100%; 
            border-radius:24px; 
            display: block;
            loading: eager;
        }
        .image-caption { text-align:center; margin-top:12px; font-size:0.8rem; color:#64748b; }
        .btn-primary-custom { animation: btnPulse 2s infinite; }
        @keyframes btnPulse {
            0%,100% { box-shadow:0 4px 12px rgba(37,99,235,0.3); }
            50% { box-shadow:0 4px 20px rgba(37,99,235,0.6); }
        }
        @media (max-width:768px) {
            .hero-section { padding:60px 0 50px; }
            .hero-title { font-size:2.2rem; }
            .hero-subtitle { font-size:1rem; max-width:100%; }
            .trust-badge { gap:1rem; font-size:0.75rem; }
            .hero-image-card { margin-top:2rem; animation:none; }
            .hero-particle { display:none; }
        }
        /* 其余模块样式保持不变 */
        .service-card, .price-card, .faq-card, .compare-card, .advantage-card, .steps-card, .news-card {
            border-radius: 28px;
            background: white;
            border: 1px solid #eef2ff;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .service-card:hover, .advantage-card:hover, .news-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 30px -12px rgba(0,0,0,0.08);
        }
        .step-icon {
            font-size: 2.2rem;
            background: #eef2ff;
            width: 80px;
            height: 80px;
            line-height: 80px;
            text-align: center;
            border-radius: 60px;
            margin-bottom: 1.2rem;
            color: #2563eb;
        }
        .price-card.popular {
            border: 2px solid #2563eb;
            position: relative;
        }
        .popular-badge {
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: #2563eb;
            color: white;
            padding: 5px 18px;
            border-radius: 40px;
            font-size: 0.8rem;
            font-weight: 600;
        }
        .price {
            font-size: 2.5rem;
            font-weight: 800;
            color: #0f172a;
        }
        .comparison-table {
            overflow-x: auto;
        }
        .comparison-table table {
            width: 100%;
            border-collapse: collapse;
            background: white;
            border-radius: 24px;
            overflow: hidden;
        }
        .comparison-table th, .comparison-table td {
            padding: 1rem;
            text-align: center;
            border-bottom: 1px solid #e2e8f0;
        }
        .comparison-table th {
            background: #f1f5f9;
            font-weight: 700;
            color: #0f172a;
        }
        .comparison-table tr:last-child td {
            border-bottom: none;
        }
        .feature-check {
            color: #10b981;
            font-size: 1.2rem;
        }
        .feature-close {
            color: #ef4444;
            font-size: 1.2rem;
        }
        .advantage-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
        }
        .advantage-card {
            padding: 1.5rem;
            text-align: center;
        }
        .advantage-icon {
            font-size: 2.5rem;
            color: #2563eb;
            margin-bottom: 1rem;
        }
        .news-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.5rem;
        }
        .news-card {
            padding: 1.5rem;
        }
        .news-date {
            font-size: 0.8rem;
            color: #64748b;
            margin-bottom: 0.5rem;
        }
        .news-title {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
        }
        .news-title a {
            color: #0f172a;
        }
        .news-title a:hover {
            color: #2563eb;
        }
        .news-summary {
            color: #475569;
            margin-bottom: 1rem;
        }
        .news-more {
            font-size: 0.85rem;
            font-weight: 500;
        }
        .news-item h5 a:hover {
            color: #2563eb !important;
        }
        @media (max-width: 768px) {
            .news-item .d-flex {
                flex-direction: column;
                align-items: flex-start !important;
            }
            .news-item span {
                margin-top: 4px;
            }
        }
        /* 最新资讯区域样式 */
        .news-image-wrapper {
            border-radius: 1rem;
            overflow: hidden;
            background-color: #f8fafc;
            box-shadow: 0 1px 3px rgba(0,0,0,0.05);
        }
        .news-image {
            width: 100%;
            height: 260px;
            object-fit: cover;
            display: block;
        }
        .news-list {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .news-item {
            border-bottom: 1px solid #edf2f7;
            padding-bottom: 0.75rem;
        }
        .news-item-header {
            display: flex;
            flex-wrap: wrap;
            align-items: baseline;
            justify-content: space-between;
            margin-bottom: 0.25rem;
        }
        .news-title {
            font-size: 1rem;
            font-weight: 500;
            margin-bottom: 0;
        }
        .news-title a {
            color: #0f172a;
            text-decoration: none;
            transition: color 0.2s;
        }
        .news-title a:hover {
            color: #2563eb;
        }
        .news-date {
            font-size: 0.7rem;
            color: #94a3b8;
        }
        .news-summary {
            font-size: 0.8rem;
            color: #475569;
            line-height: 1.4;
            margin-bottom: 0;
        }
        .btn-more {
            display: inline-block;
            border: 1px solid #cbd5e1;
            background: transparent;
            color: #475569;
            border-radius: 2rem;
            padding: 0.35rem 1.2rem;
            font-size: 0.8rem;
            font-weight: 500;
            text-decoration: none;
            transition: all 0.2s;
        }
        .btn-more:hover {
            background: #f1f5f9;
            border-color: #94a3b8;
            color: #1e293b;
        }
        @media (max-width: 768px) {
            .news-image {
                height: 200px;
            }
            .news-item-header {
                flex-direction: column;
                align-items: flex-start;
            }
            .news-date {
                margin-top: 0.2rem;
            }
        }
        .faq-question {
            cursor: pointer;
            font-weight: 700;
            padding: 1rem 0;
            border-bottom: 1px solid #e2e8f0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: #0f172a;
        }
        .faq-answer {
            padding: 0.75rem 0 1.5rem 0;
            display: none;
            color: #475569;
        }
        .faq-answer.show { display: block; }
        footer {
            background: #0f172a;
            color: #94a3b8;
        }
        footer a { color: #cbd5e1; }
        footer a:hover { color: white; }
        .text-muted-custom { color: #475569 !important; }
        /* CTA 区域样式 */
        .cta-section {
            text-align: center;
        }
        .cta-title {
            font-size: 2rem;
            font-weight: 800;
            color: #0f172a;
            margin-bottom: 1rem;
        }
        .cta-subtitle {
            font-size: 1.1rem;
            color: #475569;
            margin-bottom: 2rem;
        }
        @media (max-width: 768px) {
            .cta-title {
                font-size: 1.5rem;
            }
            .cta-subtitle {
                font-size: 1rem;
            }
        }
 
 /* ===== 移动端修复横向滚动条（仅移动端生效） ===== */
@media (max-width: 768px) {
    html, body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100%;
    }
    .container, .container-fluid, .row, [class*="col-"] {
        max-width: 100%;
        overflow-x: hidden;
    }
    .comparison-table {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        max-width: 100%;
    }
    img, .hero-image-card, .news-image-wrapper {
        max-width: 100%;
        height: auto;
    }
    .navbar-collapse {
        width: 100%;
        left: 0;
        right: 0;
        margin: 0;
    }
    .row {
        margin-left: 0;
        margin-right: 0;
    }
    .col-md-5, .col-md-7, .col-lg-5, .col-lg-7 {
        padding-left: 15px;
        padding-right: 15px;
    }
}