/* 全局变量缺失补充（必须放最顶部） */
:root {
    --dark-black: rgb(68,84,106);
    /* 品牌主金色 */
    --gold-main: #B89C68;
    --gold-light: #f2b749;
    /* 基础黑白灰 */
    --color-white: #ffffff;
    --color-white-088: rgba(255,255,255,0.88);
    --color-white-05: rgba(255,255,255,0.5);
    --color-white-025: rgba(255,255,255,0.25);
    --color-black-065: rgba(0,0,0,0.65);
    --color-black-035: rgba(0,0,0,0.35);
    --color-black-015: rgba(0,0,0,0.15);
    --color-gray-bg1: #2e2e2e;
    --color-gray-bg2: #F8F8F8;
    --color-gray-bg3: #F5F3F0;
    --color-gray-bg4: #ededed;
    --color-gray-line1: #ccc;
    --color-gray-line2: #e2e2e2;
    --color-gray-line3: #eee;
    --color-gray-input-bg: #f1f1f1;
    --color-gray-input-border: #444;
    /* 表单深色背景 */
    --form-dark-bg-08: rgba(68, 84, 106,0.95);
    /* 渐变透明金色 */
    --gold-trans-018: rgba(184,156,104,0.18);
    --gold-trans-016: rgba(184,156,104,0.16);
    --gold-trans-015: rgba(184,156,104,0.15);
    --gold-trans-012: rgba(184,156,104,0.12);
    --gold-shadow-013: rgba(184, 156, 104, 0.13);
    --gold-shadow-012: rgba(184, 156, 104, 0.12);
    --gold-shadow-008: rgba(184, 156, 104, 0.08);
    --gold-shadow-015-spread: rgba(184, 156, 104, 0.15);
    --shadow-black-006: rgba(0,0,0,0.06);
    --mask-black-07: rgba(0,0,0,0.7);
}

/* ==================首页主体内容部分样式================== */

/* ==============================轮播图样式 ===========================*/

/* ====================== 轮播外层容器 ====================== */
.banner-main {
    width: 100%;
    height: 88vh;
    min-height: 480px;
    position: relative;
    overflow: hidden;
    background: var(--color-gray-bg1);
}
/* ====================== 全局视频（默认显示） ====================== */
.banner-global-video {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover !important;
    z-index: 0;
    display: block;
    border: none;
}

/* ====================== 全局固定遮罩 ====================== */
.banner-mask {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(90deg, var(--color-black-065) 0%, var(--color-black-035) 60%, var(--color-black-015) 100%);
    z-index: 1;
    pointer-events: none;
}

/* ====================== 轮播内容 ====================== */
.banner-wrap {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 10; /* 重点：整个轮播内容提到顶层 */
}

/* ====================== 轮播项 ====================== */
.banner-item {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    transition: opacity 0.8s ease;
    z-index: 5;
}
.banner-item.active {
    opacity: 1;
    z-index: 6;
}

/* ====================== 轮播背景图 ====================== */
.banner-bg {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: -1;
    display: none;
}
.banner-main.show-images .banner-bg {
    display: block;
}
.banner-main.show-video .banner-bg {
    display: none;
}

.banner-bg-team {
    background-image: url("/static/images/banner1.jpg");
}
.banner-bg-tea {
    background-image: url("/static/images/banner2.jpg");
}
.banner-bg-saas {
    background-image: url("/static/images/banner3.jpg");
}

/* ====================== 文字内容 强制顶层显示 ====================== */
.banner-content {
    width: 90%;
    max-width: 1260px;
    position: absolute;
    left: 8%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999 !important; /* 强制最高层级 */
    color: var(--color-white) !important;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}
.banner-title {
    font-size: clamp(24px,4vw,36px);
    font-weight: 500;
    line-height: 1.32;
    margin: 0 0 22px;
    letter-spacing: 1px;
    color: var(--color-white) !important;
    display: block !important;
}
.banner-sub {
    font-size: clamp(16px,2vw,20px);
    opacity: 0.88;
    margin: 0 0 40px;
    line-height: 1.7;
    color: var(--color-white-088) !important;
    display: block !important;
}

