* {
  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;
  min-height: 100vh;
  margin: 0 auto;
  font-family: "Microsoft YaHei", "Hiragino Sans GB", "Helvetica Neue", sans-serif;
 
  overflow-x: hidden;
}



/* ==================== 登录主容器 ==================== */
.login-main {
  width: 100%;
 
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  padding: 40px 20px;
  font-family: "PingFang SC", "Microsoft YaHei", "Hiragino Sans GB", "Helvetica Neue", sans-serif;
  background:#d7ae74
}
.login-btn-wrap-pwd{
  margin-top: 20px;
}
/* ==================== 登录框主体 ==================== */
.login-con {
  width: 1100px;
  height: 500px;
  display: flex;
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(15, 23, 42, 0.06),
    0 20px 60px rgba(15, 23, 42, 0.12),
    0 0 120px rgba(37, 99, 235, 0.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: relative;
}

/* 卡片发光边框效果 */
.login-con::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.06), rgba(15, 23, 42, 0.02) 40%, rgba(37, 99, 235, 0.12) 70%, rgba(15, 23, 42, 0.04));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 5;
}

/* ==================== 左侧广告图 ==================== */
.login-left {
  width: 500px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  background: #fff;
}

.login-left img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.login-left:hover img {
  transform: scale(1.03);
}

/* 左侧图片渐变遮罩 */
.login-left::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(15, 23, 42, 0.08) 0%,
    transparent 30%,
    transparent 70%,
    rgba(15, 23, 42, 0.25) 100%
  );
  pointer-events: none;
  z-index: 2;
}



/* ==================== 右侧登录区域 ==================== */
.login-right {
  flex: 1;
  height: 100%;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 30px 48px;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}

/* ==================== Tab切换（按钮形式） ==================== */
.login-tabs {
  display: flex;
  background: #eef2f7;
  border-radius: 12px;
  padding: 4px;
  margin-bottom: 24px;
  gap: 4px;
  flex-shrink: 0;
}

.tab-item {
  flex: 1;
  text-align: center;
  padding: 10px 0;
  font-size: 14px;
  color: #64748b;
  cursor: pointer;
  position: relative;
  border-radius: 8px;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  letter-spacing: 0.5px;
}

.tab-item:hover {
  color: #2563eb;
}

.tab-item.active {
  color: #fff;
  font-weight: 600;
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
}

/* ==================== Tab内容面板 ==================== */
.tab-panel {
  display: none;
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  animation: fadeSlideIn 0.4s ease;
}

.tab-panel.active {
  display: block;
}

@keyframes fadeSlideIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.form-input {
  width: 100%;
  height: 46px;
  background: #f8fafc;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  padding: 0 14px;
  font-size: 14px;
  color: #1e293b;
  outline: none;
  transition: all 0.3s ease;
  font-family: inherit;
}

.form-input::placeholder {
  color: #94a3b8;
}

.form-input:focus {
  border-color: rgba(37, 99, 235, 0.5);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1), 0 0 20px rgba(59, 130, 246, 0.05);
}

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

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

.input-icon {
  position: absolute;
  left: 13px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  z-index: 1;
  pointer-events: none;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.input-icon-wrap:focus-within .input-icon {
  opacity: 1;
}

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

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

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

.captcha-img {
  width: 110px;
  height: 46px;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  object-fit: cover;
}

.captcha-img:hover {
  border-color: rgba(37, 99, 235, 0.4);
  box-shadow: 0 0 12px rgba(59, 130, 246, 0.1);
}

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

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

.sms-btn {
  width: 115px;
  height: 46px;
  border: 1px solid rgba(37, 99, 235, 0.4);
  border-radius: 10px;
  background: rgba(37, 99, 235, 0.06);
  color: #2563eb;
  font-size: 13px;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.3s ease;
  font-family: inherit;
  letter-spacing: 0.5px;
}

.sms-btn:hover {
  background: rgba(37, 99, 235, 0.12);
  border-color: rgba(37, 99, 235, 0.7);
  box-shadow: 0 0 16px rgba(59, 130, 246, 0.15);
}

/* ==================== 登录选项 ==================== */
.login-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 13px;
  color: #64748b;
}

