*, ::after, ::before {
    box-sizing: revert;
}

body {
    min-width: 1440px;
    opacity: 1;
    background: linear-gradient(135deg, rgba(186, 215, 255, 1) 0%, rgba(232, 241, 255, 1) 30.39%, rgba(235, 243, 255, 1) 73.77%, rgba(207, 227, 255, 1) 100%);
    background-size: cover;
    /* 确保背景渐变覆盖整个屏幕 */
    background-attachment: fixed;
    /* 背景固定在视口 */
}

.body-content {
    font-family: 'Roboto-Medium';
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

header {
    display: flex;
    justify-content: center;
}

.logo {
    background-image: url("../public/images/logo2.png");
    left: 152px;
    width: 100px;
    height: 42px;
    margin: 24px 1090px 0 0;
    opacity: 1;
    align-items: center;
}

.content {
    display: flex;
    /* 使用 Flexbox 进行左右排列 */
    align-items: center;
    /* 垂直居中对齐 */
    justify-content: space-around;
    /* 在水平方向上均匀分布 */
    position: relative;
    top: 85px;
}

.left {
    /* background-color: #ccc; */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    flex-direction: column;
    margin-right: 80px;
}

.left-top {
    width: 588px;
}

.left-top2 {
    display: none;
}

.left-bottom {
    display: flex;
    align-items: center;
    /* 垂直居中对齐 */
    justify-content: center;
    /* 水平居中对齐 */
}

.left-top span:first-child {
    /** 文本1 */
    font-size: 42px;
    font-weight: 500;
    letter-spacing: 0px;
    line-height: 57.62px;
    color: rgba(0, 74, 179, 1);
    font-family: 'AlibabaPuHuiTi-Medium';
}

.left-top span:last-child {
    /** 文本1 */
    font-family: 'Roboto-Medium';
    display: block;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0px;
    line-height: 18.75px;
    color: rgba(0, 0, 0, 0.45);
    margin-top: 16px;
}

.right {
    display: flex;
    flex-direction: row;
    justify-content: center;
    /* 水平居中对齐 */
    width: 480px;
    height: 600px;
    opacity: 1;
    border-radius: 12px;
    background: rgba(255, 255, 255, 1);
    border: 1px solid rgba(0, 0, 0, 0.12);
    box-shadow: 0px 3px 20px 2px rgba(211, 229, 255, 1);
}

.right .right-content {
    position: relative;
    margin-top: 65px;
    width: 351px;
}

.right .right-content .title {
    margin-bottom: 40px;
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 0px;
    line-height: 28.13px;
    color: rgba(0, 0, 0, 1);
}

.right .title span {
    position: relative;
    display: block;
    top: 65px;
    width: 179px;
    height: 65px;
    font-family: 'Roboto-Medium';
    white-space: nowrap;
    opacity: 1;
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 0px;
    line-height: 28.13px;
    color: rgba(0, 0, 0, 1);
    text-align: left;
}

footer {
    display: flex;
    align-items: center;
    /* 垂直居中对齐 */
    justify-content: center;
    /* 水平居中对齐 */
    margin-top: 150px;
}

footer p {
    /** 文本1 */
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0px;
    line-height: 16.41px;
    color: rgba(153, 153, 153, 1);
    text-align: center;
    vertical-align: top;
}

.icon-left-bottom img {
    width: 571px;
    height: 470px;
    margin-bottom: -120px;
}

.tab-container {
    display: flex;
    /* 使用flexbox布局 */
    margin-bottom: 20px;
    /* 底部间距 */
}

.tab {
    /* tab 的内边距 */
    cursor: pointer;
    /* 鼠标悬停时为指针 */
    color: #555;
    /* 默认文本颜色 */
    transition: background-color 0.3s ease, color 0.3s ease;
    margin-right: 16px;
}

.tab:hover {
    background-color: #e0e0e0;
    /* 鼠标悬停时背景颜色 */
    color: #333;
    /* 鼠标悬停时文本颜色 */
}

.tab.active {
    color: #007bff;
    /* 选中 tab 的文本颜色 */
    border-bottom: 2px solid #007bff;
    /* 选中 tab 的底部边框 */
}

.tab-content {
    display: none;
    /* 默认隐藏内容 */
}

.tab-content input {
    padding-left: 20px;
    width: 327px;
    height: 42px;
    opacity: 1;
    border-radius: 6px;
    background: rgba(255, 255, 255, 1);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0px;
    line-height: 22px;
    color: rgba(0, 0, 0, 1);
    border: 1px solid #B0B0B0;
    outline: none;
    /* 移除聚焦时的默认轮廓 */
    transition: border-color 0.3s;
    /* 平滑的过渡效果 */
    margin-bottom: 16px;
}

.tab-content input:focus {
    border-color: rgb(0, 85, 204);
    /* 蓝色边框 */
}

.tab-content input::placeholder {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0px;
    line-height: 22px;
    color: rgba(0, 0, 0, 0.25);
}

.tab-content.active {
    display: block;
    /* 显示活动内容 */
}

.vcode {
    display: flex;
    align-items: center;
    border-radius: 6px;
    padding: 5px;
    width: 339px;
    height: 34px;
    margin-bottom: 16px;
    color: rgba(0, 0, 0, 1);
    border: 1px solid #B0B0B0;
}

.vscode {
    flex: 1;
    border: none !important;
    outline: none;
    margin-left: -5px;
    margin-top: 16px;
}

.resend {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0px;
    color: rgba(0, 85, 204, 1);
    cursor: pointer;
}

.separator {
    margin-left: 10px;
    margin-right: 10px;
    width: 0;
    height: 22px;
    border-left: 2px solid #ccc;
}

.vcode-pic {
    width: 81px;
    height: 30px;
    border-radius: 5px;
}

#QRCode {
    width: 100%;
}

