.emailLogin{
    outline: none;
    border: 0;
    cursor: pointer;
    background: #3eb7ff;
    border-radius: 2px;
    padding: 0 5px;
    height: 24px;
    line-height: 23px;
    color: #fff;
    position: relative;
    top: 0px;
    font-size: 12px;
}
.restPwdBtn{
    outline: none;
    border: 0;
    cursor: pointer;
    background: #0070c0;
    border-radius: 2px;
    padding: 0 5px;
    height: 24px;
    line-height: 23px;
    color: #fff;
    position: relative;
    top: 0px;
    font-size: 12px;
}
.emailLogin img{
    height: 100%;
    /* height: 20px; */
    position: relative;
    top: -1px;
}
#emailLoginDiaLog *{
    box-sizing: border-box;
}
#emailLoginDiaLog{
    display: none;
    padding: 20px;
}
#emailLoginDiaLog .inputBody{
    position: relative;
    height: 38px;
    border: 1px solid #D2D2D2!important;
    margin-bottom: 20px;
}
#emailLoginDiaLog .inputBody.code{
    width: 65%;
    display: inline-block;
}
#emailLoginDiaLog .sendCode.on{
    pointer-events: none;
}
#emailLoginDiaLog .sendCode{
    text-align: center;
    width: 30%;
    cursor: pointer;
    height: 38px;
    border-radius:8px;
    background: #409eff;
    color: #fff;
    line-height: 38px;
    border: 0;
    font-size: 14px;
    outline: none;
    float: right;
}
#emailLoginDiaLog .inputBody .icon{
    position: absolute;
    height: 100%;
    width: 38px;
    top: 0;
    left: 0;
}
#emailLoginDiaLog .inputBody .icon img{
    width: 100%;
}
#emailLoginDiaLog .inputBody .icon.email{
    background: #e8f5ff;
}
#emailLoginDiaLog .inputBody .icon.email img{
    width: 23px;
    height: 23px;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
}
#emailLoginDiaLog .inputBody input{
    width: 100%;
    height: 100%;
    font-size: 14px;
    padding-left: 50px;
}
#emailLoginDiaLog .button{
    text-align: center;
}
#emailLoginDiaLog .button .loginBtn{
    margin: auto;
    width: 320px;
    cursor: pointer;
    height: 40px;
    border-radius: 8px;
    background: #409eff;
    color: #fff;
    line-height: 40px;
    border: 0;
    font-size: 16px;
    outline: none;
}

#forgotPasswordDialog{
    display: none;
    padding: 20px;


}
#forgotPasswordDialog .title{
    text-align: center;
    font-size: 18px;
    margin-bottom: 10px;
}
#forgotPasswordDialog #step2,
#forgotPasswordDialog #step3{
    display: none;
}
#forgotPasswordDialog .button{
    margin-top: 5px;
    text-align: center;
}
#forgotPasswordDialog .tips{
    color: #aaa;
    font-size: 14px;
    text-align: center;
    margin-top: 10px;
    cursor: pointer;
}
#forgotPasswordDialog .sendOutCode{
    display: flex;
    margin: 50px 0;
}
#forgotPasswordDialog .sendOutCode .codeInput{
    width: 65%;
    border-radius: 8px 0 0 8px;
    height: 30px;
    line-height: 45px;
    border: 1px solid #ccc;
    color: #000;
    width: 100%;
    padding: 0 10px;
}
#forgotPasswordDialog .sendOutCode .sendOutBtn{
    width: 35%;
    cursor: pointer;
    height: 32px;
    border-radius: 0 8px 8px 0;
    background: #409eff;
    color: #fff;
    line-height: 32px;
    border: 0;
    font-size: 14px;
    outline: none;
}
#forgotPasswordDialog .sendOutCode .sendOutBtn.on{
    pointer-events: none;
}
#forgotPasswordDialog .button button{
    width: 320px;
    cursor: pointer;
    height: 40px;
    border-radius: 8px;
    background: #409eff;
    color: #fff;
    line-height: 40px;
    border: 0;
    font-size: 16px;
    outline: none;
}
#forgotPasswordDialog .dialog-body .line{
    height: 60px;
    line-height: 60px;
    display: flex;
}
#forgotPasswordDialog #step2 .dialog-body .line{
    min-height: 50px;
    line-height: 24px;
    display: flex;
    margin-bottom: 0px;
    height: auto;
}
#forgotPasswordDialog .dialog-body .line .valueText{
    width: 80%;
    margin-left: 10px;
}
#forgotPasswordDialog .dialog-body .line .inputName{
    width: 70px;
    text-align: left;
}
#forgotPasswordDialog .dialog-body .line .input{
    width: 80%;
    margin-left: 10px;

}
#forgotPasswordDialog .dialog-body .code .input{
    width: 40%;
}
#forgotPasswordDialog .dialog-body .line .input input{
    border-radius: 8px;
    height: 30px;
    line-height: 45px;
    border: 1px solid #ccc;
    color: #000;
    width: 100%;
    padding: 0 10px;
    box-sizing: border-box;
}
#forgotPasswordDialog .dialog-body  .codeImg{
    text-align: right;
    width: calc(100% - 40% - 60px);
}

#forgotPasswordDialog .sendLoad{
    animation: rotate 5s linear infinite;
    height: 17px;
    width: 17px;
    margin-right: 10px;
    display: none;
}
#emailLoginDiaLog .sendLoad{
    animation: rotate 3s linear infinite;
    height: 17px;
    width: 17px;
    margin-right: 10px;
    display: none;
}
@keyframes rotate{
    0%{
        transform: rotate(0)
    }

    100%{
        transform: rotate(360deg)
    }
}