* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #f5f5f5;
  color: #23242d;
  font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
  min-width: 1260px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 70px;
  background: #fff;
  border-bottom: 1px solid #ededed;
  z-index: 998;
  min-width: 1260px;
}

.header-inner {
  width: 1200px;
  height: 70px;
  margin: 0 auto;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.left-group {
  display: flex;
  align-items: center;
}

.logo {
  width: 150px;
  height: 42px;
  margin-right: 58px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
}

.nav-item {
  position: relative;
}

.main-nav a {
  color: #1a1a1a;
  text-decoration: none;
}

.nav-link {
  height: 70px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 500;
}

.nav-link:hover,
.nav-item:hover > .nav-link {
  color: #ef5831;
}

.nav-caret {
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid currentColor;
  transition: transform 0.2s ease;
}

.nav-item:hover .nav-caret {
  transform: rotate(180deg);
}

.nav-menu {
  position: absolute;
  top: calc(100% - 8px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 248px;
  padding: 12px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.14);
  border-radius: 18px;
  display: none;
  z-index: 1100;
}

.nav-item:hover .nav-menu {
  display: block;
}

.nav-subitem {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  font-size: 15px;
  color: #1f2937;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav-subitem + .nav-subitem {
  margin-top: 6px;
}

.nav-subitem img {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
}

.nav-subitem:hover {
  background: #fff4ef;
  color: #ef5831;
  transform: translateY(-1px);
}

.user-actions {
  display: flex;
  gap: 21px;
  align-items: center;
}

.user-actions .btn {
  width: 105px;
  height: 40px;
  border-radius: 2px;
  font-size: 14px;
  align-items: center;
  justify-content: center;
  display: inline-flex;
  cursor: pointer;
  text-decoration: none;
}

.btn-login {
  background: #ef5831;
  color: #fff;
}

.btn-register {
  border: 1px solid #ef5831;
  color: #ef5831;
  background: #fff;
}

.header-vip-btn {
  height: 38px;
  line-height: 36px;
  padding: 0 18px;
  border-radius: 20px;
  border: 1px solid #e0c598;
  background: #f9e7c8;
  color: #94672b;
  text-decoration: none;
  font-size: 14px;
}

.header-vip-btn:hover,
.header-vip-btn:focus,
.header-vip-btn:active,
.header-vip-btn:visited {
  color: #94672b;
  text-decoration: none;
}

.header-vip-btn i {
  margin-right: 4px;
}

.header-account {
  position: relative;
}

.header-account-trigger {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #5f6168;
}

.header-account-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #d1d1d1;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.header-account-text strong {
  display: block;
  max-width: 110px;
  font-size: 14px;
  color: #4c4f56;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.header-account-text small {
  display: block;
  font-size: 12px;
  color: #9ea1a7;
}

.header-account-float {
  display: none;
  position: absolute;
  top: 56px;
  right: 0;
  width: 300px;
  background: #fff;
  border: 1px solid #ededed;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.12);
  border-radius: 4px;
  padding: 16px;
  z-index: 1200;
}

.header-account.is-open .header-account-float,
.header-account:hover .header-account-float {
  display: block;
}

.header-float-top {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-float-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #d1d1d1;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.header-float-top strong {
  display: block;
  font-size: 20px;
  color: #1f2228;
}

.header-float-top p {
  margin: 3px 0 0;
  color: #9ea1a7;
  font-size: 12px;
}

.header-float-vip {
  margin-top: 14px;
  background: #f8f8f8;
  border-radius: 2px;
  height: 42px;
  line-height: 42px;
  font-size: 14px;
  color: #4c4f56;
  padding: 0 12px;
}

.header-float-vip span {
  float: right;
  color: #ef5831;
}

.header-float-open {
  margin-top: 10px;
  display: block;
  text-align: center;
  height: 40px;
  line-height: 40px;
  background: #ef5831;
  color: #fff;
  border-radius: 3px;
  text-decoration: none;
  font-size: 14px;
}

.header-float-links {
  display: flex;
  margin-top: 12px;
  padding: 10px 0;
  border-bottom: 1px solid #efefef;
}

