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

/* 用户端基础变量与全局骨架：贴合主站红白视觉，保持原有业务选择器不变。 */
:root {
  --user-red: #ef1218;
  --user-red-dark: #d60d13;
  --user-text: #161616;
  --user-muted: #667085;
  --user-line: #edf0f5;
  --user-bg: #f5f5f6;
  --user-card-shadow: 0 10px 28px rgba(20, 25, 35, 0.055);
}
body {
  min-height: 100vh;
  background: #f6f7f9;
  color: var(--user-text);
  font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans SC", Arial, sans-serif;
}
body:has(.user-auth-page) {
  display: flex;
  flex-direction: column;
}
body:has(.user-workspace-page) {
  display: flex;
  flex-direction: column;
}
body:has(.user-auth-page) main.content {
  flex: 1 0 auto;
}
body:has(.user-workspace-page) main.content {
  flex: 1 0 auto;
}
body:has(.user-auth-page) .footer {
  flex-shrink: 0;
}
body:has(.user-workspace-page) .footer {
  flex-shrink: 0;
}
.navbar-white {
  min-height: 62px;
  border: 0;
  background: #fff;
  box-shadow: 0 1px 14px rgba(20, 25, 35, 0.055);
}
.navbar-white .navbar-brand {
  height: 62px;
  padding: 20px 15px;
  color: var(--user-text);
  font-weight: 900;
}
.navbar-white .navbar-nav > li > a {
  padding-top: 21px;
  padding-bottom: 21px;
  color: #333;
  font-weight: 700;
}
.navbar-white .navbar-nav > li > a:hover,
.navbar-white .navbar-nav > li.open > a {
  color: var(--user-red);
  background: #fff7f7;
}
.navbar-white .user-nav-account {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 62px;
}
.navbar-white .user-nav-account .avatar-img,
.navbar-white .user-nav-account .avatar-img img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
}
.navbar-white .user-nav-account .avatar-img {
  overflow: hidden;
  border: 2px solid #d9f7e8;
  background: #98e6bd;
}
.navbar-white .user-nav-name {
  display: inline-block;
  max-width: 96px;
  overflow: hidden;
  color: #344054;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.navbar-white .dropdown-menu {
  min-width: 150px;
  padding: 6px;
  border: 1px solid #edf0f5;
  border-radius: 8px;
  box-shadow: 0 12px 26px rgba(20, 25, 35, 0.1);
}
.navbar-white .dropdown-menu > li > a {
  padding: 9px 10px;
  border-radius: 6px;
  color: #344054;
  font-weight: 700;
}
.navbar-white .dropdown-menu > li > a:hover {
  color: var(--user-red);
  background: #fff1f1;
}
main.content {
  min-height: calc(100vh - 130px);
  padding: 78px 0 34px;
  background:
    linear-gradient(180deg, #f7f8fa 0, #f3f4f6 320px, #f6f7f9 100%);
}
.footer {
  padding: 20px 0;
  background: #fff;
  border-top: 1px solid var(--user-line);
  color: #98a2b3;
  text-align: center;
}
.footer p {
  margin: 0;
}
.btn {
  border-radius: 6px;
  font-weight: 800;
}
.btn-primary,
.btn-info {
  border-color: var(--user-red);
  background: linear-gradient(180deg, #ff242a 0%, var(--user-red) 100%);
  box-shadow: 0 8px 18px rgba(239, 18, 24, 0.18);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-info:hover,
.btn-info:focus {
  border-color: var(--user-red-dark);
  background: var(--user-red-dark);
}
.btn-default {
  border-color: #e4e7ec;
  color: #344054;
  background: #fff;
}
.btn-default:hover {
  border-color: rgba(239, 18, 24, 0.26);
  color: var(--user-red);
  background: #fff7f7;
}
.form-control {
  height: 42px;
  border-color: #dfe3ea;
  border-radius: 6px;
  background: #fbfcfd;
  box-shadow: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.form-control:hover {
  border-color: #ccd3dd;
  background: #fff;
}
.form-control:focus {
  border-color: rgba(239, 18, 24, 0.5);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(239, 18, 24, 0.08);
}

/* 认证页：登录与注册 */
.user-auth-page {
  max-width: 1060px;
}
.content:has(.user-auth-page) {
  min-height: auto;
  padding-top: 56px;
  padding-bottom: 18px;
}
.content:has(.user-auth-page) + .footer {
  padding-top: 6px;
  padding-bottom: 6px;
}
.user-auth-shell {
  display: grid;
  grid-template-columns: minmax(0, 600px) 430px;
  gap: 0;
  align-items: stretch;
  justify-content: center;
  overflow: hidden;
  border: 1px solid #eceff4;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 24px 64px rgba(20, 25, 35, 0.1);
}
.user-auth-aside,
.user-auth-card {
  border: 0;
  border-radius: 0;
  background: #fff;
  box-shadow: none;
}
.user-auth-aside {
  min-height: 500px;
  padding: 46px 52px 38px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0) 42%),
    linear-gradient(135deg, #f6262d 0%, #e1151b 48%, #c90f15 100%);
  background-size: 52px 52px, auto, auto;
  color: #fff;
  overflow: hidden;
  position: relative;
}
.user-auth-aside:before {
  content: "";
  position: absolute;
  right: -90px;
  top: 0;
  width: 220px;
  height: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.01));
  transform: skewX(-16deg);
}
.user-auth-aside:after {
  content: "";
  position: absolute;
  left: 52px;
  right: 52px;
  bottom: 112px;
  height: 1px;
  background: rgba(255, 255, 255, 0.18);
}
.user-auth-kicker,
.user-panel-kicker {
  display: inline-flex;
  height: 24px;
  align-items: center;
  padding: 0 9px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 900;
}
.user-auth-kicker {
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.14);
}
.user-auth-aside h1 {
  max-width: 410px;
  margin: 26px 0 16px;
  font-size: 36px;
  line-height: 1.26;
  font-weight: 900;
  text-shadow: 0 10px 24px rgba(120, 0, 0, 0.12);
}
.user-auth-aside p {
  max-width: 430px;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 15px;
  line-height: 1.8;
}
.user-auth-points {
  display: grid;
  gap: 12px;
  margin-top: 32px;
}
.user-auth-points span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding: 6px 10px 6px 0;
  font-weight: 800;
}
.user-auth-points i {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  line-height: 22px;
  text-align: center;
}
.user-auth-meta {
  position: absolute;
  left: 52px;
  right: 52px;
  bottom: 34px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.user-auth-meta div {
  min-height: 74px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.07));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.user-auth-meta strong,
