@charset "UTF-8";

.header_bg{
    margin-bottom: -14px;
    height: 140px;
    background: url(/static/index/images/home/home_header_bg.webp?v=__VER__) no-repeat;
   
}
.mar_1200{
    margin: 0 auto;

    width: 1200px;
}
.home{

}
.banner_Wrap{
    width: auto;
    height: 1014px;
    background: #fff url(/static/index/images/home/banner_big_bg02.webp?v=__VER__) no-repeat center 215px;
    /* background-size: 100% 100%; */
    background-size: 100% 580px;
    background-size: 100% 653px;
    background-size: 100% 891px;
}
.bannerContent{
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

}

.banner-left{
    max-width: 583px;

    /* border: 1px solid red; */

}
.banner_title h1{
    margin: 0;
    padding: 0;
    color: var(--theBcColor);
    font-family: Aspekta;
    font-weight: 700;
    font-size: 54px;
    line-height: 130%;
    line-height: 63px;

    
}
.banner_title h1 span{
    font-size: 46px;
    font-weight: 700;
    line-height: 65px;
    background: linear-gradient(90deg, #285DFF 0%, #C728FF 75%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
    

}
.banner_desc{
    margin-top: 24px;

    font-family: Aspekta;
    font-weight: 350;
    font-size: 16px;
    line-height: 29px;
    color: #666666;

}

.bannerList_wrap{
    margin-top: 24px;

    display: flex;
    flex-direction: column;
    gap: 12px;
}
.bannerList_item{

    display: flex;
    align-items: center;

    height: 31px;
}
.bannerList_item img{
    width: 20px;
    height: 20px;
}
.bannerList_item .li_txt{
    font-family: Aspekta;
    font-weight: 400;
    font-size: 14px;

    color: #999999;

}
.bannerList_item .li_txt span{
    margin: 0 10px;
    font-family: Aspekta;
    font-weight: 500;
    font-size: 16px;

    color: var(--theBcColor);


}



.homebanner{
    width: 100%;
}
.banner_btn_wrap{
    margin-top: 32px;

    display: flex;
    gap: 20px;
}
.ble_btn{
    
    display: flex;
    align-items: center;
    gap: 10px;

    height: 48px;
    border-radius: 8px;
    padding: 13px 32px;

    font-weight: 700;
    font-size: 16px;

    color: #fff;

    background: var(--themeColor);

    transition: all .3s ease-in-out;

}


.ble_btn .jt_icon{
    width: 16px;
    height: 16px;
    background: url(/static/index/images/home/jt_w.webp?v=__VER__) no-repeat;
    background-size: 100%  100%;

    display: inline-block;

    
}

.ble_btn:hover{
    gap: 15px;
}

.ble_btn.btn_white{
    font-weight: 700;
    font-size: 16px;
    color: var(--theBcColor);

    background: #fff;
    border:1px solid #E5E5E5;
}
.ble_btn.btn_white .jt_icon{
    background: url(/static/index/images/home/jt_b.webp?v=__VER__) no-repeat;
    background-size: 100%  100%;
}

.banner-right{
    position: relative;
    /* max-width: 576px; */

    width: 576px;
    height: 387px;

    /* border: 1px solid #000; */
    /* border: 1px solid red; */
}


.orbit-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: #285DFF;
    border-radius: 50%;
    /* 核心光晕 */
    box-shadow: 0px 0px 8px 0px #2C60FF;
    
    /* 1. 强制将光点的中心点（X: 3px, Y: 3px 的位置）绑定到路径线上 */
    offset-anchor: center;
    
    /* 2. 路径严格设为 inset(1px)，与上方 border 的中心线完全重合 */
    offset-path: inset(11px 6px 6px 6px);
    
    /* 4 秒一圈，匀速循环 */
    animation: move-around 34s linear infinite;
    /* animation: move-around 6s linear infinite */
}

@keyframes move-around {
    0% {
        offset-distance: 0%;
    }
    100% {
        offset-distance: 100%;
    }
}


/* pmd------------------- */

/* 跑马灯外层容器 */
.marquee-container {
    width: 1200px;
    margin: 110px auto 0;
    overflow: hidden;
    /* background: #ffffff; */
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
}

/* 移除此处的 gap，完全靠子项自身撑开，确保无缝拼接 */
.marquee-content {
    display: flex;
    width: max-content;
}

