@charset "UTF-8";

/** 媒体查询 */

/** 布局 */

.login-close {
    position: fixed;
    top: 5.625rem;
    right: 5.625rem;
    width: 1.25rem;
}

@media (max-width: 800px) {
    .login-close {
        top: 1.25rem;
        right: 1.25rem;
    }
}

.box {
    width: 90%;
    padding-top: 5.625rem;
}

.box.active {
    animation: myFadeInUp 1s;
}

.login-nav {
    display: flex;
    gap: 1.0625rem;
    font-size: 12px;
    color: #7F7F7F;
    justify-content: center;
    font-family: AcuminProBook;
}

.login-nav .item {
    cursor: pointer;
    position: relative;
    transition: all 0.3s;
}

.login-nav .item::after {
    content: "";
    width: 0%;
    height: 0.125rem;
    display: block;
    background-color: #000000;
    margin: 0.625rem auto 0;
    transition: all 0.2s;
}

.login-nav .item.active,
.login-nav .item:hover {
    color: #000000;
}

.login-nav .item.active::after {
    width: 100%;
}

.form {
    margin: 1.5625rem auto 0;
    display: grid;
}

.form .label {
    font-size: 1rem;
    color: #000000;
    margin-bottom: 1.0625rem;
    line-height: 1;
}

.form .input-box {
    height: 3.0625rem;
    background: #FFFFFF;
    display: flex;
    align-items: center;
    padding: 0 0.5625rem;
    box-sizing: border-box;
    gap: 0.9375rem;
    border-radius: 0.25rem;
    border: 0.0625rem solid #5C5C5C;
    font-family: AcuminProBook-L;
}

.form .input-box input {
    border: 0;
    outline: 0;
    width: 0;
    flex-grow: 1;
    font-size: 0.875rem;
}

.form .input-box .get-code {
    font-size: 0.75rem;
    color: #000;
    border-radius: 0.9375rem 0.9375rem 0.9375rem 0.9375rem;
    border: 0.0625rem solid #000;
    padding: 0.5625rem;
    line-height: 1;
    cursor: pointer;
}

.form .btns {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    font-family: AcuminProBook;
}

.form .btns button {
    border: 0;
    outline: 0;
    cursor: pointer;
}

.form .btns .btn {
    height: 3rem;
    font-size: 0.875rem;
    color: #FFFFFF;
    box-sizing: border-box;
    background: #010101;
    border-radius: 0.25rem;
}

.form .forget {
    font-size: 0.75rem;
    cursor: pointer;
    color: #4C4C4C;
    margin-top: 0.5rem;
    font-family: AcuminProBook;
}

.form .icon-ok {
    width: 6rem;
    margin: auto;
}

.form .title-ok {
    font-weight: bold;
    font-size: 1.5rem;
    color: #333333;
}

.form .link-btn {
    font-size: 1.125rem;
    color: #000;
    text-decoration: underline;
    text-align: center;
    cursor: pointer;
}

.form .agreement {
    font-size: 0.875rem;
    color: #999999;
    gap: 0.3125rem;
}

.form .agreement a {
    color: #000;
}

@media (max-width: 800px) {
    .form {
        gap: 1.25rem;
    }

    .form .label {
        font-size: 0.875rem;
        margin-bottom: 0.75rem;
    }

    .form .input-box {
        height: 2.5rem;
        padding: 0 0.75rem;
        gap: 0.9375rem;
    }

    .form .input-box input {
        font-size: 0.875rem;
    }

    .form .input-box .phone-code {
        font-size: 0.875rem;
    }

    .form .input-box .get-code {
        font-size: 0.75rem;
        padding: 0.375rem;
    }

    .form .input-box .forget {
        font-size: 0.875rem;
    }

    .form .btns {
        gap: 0.625rem;
    }

    .form .btns .btn {
        height: 2.5rem;
        font-size: 1rem;
    }

    .form .icon-ok {
        width: 4.375rem;
    }

    .form .title-ok {
        font-size: 1.125rem;
    }

    .form .link-btn {
        font-size: 1rem;
    }

    .form .agreement {
        font-size: 0.75rem;
    }
}

.login-form,
.registered-form {
    max-width: 28.75rem;
    gap: 1.0625rem;
    padding-bottom: 4.375rem;
}

.login-form.active,
.registered-form.active {
    animation: myFadeInUp 1s;
}

.login-form.active > div:nth-child(1),
.registered-form.active > div:nth-child(1) {
    animation: myFadeInUp 0.4s;
}

.login-form.active > div:nth-child(2),
.registered-form.active > div:nth-child(2) {
    animation: myFadeInUp 0.8s;
}

.login-form.active > div:nth-child(3),
.registered-form.active > div:nth-child(3) {
    animation: myFadeInUp 1.2s;
}

.login-form.active > div:nth-child(4),
.registered-form.active > div:nth-child(4) {
    animation: myFadeInUp 1.6s;
}

.login-form .btns {
    margin-top: 0.9375rem;
}

.registered-form .row-agreement {
    /*margin-top: 2.25rem;*/
    border-top: 0.0625rem solid #E6E6E6;
    display: flex;
    flex-direction: column;
    gap: 0.9375rem;
    font-size: 0.75rem;
    color: #898989;
    font-family: AcuminProBook-L;
    padding: 1.125rem 1.25rem 0;
}

.registered-form .row-agreement > div {
    gap: 0.3125rem;
}

.registered-form .row-agreement > div .checkbox {
    min-height: 1.5em;
    display: flex;
    align-items: center;
}

.registered-form .btns {
    margin-top: 1.2rem;
}

.registered-form .other {
    margin-top: 0.5rem;
}

.d-none {
    display: none;
}

.other {
    max-width: 450px;
    width: 100%;
    margin: auto;
    font-family: AcuminProBook;
}

.other .t {
    font-size: 12px;
    color: #4C4C4C;
    display: flex;
    justify-content: center;
    gap: 0.625rem;
    align-items: center;
}

.other .t::after,
.other .t::before {
    content: "";
    flex-grow: 1;
    width: 0;
    height: 0.0625rem;
    background: #E8E8E8;
}

.other .btns {
    display: flex;
    flex-direction: column;
    gap: 0.8125rem;
    margin-top: 0.9375rem;
}

.other .btns .col2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.9375rem;
}

.other .btns .item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 37px;
    font-size: 0.75rem;
    gap: 0.3125rem;
}

.other .btns .item .icon {
    width: 1rem;
}

.other .btns .item.fb, .other .btns .item.facebook {
    background: #1977F3;
    border: 0.0625rem solid #1977F3;
    color: #fff;
}

.other .btns .item.twitter {
    border: 0.0625rem solid #7E7E7E;
    color: #8A8A8A;
}

.other .btns .item.google {
    background: #000;
    border: 0.0625rem solid #000;
    color: #fff;
}

.other .btns .item.wechat {
    background: #53B82A;
    border: 0.0625rem solid #53B82A;
    color: #fff;
}

.registered-ok-form,
.reset-form,
.reset-ok-box-form {
    max-width: 28.75rem;
    gap: 1.0625rem;
    padding-bottom: 4.375rem;
}
