/**
 * 智能体Agent落地页专用样式
 * 文件路径: /public/css/znt-page.css
 * 创建日期: 2026-05-19
 * 注意: 全部属性已做IE兼容处理，不使用CSS变量、Grid布局改用flexbox
 */

/* ========== 页面整体容器 ========== */
.agent-page-wrapper {
    background-color: #E5F2FF;
    background-image: url('../images/znt/bg_main.jpg');
    background-repeat: no-repeat;
    background-position: center top;
}

/* ========== Hero顶部标题区 ========== */
.agent-hero {
    position: relative;
    overflow: hidden;
}

.agent-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(67, 145, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.agent-hero .geo-container {
    padding-top: 180px;
    padding-bottom: 160px;
    text-align: left;
}



.hero-title {
    position: relative;
}

.hero-title img {
    display: inline-block;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.hero-title .highlight {
    color: #4A6CF7;
}

.hero-subtitle {
    font-size: 56px;
    color: #333;
    margin-bottom: 35px;
    line-height: 1.6;
    font-weight: bold;
    margin-top: 20px;
}

.hero-cta-group {
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 52px;
}

.hero-cta-group>* {
    margin-right: 16px;
}

.hero-cta-group>*:last-child {
    margin-right: 0;
}

.btn-primary {
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-align: center;
    align-items: center;
    background: #0C4DE3;
    color: #fff;
    font-size: 24px;
    font-weight: 600;
    padding: 18px 54px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 15px rgba(24, 144, 255, 0.35);
    position: relative;
    overflow: hidden;
}

.btn-primary::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 ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary>* {
    margin-right: 8px;
}

.btn-primary>*:last-child {
    margin-right: 0;
}

.btn-primary:hover {
    background: #096dd9;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(24, 144, 255, 0.5);
    text-decoration: none;
}

.btn-primary i {
    font-size: 13px;
}

.btn-primary .arrow-right {
    font-size: 16px;
    margin-left: 6px;
    font-weight: 700;
}

.btn-arrow-img {
    height: auto;
    margin-left: 46px;
}

.btn-white {
    background: #fff;
    color: #2B4EF0;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.btn-white:hover {
    background: #f0f2ff;
    box-shadow: 0 6px 25px rgba(255, 255, 255, 0.5);
    color: #2B4EF0;
}

/* ========== 区块通用样式 ========== */

.section-header {
    text-align: left;
    margin-bottom: 50px;
}

.section-title {
    font-size: 48px;
    color: #333333;
    margin-bottom: 20px;
}

.section-title .highlight {
    color: #4A6CF7;
}

.section-subtitle {
    font-size: 18px;
    color: #333333;
    margin-top: 10px;
}

/* ========== 智能体全链路服务区 ========== */
.agent-services {
    padding: 70px 0;
}

.services-grid {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    background-image: url('../images/znt/bg_sec1.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    border-radius: 0 70px 0 70px;
    padding: 40px 36px;
}

.services-left,
.services-right {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    position: relative;
}

.services-left {
    -ms-flex: 1;
    flex: 1;
    min-width: auto;
    margin-right: 80px;
}

.services-right {
    -ms-flex: 1;
    flex: 1;
    min-width: auto;
}

/* 右上角点缀图标 */
.services-deco {
    position: absolute;
    top: 0;
    right: 0;
    width: 160px;
    height: 160px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    pointer-events: none;
}

.services-deco-left {
    background-image: url('../images/znt/bg_dz1.png');
}

.services-deco-right {
    background-image: url('../images/znt/bg_dz2.png');
}

.service-card {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: flex-start;
    align-items: flex-start;
    padding: 24px 0;
    margin-bottom: 18px;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    background: transparent;
}

.service-card:last-child {
    margin-bottom: 0;
}

.service-card:hover {
    transform: translateY(-4px);
}

.service-card:hover .service-icon img {
    transform: scale(1.1);
    transition: transform 0.4s ease;
}

.service-card:hover .service-body h4 {
    color: #7DD3FC;
}

/* 每项之间的虚线分隔 */
.service-card+.service-card {
    border-top: 1px dashed rgba(241, 239, 252, 0.3);
    padding-top: 22px;
    margin-top: -4px;
}

.service-icon {
    width: 52px;
    min-width: 52px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-right: 26px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    background: transparent;
    margin-top: 20px;
}

.service-icon img {
    width: 48px;
    height: auto;
    object-fit: contain;
}

.service-body {
    -ms-flex: 1;
    flex: 1;
}

.service-body h4 {
    font-size: 18px;
    color: #fff;
    font-weight: 700;
    margin: 0 0 8px;
    position: relative;
    padding-top: 20px;
}

/* 标题上方的绿色装饰条 */
.service-body h4::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 24px;
    height: 3px;
    background-color: #04c015;
}

.service-body p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin: 0;
}

/* ========== 典型应用场景区 ========== */
.agent-scenarios{
    padding: 70px 0;
}
.scenarios-grid {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -24px;
}

.scenarios-grid>* {
    width: calc(33.333% - 24px);
    margin-right: 24px;
    margin-bottom: 24px;
}

.scenario-card {
    border-radius: 10px;
    padding: 32px 26px;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1px solid rgba(255, 255, 255, 1);
    cursor: pointer;
}

.scenario-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(74, 108, 247, 0.2);
}

