@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Noto+Sans+SC:wght@400;500;600;700;800&display=swap");

:root {
  --uc-bg: #f5f8ff;
  --uc-bg-alt: #e8efff;
  --uc-card: #ffffff;
  --uc-text: #111827;
  --uc-muted: #6b7280;
  --uc-line: #e4ecf7;
  --uc-primary: #2563eb;
  --uc-primary-strong: #1d4ed8;
  --uc-accent: #0ea5e9;
  --uc-success: #16a34a;
  --uc-danger: #dc2626;
  --uc-shadow: 0 16px 30px rgba(20, 44, 88, 0.08);
}

body {
  font-family: "Inter", "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  color: var(--uc-text);
  background: radial-gradient(circle at 12% -20%, #ffffff 0%, var(--uc-bg-alt) 35%, var(--uc-bg) 100%);
  min-height: 100vh;
}

.content {
  position: relative;
  padding-top: 88px;
  padding-bottom: 40px;
}

.content:before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(120deg, rgba(37, 99, 235, 0.12), rgba(14, 165, 233, 0.06));
}

.content > * {
  position: relative;
}

.navbar.navbar-white {
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(37, 99, 235, 0.16);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 20px rgba(30, 64, 175, 0.12);
}

.navbar-white .navbar-brand {
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #1e3a8a;
}

.navbar-white .navbar-nav > li > a {
  color: #334155;
  font-weight: 600;
}

.navbar-white .navbar-nav > li > a:hover,
.navbar-white .navbar-nav > li > a:focus {
  color: var(--uc-primary);
  background: transparent;
}

#content-container {
  margin-top: 6px;
}

.panel.panel-default {
  border: 0;
  border-radius: 18px;
  background: var(--uc-card);
  box-shadow: var(--uc-shadow);
  overflow: hidden;
}

.panel-default > .panel-heading {
  border-bottom: 1px solid var(--uc-line);
  background: linear-gradient(135deg, #f9fbff, #f2f7ff);
  padding: 16px 20px;
}

.panel-default > .panel-heading .panel-title {
  font-size: 17px;
  font-weight: 700;
  color: #1e3a8a;
}

.panel-default > .panel-body {
  padding: 22px;
}

h2.page-header {
  margin: 0 0 18px;
  padding: 0 0 12px;
  border-bottom: 1px solid var(--uc-line);
  color: #1e3a8a;
  font-weight: 700;
}

.user-baseinfo {
  margin: 0;
}

.user-center .avatar-img,
.profile-avatar-container .profile-user-img {
  border-radius: 50%;
  border: 4px solid #fff;
  box-shadow: 0 10px 24px rgba(17, 64, 96, 0.2);
}

.user-center .avatar-img img {
  width: 130px;
  height: 130px;
  border-radius: 50%;
}

.sidebar-toggle {
  display: none;
}

.sidenav {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--uc-line);
  background: rgba(255, 255, 255, 0.85);
  box-shadow: var(--uc-shadow);
}

.sidenav .list-group {
  margin-bottom: 0;
}

.sidenav .list-group-heading {
  margin: 0;
  padding: 14px 18px 8px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--uc-muted);
  background: transparent;
}

.sidenav .list-group-item {
  margin: 0 12px 8px;
  border: 0;
  border-radius: 12px;
  padding: 11px 12px;
  background: transparent;
  transition: all 0.2s ease;
}

.sidenav .list-group-item a {
  display: block;
  color: #2f4a61;
  font-weight: 600;
}

.sidenav .list-group-item i {
  width: 18px;
  margin-right: 8px;
}

.sidenav .list-group-item:hover {
  background: #e9f1ff;
}

