@charset "utf-8";
/* 样式重置 */
body,html {
    min-height: 100%;
    height: auto!important;
}

/* 使用此样式防止滚动条出现时页面抖动，这会影响到使用fixed居中出现误差，可js计算html与body直接的宽度差补回 */
:root {
    overflow-y: auto;
    overflow-x: hidden;
}
:root body {
    position: absolute;
}
html {
    overflow-y: scroll;
}
body {
    width: 100vw;
    overflow: hidden;
}
/* 使用此样式防止滚动条出现时页面抖动，这会影响到使用fixed居中出现误差，可js计算html与body直接的宽度差补回 */

body {
    background-color: #fff;
    color: #333;
    font-family: "PingFang SC", "Arial", "Microsoft YaHei", "Helvetica", "Helvetica Neue", "Tahoma", "sans-serif";
    line-height: 1.5;
    font-size: 12px;
}
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,button,textarea,p,blockquote,th,td {
    margin: 0;
    padding: 0;
}

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;
}
.mt80{
    margin-top: 80px !important;
}
.mb80{
    margin-bottom: 80px !important;
}
.mb30{
    margin-bottom: 30px
}


.ai2020_pop {
    color: #333;
}
.ai2020_pop .layui-layer-title {
    position: relative;
    z-index: 1;
    background-color: transparent;
    margin: 0;
    border-bottom: none;
    font-size: 20px;
    font-weight: 700;
    overflow: visible;
    padding-left: 40px;
    color: #333333;
    height: 60px;
    line-height: 70px;
}
.ai2020_pop .layui-layer-ico{
    background:url(../images/close.png) no-repeat;
}
.submit_form .layui-layer-ico{
    background:url(../images/close2.png) no-repeat;
}
.submit_form .layui-layer-setwin .layui-layer-close2,.submit_form .layui-layer-setwin .layui-layer-close2:hover{
        background-position: 0px;
    }
.ai2020_pop .layui-layer-setwin .layui-layer-close1{
background-position: 0px;
}
.submit_form .layui-layer-setwin .layui-layer-close2 {
    position: absolute;
    right: -14px;
    top: -5px;
    width: 30px;
  
}
.ai2020_pop .layui-layer-setwin{
    top:12px;
}
.ai2020_pop .layui-layer-content {
    padding: 0 40px;
}
.layui-layer-setwin{
    z-index: 2;
}
.apply_form_pop {
    background-color: #fff;
    box-sizing: border-box;
}

.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: #656565;
    font-size: 14px;
    margin: 0px 0 16px;
    font-weight: 400;
}
.apply_form_pop>h2.sec_tit{
    font-size: 16px;
}

.form-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.form-title {
    line-height: 32px;
    font-size: 14px;
    width: 48px;
    text-align: left;
}
.form-title .form_title_icon{
    color: #f15dab;
    margin-right:5px;
}
.form-input {
    text-indent: 10px;
    height: 40px;
    width: 400px;
    border-radius: 3px;
    border: 1px solid RGB(230, 230, 230);
}
.address-box {
    display: flex;
    height: 32px;
}
.apply_form_pop  .address-box{

    width: calc(100% - 48px)!important;
}
.address-box>select {
    border-radius: 3px;
    border: 1px solid RGB(230, 230, 230);
    width: 260px;
    color: #656565;
}

