h2.page-header {
  margin: 10px 0 25px 0;
  padding-bottom: 15px;
}
.user-baseinfo {
  margin-bottom: 25px;
}
.user-baseinfo table tr td {
  color: #999;
}
@media (min-width: 992px) {
  .user-center .avatar-text,
  .user-center .avatar-img {
    height: 150px;
    width: 150px;
    border-radius: 150px;
    line-height: 150px;
    font-size: 70px;
  }
  .user-center .avatar-img {
    font-size: 0;
  }
  .user-center .avatar-img img {
    height: 150px;
    width: 150px;
    border-radius: 150px;
  }
}
.sidebar-toggle {
  display: none;
}
@media (max-width: 991px) {
  .sidenav {
    position: fixed;
    top: 50px;
    z-index: 1029;
    height: calc(100vh - 50px);
    padding: 20px 0 20px 0;
    min-width: 250px;
    overflow-y: auto;
    overflow-x: hidden;
    width: 250px;
    left: -250px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .sidebar-toggle {
    display: block;
    position: fixed;
    right: 20px;
    bottom: 70px;
    border-radius: 50%;
    background: #eee;
    font-size: 22px;
    padding: 10px;
    line-height: 30px;
    height: 50px;
    width: 50px;
    text-align: center;
    z-index: 999999;
  }
}
body.sidebar-open .sidenav {
  left: 0;
  width: 250px;
  box-shadow: 0 6px 27px rgba(0, 0, 0, 0.075);
}
body.sidebar-open .sidebar-toggle i:before {
  content: "\f00d";
}

/* 登录注册页面 - 科技感渐变色样式 */
/* 登录注册页面 - 科技感渐变色样式 */
body.auth-page {
  overflow: hidden;
  padding: 0;
  margin: 0;
  min-height: 100vh;
}

html {
  padding: 0;
  margin: 0;
  height: 100%;
}

.auth-container {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
}

.auth-container {
  min-height: 100vh;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 25%, #f093fb 50%, #4facfe 75%, #00f2fe 100%);
  background-size: 400% 400%;
  animation: gradientShift 15s ease infinite;
  padding: 0;
  margin: 0;
  position: relative;
  overflow: hidden;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.auth-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(120, 119, 198, 0.3), transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(255, 119, 198, 0.3), transparent 50%),
              radial-gradient(circle at 40% 20%, rgba(120, 200, 255, 0.3), transparent 50%);
  pointer-events: none;
}

.auth-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 20px;
  position: relative;
  z-index: 1;
}

.auth-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3),
              0 0 0 1px rgba(255, 255, 255, 0.5) inset;
  width: 100%;
  max-width: 480px;
  overflow: hidden;
  position: relative;
}

.auth-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #667eea, #764ba2, #f093fb, #4facfe, #00f2fe);
  background-size: 200% 100%;
  animation: gradientShift 3s ease infinite;
  border-radius: 20px 20px 0 0;
  z-index: 1;
}

.auth-header {
  text-align: center;
  padding: 24px 40px 8px;
}

.auth-title {
  font-size: 28px;
  font-weight: 600;
  color: #2d3748;
  margin: 0 0 8px 0;
  letter-spacing: 0.5px;
}

.auth-subtitle {
  font-size: 14px;
  color: #718096;
  margin: 0;
}

.auth-tabs {
  display: flex;
  border-bottom: 1px solid #e2e8f0;
  margin: 0 40px;
}

.auth-tab {
  flex: 1;
  padding: 16px 20px;
  text-align: center;
  color: #718096;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  border: none;
  background: none;
  cursor: pointer;
}

.auth-tab:hover {
  color: #667eea;
}

.auth-tab.active {
  color: #667eea;
  font-weight: 600;
}

.auth-tab.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #667eea, #764ba2);
  border-radius: 2px 2px 0 0;
}

.auth-form-wrapper {
  padding: 10px 40px 30px;
  overflow: visible;
}

.auth-form {
  width: 100%;
}

.auth-form .form-group-icon {
  position: relative;
  margin-top: 0;
  margin-bottom: 20px;
  width: 100%;
  max-width: 100%;
  overflow: visible;
  padding-top: 0;
  box-sizing: border-box;
}