.user-auth-meta span {
  display: block;
}
.user-auth-meta strong {
  margin-bottom: 7px;
  font-size: 14px;
  font-weight: 900;
}
.user-auth-meta span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  line-height: 1.5;
}
.user-auth-card {
  margin: 0;
  padding: 0;
  width: auto;
  overflow: hidden;
  background: linear-gradient(180deg, #fff 0%, #fcfcfd 100%);
}
.user-auth-card .logon-tab {
  display: flex;
  margin: 0;
  border-bottom: 1px solid #eceff4;
  background: #f8f9fb;
}
.user-auth-card .logon-tab > a {
  display: flex;
  flex: 1 1 0;
  align-items: center;
  justify-content: center;
  float: none;
  width: auto;
  height: 54px;
  padding: 0;
  color: #667085;
  text-align: center;
  font-weight: 900;
  border-right: 1px solid #eef1f5;
  background: #fbfcfd;
  transition: color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}
.user-auth-card .logon-tab > a:last-child {
  border-right: 0;
}
.user-auth-card .logon-tab > a.active {
  color: var(--user-red);
  background: #fff;
  box-shadow: inset 0 -3px 0 var(--user-red);
}
.user-auth-card .login-main {
  padding: 24px 32px 28px;
  border-left: 1px solid #f2f4f7;
}
.user-form-heading h2 {
  margin: 0 0 6px;
  font-size: 24px;
  font-weight: 900;
}
.user-form-heading p {
  margin: 0 0 18px;
  color: var(--user-muted);
  font-size: 13px;
  line-height: 1.7;
}
.user-auth-card .control-label {
  margin-bottom: 7px;
  color: #344054;
  font-weight: 800;
}
.user-auth-card .form-group {
  margin-bottom: 13px;
}
.user-auth-card .form-control {
  height: 40px;
  padding-right: 12px;
  padding-left: 12px;
}
.user-auth-card .help-block {
  min-height: 0;
  margin: 0;
}
.user-auth-card .checkbox {
  margin-top: 0;
  margin-bottom: 0;
  color: #667085;
}
.user-auth-card .checkbox input {
  margin-top: 4px;
}
.user-auth-card .btn-forgot {
  color: var(--user-red);
  font-weight: 800;
}
.user-auth-card .btn-forgot:hover {
  color: var(--user-red-dark);
}
.user-auth-card .btn-block {
  height: 42px;
  line-height: 28px;
}
.user-auth-card .btn-default.no-border {
  height: auto;
  padding: 11px 0 0;
  border: 0;
  color: #1f2937;
  background: transparent;
  box-shadow: none;
}
.user-auth-card .btn-default.no-border:hover {
  color: var(--user-red);
  background: transparent;
}
.user-auth-card .input-group {
  display: flex;
  width: 100%;
}
.user-auth-card .input-group .form-control {
  flex: 1 1 auto;
  min-width: 0;
}
.user-auth-card .input-group .input-group-btn {
  display: flex;
  width: auto;
  padding: 0;
  border: 0;
}
.user-auth-card .input-group .input-group-btn img {
  width: 102px;
  height: 40px;
  border: 1px solid #e4e7ec;
  border-left: 0;
  border-radius: 0 6px 6px 0;
  object-fit: cover;
}

/* 会员中心：工作台与侧栏 */
.user-dashboard-page,
.user-profile-page {
  max-width: 1120px;
}
.user-panel {
  border: 1px solid var(--user-line);
  border-radius: 8px;
  box-shadow: var(--user-card-shadow);
}
.user-panel.panel-default > .panel-body {
  padding: 26px 28px 30px;
}
.user-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--user-line);
}
.user-panel-head h2 {
  margin: 7px 0 0;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 900;
}
.user-panel-kicker {
  color: var(--user-red);
  background: #fff0f0;
}
.user-profile-summary {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}
.user-summary-avatar {
  grid-row: span 2;
}
.user-summary-card {
  min-height: 150px;
  padding: 24px;
  border: 1px solid #f0f0f0;
  border-radius: 8px;
  background: linear-gradient(135deg, #fff, #fffafa);
}
.user-summary-card h4 {
  margin: 0 0 10px;
  font-size: 22px;
  font-weight: 900;
}
.user-summary-card h4 a:hover {
  color: var(--user-red);
}
.user-summary-card p {
  margin: 0;
  color: var(--user-muted);
  line-height: 1.7;
}
.user-metric-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
}
.user-center-panel .user-metric-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 402px;
}
.user-metric-card {
  min-height: 86px;
  padding: 16px;
  border: 1px solid #edf0f5;
  border-radius: 8px;
  background: #fff;
}
.user-metric-card span {
  display: block;
  margin-bottom: 9px;
  color: #98a2b3;
  font-size: 12px;
  font-weight: 800;
}
.user-metric-card strong,
.user-metric-card a {
  color: #111827;
  font-size: 18px;
  font-weight: 900;
}
.user-metric-card a:hover {
  color: var(--user-red);
}
.user-workspace-page {
  max-width: 1120px;
}
.user-workspace-row {
  display: flex;
  align-items: flex-start;
}
.user-workspace-page .sidenav {
  padding: 14px;
  border-color: #eef1f5;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 16px 38px rgba(20, 25, 35, 0.055);
}
.user-workspace-page .sidenav .list-group-heading {
  margin: 0 0 8px;
  padding: 14px 14px 12px;
  border: 0;
  border-radius: 10px;
  background: linear-gradient(135deg, #fff5f5, #fff);
  color: #111827;
}
.user-workspace-page .sidenav .list-group-item {
  margin: 4px 0;
  border: 0;
  border-radius: 10px;
  overflow: hidden;
}
.user-workspace-page .sidenav .list-group-item a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 13px;
  border-radius: 10px;
  color: #344054;
}
.user-workspace-page .sidenav .list-group-item a i {
  color: #98a2b3;
}
.user-workspace-page .sidenav .list-group-item.active,
.user-workspace-page .sidenav .list-group-item:hover {
  background: transparent;
}
.user-workspace-page .sidenav .list-group-item.active a,
.user-workspace-page .sidenav .list-group-item:hover a {
  color: var(--user-red);
  background: #fff1f1;
}
.user-workspace-page .sidenav .list-group-item.active a i,
.user-workspace-page .sidenav .list-group-item:hover a i {
  color: var(--user-red);
}
.user-workbench {
  overflow: hidden;
  border: 1px solid #edf0f5;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(20, 25, 35, 0.065);
}
.user-workbench-hero {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 28px 32px;
  background:
    linear-gradient(120deg, rgba(239, 18, 24, 0.08), rgba(239, 18, 24, 0) 42%),
    linear-gradient(180deg, #fff, #fbfcfd);
  border-bottom: 1px solid #edf0f5;
}
.user-workbench-copy h2 {
  margin: 8px 0 8px;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 900;
}
.user-workbench-copy p {
  margin: 0;
  color: var(--user-muted);
  line-height: 1.7;
}
.user-workbench-profile {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr) 130px;
  gap: 22px;
  align-items: center;
  padding: 28px 32px;
}
.user-workbench-avatar {
  display: block;
  width: 112px;
  height: 112px;
}
.user-workbench-avatar .avatar-img,
.user-workbench-avatar .avatar-img img,
.user-workbench-avatar .avatar-text {
  width: 112px;
  height: 112px;
  border-radius: 28px;
  line-height: 112px;
  font-size: 54px;
}
.user-workbench-avatar .avatar-img,
.user-workbench-avatar .avatar-text {
  box-shadow: 0 14px 34px rgba(20, 25, 35, 0.1);
}
.user-workbench-info {
  min-width: 0;
}
.user-workbench-info h3 {
  margin: 0 0 10px;
  font-size: 26px;
  line-height: 1.25;
  font-weight: 900;
}
.user-workbench-info h3 a {
  color: #111827;
}
.user-workbench-info h3 a:hover {
  color: var(--user-red);
}
.user-workbench-info p {
  max-width: 520px;
  margin: 0;
  color: var(--user-muted);
  line-height: 1.8;
}
.user-workbench-state {
  min-height: 86px;
  padding: 16px;
  border: 1px solid #e8f5ee;
  border-radius: 12px;
  background: #f3fcf7;
}
.user-workbench-state span,
.user-record-card span {
  display: block;
  margin-bottom: 8px;
  color: #667085;
  font-size: 12px;
  font-weight: 800;
}
.user-workbench-state strong {
  color: #109c5b;
  font-size: 20px;
  font-weight: 900;
}
.user-workbench-records {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 0 32px 32px;
}
.user-record-card {
  position: relative;
  min-height: 104px;
  padding: 18px 18px 18px 58px;
  border: 1px solid #edf0f5;
  border-radius: 12px;
  background: #fff;
}
.user-record-card i {
  position: absolute;
  left: 18px;
  top: 21px;
  width: 28px;
  height: 28px;
  border-radius: 10px;
  background: #fff1f1;
  color: var(--user-red);
  line-height: 28px;
  text-align: center;
}
.user-record-card strong {
  display: block;
  color: #111827;
  font-size: 19px;
  line-height: 1.45;
  font-weight: 900;
}
.user-settings-card {
  overflow: hidden;
  border: 1px solid #edf0f5;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(20, 25, 35, 0.065);
}
.user-settings-hero {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 26px 32px;
  border-bottom: 1px solid #edf0f5;
  background:
    linear-gradient(120deg, rgba(239, 18, 24, 0.075), rgba(239, 18, 24, 0) 44%),
    linear-gradient(180deg, #fff, #fbfcfd);
}
.user-settings-hero h2 {
  margin: 8px 0 8px;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 900;
}
.user-settings-hero p {
  margin: 0;
  color: var(--user-muted);
  line-height: 1.7;
}
.user-settings-body {
  padding: 28px 32px 30px;
}
.user-settings-card .user-form-section {
  border-color: #e8ecf2;
  border-radius: 12px;
}
.user-settings-card .user-form-section h3 {
  font-size: 18px;
}
.user-settings-card .control-label {
  color: #344054;
  font-weight: 800;
}
.user-settings-card .form-control {
  background: #fbfcfd;
}
.user-settings-card .form-control:disabled {
  color: #667085;
  background: #f2f4f7;
}
.user-settings-card .help-block {
  margin: 7px 0 0;
  color: #98a2b3;
  font-size: 12px;
  line-height: 1.6;
}
.user-settings-card .normal-footer {
  margin: 22px 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--user-line);
  text-align: right;
}
.user-password-card {
  max-width: 760px;
}
.user-password-form .user-form-section {
  padding-bottom: 14px;
}
.sidenav {
  border: 1px solid var(--user-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--user-card-shadow);
  overflow: hidden;
}
.sidenav .list-group {
  margin: 0;
}
.sidenav .list-group-heading {
  padding: 16px 18px;
  color: #111827;
  font-weight: 900;
  background: #fff7f7;
  border-bottom: 1px solid var(--user-line);
}
.sidenav .list-group-item {
  border: 0;
  border-bottom: 1px solid #f4f4f4;
  padding: 0;
}
.sidenav .list-group-item a {
  display: block;
  padding: 14px 18px;
  color: #344054;
  font-weight: 700;
}
.sidenav .list-group-item.active,
.sidenav .list-group-item:hover {
  background: #fff7f7;
}
.sidenav .list-group-item.active a,
.sidenav .list-group-item:hover a {
  color: var(--user-red);
}

