/* WR 2025.007.17 */
* {
    box-sizing: border-box;
}
body,
html {
    padding: 0;
    margin: 0;
    font-family: Poppins, Poppins;
}

.login-wrap {
    width: 100%;
    height: 100vh;
    display: flex;
    overflow: hidden;
}
.login-left,
.login-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.login-right {
    position: relative;
    z-index: 2;
}
.login-right::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/login/bg.png') center/cover no-repeat;
    transform: scaleX(-1); /* 水平翻转背景图 */
    z-index: -1; /* 确保背景在内容下方 */
    animation: bgw 1s ease-in-out;
    animation-fill-mode: forwards;
}
@keyframes bgw {
    from {
        width: 100%;
    }
    to {
        width: 90%;
    }
}
/* .login-right{} */
.left-box {
    padding: 70px;
    width: 100%;
    height: 100%;
    background: url('../images/login/bg.png');
    background-size: cover;
}
.right-box {
    padding: 70px;
    width: 100%;
    height: 100%;
    background: #ffffff;
    border-radius: 50px 0px 0px 50px;
    border: 1px solid #ebebeb;
    border-right: none;
    position: relative;
    left: -30px;
    display: flex;
    justify-content: center;
    align-items: center;
    /* overflow: hidden; */
}
.left-content {
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.left-block {
    width: 100%;
    padding-left: 80px;
}

.left-block h2 {
    padding: 0;
    margin: 0;
    font-weight: 600;
    font-size: 24px;
    margin-bottom: 30px;
}
.left-block h2.medium {
    font-size: 22px;
    color: #333;
    margin-bottom: 20px;
}
.block-content-item {
    display: flex;
    gap: 17px;
    margin-bottom: 26px;
}
.block-content-item:last-child {
    margin-bottom: 40px;
}
.block-content-icon {
    /* height: 35px; */
    /* line-height: 35px; */
    /* display: flex; */
    align-items: center;
    justify-content: center;
}
.block-content-title {
    font-weight: 600;
    font-size: 16px;
    color: #333333;
    /* line-height: 35px; */
}
.block-content-text {
    font-weight: 400;
    font-size: 16px;
    color: #444444;
    /* line-height: 30px; */
    max-width: 600px;
}
.partners-wrap {
    display: flex;
    flex-wrap: wrap;
    /* justify-content: space-evenly; */
    max-width: 600px;
    gap: 10px;
}
.partners-item {
    background: rgba(195, 195, 195, 0.12);
    padding: 13px 16px;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    flex: 0 0 calc(25% - 7.5px); /* 一行四个，减去 gap 的影响 */
    box-sizing: border-box;
}
.partners-item img {
    display: inline-block;
    max-width: 100%;
}

/* 登录表单右侧 */
.right-box-img {
    margin-bottom: 20px;
}
.box-title {
    margin-bottom: 45px;
    font-weight: 600;
    font-size: 34px;
    color: #000000;
}
.login-box {
    max-width: 550px;
}
.login-type-wrap {
    display: flex;
    gap: 33px;
}
.login-type-item {
    border-radius: 10px;
    border: 1px solid #cccccc;
    padding: 8px 26px;
    font-weight: 500;
    font-size: 16px;
    color: #000000;
    line-height: 35px;
    display: flex;
    gap: 16px;
    align-items: center;
    cursor: pointer;
    /* font-size: clamp(16px, 4vw, 32px); */
    transition: all 0.3s ease-in-out;
    will-change: border;
}
.login-type-item:hover {
    border: 1px solid #000000;
}
.login-type-icon {
    display: flex;
    align-items: center;
}
.login-line {
    font-weight: 500;
    font-size: 22px;
    color: #b0b0b0;
    line-height: 35px;
    display: flex;
    justify-content: center;
}
.login-line-text {
    position: relative;
    padding: 0 20px;
    padding-top: 20px;
    padding-bottom: 16px;
}
.el-checkbox__label {
    width: 100%;
    display: inline-block;
    white-space: wrap;
    word-wrap: break-word; /* 允许单词内换行 */
    overflow-wrap: break-word; /* 更现代的属性 */
    word-break: break-all; /* 强制所有字符换行（适合中文） */
}
.login-line-text::before {
    content: '';
    position: absolute;
    width: 30px;
    height: 1px;
    background-color: #ccc;
    left: -20px;
    top: 50%;
}
.login-line-text::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 1px;
    background-color: #ccc;
    right: -20px;
    top: 50%;
}
.login-tips {
    font-weight: 400;
    font-size: 16px;
    color: #333333;
    display: flex;
    justify-content: center;
}
.login-tips a {
    color: #000000;
    padding: 0 6px;
    font-weight: 500;
}

/* 表单样式重置 */
.wr-Form .el-form-item {
    display: flex;
    flex-direction: column;
    margin-bottom: 16px;
}
.wr-Form .el-form-item__label {
    text-align: left;
    font-weight: 400;
    font-size: 16px;
    color: #333333;
    line-height: 25px;
    margin-bottom: 8px;
}
.wr-Form .el-form-item__content {
    margin-left: 0 !important;
}
.wr-Form .el-form-item.is-required:not(.is-no-asterisk) .el-form-item__label-wrap > .el-form-item__label:before,
.el-form-item.is-required:not(.is-no-asterisk) > .el-form-item__label::before {
    display: none;
}