.marquee-group {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    /* 100% 位移此时能完美对应包含右间距的完整大组宽度 */
    animation: scroll-left 40s linear infinite;
}

/* 鼠标悬停暂停 */
.marquee-content:hover .marquee-group {
    animation-play-state: paused;
}

/* 核心改动：间距完全由子项的 padding-right 决定 */
.marquee-item {
    display: flex;
    align-items: center;
    gap: 8px; /* 图标与文字的间距 */
    padding-right: var(--gap); /* 每个独立项右边留出 70px 间距 */
    
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 16px;
    color: #333333;
    font-weight: 500;
    white-space: nowrap;
}



.icon-dot {
    padding: 37px 0 10px;
}

/* 精准动画：由于每个 item 包含了独属于自己的右间距，
    整个 group 整体向左平移 100% 时，交界处间距将严格等于单项的 padding-right */
@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* pmd----end--------------- */

.trusted_wrap{

}

.trusted_title{
    display: flex;
    flex-direction: column;
    align-items: center;

}
.tru_title{
    font-family: Aspekta;
    font-weight: 700;
    font-size: 36px;
    line-height: 51px;
    text-align: center;

    color: var(--theBcColor);
}
.tru_txt{
    margin-top: 16px;
    font-family: Aspekta;
    font-weight: 400;
    font-size: 16px;
    line-height: 23px;
    text-align: center;

    color: #666666;
}
.tru_tips{
    display: flex;
    align-items: center;
    gap: 4px;
    font-family: Aspekta;
    font-weight: 300;
    font-size: 12px;
    line-height: 20px;

    color: var(--theBcColor);

    background: #F1FFFA;
    border: 1px solid #01C47B;
    border-radius: 32px 18px 18px 0px; 

    padding: 2px 10px;
}

.tru_tips img{
    width: 12px;
}