.header-float-links a {
  flex: 1;
  text-align: center;
  color: #4d5057;
  text-decoration: none;
  font-size: 13px;
}

.header-float-links a i {
  display: block;
  color: #ef5831;
  font-size: 16px;
  margin-bottom: 6px;
}

.header-float-logout {
  display: block;
  text-align: center;
  color: #94979d;
  text-decoration: none;
  padding-top: 12px;
  font-size: 14px;
}

.uc-main {
  padding-top: 28px;
}

.uc-main #content-container.container {
  width: 1200px;
  max-width: none;
  margin: 0 auto;
  padding-left: 0;
  padding-right: 0;
}

/* Override legacy Bootstrap user templates so the content area aligns with the fixed header. */
.uc-main #content-container > .row {
  margin-left: 0;
  margin-right: 0;
}

.uc-main #content-container > .row > [class*="col-"] {
  padding-left: 0;
  padding-right: 0;
}

.uc-page {
  width: 1200px;
  margin: 0 auto 50px;
}

.uc-breadcrumb {
  color: #7f8288;
  font-size: 14px;
  line-height: 46px;
}


.uc-panel {
  border: 1px solid #e4e4e4;
  background: #fff;
  display: flex;
  min-height: 710px;
}

.uc-left {
  width: 200px;
  border-right: 1px solid #ececec;
}

.sidenav {
  background: #fff;
}

.uc-sidenav-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.uc-sidenav-item a {
  display: block;
  height: 56px;
  line-height: 56px;
  padding: 0 28px;
  color: #2a2c33;
  text-decoration: none;
  font-size: 18px;
  border-left: 3px solid transparent;
}

.uc-sidenav-item a i {
  color: #8f9198;
  margin-right: 10px;
}

.uc-sidenav-item.active a {
  color: #ef5831;
  background: #fef4f0;
  border-left-color: #ef5831;
}

.uc-sidenav-item.active a i {
  color: #ef5831;
}

.uc-right {
  flex: 1;
  padding: 18px 28px 34px;
}

.uc-title {
  margin: 0;
  font-size: 32px;
  line-height: 48px;
}

.uc-profile-head {
  text-align: center;
  margin-top: 28px;
}

.uc-big-avatar {
  margin: 0 auto;
  width: 114px;
  height: 114px;
  border-radius: 50%;
  background: #c7c8ca;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
}

.uc-profile-head p {
  margin: 14px 0 0;
  font-size: 32px;
}