/* ====================== 按钮组 强制显示 ====================== */
.banner-btns {
    display: flex !important;
    gap: 24px;
    flex-wrap: wrap;
    z-index: 9999 !important;
    opacity: 1 !important;
    visibility: visible !important;
}
.banner-btn {
    display: inline-block !important;
    padding: 16px 36px;
    font-size: 16px;
    border-radius: 999px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: var(--color-white) !important;
    opacity: 1 !important;
    visibility: visible !important;
}
.banner-btn-primary {
    border: 1px solid var(--color-white);
    background: var(--gold-main);
}
.banner-btn-primary:hover {
    background: var(--gold-light);
}
.banner-btn-outline {
    border: 1px solid var(--color-white);
    background: var(--gold-main);
}
.banner-btn-outline:hover {
    background: var(--gold-light);
}

/* ====================== 进度指示器 ====================== */
.banner-indicator {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 48px;
    display: flex;
    gap: 14px;
    z-index: 999;
}
.banner-progress-item {
    width: 60px;
    height: 4px;
    background: var(--color-white-025);
    overflow: hidden;
    cursor: pointer;
    border-radius: 2px;
}
.banner-progress-bar {
    display: block;
    width: 0;
    height: 100%;
    background: var(--gold-main);
    transition: width 0.4s ease;
}
.banner-progress-item.active .banner-progress-bar {
    width: 100%;
}

/* ====================== 左右箭头 ====================== */
.banner-arrow {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid var(--color-white-05);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 999;
    transition: all 0.3s ease;
}
.banner-arrow::after {
    content: "";
    width: 12px;
    height: 12px;
    border-top: 1px solid var(--color-white);
    border-right: 1px solid var(--color-white);
    position: absolute;
    left: 50%;
    top: 50%;
}
.banner-prev {
    left: 4%;
}
.banner-prev::after {
    transform: translate(-30%,-50%) rotate(-135deg);
}
.banner-next {
    right: 4%;
}
.banner-next::after {
    transform: translate(-70%,-50%) rotate(45deg);
}

/* ====================== 移动端适配 ====================== */
@media screen and (max-width:768px) {
    .banner-content {left: 5% !important;}
    .banner-arrow {display: none;}
    .banner-indicator {bottom: 32px;}
    .banner-main {height: 75vh;}
}

/* ==================== 公共全局动画与入场 ==================== */
/* 所有板块统一入场动画，删除重复transform/opacity定义 */
.section-pain,
.hol-section-holistic,
.hol-section-process,
.hol-section-case4 {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    will-change: opacity, transform;
}
.section-pain.active,
.hol-section-holistic.active,
.hol-section-process.active,
.hol-section-case4.active {
    opacity: 1;
    transform: translateY(0);
}

/* 统一关键帧，无重复定义 */
@keyframes fadeUp {
    0% { opacity: 0; transform: translateY(16px); }
    100% { opacity: 1; transform: translateY(0); }
}
@keyframes goldBreath {
    0%, 100% { opacity: 0.7; width: 60px; }
    50% { opacity: 1; width: 80px; }
}
@keyframes textSlightScale {
    0%,100% { transform: scale(1); }
    50% { transform: scale(1.015); }
}
@keyframes goldShine {
    0% { transform: skewX(-20deg) translateX(-120%); }
    100% { transform: skewX(-20deg) translateX(220%); }
}

/* ====================== 首页板块-品牌视觉痛点 ====================== */
.section-pain * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.section-pain {
    padding: 80px 0;
    background: var(--color-white);
}
.container {
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 20px;
}
.section-head {
    text-align: center;
    margin-bottom: 80px;
}
.section-main-title {
    font-size: 28px;
    color: var(--dark-black);
    font-weight: 500;
    letter-spacing: 2px;
    position: relative;
}
.section-main-title::after {
    content: "";
    width: 60px;
    height: 3px;
    background: var(--gold-main);
    display: block;
    margin: 20px auto 0;
    animation: goldBreath 3s infinite ease-in-out;
}
.pain-sub-title {
    font-size: 20px;
    color: var(--dark-black);
    font-weight: 500;
    margin-bottom: 30px;
    opacity: 0;
}
.section-pain.active .pain-sub-title {
    animation: fadeUp 0.6s ease forwards 0.2s;
}
.block-center-title {
    text-align: center;
}
.pain-block--split {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 100px;
}
.pain-img-box {
    flex: 1;
    overflow: hidden;
    border-radius: 6px;
}
.pain-img-box img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}
.pain-img-box img:hover {
    transform: scale(1.03);
}
.pain-text-box {
    flex: 1;
}
.pain-desc {
    font-size: 14px;
    line-height: 1.9;
    color: var(--dark-black);
    opacity: 0;
}
.section-pain.active .pain-desc {
    animation: fadeUp 0.6s ease forwards 0.35s;
}

