html, body {
    height: 100%;
}
body {
    overflow-x: hidden;
}
button:focus {
    outline: none;
}
.page-bg {
    background: url("/images/loginBg.jpg") no-repeat;
    background-size: 100% 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: -1;
    min-width: 1300px;
    -webkit-filter: blur(3px);
    filter: blur(3px);
}
.login-layer-wrap {
    width: 1100px;
    margin: auto;
    overflow: hidden;
    padding-top: 135px;
}
.login-layer-wrap .login-layer {
    float: right;
    margin-right: 20px;
    text-align: center;
    background: rgba(255,255,255,.6);
    border-radius: 3px;
    padding: 15px;
}
.layer-package {
    width: 378px;
    overflow: hidden;
    padding: 5px;
}
.layer-package #findPwdForm {
    position: relative;
}
.layer-package .layer-package-second {
    display: none;
    position: absolute;
    transform: translate3d(120%,0,0);
}
.form-login {
    width: 368px;
    margin: 20px auto 0;
    transition: transform 0.3s;
}
.form-login .tab-content {
    text-align: left;
    font-size: 20px;
}
.form-login .tab-content p {
    position: relative;
    margin-bottom: 24px;
}
.tab-content p .iconfont {
    font-size: 14px;
    position: absolute;
    bottom: 9px;
    left: 9px;
}
.tab-content p .close {
    right: 10px;
    bottom: 8px;
    position: absolute;
    font-size: 25px;
    display: none;
}
.tab-content p .icon-denglu {
    bottom: 8px;
}
.tab-content p .form-control {
    padding-left: 30px;
}
.tab-content p.validaterWrap {
    display: flex;
}
.tab-content p.validaterWrap input {
    margin-right: 10px;
    width: 0;
    flex-grow: 10;
}
.tab-content p .register {
    font-size: 15px;
    vertical-align: 9px;
    text-decoration: none;
}

@media screen and (max-width: 480px){
    .login-layer-wrap {
        width: 100%;
        height: 100%;
        padding: 15px 15px 15px;
    }
    .layer-package {
        width: 100%;
    }
    .page-bg {
        min-width: 320px;
        background-size: 1000px;
        background-position: -379px -125px;
    }
    .login-layer-wrap .login-layer {
        width: 100%;
        height: 100%;
        background: rgba(255,255,255,0.6);
        float: none;
    }
    .form-login {
        width: 100%;
        margin: 30px auto 0;
    }

}