.ai2021_pop_form select[name="vocational"],.ai2021_pop_form select[name="jobcat"]{
    text-indent: 10px;
    height: 40px;
    width: 400px;
    border-radius: 3px;
    border: 1px solid RGB(230, 230, 230);
    margin-left: 0px;
    background: #fff;
    color:#333;
}
.ai2021_pop_form  select[name="province"]{
    background: #fff;
    color:#333;
    margin-left: 0px;
}
.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: 5px 24px 40px 50px;
}
.btn-box > div,
.btn-box > button {
    width: 137px;
    height: 34px;
    border-radius: 3px;
    line-height: 34px;
    text-align: center;
    cursor: pointer;
    transition: all .3s;
    box-sizing:  border-box;
}
.submit-btn{
    background: linear-gradient(#395aff 0%, #7293ff 100%);
    color: #fff;
    margin-right: 14px;
    border:none;
}
.submit-btn:hover{
    background: linear-gradient(#3151f8 0%, #6487fa 100%)
}
.cancel-btn{
    border: 1px solid RGB(230, 230, 230);
}
.cancel-btn:hover{
    background-color:#f9f9f9; 
}

.layui-layer-content .form_table_tips {
    color: #999;
    margin-bottom: 20px;
}


@media (max-width: 800px) {
   
    /*表格样式*/
    .ai2021_pop_form  .form-input ,.ai2021_pop_form  .address-box>select{
        display: flex;
        flex:1;
    }
    .ai2021_pop_form  .address-box>select{

        width:50%;
        padding-left:10px;
        font-size:12px;

    }
    .address-box{
        flex:1;
    }
    .pop_form h5 {
        font-size: 0.4rem;
        margin-bottom: 0 !important;
        margin-top: 0 !important;
    }
    .pop_form .s_qrcode {
        display: block;
        margin: 10px auto;
        margin-top: 0.32rem;
        width:  2.49rem;
        height:  2.49rem;
    }
    .ai2021_pop_form_go_sign  .apply_form_pop>h2.sec_tit span{
        display: block;
        font-size: 12px;
        color: #9292c9;
    }
    .ai2021_pop_form .sec_tit img{
        visibility: hidden;
    }
   /* .ai2021_pop_form  .cancel-btn{
        display: none!important;
    }*/
    .ai2021_pop_form .btn-box > div,.ai2021_pop_form .btn-box > button{
        width:47%;
        display: block;
        margin:0 auto;
        line-height: 0.8rem;
        height: 0.8rem;
        border:none;
        background: #7E94FF;
        border-radius: 4px;
    }
    .ai2021_pop_form .btn-box .cancel-btn{
        background:transparent;
        border: 1px solid #e4e4e4;
    }
    /*报名成功弹框*/
    .submit_form .layui-layer-title{
        display: block!important;
        background:transparent!important;/*
        line-height: 2.2rem;
        padding-left: 1.5rem;*/
    }
    .pop_form h5{
        font-size: .32rem;
        margin-top: 0.9rem;
    }
    .pop_form .layui-layer-content{
        padding-left: 0.4rem!important;
    }

    .btn-box{
        display: flex;
        padding: 5px 0px 40px 0;
        justify-content: space-between;
    }
    .apply_form_pop>h2{
        font-size: 12px;
    }
    .ai2020_pop .layui-layer-content {
        padding: 0 0.4rem;
    }
    .ai2020_pop .layui-layer-title{
        padding-left: 0.4rem;
    }
/*
    
    .ai2020_pop_sign .layui-layer-title {
        position: relative;
        top: 38px;
        left: 51px;
    }*/
    .ai2021_pop_form_top .succ_icon span {
         display: inline-block!important; 
    }
    .ai2021_pop_form_top{
        top:0px!important;
        color:#fff;
    }
    .ai2021_pop_form_top .succ_icon span{
        display: block;
        text-align: center;
    }
    .ai2021_pop_form_top .enlist-succ-box p {
        margin-left: 11%;
    }
    .ai2021_pop_form_top .enlist-succ-box p.text{
        margin-left: 0px;
    }
    .ai2021_pop_form_top .enlist-succ-box .text{
        color:#ccc;
    }
    .ai2021_pop_form_top .enlist-succ-box .qrcode {
        height: 121px;
        display: block;
        margin: 40px auto 8px;
    }
    .ai2021_pop_form_top .enlist-succ-box .succ_icon {
        margin-top: 50px;
    }
    .ai2021_pop_form_top.layui-layer-page .layui-layer-content{
        overflow: visible!important;
    }
     .back_index_pop{
        width: 80%;
        height: 0.88rem;
        line-height: 0.88rem;
        margin: 0 auto;
        margin-top: .6rem;
        text-align: center;
        border-radius: 44px;
        background: #343584;
        color:#C6C6F3;
    }
}