.scenario-card:hover .scenario-icon img {
    transform: scale(1.1);
    transition: transform 0.4s ease;
}

.scenario-card:hover h4 {
    color: #0C4DE3;
    transition: color 0.3s ease;
}

/* 标签悬浮效果 */
.scenario-tags li {
    transition: all 0.3s ease;
}

.scenario-card:hover .scenario-tags li {
    background: #d4e8f5;
    border-color: #a8c8de;
}

/* 每项卡片渐变背景（设计稿90deg=从上到下=to bottom，深色在上→白色在下） */
.scenario-card-1 { background-image: linear-gradient(#F1E3FF, #FFFFFF); }
.scenario-card-2 { background-image: linear-gradient(#D5EEFF, #FFFFFF); }
.scenario-card-3 { background-image: linear-gradient(#CDF3E0, #FFFFFF); }
.scenario-card-4 { background-image: linear-gradient(#D7F1EF, #FFFFFF); }
.scenario-card-5 { background-image: linear-gradient(#F6DBDD, #FFFFFF); }
.scenario-card-6 { background-image: linear-gradient(#D4DCF5, #FFFFFF); }

/* 图标：自带边框和白底 */
.scenario-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 30px;
    background: transparent;
}

.scenario-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.scenario-card h4 {
    font-size: 24px;
    color: #333333;
    margin: 0 0 14px;
    font-weight: bold;
}

.scenario-card>p {
    font-size: 16px;
    color: #666666;
    line-height: 1.75;
    margin: 0 0 18px;
}

.scenario-tags {
    list-style: none;
    padding: 0;
    margin: 0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.scenario-tags li {
    font-size: 14px;
    color: #4F738A;
    background: #E6F1F8;
    border: 1px solid #C8DEEB;
    padding: 5px 14px;
    border-radius: 15px;
    margin-right: 8px;
    margin-bottom: 6px;
    text-align: center;
    min-width: 90px;
}

/* ========== 服务流程 + CTA区（共用bg_bottom.jpg背景） ========== */
.agent-process {
    background: url('../images/znt/bg_bottom.jpg') no-repeat center bottom;
    background-size: cover;
    padding: 70px 0 110px;
}

.process-steps {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: flex-start;
    align-items: flex-start;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    position: relative;
    margin-bottom: 180px;
}

/* 步骤项 */
.process-step {
    width: calc((100% - 80*3px)/4);
    min-width: auto;
    text-align: left;
    position: relative;
    box-sizing: border-box;
    margin-right: 80px;
    transition: all 0.4s ease;
}

/* 最后一项：去掉右边距，让文字对齐容器右边缘 */
.process-step:last-of-type {
    margin-right: 0;
}

/* 步骤悬浮效果 */
.process-step:hover .step-number {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.process-step:hover h4 {
    color: #0C4DE3;
    transition: color 0.3s ease;
}

/* 每个步骤右侧的连接线（最后一项不需要） */
.process-step:not(:last-of-type)::after {
    content: '';
    position: absolute;
    top: 42px; 
    left: 84px; 
    right: -80px; 
    height: 2px;
    background-color: #dfecfa;
    z-index: 1;
}

.process-step:not(:last-of-type)::before {
    content: '';
    position: absolute;
    display: block;
    width: 75px;
    height: 57px;
    background: #F0F7FF url(../images/znt/dz_arrow1.png) center top no-repeat;
    top: 14px;
    left: 50%;
    margin-left: 42px;
    z-index: 2;
    background-size: contain;
    transition: transform 0.3s ease;
}

/* 箭头悬浮放大 */
.process-step:hover:not(:last-of-type)::before {
    transform: translateX(5px);
}


.step-number {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    position: relative;
    z-index: 2;
    margin-bottom: 40px;
    /* 默认单数样式：蓝色（按设计稿图层） */
    border: 5px solid #4391FF;
    background-image: linear-gradient(#164FD2, #197AFF);
    box-shadow: 0px 12px 24px 0px rgba(155, 197, 255, 0.7);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* 双数样式：紫色（通过step-purple class控制）*/
.step-purple .step-number {
    border-color: #C291F2;
    background-image: linear-gradient(#783BD2, #BF87EF);
    box-shadow: 0px 12px 24px 0px rgba(197, 155, 255, 0.7);
}

/* 数字悬浮脉动效果 */
.process-step:hover .step-number {
    animation: pulse 1.5s infinite;
}

.step-purple:hover .step-number {
    animation: pulsePurple 1.5s infinite;
}

.process-step h4 {
    font-size: 24px;
    color: #333333;
    font-weight: normal;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.process-step p {
    font-size: 16px;
    color: #666666;
    line-height: 1.65;
    margin: 0;
}

/* CTA内容区 */
.cta-content {
    text-align: center;
}

.cta-desc {
    font-size: 24px;
    color: #333333;
    margin-bottom: 36px;
}

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

/* 平板横屏 */
@media (max-width: 1199px) {
    .geo-container {
        width: 100%;
        padding: 0 50px;
    }

    .hero-title img {
        max-width: 360px;
        width: 100%;
    }

    .hero-subtitle {
        font-size: 36px;
    }

    .section-title {
        font-size: 34px;
    }

    .agent-hero .geo-container {
        padding-top: 60px;
        padding-bottom: 70px;
    }

    .scenarios-grid>* {
        width: calc(50% - 21px);
        margin-right: 21px;
        margin-bottom: 21px;
    }

    .process-step:not(:last-of-type)::after {
        top: 32px;
        left: 64px;
    }

    .process-step:not(:last-of-type)::before {
        width: 60px;
        height: 46px;
        top: 9px;
    }

    .step-number {
        width: 64px;
        height: 64px;
        font-size: 20px;
        border-width: 4px;
        margin-bottom: 30px;
    }

    .cta-title {
        font-size: 36px;
    }
}

/* 平板竖屏 */
@media (max-width: 992px) {
    .geo-container {
        width: 100%;
        padding: 0 20px;
        overflow: hidden;
    }

    .agent-hero .geo-container {
        -ms-flex-direction: column;
        flex-direction: column;
        padding-top: 80px;
        padding-bottom: 70px;
        -ms-flex-align: center;
        align-items: center;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
        margin-bottom: 0;
    }

    .hero-cta-group {
        -ms-flex-pack: center;
        justify-content: center;
    }

    .hero-title img {
        max-width: 300px;
    }

    .hero-subtitle {
        font-size: 28px;
    }

    .agent-services,
    .agent-scenarios,
    .agent-process {
        padding-top: 55px;
        padding-bottom: 90px;
    }

    .section-title {
        font-size: 30px;
    }

    /* 服务区堆叠 - 小屏去掉背景图，左右分别用渐变色 */
    .services-grid {
        -ms-flex-direction: column;
        flex-direction: column;
        background-image: none;
        background-color: transparent;
        padding: 0;
        border-radius: 0;
    }

    .services-left {
        -ms-flex: none;
        flex: none;
        width: 100%;
        min-width: auto;
        margin-right: 0;
        margin-bottom: 20px;
        background: linear-gradient(135deg, #60A5FA 0%, #2563EB 100%);
        border-radius: 20px;
        padding: 24px 20px;
        box-sizing: border-box;
    }

    .services-right {
        -ms-flex: none;
        flex: none;
        width: 100%;
        min-width: auto;
        background: linear-gradient(135deg, #A78BFA 0%, #7C3AED 100%);
        border-radius: 20px;
        padding: 24px 20px;
        box-sizing: border-box;
    }

    .services-deco {
        right: 20px;
        top: 20px;
    }


    /* 场景区2列 */
    .scenarios-grid>* {
        width: calc(50% - 21px);
    }

    /* 流程区换行 */
    .process-steps {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -ms-flex-pack: start;
        justify-content: flex-start;
        padding-top: 0;
        margin-bottom: 60px;
    }

    /* 隐藏连接线和箭头 */
    .process-step::after,
    .process-step:not(:last-of-type)::before {
        display: none;
    }

    .process-step {
        width: calc(50% - 21px);
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        min-width: auto;
        margin-bottom: 40px;
        margin-right: 21px;
        padding-right: 0;
    }

    .step-number {
        width: 58px;
        height: 58px;
        font-size: 18px;
        border-width: 4px;
        margin-bottom: 14px;
    }

    .process-step:nth-child(3),
    .process-step:nth-child(4) {
        margin-bottom: 0;
    }

    .cta-title {
        font-size: 30px;
    }

    .cta-desc {
        font-size: 16px;
    }
}

/* 手机 */
@media (max-width: 767px) {
    .geo-container {
        width: 100%;
        padding: 0 16px;
        overflow: hidden;
    }

    .agent-hero .geo-container {
        padding-top: 55px;
        padding-bottom: 60px;
    }

    .hero-title img {
        max-width: 260px;
    }

    .hero-subtitle {
        font-size: 22px;
        margin-bottom: 25px;
    }

    .btn-primary {
        font-size: 17px;
        padding: 12px 30px;
    }

    .agent-services,
    .agent-scenarios {
        padding: 45px 0;
    }

    .section-header {
        margin-bottom: 35px;
    }

    .section-title {
        font-size: 26px;
    }

    .section-subtitle {
        font-size: 14px;
    }

    /* 场景区单列 */
    .scenarios-grid {
        margin-right: 0;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .scenarios-grid>* {
        width: 100%;
        margin-right: 0;
        margin-bottom: 16px;
    }

    .scenarios-grid>*:last-child {
        margin-bottom: 0;
    }

    .scenario-card {
        padding: 26px 20px;
    }

    /* 流程区单列 */
    .process-steps {
        margin-right: 0;
    }

    .process-steps {
        -ms-flex-direction: column;
        flex-direction: column;
        margin-right: 0;
        margin-bottom: 50px;
    }

    /* 隐藏连接线和箭头 */
    .process-step::after,
    .process-step:not(:last-of-type)::before {
        display: none;
    }

    .process-step {
        width: 100%;
        text-align: left;
        margin-bottom: 24px;
        padding-right: 0;
        padding-left: 70px;
    }

    .process-step:nth-child(3){
        margin-bottom: 24px;
    }

    .process-step:last-child {
        margin-bottom: 0;
    }

    .step-number {
        
        margin-right: 16px;
        margin-bottom: 0;
        width: 50px;
        height: 50px;
        font-size: 18px;
        border-width: 3px;
        position: absolute;
        left: 0;
        top: 0;
    }

    .process-step h4 {
        font-size: 20px;
    }

    .process-step p {
        font-size: 14px;
    }

    /* CTA区（已合并入agent-process） */
    .agent-process {
        padding: 45px 0 75px;
    }

    .cta-title {
        font-size: 26px;
    }

    .cta-desc {
        font-size: 14px;
        margin-bottom: 28px;
    }
}

/* 小屏手机 */
@media (max-width: 480px) {
    .geo-container {
        padding: 0 12px;
    }

    .hero-title img {
        max-width: 220px;
    }

    .hero-subtitle {
        font-size: 18px;
        line-height: 1.5;
    }

    .btn-primary {
        font-size: 15px;
        padding: 10px 24px;
    }

    .btn-arrow-img {
        margin-left: 20px;
        height: 12px;
    }

    .hero-cta-group {
        -ms-flex-pack: center;
        justify-content: center;
        margin-bottom: 25px;
    }

    .section-title {
        font-size: 22px;
    }

    .service-card {
        padding: 20px 16px;
    }

    .service-icon {
        width: 44px;
        min-width: 44px;
    }

    .service-icon img {
        width: 40px;

    }

    .services-left,
    .services-right {
        padding: 20px 16px;
        border-radius: 16px;
    }

    .cta-title {
        font-size: 22px;
    }

    .agent-process {
        padding: 35px 0 60px;
    }

    .process-steps {
        margin-bottom: 40px;
    }

    .step-number {
        width: 46px;
        height: 46px;
        font-size: 16px;
        border-width: 3px;
    }

    .process-step::after,
    .process-step:not(:last-of-type)::before {
        display: none;
    }

    .process-step h4 {
        font-size: 18px;
    }

}

/* ========== 预约咨询弹窗样式 ========== */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;
}

.modal-overlay.is-open {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.modal-container {
    background: #fff;
    border-radius: 20px;
    width: 560px;
    max-width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
    transform: scale(0.8);
    opacity: 0;
    transition: all 0.3s ease;
    position: relative;
}

.modal-container.is-active {
    transform: scale(1);
    opacity: 1;
}

.modal-header {
    position: relative;
    padding: 24px 50px 24px 30px;
    border-bottom: 1px solid #eee;
    background: linear-gradient(135deg, #0C4DE3 0%, #4A6CF7 100%);
    border-radius: 20px 20px 0 0;
}

.modal-title {
    font-size: 22px;
    color: #fff;
    font-weight: 600;
    margin: 0;
    text-align: center;
}

.modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 36px;
    height: 36px;
    border: none;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 24px;
    line-height: 1;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.modal-body {
    padding: 30px;
}

.modal-form .form-row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
}

.modal-form .form-row .form-group {
    width: calc(50% - 15px);
    margin-right: 15px;
}

.modal-form .form-group {
    margin-bottom: 20px;
}

.modal-form .form-group label {
    display: block;
    font-size: 14px;
    color: #333;
    font-weight: 500;
    margin-bottom: 8px;
}

.modal-form .form-group input,
.modal-form .form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    color: #333;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.modal-form .form-group input:focus,
.modal-form .form-group textarea:focus {
    outline: none;
    border-color: #0C4DE3;
    box-shadow: 0 0 0 3px rgba(12, 77, 227, 0.1);
}

.modal-form .form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.verify-code-row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
}

.verify-code-row img {
    width: 100px;
    height: 42px;
    cursor: pointer;
    border-radius: 6px;
    margin-right: 12px;
    border: 1px solid #ddd;
}

.verify-code-row input {
    -ms-flex: 1;
    flex: 1;
}

.form-error {
    display: none;
    color: #ff4d4f;
    font-size: 12px;
    margin-top: 4px;
}

.modal-form .form-group input.error,
.modal-form .form-group textarea.error {
    border-color: #ff4d4f;
}

.modal-form .submit-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #0C4DE3 0%, #4A6CF7 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.modal-form .submit-btn:hover {
    background: linear-gradient(135deg, #0966d1 0%, #3a5ce7 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(12, 77, 227, 0.35);
}

/* 弹窗响应式 */
@media (max-width: 600px) {
    .modal-container {
        width: 95%;
        max-height: 85vh;
        border-radius: 16px;
    }

    .modal-header {
        padding: 18px 50px 18px 20px;
        border-radius: 16px 16px 0 0;
    }

    .modal-title {
        font-size: 18px;
    }

    .modal-close {
        top: 14px;
        right: 14px;
        width: 32px;
        height: 32px;
        font-size: 20px;
    }

    .modal-body {
        padding: 20px;
    }

    .modal-form .form-row {
        -ms-flex-direction: column;
        flex-direction: column;
        margin-right: 0;
    }

    .modal-form .form-row .form-group {
        width: 100%;
        margin-right: 0;
    }

    .modal-form .form-group input,
    .modal-form .form-group textarea {
        padding: 10px 14px;
        font-size: 14px;
    }

    .verify-code-row img {
        width: 80px;
        height: 36px;
    }

    .modal-form .submit-btn {
        padding: 12px;
        font-size: 15px;
    }
}