html,body{
    width: 100%;
    height: 100%;
    margin: 0;
}

/* header */
.header{
    width: 100%;
    margin: 0 auto;
}
.headerTitle{
    display: flex;
    align-items: center;
    padding: 0 40px;
}
.headerTitle span{
    font-weight: bold;
    line-height: 120px;
    font-size: 24px;
    color: #666666;
    display: block;
    padding: 0 20px;
}
.headerTitle img{
    width: 70px;
    height: 70px;
    display: block;
}

/* body */
.bgBox{
    width: 100%;
    height: 660px;
    background-color: #ccc;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    min-width: 1000px;
}
.fillInBox{
    height: 660px;
    width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: center;
}
.fillIn{
    width: 328px;
    height: 424px;
    padding: 0 25px;
    background-color: rgba(255, 255, 255, 0.9);
    margin-left: auto;
    box-shadow:0px 0px 10px #999;
    border-radius: 3px;
}
.loginType{
    cursor: pointer;
    border-bottom: 1px solid #e4e4e4;
    box-sizing: border-box;
}
.loginType > div{
    font-size: 17px;
    text-align: center;
    line-height: 60px;
    letter-spacing: 1px;
    padding: 0 30px;
}
.loginType .thisLoginType{
    border-bottom: 3px solid #0084e3;
    color: #0084e3;
}
.loginInput{
    padding: 25px 0;
}
.account{
    width: 100%;
    height: 40px;
    border: 1px solid #e4e4e4;
    font-size: 16px;
    color: #666;
    text-indent: 15px;
    background-color: rgba(255, 255, 255, 0.6);
}
.account:focus{
    border: 1px solid #0084e3;
}
input,button{
    outline:none;
}
::-webkit-input-placeholder {
    color:    #999;
}
.marginM{
    margin-top: 20px;
    margin-bottom: 20px;
}
.loginBtn{
    width: 100%;
    border: none;
    cursor: pointer;
    line-height: 42px;
    margin-top: 20px;
    color: #fff;
    background-color: #008cf0;
    font-size: 15px;
    letter-spacing: 1px;
    border-radius: 2px;
}
.loginBtn:hover{
    background-color: #0084e3;
}
.errorTips{
    margin: 0;
    font-size: 14px;
    line-height: 35px;
    color: red;
    opacity: 0.8;
    margin-top: 20px;
}
.userCode{
    display: flex;
    justify-content: space-between;
}
.pass{
    width: calc(100% - 110px);
    height: 40px;
    border: 1px solid #e4e4e4;
    font-size: 16px;
    color: #666;
    text-indent: 15px;
    background-color: rgba(255, 255, 255, 0.6);
}
.pass:focus{
    border: 1px solid #0084e3;
}
.userCodeBtn{
    height: 44px;
    line-height: 44px;
    width: 100px;
    border: none;
    padding: 0;
}

/* footer */
@media screen and (min-height: 900px) {/* 屏幕高度大于900px时生效 */
    .footer{
        width: 100%;
        min-width: 1000px;
        text-align: center;
        line-height: 40px;
        font-size: 12px;
        color: #666;
        position: fixed;
        bottom: 0;
        left: 0;
    }
}

.loginBtn{
    outline: none;
}
@media screen and (max-width: 1500px) {/* 屏幕宽度小于1500px时生效 */
    .bgBox{
        height: 500px;
    }
    .fillInBox{
        height: 500px;
    }
    .fillIn{
        height: auto;
        width: 300px;
    }
}
@media screen and (max-height: 900px) {/* 屏幕高度小于900px时生效 */
    .footer{
        width: 100%;
        min-width: 1000px;
        text-align: center;
        line-height: 40px;
        font-size: 12px;
        color: #666;
    }
}