/* 资料与安全设置页 */
.user-profile-form-grid {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}
.user-avatar-card,
.user-form-section {
  border: 1px solid #edf0f5;
  border-radius: 8px;
  background: #fff;
}
.user-avatar-card {
  padding: 24px 18px;
  text-align: center;
}
.user-avatar-card .profile-avatar-container {
  margin: 0 auto 16px;
}
.user-avatar-card h3,
.user-form-section h3 {
  margin: 0;
  font-size: 17px;
  font-weight: 900;
}
.user-avatar-card p {
  margin: 8px 0 0;
  color: var(--user-muted);
  line-height: 1.6;
}
.user-profile-fields {
  display: grid;
  gap: 16px;
}
.user-form-section {
  padding: 22px 22px 8px;
}
.user-form-section h3 {
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid #f0f0f0;
}
.user-form-section .control-label {
  color: #344054;
  font-weight: 800;
}
.user-bind-group .input-group-btn {
  padding: 0;
  border: 0;
}
.user-bind-group .btn {
  height: 42px;
}
.user-profile-panel .normal-footer {
  margin: 22px 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--user-line);
  text-align: right;
}
.profile-avatar-container .profile-user-img {
  border: 4px solid #fff;
  box-shadow: 0 8px 22px rgba(20, 25, 35, 0.1);
}
.profile-avatar-container:hover .profile-avatar-text {
  border-radius: 50%;
  background: rgba(22, 22, 22, 0.62);
  opacity: 1;
}
.form-layer .form-footer {
  border-top: 1px solid var(--user-line);
  background-color: #fff;
}
.layui-layer-fast .layui-layer-title,
.layui-layer-title {
  border-bottom-color: var(--user-line);
  color: #111827;
  font-weight: 900;
}
.form-layer .btn-captcha {
  height: 42px;
  border-radius: 0 6px 6px 0;
}

