.oauth-root {
    width: 100vw;
    height: 100vh;
    overflow: auto;
    display: flex;
    background: #ffffff;
}

.oauth-root .background-img {
    width: 70%;
    height: 100vh;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.oauth-root .oauth-container {
    flex: 1 1 auto;
    display: grid;
    grid-template-rows: 1fr 1fr 1fr;
    padding: 0 3rem;
}

.oauth-img-content {
    width: 414px;
    margin: 0 auto;
    padding-top: 70px;
}
.provenance {
    position: absolute;
    left: 62px;
    bottom: 28px;
    color: #FFF;
    font-size: 1.75rem;
    font-weight: 400;
    z-index: 2;
}
.logo-eco {
    width: 130px;
    object-fit: contain;
    padding: 0 12px;
}
.content {
    width: 414px;
    margin: 0 auto 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.content .tabs {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    justify-content: space-between;
    border-bottom: 1px solid #E5E9F2;
    margin: 0 3rem 33px;
}
.content .tabs .tabs-tab {
    display: flex;
    justify-self: center;
    cursor: pointer;
    height: 54px;
    color: rgba(0, 7, 30, 0.45);
    font-size: 2.5rem;
    font-weight: 400;
    align-items: center;
    position: relative;
    transition: all 0.3s ease;
}
.content .tabs .tabs-tab.tabs-tab-active,
.content .tabs .tabs-tab:hover
{
    color: rgba(0, 7, 30, 0.85);
    font-weight: 500;
}
.content .tabs .tabs-tab.tabs-tab-active:after {
    content: '';
    display: block;
    width: 100%;
    height: 3px;
    border-radius: 1px;
    background: #3961FF;
    position: absolute;
    bottom: -1px;
}
.content .tabs .tabs-tab:nth-child(1) {
    justify-self: start;
}
.content .tabs .tabs-tab:last-child {
    justify-self: end;
}

.form, .wechat-form {
    width: 100%;
    min-height: 414px;
}
.form-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 12px 3rem;
}
.form-item-label {
    color: rgba(0, 7, 30, 0.85);
    font-size: 2rem;
    font-weight: 500;
    width: 100%;
    margin-bottom: 12px;
}
.form-item-input-text .ivu-input {
    display: flex;
    height: 6rem;
    line-height: 6rem;
    padding: 1rem 2rem;
    align-items: center;
    gap: 10px;
    align-self: stretch;
    width: 100%;
    border-radius: 0.75rem;
    border: 1px solid #E5E9F2;
    outline: none;
    font-size: 1.75rem;
}
.form-item-input-text .ivu-input:focus-within,
.form-item-input-text .ivu-input:focus
{
    border-color: #3961FF;
    box-shadow: none;
}
/*修改placeholder颜色*/
.form-item-input-text .ivu-input::-webkit-input-placeholder {
    color: rgba(0, 7, 30, 0.45);
    font-size: 1.75rem;
    font-weight: 400;
}
.form-item-button {
    display: flex;
    width: 100%;
    height: 6rem;
    padding: 1rem 2rem;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    border-radius: 0.75rem;
    background: #3961FF;
    outline: none;
    /*禁止用户选择文本*/
    -moz-user-select:none;
    -webkit-user-select:none;
    -ms-user-select:none;
    user-select:none;
    cursor: pointer;
    margin-top: 0.75rem;
    color: #FFF;
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: 2px;
}
.form-item .ivu-input-suffix {
    width: auto;
}
.form-item .get-captcha-box {
    height: 100%;
    display: flex;
    align-items: center;
}
.form-item .get-captcha-box .get-captcha {
    color: #3961FF;
    font-size: 1.75rem;
    font-weight: 400;
    white-space: nowrap;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 16px 0 10px;
    cursor: pointer;
}
.form-item .get-captcha-box .get-captcha-num {
    color: rgba(0, 7, 30, 0.45);
    font-size: 1.78rem;
    font-weight: 400;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 16px 0 10px;
    cursor: pointer;
}

.wechat-form {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.wechat-form #qrcode-con {
    width: 26.5rem;
    height: 26.5rem;
    border-radius: 4px;
    border: 1px solid #E5E5E5;
    background: #FFF;
    padding: 16px;
    margin-top: 24px;
}
.wechat-form .tooltip-text {
    color: rgba(0, 7, 30, 0.45);
    font-size: 14px;
    font-weight: 400;
    margin-top: 30px;
}

.account-management {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 3rem;
    margin-top: 12px;
}
.account-management .register {
    color: rgba(0, 7, 30, 0.45);
    font-size: 1.75rem;
    font-weight: 400;
    cursor: pointer;
}
.account-management .register .span {
    color: #3961FF;
}
.account-management .captcha {
    color: #3961FF;
    font-size: 1.75rem;
    font-weight: 400;
    cursor: pointer;
}
.reminder {
    width: 334px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.75rem;
    margin: 12px auto 0;
    color: rgba(0, 7, 30, 0.45);
    line-height: normal;
    white-space: nowrap;
}


.reminder .span {
    color: #3961FF;
    font-size: 1.75rem;
    font-weight: 400;
    cursor: pointer;
}
.reminder svg {
    margin-left: 4px;
}
.cursor {
    cursor: pointer;
}

.quick-logo {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding-bottom: 20px;

}
.quick-logo .img {
    width: 10rem;
}

.oauth-root .content .title {
    color: rgba(0, 7, 30, 0.85);
    font-size: 3.5rem;
    font-weight: 500;
    padding: 0 3rem;
    margin-bottom: 4rem;
}
.wechat-form-mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 -3rem;
}
.wechat-form-title {
    display: flex;
    width: 100%;
    align-items: center;
    white-space: nowrap;
}
.wechat-form-title:after,
.wechat-form-title:before {
    color: rgba(0, 7, 30, 0.45);
    text-align: center;
    font-size: 1.75rem;
    font-weight: 400;
    line-height: normal;
    content: '';
    display: block;
    width: 50%;
    height: 1px;
    border-radius: 1px;
    background: #E5E9F2;
}

.wechat-form-title:after {
    margin-left: 10px;
}
.wechat-form-title:before {
    margin-right: 10px;
}
.wechat-form-icon {
    margin-top: 16px;

}

.grecaptcha-badge {
    display: none !important;
}