.wr-Form .el-form-item.is-required:not(.is-no-asterisk) .el-form-item__label-wrap > .el-form-item__label:before,
.el-form-item.is-required:not(.is-no-asterisk) > .el-form-item__label::after {
    content: '*';
    color: #ff0000;
    margin-left: 4px;
}
.wr-Form .el-input__inner {
    border-radius: 8px;
    border: 1px solid #cccccc;
}
.wr-Form .el-input__inner:focus {
    border: 1px solid #63d6fd;
}
.el-button {
    padding: 0;
}
.wr-Form .el-input__suffix {
    display: flex;
    align-items: center;
    right: 22px;
}
.wr-Form .el-input__suffix .el-input__suffix-inner {
    display: inline-block;
    display: flex;
    align-items: center;
}
.login-btn {
    width: 100%;
    background: #63d6fd;
    border-radius: 10px 10px 10px 10px;
    color: #ffffff;
    font-weight: 600;
    font-size: 18px;
    color: #ffffff;
    text-align: center;
    height: 50px;
    line-height: 50px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    border: none;
}
.login-btn:hover {
    background: #0fc2ff;
    color: #ffffff;
}
.forgotTips {
    width: 100%;
    text-align: right;
    font-size: 12px;
    color: #333333;
    line-height: 28px;
    font-weight: regular;
    margin-bottom: 0px;
}
.forgotTips a {
    font-weight: 400;
    color: #333333;
    line-height: 35px;
    text-decoration: underline;
}
.policy-tips {
    font-weight: 400;
    font-size: 12px;
    color: #333333;
    line-height: 35px;
    margin-bottom: 10px;
}

.policy-tips a {
    color: inherit;
}
.policy-tips a:hover {
    color: inherit;
}
.wr-Form .el-checkbox {
    font-weight: 400;
    font-size: 12px;
    color: #333333;
}
.wr-Form .el-checkbox__input.is-checked + .el-checkbox__label {
    color: #333333;
}
.el-checkbox__input.is-checked .el-checkbox__inner,
.el-checkbox__input.is-indeterminate .el-checkbox__inner {
    background: #63d6fd;
    border-color: #63d6fd;
}

/* 人机验证样式 */
.forgot iframe {
    width: 200px !important;
}
iframe #content {
    background-color: #000;
}

/* 响应式适配 */
@media screen and (max-width: 768px) {
    .go-home {
        margin: 0;
        padding: 10px;
    }
    .login-wrap {
        flex-direction: column-reverse;
        height: auto;
    }
    .left-block {
        padding: 0;
    }
    .left-box {
        padding: 10px;
    }
    .left-content {
        padding: 10px;
    }
    .right-box {
        left: 0;
        width: 100%;
        border: none;
        border-radius: 0;
        padding: 10px;
    }
    .login-box {
        width: 100%;
    }
    .login-type-wrap {
        flex-direction: column;
    }
    .el-checkbox__label {
        padding: 0 10px;
        width: 100%;
        display: inline-block;
        white-space: wrap;
        word-wrap: break-word; /* 允许单词内换行 */
        overflow-wrap: break-word; /* 更现代的属性 */
        word-break: break-all; /* 强制所有字符换行（适合中文） */
    }
}
@media (max-width: 1600px) {
    .go-home {
        margin-bottom: 15px;
    }
    .left-content {
        height: auto;
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .left-block {
        padding-left: 0;
    }
}

/* 注册 */
.pwdTipsWrap {
    padding: 26px;
    background: #e8f9ff;
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    border: 1px solid #c2f0ff;
    position: absolute;
    z-index: 99;
    left: 0;
    right: 0;
    top: 52px;
    font-weight: 400;
    font-size: 14px;
    color: #4b626a;
}
.pwdTips-item {
    display: flex;
    align-items: center;
    gap: 10px;
}
.pwdTipsWrap::before {
    content: '';
    position: absolute;
    top: -11px;
    width: 0;
    height: 0;
    left: 18px;
    border-left: 14px solid transparent;
    border-right: 14px solid transparent;
    border-bottom: 12px solid #c2f0ff; /* 三角形颜色由 border-top 控制 */
}
.pwdTipsWrap::after {
    content: '';
    position: absolute;
    top: -10px;
    width: 0;
    height: 0;
    left: 20px;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-bottom: 12px solid #e8f9ff; /* 三角形颜色由 border-top 控制 */
}
.reg-wrap .box-title {
    margin-bottom: 38px;
}

/* 重置密码 */
.forgot-wrap {
}
.forgot-wrap .login-box {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.forgot-wrap .login-box .box-title {
    font-weight: 600;
    font-size: 30px;
    color: #000000;
    margin-block: 0;
    margin-bottom: 18px;
}
.box-sec-title {
    font-weight: 400;
    font-size: 16px;
    color: #333333;
    line-height: 35px;
    margin-block: 0;
    margin-bottom: 46px;
}
.forgot-wrap .login-form-wrap {
    width: 100%;
    max-width: 550px;
}
.forgot-wrap .wr-Form > .el-form-item:nth-last-child(2) {
    margin-bottom: 90px;
}
.forgot-wrap .wr-Form .el-form-item:last-child {
    margin-bottom: 10px;
}
.forgot-wrap .login-tips {
    display: flex;
    gap: 6px;
}
.forgot-wrap .login-tips img {
    display: inline-block;
    align-items: center;
}
.login-tips-icon {
    display: flex;
    align-items: center;
}
.forgot-wrap .login-box {
    max-width: 700px;
    width: 100%;
}
.forgot-wrap .login-tips a {
    color: #333;
}
.forgot-wrap .login-tips:hover a {
    color: #000;
}

.go-home {
    margin-bottom: 40px;
}
