@charset "utf-8";
/* CSS Document */
@charset "utf-8";
/*!
 * @名称：base.css
 * @功能：1、重设浏览器默认样式
 *       2、设置通用原子类
 */
/* 防止用户自定义背景颜色对网页的影响，添加让用户可以自定义字体 */
html {
    background: #f6f6f6;
    color:black;
    box-sizing: border-box;
}
/* 内外边距通常让各个浏览器样式的表现位置不同 */
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,textarea,p,blockquote,th,td,hr,button,article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section {
    margin:0;
    padding:0;
}

/* 要注意表单元素并不继承父级 font 的问题 */
body,button,input,select,textarea {
    font: 14px / 1.5 "PingFang SC", "Microsoft YaHei", 微软雅黑, sans-serif;
}
input,select,textarea {
    font-size:100%;
}
/* 去掉 table cell 的边距并让其边重合 */
table {
    border-collapse:collapse;
    border-spacing:0;
}
/* ie bug：th 不继承 text-align */
th {
    text-align:inherit;
}
/* 去除默认边框 */
fieldset,img {
    border:none;
}
/* ie6 7 8(q) bug 显示为行内表现 */
iframe {
    display:block;
}
/* 去掉 firefox 下此元素的边框 */
abbr,acronym {
    border:none;
    font-variant:normal;
}
/* 一致的 del 样式 */
del {
    text-decoration:line-through;
}
address,caption,cite,code,dfn,em,th,var {
    font-style:normal;
    font-weight:400;
}
/* 去掉列表前的标识，li 会继承 */
ol,ul {
    list-style:none;
}
/* 对齐是排版最重要的因素，别让什么都居中 */
caption,th {
    text-align:left;
}
/* 来自yahoo，让标题都自定义，适应多个系统应用 */
h1,h2,h3,h4,h5,h6 {
    font-size:100%;
    font-weight:400;
}
q:before,q:after {
    content:'';
}
/* 统一上标和下标 */
sub,sup {
    font-size:75%;
    line-height:0;
    position:relative;
    vertical-align:baseline;
}
sup {
    top:-0.5em;
}
sub {
    bottom:-0.25em;
}
/* 默认不显示下划线，保持页面简洁 */
ins,a {
    text-decoration:none;
    outline:none;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}
/* 去除 ie6 & ie7 焦点点状线 */
a:focus,*:focus {
    outline:none;
}
/* 清除浮动 */
.clearfix:before,.clearfix:after {
    content:"";
    display:table;
}
.clearfix:after {
    clear:both;
    overflow:hidden;
}
.clearfix {
    zoom:1; /* for ie6 & ie7 */
}
.clear {
    clear:both;
    display:block;
    font-size:0;
    height:0;
    line-height:0;
    overflow:hidden;
}
/* 设置显示和隐藏，通常用来与 js 配合 */
.hide {
    display:none;
}
.block {
    display:block;
}
/* 设置浮动，减少浮动带来的 bug */
.fl,.fr {
    display:inline;
}
.fl {
    float:left;
}
.fr {
    float:right;
}
a,span,p,label{
    font-weight: 400;
}
h1,h2,h3,h4{
    font-weight: 700;
}

/*正常的未被访问过的链接*/
a:hover,
a:active,
a:focus{
    text-decoration: none;
    color:#fff !important;
}

.no_bg_link:hover,
.no_bg_link:active,
.no_bg_link:focus{
    color:#242935 !important;
}

.vip_pay:hover,
.vip_pay:active,
.vip_pay:focus{
    color:#674d23 !important;
}

.index_link:hover,
.index_link:active,
.index_link:focus{
    color:#999 !important;
}

