section .login {
    width: 335px;
    height: 400px;
    margin: 0 auto;
    padding: 20px 35px;
    background-color: #fff;
    border-radius: 10px;
}
section .login .login-title {
    height: 44px;
}
section .login-title {
    display: flex;
    justify-content: space-between;
}
section .login-title div {
    height: 44px;
    line-height: 44px;
    font-size: 20px;
    color: #666666;
}
section .login-title div.current {
    color: #119cd3;
} 
section .login-title div.current::after {
    display: block;
    content: '';
    width: 30px;
    height: 4px;
    margin: 0 auto;
    border-radius: 2px;
    background-color: #119cd3;
}
section .login-title span {
    display: inline-block;
    width: 2px;
    height: 44px;
    background-color: #dfe0e1;
}
/* 登录提示 */
section .login-tip {
    margin-top: 20px;
    height: 20px;
    color: red;
}
/* 账号密码输入框 */
section .login-contain {
    margin-top: 6px;
    color: #999999;
}
section .login-contain>div {
    position: relative;
}
section .login-username,
section .login-password {
    height: 74px;
}
section .login-username span,
section .login-password span{
    font-size: 14px;
    color: red;
}
section .login-username>input, 
section .login-password>input {
    width: 100%;
    height: 40px;
    margin-bottom: 5px;
    padding:0 36px 0 20px;
    border: 1px solid #6399c5;
    border-radius: 5px;
    font-size: 16px;
    box-sizing: border-box;
}
section .login-contain .login-username::after, 
section .login-contain .login-password::after {
    display: block;
    position: absolute;
    top: 11px;
    right: 11px;
    z-index: 2;
    content: '';
    width: 24px;
    height: 24px;
}
section .login-contain .login-username::after {
    background: url(../img/login-user.png) no-repeat;
}
section .login-contain .login-password::after {
    background: url(../img/login-password.png) no-repeat;
}
section .login-contain .remember {
    margin-bottom: 35px;
    color: #666;
}
section .login-contain .remember input {
    position: relative;
    width: 16px;
    height: 16px;
    border: 1px solid #119cd3;
    border-radius: 3px;
    background-color: #fff;
    -webkit-appearance: none;
}
.remember label {
    vertical-align: top;
}
.remember input:checked +label {
    position: relative;
}
.remember input:checked +label::before{
    display: block;
    position: absolute;
    top: 0;
    left: -20px;
    content: "\2714";
    text-align: center;
    font-size: 12px;
    color: #119cd3;
}
section .login-contain .remember a {
    float: right;
    color: #666;
}
section .login-contain button {
    display: block;
    width: 100%;
    height: 44px;
    background-color: #119cd3;
    color: #fff;
    font-size: 18px;
    border-radius: 6px;
    line-height: 44px;
    border: none;
    box-sizing: border-box;
}