/* 短板卡片 */
.defect-card {
    flex: 1;
    padding: 40px 30px;
    background: var(--color-gray-bg2);
    border-top: 3px solid var(--gold-main);
    border-radius: 4px;
    transition: all 0.3s ease;
    transform: translateY(0);
    position: relative;
    overflow: hidden;
}
.defect-card::before {
    content: '';
    position: absolute;
    inset: 0;
    width: 50%;
    background: linear-gradient(90deg, transparent, var(--gold-trans-018), transparent);
    animation: goldShine 4s infinite ease-in-out;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}
.defect-card:hover::before { opacity: 1; }
.defect-card:hover {
    background: var(--color-gray-bg3);
    box-shadow: 0 8px 24px var(--gold-shadow-012);
    transform: translateY(-6px);
}
.defect-card-title {
    font-size: 18px;
    color: var(--dark-black);
    margin-bottom: 16px;
    opacity: 0;
}
.section-pain.active .defect-card-title {
    animation: fadeUp 0.6s ease forwards 0.15s;
}
.defect-card-text {
    font-size: 14px;
    line-height: 1.8;
    color: var(--dark-black);
    opacity: 0;
}
.section-pain.active .defect-card-text {
    animation: fadeUp 0.6s ease forwards 0.3s;
}
.pain-block--defect { margin-bottom: 100px; }
.defect-list { display: flex; gap: 30px; }
.pain-block--quote { margin-bottom: 20px; }
.quote-list { display: flex; gap: 30px; }

/* 语录卡片 */
.quote-card {
    flex: 1;
    padding: 35px 28px;
    background: var(--color-gray-bg3);
    border-left: 3px solid var(--gold-main);
    border-radius: 0 4px 4px 0;
    transition: all 0.3s ease;
    transform: translateX(0);
    position: relative;
    overflow: hidden;
}
.quote-card::before {
    content: '';
    position: absolute;
    inset: 0;
    width: 50%;
    background: linear-gradient(90deg, transparent, var(--gold-trans-015), transparent);
    animation: goldShine 5s infinite ease-in-out;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}
.quote-card:hover::before { opacity: 1; }
.quote-card:hover {
    transform: translateX(6px);
    box-shadow: 0 4px 18px var(--gold-shadow-008);
}
.quote-text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--dark-black);
    font-style: italic;
    margin-bottom: 14px;
    opacity: 0;
}
.section-pain.active .quote-text {
    animation: fadeUp 0.6s ease forwards 0.2s;
}
.quote-user {
    font-size: 13px;
    color: var(--dark-black);
    opacity: 0;
}
.section-pain.active .quote-user {
    animation: fadeUp 0.6s ease forwards 0.35s;
}

