body {
    /* border: 1px solid red; */
}

.back {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
}

.back img {
    width: 100%;
    height: 100%;
}

.login_content {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 70%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 20px;
    height: 600px;
    overflow: hidden;
}

.lo_left {

    height: 600px;
    width: fit-content;
}

.lo_left img {
    height: 600px;
    width: fit-content;
}

.lo_right {
    overflow: hidden;
    box-sizing: border-box;
    padding: 20px 40px;
}

.lo_logo {
/*    width: 40%;*/
    width: 28%;
}

.lo_logo img {
    width: 100%;
}

.lo_share {
    margin-top: 15px;
}

.label {
    background: #e2f0ff;
    color: blue;
    font-size: 14px;
    height: 30px;
    line-height: 30px;
    border-radius: 5px;
    margin-left: 10px;
    box-sizing: border-box;
    padding: 0px 10px;
}

.lo_con {
    margin-top: 10%;
}

.lo_name {
    margin-top: 25px;
}

.lo_input {
    height: 44px;
    margin-top: 15px;
    background: #f5f6f8;
    border-radius: 10px;
}

.lo_input input {
    height: 44px;
    width: 100%;
    box-sizing: border-box;
    padding: 0px 10px;
    border-radius: 10px;
    outline: 0;
    border: 0;
    background: none;
}

.lo_btn {
    margin-top: 40px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    background: #178eff;
    border-radius: 10px;
    color: white;
}

.lo_read {
    margin-top: 20px;
    font-size: 13px;
}

.lo_read input {
    transform: translateY(2px);
}

.lo_read span {
    color: #ff6600;
}

@media screen and (max-width:1600px) {
    .login_content {
        top: 45%;
        height: 550px;
    }

    .lo_left {

        height: 550px;
        width: fit-content;
    }

    .lo_left img {
        height: 550px;
        width: fit-content;
    }

}

@media screen and (max-width:1200px) {
    .login_content {
        width: 90%;
        height: 500px;
    }

    .lo_left {

        height: 500px;
        width: fit-content;
    }

    .lo_left img {
        height: 500px;
        width: fit-content;
    }

    .lo_right {
        padding: 20px 30px;
    }

    .lo_share {
        margin-top: 15px;
    }


    .lo_con {
        margin-top: 7%;
    }

    .lo_name {
        margin-top: 20px;
    }

    .lo_btn {
        margin-top: 30px;
    }


}

@media screen and (max-width:800px) {
    .login_content {
        width: 90%;
        height: fit-content;
    }

    .lo_left {
        display: none;
    }


}

@media screen and (max-width:600px) {
    .login_content {
        width: 90%;
        height: fit-content;
    }

    .lo_left {
        display: none;
    }

    .lo_right {
        padding: 20px 20px;
    }
    .lo_share {
        margin-top: 20px;
    }
  .lo_con {
        margin-top: 10%;
    }
.lo_read {
    margin-top: 10px;
}

}

/* 验证码按钮样式 */
.sms-btn {
    position: absolute;
    right: -120px;
    top: 50%;
    transform: translateY(-50%);
    background: #007bff;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 3px;
    cursor: pointer;
}

.sms-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.input-group {
    position: relative;
}

/* 隐藏浏览器默认的密码显示图标 */
input[type="password"]::-webkit-credentials-auto-fill-button,
input[type="password"]::-webkit-contacts-auto-fill-button {
    display: none !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

/* 隐藏 Edge/Chrome 浏览器的密码显示按钮 */
input[type="password"]::-ms-reveal,
input[type="password"]::-ms-clear {
    display: none !important;
}

.eye-icon {
    z-index: 10;
    opacity: 0.6;
    transition: opacity 0.3s;
}

.eye-icon:hover {
    opacity: 1;
}

.eye-icon::before,
.eye-icon::after {
    display: none !important;
    content: none !important;
}

.error-msg {
    color: red;
    font-size: 12px;
    margin-top: 5px;
}

/* 登录方式切换标签 */
.login-tabs {
    display: flex;
    margin-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.login-tab {
    flex: 1;
    text-align: center;
    padding: 10px 0;
    cursor: pointer;
    color: #666;
    font-size: 14px;
    position: relative;
}

.login-tab.active {
    color: #ff6600;
    font-weight: bold;
}

.login-tab.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 2px;
    background: #ff6600;
}

.lo_register_link {
    text-align: center;
    margin: 15px 0;
}

.lo_register_link a {
    color: #ff6600;
    text-decoration: none;
    font-size: 14px;
}

.lo_register_link a:hover {
    text-decoration: underline;
}

.red {
    color: red;
}

/* 验证码输入框特殊样式 */
.lo_input_sms {
    position: relative;
    width: calc(100% - 120px);
}

.lo_input_sms input {
    padding-right: 40px;
}

/* 密码输入框样式 - 需要右侧内边距时使用 */
.lo_input input[type="password"] {
    padding-right: 40px;
}

/* 注册页面眼睛图标样式 */
.eye-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    width: 20px;
    height: 20px;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10;
    background-image: url('../img/eyes.png');
    background-size: 20px 20px;
    background-position: left center;
    background-repeat: no-repeat;
}