.trusted_list{
    margin-top: 54px;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
/* .trusted_item{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    
} */
.big_tru_item{
    grid-column: span 2;

    border-radius: 20px;
    border: 1px solid #E6EBF3;
    height: 360px;

    padding: 20px;

    
}
.tru_tit{
    display: flex;
    align-items: center;
    gap: 16px;

    

    font-family: Aspekta;
    font-weight: 400;
    font-size: 14px;
    height: 34px;

    color: #666666;

    margin-bottom: 20px;

}
.tru_tit span{
    font-weight: 800;
    font-size: 24px;

    color: var(--theBcColor);
}
.tru_dec{
    border-radius: 16px;
    border: 1px solid #E6EBF3;

    height: 266px;
}
.post_wp{
    position: relative;
}

.small_tru_item{
    border-radius: 20px;
    border: 1px solid #E6EBF3;

    height: 360px;

    padding: 20px;
}

.tru_item01 .tru_dec{
    background: url(/static/index/images/home/tru_gl_bg.webp?v=__VER__) no-repeat center center;
    background-size: 465px 225px;

    display: flex;
    align-items: self-end;
    justify-content: center;
}
.tru_item01 .post_wp{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    margin-bottom: 20px;


    border-radius: 16px;
    border: 1px solid #FFA724;
    background: linear-gradient(180deg, #FFFCF7 0%, #FFF8EC 100%);

    width: 52%;

    padding: 10px 16px;


    font-weight: 400;
    font-size: 14px;
    line-height: 23px;
    color: #B9712D;

    
}


.tru_item02 .tru_dec{
    background: url(/static/index/images/home/tru_item02_bg.webp?v=__VER__) no-repeat center 130px;
    background-size: 295px auto;

    display: flex;
    align-items: flex-start;
    justify-content: center;

    padding: 16px;
}
.tru_item02 .h_line{
    position: absolute;
    top: 92px;
    left: 154px;

    width: 1px;
    height: 71px;
    background: #00D484;
}
.tru_item02 .h_line::before{
    content: '';
    position: absolute;
    top: 69px;
    left: -2px;

    width: 5px;
    height: 5px;
    background: #00D484;
    border-radius: 50%;
    
}

.tru_item02 .h_line::after{
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;

    width: 5px;
    height: 5.5px;
    /* 注意这里的 #f90f90 要转成 fill='%23f90f90' */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 5 5.5'%3E%3Cpolygon points='0,0 5,0 2.5,5.5' fill='%2300D484'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
}
.tru_item02 .tru_dec::before{

}

.tru_item02 .post_wp{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    /* margin-bottom: 20px; */


    border-radius: 16px;
    border: 1px solid #E2FFC9;
    background: linear-gradient(180deg, #F1FFF3 0%, #F6FFED 100%);


    /* width: 52%; */

    padding: 10px;


    font-weight: 400;
    font-size: 14px;
    line-height: 23px;
    color: #6C7A60;

    
}

.post_wp img{
    width: 18px;
}


/* item03 */

.tru_item03 .tru_dec{
    background: url(/static/index/images/home/tru_item03_bg.webp?v=__VER__) no-repeat center 170px;
    background-size: 316px auto;

    display: flex;
    align-items: flex-start;
    justify-content: center;

    padding: 16px;
}
.tru_item03 .h_line{
    position: absolute;
    top: 69px;
    left: 154px;
    width: 1px;
    height: 86px;
    background: linear-gradient(180deg, #5E86FF 0%, #D9E9FF 100%);
}
.tru_item03 .h_line::before{
    content: '';
    position: absolute;
    top: 78px;
    left: -2px;

    width: 5px;
    height: 5.5px;
    background: linear-gradient(180deg, #5E86FF 0%, #D9E9FF 100%);
    /* background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 5 5.5'%3E%3Cpolygon points='2.5,0 0,5 5,5'/%3E%3C/svg%3E"); */
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 5 5.5'%3E%3Cpolygon points='2.5,0 0,5 5,5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    
}

.tru_item03 .h_line::after{
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;

    width: 5px;
    height: 5.5px;
    /* 注意这里的 #f90f90 要转成 fill='%23f90f90' */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 5 5.5'%3E%3Cpolygon points='0,0 5,0 2.5,5.5' fill='%235E86FF'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
}
.tru_item03 .tru_dec::before{

}

.tru_item03 .post_wp{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    /* margin-bottom: 20px; */


    border-radius: 16px;
    border: 1px solid #5E86FF;
    background: linear-gradient(180deg, #F4F7FF 0%, #F3FBFF 100%);

    padding: 10px;


    font-weight: 400;
    font-size: 16px;
    line-height: 23px;
    color: #556288;

    
}

/* item04 */
.tru_item04 .tru_dec{
    position: relative;

    background: url(/static/index/images/home/tru_item04_bg.webp?v=__VER__) no-repeat center center;
    background-size: 100% auto;

    display: flex;
    align-items: flex-start;
    justify-content: center;

    padding: 16px;
}

.tru_item04 .post_wp{
    position: absolute;
    top: 96px;
    right: 81px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    /* margin-bottom: 20px; */


    /* border-radius: 16px;
    border: 1px solid #5E86FF;
    background: linear-gradient(180deg, #F4F7FF 0%, #F3FBFF 100%); */

    padding: 0 16px;


    font-weight: 400;
    font-size: 16px;
    line-height: 75px;
    color: #6C3C7D;

    
}

.agger_wrap{
    margin-top: 164px;
}
.agger_title{

}
.agr_tit{
    font-family: Aspekta;
    font-weight: 700;
    font-size: 36px;
    line-height: 60px;
    text-align: center;

    color: var(--theBcColor);
}
.agr_tit span{
    font-size: 46px;
    line-height: 60px;

    background: linear-gradient(90deg, #285DFF 0%, #C728FF 100%);
    background-clip: text;
    color: transparent;
    display: inline-block;


}

.agger_tips{
    margin-top: 16px;

    font-family: Aspekta;
    font-weight: 400;
    font-size: 16px;
    line-height: 23px;
    text-align: center;

    color: #666666;

}
.agr_tit_list{
    margin-top: 16px;
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 40px;
}
.agr_tit_item{
    display: flex;
    align-items: center;
    gap: 8px;
}
.agr_tit_txt{
    font-family: Aspekta;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    text-align: center;

    color: #666666;
}

.agr_list_wp{
    margin-top: 64px;

    display: flex;
    flex-wrap: wrap;

    gap: 20px;
}

.agr_lst_item{
    width: 540px;
    height: 330px;
    
    border-radius: 10px;
    border: 1px solid #E6EBF3;

    padding: 32px;
    background: linear-gradient(180deg, #fff 0%, #fff 91.52%);

    transition: all .3s ease-in-out;

    /* background: pink; */

}
.agr_lst_item:hover{


    background: linear-gradient(180deg, #EEF2FF 0%, #FFFFFF 91.52%);
    /* background: blue; */
    box-shadow: 0px 4px 18px 0px #285DFF1F;



}
.agr_lst_item.agr_item_big{
    width: 640px;
}
.agr_lst_item img{
    width: 82px;
}
.agr_item_tit{
    margin-top: 14px;

    font-family: Aspekta;
    font-weight: 600;
    font-size: 22px;
    line-height: 31px;

    color: var(--theBcColor);
}
.agr_item_dec{
    margin-top: 16px;

    font-family: Aspekta;
    font-weight: 400;
    font-size: 16px;
    line-height: 27px;

    color: #666;
}


/* -----enter------------------- */
.enterprise_wrap{
    margin-top: 168px;
}
/* tit_end */
.enterpr_title{
    display: flex;
    flex-direction: column;
    align-items: center;

}
.enth2_title{
    font-weight: 700;
    font-size: 36px;
    line-height: 51px;
    text-align: center;

    color: var(--theBcColor);
}
.ent_txt{
    margin-top: 16px;
    font-family: Aspekta;
    font-weight: 400;
    font-size: 16px;
    line-height: 23px;
    text-align: center;

    color: #666666;
}
.ent_tips{
    display: flex;
    align-items: center;
    gap: 4px;
    font-family: Aspekta;
    font-weight: 300;
    font-size: 12px;
    line-height: 20px;

    color: var(--theBcColor);

    background: #F1FFFA;
    border: 1px solid #01C47B;
    border-radius: 32px 18px 18px 0px; 

    padding: 2px 10px;
}

.ent_tips img{
    width: 12px;
}
/* tit_end */


/* 核心网格容器 */
.grid-container {
    margin-top: 54px;
    margin-bottom: 164px;

    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 1200px;
    max-width: 100%;
}

.ent_card {
    /* flex:1; */
    background: #ffffff;
    border: 1px solid #E6EBF3;
    border-radius: 10px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;

    transition: all .3s ease-out;
}

.ent_card:hover {
    background: url(/static/index/images/home/pink_bg.webp?v=__VER__) no-repeat right;
    background-size: 100% 100%;

    box-shadow: 0px 4px 16px 0px #285DFF1F;

}

.card_1, .card_2{
    width: 590px;
    height: 348px;
}

.ent_row_top{
    display: flex;
    gap: 20px;
}

.ent_row_bottom{
    display: flex;
    gap: 20px;
}
.card_3{
    width: 440px;
    height: 580px;
}

.ent_right_zone{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.ent_right_zone_top{
    display: flex;
    gap: 20px;
}
.ent_right_zone_top .ent_card{
    width: 358px;
    height: 292px;
}

.ent_right_zone .card_6{
    width: 740px;
    height: 268px;
}
.ent_icon{
    width: 48px;
}


/* 文本与标签样式填充 */
.icon { font-size: 24px; margin-bottom: 16px; color: #4a5568; }
.ent_title {
     margin-top: 20px;
     font-size: 20px; 
     font-weight: 500; 
     line-height: 29px;
     color: var(--theBcColor); 
    }
.ent_desc { margin-top: 16px;font-size: 15px;font-weight: 400; line-height: 25px; color: #718096;  }
.ent_tags { display: flex; gap: 8px; }
.ent_tag { 
     background: #FDF7FF;
     padding: 2px 6px;
     border-radius: 4px;
     font-size: 12px;
     font-weight: 300;
     color: var(--theBcColor);
     border: 1px solid rgba(209, 79, 255, 0.24)
}

/* -----enter--------end---------- */

.config_wrap{
    margin-top: 164px;
    height: 761px;
    background: url(/static/index/images/home/configure_bg.webp?v=__VER__) repeat-x;
    background-size: 1920px 787px;
}
.config_title{
    position: relative;
    
}
.cfig_title{
    padding-top: 80px;
    font-family: Aspekta;
    font-weight: 700;
    font-size: 36px;
    line-height: 56px;
    text-align: center;

    color: var(--theBcColor);

}
.cfig_title span{
    font-family: Aspekta;
    font-weight: 700;
    font-size: 46px;
    line-height: 56px;

    text-align: center;


    background: linear-gradient(90deg, #285DFF 0%, #C728FF 100%);
    background-clip: text;
    color: transparent;
    display: inline-block;

}
.cfig_txt{
    margin-top: 16px;
    font-family: Aspekta;
    font-weight: 400;
    font-size: 16px;
    line-height: 23 px;
    text-align: center;

    color: #666;

}

.tips_01{
    position: absolute;
    top: 122px;
    left: -146px;
    /* width: 50%; */
    width: 122px;
    /* height: 50px; */
}
.tips_02{
    position: absolute;
    top: 184px;
    right: -160px;
    /* width: 50%; */
    width: 122px;

}

/* ------tab---------------------------------------- */
/* 轮播外层大容器 */
    .carousel-container {
      margin-top: 64px;
      
      display: flex;
      justify-content: space-between;
      gap: 60px;
      width: 1200px;
      height: 450px;
      /* background: #ffffff; */
      /* border-radius: 16px; */
      /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05); */
      /* padding: 30px; */
      
    }

    /* ==========================================
       左侧文字区域样式（完全静态，绝不跳动）
       ========================================== */
    .left-steps {
      flex: 1;
      display: flex;
      flex-direction: column;
      /* justify-content: center; */
      gap: 16px;
    }

    .step-item {
      display: flex;
      gap: 20px;
      cursor: pointer;

      min-height: 125px;
      /* padding: 15px; */
      border-radius: 12px;
      /* 仅对颜色和透明度进行平滑过渡，不涉及任何高度和位移 */
      transition: background-color 0.3s ease, opacity 0.3s ease;
    }

    /* 未激活状态：文字全部显示，但整体半透明，视觉上归为背景 */
    .step-item:not(.active) {
      /* opacity: 0.4; */
    }

    /* 激活状态样式 */
    .step-item.active {
      opacity: 1;
      /* background-color: #f1f5f9; */
    }

    /* 序号圆圈样式 */
    .step-number {
        position: relative;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: #E2E9FF;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 600;
        color: #285DFF;
        font-size:  16px;
        flex-shrink: 0;
        transition: background-color 0.3s ease, color 0.3s ease;
    }
    .step-number::before{
        content: '';
        position: absolute;
        top: 48px;
        left: 16px;
        width: 2px;
        height: 85px;
        background: #99AFF7;
        border-radius: 2px;
    }

    .step-item:last-child .step-number::before{
        display: none;
    }

    .step-item.active .step-number {
      background: #2563eb;
      color: #ffffff;
    }

    .step-content h3 {

        font-family: Aspekta;
        font-weight: 500;
        font-size: 16px;
        line-height: 27px;

        color: var(--theBcColor);
        margin-bottom: 12px;
    }
    .step-item.active .step-content h3 {
        color: #285DFF;
        font-weight: 700;

    }

    /* 核心改动：描述文字一直保持完全显示，没有任何隐藏或折叠逻辑 */
    .step-desc {
        font-family: Aspekta;
        font-weight: 400;
        font-size: 14px;
        line-height: 23px;

        color: #666;
    }

    /* ==========================================
       右侧图片面板区域（保持丝滑淡入淡出）
       ========================================== */
    .right-display {

      /* flex: 1; */
      /* background: #f8fafc; */
      /* border: 1px solid #e2e8f0; */
      border-radius: 12px;
      position: relative; /* 必须是相对定位，供子元素绝对定位重叠 */
      overflow: hidden;

      width: 522px;
      height: 332px;

      background: url(/static/index/images/home/config_right_bg.webp?v=__VER__) no-repeat;
      background-size: cover;


    }

    .display-panel {
      position: absolute; /* 绝对定位，所有面板重叠在一起 */
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      padding: 0 30px;
      display: flex;
      align-items: center;
      justify-content: center;
      
      /* 初始状态：完全透明，且不响应鼠标 */
      opacity: 0;
      pointer-events: none;
      
      /* 控制右侧面板透明度过渡时间为 0.5s */
      transition: opacity 0.5s ease-in-out; 
    }

    /* 被激活的目标面板：平滑显现，恢复鼠标响应 */
    .display-panel.active {
      opacity: 1;
      pointer-events: auto;
    }

    /* 模拟图中的卡片窗口 */
    .mock-window {
      width: 100%;
      height: 100%;
      /* background: #ffffff;
      border-radius: 8px;
      border: 1px solid #e2e8f0;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05); */
      display: flex;
      flex-direction: column;
      overflow: hidden;
    }

    .window-header {
        font-family: Aspekta;

        font-weight: 600;
        font-size: 22px;
        line-height: 56px;
        text-align: center;

        /* background: linear-gradient(180deg, #285DFF -59.16%, #C728FF 43.82%, #EDC600 157.19%); */
        background: linear-gradient(180deg, #285DFF -16%, #C728FF 43.82%, #EDC600 100%);

        background-clip: text;
        color: transparent;
        display: inline-block;
    }

    .window-body {
      
        margin-top: 14px;

        flex: 1;
        /* padding: 20px;  */
        display: flex;
        flex-direction: column;
        justify-content: center;
        /* gap: 12px; */
        /* background-color: #fafafa; */
        border: 1px solid red;
    }
    
    .mock-input {
      background: #fff;
      border: 1px solid #e2e8f0;
      padding: 10px;
      border-radius: 6px;
      font-size: 13px;
      color: #94a3b8;
    }

    .home_faq_wrap{
        margin-top: 138px;
        display: flex;
        justify-content: space-between;
        
    }
    .home_faq_tit{
        max-width: 291px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    .home_faq_tit_txt{
        padding: 4px 16px;
        border-radius: 3px;
        background: linear-gradient(270deg, #C728FF 0%, #285DFF 100%);

        font-family: Aspekta;
        font-weight: 500;
        font-size: 14px;
        line-height: 20px;

        color: #FFFFFF;

    }
    .h_faq_tit{
        font-family: Aspekta;
        font-weight: 700;
        font-size: 48px;
        line-height: 72px;

        color: var(--theBcColor);

    }
    .home_faq_dec{
        width: 790px;
        /* height: 100px; */
        /* border: 1px solid red; */

        font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        box-sizing: border-box;
    }


    /* -------home_faq_dec---------------------------------------------- */
    /* 容器样式 */
    .faq-container {
      max-width: 900px;
      margin: 40px auto;
      padding: 0 20px;
      font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
      box-sizing: border-box;
    }

    /* 每一个 FAQ 卡片的默认状态 */
    .faq-item {
      background: #ffffff;
      border: 1px solid #eaeaea;
      border-radius: 16px;
      margin-bottom: 16px;
      overflow: hidden;
      transition: border-color 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    }

    /* 激活状态下的视觉还原 */
    .faq-item.is-active {
      background-color: #f7faff;
      border-color: #3b82f6;
      box-shadow: 0 4px 20px rgba(59, 130, 246, 0.04);
    }

    /* 头部触发区 */
    .faq-header {
      padding: 24px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      /* user-select: none; */
    }

    .faq-question {
      margin: 0;
      font-size: 16px;
      color: #111827;
      font-weight: 600;
      line-height: 1.4;
    }

    /* 右侧加减号图标外圈 */
    .icon-toggle {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 28px;
      height: 28px;
      border-radius: 50%;
      background: #f3f4f6;
      color: #4b5563;
      transition: background-color 0.3s ease, color 0.3s ease;
      flex-shrink: 0;
      margin-left: 16px;
    }

    /* 激活状态下图标变为蓝底白字 */
    .faq-item.is-active .icon-toggle {
      background: #2563eb;
      color: #ffffff;
    }

    /* 动画包裹层 */
    .faq-content-wrapper {
      overflow: hidden;
      transition: height 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
    }

    /* 真实内容层 */
    .faq-content {
      padding: 0 24px 24px 24px;
    }

    .faq-content p {
      margin: 0;
      font-size: 14px;
      line-height: 1.6;
      color: #6b7280;
    }




     /* -------home_faq_dec----end------------------------------------------ */

    


/* models -------- */
.models_wrap{

}
.models_title{
    margin-top: 164px;
    font-weight: 700;
    font-size: 48px;
    line-height: 77px;
    text-align: center;

}
.models_txt{
    margin-bottom: 32px;

    font-family: Aspekta;
    font-weight: 400;
    font-size: 16px;
    line-height: 23px;

    text-align: center;

    color: #666; 
}

/* models --end------ */


/* -------Customers Say------------------------------------------- */
.customers {
    margin: 0 auto;
    max-width: 1360px;
    width: 100%;
    height: 682px;
    background: #F3F6F8;
    border-radius: 48px;
    display: flex;
    justify-content: center;
}

/* 统一内部承载视窗固定为 1200px 严格对齐 */
.mar_1200 {
    width: 1200px;
    position: relative;
}

/* 头部标题与按钮区域 */
.header-zone { 
    padding-top: 60px;
    display: flex; 
    justify-content: space-between; 
    align-items: flex-end; 
    margin-bottom: 32px; 
}
.title-main { 
    font-size: 30px; 
    font-weight: 700; 
    color: #111827; 
    margin-bottom: 8px; 
}
.title-sub { 
    color: #6b7280; 
    font-size: 14px; 
}

/* 右上角切换按钮 */
.btn-group { 
    display: flex; 
    gap: 12px; 
}
.nav-btn { 
    width: 30px; 
    height: 30px; 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    border: none; 
    background: #EBF0FF; 
    cursor: pointer; 
    color: #4b5563;
    transition: all 0.2s ease; 
}
.nav-btn:hover:not(:disabled) { 
    background: #285DFF; 
}
.nav-btn:disabled { 
    background: #e5e7eb; 
    color: #9ca3af; 
    cursor: not-allowed; 
}

.cut_btn_L {
    width: 14px;
    height: 14px;
    background: url(/static/index/images/home/btn_b.webp?v=__VER__) no-repeat;
    background-size: 100% 100%;
    transform: rotate(-66deg);
    transition: all 0.2s;
}
.nav-btn:hover:not(:disabled) .cut_btn_L {
    background: url(/static/index/images/home/btn_w.webp?v=__VER__) no-repeat;
    background-size: 100% 100%;
    transform: rotate(0deg);
}

.cut_btn_R {
    width: 14px;
    height: 14px;
    background: url(/static/index/images/home/btn_b.webp?v=__VER__) no-repeat;
    background-size: 100% 100%;
    transform: rotate(0deg);
    transition: all 0.2s;
}
.nav-btn:hover:not(:disabled) .cut_btn_R {
    background: url(/static/index/images/home/btn_w.webp?v=__VER__) no-repeat;
    background-size: 100% 100%;
    transform: rotate(66deg);
}

/* 轮播可视窗口与滑动轨道 */
.slider-window { 
    overflow: hidden; 
    /* width: 100%; */
    width: 1201px;
}

.slider-track { 
    display: flex; 
    gap: 24px; /* 卡片之间的物理间距固定为 24px */
    width: 100%;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1); 
}

/* 3列严格平分，减去两个 gap(48px) 的三分之一 */
.card-item { 
    width: calc((100% - 48px) / 3); 
    flex-shrink: 0; 
}

/* 卡片主体样式 */
.card-body { 
    background: #fff; 
    border-radius: 10px; 
    padding: 24px; 
    box-shadow: 0 1px 3px #E6EBF3; 
    border: 1px solid #E6EBF3; 
    transition: all 0.3s ease-out;
    position: relative; 
    height: 418px; 
    display: flex; 
    flex-direction: column; 
    justify-content: space-between; 
}
.card-body:hover { 
    border-color: #285DFF; 
    box-shadow: 0px 4px 16px 0px #285DFF14;
}

/* 星级与文本 */
.cust_stars { 
    width: 112px;
    height: 16px;
    background: url(/static/index/images/home/star_y.webp?v=__VER__) no-repeat;
    background-size: 100%;
    transition: all 0.3s ease-out;
}
.card-body:hover .cust_stars { 
    background: url(/static/index/images/home/star_b.webp?v=__VER__) no-repeat;
    background-size: 100%;
}

.cst_comment { 
    margin-top: 20px;
    color: #7B7B7B; 
    font-size: 15px; 
    font-weight: 400;
    line-height: 25px; 
    position: relative; 
    z-index: 10; 
}

/* 用户头像信息区域 */
.user-info { 
    display: flex; 
    align-items: center; 
    gap: 12px; 
}
.avatar { 
    width: 48px; 
    height: 48px; 
    border-radius: 50%; 
    object-fit: cover; 
}
.username { 
    font-size: 16px; 
    font-weight: 400; 
    line-height: 21px;
    color: #19181B; 
}
.designation { 
    margin-top: 8px;
    font-size: 14px; 
    font-weight: 400; 
    line-height: 21px;
    color: #9F9F9F; 
}

/* 背景大双引号 */
.quote-bg { 
    position: absolute; 
    right: 24px; 
    bottom: 122px; 
    width: 147px;
    height: 108px;
    background: url(/static/index/images/home/quote-bg.webp?v=__VER__) no-repeat;
    pointer-events: none; 
}


/* -------Customers Say--end------------------------------------------- */





