/* 行业GEO */
            .geo-industry-section {
                background: #e6f2ff;
                padding: 30px 20px 40px;
            }
            .geo-industry-wrap {
                max-width: 1260px;
                margin: 0 auto;
            }
            .geo-tab-nav {
                display: flex;
                flex-wrap: wrap;
                gap: 10px;
                margin-bottom: 24px;
            }
            .geo-tab-nav button {
                border: 1px solid #cfe4ff;
                background: #f4faff;
                color: #0f3c83;
                border-radius: 999px;
                padding: 10px 18px;
                font-size: 14px;
                cursor: pointer;
                transition: all .25s ease;
            }
            .geo-tab-nav button.active,
            .geo-tab-nav button:hover {
                background: #00ADAA;
                border-color: #00ADAA;
                color: #ffffff;
            }
            .geo-card-list-wrap {
                display: flex;
                flex-wrap: nowrap;
                gap: 20px;
                overflow-x: auto;
                padding-bottom: 10px;
            }
            .geo-card {
                display: none;
                flex: 0 0 100%;
                min-width: 100%;
                background: #ffffff;
                border-radius: 24px;
                overflow: hidden;
                box-shadow: 0 18px 40px rgba(22, 119, 255, 0.08);
                border: 1px solid rgba(22, 119, 255, 0.08);
                position: relative;
                align-items: stretch;
            }
            .geo-card.active {
                display: flex;
            }
            .geo-card-content {
                flex: 1 1 320px;
                padding: 28px 28px 28px 28px;
                display: flex;
                flex-direction: column;
                justify-content: space-between;
            }
            .geo-card-tag {
                display: inline-block;
                background: #d9ecff;
                color: #0f4fa5;
                font-size: 13px;
                padding: 6px 12px;
                border-radius: 999px;
                margin-bottom: 14px;
            }
            .geo-card-title {
                font-size: 22px;
                line-height: 1.25;
                color: #08192d;
                margin-bottom: 14px;
                font-weight: 700;
            }
            .geo-card-copy {
                color: #4d5d78;
                font-size: 15px;
                line-height: 1.8;
                margin-bottom: 18px;
            }
            .geo-card-list {
                list-style: none;
                padding: 0;
                margin: 0 0 22px 0;
                display: grid;
                gap: 10px;
            }
            .geo-card-list li {
                font-size: 14px;
                color: #0f3c83;
                line-height: 1.65;
                padding-left: 24px;
                position: relative;
            }
            .geo-card-list li::before {
                content: "✅";
                position: absolute;
                left: 0;
                top: 2px;
                font-size: 14px;
            }
            .geo-card-btn {
                display: inline-flex;
                align-items: center;
                justify-content: center;
                border-radius: 999px;
                background: #00ADAA;
                color: #ffffff;
                padding: 12px 20px;
                text-decoration: none;
                font-size: 14px;
                font-weight: 600;
                transition: background .25s ease, transform .25s ease;
            }
            .geo-card-btn:hover {
                background: #145fd8;
                transform: translateY(-1px);
            }
            .geo-card-media {
                position: relative;
                min-width: 280px;
                width: 62%;
                overflow: hidden;
                display: flex;
                align-items: center;
                justify-content: center;
                background: #f2f8ff;
            }
            .geo-card-media img {
                width: 100%;
                height: auto;
                display: block;
                object-fit: cover;
            }
            .geo-card-badge {
                position: absolute;
                top: 18px;
                right: 18px;
                background: rgba(255,255,255,0.95);
                border-radius: 18px;
                padding: 14px 16px;
                box-shadow: 0 12px 30px rgba(14, 52, 102, 0.12);
                max-width: 200px;
                width: calc(100% - 36px);
            }
            .geo-card-badge .badge-title {
                font-size: 12px;
                color: #4d5d78;
                margin-bottom: 10px;
            }
            .geo-card-badge .badge-graph {
                display: grid;
                grid-template-columns: repeat(5, 1fr);
                gap: 4px;
                align-items: end;
                margin-bottom: 10px;
            }
            .geo-card-badge .badge-graph span {
                display: block;
                width: 100%;
                background: linear-gradient(180deg, #ffb477 0%, #ff7d29 100%);
                border-radius: 999px 999px 0 0;
                min-height: 16px;
            }
            .geo-card-badge .badge-trend {
                font-size: 13px;
                font-weight: 600;
                color: #0f3c83;
                white-space: nowrap;
            }
            @media (max-width: 980px) {
                .geo-card {
                    flex-direction: column;
                }
                .geo-card-media {
                    width: 100%;
                    min-width: auto;
                    height: 240px;
                }
                .geo-card-media img {
                    height: 100%;
                }
                .geo-card-badge {
                    top: 16px;
                    right: 16px;
                    width: auto;
                }
            }
            @media (max-width: 640px) {
                .geo-card-content {
                    padding: 20px;
                }
                .geo-tab-nav {
                    justify-content: center;
                }
                .geo-card {
                    min-width: 100%;
                }
            }


/* FAQ常见问答 */


        .faq-block {
            background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
            border: 1px solid rgba(0, 141, 168, 0.12);
            border-radius: 22px;
            box-shadow: 0 20px 60px rgba(0, 85, 141, 0.08);
            padding: 38px 30px;
            margin: 40px auto;
            max-width: 1100px;
            color: #0f3055;
            font-family: "Helvetica Neue", Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
        }
        .faq-block h2 {
            font-size: 32px;
            line-height: 1.2;
            margin-bottom: 18px;
            color: #0f3c83;
            letter-spacing: 0.03em;
        }
        .faq-block p {
            font-size: 15px;
            line-height: 1.8;
            color: #3a4a67;
            max-width: 900px;
            margin-bottom: 30px;
        }
        .faq-block dl {
            margin: 0;
            padding: 0;
            list-style: none;
        }
        .faq-block dt {
            position: relative;
            cursor: pointer;
            padding: 18px 24px;
            margin-bottom: 8px;
            border-radius: 16px;
            background: #ffffff;
            border: 1px solid rgba(15, 60, 131, 0.08);
            box-shadow: 0 10px 20px rgba(15, 60, 131, 0.04);
            font-size: 17px;
            color: #0f3c83;
            transition: background .25s ease, transform .25s ease, border-color .25s ease;
        }
        .faq-block dt:hover {
            background: #eef6ff;
            transform: translateY(-1px);
        }
        .faq-block dt::after {
            content: "+";
            position: absolute;
            right: 22px;
            top: 50%;
            transform: translateY(-50%);
            width: 24px;
            height: 24px;
            line-height: 24px;
            text-align: center;
            border-radius: 50%;
            background: #00adad;
            color: #fff;
            font-weight: 700;
        }
        .faq-block dt.open::after {
            content: "–";
            background: #145fd8;
        }
        .faq-block dd {
            margin: 0 0 18px;
            padding: 18px 24px;
            background: #f2f9ff;
            border-left: 4px solid #00adad;
            border-radius: 0 0 16px 16px;
            color: #3a4a67;
            line-height: 1.9;
            display: none;
            font-size: 15px;
        }
        .faq-block dt.open + dd {
            display: block;
        }
        @media (max-width: 900px) {
            .faq-block {
                padding: 28px 18px;
            }
            .faq-block h2 {
                font-size: 28px;
            }
            .faq-block dt,
            .faq-block dd {
                padding: 16px 18px;
            }
        }