form {
    background-color: white;
    /* 表单背景颜色 */
    border-radius: 8px;
    /* 阴影效果 */
    width: 300px;
    /* 表单宽度 */
}

.scancodeContent {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-left: 50px;
}

.scancode-img {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 240px;
    height: 240px;
    opacity: 1;
    border-radius: 6px;
    background: rgba(255, 255, 255, 1);
    border: 1px solid rgba(0, 0, 0, 0.12);
}

.sure-code {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.sure-code img {
    width: 40px;
    height: auto;
}

.sure-txt1 {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0px;
    line-height: 22px;
    color: rgba(0, 0, 0, 0.85);
}

.sure-txt2 {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0px;
    line-height: 20px;
    color: rgba(0, 0, 0, 0.45);
}

.scancode-img img {
    margin: 10px;
}

.scancode-text {
    margin-top: 8px;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0px;
    line-height: 24px;
    color: rgba(0, 0, 0, 0.85);
}

.scancode-text span {
    color: rgba(0, 85, 204, 1);
}

.login-button {
    width: 350px;
    height: 42px;
    opacity: 1;
    border-radius: 6px;
    background: rgb(0, 85, 204);
    box-shadow: 0px 8px 24px rgba(233, 239, 245, 1);
    display: flex;
    justify-content: center;
    align-items: center;
    /** 文本1 */
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0px;
    line-height: 22px;
    color: rgba(255, 255, 255, 1);
    text-align: left;
    margin-bottom: 15px;
    border: 1px;
    cursor: pointer;
}

.remember-me {
    width: 90px;
    height: 22px;
    opacity: 1;
    display: block;
}

.remember-me label {
    float: left;
    width: 56px;
    height: 22px;
    opacity: 1;
    /** 文本1 */
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0px;
    line-height: 22px;
    color: rgba(0, 0, 0, 0.45);
    text-align: left;
    vertical-align: top;
}

.remember-me input {
    margin-right: 5px;
    float: left;
    /* 右边距 */
}

.forgetpass a {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0px;
    line-height: 22px;
    color: rgba(0, 0, 0, 0.45);
    text-decoration: none;
}

.content-foot {
    width: 350px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.third-party-login {
    display: flex;
    align-items: center;
    border-radius: 8px;
    margin-top: 20px;
}

.third-party-login .text {
    /* 字体大小 */
    margin-right: 20px;
    /* 右边距 */
    /** 文本1 */
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0px;
    line-height: 14.06px;
    color: rgba(192, 199, 214, 1);
    text-align: left;
    vertical-align: top;
}

.third-party-login .social-icons {
    display: flex;
}

.third-party-login .social-icons .icons-img {
    margin-left: 40px;
    /* 图标间距 */
    left: 90.5px;
    top: 0px;
    width: 42px;
    height: 42px;
    opacity: 1;
    border-radius: 100px;
    background: rgba(235, 238, 244, 1);
    cursor: pointer;
}

.third-party-login .social-icons .icons-img:first-child {
    margin-left: 0;
}
.disabled {
    pointer-events: none; /* 禁止鼠标事件 */
    cursor: not-allowed; /* 可选：改变鼠标样式以反映禁用状态 */
}

#warm_reminder_list {
    list-style-type: none;
    padding-left: 0;
}


/* 挑战码弹框 start */
.challenge-title {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0px;
    line-height: 24px;
    color: rgba(0, 0, 0, 1);
}

.input-group label {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0px;
    line-height: 22px;
    color: rgba(0, 0, 0, 0.85);
}

.challenge-txt {
    margin-top: 5px;
    padding: 0 20px !important;
}

.challenge-content {
    max-width: 348px;
    width: 348px;
    height: 386px;
    opacity: 1;
    border-radius: 12px !important;
    background: rgba(255, 255, 255, 1) !important;
}

.input-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 24px;
}

