h2.page-header {
  margin: 10px 0 25px 0;
  padding-bottom: 15px;
  border-bottom-color: rgba(99,102,241,0.15);
}
.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";
}

/* =============================================
   Indigo 主题 — 用户页面统一样式 (BS3)
   ============================================= */

/* --- 按钮：主按钮改为 indigo 渐变 --- */
.btn-primary {
  background: linear-gradient(135deg, #6366f1, #8b5cf6) !important;
  border-color: #6366f1 !important;
  color: #fff !important;
  transition: box-shadow 0.2s, transform 0.15s;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
  background: linear-gradient(135deg, #4F46E5, #7C3AED) !important;
  border-color: #4F46E5 !important;
  box-shadow: 0 6px 20px rgba(99,102,241,0.35);
  transform: translateY(-1px);
}
.btn-primary.disabled,
.btn-primary[disabled] {
  opacity: 0.5;
  transform: none;
}

/* --- info 按钮改为 indigo 浅色 --- */
.btn-info {
  background: linear-gradient(135deg, #818CF8, #A5B4FC) !important;
  border-color: #818CF8 !important;
  color: #fff !important;
}
.btn-info:hover,
.btn-info:focus {
  background: linear-gradient(135deg, #6366f1, #8b5cf6) !important;
  border-color: #6366f1 !important;
  box-shadow: 0 4px 14px rgba(99,102,241,0.3);
}

/* --- success 按钮 --- */
.btn-success {
  background: linear-gradient(135deg, #10B981, #34D399) !important;
  border-color: #10B981 !important;
}
.btn-success:hover {
  background: linear-gradient(135deg, #059669, #10B981) !important;
}

/* --- default 按钮（取消/返回）--- */
.btn-default {
  color: #6366f1 !important;
  border-color: rgba(99,102,241,0.25);
}
.btn-default:hover {
  background: rgba(99,102,241,0.06);
  border-color: #6366f1;
}

/* --- 面板 --- */
.panel {
  border-color: rgba(99,102,241,0.1);
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(99,102,241,0.06);
}
.panel-default > .panel-heading {
  background: linear-gradient(135deg, rgba(99,102,241,0.04), rgba(139,92,246,0.04));
  border-bottom-color: rgba(99,102,241,0.1);
  border-radius: 12px 12px 0 0;
}
.panel-body {
  padding: 24px;
}
.panel-intro {
  border-radius: 12px;
}

/* --- 链接 --- */
#content-container a:not(.btn):not(.dropdown-menu a) {
  color: #6366f1;
}
#content-container a:not(.btn):not(.dropdown-menu a):hover {
  color: #4F46E5;
}

/* --- 输入框 --- */
.form-control:focus {
  border-color: #818CF8;
  box-shadow: 0 0 0 2px rgba(99,102,241,0.15);
}

/* --- Tab 导航（登录/注册切换）--- */
.logon-tab {
  border-bottom: 2px solid rgba(99,102,241,0.12);
  margin-bottom: 24px;
}
.logon-tab a {
  display: inline-block;
  padding: 10px 24px;
  color: #94a3b8;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: all 0.2s;
}
.logon-tab a:hover {
  color: #6366f1;
}
.logon-tab a.active {
  color: #4F46E5;
  border-bottom-color: #6366f1;
}

/* --- 登录/注册 卡片式容器 --- */
.user-section {
  max-width: 440px;
  margin: 60px auto 80px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(99,102,241,0.08);
  padding: 36px 32px;
}
.login-main {
  margin-top: 0;
}

/* --- 表单组 --- */
.user-section .form-group {
  margin-bottom: 20px;
}
.user-section .control-label {
  font-weight: 600;
  color: #374151;
  margin-bottom: 6px;
}
.user-section .form-control {
  height: 44px;
  border-radius: 10px;
  border-color: rgba(99,102,241,0.15);
  padding: 8px 14px;
  font-size: 14px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.user-section .form-control:focus {
  border-color: #818CF8;
  box-shadow: 0 0 0 3px rgba(99,102,241,0.08);
}

/* --- 登录按钮全宽 --- */
.user-section .btn-block {
  height: 46px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 10px;
  letter-spacing: 0.5px;
}

/* --- 底部辅助链接 --- */
.btn-block.no-border {
  border: 1.5px solid rgba(99,102,241,0.15) !important;
  background: transparent !important;
  color: #6366f1 !important;
  font-weight: 500;
}
.btn-block.no-border:hover {
  background: rgba(99,102,241,0.06) !important;
  border-color: #6366f1 !important;
}

/* --- Checkbox 美化 --- */
.user-section .checkbox label {
  padding-left: 0;
  color: #6b7280;
  font-size: 14px;
}

/* --- 忘记密码链接 --- */
.btn-forgot {
  color: #6366f1 !important;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
}
.btn-forgot:hover {
  color: #4F46E5 !important;
  text-decoration: underline;
}

/* --- 会员中心 --- */
.user-baseinfo .ui-content h4 a {
  color: #1e293b;
  font-weight: 700;
}
.user-baseinfo .ui-content h4 a:hover {
  color: #6366f1;
}
.basicinfo .row > div {
  color: #374151;
}
.basicinfo a.viewmoney,
.basicinfo a.viewscore {
  color: #6366f1;
  font-weight: 700;
}

/* --- 个人资料 --- */
.profile-avatar-container {
  position: relative;
  width: 100px;
}
.profile-avatar-container .profile-user-img {
  width: 100px;
  height: 100px;
  border: 3px solid rgba(99,102,241,0.15);
}
.profile-avatar-container .profile-avatar-text {
  display: none;
}
.profile-avatar-container:hover .profile-avatar-text {
  display: block;
  position: absolute;
  height: 100px;
  width: 100px;
  background: linear-gradient(135deg, rgba(99,102,241,0.85), rgba(139,92,246,0.85));
  opacity: 0.9;
  color: #fff;
  top: 0;
  left: 0;
  line-height: 100px;
  text-align: center;
  border-radius: 50%;
  font-size: 14px;
}
.profile-avatar-container button {
  position: absolute;
  top: 0;
  left: 0;
  width: 100px;
  height: 100px;
  opacity: 0;
}

/* --- 弹窗表单 --- */
.form-layer {
  height: 100%;
  min-height: 150px;
  min-width: 300px;
}
.form-body {
  width: 100%;
  overflow: auto;
  top: 0;
  position: absolute;
  z-index: 10;
  bottom: 50px;
  padding: 15px;
}
.form-layer .form-footer {
  height: 50px;
  line-height: 50px;
  background-color: rgba(99,102,241,0.04);
  width: 100%;
  position: absolute;
  z-index: 200;
  bottom: 0;
  margin: 0;
  border-top: 1px solid rgba(99,102,241,0.1);
}
.form-footer .form-group {
  margin-left: 0;
  margin-right: 0;
}

/* --- attachment 文件管理页 --- */
.panel-intro .nav-tabs {
  border-bottom-color: rgba(99,102,241,0.1);
}
.panel-intro .nav-tabs > li > a {
  color: #64748b;
  font-weight: 500;
}
.panel-intro .nav-tabs > li.active > a,
.panel-intro .nav-tabs > li.active > a:hover,
.panel-intro .nav-tabs > li.active > a:focus {
  color: #4F46E5;
  border-bottom-color: #6366f1;
}

/* --- 响应式 --- */
@media (max-width: 480px) {
  .user-section {
    margin: 20px 10px 40px;
    padding: 28px 20px;
    border-radius: 14px;
  }
  .logon-tab a {
    padding: 8px 16px;
    font-size: 15px;
  }
}
/*# sourceMappingURL=user.css.map */