.sidenav .list-group-item.active,
.sidenav .list-group-item.active:hover,
.sidenav .list-group-item.active:focus {
  background: linear-gradient(135deg, #dbeafe, #bfdbfe);
  box-shadow: inset 0 0 0 1px #93c5fd;
}

.sidenav .list-group-item.active a {
  color: #1e3a8a;
}

.sidenav .list-group-item.active i {
  color: #1d4ed8;
}

.form-control,
.input-group .form-control {
  border: 1px solid #ccdae8;
  border-radius: 12px;
  height: 42px;
  box-shadow: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

textarea.form-control {
  height: auto;
}

.form-control:focus,
.input-group .form-control:focus {
  border-color: var(--uc-primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.btn {
  border-radius: 12px;
  font-weight: 700;
  border-width: 1px;
  transition: all 0.2s ease;
}

.btn-success,
.btn-primary {
  background: linear-gradient(135deg, var(--uc-primary), #1d4ed8);
  border-color: transparent;
  color: #fff;
}

.btn-success:hover,
.btn-success:focus,
.btn-primary:hover,
.btn-primary:focus {
  background: linear-gradient(135deg, var(--uc-primary-strong), #1e3a8a);
  color: #fff;
}

.btn-default {
  border-color: #cedbe8;
  background: #f8faff;
  color: #24445c;
}

.btn-danger {
  background: #fff1f2;
  border-color: #fecdd3;
  color: #be123c;
}

.btn-info {
  background: #ecfeff;
  border-color: #bae6fd;
  color: #0c4a6e;
}

.table {
  margin-bottom: 0;
}

.table > thead > tr > th {
  border-bottom: 1px solid #d6e4f0;
  border-top: 0;
  color: #334155;
  font-size: 12px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 13px 12px;
}

.table > tbody > tr > td {
  border-top: 1px solid #edf3f9;
  padding: 13px 12px;
  vertical-align: middle;
}

.table-striped > tbody > tr:nth-of-type(odd) {
  background: #fbfdff;
}

.table-hover > tbody > tr:hover {
  background: #edf3ff;
}

.label {
  border-radius: 999px;
  padding: 5px 9px;
  font-weight: 700;
}

.label-success {
  background: #ecfdf3;
  color: #166534;
}

.label-danger {
  background: #fff1f2;
  color: #be123c;
}

.label-warning {
  background: #fffbeb;
  color: #92400e;
}

.label-default {
  background: #eff6ff;
  color: #334155;
}

.alert {
  border: 0;
  border-radius: 12px;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.06);
}

.alert-info {
  background: #eff6ff;
  color: #1e40af;
}

.alert-warning {
  background: #fffbeb;
  color: #92400e;
}

.modal-content {
  border: 0;
  border-radius: 18px;
  overflow: hidden;
}

.modal-header {
  background: linear-gradient(135deg, #f8fcff, #f0f7ff);
  border-bottom: 1px solid var(--uc-line);
}

.modal-footer {
  border-top: 1px solid var(--uc-line);
}

.profile-avatar-container {
  position: relative;
  width: 110px;
  height: 110px;
}

.profile-avatar-container .profile-user-img {
  width: 110px;
  height: 110px;
}

.profile-avatar-container .profile-avatar-text {
  display: none;
}

.profile-avatar-container:hover .profile-avatar-text {
  display: block;
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(15, 43, 64, 0.65);
  color: #fff;
  line-height: 110px;
  text-align: center;
  font-size: 12px;
}

.profile-avatar-container button {
  position: absolute;
  inset: 0;
  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: #ecf4fa;
  width: 100%;
  position: absolute;
  z-index: 200;
  bottom: 0;
  margin: 0;
}

.form-footer .form-group {
  margin-left: 0;
  margin-right: 0;
}

.pagination > li > a,
.pagination > li > span {
  color: #1e40af;
  border-color: #d2deea;
  border-radius: 8px;
  margin: 0 2px;
}

.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover {
  background: var(--uc-primary);
  border-color: var(--uc-primary);
}

.footer {
  background: transparent;
  color: #5f768b;
}

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

#content-container .panel {
  animation: fadeRise 0.42s ease;
}

@media (max-width: 991px) {
  .content {
    padding-top: 72px;
  }

  .sidenav {
    position: fixed;
    top: 58px;
    z-index: 1029;
    height: calc(100vh - 58px);
    padding: 10px 0;
    min-width: 270px;
    overflow-y: auto;
    overflow-x: hidden;
    width: 270px;
    left: -280px;
    transition: all 0.3s ease;
  }

  .sidebar-toggle {
    display: block;
    position: fixed;
    right: 18px;
    bottom: 74px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--uc-primary), #1e40af);
    color: #fff;
    font-size: 20px;
    line-height: 30px;
    height: 52px;
    width: 52px;
    text-align: center;
    z-index: 9999;
    box-shadow: 0 12px 22px rgba(37, 99, 235, 0.35);
  }
}

body.sidebar-open .sidenav {
  left: 0;
}

body.sidebar-open .sidebar-toggle i:before {
  content: "\f00d";
}

.uc-page {
  margin-bottom: 14px;
}

.uc-intro {
  margin-bottom: 14px;
  padding: 24px;
  border-radius: 18px;
  color: #eaf2ff;
  background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 52%, #0ea5e9 100%);
  box-shadow: 0 18px 30px rgba(37, 99, 235, 0.26);
}

.uc-intro h1,
.uc-intro h2,
.uc-intro h3 {
  margin: 0;
  font-weight: 700;
  color: #fff;
}

.uc-intro p {
  margin: 8px 0 0;
  color: rgba(234, 242, 255, 0.9);
}

.uc-card {
  border: 0;
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--uc-shadow);
  margin-bottom: 16px;
  overflow: hidden;
}

.uc-card-head {
  padding: 16px 20px;
  border-bottom: 1px solid var(--uc-line);
  background: linear-gradient(135deg, #f9fbff, #f3f7ff);
}

.uc-card-head h3,
.uc-card-head h4 {
  margin: 0;
  font-weight: 700;
  color: #1e3a8a;
}

.uc-card-body {
  padding: 20px;
}

.uc-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 12px;
}

.uc-metric {
  border: 1px solid #e3ebf8;
  border-radius: 14px;
  padding: 14px;
  background: linear-gradient(180deg, #ffffff, #f8fbff);
}

.uc-metric .num {
  font-size: 22px;
  font-weight: 700;
  color: #1e3a8a;
}

.uc-metric .label {
  margin-top: 5px;
  display: inline-block;
  background: transparent;
  color: #64748b;
  padding: 0;
  font-size: 12px;
  font-weight: 600;
}

.uc-table-wrap {
  border: 1px solid #e7eef9;
  border-radius: 14px;
  overflow: hidden;
}

.uc-empty {
  text-align: center;
  padding: 38px 10px;
  color: #64748b;
}

.uc-empty i {
  font-size: 36px;
  display: block;
  margin-bottom: 8px;
  color: #94a3b8;
}

.uc-actions .btn {
  margin-right: 6px;
  margin-bottom: 6px;
}

@media (max-width: 991px) {
  .uc-intro {
    padding: 18px;
  }

  .uc-card-body,
  .uc-card-head {
    padding: 14px;
  }
}

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