@media (max-width: 991px) {
  main.content {
    padding-top: 78px;
  }
  .navbar-white .user-nav-account {
    min-height: 44px;
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .navbar-white .user-nav-name {
    max-width: 160px;
  }
  .user-auth-shell,
  .user-profile-form-grid,
  .user-profile-summary {
    grid-template-columns: 1fr;
  }
  .user-auth-shell {
    gap: 12px;
    overflow: visible;
    border: 0;
    background: transparent;
    box-shadow: none;
  }
  .user-auth-aside,
  .user-auth-card {
    border: 1px solid var(--user-line);
    border-radius: 8px;
    box-shadow: var(--user-card-shadow);
  }
  .user-auth-aside {
    min-height: auto;
    padding: 32px 28px;
  }
  .user-auth-aside:after {
    display: none;
  }
  .user-auth-meta {
    position: static;
    margin-top: 24px;
  }
  .user-auth-aside h1 {
    font-size: 30px;
  }
  .user-auth-card {
    min-width: 0;
  }
  .user-summary-avatar {
    grid-row: auto;
  }
  .user-metric-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .user-workspace-row {
    display: block;
  }
  .user-sidebar-col {
    margin-bottom: 16px;
  }
  .user-workbench-profile {
    grid-template-columns: 96px minmax(0, 1fr);
  }
  .user-workbench-state {
    grid-column: 1 / -1;
  }
  .user-workbench-avatar,
  .user-workbench-avatar .avatar-img,
  .user-workbench-avatar .avatar-img img,
  .user-workbench-avatar .avatar-text {
    width: 92px;
    height: 92px;
    border-radius: 22px;
    line-height: 92px;
    font-size: 44px;
  }
  .sidenav {
    border-radius: 0 8px 8px 0;
  }
}
@media (max-width: 560px) {
  .container {
    width: auto;
  }
  main.content {
    padding-left: 12px;
    padding-right: 12px;
  }
  .user-auth-card .login-main,
  .user-panel.panel-default > .panel-body {
    padding: 22px 18px;
  }
  .user-auth-card .logon-tab > a {
    height: 52px;
    line-height: 52px;
  }
  .user-auth-aside {
    padding: 26px 22px;
  }
  .user-auth-aside h1 {
    font-size: 26px;
  }
  .user-auth-aside p,
  .user-auth-points {
    font-size: 13px;
  }
  .user-auth-points {
    margin-top: 22px;
  }
  .user-auth-meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }
  .user-auth-meta div {
    min-height: 68px;
    padding: 12px;
  }
  .user-auth-card .pull-right {
    float: none !important;
    display: block;
    margin-top: 8px;
  }
  .user-panel-head {
    align-items: flex-start;
    flex-direction: column;
  }
  .user-panel-head .btn {
    width: 100%;
  }
  .user-workbench-hero,
  .user-workbench-profile {
    padding: 22px 18px;
  }
  .user-workbench-hero {
    align-items: stretch;
    flex-direction: column;
  }
  .user-settings-hero {
    align-items: stretch;
    flex-direction: column;
    padding: 22px 18px;
  }
  .user-settings-body {
    padding: 22px 18px;
  }
  .user-workbench-records {
    grid-template-columns: 1fr;
    padding: 0 18px 22px;
  }
  .user-workbench-info h3 {
    font-size: 22px;
  }
  .user-workbench-copy h2 {
    font-size: 24px;
  }
  .user-metric-grid {
    grid-template-columns: 1fr;
  }
  .user-profile-panel .normal-footer {
    text-align: left;
  }
  .user-settings-card .normal-footer {
    text-align: left;
  }
  .user-profile-panel .normal-footer .btn {
    min-width: 96px;
  }
}
/*# sourceMappingURL=user.css.map */
