body{
    min-width: 1024px;
}

/*登陆表单样式 start*/
.wrap {
    width: 100%;
    height: 100%;
    background: url("/images/login/login-backgroud.jpg") no-repeat fixed center center;
    z-index: 1;
    background-size:100% 100%;
}

.loginTop{
    height: 180px;
    background-size:100% 100%;
    color: white;
    font-size: 160px;
    position: absolute;
    z-index: 100;
    top: 38%;
    left: 13%;
    letter-spacing: 20px;/*字间距*/
}
.loginTop img{
    width: 160px;
    height: 160px;
    margin: 5px;
}
.loginTop label{
    margin-left: 15px;
}

.loginMiddle{
    width: 100%;
    height: 85%;
    position: absolute;
    bottom: 10px;
}

.loginInfo {
    position: relative;
    width: 45%;
    height: 70%;
    top: 5%;
    float: left;
}

.loginInfo img {
    position: relative;
    width: 100%;
    height: 100%;
}


.loginForm {
    position: relative;
    width: 30%;
    height: 70%;
    max-width: 400px;
    max-height: 500px;
    float: right;
    top: 50px;
    right: 5%;
    color: white;
    border-radius: 10px;
    animation: login 1s;
    -webkit-animation: login 1s;
    display: block;
    z-index: 100;
}


#userLogin{
    width: 100%;
    height: 100%;
    background-size:100% 100%;
    box-shadow: 3px 3px 10px 2px #002E3F;
    border-radius: 25px;
    background-color: rgba(98,110,110,0.5);
}

.logoHead {
    text-align: center;
    padding-top: 14%;
    width: 100%;
}

.loginFormWrapDiv {
    width: 70%;
    height: 10%;
    margin-left: 15%;
    margin-top: 20px;
    float: left;
}

.inputDiv input {
    width: 100%;
    height: 40px;
    line-height: 40px;
    text-indent: 40px;/*文本输入光标的距离*/
    border: 2px solid rgba(255,255,255,0.5);
    background-color: rgba(255,255,255,0.7);
    color: #000000;
    border-radius: 8px;
}

.userName {
    width: 70%;
    height: 40px;
}

.password {
    width: 70%;
    height: 40px;
}

.validateCodeDiv .code{
    width: 100%;
    height: 40px;
}

.validateCodeDiv div {
    padding-top: 10px;
    float: left;
}

.validateCodeDiv input {
    width: calc(90% - 80px);
    height: 40px;
    line-height: 40px;
    text-indent: 40px;/*文本输入光标的距离*/
    border: 2px solid rgba(255,255,255,0.5);
    background-color: rgba(255,255,255,0.7);
    color: #000000;
    border-radius: 8px;
}

.validateCodeDiv img{
    float: right;
    height: 42px;
    line-height: 42px;
    width: 80px;
    border-radius: 8px;
}

.submitDiv {
    width: 100%;
    text-align: center;
    margin-top: 20px;
    border-radius: 8px;
}

/*去除input自动回填背景色*/
input:-internal-autofill-previewed,
input:-internal-autofill-selected {
    -webkit-text-fill-color: #FFFFFF !important;
    transition: background-color 5000s ease-in-out 0s !important;
}
