* {
    margin: 0;
    padding: 0;
}
body {
    background: url('../images/login/background.png');
    background-size: cover;
}
.loginBg {
    /*overflow: hidden;*/
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.login-wrap {
    width: 564px;
    height: 510px;
    margin: 0 auto;
    position: relative;
    /*transform: translateY(50%);*/
}
.login-logo {
    display: block;
    margin: 30px auto;
}
.login-input {
    width: 500px;
    margin: 0 auto 40px;
}
.login-input label {
    display: block;
}
input {
    outline: none;
    color: #ffffff;
    font-size: 18px;
}
input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 1000px white inset !important;
}
input :hover {
    background-color: #777;
}
.loginName input {
    vertical-align: middle;
    width: 455px;
    height: 50px;
    background: url('../images/login/YH.png') 0 6px no-repeat;
    padding-left: 45px;
    margin-top: 20px;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 1);
}
.loginPwd input {
    vertical-align: middle;
    width: 455px;
    height: 50px;
    background: url('../images/login/Mm.png') 0 6px no-repeat;
    padding-left: 45px;
    margin-top: 40px;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 1);
}
.login-error {
    color: #ee5753;
    margin-top: 40px;
    height: 22px;
    width: 500px;
}
.login-error p {
    display: none;
}
.login_bt {
    width: 500px;
    height: 50px;
    display: block;
    margin: 0 auto;
    font-size: 20px;
    color: #ffffff;
    font-weight: bolder;
    background: linear-gradient(#ffe18d, #bf9418);
    background: -o-linear-gradient(#ffe18d, #bf9418);
    background: -webkit-linear-gradient(#ffe18d, #bf9418);
    background: -moz-linear-gradient(#ffe18d, #bf9418);
    border-radius: 5px;
    border: none;
    cursor: pointer;
    letter-spacing: 5px;
}
.login_tips {
    color: #e8e8e8;
    text-align: center;
    margin-top: 25px;
    font-size: 18px;
}
.login_tips a {
    color: #bf9418;
    text-decoration: none;
}
.login-shadow {
    position: absolute;
    bottom: -50px;
    left: -168px;
}
.login_bt :focus {
    outline: none;
}
