/*-------------index.html-------------*/
.page_pc{
    display: none!important;
}
.page_container{
    font-size:15px;
    line-height: 28px;
    color: #333;
    background-color: #cce9ed;
}

/*header*/
.mheader{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    height: 50px;
    background-color: #772bf8;
}
.nav{
    width: 100%;
}
.nav_list{
    width: 100%;
    line-height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav_item{
    /* float: left; */
    width: 14.28%;
    text-align: center;
}
.nav_item a{
    color: #fff;
}

.banner{
    position: relative;
    width: 100%;
    margin-top: 50px;
    background-color: #fafafa;
}
.banner img{
    width: 100%;
}
.b_login{
    position: absolute;
    bottom: -17%;
    width: 100%;
    text-align: center;
}
.login_student{
    width: 130px;
    height: 32px;
    line-height: 32px;
    color: #fff;
    text-align: center;
    font-size: 17px;
    margin-right: 17%;
    background-color: #f14e52;
    border: 1px #fff solid;
    border-radius: 5px;
}
.login_school{
    width: 130px;
    height: 32px;
    line-height: 32px;
    color: #fff;
    text-align: center;
    font-size: 17px;
    background-color: #9985ff;
    border: 1px #fff solid;
    border-radius: 5px;
}
.layui-carousel-ind ul {
    background-color: transparent;
}
/*header*/
.header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2;
    width: 94%;
    height: 50px;
    line-height: 50px;
    font-size: 17px;
    font-weight: bold;
    color: #fff;
    padding: 0 3%;
    background-color: #9985ff;
    background-image: linear-gradient(to right, #9985ff, #9985ff);
}
.back img {
    width: 12px;
}
.backindex {
    float: left;
    width: 10%;
    text-align: right;
}
.h_title {
    float: left;
    width: 80%;
    height: 50px;
    text-align: center;
    color: #fff;
}
.backindex {
    float: left;
    width: 10%;
    text-align: right;
}
.backindex img {
    width: 25px;
}
/*center*/
.center{
    width: 100%;
    min-height: calc(100vh - 228px);
    padding-bottom: 50px;
    /*margin-top: 50px;*/
}

/*footer*/
.footer{
    background: #3e344f;
    width: 90%;
    padding: 20px 5%;
    margin-top: 30px;
    font-size: 14px;
    border-bottom: 8px #33116d solid;
}
.f_main{
    width: 100%;
    color: #fff;
}
.f_main a{
    color:#fff;
}
.f_left{
    width: 100%;
    text-align: left;
}
.f_qq{
    line-height: 30px;
    padding-left: 32px;
    margin-bottom: 10px;
    background: url("../images/images_index/icon_qun.png") no-repeat;
    background-size: 21px auto;
    background-position: left 5px;
}
.f_tel{
    line-height: 30px;
    padding-left: 32px;
    background: url("../images/images_index/icon_tel.png") no-repeat;
    background-size: 21px auto;
    background-position: left 5px;
}
.f_tel span{
    display: inline-block;
    width: 100%;
    font-size: 13px;
    color: #fff;
}
.f_center{
    margin-top: 10px;
}
.f_right{
    float: left;
    width: 150px;
    text-align: center;
}
.finfo li div{
    color:#fff;
    margin-bottom: 10px;
}
.finfo li img{
    position: relative;
    bottom: 2px;
}

/*tab*/
.footer_tab{
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 5;
    width: 100%;
    padding: 6px 0;
    background-color: #fff;
    border-top: 1px #dcdddd solid;
}
.tab_item{
    float: left;
    width: 25%;
    line-height: 24px;
    text-align: center;
    font-size: 13px;
}
.tab_item a{
    color: #333;
}
.tab_item img{
    width: 22px;
}

/*piaochuang*/
.piaochuang{
    position: fixed;
    right: 10px;
    bottom: 30vh;
    z-index: 100;
    width: 75px;
    text-align: center;
}
.pc_bm,.pc_xb,.pc_qq{
    width: 75px;
    height: 36px;
    color: #fff;
    padding-top: 56px;
    margin-bottom: 3px;
    font-size: 14px;
    letter-spacing: 0;
    background: url(../images/pc_01.png) no-repeat;
    background-size: 100% auto;
    box-shadow: 0 0 20px rgba(14, 46, 150, 0.3);
    border-radius: 10px;
}
.pc_xb{
    background-image: url("../images/pc_02.png");
}
.pc_qq{
    margin-bottom: 0;
    background-image: url("../images/pc_03.png");
}
.slideLeft{
    animation-name: slideLeft;
    -webkit-animation-name: slideLeft;

    animation-duration: 1s;
    -webkit-animation-duration: 1s;

    animation-timing-function: ease;
    -webkit-animation-timing-function: ease;

    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;

}
@keyframes slideLeft {
    0% {
        transform: translateX(150%);
        opacity: 0;
    }
    100% {
        transform: translateX(0%);
        opacity: 1;
    }
}
@-webkit-keyframes slideLeft {
    0% {
        -webkit-transform: translateX(150%);
        opacity: 0;
    }
    100% {
        -webkit-transform: translateX(0%);
        opacity: 1;
    }
}

.slideRight{
    animation-name: slideRight;
    -webkit-animation-name: slideRight;

    animation-duration: 1s;
    -webkit-animation-duration: 1s;

    animation-timing-function: ease;
    -webkit-animation-timing-function: ease;

    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;

}
@keyframes slideRight {
    0% {
        transform: translateX(0%);
        opacity: 0;
    }
    100% {
        transform: translateX(150%);
        opacity: 1;
    }
}
@-webkit-keyframes slideRight {
    0% {
        -webkit-transform: translateX(0%);
        opacity: 0;
    }
    100% {
        -webkit-transform: translateX(150%);
        opacity: 1;
    }
}

/*login*/
.login_center{
    background: url(/static/web/cnccac/images/inside_page_bg.jpg) no-repeat;;
    background-size: 100% auto;
}
.login_btn{
    width: 100%;
    margin: 0 auto;
    padding-top: 15vh;
    text-align: center;
}
.login_btn p:nth-child(1){
    font-size: 18px;
    color: #d44229;
}
.login_btn p:nth-child(2){
    font-size: 14px;
}
.login_btn img{
    width: 130px;
    margin-top: 25px;
}
.privacy{
    width: 100%;
    margin: 15px 0;
    color: #666;
    font-size: 13px;
    text-align: center;
}
.privacy input{
    margin-right: 5px;
}
.privacy a{
    color: #666;
    text-decoration: underline;
}

.piaochuang {
    position: fixed;
    bottom: 30%;
    right: 10px;
    z-index: 10;
    width: 102px;
    height: 180px;
    text-align: center;
    background: url(../images/piaochuang.png) no-repeat;
    background-size: 100% auto;
}
.piaochuang a {
    display: inline-block;
    width: 102px;
    height: 46px;
    text-align: center;
    color: #fff;
    margin-top: 24px;
}
.piaochuang img {
    width: 55px;
    height: 55px;
    border-radius: 4px;
    margin-top: 4px;
    margin-left: 3px;
}