@charset "utf-8";
/* CSS Document */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            background: #fff;
            color: #1e1e1e;
            line-height: 1.6;
            overflow-x: hidden;
            scroll-behavior: smooth;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        /* 导航栏 sticky */
        .navbar {
            position: sticky;
            top: 0;
            z-index: 100;
            background: #ffffff;
            box-shadow: 0 2px 12px rgba(0,0,0,0.04);
            padding: 0 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 68px;
        }
        .navbar .logo {
            font-weight: 600;
            font-size: 2.25rem;
            color:#1209b4;
            letter-spacing: 0.5px;
			margin-left:150px;
        }
        .navbar .logo span {
            color: #1e1e1e;
            font-weight: 400;
        }
        .nav-links {
            display: flex;
            gap: 28px;
            list-style: none;
            align-items: center;
			margin-right:100px;
			font-weight:bold;
        }
        .nav-links a {
            text-decoration: none;
            color: #2c2c2c;
            font-size: 1rem;
            transition: color 0.2s;
            padding: 8px 0;
        }
        .nav-links a:hover {
            color: #b45309;
        }
        .nav-toggle {
            display: none;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #b45309;
            user-select: none;
        }
        /* checkbox hack 移动端折叠 */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                background: #fff;
                position: absolute;
                top: 68px;
                left: 0;
                width: 100%;
                padding: 20px 30px 30px;
                box-shadow: 0 12px 20px rgba(0,0,0,0.05);
                gap: 18px;
                border-top: 1px solid #f0e4d5;
            }
            .nav-links a {
                font-size: 1.05rem;
                padding: 12px 0;
                min-height: 44px;
                display: flex;
                align-items: center;
            }
            .hamburger {
                display: block;
            }
            .nav-toggle:checked ~ .nav-links {
                display: flex;
            }
        }
        /* 按钮最小点击区域 44px */
        .btn, button, a.cta-btn, .faq-question, .back-to-top {
            min-height: 44px;
            min-width: 44px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }
        /* 通用标题 */
        h2 {
            font-size: 2rem;
            font-weight: 600;
            color: #1e1e1e;
            margin-bottom: 0.5rem;
            letter-spacing: -0.02em;
        }
        h2 .gold {
            color: #0a0096;
        }
        h3 {
            font-size: 1.3rem;
            font-weight: 500;
            color: #2c2c2c;
            margin-bottom: 0.5rem;
        }
        .section-subtitle {
            color: #FFF;
            font-size: 1rem;
            margin-bottom: 2.5rem;
            max-width: 600px;
        }
        .gold-bg-light {
            background: #7da4ed;
        }
        .card {
            background: #ffffff;
            border-radius: 12px;
            box-shadow: 0 4px 16px rgba(0,0,0,0.03);
            padding: 1.8rem 1.5rem;
            transition: all 0.2s;
            border: 1px solid #f1ede8;
        }
        .card:hover {
            box-shadow: 0 8px 28px rgba(180,83,9,0.08);
            border-color: #e6d6c0;
        }
        .grid-4 {
            display: grid;
            grid-template-columns: repeat(4,1fr);
            gap: 24px;
        }
        .grid-3 {
            display: grid;
            grid-template-columns: repeat(3,1fr);
            gap: 24px;
        }
        .grid-2 {
            display: grid;
            grid-template-columns: repeat(2,1fr);
            gap: 24px;
        }
        @media (max-width: 768px) {
            .grid-4, .grid-3, .grid-2 {
                grid-template-columns: 1fr;
            }
            h2 { font-size: 1.6rem; }
            .container { padding: 0 16px; }
        }
        @media (max-width: 480px) {
            h2 { font-size: 1.4rem; }
        }
        /* hero */
        .hero {
            padding: 80px 0 70px;
            background: linear-gradient(145deg, #c2d1e4 0%, #abb7d5 100%);
            position: relative;
            overflow: hidden;
        }
        .hero .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .hero-text {
            flex: 1 1 50%;
            min-width: 280px;
        }
        .hero h1 {
            font-size: 2.5rem;
            font-weight: 700;
            color:#190000;
            line-height: 1.25;
        }
        .hero h1 .highlight {
            color: #1209b4;
        }
        .hero p {
            font-size: 1.1rem;
            color: #4a4a4a;
            margin: 20px 0 30px;
            max-width: 500px;
        }
        .hero-cta {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }
        .btn-primary {
            background:#03C;
            color: #fff;
            padding: 12px 32px;
            border-radius: 40px;
            font-weight: 500;
            text-decoration: none;
            font-size: 1rem;
            border: none;
            cursor: pointer;
            transition: 0.2s;
            min-width: 44px;
        }
        .btn-primary:hover {
            background: #006;
            transform: translateY(-2px);
        }
        .btn-outline {
            background: transparent;
            color: #006;
            border: 1.5px solid #03C;
            padding: 12px 32px;
            border-radius: 40px;
            font-weight: 500;
            text-decoration: none;
            font-size: 1rem;
            transition: 0.2s;
        }
        .btn-outline:hover {
            background:#03c;
			color:#FFF;
        }
        .hero-visual {
            flex: 0 0 240px;
            height: 240px;
            position: relative;
        }
        .hero-svg {
            width: 100%;
            height: 100%;
        }
        /* 装饰svg */
        .deco-circle {
            display: inline-block;
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: radial-gradient(circle at 30% 30%, #fbbf24, #b45309);
            opacity: 0.25;
            position: absolute;
            top: -20px;
            right: -10px;
            z-index: 0;
        }
        .deco-triangle {
            width: 0;
            height: 0;
            border-left: 30px solid transparent;
            border-right: 30px solid transparent;
            border-bottom: 50px solid #fef3c7;
            position: absolute;
            bottom: 10px;
            left: -20px;
            opacity: 0.3;
        }
        /* 区块间距 */
        section {
            padding: 70px 0;
        }
        /* 数据展示 */
        .data-grid {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            gap: 30px;
            background: #fefcf9;
            border-radius: 20px;
            padding: 40px 20px;
        }
        .data-item {
            text-align: center;
        }
        .data-number {
            font-size: 2.8rem;
            font-weight: 700;
            color: #009;
        }
        .data-label {
            color: #03C;
            font-size: 1rem;
        }
        /* 流程 */
        .step-item {
            display: flex;
            gap: 20px;
            align-items: flex-start;
            margin-bottom: 30px;
        }
        .step-num {
            background:#009;
            color: white;
            border-radius: 50%;
            width: 44px;
            height: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            flex-shrink: 0;
        }
        /* FAQ */
        .faq-item {
            border-bottom: 1px solid #eee7df;
            padding: 18px 0;
        }
        .faq-question {
            font-weight: 500;
            font-size: 1.05rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: none;
            border: none;
            width: 100%;
            text-align: left;
            padding: 8px 0;
            color: #1e1e1e;
        }
        .faq-question::after {
            content: "+";
            font-size: 1.6rem;
            color: #b45309;
            transition: 0.2s;
        }
        .faq-answer {
            padding: 8px 0 12px;
            color: #4a4a4a;
            line-height: 1.7;
        }
        /* CTA */
        .cta-section {
            background: linear-gradient(135deg, #98c8f2, #a3d7f1);
            border-radius: 24px;
            padding: 50px 30px;
            text-align: center;
        }
        .cta-section h2 {
            font-size: 2rem;
        }
        .cta-section p {
            max-width: 500px;
            margin: 16px auto 28px;
            color: #3d3d3d;
        }
        /* footer */
        footer {
            background:#006;
            color: #cfcfcf;
            padding: 40px 0 20px;
        }
        footer a {
            color: #fbbf24;
            text-decoration: none;
        }
        footer .copyright {
            text-align: center;
            border-top: 1px solid #333;
            padding-top: 20px;
            margin-top: 30px;
            font-size: 0.9rem;
        }
        /* 返回顶部 */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: #03c;
            color: #fff;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            font-size: 1.6rem;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            z-index: 200;
            transition: 0.2s;
            border: none;
            cursor: pointer;
        }
        .back-to-top:hover {
            background:#0CF;
            transform: scale(1.05);
        }
        @media (max-width: 768px) {
            .back-to-top {
                bottom: 20px;
                right: 20px;
                width: 44px;
                height: 44px;
            }
        }
        /* 内联svg图形 */
        .svg-inline-icon {
            display: inline-block;
            width: 48px;
            height: 48px;
            margin-bottom: 12px;
        }
        .card-icon {
            color: #b45309;
        }
        .text-gold {
            color: #b45309;
        }
        .mt-2 { margin-top: 0.5rem; }
        .mb-2 { margin-bottom: 0.5rem; }
        .text-center { text-align: center; }
        .flex-center { display: flex; justify-content: center; align-items: center; }
        /* 移动端字体不小于14px */
        body, p, li, a, .faq-question, .btn, .data-label {
            font-size: 16px;
        }
        @media (max-width: 480px) {
            body { font-size: 15px; }
        }
        /* 防止横向滚动 */
        img, svg, video { max-width: 100%; height: auto; }
/*客服微信等弹窗*/
/* 弹窗 (背景层) */
.modal {
    display: none; /* 默认隐藏 */
    position: fixed; 
    z-index: 100; 
    padding-top: 80px; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    overflow: auto; 
    background-color: rgb(0,0,0); 
    background-color: rgba(0,0,0,0.1);
}
.modal H2{text-align:center;color:white;}
.modal H3{text-align:center;color:white;}

/* 弹窗内容 */
.modal-content {
  border-radius: 10px 10px 10px 10px;
    position: relative;
    background-color: #fefefe;
    margin: auto;
    padding: 0;
    border: 1px solid #888;
    width: 400px;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
    -webkit-animation-name: animatetop;
    -webkit-animation-duration: 0.4s;
    animation-name: animatetop;
    animation-duration: 0.4s;
}
/* 关闭按钮 */
.close {
    color: white;
    float: right;
    font-size: 28px;
    font-weight: bold;
}
.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.modal-header {
    padding: 10px 16px;
    background-color: #5cb85c;
    color: white;
   border-radius: 10px 10px 0px 0px;
}
.modal-body {
   margin-top:25px;
    padding: 2px 16px;
   text-align: center;
  font-size:18px;
  font-weight:bold;
 
}
.modal-footer {
    padding: 2px 16px;
    background-color: #5cb85c;
    color: white;
   border-radius: 0px 0px 10px 10px;
   margin-top:30px;
}