.flex{
    display:box;  （伸缩盒最老版本）
    display:-webkit-box;  /* iOS 6-, Safari 3.1-6 */
    display:-webkit-flex; /* Chrome */
    display:-moz-box;     /* Firefox 19 */
    display:-ms-flexbox;
    display:flex;  /*flex容器*/
}
.justCenter{
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    -o-justify-content: center;
    justify-content: center;
}
.itemsCenter{
    -webkit-align-items:center;
    -moz-align-items:center;
    -ms-align-items:center;
    -o-align-items:center;
    align-items:center;
}
.wrap{
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap:wrap;
}
.text_line{
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.text_line2{
    overflow : hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.text_line3{
    overflow : hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

/*--popup--*/
.activity_popup{
    display: none;
    width: 260px;
    position: relative;
}

.activity_popup_container{
    width: 100%;
    height: 100%;
    position: relative;
    /* background-image: url(../imgs/activity_banner/activity_2023_618.png) !important; */
    background-size: cover;
    background-repeat: no-repeat;
}

.activity_popup_container img{
    width: 260px;
}

.activity_model{
    border-radius: 8px !important;
    overflow: hidden !important;
}

.activity_popup_close{
    position: absolute;
    right: 12px;
    top: 12px;
    font-size: 12px;
}

/*--popup--*/


.bottom_swiper_container{
    width: calc(100% - 32px);
    margin: 16px 16px 24px 16px;
    display: flex;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.bottom_swiper_container .item{
    display: flex;
    position: relative;
    width: 100%;
    padding-bottom: 18.66%;
}

.bottom_swiper_container .item img{
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

/*--popup--*/
.activity_popup{
    display: none;
    width: 260px;
    position: relative;
}

.activity_popup_container{
    width: 100%;
    height: 100%;
    position: relative;
    /* background-image: url(../imgs/activity_banner/activity_2023_618.png); */
    background-size: cover;
    background-repeat: no-repeat;
}

.activity_popup_container img{
    width: 260px;
}

.activity_model{
    border-radius: 8px !important;
    overflow: hidden !important;
}

.activity_popup_close{
    position: absolute;
    right: 12px;
    top: 12px;
    font-size: 12px;
}

/*--popup--*/


/*new_platform_layer css start*/
.new_platform_layer{
    width: 304px;
    height: 399px;
    display: none;
    position: relative;
    box-sizing: border-box;
}

.new_platform_layer_model{
    border-radius: 8px !important;
    overflow: hidden !important;
}

.new_platform_layer .icon-chacha{
    width: 16px;
    height: 16px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: rgba(255,255,255,0.45);
    font-weight: 500;
    position: absolute;
    right: 16px;
    top: 16px;
    font-size: 12px;
}

.new_platform_layer .icon-chacha:hover,
.new_platform_layer .icon-chacha:active{
    color: rgba(255,255,255,0.45) !important;
}

.new_platform_layer_c{
    width: 100%;
    height: 100%;
    background-image: url(../imgs/new_platform_3_2_bg.png);
    background-size: cover;
}

.new_platform_layer_c .new_platform_btn_more{
    width: 264px;
    height: 48px;
    background: linear-gradient(90deg, #8B6A2A 0%, #F7D792 50%, #8B6A2A 100%);
    border-radius: 100px;
    bottom: 16px;
    font-size: 16px;
    font-weight: 500;
    color: #0C0E21;
    line-height: 24px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    line-height: 48px;
}

.new_platform_layer_c .new_platform_btn_more:hover,
.new_platform_layer_c .new_platform_btn_more:active{
    color: #0C0E21 !important;
}
/*new_platform_layer css end*/



.model_{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 999999;
}

.login_popup_c{
    position: relative;
}
.login_popup_c .close_btn{
    position: absolute;
    right: -20px;
    top: -17px;
    width: 24px;
    height: 24px;
}

.login-popup {
    width: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    padding-top: 66px;
  }
  .login-popup .top_bg {
    position: absolute;
    top: 0;
    width: 272px;
    height: 99px;
  }
  .login-popup .content {
    position: relative;
    z-index: 2;
    width: 280px;
    height: 236px;
    background-color: #ffffff;
    border-radius: 16px;
    padding: 16px;
    box-sizing: border-box;
  }
  .login-popup .content .form-content .form-item {
    margin-bottom: 8px;
    height: 48px;
    border-bottom: 1px solid #EDF0F9;
    padding: 0 16px;
    display: flex;
    flex-direction: row;
    align-items: center;
  }
  .login-popup .content .form-content .form-item input {
    height: 100%;
    width: 0px;
    flex-grow: 1;
    font-size: 14px;
    font-weight: 400;
    border: none;
  }
  .login-popup .content .form-content .form-item .phone-prefix {
    color: #16172F;
    font-size: 14px;
    font-weight: 400;
  }
  .login-popup .content .form-content .form-item .line {
    width: 0.5px;
    height: 12px;
    background-color: #EBECF0;
    margin: 0 12px;
  }
  .login-popup .content .form-content .form-item .code_text {
    color: #C2A886;
    font-size: 14px;
    font-weight: 400;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .login-popup .content .form-content .form-item:last-child {
    margin-bottom: 0px;
  }
  .login-popup .content .btn {
    margin-top: 20px;
    border-radius: 100px;
    background: #16172F;
    height: 44px;
    color: #FFF;
    font-size: 16px;
    font-weight: 400;
    line-height: 44px;
    text-align: center;
  }
  .login-popup .content .between-view {
    margin-top: 16px;
    display: flex;
    justify-content: space-between;
  }
  .login-popup .content .between-view .gray_text {
    color: #A2A2AB;
    font-size: 12px;
    font-weight: 400;
    line-height: 20px;
  }
  .login-popup .content .between-view .blue_text {
    color: #427EF7;
    font-size: 12px;
    font-weight: 400;
    line-height: 20px;
  }
  .code_desc_model {
    width: 280px;
    padding: 16px;
    box-sizing: border-box;
    border-radius: 12px;
    background: #FFF;
  }
  .code_desc_model .title {
    color: #0C0E21;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    text-align: center;
  }
  .code_desc_model .desc_text {
    margin-top: 12px;
    color: #5A6073;
    font-size: 12px;
    font-weight: 400;
    line-height: 20px;
  }
  .code_desc_model .options {
    margin-top: 12px;
  }
  .code_desc_model .options .option {
    color: #0C0E21;
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    margin-bottom: 2px;
  }
  .code_desc_model .options .option:last-child {
    margin-bottom: 0px;
  }
  .code_desc_model .options .option .blue {
    color: #427EF7;
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    text-decoration: underline;
  }
  .code_desc_model .options .option .blue :hover{
7    color: #427EF7;
  }
  .code_desc_model .close_btn {
    margin-top: 32px;
    height: 40px;
    border-radius: 4px;
    background: #F5F6FA;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C2A886;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
  }
  

.base_btn {
    display: inline-block;
    position: relative;
    outline: none;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    transition: all .2s;
    box-sizing: border-box;
    color: #333;
    user-select: none;
}

.base_btn:hover {
    opacity: 1;
}

.flex_ {
    flex-grow: 1;
}

.base_btn.hover:hover{
    opacity: 1;
}

.base_btn:focus {
    outline: none;
}

.base_btn:active {
    transform: scale(.97);
}

.font48 {
    font-size: 48px;
    line-height: 56px;
}

.font32 {
    font-size: 32px;
    line-height: 40px;
}

.font24 {
    font-size: 24px;
    line-height: 32px;
}

.font20 {
    font-size: 20px;
    line-height: 28px;
}

.font18 {
    font-size: 18px;
    line-height: 26px;
}

.font16 {
    font-size: 16px;
    line-height: 24px;
}

.font14 {
    font-size: 14px;
    line-height: 22px;
}

.font12 {
    font-size: 12px;
    line-height: 20px;
}

.icon12 {
    display: flex;
    width: 12px;
    height: 12px;
    font-size: 12px;
    text-align: center;
    line-height: 12px;
    justify-content: center;
    align-items: center;
}

.icon16 {
    display: flex;
    width: 16px;
    height: 16px;
    font-size: 16px;
    text-align: center;
    line-height: 16px;
    justify-content: center;
    align-items: center;
}

.icon24 {
    display: flex;
    width: 24px;
    height: 24px;
    font-size: 24px;
    text-align: center;
    line-height: 24px;
    justify-content: center;
    align-items: center;
}

.over_text1 {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.over_text2 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.over_text3 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.none_select {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}


.public_circular {
    animation: rotate 1.2s linear infinite;
    margin: auto;

    
}

.public_circular .path {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
    animation: dash 1.2s ease-in-out infinite
}

@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes dash {
    0% {
        stroke-dasharray: 1, 200;
        stroke-dashoffset: 0;
    }

    50% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -35px;
    }

    100% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -124px;
    }
}