.input-group:last-child {
    margin-bottom: 0;
}

.input-group label {
    display: block;
    margin-bottom: 8px;
}

.input-group input {
    width: 300px;
    height: 32px;
    opacity: 1;
    border-radius: 3px;
    padding-left: 20px;
    background: rgba(255, 255, 255, 1);
    border: 1px solid rgba(0, 0, 0, 0.15);
}

.input-group input::placeholder {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0px;
    line-height: 22px;
    color: rgba(0, 0, 0, 0.25);
    text-align: left;
}

.error-message {
    color: red;
    font-size: 12px;
}

.btn-red {
    color: rgba(204, 51, 0, 1);
}
/* 挑战码弹框 end */

/* 选择手机号弹框 start */
.phonenumber-title {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0px;
    line-height: 24px;
    color: rgba(0, 0, 0, 1);
}

.phonenumber-txt {
    margin-top: 5px;
    padding: 0 20px !important;
    margin-bottom: 30px;
}

.phonenumber-content {
    max-width: 348px;
    opacity: 1;
    border-radius: 12px !important;
    background: rgba(255, 255, 255, 1) !important;
}

#phoneNumberSelect {
    width: 100%;
}
/* 选择手机号弹框 end */

.login-content-hide{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 123px;
}

.login-content-hide img {
    max-width: 200px;
    height: auto;
    margin-bottom: 10px;
    width: 200px;
    height: 125.57px;
}

.login-content-hide p {
    text-align: center;
    margin: 10px 0;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0px;
    line-height: 22px;
    color: rgba(0, 0, 0, 0.45);
}

/*退出弹窗--strat*/

.exit-content {
    width: 400px !important;
    min-height: 178px;
    opacity: 1;
    border-radius: 8px !important;
    background: rgba(255, 255, 255, 1) !important;
    border: 0.5px solid rgba(0, 0, 0, 0.15) !important;
}

.modal-footer div {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0px;
    line-height: 22px;
    cursor: pointer;
}

.exit-info {
    margin-top: -10px;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0px;
    line-height: 22px;
    color: rgba(0, 0, 0, 0.45);
}

.exit-cancel {
    color: rgba(0, 0, 0, 0.85);
}

.btn-red {
    color: rgba(204, 51, 0, 1);
}