/* 验证码部分特殊处理，确保完整显示 */
.auth-form .form-group-icon .input-group-captcha-wrapper {
  width: 100%;
  min-width: 0;
  overflow: visible;
}

.auth-form .form-group-icon > .input-icon {
  position: absolute;
  z-index: 2;
}

.auth-form .form-group {
  width: 100%;
  margin-top: 0;
  margin-bottom: 20px;
}

.input-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #a0aec0;
  z-index: 2;
  font-size: 16px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  pointer-events: none;
}

.input-icon i {
  line-height: 1;
  display: block;
}

.input-with-icon {
  padding-left: 45px !important;
  padding-right: 12px !important;
  padding-top: 0;
  padding-bottom: 0;
  height: 50px;
  min-height: 50px;
  line-height: 50px;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  font-size: 15px;
  transition: all 0.3s ease;
  background: #fff;
  box-sizing: border-box;
  width: 100%;
  vertical-align: middle;
}

.input-with-icon:focus {
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
  outline: none;
}

.input-with-icon::placeholder {
  color: #a0aec0;
  opacity: 1;
}


.form-group-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  font-size: 14px;
  width: 100%;
  box-sizing: border-box;
}

.checkbox-label {
  display: flex;
  align-items: center;
  color: #4a5568;
  cursor: pointer;
  user-select: none;
}

.checkbox-label input[type="checkbox"] {
  margin-right: 8px;
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.btn-forgot {
  color: #667eea;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.btn-forgot:hover {
  color: #764ba2;
  text-decoration: none;
}

.btn-gradient {
  height: 50px;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
  position: relative;
  overflow: hidden;
}

.btn-gradient::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.btn-gradient:hover::before {
  left: 100%;
}

.btn-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
}

.btn-gradient:active {
  transform: translateY(0);
}

.auth-footer {
  text-align: center;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #e2e8f0;
}

.auth-link {
  color: #667eea;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.auth-link:hover {
  color: #764ba2;
  text-decoration: none;
}

.input-group-captcha-wrapper {
  width: 100%;
  max-width: 100%;
  position: relative;
  box-sizing: border-box;
  overflow: visible;
}

/* 确保验证码容器在form-group-icon中有足够的空间 */
.form-group-icon .input-group-captcha-wrapper {
  width: 100%;
  max-width: 100%;
  padding-left: 0;
  margin-left: 0;
}

.input-group-captcha {
  display: flex;
  align-items: stretch;
  width: 100%;
  max-width: 100%;
  position: relative;
  box-sizing: border-box;
  overflow: visible;
}

.input-group-captcha .form-control {
  flex: 1;
  min-width: 0;
  padding-left: 45px !important;
  padding-right: 12px !important;
  padding-top: 0;
  padding-bottom: 0;
  height: 50px;
  min-height: 50px;
  line-height: 50px;
  border: 1px solid #e2e8f0;
  border-radius: 12px 0 0 12px;
  border-right: none;
  font-size: 15px;
  transition: all 0.3s ease;
  background: #fff;
  box-sizing: border-box;
  vertical-align: middle;
}

.input-group-captcha .form-control:focus {
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
  outline: none;
  z-index: 1;
}

.input-group-captcha .input-group-btn {
  flex: 0 0 150px;
  display: flex;
  align-items: stretch;
  max-width: 150px;
  min-width: 150px;
  box-sizing: border-box;
  overflow: visible;
}

.input-group-captcha .input-group-btn .btn,
.input-group-captcha .input-group-btn a {
  height: 50px;
  min-height: 50px;
  border-radius: 0 12px 12px 0;
  border: 1px solid #e2e8f0;
  border-left: none;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f7fafc;
  color: #667eea;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
  font-size: 14px;
  line-height: 1;
  box-sizing: border-box;
}

.input-group-captcha .input-group-btn .btn:hover,
.input-group-captcha .input-group-btn a:hover {
  background: #667eea;
  color: #fff;
  border-color: #667eea;
}

.input-group-captcha .input-group-btn img {
  height: 50px;
  min-height: 50px;
  width: 150px;
  max-width: 150px;
  min-width: 150px;
  border-radius: 0 12px 12px 0;
  cursor: pointer;
  display: block;
  object-fit: none;
  object-position: center;
  border: 1px solid #e2e8f0;
  border-left: none;
  box-sizing: border-box;
  flex-shrink: 0;
}

