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";
}

/* 顶栏站点名前的 Logo */
.navbar-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-top: 12px;
  padding-bottom: 12px;
}

.navbar-brand-logo {
  display: block;
  width: 32px;
  height: 32px;
  object-fit: contain;
  flex-shrink: 0;
}

.navbar-brand-text {
  line-height: 1.2;
}

/* ----- 顶栏 / 底栏：白底与中间区分，但不画生硬分割线（覆盖 frontend 深色 footer） ----- */
.navbar.navbar-white.navbar-fixed-top {
  background-color: #fff;
  border-bottom: none;
  box-shadow: none;
}

@media (min-width: 768px) {
  .navbar-white .navbar-brand {
    color: #666;
  }
  .navbar-white .navbar-nav > li > a {
    color: #666;
  }
  .navbar-white .navbar-nav > li > a:hover,
  .navbar-white .navbar-nav > li > a:focus {
    color: #007bff;
  }
  .navbar-white .navbar-nav > .active > a,
  .navbar-white .navbar-nav > .active > a:hover,
  .navbar-white .navbar-nav > .active > a:focus {
    color: #007bff;
  }
}

footer.footer {
  clear: both;
  width: 100%;
  margin-top: 0;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1030;
  background: #fff;
  color: #666;
  border-top: none;
  box-shadow: none;
}

footer.footer .copyright {
  margin: 0;
  line-height: 50px;
  text-align: center;
  background: #fff;
  color: #666;
}

footer.footer .copyright a {
  color: #666;
}

footer.footer .copyright a:hover {
  color: #333;
}

@media (max-width: 767px) {
  footer.footer {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
  }
  footer.footer .copyright {
    padding: 10px;
    line-height: 30px;
  }
}

/* ----- 登录 / 注册（简洁） -----
   说明：不要在 main 内部再用 min-height≈100vh，否则叠加外层 min-height 与 overflow:auto 会出现多余纵向滚动条 */
main.content:has(#content-container.auth-page) {
  display: flex;
  flex-direction: column;
  min-height: calc(100vh - 100px);
  overflow-x: hidden;
  overflow-y: hidden;
  padding-top: 56px;
  padding-bottom: 56px;
  box-sizing: border-box;
  background-color: #f0f2f5;
}

@media (max-width: 767px), (max-height: 700px) {
  main.content:has(#content-container.auth-page) {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
}

#content-container.auth-page {
  margin: 0;
  width: 100%;
  padding: 24px 16px;
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  background: #f0f2f5;
}

.auth-card {
  width: 100%;
  max-width: 360px;
  padding: 36px 28px 28px;
  background: #fff;
  border-radius: 8px;
  border: 1px solid #e8e8e8;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.auth-card-title {
  text-align: center;
  margin: 0 0 28px;
  font-size: 17px;
  font-weight: normal;
  color: #666;
}

.auth-card .auth-form > .form-group {
  margin-bottom: 16px;
}

.auth-field {
  display: flex;
  align-items: stretch;
  border: 1px solid #dcdcdc;
  border-radius: 6px;
  background: #fff;
  overflow: hidden;
}

.auth-field:focus-within {
  border-color: #69a3ff;
}

.auth-field-icon {
  flex: 0 0 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  background: #f7f7f7;
  font-size: 15px;
  border-right: 1px solid #e8e8e8;
}

.auth-field .auth-input.form-control,
.auth-field input.form-control {
  flex: 1 1 auto;
  min-width: 0;
  height: 42px;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  background: transparent;
  padding: 8px 12px;
  font-size: 14px;
  color: #333;
}

.auth-field .auth-input.form-control::placeholder,
.auth-field input.form-control::placeholder {
  color: #aaa;
}

/* 验证码：与上面输入框同一套外框 + 图标，右侧为图/按钮 */
.auth-field-captcha {
  align-items: stretch;
}

.auth-field-captcha .auth-captcha-inner {
  flex: 1 1 auto;
  min-width: 0;
  padding: 0;
  background: #fff;
}

.auth-field-captcha .auth-captcha-input-group {
  display: flex;
  width: 100%;
  min-width: 0;
  border-collapse: separate;
}

.auth-field-captcha .auth-captcha-input-group .form-control {
  float: none;
  display: block;
  flex: 1 1 auto;
  min-width: 0;
  width: auto !important;
  height: 40px;
  border: none !important;
  box-shadow: none !important;
  font-size: 14px;
  padding: 8px 10px;
}

.auth-field-captcha .input-group-btn {
  flex: 0 0 auto;
  width: auto;
  display: flex;
  align-items: stretch;
  vertical-align: middle;
  padding: 0;
  border: none;
  white-space: nowrap;
}

.auth-field-captcha .input-group-btn .btn {
  height: 40px;
  margin: 0;
  padding: 0 12px;
  font-size: 13px;
  border: none !important;
  border-left: 1px solid #e8e8e8 !important;
  border-radius: 0 !important;
  background: #f7f7f7;
  color: #337ab7;
  box-shadow: none;
}

.auth-field-captcha .input-group-btn .btn:hover {
  background: #efefef;
  color: #23527c;
}

.auth-field-captcha .input-group-btn img {
  display: block;
  height: 40px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  margin: 0;
  padding: 0 2px;
  border: none !important;
  border-left: 1px solid #e8e8e8 !important;
  border-radius: 0 !important;
  background: #fafafa;
  cursor: pointer;
  box-sizing: border-box;
}

.auth-extra {
  margin: 6px 0 20px;
  font-size: 13px;
}

.auth-remember {
  cursor: pointer;
  color: #888;
  font-weight: normal;
}

.auth-remember input {
  margin: 0 6px 0 0;
  vertical-align: -2px;
}

.btn-auth-submit {
  height: 44px;
  font-size: 15px;
  font-weight: normal;
  border: none !important;
  border-radius: 6px !important;
  background: #409eff !important;
  color: #fff !important;
  box-shadow: none;
}

.btn-auth-submit:hover,
.btn-auth-submit:focus {
  background: #66b1ff !important;
  color: #fff !important;
}

.btn-auth-submit:active {
  background: #3a8ee6 !important;
}

.auth-divider-line {
  border: none;
  border-top: 1px solid #eee;
  margin: 24px 0 14px;
  height: 0;
}

.auth-footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 13px;
}

.auth-footer-links a {
  color: #409eff;
}

.auth-footer-links a:hover {
  text-decoration: underline;
  color: #337ecc;
}

.auth-divider-dot {
  margin: 0 8px;
  color: #ccc;
}

/* 登录/注册：内联校验已由 JS msgShow 关闭，备用隐藏避免偶发抖动 */
.auth-page #login-form .controls > .msg-box,
.auth-page #register-form .controls > .msg-box,
.auth-page #login-form .n-bottom,
.auth-page #register-form .n-bottom {
  display: none !important;
}

@media (max-width: 767px) {
  #content-container.auth-page {
    padding-left: 12px;
    padding-right: 12px;
  }
  .auth-card {
    padding: 28px 20px 22px;
  }
}

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