html,
body {
    width: 100%;
    height: 100%;
}

header {
    width: 100%;
    height: 9.07vh;
    padding: 2.5vw 6.25vw;
    background-color: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
}

.logo {
    width: 188px;
    height: 44px;
    background: url("./images/logo.png") no-repeat;
    background-size: 100% 100%;
}

.head_btns {
    display: flex;
    flex-wrap: nowrap;
}

.login_btn {
    width: 72px;
    height: 34px;
    background: #F37B1D;
    border-radius: 17px;
    font-size: 16px;
    font-family: MicrosoftYaHei;
    color: #FFFFFF;
    line-height: 34px;
    margin-right: 10px;
    text-align: center;
}

.login_btn:hover {
    opacity: 0.8;
}

.reg_btn {
    width: 72px;
    height: 34px;
    background: #FFFFFF;
    border-radius: 17px;
    border: 1px solid #F37B1D;
    font-size: 16px;
    font-family: MicrosoftYaHei;
    color: #F37B1D;
    line-height: 34px;
    text-align: center;

}

.reg_btn:hover {
    background: #F37B1D;
    color: #ffffff;
}

.content {
    width: 100%;
    background-color: #f5f6f9;
    display: flex;
    box-sizing: border-box;
}


.login_form_box {
    width: 1200px;
    height: auto;
    background: #FFFFFF;
    border-radius: 10px;
    margin: 80px auto 70px;

}

.login_form {
    width: 400px;
    height: auto;
    background: #FFFFFF;
    border-radius: 10px;
    padding: 60px 0;
    box-sizing: border-box;
    margin: 0 auto;
}

.login_form .type_box {

    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    margin-bottom: 30px;
    box-sizing: border-box;
}


.login_form .type_box .sin1,
.login_form .type_box .sin2 {

    width: 60px;
    font-size: 15px;
    font-family: MicrosoftYaHei;
    line-height: 26px;
    text-align: center;
    color: #F37B1D;

}

.login_form .type_box .icon {
    width: 56px;
    height: 56px;
}

.login_form .type_box .seprate {
    width: 180px;
    height: 2px;
    background: url("./images/findPass/line.png") no-repeat;
    background-size: 100% 100%;
    margin-top: -25px;
}

.login_form .type_box .sin2 {
    color: #333333;

}

.login_form .type_box .sin2.active {
    color: #F37B1D;
}

.login_form_box .input_box {
    width: 100%;
    height: 50px;
    /* height: 4.63vh; */
    background: #FFFFFF;
    border-radius: 10px;
    border: 1px solid #DDDDDD;
    padding: 15px;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    box-sizing: border-box;
    /* margin-bottom: 20px; */
    margin-bottom: 1.85vh;
}

.login_form_box .input_box .icon {
    width: 20px;
    height: 20px;
    display: block;
}

.login_form_box .input_box .input:focus {
    border: none;
}

.login_form_box .input_box .input {
    border: none;
    font-size: 15px;
    margin-left: 6px;
}

.login_form_box .input_box .verifyImg {
    border: 1px solid #999999;
    width: 98px;
    height: 40px;
    float: right;
}

.login_form_box .verifyBtn {
    width: 116px;
    height: 50px;
    background: #FFF5EE;
    border-radius: 10px;
    text-align: center;
    line-height: 50px;
    font-size: 14px;
    font-family: PingFangSC-Regular, PingFang SC;
    font-weight: 400;
    color: #F37B1D;
}

.login_form_box .submit_btn {
    width: 100%;
    height: 50px;
    line-height: 50px;
    background: #F37B1D;
    border-radius: 25px;
    text-align: center;
    color: #ffffff;
    font-size: 16px;
    margin-top: 40px;
}

.login_form_box .submit_btn:hover {
    opacity: 0.9;
}

.login_form_box .tip_text {
    margin: 80px auto 20px;
    font-size: 15px;
    font-family: PingFangSC-Regular, PingFang SC;
    font-weight: 400;
    color: #333333;
    line-height: 21px;
    text-align: center;
}

.login_form_box .tip_text .tip_blue {
    color: #F37B1D;
}

footer {
    padding: 2.87vh 0;
    box-sizing: border-box;
    background-color: #ffffff;
    width: 100%;
}

.foot_text {
    font-size: 14px;
    font-family: MicrosoftYaHei;
    color: #999999;
    line-height: 19px;
    text-align: center;
    margin-bottom: 10px;
}