@charset "UTF-8";

.header_bg{
    /* margin-bottom: -14px;
    height: 140px; */
    height: 136px;
    background: url(/static/index/images/home/home_header_bg.webp) no-repeat;
   
}

.page-wrapper{
    overflow: hidden;
}

/* ---------------------------------------------- */
.banner_Wrap{
    width: auto;
    height: 687px;

    display: flex;
    align-items: center;
    
}
.bannerContent{
    position: relative;

    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;

}
.banner_desc02{
    margin-top: 10px;

    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: 28px;
}
.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{
    position: relative;
    z-index: 2;
    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) 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) no-repeat;
    background-size: 100%  100%;
}

.banner-right{
    position: absolute;
    top: -100px;
    right: -86px;
    /* max-width: 576px; */

    /* width: 548px;
    width: 687px; */

    /* border: 1px solid #000; */
    /* border: 1px solid red; */
    width: 550px;
    /* height: 687px; */
}

.banner-right::after{
    content: '';
    position: absolute;
    top: -137px;
    right: -275px;
    z-index: 1;

    width: 1053px;
    height: 954px;

    background: url(/static/index/images/pricing/top_right_banner.webp) no-repeat;


}


.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 5px 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_tit_wrap{
    display: flex;
    justify-content: center;

    padding-bottom: 54px;
    /* margin-top: 42px; */
}
.marquee_tit{
    position: relative;

    font-size: 18px;
    font-weight: 500;
    line-height: 23px;
    color: var(--theBcColor);


}
.marquee_tit_l{
    position: absolute;
    top: 12px;
    left: -122px;
    width: 96px;
    height: 1px;
    background: linear-gradient(90deg, #FFFFFF 0%, #DF83FF 57.69%, #C728FF 100%);
}
.marquee_tit_l::before{
    content: "";
    position: absolute;
    top: -2px;
    right: -2px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #C728FF;

}

.marquee_tit_r{
    position: absolute;
    top: 12px;
    right: -122px;
    width: 96px;
    height: 1px;
    background: linear-gradient(90deg,  #C728FF 0%, #FFFFFF 100%);



}
.marquee_tit_r::before{
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #C728FF;

}




/* ----------------------------------------------- */

.token_pack{
    position: relative;

    margin-top: 184px;

}

.token_pack_title{
    font-family: Aspekta;
    font-weight: 700;
    font-size: 36px;
    line-height: 51px;
    text-align: center;

    color: var(--theBcColor);

}

.token_pack_txt{
    margin-top: 16px;
    margin-bottom: 54px;

    font-family: Aspekta;
    font-weight: 400;
    font-size: 16px;
    line-height: 23px;
    text-align: center;

    color: #666;


}

.token_pack_title_bg{
    position: absolute;
    top: -73px;
    left: 58px;

    width: 202px;

}

.banner_title{

    font-family: Aspekta;
    font-weight: 700;
    font-size: 36px;
    line-height: 51px;

    color: var(--theBcColor);

}
.banner_txt{
    margin-top: 16px;
    font-family: Aspekta;
    font-weight: 400;
    font-size: 16px;
    line-height: 23px;
    text-align: center;

    color: #666;
}
.banner_list{
    margin-top: 16px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}
.ban_lt_item{
    display: flex;
    

    gap: 8px;


    font-family: Aspekta;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;

    color: #666;
}
.ban_lt_item img{
    width: 16px;
    height: 16px;
}


/* -----------token_pack-dec------------------------------------------------------ */

/* 限制总宽度为 1200px 居中 */
.pricing-wrapper {
    
    margin-bottom: 100px;

    width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 24px;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* 基础卡片样式 */
.pricing-card {
    flex: 1;
    background: linear-gradient(180deg, #F3F6FF 0%, rgba(255, 255, 255, 0) 155px);



    border: 1px solid #E6EBF3;
    border-radius: 16px;
    padding: 24px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

.pricing-card:hover {
    border: 1px solid #285DFF;
    box-shadow: 0px 4px 16px 0px #285DFF14;

}

/* 中间热门卡片高亮边框 */
.pricing-card.popular {

    background: #fff;
    border: 1px solid transparent;
    border-radius: 20px;
    background-clip: padding-box, border-box;
    background-origin: padding-box, border-box;
    background-image: linear-gradient(to right, #fff, #fff), 
                    linear-gradient(180deg, #285DFF 0%, #C728FF 100%);

    border-width: 1px 1px 1px 1px;

    box-shadow: 0px 4px 16px 0px #285DFF1A;


}

/* 头部标题与徽章布局 */
.card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 32px;
}
.card-header_dz{
    margin-bottom: 44px;
}
.plan-title {
    
    font-family: Aspekta;
    font-weight: 500;
    font-size: 16px;
    line-height: 23px;

    color: var(--theBcColor);
    margin: 0;

}

.pricing-badges {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    flex-wrap: wrap;
}

/* Most Popular 徽章 */
.popular-badge {
    display: flex;
    align-items: center;
    gap: 6px;

    



    padding: 0 10px;
    height: 23px;
    border-radius: 30px;
    
    
    border: 1px solid transparent;
    border-radius: 20px;
    background-clip: padding-box, border-box;
    background-origin: padding-box, border-box;
    background-image: linear-gradient(to right, #ECEBFD, #ECEBFD), 
                    linear-gradient(to right, #B740F3, #295EFF);
}
.popular-badge img{
    width: 16px;
}

.popular-badge span{
    font-size: 12px;
    font-weight: 500;

    background: linear-gradient(90deg, #285DFF 0%, #C728FF 75%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.onetime-badge {
    background:#FFE2E3;
    border: 1px solid #F96B7E;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}
.onetime-badge img{
    width: 14px;
    height: auto;

}

.onetime-badge .only {
    font-size: 13px;
    font-weight: 300;
    line-height: 13px;
    color: #A3153D;
    background: none;
}

.popular_badge_new1{
    border: 1px solid #EDECEC;
    border-radius: 4px;
    background: #F5F5F5;
    padding: 2px 5px;

    font-size: 12px;
    font-weight: 300;
    color: var(--theBcColor);
}

/* 价格样式 */
.price-container {
}
.currency {
    font-family: Aspekta;
    font-weight: 800;
    font-size: 36px;
    line-height: 36px;

    color: var(--theBcColor);
}
.currency_dz{
    font-family: Aspekta;
    font-weight: 500;
    font-size: 24px;
    line-height: 24px;

    color: var(--theBcColor);   
}
.period{
    font-family: Aspekta;
    font-weight: 400;
    font-size: 12px;
    line-height: 17px;

    color: #666;
    margin-left: 4px;
}
.popular .currency {
    color: #2b66ff; /* 中间卡片价格蓝色 */
}
.price-sub {
    font-family: Aspekta;
    font-weight: 400;
    font-size: 12px;
    line-height: 17px;

    color: #666;
}

/* 核心代币面板区域 */
.token-panel {
    margin-top: 32px;
    background-color: #F7F8FD;
    border-radius: 16px;
    padding: 24px 16px;
    margin-bottom: 32px;
    box-sizing: border-box;
}

.token-panel_dz .amount_received, .token-panel_dz .gift_received{
    line-height: 20px;
}
.token-panel_dz .amount_received span, .token-panel_dz .gift_received span{
    line-height: 20px;
    font-size: 14px;
    font-weight: 400;
    color: var(--theBcColor);
}
.token-panel_dz {
    margin-top: 32px;
    background-color: #F4F4F4;
    border-radius: 16px;
    padding: 24px 16px 9px;
    margin-bottom: 32px;
    box-sizing: border-box;
}
.tips_amount{
    margin-top: 10px;
    font-family: Aspekta;
    font-weight: 350;
    font-size: 12px;
    line-height: 17px;

    color: #666;
}

/* 中间卡片专属星空渐变面板 */
.popular .token-panel {
    position: relative;
    background: linear-gradient(270deg, #FFFFFF 0%, #FFF8F8 100%);
    overflow: hidden;
}

.popular .token-panel::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 134px;
    background:url(/static/index/images/pricing/active_bg.webp) no-repeat;
    background-size: cover;


}
.popular .highlight-num{
    /* font-size: 12px;
    font-weight: 500; */

    /* background: linear-gradient(90deg, #285DFF 0%, #C728FF 75%); */
    background: #C728FF;

    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.popular .highlight-num2{
    /* font-size: 12px;
    font-weight: 500; */

    /* background: linear-gradient(90deg, #285DFF 0%, #C728FF 75%); */
    background: linear-gradient(270deg, #FA4B6B 0%, #C728FF 46.63%, #6754E4 100%) !important;

    -webkit-background-clip: text !important;
    background-clip: text !important;
    color: transparent !important;
}

.token-main {
    
    
    display: flex;
    align-items: center;

    gap: 4px;
    margin-bottom: 4px;

    font-family: Aspekta;
    font-weight: 300;
    font-size: 13px;
    line-height: 19px;

    color: #666;
}
.token-main .highlight-num {
    margin-right: 10px;
    font-family: Aspekta;
    font-weight: 600;
    font-size: 18px;
    line-height: 26px;

    color: #4A5568;
}
.amount_received{
    margin-bottom: 12px;
}
.amount_received, .gift_received{
    display: flex;
    align-items: center;
    justify-content: space-between;


    font-family: Aspekta;
    font-weight: 400;
    font-size: 14px;
    line-height: 26px;

    color: #666;

    position: relative;
    z-index: 3;
}
.amount_received span, .gift_received span {
    font-family: Aspekta;
    font-weight: 600;
    font-size: 18px;
    line-height: 26px;

    color: #285DFF;
}
.gift_received .highlight-num2{
    color: #EA661A;

}
.cz_tit{
    margin-top: 16px;

    font-family: Aspekta;
    font-weight: 350;
    font-size: 12px;
    line-height: 17px;

    color: #666;
}


/* 闪电图标颜色 */
.icon-thunder { color: #2b66ff; }
.popular .icon-thunder { color: #8a38ff; }

.lighting{
    display: inline-block;

    width: 16px;
}


.token-desc {
    font-family: Aspekta;
    font-weight: 300;
    font-size: 12px;
    line-height: 17px;

    color: #666;

}
.token-rate {
    display: flex;
    align-items: center;
    gap: 10px;
    

    margin-top: 16px;
    
    font-family: Aspekta;
    font-weight: 300;
    font-size: 14px;
    line-height: 20px;

    color: var(--theBcColor);
}
.token-rate span {
    font-family: Aspekta;
    font-weight: 600;
    font-size: 16px;
    line-height: 23px;

    color: #4A5568;
    
}
.popular .token-rate span {
    /* color: #8a38ff; */

    background: linear-gradient(270deg, #FA4B6B 0%, #C728FF 46.63%, #6754E4 100%);

    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* 功能特点列表 */
.features-list {
    margin: 0 0 36px 0;
    

    display: flex;
    flex-direction: column;
    gap: 12px;
}
.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;

    font-family: Aspekta;
    font-weight: 400;
    font-size: 14px;
    /* line-height: 23px; */

    color: #666;


}
.check_icon {
    width: 16px;
}

/* 底部按钮基础样式 */
.btn-plain, .action-btn {
    width: 100%;
    height: 40px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 450;
    cursor: pointer;

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;

    box-sizing: border-box;
    
    transition: all 0.3s ease-in-out;
}
.btn-plain:hover {
    opacity: 0.95;

    gap: 15px;
    color: #fff;
    background: #285DFF;
}
.action-btn:hover{
    opacity: 0.95;
    gap: 15px;
}

.btn-plain:hover .shopcart_icon{
    width: 20px;
    height: 20px;
    background: url(/static/index/images/pricing/buy_icon_w.webp) no-repeat;
    background-size: 100% 100%;
}

/* 样式一：白底黑字普通按钮 */
.btn-plain {
    display: flex;

    background: #ffffff;
    border: 1px solid #E6EBF3;
    
    color: #1f2329;
}
/* 样式二：中间高亮渐变按钮 */
.btn-gradient {
    background: linear-gradient(90deg, #2b66ff 0%, #ca26ff 100%);
    border: none;
    color: #ffffff;
}
.btn-gradient .shopcart_icon{
    width: 20px;
    height: 20px;
    background: url(/static/index/images/pricing/buy_icon_w.webp) no-repeat;
    background-size: 100% 100%;
}

.shopcart_icon{
    width: 20px;
    height: 20px;
    background: url(/static/index/images/pricing/buy_icon_b.webp) no-repeat;
    background-size: 100% 100%;
}

.contact_icon{
    width: 20px;
    height: 20px;
    background: url(/static/index/images/pricing/help_icno.webp) no-repeat;
    background-size: 100% 100%;
}

.btn-plain.btn_contact:hover{

    background: var(--theBcColor);
    color: #fff;
}

.action-btn:hover .contact_icon{
    width: 20px;
    height: 20px;
    color: #fff;
    background:url(/static/index/images/pricing/help_icno_w.webp) no-repeat;
    background-size: 100% 100%;
}

.btn-plain_dz, .btn-plain_dz:hover{
    color: #fff;
    background: var(--theBcColor);
}

.contact_dz_icon{
    width: 20px;
    height: 20px;
    background: url(/static/index/images/pricing/buy_icon_w.webp) no-repeat;
    background-size: 100% 100%;
}

/* -----------token_pack-dec---------end--------------------------------------------- */


.tran_wrap{
    margin-top: 184px;
    position: relative;

    margin-bottom: 174px;
    



}

/* .tran_wrap::before{
    content: "";
    position: absolute;
    top: -94px;
    left: 0;
    background: url(/static/index/images/pricing/table_bg.webp) no-repeat center;
    width: 100%;
    height: 235px;


    z-index: -1;
} */

.tran_w_dec{
    position: relative;
    z-index: 2;

   
    /* border-radius: 36px; */
    /* border: 1px solid #F2F2F2; */
    /* background: #FFFFFF; */

    /* padding: 48px 20px; */

    /* box-shadow: 0px 3px 16px 0px #0000000F; */

}


.tran_h2{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.banner_title{

}
.tran_tips{

}
.tran_tips img{
    width: 28px;
}
.tran_txt{
    margin: 16px 0 54px;
    padding: 0 15px;
    font-family: Aspekta;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    text-align: center;

    color: #666;

}



.item_tit_list{
    display: flex;
    flex-wrap: wrap;

    background: #F0F4FF;
}
.tran_dv{
    display: flex;
    align-items: center;

    padding-left: 20px;

    font-family: Aspekta;
    font-weight: 400;
    font-size: 14px;

    color: var(--theBcColor);

}
.tran_tit1{
    /* width: 197px; */
    height: 98px;

    font-family: Aspekta;
    font-weight: 550;
    font-size: 18px;

    color: var(--theBcColor);
}
.tran_tit2{
    /* width: 170px; */
    height: 98px;

    font-family: Aspekta;
    font-weight: 550;
    font-size: 18px;

    color: var(--theBcColor);
}
.tran_tit3{
    /* width: 280px; */
    height:98px;

    font-family: Aspekta;
    font-weight: 550;
    font-size: 18px;

    color: var(--theBcColor);
}
.tran_tit4{
    width: 308px;
    height: 68px;
}
.tran_tit5{
    width: 197px;
    height: 68px;
}

.tran_item_list{
    display: flex;
    flex-wrap: wrap;

    /* border-bottom: 1px solid #E6EBF3; */

    transition: all .2s ease-out;

    background:#fff;


    display: grid;
    grid-template-columns: repeat(3, 1fr);
}
.tran_item_list:hover{
    background:#F3F7FF;
    
}


.tran_item_list:nth-child(2){
    background:#F7FBFF;
}
.tran_item_list:nth-child(4){
    background:#F9F7FE;
}
.tran_item_list:nth-child(6){
    background:#FFF8EF;
}


.tran_item_list:nth-child(4) div span{
    display: flex;
    background: linear-gradient(90deg, #285DFF 0%, #C728FF 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.tran_item_list:nth-child(6) div{
    color: #9E5D30;
}

.tran_item_list:last-child{
    border: 0;
}

.tran_item_list div{
    display: flex;
    align-items: center;

    height: 88px;

    padding-left: 20px;

    font-family: Aspekta;
    font-weight: 400;
    font-size: 14px;

    color: #666;
}
.tran_item_list .tran_info1{
    /* width: 197px;
    height: 78px; */

    /* font-family: Aspekta;
    font-weight: 400;
    font-size: 15px;

    color: var(--theBcColor); */
}
.tran_info2{
    /* width: 170px;
    height: 78px; */
}
.tran_info3{
    /* width: 280px;
    height: 78px; */
}
.tran_info4{
    width: 308px;
    height: 78px;
}
.tran_info5{
    width: 197px;
    height: 78px;
}

.tran_btn_wrap{
    margin-top: 54px;
    display: flex;
    justify-content: center;
}

.tran_btn{
    display: flex;
    align-items: center;
    gap: 10px;

    height: 48px;
    border-radius: 8px;
    padding: 0 32px;

    font-weight: 700;
    font-size: 16px;

    color: #fff;

    background: #285DFF;

    transition: all .3s ease-in-out;
}

.tran_btn:hover{
    gap: 15px;

}
.tran_btn img{
    width: 16px;
}

/* Usage Est ----------------------------------*/
/* 外层渐变底座 */
.estimation-wrapper {
    position: relative;
    /* width: 1024px; */
    /* background: linear-gradient(135deg, #eef3ff 0%, #f9f6ff 50%, #f4f8ff 100%); */
    background: #F4F7FF url(/static/index/images/pricing/zuo-down.webp) no-repeat left bottom;
    background-size: 582px 288px;
    border-radius: 36px;
    padding: 56px;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* box-shadow: 0 20px 40px rgba(0,0,0,0.03); */

    height: 490px;

    overflow: hidden;
}
.estimation-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;

    width: 620px;
    height: 337px;
    background: url(/static/index/images/pricing/zuo-up.webp) no-repeat;
    background-size: cover;


}
.estimation-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    z-index: 0;

    width: 620px;
    height: 337px;
    height: 100%;
    background: url(/static/index/images/pricing/you-up.webp) no-repeat;
    background-size: cover;


}

.estimation-wrapper .rb_img{
    position: absolute;
    right: 0;
    bottom: 0;
    width: 400px;
    height: 292px;

    background: url(/static/index/images/pricing/you-up_rb.webp) no-repeat;
    background-size: cover;
}


/* 左侧区域 */
.left-panel {
    flex: 1;
    max-width: 460px;

    position: relative;
    z-index: 1;
}
.tool-title {
    font-size: 38px;
    font-weight: 700;
    line-height: 54px;
    color: #1f2329;

    margin: 0 0 16px 0;

    width: 574px;
    /* border: 1px solid red;  */
}
.tool-title span{
    color: #285DFF;
}
.tool-desc {
    font-size: 16px;
    font-weight: 400;
    line-height: 23px;

    color: #666;

}
.panel_list{
    margin-top: 48px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    /* width: 600px; */
    
}
.panel_item{
    margin-right: 64px;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;

    color: #666;

    display: flex;
    align-items: flex-start;
    gap: 8px;

    min-width: 135px;
}
.panel_item img{
    margin-top: 4px;
    width: 16px;
}
.input-label {
    font-size: 14px;
    font-weight: 300;
    color: #666;
    margin-bottom: 10px;
}

/* 精准还原图片中的纯净数字输入框（没有加减号按钮） */
.custom-input-box {
    width: 100%;
    height: 40px;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid #e4e7ed;
    border-radius: 8px;
    padding: 0 12px;
    box-sizing: border-box;
    font-size: 16px;
    font-weight: 600;
    color: #1f2329;
    outline: none;
}
.custom-input-box:focus {
    border-color: #2b66ff;
}

/* 自定义滑动条：左蓝右紫渐变轨道，完全契合图片 */
.slider-container {
    margin-top: 24px;
    padding: 0 4px;
}
.el-slider {
    --el-slider-height: 8px !important;
}
.el-slider__runway {
    background-color: #ffffff !important;
}
.el-slider__bar {
    background: linear-gradient(90deg, #2b66ff 0%, #ca26ff 100%) !important;
}
/* 滑动轴上的圆形可拖拽按钮 */
.el-slider__button {
    width: 16px !important;
    height: 16px !important;
    border: 3px solid #6343ff !important;
    background-color: #ffffff !important;
    box-shadow: 0 2px 6px rgba(99, 67, 255, 0.3);
}

/* 右侧推荐卡片面板 */
.right-panel {
    position: relative;
    z-index: 1;

    display: flex;
    flex-direction: column;


    width: 491px;
    height: 394px;
    /* background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.8); */
    

    border-radius: 17px;
    padding: 36px;
    border: 1px solid  #F2F2F2;
    background: linear-gradient(180deg, rgba(240, 244, 255, 0.2) 0%, rgba(255, 255, 255, 0.01) 100%);
    box-shadow: 0px 4px 16px 0px #285DFF0D;


    background: linear-gradient(180deg, rgba(240, 244, 255, 0.2) 0%, rgba(255, 255, 255, 0.01) 100%);
    box-shadow: 0px 4px 16px 0px #285DFF0D;
    border: 1px solid var(--border3-f2f2f2, #F2F2F2)


}
.recommend-title {
    font-size: 20px;
    font-weight: 550;
    font-size: 20px;
    line-height: 29px;
    color: var(--theBcColor);

    display: flex;
    align-items: center;
    gap: 10px;
}
.recommend-title img{
    width: 20px;
    height: 20px;
}

.kf_list{
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.kf_item{
    display: flex;
    justify-content: space-between;

    font-size: 14px;
    font-weight: 400;
    color: #272B37;
}


/* 推荐套餐包按钮 */
.package-badge {
    margin-top: 53px;
    /* width: 100%; */
    height: 48px !important;
    line-height: 48px;
    padding: 0 24px;
    /* background: #ffffff; */
    
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 500;

    border: 1px solid transparent;
    border-radius: 8px;
    background-clip: padding-box, border-box;
    background-origin: padding-box, border-box;
    background-image: linear-gradient(to right, #f4f6ff, #f3f6fe), 
                    linear-gradient(to right, #285DFF, #C728FF);

    transition: all 0.3s ease-in-out;
    cursor: pointer;

}
.package-badge span{
    background: linear-gradient(90deg, #285DFF 0%, #C728FF 75%);
    /* border-image-source: linear-gradient(90deg, #285DFF 0%, #C728FF 100%); */
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;

    transition: all 0.3s ease-in-out;

}
.package-badge .arrow {
    /* font-size: 16px;
    font-weight: bold; */
    width: 16px;
    height: 16px;

    background: url(/static/index/images/pricing/cs_back_icon.webp) no-repeat;
    background-size: 100% 100%;

    
}

.package-badge:hover{
    background-image: linear-gradient(to right, #FDF6FF, #FDF6FF), 
                    linear-gradient(to right, #285DFF, #C728FF);

    gap: 12px;
}
.package-badge:hover span{
    /* background: linear-gradient(90deg, #fff 0%, #fff 75%); */
    /* border-image-source: linear-gradient(90deg, #285DFF 0%, #C728FF 100%); */
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.package-badge:hover .arrow {
    /* font-size: 16px;
    font-weight: bold; */
    /* width: 16px;
    height: 16px; */

    /* background: url(/static/index/images/pricing/w_back_icon.webp) no-repeat;
    background-size: 100% 100%; */
    

}

/* 分析文本区 */
.analysis-section {
    font-size: 14px;
    line-height: 1.6;
}
.analysis-label {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: var(--theBcColor);

    margin-bottom: 6px;
}
.analysis-current {
    font-weight: 400;
    font-size: 12px;
    line-height: 17px;
    color: #666;

    margin-bottom: 16px;
}
.analysis-tip {

    font-weight: 400;
    font-size: 13px;
    line-height: 19px;
    color: #666;
}
.highlight-orange {
    color: #ff8600;
    font-weight: 600;
}



/* Usage Est ---end-------------------------------*/

/* -----faq ---start----------------------------------------------- */

.home_faq_wrap{
    margin-top: 138px;
    margin-bottom: 164px;
    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: Aspekta;
    box-sizing: border-box;
}


/* -------home_faq_dec---------------------------------------------- */
/* 容器样式 */
.faq-container {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
    font-family: Aspekta;
    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------------------------------------------ */

/* -----faq ---start----------------------------------------------- */



/* -----Detailed------------------------------------------------------------------------ */


.detailed_wrap{
    position: relative;
    margin-top: 174px;
    margin-bottom: 180px;

}

.detailed_wrap::before{
    content: "";
    position: absolute;
    top: -94px;
    left: 0;
    background: url(/static/index/images/pricing/youzi_left.webp) no-repeat center;
    width: 904px;
    height: 1094px;
    z-index: -1;
}

.detailed_wrap::after{
    content: "";
    position: absolute;
    top: 0px;
    right: 0;
    background: url(/static/index/images/pricing/youzi_right.webp) no-repeat center;
    width: 883px;
    height: 1210px;
    z-index: -1;
}

.detail_w_dec{
    position: relative;
    z-index: 2;

   
    border-radius: 36px;
    border: 1px solid #F2F2F2;
    background: rgba(255, 255, 255, 0.1);

    padding: 48px 24px;
}


.detail_h2{
    margin-bottom: 64px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}


.table_box{
    border-radius: 24px;
    border: 1px solid #EEEEEE;
    overflow: hidden;

    box-shadow: inset 0 0 15px #efefef;
}

.item_tit_list{
    display: flex;
    flex-wrap: wrap;

    /* background: #F0F4FF;
    background: #FFFFFF; */
    background: rgba(255, 255, 255, 0.1);
    /* box-shadow: inset 0 0 15px #efefef; */


    display: grid;
    grid-template-columns: repeat(3, 1fr);


}
.detail_dv{
    display: flex;
    flex: 1;
    align-items: center;

    padding-left: 20px;

    font-family: Aspekta;
    font-weight: 500;
    font-size: 15px;

    color: var(--theBcColor);

    /* border: 1px solid green; */

}
/* .tran_tit1{
    width: 197px;
    height: 68px;
}
.tran_tit2{
    width: 170px;
    height: 68px;
}
.tran_tit3{
    width: 280px;
    height: 68px;
} */
.dtl_tit4{
    flex: 0 0 323px; 
    /* width: 323px; */
    height: 68px;

    
}


.det_item_list{
    display: flex;
    flex-wrap: wrap;

    border-bottom: 1px solid #E6EBF3;

    transition: all .2s ease-out;
}
.det_item_list:hover{
    background:#F3F7FF;
}

.det_item_list:last-child{
    border: 0;
}

.det_item_list div{
    display: flex;
    flex: 1;
    align-items: center;

    padding-left: 20px;

    height: 78px;

    font-family: Aspekta;
    font-weight: 400;
    font-size: 14px;

    color: #666;
}
.det_item_list .det_info1{
    /* width: 197px; */
    height: 78px;

    font-family: Aspekta;
    font-weight: 400;
    font-size: 15px;

    color: var(--theBcColor);
}
.det_info2{
    display: flex;
    align-items: center;
}
.det_info3{
    display: flex;
    align-items: center;
    gap: 8px;
}
.det_info2 img, .det_info3 img, .det_info4 img{
    width: 24px;
}
.det_item_list .det_info4{
    flex: 0 0 323px;

    display: flex;
    align-items: center;
    gap: 8px;
}


.tran_btn_wrap{
    margin-top: 54px;
    display: flex;
    justify-content: center;
}

.tran_btn{
    display: flex;
    align-items: center;
    gap: 10px;

    height: 48px;
    border-radius: 8px;
    padding: 0 32px;

    font-weight: 700;
    font-size: 16px;

    color: #fff;

    background: #285DFF;

    transition: all .3s ease-in-out;
}

.tran_btn:hover{
    gap: 15px;

}
.tran_btn img{
    width: 16px;
}
/* -----Detailed-------end----------------------------------------------------------------- */


.recharge-desc-wrap{

}
.recharge-desc-header{

}
.recharge-desc-title{
    font-family: Aspekta;
    font-weight: 700;
    font-size: 36px;
    line-height: 51px;
    text-align: center;

    color: var(--theBcColor);

}
.recharge-desc-subtitle{
    margin-top: 16px;

    font-family: Aspekta;
    font-weight: 400;
    font-size: 16px;
    line-height: 23px;
    text-align: center;

    color: #666;
}
.recharge-desc-grid{
    margin-top: 54px;

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 24px;
}

.recharge-card{
    position: relative;

    padding: 32px;
    border: 1px solid #E6EBF3;
    border-radius: 24px;

    height: 235px;

    transition: all 2s ease-in-out;
}

.recharge-card:hover{
    background: linear-gradient(180deg, #EDEEFF 0%, #FFFFFF 46.18%);
}
.recharge-card02:hover{
    background: linear-gradient(180deg, #EBF0FF 0%, #FFFFFF 46.18%);
}


.recharge-card::after{
    content: "";
}

.recharge-card:hover::after{
    content: "";
    position: absolute;
    top: 0;
    right: 40px;

    width: 183px;
    height: 128px;
    background: url(/static/index/images/pricing/recharge_after01.webp) no-repeat;
    background-size: cover;

}

.recharge-card02:hover::after{
    content: "";
    
    width: 183px;
    height: 128px;
    background: url(/static/index/images/pricing/recharge_after02.webp) no-repeat;
    background-size: cover;

}


.recharge-card-icon{
    width: 48px;
    height: 48px;
    border-radius: 12px;
    border: 1px solid #F5D6FF;

    display: flex;
    align-items: center;
    justify-content: center;
}
.recharge-card-icon img{
    width: 28px;
}
.recharge-card-icon02{
    border: 1px solid #C7D2F4
    
}
.recharge-card-title{
    margin-top: 24px;

    font-family: Aspekta;
    font-weight: 550;
    font-size: 20px;
    line-height: 29px;

    color: var(--theBcColor);

    position: relative;
    z-index: 3;

}
.recharge-card-text{
    margin-top: 16px;

    font-family: Aspekta;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;

    color: #666;
}

.meow_wrap{
    margin-bottom: 80px;
    height: 358px;
    background: url(/static/index/images/pricing/meow_wrap.webp) no-repeat;
    background-size: cover;

    display: flex;
    justify-content: center;
    align-items: center;
}

.meow_wrap_dec{
    width: 880px;
    height: 244px;
    border-radius: 24px;

    border: 2px solid transparent;
    background-clip: padding-box, border-box;
    background-origin: padding-box, border-box;
    background-image: linear-gradient(to right, #fff, #fff), 
                    linear-gradient(90deg, #5EE5F3 0%, #35D9F2 43.27%, #A19BF3 100%);

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    padding: 40px;

}
.meow_wrap_title{
    
}
.meow_wrap_tit{
    font-family: Aspekta;
    font-weight: 700;
    font-size: 32px;
    line-height: 46px;
    color: #3E3E3E;

    text-align: center;

}
.meow_wrap_txt{
    margin-top: 16px;

    font-family: Aspekta;
    font-weight: 400;
    font-size: 16px;
    line-height: 23px;
    color: #666;
    text-align: center;
}
.meow_wrap_row{
    margin-top: 40px;
    display: flex;
    gap: 12px;
}
.btn_top_up, .btn_contact_meow{
    padding: 9px 24px;
    border-radius: 8px;
    border: 1px solid #EBEBEB;

    display: flex;
    align-items: center;
    gap: 4px;

    height: 36px;

    transition: all 0.2s ease-out;
}
.btn_top_up{
    padding: 9px 24px;
    border-radius: 8px;
    
    border: 1px solid transparent;
    background-clip: padding-box, border-box;
    background-origin: padding-box, border-box;
    background-image: linear-gradient(to right, #fff, #fff), 
                      linear-gradient(270deg, #285DFF 0%, #C728FF 100%);

    display: flex;
    align-items: center;
    gap: 4px;

    height: 36px;
}
.btn_top_up span{
    background: linear-gradient(90deg, #285DFF 0%, #C728FF 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.btn_top_up:hover span{
    background: linear-gradient(90deg, #fff 0%, #fff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}



.btn_top_up:hover{
    padding: 9px 24px;
    border-radius: 8px;

    border: 1px solid transparent;
    background-clip: padding-box, border-box;
    background-origin: padding-box, border-box;
    background-image: linear-gradient(270deg, #285DFF 0%, #C728FF 100%), 
                      linear-gradient(270deg, #285DFF 0%, #C728FF 100%);

    color: #fff;


    display: flex;
    align-items: center;
    gap: 4px;

    height: 36px;
}
.btn_top_up:hover i{
    background: url(/static/index/images/pricing/star02.webp) no-repeat;
    background-size: cover;
}


.btn_top_up span, .btn_contact_meow span{
    font-family: Aspekta;
    font-weight: 500;
    font-size: 14px;
    line-height: 14px;
    /* color: var(--theBcColor); */
}
.btn_top_up i{
    display: inline-block;
    width: 19px;
    height: 19px;

    background: url(/static/index/images/pricing/star01.webp) no-repeat;
    background-size: cover;

}

.btn_contact_meow:hover{
    color: #fff;
    background: var(--theBcColor);
}

.btn_contact_meow i{
    display: inline-block;
    width: 16px;
    height: 16px;

    background: url(/static/index/images/pricing/help_icno.webp) no-repeat;
    background-size: cover;

}
.btn_contact_meow:hover i{
    background: url(/static/index/images/pricing/help_icno_w.webp) no-repeat;
    background-size: cover;
}

/* ========================================================= */
/* Mobile Responsive Styles */
/* ========================================================= */
@media (max-width: 768px) {
    .mar_1200 {
        width: 100% !important;
        padding: 0 15px;
        box-sizing: border-box;
    }
    .header_bg{
        height: 64px;
    }

    .banner_btn_wrap{
        flex-direction: column;
        gap: 15px;
    }
    .ble_btn{
        justify-content: center;
    }
    
    .banner_Wrap {
        height: auto;
        padding: 50px 0;
    }
    
    .bannerContent {
        flex-direction: column;
        padding: 0 15px;
        box-sizing: border-box;
    }
    
    .banner-left {
        width: 100%;
        max-width: 100%;
    }
    
    .banner_title h1 {
        font-size: 32px;
        line-height: 1.3;
    }
    
    .banner_title h1 span {
        font-size: 28px;
        line-height: 1.3;
    }
    
    .banner-right {
        position: relative;
        top: 0;
        right: 0;
        width: 100%;
        margin-top: 40px;
        display: flex;
        justify-content: center;
    }
    
    .banner-right::after {
        display: none;
    }
    
    .homebanner {
        width: 100%;
        max-width: 100%;
    }
    
    .token_pack {
        margin-top: 50px;
    }
    
    .pricing-wrapper {
        width: 100%;
        grid-template-columns: 1fr;
    }
    
    .token_pack_title {
        font-size: 28px;
        line-height: 1.3;
        padding: 0 15px;
    }
    
    .token_pack_txt {
        padding: 0 15px;
    }
    
    .recharge-desc-title {
        font-size: 28px;
        line-height: 1.3;
        padding: 0 15px;
    }
    
    .recharge-desc-subtitle {
        padding: 0 15px;
    }

    .recharge-desc-grid {
        grid-template-columns: 1fr;
        padding: 0 15px;
    }
    
    .recharge-card {
        height: auto;
    }
    
    .tran_wrap {
        margin-top: 50px;
        margin-bottom: 50px;
    }
    
    .tran_w_dec {
        padding: 0 15px;
    }
    
    .table_box {
        overflow-x: auto;
    }
    
    .item_tit_list, .tran_item_list, .det_item_list {
        min-width: 600px;
    }
    
    .estimation-wrapper {
        height: auto;
        flex-direction: column;
        padding: 30px 15px;
        margin: 0 15px;
        width: calc(100% - 30px) !important;
        background-size: cover;
    }
    
    .estimation-wrapper::before, .estimation-wrapper::after, .estimation-wrapper .rb_img {
        display: none;
    }
    
    .left-panel, .right-panel {
        width: 100%;
        max-width: 100%;
    }
    
    .right-panel {
        margin-top: 30px;
        height: auto;
        padding: 20px;
        box-sizing: border-box;
    }
    
    .panel_list {
        grid-template-columns: 1fr;
        margin-top: 24px;
    }
    
    .panel_item {
        margin-right: 0;
    }
    
    .tool-title {
        font-size: 28px;
        line-height: 1.3;
    }
    
    .home_faq_wrap {
        margin-top: 50px;
        margin-bottom: 50px;
        flex-direction: column;
        padding: 0 15px;
    }
    
    .h_faq_tit {
        font-size: 32px;
        line-height: 1.3;
    }
    
    .home_faq_tit {
        max-width: 100%;
        margin-bottom: 20px;
    }
    
    .home_faq_dec {
        width: 100%;
    }
    
    .meow_wrap {
        height: auto;
        padding: 40px 15px;
        background-size: 100% 100%;
        border-radius: 24px;
    }
    
    .meow_wrap_dec {
        width: 100%;
        height: auto;
        padding: 30px 15px;
        box-sizing: border-box;
    }
    
    .meow_wrap_tit {
        font-size: 24px;
        line-height: 1.3;
    }
    
    .meow_wrap_row {
        flex-direction: column;
        width: 100%;
    }
    
    .meow_wrap_row a {
        width: 100%;
    }
    
    .btn_top_up, .btn_contact_meow {
        width: 100%;
        justify-content: center;
        box-sizing: border-box;
    }
}
