* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

img {
  border: none;
}

ul,
ol,
li {
  list-style: none;
}

html {
  font-size: 62.5%;
  min-height: 100%;
}



body {
  font-size: 20px;
  position: relative;
  max-width: 1920px;
  margin: 0 auto;
}
.login-main{
    width:100%;
    margin: 0 auto;
    background-color: #d7ae74;
    color: #656565;
}

/* ==================== 登录框主体 ==================== */
.login-con {
    width: 1000px;
    margin: 0 auto;
    display: flex;
    height:572px;
    gap: 60px;
  
}

/* ==================== 左侧广告图 ==================== */
.login-left {
    width: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}
.login-left img {
    width: 100%;
    
    display: block;
}

/* ==================== 右侧登录区域 ==================== */
.login-right {
    flex: 1;
    margin: 30px 0;
    background: #fff;
    padding: 20px 40px;
    display: flex;
    flex-direction: column;
}

/* ==================== Tab切换 ==================== */
.login-tabs {
    display: flex;
    border-bottom: 2px solid #e8e8e8;
    margin-bottom: 20px;
}
.tab-item {
    flex: 1;
    text-align: center;
    padding: 10px 0;
    font-size: 16px;
    color: #999;
    cursor: pointer;
    position: relative;
    transition: color 0.3s;
}
.tab-item.active {
    color: #0068cf;
    font-weight: bold;
}
.tab-item.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 2px;
    background: #0068cf;
}

/* ==================== Tab内容面板 ==================== */
.tab-panel {
    display: none;
    flex: 1;
}
.tab-panel.active {
    display: block;
}

/* ==================== 表单组 ==================== */
.form-group {
    margin-bottom: 15px;
}

.form-input {
    width: 100%;
    height: 42px;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 0 12px;
    font-size: 14px;
    color: #333;
    outline: none;
    transition: border-color 0.3s;
}

    .form-input:focus {
        border-color: #0068cf;
    }

/* 输入框图标 */
.input-icon-wrap {
    position: relative;
}

    .input-icon-wrap input {
        padding-left: 40px;
    }

.input-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    z-index: 1;
    pointer-events: none;
}

/* 验证码和短信包裹层需要撑满 */
.captcha-wrap,
.sms-wrap {
    flex: 1;
}

/* 图片验证码行 */
.form-captcha {
    display: flex;
    gap: 10px;
}

    .form-captcha .captcha-input {
        flex: 1;
    }

.captcha-img {
    width: 100px;
    height: 42px;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
}

/* 短信验证码行 */
.form-sms {
    display: flex;
    gap: 10px;
}

    .form-sms .sms-input {
        flex: 1;
    }

.sms-btn {
    width: 110px;
    height: 42px;
    border: 1px solid #0068cf;
    border-radius: 4px;
    background: #fff;
    color: #0068cf;
    font-size: 13px;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s;
}

    .sms-btn:hover {
        background: #0068cf;
        color: #fff;
    }
/* ==================== 登录选项 ==================== */
.login-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 15px;
    font-size: 13px;
    color: #666;
}
.checkbox-label {
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
}
.checkbox-label input[type="checkbox"] {
    margin: 0;
}
.link {
    color: #0068cf;
    text-decoration: none;
}
.link:hover {
    text-decoration: underline;
}

/* ==================== 登录按钮 ==================== */
.login-btn-wrap {
    margin-bottom: 10px;
}
.login-btn {
    width: 100%;
    height: 44px;
    border: none;
    border-radius: 4px;
    background: #0068cf;
    color: #fff;
    font-size: 18px;
    letter-spacing: 8px;
    cursor: pointer;
    transition: background 0.3s;
}
.login-btn:hover {
    background: #0055aa;
}

/* ==================== 微信iframe区域 ==================== */
.wechat-iframe-wrap {
    display: flex;
    justify-content: center;
    /* align-items: center; */
  
}
.wechat-iframe {
    width: 300px;
    height: 330px;
  
}
#tab-wechat{
 position: relative;
}
/* ==================== 底部快速注册/找回密码 ==================== */
.login-links {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
}

    .login-links .link {
        font-size: 13px;
        color: #999;
        display: flex;
        align-items: center;
        gap: 4px;
    }

.link-icon {
    width: 16px;
    height: 16px;
    display: block;
}

.login-links .link:hover {
    color: #0068cf;
}


/* ==================== QQ登录 ==================== */
.qq-login {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding-top: 8px;
    border-top: 1px solid #e8e8e8;
    margin-top: auto;
}
.qq-icon {
    width: 18px;
    height: 18px;
    display: block;
}
.qq-login-text {
    font-size: 13px;
    color: #999;
    cursor: pointer;
}
.qq-login-text:hover {
    color: #0068cf;
}

#tab-pwd{
    border:none !important
}

.impowerBox .qrcode {
    width: 200px !important; /* 自定义宽度 */
    height: 200px !important; /* 自定义高度 */
}
#tpl_old_iframe .web_qrcode_switch_wrp {
    margin-top:0;
    cursor:pointer
}
#divQrcode iframe{
    height:340px
}
.js_quick_login{
    padding-top:80px
}