.uc-profile-info {
  margin-top: 32px;
  width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.uc-line {
  display: flex;
  align-items: center;
  min-height: 72px;
  color: #60636a;
  font-size: 15px;
}

.uc-line span {
  width: 130px;
}

.uc-line strong {
  font-weight: 400;
  color: #34373d;
}

.uc-outline-btn {
  margin-left: auto;
  width: 104px;
  height: 40px;
  line-height: 38px;
  text-align: center;
  border: 1px solid #ef5831;
  color: #ef5831;
  text-decoration: none;
  border-radius: 2px;
  font-size: 14px;
}

.sidebar-toggle {
  display: none;
}

@media (max-width: 1260px) {
  .header-inner,
  .uc-main #content-container.container,
  .uc-page {
    width: 1000px;
  }

  .uc-nav {
    gap: 28px;
  }
}

.uc-profile-page {
  width: 1200px;
  margin: 0 auto 80px;
}

.uc-profile-page .uc-breadcrumb {
  margin: 0;
  padding: 10px 2px 16px;
  color: #7f8288;
  font-size: 14px;
  line-height: 1.5;
}

.uc-profile-page .uc-breadcrumb a {
  color: #7f8288;
  text-decoration: none;
}

.uc-profile-page .uc-breadcrumb a:hover {
  color: #ef5831;
}

.uc-profile-panel {
  min-height: 684px;
  border: 1px solid #e3e5e8;
  background: #fff;
  box-shadow: none;
}

.uc-profile-side {
  width: 192px;
  border-right: 1px solid #e8eaee;
  background: #fff;
}

.uc-profile-side .sidebar-toggle {
  display: none;
}

.uc-profile-side .sidenav {
  padding-top: 14px;
}

.uc-profile-side .uc-sidenav-item a {
  display: flex;
  align-items: center;
  height: 56px;
  padding: 0 30px;
  border-left: none;
  border-right: 3px solid transparent;
  font-size: 16px;
  color: #2b2f36;
}

.uc-profile-side .uc-sidenav-item a i {
  width: 18px;
  margin-right: 12px;
  font-size: 15px;
  color: #8f949d;
  text-align: center;
}

.uc-profile-side .uc-sidenav-item.active a {
  background: #fff2ed;
  color: #ff5d42;
  border-right-color: #ff5d42;
}

.uc-profile-side .uc-sidenav-item.active a i {
  color: #ff5d42;
}

.uc-profile-content {
  padding: 18px 32px 40px;
}

.uc-profile-content .uc-title {
  margin: 0;
  font-size: 20px;
  line-height: 32px;
  font-weight: 700;
  color: #20232a;
}

.uc-profile-header {
  margin-top: 20px;
  text-align: center;
}

.uc-profile-avatar {
  width: 108px;
  height: 108px;
  margin: 0 auto;
  border-radius: 50%;
  overflow: hidden;
  background: #cbe7ff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.6);
}

.uc-profile-avatar img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.uc-profile-name {
  margin: 22px 0 0;
  font-size: 18px;
  line-height: 28px;
  color: #20232a;
  font-weight: 500;
}

.uc-profile-grid {
  width: 570px;
  margin: 40px auto 0;
}

.uc-profile-row {
  display: flex;
  align-items: center;
  min-height: 68px;
  font-size: 15px;
  color: #61656d;
}

.uc-profile-label {
  width: 118px;
  flex-shrink: 0;
  color: #666a72;
  letter-spacing: 0.2px;
}

.uc-profile-value {
  flex: 1;
  min-width: 0;
  color: #454851;
}

.uc-profile-action {
  margin-left: auto;
  width: 102px;
  height: 38px;
  line-height: 36px;
  border: 1px solid #ff5d42;
  border-radius: 2px;
  text-align: center;
  color: #ff5d42;
  text-decoration: none;
  font-size: 14px;
  background: #fff;
  transition: background 0.18s ease, color 0.18s ease;
}

.uc-profile-action:hover {
  background: #ff5d42;
  color: #fff;
}

.uc-order-page {
  width: 1200px;
  margin: 0 auto 80px;
}

.uc-order-page .uc-breadcrumb {
  margin: 0;
  padding: 10px 2px 16px;
  color: #7f8288;
  font-size: 14px;
  line-height: 1.5;
}

.uc-order-page .uc-breadcrumb a {
  color: #7f8288;
  text-decoration: none;
}

.uc-order-page .uc-breadcrumb a:hover {
  color: #ef5831;
}

.uc-order-panel {
  min-height: 684px;
  border: 1px solid #e3e5e8;
  background: #fff;
  box-shadow: none;
}

.uc-order-side {
  width: 192px;
  border-right: 1px solid #e8eaee;
  background: #fff;
}

.uc-order-side .sidebar-toggle {
  display: none;
}

.uc-order-side .sidenav {
  padding-top: 14px;
}

.uc-order-side .uc-sidenav-item a {
  display: flex;
  align-items: center;
  height: 56px;
  padding: 0 30px;
  border-left: none;
  border-right: 3px solid transparent;
  font-size: 16px;
  color: #2b2f36;
}

.uc-order-side .uc-sidenav-item a i {
  width: 18px;
  margin-right: 12px;
  font-size: 15px;
  color: #8f949d;
  text-align: center;
}

.uc-order-side .uc-sidenav-item.active a {
  background: #fff2ed;
  color: #ff5d42;
  border-right-color: #ff5d42;
}

.uc-order-side .uc-sidenav-item.active a i {
  color: #ff5d42;
}

.uc-order-content {
  padding: 24px 20px 34px;
}

.uc-order-title {
  margin: 0;
  font-size: 20px;
  line-height: 32px;
  font-weight: 700;
  color: #20232a;
}

.uc-order-table {
  margin-top: 28px;
}

.uc-order-table table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.uc-order-table th {
  height: 56px;
  padding: 0 18px;
  background: #f6f6f7;
  border-bottom: 1px solid #eceef2;
  text-align: left;
  font-size: 14px;
  font-weight: 700;
  color: #30343b;
}

.uc-order-col-orderno {
  width: 19%;
}

.uc-order-col-plan {
  width: 17%;
}

.uc-order-col-price {
  width: 13%;
}

.uc-order-col-channel {
  width: 18%;
}

.uc-order-col-time {
  width: 19%;
}

.uc-order-col-invoice {
  width: 14%;
}

.uc-order-table td {
  padding: 22px 18px;
  border-bottom: 1px solid #f0f2f5;
  vertical-align: middle;
  font-size: 14px;
  line-height: 22px;
  color: #4d5159;
  word-break: break-all;
}

.uc-order-table tbody tr:hover {
  background: #fffdf9;
}

.uc-order-table .is-muted {
  color: #9aa0aa;
}

.uc-order-empty {
  min-height: 470px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.uc-order-empty-inner {
  text-align: center;
  color: #c6cad2;
}

.uc-order-empty-icon {
  position: relative;
  width: 70px;
  height: 82px;
  margin: 0 auto 22px;
  border: 4px solid #d0d3db;
  border-radius: 10px;
  box-sizing: border-box;
}

.uc-order-empty-icon::before {
  content: "";
  position: absolute;
  right: -4px;
  top: -4px;
  width: 22px;
  height: 22px;
  border-top: 4px solid #d0d3db;
  border-right: 4px solid #d0d3db;
  border-radius: 0 10px 0 0;
  background: #fff;
  transform: skewY(-45deg) translateY(7px);
  transform-origin: top right;
}

.uc-order-empty-icon::after {
  content: "";
  position: absolute;
  left: 15px;
  top: 26px;
  width: 32px;
  height: 4px;
  background: #d0d3db;
  box-shadow: 0 12px 0 #d0d3db, 0 24px 0 #d0d3db;
  border-radius: 4px;
}

.uc-order-empty-title {
  margin: 0;
  font-size: 15px;
  line-height: 24px;
  color: #bcc1ca;
}

.uc-order-empty-subtitle {
  margin: 8px 0 0;
  font-size: 15px;
  line-height: 24px;
  color: #c8ccd4;
}

.uc-order-buy-btn {
  display: inline-block;
  margin-top: 46px;
  min-width: 100px;
  height: 32px;
  padding: 0 20px;
  border: none;
  border-radius: 4px;
  background: #ff5d42;
  color: #fff;
  font-size: 14px;
  line-height: 32px;
  text-decoration: none;
  cursor: pointer;
}

.uc-order-buy-btn:hover,
.uc-order-buy-btn:focus,
.uc-order-buy-btn:active,
.uc-order-buy-btn:visited {
  color: #fff;
  text-decoration: none;
}

.uc-security-page {
  width: 1200px;
  margin: 0 auto 80px;
}

.uc-security-page .uc-breadcrumb {
  margin: 0;
  padding: 10px 2px 16px;
  color: #7f8288;
  font-size: 14px;
  line-height: 1.5;
}

.uc-security-page .uc-breadcrumb a {
  color: #7f8288;
  text-decoration: none;
}

.uc-security-page .uc-breadcrumb a:hover {
  color: #ef5831;
}

.uc-security-panel {
  min-height: 684px;
  border: 1px solid #e3e5e8;
  background: #fff;
  box-shadow: none;
}

.uc-security-side {
  width: 192px;
  border-right: 1px solid #e8eaee;
  background: #fff;
}

.uc-security-side .sidebar-toggle {
  display: none;
}

.uc-security-side .sidenav {
  padding-top: 14px;
}

.uc-security-side .uc-sidenav-item a {
  display: flex;
  align-items: center;
  height: 56px;
  padding: 0 30px;
  border-left: none;
  border-right: 3px solid transparent;
  font-size: 16px;
  color: #2b2f36;
}

.uc-security-side .uc-sidenav-item a i {
  width: 18px;
  margin-right: 12px;
  font-size: 15px;
  color: #8f949d;
  text-align: center;
}

.uc-security-side .uc-sidenav-item.active a {
  background: #fff2ed;
  color: #ff5d42;
  border-right-color: #ff5d42;
}

.uc-security-side .uc-sidenav-item.active a i {
  color: #ff5d42;
}

.uc-security-content {
  padding: 18px 32px 40px;
}

.uc-security-content .uc-title {
  margin: 0;
  font-size: 20px;
  line-height: 32px;
  font-weight: 700;
  color: #20232a;
}

.uc-security-card {
  width: 620px;
  margin-top: 30px;
}

.uc-security-form .form-group {
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 22px;
}

.uc-security-form .control-label {
  width: 132px;
  padding-left: 0;
  padding-right: 18px;
  text-align: left;
  font-size: 15px;
  font-weight: 400;
  color: #666a72;
  line-height: 42px;
}

.uc-security-form .uc-security-field {
  width: 280px;
  padding-left: 0;
  padding-right: 0;
}

.uc-security-form .form-control {
  height: 42px;
  border: 1px solid #dfe3e8;
  border-radius: 2px;
  box-shadow: none;
  font-size: 14px;
  color: #2b2f36;
}

.uc-security-form .form-control:focus {
  border-color: #ff5d42;
  box-shadow: 0 0 0 2px rgba(255, 93, 66, 0.08);
}

.uc-security-actions {
  padding-top: 8px;
}

.uc-security-actions .control-label {
  line-height: 1;
}

.uc-security-btn {
  min-width: 104px;
  height: 38px;
  padding: 0 22px;
  border-radius: 2px;
  font-size: 14px;
  line-height: 36px;
  text-align: center;
}

.uc-security-btn + .uc-security-btn {
  margin-left: 12px;
}

.uc-security-btn.btn-primary {
  border-color: #ff5d42;
  background: #ff5d42;
  color: #fff;
}

.uc-security-btn.btn-default {
  border-color: #d9dce2;
  background: #fff;
  color: #666a72;
}

@media (max-width: 1260px) {
  .uc-profile-page,
  .uc-order-page,
  .uc-security-page {
    width: 1000px;
  }

  .uc-profile-grid {
    width: 520px;
  }
}

@media (max-width: 1024px) {
  .uc-profile-page,
  .uc-order-page,
  .uc-security-page {
    width: auto;
    margin: 0 16px 48px;
  }

  .uc-profile-panel,
  .uc-order-panel,
  .uc-security-panel {
    display: block;
    min-height: 0;
  }

  .uc-profile-side,
  .uc-order-side,
  .uc-security-side {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #e8eaee;
  }

  .uc-profile-side .sidenav,
  .uc-order-side .sidenav,
  .uc-security-side .sidenav {
    padding-top: 0;
  }

  .uc-profile-content,
  .uc-order-content,
  .uc-security-content {
    padding: 20px;
  }

  .uc-profile-grid {
    width: 100%;
    margin-top: 28px;
  }

  .uc-profile-row {
    flex-wrap: wrap;
    gap: 12px;
    padding: 10px 0;
  }

  .uc-profile-label {
    width: 96px;
  }

  .uc-profile-action {
    margin-left: 108px;
  }

  .uc-order-table {
    overflow-x: auto;
  }

  .uc-order-table table {
    min-width: 780px;
  }

  .uc-security-card {
    width: 100%;
  }

  .uc-security-form .control-label,
  .uc-security-form .uc-security-field {
    width: 100%;
    float: none;
  }

  .uc-security-form .control-label {
    margin-bottom: 8px;
    line-height: 1.5;
  }

  .uc-security-actions .control-label {
    display: none;
  }

  .uc-security-btn + .uc-security-btn {
    margin-left: 8px;
  }
}