.exit-info-title {
    display: flex;
    height: 24px;
    align-items: center;
    flex-direction: row;
}

.exit-info-icon {
    margin-right: 10px;
    margin-top: -2px;
}

.exit-info-icon img {
    width: 20px;
    height: 20px;
}

.exit-info-title span {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0px;
    line-height: 24px;
    color: rgba(0, 0, 0, 0.85);
}


/*退出弹窗--end*/

/*兼容不同屏幕--start*/

@media (max-height:800px) and (min-height:700px) {
    body {
        min-width: 1335px;
    }

    .content {
        height: 358px;
    }

    .left {
        margin-right: 0;
    }

    .left-top span:last-child {
        margin-top: 10.5px;
        font-size: 13px;
    }

    .icon-left-bottom img {
        width: 456px;
        height: 376px;
    }

    .left-top span:first-child {
        font-size: 34px;
    }

    .right {
        width: 425px;
        height: 540px;
    }

    .right .right-content .title {
        margin-bottom: 30px;
        font-size: 20px;
        line-height: 21.13px;
    }

    .right .right-content {
        width: 300px;
    }

    .tab-container span {
        font-size: 13px;
    }

    .tab-content input {
        width: 277px;
    }

    .tab-content input::placeholder {
        font-size: 10px;
    }

    .login-button {
        width: 300px;
    }

    .scancodeContent {
        margin-left: 0;
    }

    .remember-me input {
        width: 11px;
        height: 11px;
    }

    .remember-me label {
        font-size: 10px;
    }

    .third-party-login {
        margin-top: 18px;
    }

    .third-party-login .social-icons .icons-img {
        margin-left: 35px;
    }

    .third-party-login .text {
        margin-right: 10px;
        font-size: 10px;
    }

    .third-party-login .social-icons .icons-img {
        width: 30px;
        height: 30px;
    }

    .vcode {
        width: 290px;
    }

    .vcode-pic {
        width: 76px;
        height: 26px;
        border-radius: 5px;
    }

    footer {
        margin-top: 200px;
    }

    .msg-info,
    .msg-warning,
    .msg-error,
    .msg-success {
        width: 1080px;
        height: 32px;
        margin-top: 90px;
        border-radius: 5px;
    }
}

@media (max-height:700px) and (min-height:0px) {
    body {
        min-width: 1335px;
    }

    .content {
        height: 288px;
    }

    .left {
        margin-right: 0;
    }

    .left-top span:last-child {
        margin-top: 10.5px;
        font-size: 13px;
    }

    .icon-left-bottom img {
        width: 456px;
        height: 376px;
    }

    .left-top span:first-child {
        font-size: 34px;
    }

    .right {
        width: 425px;
        height: 540px;
    }

    .right .right-content .title {
        margin-bottom: 30px;
        font-size: 20px;
        line-height: 21.13px;
    }

    .right .right-content {
        width: 300px;
    }

    .tab-container span {
        font-size: 13px;
    }

    .tab-content input {
        width: 277px;
    }

    .tab-content input::placeholder {
        font-size: 10px;
    }

    .login-button {
        width: 300px;
    }

    .scancodeContent {
        margin-left: 0;
    }

    .remember-me input {
        width: 11px;
        height: 11px;
    }

    .remember-me label {
        font-size: 10px;
    }

    .third-party-login {
        margin-top: 18px;
    }

    .third-party-login .social-icons .icons-img {
        margin-left: 30px;
    }

    .third-party-login .text {
        margin-right: 10px;
        font-size: 10px;
    }

    .third-party-login .social-icons .icons-img {
        width: 30px;
        height: 30px;
    }

    .vcode {
        width: 290px;
    }

    .vcode-pic {
        width: 76px;
        height: 26px;
        border-radius: 5px;
    }

    footer {
        margin-top: 200px;
    }

    .msg-info,
    .msg-warning,
    .msg-error,
    .msg-success {
        width: 1080px;
        height: 32px;
        margin-top: 90px;
        border-radius: 5px;
    }
}


/*兼容不同屏幕--end*/