.public_nav .nav_item .link{
    color: #333;
}

.t_{
    color: #333;
    font-size: 40px;
    transition: all .2s;
}

.t_:hover{
    transform: scale(1.05);
}





.vip_container{
    box-sizing: border-box;
    padding-top: 108px;
    margin-bottom: 100px;
    background-color: rgb(255, 255, 255);
    background-repeat: no-repeat;
    background-size: 100% 510px;
    background-image: linear-gradient(rgb(237, 245, 255) 0%, rgb(237, 245, 255) 40%, rgb(255, 255, 255) 100%);
}

.vip_layer_content_bottom_left{
    position: relative;
}

.overdueMask{
    width: 140px;
    height: 140px;
    border-radius: 8px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, .9);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.overdueMask > p{
    color: #fff;
    font-size: 12px;
    margin-bottom: 16px;
}

.overdueMask > button{
    color: #333;
    font-size: 12px;
    height: 24px;
    padding: 0 12px;
    border-radius: 4px;
    cursor: pointer;
}




.tts_vip_conver_code{
    width: 1200px;
    height: 186px;
    border-radius: 16px;
    background-image: url(../imgs/conver_code/container_bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
    position: relative;
    margin:100px auto 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
    padding: 0 40px;
}

.tts_vip_conver_code_left{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tts_vip_conver_code_left > img{
    width: 265px;
}

.tts_vip_conver_code_left > p{
    color: #fff;
    font-size: 16px;
    line-height: 24px;
    text-decoration: underline;
    cursor: pointer;
    margin-top: 4px;
}

.tts_vip_conver_code_right{
    position: relative;
    width: 800px;
    height: 48px;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
}

.tts_vip_conver_code_right input{
    width: calc(100% - 160px);
    height: 100%;
    border: none;
    background-color: none;
    box-sizing: border-box;
    padding-left: 16px;
    color: rgba(12, 14, 33, 1);
}

.tts_vip_conver_code_right button{
    width: 190px;
    height: 48px;
    background: none;
    border: none;
    background-image: url(../imgs/conver_code/btn_bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    position: absolute;
    right: 0;
    top: 0;
    font-size: 20px;
    color: rgba(12, 14, 33, 1);
    font-weight: 600;
    cursor: pointer;
}

.activity_banner_container{
    width: 1720px;
    cursor: pointer;
    border-radius: 8px;
    overflow: hidden;
}

.activity_banner_container img{
    width: 100%;
}

.register_new_user_layer_model{
    background: none !important;
    box-shadow: none !important;
}

/*Q&A START*/

.useHelp_group{
    width: 1168px;
    margin: 0 auto;
}

.useHelp_tit{
    text-align: center;
}

.useHelp_tit p{
    margin-top: 16px;
    font-size: 20px;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.6);
    line-height: 28px;
}

.useHelp_items{
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.useHelp_items li{
    width: 48%;
    background: rgba(0, 0, 0, 0.04);
    border-radius: 16px 16px 16px 16px;
    border: 1px solid rgba(0,0,0,.04);
    padding: 40px 24px 0;
    height: 200px;
    position: relative;
    box-sizing: border-box;
    margin-bottom: 24px;


    transition: .15s ease-in-out;
    -webkit-transition: .15s ease-in-out;
    -moz-transition: .15s ease-in-out;
    -ms-transition: .15s ease-in-out;
    -o-transition: .15s ease-in-out;
    transform: translateY(0px);
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    cursor: pointer;
    position: relative;
    opacity: 0;
    visibility: hidden;
}
.useHelp_items li.show{
    opacity: 1;
    visibility: visible;
    transform: translateY(8px);
    -webkit-transform: translateY(8px);
    -moz-transform: translateY(8px);
    -ms-transform: translateY(8px);
    -o-transform: translateY(8px);
}

.useHelp_items li::before{
    position: absolute;
    content: "''";
    font-family: 'youshebth_text' !important;
    font-size: 145px;
    font-weight: 800;
    background-image:-webkit-linear-gradient(bottom,rgba(255,255,255,.1),rgba(255,255,255,.5)); 
    -webkit-background-clip:text; 
    -webkit-text-fill-color:transparent; 
    opacity: .12;
    top: -30px;
    left: 12px;
}
.useHelp_items li .question_tit{
    font-size: 16px;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.85);
    line-height: 24px;
}

.useHelp_items li .desc{
    margin-top: 24px;
    font-size: 14px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.85);
    line-height: 22px;
}
.useHelp_items li .desc .red{
    color: #BD5656;
    font-weight: 600;
}

.useHelp_items li .desc .icon-lianjie{
    color:#C2A886;
    margin-left: 3px;
}

.useHelp_items li a{
    font-size: 14px;
    font-weight: 500;
    color: #C2A886;
    line-height: 22px;
    padding-right:3px;
    text-decoration: underline;
}
.useHelp_items li a .iconfont{
    padding-right: 4px;
}

.more_usehelp{
    width: 132px;
    height: 40px;
    border-radius: 100px 100px 100px 100px;
    background-color: #00000000;
    border: 1px solid rgba(0, 0, 0, 0.3);
    margin: 32px auto 100px;

    font-size: 16px;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
}


.more_usehelp .iconfont{
    font-size: 16px;
    margin-left: 6px;
}

/*Q&A END*/


.vip_down_container{
    display: flex;
    margin:72px auto;
    width: 800px;
    justify-content: space-between;
}

.vip_down_container .vdc_item{
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    width: 360px;
    height: 620px;
    background: #fff;
    border-radius: 28px 28px 8px 8px;
    padding: 0 0 32px;
    text-align: center;
    position: relative;
    align-items: center;
}

.vip_down_container .vdc_item .title{
    font-size: 24px;
    line-height: 33px;
    margin-top: 48px;
}

.vip_down_container .vdc_item .tit_tag{
    height: 41px;
    padding: 0 16px;
    background: rgba(255,255,255,.04);
    margin: 22px 32px 0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vip_down_container .vdc_item .tit_tag p{
    font-size: 12px;
    font-weight: 400;
    color: rgba(255,255,255,.3);
    white-space: pre-wrap;
    line-height: 17px;
    margin: 0;
}

.vip_down_container .vdc_item .download_nums{
    display: flex;
    align-items: flex-end;
    justify-content: center;
    margin: 32px 0;
}

.vip_down_container .vdc_item .download_nums p{
    color: rgba(255,255,255,.4);
    font-size: 32px;
    font-weight: 700;
    font-style: normal;
    margin: 0;
    line-height: 30px;
}

.vip_down_container .vdc_item .download_nums span{
    font-size: 14px;
    color:rgba(255,255,255,.4);
}

.vip_down_container .vdc_item > a{
    width: calc(100% - 64px);
    height: 48px;
    line-height: 48px;
    box-sizing: border-box;
    background: #fff;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    color: rgba(255,255,255,.4);
    margin-bottom: 34px;
}

.fs26{
    font-size: 26px;
}

.vip_down_container .vdc_item .rights_c{
    width: 240px;
    display: flex;
    flex-direction: column;
}

.vip_down_container .vdc_item .rights_c .item{
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.vip_down_container .vdc_item .rights_c .item .check{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255,255,255,.04);
    margin-right: 8px;
}

.vip_down_container .vdc_item .rights_c .item .check span{
    font-size: 12px;
    height: 14px;
    display: flex;
    color: rgba(255, 255, 255, .24);
}

.vip_down_container .vdc_item .rights_c .item > p{
    margin-left: 8px;
    font-size: 14px;
    color: rgba(255,255,255,.4);
}

.vip_down_container .vdc_item.pro{
    background-image: linear-gradient(138deg, rgb(230, 191, 126) 0%, rgb(217, 169, 87) 100%);
}

.vip_down_container .vdc_item.pro p,
.vip_down_container .vdc_item.pro span{
    color: #fff;
}

.vip_down_container .vdc_item.pro > a{
    box-shadow: unset;
    background: rgb(252, 252, 253);
    color: rgb(166, 124, 53);
}

.vip_down_container .vdc_item.pro .tit_tag{
    background: rgb(207, 159, 78);
}

.vip_down_container .vdc_item.pro .item .check{
    background: rgb(166, 124, 53);
}

.vip_down_container .vdc_item.pro .item .check span{
    color: #fff;
}

.vip_container_title .left_text{
    display: flex;
    flex-direction: column;
    align-items: center;
}




/*black css start*/
.container{
    background: #15182c;
    min-height: 100vh;
}

.vip_down_container .vdc_item{
    background: rgba(255,255,255,.08);
}

.vip_container{
    background-color: #15182c;
    background-image:none;
}

.public_nav .nav_item .link{
    color: #fff;
}

.slogen_text{
    color: #4a81e6;
    font-size: 18px;
}

.vip_down_container .vdc_item.pro{
    background-image: linear-gradient(to right, #fc504f , #fe7d07);
}

.vip_down_container .vdc_item.pro .tit_tag{
    background: rgba(20, 22, 36,.08);
}

.vip_down_container .vdc_item.pro > a{
    color: #ff5b00;
}

.vip_down_container .vdc_item.pro .item .check{
    background: rgba(20, 22, 36,.36);
}

.vip_down_container .vdc_item > a{
    background: rgba(255,255,255,.08);
}

.vip_down_container .vdc_item .title{
    color: rgba(255,255,255,.3);
}

.vip_down_container .vdc_item.pro .rights_c .item > p{
    color: rgba(255,255,255,.85);
}
/*black css end*/

.footer{
    background: none;
}

.vip_layer_content > .icon-guanbi{
    width: auto;
    top: 20px;
}

.vip_layer_content > .icon-guanbi::before{
    display: none;
}

.vip_layer_content > .icon-guanbi > img{
    width: 16px;
    height: 16px;
    margin-right: 4px;
    opacity: .6;
}

.vip_layer_content .vip_main{
    overflow: hidden;
    border-radius: 8px;
}

.price_item .other_tag{
    position: absolute;
    height: 24px;
    width: 100%;
    color: rgba(0,0,0,.72);
    top: 50px;
    text-align: center;
    font-size: 12px;
}

.price_item.always .other_tag{
    color: rgba(255,255,255,1);
}



.vip_main_right .price_list .price_item.retain{
    display: none;
}

.retain_layer{
    width: 600px;
    height: 474px;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../imgs/index/retain_layer_bg.png);
    display: none;
    position: relative;
}

.retain_model{
    overflow: hidden !important;
}

.retain_layer > a{
    position: absolute;
    font-size: 22px;
    color: #fff;
    right: 0;
    top: 0;
    z-index: 200;
    text-align: center;
    line-height: 26px;
}


.retain_model{
    background: none !important;
    box-shadow: none !important;
}

.retain_content{
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.retain_content h2{
    font-size: 40px;
    text-align: center;
    margin-top: 32px;
    color: #ff4d4d;
}

.retain_content .retain_djs_c{
    display: flex;
    align-items: center;
    margin-top: 16px;
    justify-content: center;
}

.retain_content .retain_djs_c p{
    font-size: 18px;
    color: #cdb57a;
    margin-left: 8px;
}

.retain_content .retain_djs_c span{
    width: 48px;
    height: 48px;
    line-height: 48px;
    text-align: center;
    border-radius: 8px;
    background-color: rgba(0,0,0,.06);
    color: #ff4d4d;
    font-size: 20px;
    font-weight: bold;
}

.retain_content .retain_djs_c p.active{
    margin-right: 8px;
}

.retain_content .retain_bottom{
    display: flex;
    align-items: center;
    width: 100%;
    height: 214px;
    justify-content: center;
}

.retain_content .retain_bottom .qrcode_con{
    width: 150px;
    height: 150px;
    position: relative;
    display: flex;
    border-radius: 8px;
    background-color: #fff;
    margin-right: 16px;
    align-items: center;
    justify-content: center;
}

.retain_content .retain_bottom .text_c{
    display: flex;
    flex-direction:column;
}

.retain_content .retain_bottom .text_c .price_c{
    display: flex;
    align-items: center;
}

.retain_content .retain_bottom .text_c .price_c p{
    font-size: 14px;
    color: #f9ecec;
}

.retain_content .retain_bottom .text_c .price_c strong{
    font-size: 40px;
    color: #ffeb3b;
    margin: 0 8px 10px;
    line-height: 40px;
}

.get_activity_price{
    margin-left: 8px;
    padding: 0 8px;
    background-color: rgba(234, 103, 43, .08);
    border: 1px solid #EA672B;
    font-size: 14px;
    color: #15182c;
    border-radius: 4px;
    height: 24px;
}

.retain_content .retain_bottom .text_c .retain_tag{
    height: 40px;
    border: 2px solid #ffeb3b;
    padding: 0 24px;
    font-size: 18px;
    margin: 0 0 16px 0;
    color: #ffeb3b;
    box-sizing: border-box;
    line-height: 36px;
    border-radius: 8px;
}

.retain_content .retain_bottom .text_c .pay_icon{
    display: flex;
    align-items: center;
    background: rgba(0,0,0,.65);
    border-radius: 6px;
    padding: 8px;
}

.retain_content .retain_bottom .text_c .pay_icon img{
    width: 24px;
    height: 24px;
    margin-right: 8px;
}

.retain_content .retain_bottom .text_c .pay_icon p{
    line-height: 16px;
    font-size: 14px;
    color: #f9ecec;
}

.retain_content .retain_top_text{
    border-radius: 80px;
    background-color: #ff4836;
    height: 50px;
    font-size: 22px;
    color: #fde777;
    line-height: 50px;
    width: 360px;
    text-align: center;
    margin: 16px auto 8px;
}



.get_activity_share_skin{
    background: none !important;
    box-shadow: none !important;
}

.get_activity_share_model{
    width: 327px;
    height: 340px;
    overflow: hidden;
    position: relative;
    display: none;
}

.get_activity_share_model > a{
    width: 32px;
    height: 32px;
    font-size: 24px;
    border: 1px solid rgba(255,255,255,.56);
    background-color: rgba(255,255,255,.24);
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    right: 0;
}

.get_activity_share_model_c{
    width: 295px;
    height: 308px;
    position: absolute;
    left: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border-radius: 16px;
    align-items: center;
}

.get_activity_share_model_c > img{
    width: 123px;
    height: 67px;
    margin-top: 12px;
}

.get_activity_share_model_c > h2{
    color: #16172F;
    font-size: 18px;
    font-weight: 400;
    line-height: 22px;
}

.get_activity_share_model_c > p{
    color: #16172F;
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    margin-top: 26px;
}

.get_activity_share_model_c .input_c{
    width: 232px;
    height: 32px;
    border-radius: 6px;
    border: 2px solid #C4C4CA;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    margin-top: 12px;
    overflow: hidden;
}

.get_activity_share_model_c .input_c > p{
    color: #16172F;
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
    padding-left: 8px;
}

.get_activity_share_model_c .input_c > .icon_c{
    width: 32px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #16172F;
    margin-left: auto;
    cursor: pointer;
}

.get_activity_share_model_c .input_c > .icon_c img{
    width: 20px;
    height: 20px;
}

.get_activity_share_model_c .activity_tips{
    color: #737482;
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    margin-top: 25px;
}

.get_activity_share_model_c button{
    width: 240px;
    height: 48px;
    border-radius: 200px;
    background-color: #16172F;
    color: #fff;
    font-size: 18px;
    margin-top: 4px;
}

.vip_main_right .price_list .price_item.always .price_c strong span,
.vip_main_right .price_list .price_item.always .price_c strong div,
.vip_main_right .price_list .price_item.always .price_c strong p{
    color: #fff !important;
}

.vip_main_right .price_list .price_item .price_c strong .odometer-inside{
    font-family: 'akrobat_text' !important;
}

.vip_main_right .price_list .price_item .price_c strong span,
.vip_main_right .price_list .price_item .price_c strong div,
.vip_main_right .price_list .price_item .price_c strong p{
    font-weight: 700;
    color: #15182a;
    font-size: 30px;
    line-height: 30px;
    font-family: 'akrobat_text' !important;
}

.vip_main_right .price_list .price_c del{
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    position: absolute;
    left: 50%;
    bottom: 40px;
    transform: translateX(-50%);
    color: #737482;
    text-align: center;
    width: 100%;
}

.vip_main_right .price_list .price_item.always  .price_c del{
    color: rgba(255,255,255,.72);
}

.vip_every_day_download_num span,
.vip_every_day_download_num div{
    color: #16172F !important;
    font-weight: bold;
}