/* 补齐缺失动画关键帧 */
@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes goldBreath {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}
@keyframes goldShine {
    0% {
        transform: translateX(-100%);
    }
    50% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* 痛点板块移动端 */
@media screen and (max-width: 768px) {
    .section-pain { padding: 60px 0; }
    .pain-block--split { flex-direction: column; gap: 30px; }
    .defect-list, .quote-list { flex-direction: column; }
    .pain-sub-title { font-size: 22px; }
}
/*====================== 品牌视觉痛点 结束 ====================== */

/* ===================== 我们的思考 品牌资产闭环 ====================== */
.hol-section-holistic * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Microsoft YaHei", system-ui, sans-serif;
}
.hol-section-holistic {
    padding: 80px 0;
    background-color: var(--color-white);
    border-top: 1px solid var(--color-gray-line1);
}
.hol-container {
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 20px;
}
.hol-head {
    text-align: center;
    margin-bottom: 70px;
}
.hol-main-title {
    font-size: 28px;
    font-weight: 500;
    color: var(--dark-black);
    letter-spacing: 1px;
    opacity: 0;
}
.hol-section-holistic.active .hol-main-title {
    animation: fadeUp 0.6s ease forwards;
}
.hol-sub-title {
    font-size: 18px;
    color: var(--dark-black);
    margin-top: 12px;
    opacity: 0;
}
.hol-section-holistic.active .hol-sub-title {
    animation: fadeUp 0.6s ease forwards 0.2s;
}
.hol-gold-divider {
    width: 60px;
    height: 3px;
    background: var(--gold-main);
    margin: 24px auto 0;
    animation: goldBreath 3s infinite ease-in-out;
}
.hol-wrap {
    display: flex;
    align-items: flex-start;
    gap: 70px;
    margin-bottom: 60px;
}
.hol-img-block {
    flex: 1.1;
    overflow: hidden;
    border-radius: 6px;
    line-height: 0;
}
.hol-img-block img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
    will-change: transform;
}
.hol-img-block img:hover { transform: scale(1.03); }
.hol-text-block {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top:50px;
}
.hol-mini-title {
    font-size: 18px;
    color: var(--dark-black);
    margin-bottom: 12px;
    padding-left: 10px;
    border-left: 3px solid var(--gold-main);
    transition: all 0.3s;
    opacity: 0;
}
.hol-section-holistic.active .hol-mini-title {
    animation: fadeUp 0.6s ease forwards 0.15s;
}
.hol-mini-title:hover {
    border-left-width: 6px;
    padding-left: 14px;
}
.hol-desc {
    font-size: 15px;
    line-height: 1.9;
    color: var(--dark-black);
    opacity: 0;
}
.hol-section-holistic.active .hol-desc {
    animation: fadeUp 0.6s ease forwards 0.3s;
}
.hol-card-list {
    display: flex;
    gap: 32px;
    margin-bottom: 70px;
}
.hol-card {
    flex: 1;
    padding: 42px 34px;
    background: var(--color-white);
    border-top: 3px solid var(--gold-main);
    border-radius: 4px;
    transition: all 0.3s ease;
    transform: translateY(0);
    position: relative;
    overflow: hidden;
}
.hol-card::before {
    content: '';
    position: absolute;
    inset: 0;
    width: 50%;
    background: linear-gradient(90deg, transparent, var(--gold-trans-016), transparent);
    animation: goldShine 4.5s infinite ease-in-out;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}
.hol-card:hover::before { opacity: 1; }
.hol-card:hover {
    box-shadow: 0 10px 30px var(--gold-shadow-013);
    transform: translateY(-6px);
}
.hol-card-title {
    font-size: 18px;
    color: var(--dark-black);
    margin-bottom: 18px;
    font-weight: 500;
    opacity: 0;
}
.hol-section-holistic.active .hol-card-title {
    animation: fadeUp 0.6s ease forwards 0.15s;
}
.hol-card-text {
    font-size: 14px;
    line-height: 1.8;
    color: var(--dark-black);
    opacity: 0;
}
.hol-section-holistic.active .hol-card-text {
    animation: fadeUp 0.6s ease forwards 0.3s;
}
.hol-footer-text {
    text-align: center;
    font-size: 18px;
    color: var(--dark-black);
    font-weight: 500;
    letter-spacing: 0.5px;
    animation: textSlightScale 4s infinite ease-in-out;
}

/* 整体思考移动端 */
@media screen and (max-width: 768px) {
    .hol-section-holistic { padding: 60px 0; }
    .hol-main-title { font-size: 30px; }
    .hol-sub-title { font-size: 16px; }
    .hol-wrap { flex-direction: column; gap: 35px; }
    .hol-text-block { margin-top: 0; }
    .hol-card-list { flex-direction: column; }
    .hol-footer-text { font-size: 15px; }
}
/* ===================== 我们的思考 结束 ====================== */

/* ====================== 五大落地服务步骤 ====================== */
.hol-section-process {
    padding: 100px 0;
    background-color: var(--color-gray-bg4);
}
.process-steps {
    position: relative;
    max-width: 1100px;
    margin: 60px auto 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.process-steps::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 5%;
    right: 5%;
    height: 2px;
    background-color: var(--color-gray-line2);
    z-index: 1;
}
.process-item {
    position: relative;
    z-index: 2;
    width: 16%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}
.process-number {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--gold-main);
    color: var(--color-white);
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.3s ease;
    box-shadow: 0 0 0 0 var(--gold-shadow-015-spread);
}
.process-item:hover .process-number {
    transform: scale(1.1);
    background-color: #a08652;
    box-shadow: 0 0 0 8px var(--gold-shadow-015-spread);
}
.process-content h3 {
    font-size: 17px;
    color: var(--dark-black);
    font-weight: 500;
    margin-bottom: 10px;
    line-height: 1.4;
    opacity: 0;
}
.hol-section-process.active .process-content h3 {
    animation: fadeUp 0.6s ease forwards 0.2s;
}