/* 自动登录 与 找回密码 左右排列 */
.login-options-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.forgot-link {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  color: #64748b;
  transition: color 0.3s ease;
}

.forgot-link:hover {
  color: #2563eb;
}

.forgot-link .link-icon {
  width: 14px;
  height: 14px;
  opacity: 0.55;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: color 0.3s ease;
}

.checkbox-label:hover {
  color: #1e293b;
}

/* 自定义复选框样式 */
.checkbox-label input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  border: 1.5px solid #cbd5e1;
  border-radius: 4px;
  background: #fff;
  cursor: pointer;
  position: relative;
  transition: all 0.25s ease;
  flex-shrink: 0;
  margin: 0;
}

.checkbox-label input[type="checkbox"]:checked {
  background: #3b82f6;
  border-color: #3b82f6;
}

.checkbox-label input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 1px;
  width: 5px;
  height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.checkbox-label input[type="checkbox"]:hover {
  border-color: rgba(59, 130, 246, 0.5);
}

.link {
  color: #2563eb;
  text-decoration: none;
  transition: color 0.3s ease;
}

.link:hover {
  color: #3b82f6;
}

/* ==================== 登录按钮 ==================== */


.login-btn {
  width: 100%;
  height: 48px;
  border: none;
  border-radius: 10px;
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 10px;
  cursor: pointer;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
  font-family: inherit;
}

.login-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #3b82f6, #60a5fa);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.login-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(37, 99, 235, 0.4);
}

.login-btn:hover::before {
  opacity: 1;
}

.login-btn:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.login-btn span {
  position: relative;
  z-index: 1;
}

/* ==================== 微信iframe区域 ==================== */
.wechat-iframe-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  min-height: 0;
}

.wechat-iframe {
  width: 100%;
  max-width: 300px;
  height: 100%;
  border: none;
  border-radius: 10px;
}

#tab-wechat {
  position: relative;
}

/* ==================== 底部：注册 + QQ登录 ==================== */
.login-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid #eef2f7;
  margin-top: auto;
}

.login-links {
  display: flex;
  align-items: center;
  font-size: 13px;
  color: #64748b;
}

.register-btn {
  margin-left: 10px;
  display: inline-block;
  padding: 7px 22px;
  border: 1px solid #2563eb;
  border-radius: 20px;
  background: #fff;
  color: #2563eb;
  font-size: 13px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.register-btn:hover {
  background: #2563eb;
  color: #fff;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
}

.link-icon {
  width: 16px;
  height: 16px;
  display: block;
  opacity: 0.55;
  transition: opacity 0.3s ease;
}

/* ==================== QQ登录 ==================== */
.qq-login {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.qq-login:hover .qq-login-text {
  color: #2563eb;
}

.qq-icon {
  width: 20px;
  height: 20px;
  display: block;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.qq-login:hover .qq-icon {
  opacity: 1;
}

.qq-login-text {
  font-size: 13px;
  color: #64748b;
  transition: color 0.3s ease;
}

/* ==================== 响应式适配 ==================== */
@media screen and (max-width: 1200px) {
  .login-con {
    width: 96%;
    max-width: 900px;
    flex-direction: column;
  }

  .login-left {
    width: 100%;
    height: 220px;
  }

  .login-right {
    padding: 30px 32px;
  }
}

@media screen and (max-width: 640px) {
  .login-main {
    padding: 20px 12px;
  }

  .login-con {
    border-radius: 14px;
  }

  .login-left {
    height: 160px;
  }

  .login-left::before {
    top: 16px;
    left: 16px;
    font-size: 12px;
    letter-spacing: 2px;
    padding: 4px 12px;
  }

  .login-right {
    padding: 24px 20px;
  }

  .login-btn {
    letter-spacing: 6px;
  }

  .tab-item {
    font-size: 13px;
  }
}
#tab-wechat iframe{
    height:300px !important
}
.impowerBox .qrcode {
    width: 120px !important; /* 自定义宽度 */
    height: 120px !important; /* 自定义高度 */
}
.js_quick_login{
    padding-top:50px
}
.tab-panel{
    border:none !important
}
.lo_2_1{
    border:none !important;
    margin-top:0 !important
}
.form-group{
    border:none !important
}