.help-block {
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 8px;
  padding: 0;
  font-size: 12px;
  color: #e53e3e;
  min-height: 18px;
  width: 100%;
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
  line-height: 1.4;
  display: block;
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  overflow: visible;
}

/* 登录注册页面的错误提示强制显示在输入框上方 */
.auth-form .form-group-icon .help-block,
.auth-form .form-group-icon p.help-block {
  position: absolute !important;
  top: -18px !important;
  left: 0 !important;
  right: 0 !important;
  bottom: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  word-wrap: break-word;
  overflow-wrap: break-word;
  overflow: visible !important;
  max-height: none !important;
  line-height: 1.4 !important;
  width: 100% !important;
  max-width: 100% !important;
  text-align: left !important;
}

.auth-form .form-group-icon .help-block:not(:empty),
.auth-form .form-group-icon p.help-block:not(:empty) {
  display: block !important;
}

/* 覆盖可能存在的右侧定位样式 */
.auth-form .form-group-icon .help-block.n-right,
.auth-form .form-group-icon p.help-block.n-right,
.auth-form .input-group .msg-box.n-right {
  position: absolute !important;
  top: -18px !important;
  left: 0 !important;
  right: 0 !important;
  bottom: auto !important;
}

/* 确保msg-box在登录注册表单中也显示在上方 */
.auth-form .form-group-icon .msg-box,
.auth-form .form-group-icon span.msg-box {
  position: absolute !important;
  top: -18px !important;
  left: 0 !important;
  right: 0 !important;
  bottom: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  font-size: 12px !important;
  color: #e53e3e !important;
  line-height: 1.4 !important;
  width: 100% !important;
  max-width: 100% !important;
  text-align: left !important;
  word-wrap: break-word;
  overflow-wrap: break-word;
  overflow: visible !important;
}

/* 响应式设计 */
@media (max-width: 991px) {
  .auth-wrapper {
    justify-content: center;
    padding: 20px;
  }
}

@media (max-width: 767px) {
  .auth-card {
    max-width: 100%;
    border-radius: 0;
    margin: 0;
  }

  .auth-header {
    padding: 30px 20px 15px;
  }

  .auth-title {
    font-size: 24px;
  }

  .auth-tabs {
    margin: 0 20px;
  }

  .auth-form-wrapper {
    padding: 20px 20px 30px;
  }

  .auth-container {
    padding: 0;
  }

  .input-group-captcha .form-control {
    font-size: 14px;
  }

  .input-group-captcha .input-group-btn .btn,
  .input-group-captcha .input-group-btn a {
    padding: 0 15px;
    font-size: 13px;
  }
}

/* 验证码输入框内嵌发送按钮 */
.input-with-sms-btn {
  padding-right: 110px !important;
}

.btn-send-sms-inline {
  position: absolute;
  right: 1px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  height: 40px;
  line-height: 40px;
  padding: 0 16px;
  background: transparent;
  color: #667eea;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border: none;
  border-left: 1px solid #e2e8f0;
  border-radius: 0;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.3s ease;
}

.btn-send-sms-inline:hover {
  color: #764ba2;
  text-decoration: none;
}

.btn-send-sms-inline.btn-sms-disabled {
  color: #a0aec0 !important;
  cursor: not-allowed;
  pointer-events: none;
}

/* 短信登录提示文字 */
.sms-login-hint {
  text-align: center;
  color: #a0aec0;
  font-size: 13px;
  margin: 16px 0;
  padding: 0;
}


/* 登录方式切换 Tab */
.auth-tabs {
  display: flex;
  margin-bottom: 24px;
  border-bottom: 2px solid #e2e8f0;
}
.auth-tab {
  flex: 1;
  text-align: center;
  padding: 12px 0;
  font-size: 15px;
  font-weight: 600;
  color: #a0aec0;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}
.auth-tab:hover {
  color: #667eea;
  text-decoration: none;
}
.auth-tab.active {
  color: #667eea;
  border-bottom-color: #667eea;
}

/*# sourceMappingURL=user.css.map */