/* 新增：五大服务流程板块主标题淡入 */
.hol-section-process .hol-main-title {
    opacity: 0;
}
.hol-section-process.active .hol-main-title {
    animation: fadeUp 0.6s ease forwards;
}

.process-item:hover .process-content h3 { color: var(--gold-main); }
.process-content p {
    font-size: 14px;
    color: var(--dark-black);
    line-height: 1.6;
    opacity: 1;
}
.hol-section-process.active .process-content p {
    animation: fadeUp 0.6s ease forwards 0.35s;
}

/* 流程板块平板/手机 */
@media (max-width: 992px) {
    .process-steps {
        flex-direction: column;
        padding-left: 40px;
    }
    .process-steps::before {
        left: 20px;
        top: 0;
        bottom: 0;
        right: auto;
        width: 2px;
        height: auto;
    }
    .process-item {
        width: 100%;
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
        margin-bottom: 36px;
    }
    .process-number {
        margin-right: 20px;
        margin-bottom: 0;
        flex-shrink: 0;
    }
    .process-content { flex: 1; }
}
@media (max-width: 768px) {
    .hol-section-process { padding: 60px 0; }
}
/* ====================== 五大落地服务步骤 结束 ====================== */

/* ========================客户案例版块 ========================= */
.hol-section-case4 {
    padding: 100px 0;
    background-color: var(--color-white);
}
.case4-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 20px;
}
.case4-card {
    display: block;
    text-decoration: none;
    border-radius: 8px;
    overflow: hidden;
    background: var(--color-white);
    box-shadow: 0 4px 20px var(--shadow-black-006);
    transition: all 0.35s ease;
    transform: translateY(0);
    position: relative;
}
.case4-card::before {
    content: '';
    position: absolute;
    inset: 0;
    width: 60%;
    background: linear-gradient(90deg, transparent, var(--gold-trans-012), transparent);
    animation: goldShine 5s infinite ease-in-out;
    opacity: 0;
    transition: opacity 0.4s;
    z-index: 1;
    pointer-events: none;
}
.case4-card:hover::before { opacity: 1; }
.case4-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 36px var(--gold-shadow-012);
}
.case4-img-box {
    width: 100%;
    height: 260px;
    overflow: hidden;
}
.case4-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.case4-card:hover .case4-img-box img { transform: scale(1.06); }
.case4-content {
    padding: 26px 30px;
    position: relative;
    z-index: 2;
}
.case4-title {
    font-size: 20px;
    color: var(--dark-black);
    font-weight: 500;
    margin-bottom: 8px;
    transition: color 0.3s;
    opacity: 0;
}
.hol-section-case4.active .case4-title {
    animation: fadeUp 0.6s ease forwards 0.15s;
}
.case4-card:hover .case4-title { color: var(--gold-main); }
.case4-desc {
    font-size: 15px;
    color: var(--dark-black);
    line-height: 1.6;
    margin-bottom: 14px;
    opacity: 0;
}
.hol-section-case4.active .case4-desc {
    animation: fadeUp 0.6s ease forwards 0.3s;
}
.case4-data {
    font-size: 14px;
    color: var(--gold-main);
    font-weight: 500;
    padding-top: 10px;
    border-top: 1px solid var(--color-gray-line3);
    transition: border-color 0.3s;
    opacity: 0;
}
.hol-section-case4.active .case4-data {
    animation: fadeUp 0.6s ease forwards 0.45s;
}

/* 新增：客户案例板块主标题淡入 */
.hol-section-case4 .hol-main-title {
    opacity: 0;
}
.hol-section-case4.active .hol-main-title {
    animation: fadeUp 0.6s ease forwards;
}
.case4-card:hover .case4-data { border-color: var(--gold-main); }


/* 案例板块移动端 */
@media screen and (max-width: 992px) {
    .case4-grid { grid-template-columns: 1fr; }
    .case4-img-box { height: 220px; }
}
@media screen and (max-width: 768px) {
    .hol-section-case4 { padding: 60px 0; }
}

/* ========================客户案例版块结束 ========================================= */


/* ===============================转化预约表单版块============================== */
/* 模块5 深色转化Banner 独立样式 - 全响应式完整版 */
.banner-convert-dark * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Microsoft YaHei", system-ui, sans-serif;
}
.banner-convert-dark {
    width: 100%;
    padding: 90px 0;
    /* background: var(--dark-black); */
    background: var(--form-dark-bg-08);
}
.convert-container {
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 70px;
}

