@charset "utf-8";
/* 样式重置 */
body,html {
    min-height: 100%;
}
body {
    font-family: "PingFang SC", "Arial", "Microsoft YaHei", "Helvetica", "Helvetica Neue", "Tahoma", "sans-serif";
    line-height: 1.5;
    font-size: 12px;
    color: #fff;
    background: #1c2329;
}
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,a,code,form,fieldset,legend,input,button,textarea,p,blockquote,th,td {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

h1,h2,h3,h4,h5,h6 {
    font-size: 100%;
}

ol,ul {
    list-style: none;
}

address,caption,cite,code,dfn,em,strong,th,var,optgroup {
    font-style: normal;
}

input,button,textarea,select,optgroup,option {
    font-family: inherit;
    font-size: inherit;
    font-style: inherit;
    font-weight: inherit;
    *font-size: 100%;
}

fieldset,img,a img,:link img,:visited img {
    border: 0;
}

a {
    text-decoration: none;
    color: inherit;
}

/* a:visited {
    color: inherit;
} */

/*a:hover,
a:active {
    color: #d00000;
}*/

:focus {
    outline: 0;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

caption,th {
    text-align: left;
}

/* 通用样式 */
.wrap {
    width: 1200px;
    margin: 0 auto;
}
.none {
    display: none;
}
.fl {
    display: inline;
    float: left;
}
.fr {
    display: inline;
    float: right;
}
.clearfix {
    _zoom: 1;
}
.clearfix:after {
    content: "";
    display: block;
    height: 0;
    visibility: hidden;
    clear: both;
}
.ovh {
    overflow: hidden;
    display: block;
}

.lh1 {
    line-height: 1;
}

.tov,
.tovm {
    overflow: hidden;
    display: block;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.tovm {
    display: -webkit-box;
    -webkit-box-orient:  vertical;
    white-space: normal;
}
.tc {
    text-align: center;
}
.fc9 {
    color: #999;
}
.fc6 {
    color: #666;
}
.fc3 {
    color: #333;
}
.fcred {
    color: #d00000;
}
.fs12 {
    font-size: 12px;
}
.fs14 {
    font-size: 14px;
}
.fblod {
    font-weight: 700;
}

.ml10 {
    margin-left: 10px;
}
.ml5 {
    margin-left: 5px;
}
.mt30 {
    margin-top: 30px;
}
.mr30 {
    margin-right: 30px;
}

/* 向下三角形 */
.delta_down {
    display: inline-block;
    width: 0;
    height: 0;
    border-width: 5px 4px;
    border-style: solid;
    vertical-align: -2px;
    border-color: #999 transparent transparent;
}

.not_select {
    -webkit-user-select:none;
    -moz-user-select:none;
    -ms-user-select:none;
    user-select:none;
}


/* pc */
.flex{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}
.flex_center {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.flex_align_items{
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}
.flex_space_around {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-around;
    -ms-flex-pack: justify;
    justify-content: space-around;
}
.flex_start{
    -webkit-box-pack: justify;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: justify;
    justify-content: flex-start;
}
.flex_wrap{
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
}
.flex_1 {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
}
.flex_space_between{
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.flex_last_end{
    -webkit-box-pack: justify;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: justify;
    justify-content: flex-end;
}
.limit{
    overflow: hidden;
    white-space: nowrap;
    text-overflow:ellipsis;
}
.limit2{
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    word-break: break-all;
}
.limit3{
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.dib{
    display: inline-block
}
.mr20{
    margin-right: 20px;
}
.ml20{
    margin-left: 20px;
}
.mt20{
    margin-top: 20px
}
.mb20{
    margin-bottom: 20px;
}
.wh{
    width: 100%;
}
.pr{
    position: relative
}
.hide {
    display: none;
}


/* 顶通条 */
.site_top {
    position: relative;
    margin-bottom: 80px;
    z-index: 30;
    height: 30px;
    background-color: #000;
    color: #333;
    line-height: 30px;
}
.site_top .icon {
    display: inline-block;
    margin-right: 5px;
    width: 16px;
    height: 16px;
    vertical-align: -2px;
    background: url('../img/site-top-icon.jpg') no-repeat;
}
.site_top .i2 {background-position: -16px 0;}
.site_top .i3 {background-position: -32px 0;}
.site_top .i4 {background-position: -48px 0;}
.site_top .i5 {background-position: -64px 0;}
.site_top .origin-item {
    float: right;
    margin-right: 20px;
}
.site_top .origin-item .hot {
    position: relative;
    margin: -15px 0 0 10px;
    padding: 1px 2px;
    display: inline-block;
    line-height: 1;
    vertical-align: middle;
    border-radius: 3px;
    background-color: #feff02;
    color: #d00000;
    font-size: 12px;
    font-style: italic;
    font-family: "PingFang SC", "Arial", "Microsoft YaHei", "Helvetica", "Helvetica Neue", "Tahoma", "sans-serif";
}
.site_top .origin-item .hot:before {
    position: absolute;
    left: -4px;
    top: 3px;
    content: "";
    width: 0;
    height: 0;
    line-height: 1;
    background-color: #feff02;
    border-style: solid;
    border-width: 4px 4px 4px 0;
    border-color: #0f0941 #feff02 #0f0941 #0f0941;
}
.site_top a {
    color: #aaa;
}
/* .site_top a:hover {
    color: #d00;
} */
.site_partner {
    position: relative;
    float: left;
}
.site_partner:after {
    position: absolute;
    top: 14.5px;
    left: 0;
    content: "";
    width: 100%;
    height: 1px;
    background-color: #0f0941;
}
.site_partner a {
    position: relative;
    z-index: 1;
    float: left;
    padding: 0 28px 0 5px;
    margin-left: 20px;
    vertical-align: top;
    color: #939393;
}
.site_partner a:after {
    content: "";
    width: 34px;
    height: 1px;
    background: #8f8f8f;
    position: absolute;
    top: 50%;
    right: -15px;
}
.site_partner a:first-child {
    margin-left: 0;
}
.site_partner a:last-child:after {
    display: none;
}
.site_top .user_area {
    position: relative;
    float: right;
    height: 30px;
}
.site_top .login {
    margin-right: 5px;
}
.site_top .user_area .umenu {
    cursor: pointer;
}
.site_top .user_area .umenu img {
    display: inline-block;
    margin-left: 20px;
    vertical-align: -8px;
    width: 24px;
    height: 24px;
    border-radius: 24px;
}
.site_top .user_area .umenu:hover .drop {
    display: block;
}
.site_top .user_area .drop {
    display: none;
    position: absolute;
    right: 0;
    top: 30px;
    z-index: 10;
    width: 110px;
    text-align: center;
    background-color: #666;
    background-color: rgba(0, 0, 0, .6);
}
.site_top .user_area .drop:before {
    content: "";
    position: absolute;
    top: -20px;
    right: 0;
    width: 50px;
    height: 20px;
    /* background-color: red; */
}
.site_top .user_area .drop a {
    display: block;
    color: #fff;
}
.site_top .user_area .drop a:hover {
    background-color: #000;
}

header {
    position: fixed;
    top: 30px;
    left: 0;
    right: 0;
    z-index: 9;
    height: 80px;
    background: #212b33;
}
header>.wrap {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
header .menu {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    height: 100%;
    align-items: center;
    font-size: 14px;
    height: 80px;
}
header .menu>a{
    line-height:80px;
}
header .menu .on,
header .menu .on:hover {
    color:#39fffe;
}
header .menu>a,
header .menu .drop {
    padding: 0 15px;
}

header .menu>a:hover{
    color:#39fffe;
}
header .menu .drop {
    position: relative;
    line-height: 80px;
}
header .menu .drop::after {
    content: "";
    display: inline-block;
    margin-left: 10px;
    vertical-align: -2px;
    border-width: 5px;
    border-style: solid;
    height: 0;
    border-color: #fff transparent transparent transparent;
}
header .menu .drop:hover {
    background: #2c3134;
    cursor: pointer;
    color: #39fffe;
    font-weight: 700;
}
header .menu .drop .item {
    position: absolute;
    top: 80px;
    left: -9999999px;
    white-space: nowrap;
    line-height: 40px;
    background: #2c3134;
}
header .menu .drop .item a{
    color:#fff;
    font-weight: 400;
}
header .menu .drop:hover .item {
    left: -0px;
}
header .menu .drop .item>a {
    display: block;
    padding: 0 15px;
}
header .menu .drop .item>a:hover {
    background: #3f464b;
    color: #fff;
}
header .menu .enter {
    margin-left: 30px;
    width: 100px;
    height:32px;
    line-height: 32px;
    background: #2972fe;
    text-align: center;
    border-radius: 20px;
}
header .menu .enter:hover {
    background: #0050E9;
    color:  #fff;
}
header .logo img:first-child {
    width: 112px;
    margin-right: 20px;
    vertical-align: middle;
}
header .logo img:last-child {
    width: 118px;
    vertical-align: middle;
}
/*header .logo img:nth-child(2) {
    width:95px;
    position: relative;
    top: 2px;
}*/
/*header .logo img:last-child {
    width:95px;
    position: relative;
    top: -1px;
}*/
.bdshare-area {
    width: 157px;
    height: 24px;
    position: relative;
    padding-top: 30px; 
    z-index: 2;
  /*  background: url('../img/bdshare1.png') center center no-repeat;*/
}
.bdshare-area .bdsharebuttonbox i{
    display: inline-block;
    width:24px;
    height: 24px;
}
.slide-share{
    line-height: 29px;
    font-size: 14px;
}
.bdshare-area .bds_sqq{
     background: url('../img/bdshare1.png') center center no-repeat;
}
.bdshare-area .bds_sqq:hover{
     background: url('../img/bdshare1_1.png') center center no-repeat;
}
.bdshare-area .bds_qzone{
     background: url('../img/bdshare2.png') center center no-repeat;
}
.bdshare-area .bds_qzone:hover{
     background: url('../img/bdshare2_1.png') center center no-repeat;
}
.bdshare-area .bds_tsina{
     background: url('../img/bdshare3.png') center center no-repeat;
}
.bdshare-area .bds_tsina:hover{
     background: url('../img/bdshare3_1.png') center center no-repeat;
}
.bdshare-area .bds_weixin{
     background: url('../img/bdshare4.png') center center no-repeat;
}
.bdshare-area .bds_weixin:hover{
     background: url('../img/bdshare4_1.png') center center no-repeat;
}/*
.bdshare-area .bds_sqq:hover{
    opacity: 0.8;
}
.bdshare-area .bds_qzone:hover{
    opacity: 0.8;
}
.bdshare-area .bds_tsina:hover{
    opacity: 0.8;
}
.bdshare-area .bds_weixin:hover{
    opacity: 0.8;
}*/
.bdsharebuttonbox {
    position: relative;
    background: transparent;
    padding-left: 5px;
}
.bdsharebuttonbox i {
    float: left;
    margin: 0 0 0 3px;
    background: transparent;
    padding: 0;
    width: 24px;
    height: 24px;
    cursor: pointer;
}

.sec_tit {
   text-align: center;
   margin-bottom: 50px;
}
/*.sec_tit>img{
    margin-bottom: 40px;
    width: 262px;
    height: 122px;
}*/
.footer {
    font: 12px/25px "微软雅黑";
    color: #fff;
    width: 100%;
    padding: 10px 0 10px;
    background: #000e10;
    text-align: center;
}
.footer a {
    color: #fff;
}
.footer a:hover {
    text-decoration: underline;
}

.tips{
    background: rgba(0,0,0, .8) !important;
    text-align: center !important;
    border: none !important;
}

.ai2020_pop {
    color: #000;
}
.ai2020_pop .layui-layer-title {
    position: relative;
    z-index: 1;
    background: transparent;
  /*  margin: 0 50px -20px 0;*/
    border-bottom: none;
    color:#fff;
}
.ai2020_pop .layui-layer-setwin .layui-layer-close1 {
    background-position: 0;
    cursor: pointer;
}
.ai2020_pop .layui-layer-ico {
    background: url(../img/close_icon.png) no-repeat;
}
.ai2020_pop  .layui-layer-setwin{
    z-index:1
}
.ai2020_pop .layui-layer-content {
    padding: 0 20px;
    background-color: #fff;
}

.apply_form_pop {
    background-color: #fff;
    box-sizing: border-box;
    margin: 0 40px;
}
.apply_form_pop_flex{
    display: flex;
    flex-flow: wrap;
    justify-content: space-between;
}
.apply_form_pop_tip{    
    font-size: 14px;
    color: #999999;
    line-height: 1.6;
    padding-bottom: 30px;
}
.apply_form_pop_title>h3{
    font-weight: 700;
}
.apply_form_pop_title>.h3{
    font-size: 30px;
}
.apply_form_pop_title>.h4{
    font-size: 20px;
}
.apply_form_pop>h1 {
    font-weight: bold;
    font-size: 30px;
}

.apply_form_pop>h3 {
    font-size: 20px;
    font-weight: 400;
    line-height: 1;
}

.apply_form_pop>h2 {
    color: #999;
    font-size: 14px;
    margin: 16px 0 16px;
    font-weight: 400;
}

.form-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    width: 48%;
}

.form-title {
    line-height: 32px;
    font-size: 16px;
    width: 48px;
    text-align: left;
}
.form_title_icon{
    color:#FF206C;
    margin-right:5px;
}
.form-input {
    text-indent: 10px;
    height:40px;
    width: calc(100% - 60px);
    border-radius: 3px;
    border: 1px solid RGB(230, 230, 230);
    font-size: 16px;
}

.address-box {
    display: flex;
    height: 40px;
    width: calc(100% - 60px);
}

.address-box>select {
    border-radius: 3px;
    border: 1px solid RGB(230, 230, 230);
    width: 50%;
    font-size: 16px;
}

.address-box>select:nth-child(1) {
    margin-right: 10px;
}
.form-check{
    display: flex;
    align-items: center;
}
.form-check:nth-child(1) {
    margin-right: 100px;
}
.btn-box{
    display: flex;
    padding: 10px 0 40px;
    margin-left: 48px;
    justify-content: center;
}
.btn-box > div,
.btn-box > button {
    width: 140px;
    height: 40px;
    border-radius: 25px;
    line-height: 40px;
    text-align: center;
    cursor: pointer;
    transition: all .3s;
    font-size: 16px;
}
.submit-btn{
    background: #2972fe;
    color: #fff;
    margin-right: 14px;
    border:none;
}

.success_text{
    color:#333;
    font-weight:400;
    text-align: left;
    font-size: 16px;
    line-height: 2;
    padding-left: 37px;
}
.submit-btn:hover{
    background-color:#0050E9;
}
.cancel-btn{
    border: 1px solid #ccc;
    background-color: #fff;
    color:#999;
}
.cancel-btn:hover{
    background-color: #f9f9f9;
    border: 1px solid #f9f9f9;
}
.success-box{
    width: 360px;
    background-color: #fff;
}
.status-box{
    background-color: #fff;
    border-radius: 5px;
    box-sizing: border-box;
}
.status-box .qrcode {
    display: block;
    margin: 20px auto 10px;
}
.status-box .succ_icon {
    text-align: center;
    margin: 0 auto 30px;
    font-size: 24px;
    line-height: 40px;
}
.status-box .succ_icon img {
    margin-right: 20px;
    vertical-align: top;
}
.status-box h1 {
   /* margin-bottom: 40px;*/
    color: #656565;
    font-size: 14px;
    font-weight: 400;
    text-align: center;
}
.vote_go_prize{
    width: 140px;
    height: 40px;
    display: block;
    margin: 0 auto;
    background: linear-gradient(136deg,#ec322f 3%, #ffa965 93%);
    border-radius: 3px;
    text-align: center;
    line-height: 40px;
    margin-top: 20px;
    margin-bottom: 30px;
    color: #fff;
    font-size: 16px;
}
.vote_go_prize:hover{
    background: linear-gradient(270deg,#ec322f, #ffa965);

}
.enlist-succ-box {
    padding-bottom: 30px;
    font-size: 14px;
}
.enlist-succ-box .succ_icon {
    margin-bottom: 20px;
    font-size: 24px;
    line-height: 40px;
    text-align: center;
    margin-top: 20px;
    font-weight: 400;
}
.enlist-succ-box .succ_icon img {    
    margin-right: 16px;
    vertical-align: middle;
    position: relative;
    top: -2px;
}
.enlist-succ-box .qrcode {
    height: 168px;
    display: block;
    margin: 20px auto 8px;
}
.enlist-succ-box .text {
    text-align: center;
    color: #666;
    font-size: 14px;
}
.aside_fixed {
    z-index: 1;
    position: fixed;
    right: 0;
    top: 20%;
    width: 157px;
    height: 175px;
    padding-top: 106px;
    background-image: url('../img/aside_fixed.png?v3');
}
.aside_awards_index{
    position: fixed;
    right: 0;
    top: 40%;
    transform:translate(0px -50%);
    width: 243px;
    height: 285px;
    background-image: url('../img/aside_awards_index.png?v3');
    background-repeat: no-repeat;
    z-index:99;
    cursor: pointer;
}
.aside_t_p_index{
    position: fixed;
    right: 0;
    top: 45%;
    width: 122px;
    height: 113px;
    background-image: url('../img/aside_t_p.png?v3');
    background-repeat: no-repeat;
    z-index:99;
    cursor: pointer;
}
.aside_awards_link,.aside_t_p_link{
    width: 100%;
    height:100%;
    display: block;
}
.aside_delete{
    position: absolute;
    top:0px;
    right:0px;
    width: 15px;
    height: 15px;
}/*
.aside_awards_vote{
    position: fixed;
    right: 0;
    top: 20%;
    width: 122px;
    height: 113px;
    background-image: url('../img/aside_awards_vote.png?v3');
    z-index:99;
}*/
.aside_fixed .live {
    display: block;
    height: 55px;
    margin: 0 20px 1px;
}
.pc_show_text{
    display:inline-block;
}
.m_show_text{
    display:none;
}
.m_show{
    display: none;
}
.pc_hide{
    display: none;
}
.bottom_live{
    display: none;
}
@media (max-width: 750px) {
     .bottom_live {
        display: block;
        z-index: 1;
        position: fixed;
        left: 0;
        bottom: 0;
        width: 100%;
        line-height: .88rem;
    }
    .bottom_live .live {
        display: block;
        width:100;
        text-align: center;
        color: #fff;
        font-size: .3rem;
        background-color: #046686;
    }
    html {
        font-size: 13.33333333vw;
    }
    body {
        padding-top: 0.8rem;
    }
    .pc_show_text{
        display:none;
    }
    .m_show_text{
        display:inline-block;
    }
    .m_show{
        display: block;
    }
    .pc_hide{
        display: block;
    }
    .aside_fixed,
    .site_top {
        display: none;
    }
    .aside_index_btn_box {
        display: none;
    }
    .wrap {
        width: auto;
        margin: 0 .3rem;
    }
    .mr30 {
        margin-right: .2rem;
    }
    header {
        position: fixed;
        z-index: 9;
        top: 0;
        left: 0;
        right: 0;
        height: 0.88rem;
        margin-right: 0!important;
        background: #021630;
        z-index: 999;
    }
    header .wrap {
        height: 0.88rem;
    }
    header .logo img:first-child {
        width: 1.39rem;
        margin-right: 0.26rem;
    }
    header .logo img:nth-child(2) {
        width: .95rem;
    }
    header .logo img:last-child {
        width: 1.3rem;
    }
    header .menu {
        flex-direction: column;
        align-items: start;
        line-height: .88rem;
    }
    header .menu>a,
    header .menu>span {
        display: none;
    }
    header .menu {
        position: fixed;
        top: 0;
        right: 0;
        padding-right: 0.7rem;
        font-size: .32rem;
        height: 0.88rem;
        background: #042632;
    }
    header .menu .drop:hover {
        /*background: #07394b;
        color:#0092DC;*/
    }
    header .menu .enter {
        display: block;
        order: -1;
        margin: 0 .4rem 0 -.7rem;
        width: 2.4rem !important;
        padding: 0;
        line-height: 0.88rem;
        height: 0.88rem;
        text-align: center;
        border-radius: 0;
        font-weight: 400;
        text-indent: 0!important;
        font-size: 0.28rem!important;
    }

    header .menu::after {
       position: absolute;
        top: .45rem;
        right: .4rem;
        content: "";
        margin-top: -10px;
        width: 20px;
        height: 14px;
        border-top: 2px solid #fff;
        background: linear-gradient(transparent 6px,#fff 6.1px,#fff 8px,transparent 8.1px,transparent);
        border-bottom: 2px solid #fff;
    }
    header .menu.active::after {
        border: none;
        content: "×";
        font-size: 34px;
        line-height: 1;
        margin-top: -17px;
        height: auto;
        font-weight: 400;
        background: transparent;
    }
    header .menu.active {
        height: 100%;
    }
    header .menu.active>a,
    header .menu.active>span {
        margin-right: -0.7rem;
        padding: 0;
        display: block;
        width: 2.8rem;
        text-indent: 1rem;
        font-size:0.28rem;
        /*background-color: #005aff;*/
        height: 0.88rem;
        line-height: 0.88rem;
    }
    header .menu.active>a.active{
      /*  background: #0f1e46;
        color: #0092DC;*/
    }

     header .menu.active>a.menu_style,
    header .menu.active>span.menu_style{
        position: relative;
        width: 3.5rem;
    }
    header .menu.active .enter{
        position: relative;
        left: 0.7rem;
    }
    header .menu .on, header .menu .on:hover {
       /* color: #0092DC;*/
        font-weight: 700;
    }
    header .menu .drop {
        line-height: inherit;
    }
    header .menu .drop::after {
        display: none;
    }
    header .menu .drop::before {
        display: inline-block;
        content: "";
        width: 5px;
        height: 5px;
        vertical-align: middle;
        margin: 0 5px 0 -10px;
        transform: rotate(45deg);
        border-bottom: 1px solid #999;
        border-left: 1px solid #999;
    }
    header .menu .drop .item {
        left: 0;
        transform: translateX(100vw);
    }
     header .menu .drop.active::before{
        border-bottom: 1px solid #39fffe;
        border-left: 1px solid #39fffe;
     }
    header .menu .drop.active .item {
        position: fixed;
        top: 0.88rem;
        right: 3.5rem;
        left: auto;
        height:100%;
        width: 3.4rem;
        line-height: inherit;
        transform: translateX(0);
        text-indent: 0;
        font-size: 0.24rem;
        text-align: center;
        box-sizing: border-box;
        padding-top: 0.2rem;
    }
    header .menu .drop .item>a {
        padding: 0 0.3rem;
        box-sizing: border-box;
        white-space: initial;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        line-height: 1.5;
        height: 0.88rem;
        text-align: left;
    }
    header .menu .drop .item>a:hover {
        background-color: #0092DC;
        color: #fff;
    }
    .ind_order_5 .sec_tit .ext{
        text-align: left!important;
        font-size:12px;
    }
    .ind_order_5 .apply_form{
        margin-top:0rem;
    }
    .footer {
        display: none;
    }
    .apply_form_pop_flex{
        display: block;
    }
    .apply_form_pop>h2 {
        color: #426082;
        font-size: 0.24rem;
        margin: 0.16rem 0 0.16rem;
    }
    .apply_form_pop,
    .apply_form_pop>h1,
    .apply_form_pop>h3 {
        font-size: .3rem;
        width:auto;
    }
    .apply_form_pop {
        margin: 0 0px;
    }
    /*.apply_form_pop>h2 {
        display: none;
    }*/
    .apply_form_pop>h3 {
        margin-bottom: .3rem;
    }
    .form-item {
        margin-bottom: .3rem;
        width: 100%;
    }
    .form-title {
        white-space: nowrap;
        width: 0.9rem;
        margin-right: .2rem;
    }
    .form-input {
        width: calc(100% - 0.9rem);
        flex: 1;
      /*  font-size: .24rem;*/
        border: 1px solid RGB(230, 230, 230);
    }
    .btn-box > div, .btn-box > button {
      /*  font-size: .24rem;*/
        border-radius: 40px;
        width: 80%;
    }
    .address-box>select {
        flex: 1;
        width: auto;
    /*    font-size: 0.24rem;*/
        border: 1px solid RGB(230, 230, 230);
        text-indent: 10px;
    }
    .apply_form_pop_tip{
        font-size: 0.24rem;
    }
    .address-box {

        width: calc(100% - 1.1rem);
    }
    .btn-box {
        display: flex;
        padding: 10px 0 0.4rem;
        margin-left: 0;
        justify-content: space-between;
    }
    .form-check {
        width: 100%;
    }
    .form-check:nth-child(1) {
        margin: 0;
        white-space: nowrap;
    }
    .status-box h1 {
        margin-bottom: 0;
    }
    .status-box {
        padding-bottom: .7rem;
    }
    .mobile_sign{
        display: block!important;
        width: 2.2rem;
        height: 0.7rem;
       /* background: rgba(0,0,0,0.5);*/
        position: absolute;
        bottom: 9%;
        left: 50%;
        transform: translate(-50%, 0);
    }
    /*表格样式*/

    .ai2020_pop .layui-layer-title {
        position: relative;
        z-index: 1;
        border-bottom: none;
    }

  /*  .ai2021_pop_form{
        background: #0c0b42!important;
    }*/
    .ai2020_pop .layui-layer-content {
        padding: 0 0.3rem;
    }
    .ai2020_pop .layui-layer-title{
    }
    .apply_form_pop{
        background-color: transparent;
    }
   /* .form-title {
        color:#fff;
    }
    .apply_form_pop_title>h3{
        color:#fff;
    }*/
    /*报名成功弹框*/
    .enlist-succ-box .qrcode {
        height: 2.7rem;
        display: block;
        margin: 0.2rem auto 8px;
    }
    .success_text {
        font-size: 0.32rem;
        /*color: #fff;*/
    }
    .enlist-succ-box .succ_icon img {
      /*  margin-right: 0px;*/
        width: 0.88rem;
        height: 0.88rem;
        margin-bottom: 0.3rem;
    }

    .enlist-succ-box .succ_icon {
        margin-bottom: 0.4rem;
        font-size:0.52rem;
        line-height:1;
        margin-top: 0.4rem;
       /* color:#fff;*/
    }
    .enlist-succ-box .succ_icon span{
       /* display: block;*/
    }
}