*{
    margin: 0;
    padding: 0;
}
html{
    height: 100%;
    width: 100%;
    background: url(../img/background.png) no-repeat;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.box{
    width: 1112px;
    height: 580px;
    display: flex;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    border-radius: 0px 4px 4px 0px 0px;
    box-shadow: 7px 10px 60px 0px rgba(41,26,204,0.10);
}
.tips{
    font-size: 14px;
    font-family: PingFangSC, PingFangSC-Regular;
    font-weight: 400;
    text-align: left;
    color: #999999;
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    top: calc(50% + 320px);
}
.left{
    width: 556px;
    height: 580px;
    background: url(../img/left.png) no-repeat;
    background-size: cover;
    text-align: center;
    line-height: 580px;
    font-size: 68px;
    font-weight: 600;
    color: #fff;
    font-family: PingFangSC, PingFangSC-Semibold;
}
.right{
    width: 556px;
    height: 580px;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.title{
    color: #000;
    font-weight: 600;
    font-size: 24px;
    margin-top: 150px;
}
.input-box{
    display: flex;
    align-items: center;
    width: 300px;
    height: 48px;
    border: 0.5px solid #5d94fb;
    border-radius: 4px;
}
.mt30{
    margin-top: 30px;
}
.mt20{
    margin-top: 20px;
}
.img20{
    width: 20px;
    height: 20px;
}
.user{
    width: 20px;
    height: 21px;
}
.lock{
    width: 20px;
    height: 23px;
}
.ml14{
    margin-left: 14px;
}
input{
    border: none;
    margin-left: 24px;
    outline:none;
}
.code{
    width: 300px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.code-input-box{
    width: 158px;
    height: 48px;
    border: 0.5px solid #5d94fb;
    border-radius: 4px;
}
.code-input{
    width: 140px;
    height: 100%;
    margin-left: 16px;
}
.code-img{
    width: 130px;
    height: 48px;

}
.radio{
    width: 300px;
    height: 20px;
    display: flex;
    align-items: center;
    margin-top: 10px;
}
.radio-img{
    width: 16px;
    height: 16px;
    margin-left: 0;
}
.radio span{
    font-size: 13px;
    font-family: PingFangSC, PingFangSC-Regular;
    font-weight: 600;
    color: #6c6767;
    margin-left: 10px;
}
.btn-sub{
    width: 300px;
    height: 40px;
    background: #2671fe;
    border-radius: 4px;
    font-family: PingFangSC, PingFangSC-Semibold;
    font-weight: 600;
    color: #fff;
    line-height: 40px;
    text-align: center;
    margin-top: 30px;
    border: 0px;
}
.btn-sub:hover{

    box-shadow:2px 2px 4px #a8a4a4;

}
.btn-sub:active {
    box-shadow:0px 0px 0px #ffffff;
}
@media screen and (max-width: 768px){
    .left{
        display: none;
    }
    .box{
        width: 556px;
    }
}
#username-error{
    color: red;
    font-size: 15px;
    position: absolute;
    margin: 310px;
    width: 150px;
}

#password-error{
    color: red;
    font-size: 15px;
    position: absolute;
    margin: 310px;
    width: 150px;
}
/** 遮罩层 **/
.loaderbox {
    display: inline-block;
    min-width: 125px;
    padding: 10px;
    margin: 0 auto;
    color: #000 !important;
    font-size: 13px;
    font-weight: 400;
    text-align: center;
    vertical-align: middle;
    border: 1px solid #ddd;
    background-color: #ffffffb0;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
    border-radius: 2px;
    -webkit-box-shadow: 0 1px 8px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 1px 8px rgba(0, 0, 0, 0.1);
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.1);
}

.loaderbox .loading-activity {
    float: left;
    width: 18px;
    height: 18px;
    border: solid 2px transparent;
    border-top-color: #000;
    border-left-color: #000;
    border-radius: 10px;
    -webkit-animation: pace-spinner 400ms linear infinite;
    -moz-animation: pace-spinner 400ms linear infinite;
    -ms-animation: pace-spinner 400ms linear infinite;
    -o-animation: pace-spinner 400ms linear infinite;
    animation: pace-spinner 400ms linear infinite;
}