/* 左侧文案 */
.convert-left {
    flex: 1;
}
.convert-main-title {
    font-size: 28px;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 16px;
    color: var(--color-white);
}
.convert-sub-text {
    font-size: 18px;
    color: var(--color-white);
    line-height: 1.8;
    margin-bottom: 36px;
}
.convert-btn-group {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
}
.convert-btn {
    padding: 15px 34px;
    font-size: 16px;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}
.convert-btn.btn-primary {
    background: var(--gold-main);
    color: var(--color-white);
    border: 2px solid var(--color-white);
    font-weight: 500;
}
.convert-btn.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
}
.convert-btn.btn-outline {
    border: 2px solid var(--color-white);
    color: var(--color-white);
    background:var(--gold-main);
}
.convert-btn.btn-outline:hover {
    background: var(--gold-light);
}

/* 右侧表单 */
.convert-right {
    flex: 1;
}
.convert-form {
    background: var(--dark-black);
    padding: 40px 32px;
    border-radius: 8px;
}
.form-row {
    display: flex;
    gap: 20px;
}
.form-item {
    width: 100%;
    margin-bottom: 22px;
}
.form-row .form-item {
    width: 50%;
}
.form-label {
    font-size: 15px;
    color: var(--color-white);
    margin-bottom: 8px;
    display: block;
}
.form-input,
.form-select,
.form-textarea {
    width: 100%;
    height: 46px;
    padding: 0 14px;
    background: var(--color-gray-input-bg);
    border: 1px solid var(--color-gray-input-border);
    border-radius: 4px;
    color: var(--dark-black);
    font-size: 15px;
}
.form-textarea {
    height: auto;
    padding: 12px 14px;
    resize: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--gold-light);
}
.form-submit-btn {
    width: 100%;
    height: 50px;
    background: var(--gold-main);
    color: var(--color-white);
    border: 2px solid var(--color-white);
    border-radius: 4px;
    font-size: 17px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}
.form-submit-btn:hover {
    background: var(--gold-light);
}
.form-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}
.form-tip {
    text-align: center;
    font-size: 13px;
    color: var(--color-white);
    margin-top: 12px;
}

/* 弹窗 */
.form-modal {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: var(--mask-black-07);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}
.modal-box {
    background: var(--color-white);
    padding: 35px 40px;
    border-radius: 6px;
    text-align: center;
    max-width: 360px;
    width: 90%;
}
.modal-text {
    font-size: 17px;
    color: var(--color-white);
    margin-bottom: 22px;
}
.modal-close {
    padding: 10px 30px;
    background: var(--gold-main);
    border: none;
    color: var(--color-white);
    border-radius: 4px;
    cursor: pointer;
}

/* =================================== */
/* ========== 响应式适配逻辑 ========== */
/* =================================== */

/* 平板设备 992px 以下 */
@media screen and (max-width: 992px) {
    .convert-container {
        gap: 40px;
    }
    .convert-main-title {
        font-size: 36px;
    }
    .convert-btn {
        padding: 14px 28px;
        font-size: 15px;
    }
    .convert-form {
        padding: 30px 24px;
    }
}

/* 手机设备 768px 以下：自动上下布局 */
@media screen and (max-width: 768px) {
    .banner-convert-dark {
        padding: 60px 0;
    }
    .convert-container {
        flex-direction: column;
        gap: 50px;
        align-items: stretch;
    }
    .convert-left {
        text-align: center;
    }
    .convert-main-title {
        font-size: 28px;
    }
    .convert-sub-text {
        font-size: 16px;
    }
    .convert-btn-group {
        justify-content: center;
        flex-direction: column;
        gap: 16px;
    }
    .convert-btn {
        width: 100%;
        padding: 14px 20px;
    }

    /* 表单自适应 */
    .convert-form {
        padding: 28px 20px;
    }
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    .form-row .form-item {
        width: 100%;
    }
}

/* 小屏手机 420px 以下 */
@media screen and (max-width: 420px) {
    .convert-main-title {
        font-size: 24px;
    }
    .convert-form {
        padding: 24px 16px;
    }
}
/* ===========================转化预约表单版块结束================================ */

/* ==================首页主体内容部分样式结束================== */