.main{
    width: 100%;
    height: 100%;
}
.login-main{
    width: 100%;
    height: 100%;
    background: url(../images/login-bg.png) no-repeat;
    background-size: cover;
}
.login-main .login-txt{
    transform: translateX(-120%) translateY(-110%);
    transition: transform 0.5s ease 0s;
    position: absolute;
    left: 50%;
    top: 50%;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.login-main .login-txt h1{
    font-family: PingFangSC;
    font-size: 58px;
    font-weight: 600;
    line-height: 1.29;
    color: #fff;
    padding-bottom: 4px;
    margin: 0;
    width: 100%;
}
.login-main .login-txt p{  
    color: #fff;
    opacity: .8;
    font-size: 24px;
    font-weight: 300;
    font-family: PingFangSC;
}
.login-form{
    background: #fff;
    width: 368px;
    border-radius: 20px;
    padding: 32px 24px 20px;
    overflow-x: hidden;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(45%, -240px);
    -moz-transform: translate(45%, -240px);
    transform: translate(45%, -240px);
    opacity: 1;
    transition: opacity 0.5s ease 0s;
    overflow: hidden;
    height: auto;
}
.login-form .login-title{
    width: 100%;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 16px;
    color: #575c66;
    padding-bottom: 32px;
    padding-top: 0;
    margin: 0;
}
.login-form .form-item{
    width: 100%;
    margin: 0;
    padding-top: 12px;
    padding-bottom: 12px;
    position: relative;
}
.login-form .form-item .form-input{
    height: 40px;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    box-shadow: none;
    font-size: 14px;
    line-height: 20px;
    font-family: -apple-system,BlinkMacSystemFont,Segoe UI,PingFang SC,Hiragino Sans GB,Microsoft YaHei,Helvetica Neue,Helvetica,Arial,sans-serif;
    background-color: var(--color-fill-0);
    border: 1px solid transparent;
    border-radius: var(--border-radius-small);
    width: 100%;
    outline: none;
    cursor: text;
    box-sizing: border-box;
    color: var(--color-text-0);
    display: inline-flex;
    align-items: center;
    width: 100%;
    background: rgb(242, 243, 247);
}
.login-form .form-item .form-input input{
    border: none;
    outline: none;
    width: 100%;
    color: inherit;
    padding-left: 12px;
    padding-right: 12px;
    background-color: transparent;
    box-sizing: border-box;
}
.login-form .form-error{
    font-size: 14px;
    line-height: 20px;
    font-family: -apple-system,BlinkMacSystemFont,Segoe UI,PingFang SC,Hiragino Sans GB,Microsoft YaHei,Helvetica Neue,Helvetica,Arial,sans-serif;
    display: flex;
    align-items: center;
    margin-top: 4px;
    color: red;
    display: none;
}
.login-form .form-error.show{
    display: block;
}
.login-form .form-error .ico-error{
    width: 15px;
    height: 15px;
    background: url(../images/warning.png) no-repeat;
    background-size: cover;
}
.login-form .btn-login{
    background-color: rgb(79, 107, 255);
    color:#fff;
    width:100%;
    padding: 0;
    text-decoration: none;
    margin-bottom: 15px;
}
.login-form .eye{
    display: inline-block;
    width: 25px;
    height: 25px;
    margin-right: 10px;
    background: url(../images/eye-close.png) no-repeat;
    background-size: cover;
}
.login-form .eye.eye-open{
    background: url(../images/eye-open.png) no-repeat;
    background-size: cover;
}
.logo{
    padding: 20px;
}
.login-form .code-btn{
    text-decoration: none;
    display: inline-block;
    width: 100px;
    color: #000;
}