html{
    height: 100%;
    width: 100%;
}
body{
    height: 100%;
    width: 100%;
    background: url(./imgs/bg2.png);
    background-size: 100% 100%;
}
.layui-layout{
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.login-div{
    height: calc(100% - 40%);
    width: calc(100% - 50%);
    background-color: #ffffff;
    min-height: 500px;
    min-width: 900px;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.div-right{
    width: 60%;
    height: 90%;
    min-width: 540px;
    background: url("./imgs/login.png") no-repeat top left;
    background-size: 100% 100%;
}
.div-left{
    width: 38%;
    height: 90%;
    min-width: 198px;
    /*background-color: #00feff;*/
}
.login_title{
    width: 100%;
    color: #000;
    text-align: center;
}
.loginTit {
    font-size: 22px;
    padding-top: 1rem;
    padding-bottom: 1rem;
    color: #4791ec;
}

.userName_box,.passWord_box,.verify_box{
    position: relative;
    margin: 25px 40px;
    border-radius: 4px;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}
/*#validCode{*/
/*    border: 1px solid #ccc;*/
/*}*/
.userName_box:hover,.passWord_box:hover{
    border-color: #999;
}
.passWord_box{
    margin-top: 20px !important;
}
.verify_box{
    margin-top: 10px;
    line-height: 38px;
    /*border: none;*/
    box-sizing: border-box;
}
.verify_box input{
    display: inline-block;
    vertical-align: middle;
    max-width: 230px;
    width:64%;
    line-height: 38px;
    border: none;
    outline: none;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}
.userName_box input,.passWord_box input,.verify_box input,.userType{
    border: 1px solid;
    border-color: #ccc;
}
input:hover{
    border: 1px solid;
    border-color: #4791ec;
}

.username,.password,.userType{
    width: 100%;
    height: 38px;
    padding-left: 50px;
    border-radius: 4px;
    box-sizing: border-box;
}
.name_img{
    position: absolute;
    left: 15px;
    top: 10px;
    background-image: url(./imgs/form-head.png);
    background-repeat: no-repeat;
    background-position: 0px 0px;
    width: 26px;
    height: 26px;

}
.passWord_img{
    position: absolute;
    left: 17px;
    top: 8px;
    background-image: url(./imgs/form-pwd.png);
    background-repeat: no-repeat;
    background-position: 0px 0px;
    width: 26px;
    height: 26px;
}
.valid_img {
    position: absolute;
    left: 17px;
    top: 11px;
    background-image: url(./imgs/form-validcode.png);
    background-repeat: no-repeat;
    background-position: 0px 0px;
    width: 26px;
    height: 26px;
}
.txtVerification{
    height: 40px;
    padding-left: 50px;
    box-sizing: border-box;
}
.submint_box{
    height: 50px;
    color: #ffffff;
    font-size: 20px;
    margin: 0 40px 25px 40px;
    text-align: center;
    line-height: 50px;
    border-radius: 4px;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    background-color: #4791ec;
    cursor: pointer;
}
.submint_box:hover{
    background-color: #009688;
}
.login-detail{
    margin: 0 auto;
    width: 70%;
    height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /*background-color: #00feff;*/
}
.regist-info{
    font-size: 0.9rem;
    font-weight: bolder;
}
.reset-password{
    font-size: 0.9rem;
    font-weight: bolder;
    text-align: right;
}
.xszc a, .jszc a, .resetPwd a,.backIndex a{
    color: #4791ec;
    cursor: pointer;
}
.backIndex{
    padding-right: 2.2rem;;
}
@media screen and (max-width: 768px){
    .login-div {
        height: calc(100% - 40%);
        width: calc(100% - 50%);
        background-color: #ffffff;
        min-height: 34rem;
        min-width: 95%;
        border-radius: 10px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .div-left {
        width: 100%;
        height: 90%;
         min-width: 0px;
        /* background-color: #00feff; */
    }
    .div-right {
        width: 0%;
        height: 90%;
        min-width: 0px;
        background: url(./imgs/login.png) no-repeat top left;
        background-size: 100% 100%;
    }
}

