html,body{   
    height: 100%;
    background-color: #47C2A9;
}
body .loginContainer{
    width: 100%;
    max-width: 1280px;
    height: 100%;
    margin: 0 auto;

    display: flex;
    flex-direction: column;
    user-select: none;
}




/* -------------------------------------header------------------------------------- */
.loginContainer .header{
    width: 100%;
    height: 100px;
    padding: 0 24px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.header h2{
    font-size: 30px;
    font-family: PingFang SC;
    font-weight: 500;
    letter-spacing: 2px;
    color: #FFFFFF;
    margin: 0;
}

/* -------------------------------------header------------------------------------- */

/* -------------------------------------content------------------------------------- */
.loginContainer .content{  
    width: 100%;
    height: calc(100% - 150px);
    display: flex;
    align-items: center;
    justify-content: space-around;
}
.content .image-wrapper{
    width: 60%;
    height: 100%;
    max-height: 600px;
    padding: 0 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
.image-wrapper img{
    display: block;
    max-width: 100%;
    max-height: 100%;
    margin: auto auto;
}

.content .box-wrapper{
    width: 40%;
    height: 100%;
    max-height: 300px;
    padding: 0 24px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.box-wrapper .loginBox{
    width: 100%;
    max-width: 360px;
    height: 100%;
    margin: auto;
    background-color:rgba(255, 255, 255, .5);
    overflow: hidden;
    border-radius: 6px;
}
.loginBox form{
    width: 100%;
    height: 100%;
    padding: 20px 30px;

    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
}
.loginBox h3{
    margin: 0;
    color: #1AB394;
    font-size: 22px;
    font-weight: 500;
}
.loginBox .user,
.loginBox .pwd{
    width: 100%;
    height: 38px;
    position: relative;
}
.loginBox .user .inputLabel,
.loginBox .pwd .inputLabel{
    width: 42px;
    height: 38px;
    position: absolute;
    background-color: #1AB394;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    color: #FFFFFF;
    text-align: center;
    line-height: 38px;
    font-size: 16px;
}
.loginBox .user input,
.loginBox .pwd input{
    width: 100%;
    height: 38px;
    padding: 0 12px;
    font-size: 16px;
    border-radius:4px;
    color: #b1b1b1;
    border: 0;
}
.loginBox .user :nth-child(2),
.loginBox .pwd :nth-child(2){
    padding-left: 54px;
}
.loginBox button{
    width: 100%;
    height: 38px;
    margin: 0 auto;
    background: #1AB394;
    border-radius: 4px;
    border: 0;
    font-size: 16px;
    color: rgba(255, 255, 255, 1);
}
.loginBox button:hover{
    -webkit-filter: brightness(110%);
    filter: brightness(110%);
}
.loginBox button:active{
    -webkit-filter: brightness(90%);
    filter: brightness(90%);
}
/* -------------------------------------content------------------------------------- */


/* -------------------------------------footer------------------------------------- */
.loginContainer .footer{
    width: 100%;
    height: 50px;
    padding: 0 24px;
    display: flex;
    justify-content: center;
    align-items:center;
}
.footer span{  
    font-size: 12px;
    font-family: PingFang SC;
    font-weight: 500;
    color: #FFFFFF;
    text-align: center;
    /* margin-top: auto; */
    /* margin-bottom:20px; */
}
/* -------------------------------------footer------------------------------------- */

label.error {
    color: #cc5965;
    display: inline-block;
    margin-left: 5px;
}





/* 小于768px，手机垂直布局 */
@media screen and (max-width:768px){
    /* 隐藏图片 */
    .content .image-wrapper{
        display: none;
    }
    .content .box-wrapper{
        width: 100%;
    }
}