:root {
  color-scheme: light;
  --canvas: #f1f5f3;
  --paper: #ffffff;
  --paper-solid: #ffffff;
  --paper-soft: #f7f9f8;
  --ink: #17201d;
  --muted: #66736e;
  --line: #dfe6e3;
  --line-strong: #cbd6d1;
  --brand: #15966b;
  --brand-dark: #0b6f50;
  --blue: #306fe8;
  --amber: #d99021;
  --rose: #dc4f68;
  --radius: 14px;
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --shadow-sm: 0 8px 22px rgba(23, 32, 29, .05);
  --shadow-md: 0 16px 38px rgba(23, 32, 29, .07);
  --shadow-lg: 0 24px 60px rgba(23, 32, 29, .09);
}

* {
  box-sizing: border-box;
}

html,
body.minimal-shop {
  min-height: 100%;
}

body.minimal-shop {
  position: relative;
  isolation: isolate;
  margin: 0;
  background:
    radial-gradient(circle at 10% 0%, rgba(21, 150, 107, .12), transparent 30rem),
    radial-gradient(circle at 94% 22%, rgba(48, 111, 232, .065), transparent 34rem),
    linear-gradient(165deg, #edf6f2 0%, #f6f9f7 42%, #eef4f1 100%);
  color: var(--ink);
  font-family: "PingFang SC", "Microsoft YaHei UI", "Microsoft YaHei", sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
}

body.minimal-shop::before {
  content: "";
  position: fixed;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  background: url("background-lines.svg") center top / max(1280px, 100vw) auto no-repeat;
  opacity: .82;
}

body.minimal-shop a {
  color: inherit;
  text-decoration: none;
}

body.minimal-shop a:hover,
body.minimal-shop a:focus {
  color: inherit;
  text-decoration: none;
}

.minimal-shell {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 16px 0 40px;
}

.topbar {
  position: sticky;
  top: 12px;
  z-index: 20;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 10px 30px rgba(23, 32, 29, .055);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.brand {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 20px;
  font-weight: 850;
}

.brand-mark {
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: none;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 4px;
}

.brand-text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.topbar .brand.is-logo-only {
  flex: 0 0 auto;
  gap: 0;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 650;
}

.main-nav a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border-radius: 7px;
  white-space: nowrap;
  transition: background .18s ease, color .18s ease;
}

.main-nav a:hover,
.main-nav a:focus {
  background: rgba(24, 168, 117, .10);
  color: var(--ink);
}

.hero {
  position: relative;
  min-height: 292px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
  align-items: center;
  gap: clamp(28px, 5vw, 64px);
  margin-top: 16px;
  padding: clamp(28px, 4vw, 48px);
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(203, 214, 209, .9);
  border-radius: var(--radius);
  background:
    linear-gradient(108deg, rgba(255, 255, 255, .98) 0%, rgba(255, 255, 255, .98) 52%, rgba(239, 247, 243, .96) 100%);
  box-shadow: 0 20px 54px rgba(23, 32, 29, .075);
}

.hero::before {
  content: "";
  position: absolute;
  z-index: 0;
  width: 360px;
  height: 360px;
  top: -238px;
  right: -98px;
  border: 1px solid rgba(21, 150, 107, .14);
  border-radius: 50%;
  box-shadow:
    0 0 0 58px rgba(21, 150, 107, .045),
    0 0 0 116px rgba(21, 150, 107, .025);
}

.hero::after {
  content: "";
  position: absolute;
  z-index: 0;
  right: 3%;
  bottom: 0;
  width: 52%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(21, 150, 107, .34), transparent);
}

.hero-copy,
.hero-panel {
  position: relative;
  z-index: 1;
}

.hero h1 {
  position: relative;
  display: inline-block;
  max-width: 760px;
  margin: 0 0 14px;
  font-size: clamp(38px, 4.5vw, 56px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -.03em;
}

.hero h1::after {
  content: attr(data-title);
  position: absolute;
  inset: 0;
  overflow: hidden;
  color: transparent;
  pointer-events: none;
  background: linear-gradient(102deg, transparent 33%, rgba(52, 201, 151, .52) 43%, #ffffff 50%, rgba(52, 201, 151, .58) 57%, transparent 67%);
  background-size: 240% 100%;
  background-position: 125% 0;
  -webkit-background-clip: text; /* impeccable-disable-line gradient-text: user-requested one-time title light sweep */
  background-clip: text;
  opacity: 0;
}

.hero h1.is-title-motion-active::after {
  animation: minimal-title-scan 5.45s cubic-bezier(.22, 1, .36, 1) .6s infinite;
  filter: drop-shadow(0 0 8px rgba(21, 150, 107, .2));
  will-change: background-position, opacity;
}

.hero p {
  max-width: 640px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.primary-btn,
.ghost-btn,
body.minimal-shop .btn-primary,
body.minimal-shop #submit_buy,
body.minimal-shop #submit_query {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--radius);
  font-weight: 850;
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

.primary-btn,
body.minimal-shop .btn-primary,
body.minimal-shop #submit_buy,
body.minimal-shop #submit_query {
  border: 0;
  background: linear-gradient(135deg, #18a875, #087650);
  color: #fff !important;
  box-shadow: 0 14px 28px rgba(24, 168, 117, .20);
}

body.minimal-shop .btn-success {
  border: 0;
  background: linear-gradient(135deg, #20b77e, #087650);
  color: #fff !important;
  box-shadow: 0 14px 28px rgba(24, 168, 117, .18);
}

body.minimal-shop .btn-info,
body.minimal-shop .btn-warning {
  border-color: rgba(24, 168, 117, .24);
  background: linear-gradient(135deg, #18a875, #087650);
  color: #fff !important;
  box-shadow: 0 10px 22px rgba(24, 168, 117, .14);
}

.primary-btn:hover,
.ghost-btn:hover,
body.minimal-shop .btn-primary:hover,
body.minimal-shop #submit_buy:hover,
body.minimal-shop #submit_query:hover {
  transform: translateY(-1px);
  filter: brightness(1.04);
}

body.minimal-shop .btn-info:hover,
body.minimal-shop .btn-warning:hover {
  filter: brightness(1.04);
  color: #fff !important;
}

.ghost-btn,
body.minimal-shop .btn-default {
  min-height: 48px;
  border: 1px solid rgba(24, 168, 117, .24);
  background: rgba(236, 253, 245, .76);
  color: var(--brand-dark) !important;
  box-shadow: none;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  width: fit-content;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(203, 214, 209, .82);
}

.hero-points span {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.hero-points i {
  color: var(--brand);
  font-size: 11px;
}

.hero-panel {
  width: min(430px, 100%);
  justify-self: end;
  padding: 20px;
  border: 1px solid rgba(203, 214, 209, .9);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .76);
  box-shadow: 0 18px 42px rgba(23, 32, 29, .09);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 14px;
  font-weight: 850;
}

.panel-head span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--brand-dark);
  font-size: 12px;
  font-weight: 800;
}

.panel-head span i {
  width: 12px;
  height: 12px;
  border: 3px solid rgba(21, 150, 107, .16);
  border-radius: 50%;
  background: var(--brand);
}

.status-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 0;
  padding: 13px 0;
  border: 0;
  border-bottom: 1px solid rgba(203, 214, 209, .72);
  border-radius: 0;
  background: transparent;
  color: var(--muted);
}

.status-row strong,
.status-row span {
  color: var(--ink);
  font-size: 18px;
  font-weight: 850;
}

.status-row.success {
  border-color: rgba(203, 214, 209, .72);
  background: transparent;
}

.status-row.accent {
  border-color: transparent;
  background: transparent;
}

.status-row em,
.metric em {
  font-style: normal;
}

.status-row.service-row {
  justify-content: flex-start;
  align-items: flex-start;
  padding: 13px 0;
}

.status-row.service-row > i {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: rgba(24, 168, 117, .10);
  color: var(--brand-dark);
  font-size: 15px;
}

.status-row.service-row > div {
  min-width: 0;
  display: grid;
  gap: 4px;
}

.status-row.service-row strong {
  color: var(--ink);
  font-size: 16px;
  line-height: 1.3;
}

.status-row.service-row span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.55;
}

.notice-band,
.work-card,
.mini-card {
  border: 1px solid rgba(203, 214, 209, .88);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow-sm);
}

.notice-band {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: start;
  margin-top: 16px;
  padding: 14px 16px;
  color: var(--muted);
  line-height: 1.75;
}

.notice-band i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: rgba(24, 168, 117, .10);
  color: var(--brand-dark);
}

.main-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 304px;
  gap: 20px;
  align-items: start;
  margin-top: 20px;
}

.work-card {
  overflow: hidden;
  min-width: 0;
  background: linear-gradient(180deg, #ffffff 0%, #ffffff 70%, #fbfdfc 100%);
  box-shadow: 0 20px 48px rgba(23, 32, 29, .075);
}

.minimal-tabs {
  display: flex;
  gap: 4px;
  padding: 8px;
  border: 0;
  background: #f2f6f4;
}

.minimal-tabs > li {
  flex: 1 1 auto;
  float: none;
  margin: 0;
}

.minimal-tabs > li > a {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0;
  border: 1px solid transparent;
  border-radius: var(--radius);
  color: var(--muted);
  font-weight: 850;
}

.minimal-tabs > li.active > a,
.minimal-tabs > li.active > a:hover,
.minimal-tabs > li.active > a:focus,
.minimal-tabs > li > a:hover {
  border-color: rgba(24, 168, 117, .20);
  background: #ffffff;
  color: var(--ink);
  box-shadow: 0 8px 20px rgba(23, 32, 29, .06);
}

.work-content {
  padding: 26px;
}

.pane-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 20px;
  padding: 0 0 18px;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
}

.pane-heading div {
  display: grid;
  gap: 5px;
}

.pane-heading span,
.auth-card-head span,
.form-title-row span {
  color: var(--brand-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
}

.pane-heading strong {
  color: var(--ink);
  font-size: 24px;
  line-height: 1.2;
}

.pane-heading em {
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
  text-align: right;
}

#onlinebuy #goodTypeContents,
#onlinebuy #goodTypeContent,
#query .query-result,
.module-card .work-content {
  max-width: 860px;
}

#onlinebuy #goodTypeContents,
#onlinebuy #goodTypeContent {
  margin: 0 auto;
}

.order-stage {
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
}

#onlinebuy #inputsname {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 16px;
}

#onlinebuy #inputsname:empty {
  display: none;
}

#onlinebuy #inputsname > .form-group {
  min-width: 0;
  margin-bottom: 0;
}

#onlinebuy #inputsname > .form-group:only-child {
  grid-column: 1 / -1;
}

.order-empty-guide {
  max-width: 860px;
  display: grid;
  gap: 10px;
  margin: 0 auto 20px;
  padding: 14px 16px;
  border: 1px solid rgba(21, 150, 107, .14);
  border-radius: var(--radius);
  background: linear-gradient(115deg, rgba(236, 253, 245, .72), rgba(248, 251, 249, .92));
  box-shadow: none;
}

.order-empty-guide-main {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 850;
  line-height: 1.55;
}

.order-empty-guide-main i {
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #e9f4ef;
  color: var(--brand-dark);
}

.order-hot-recommend {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding-left: 42px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 760;
  line-height: 1.55;
}

.order-hot-recommend strong {
  color: var(--brand-dark);
}

.catalog-browser {
  display: none;
  max-width: 860px;
  margin: 0 auto 20px;
  padding: 18px;
  border: 1px solid rgba(203, 214, 209, .9);
  border-radius: var(--radius);
  background: rgba(248, 251, 249, .82);
}

.catalog-enhanced .catalog-browser {
  display: block;
}

.catalog-browser-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.catalog-browser-head > div {
  min-width: 0;
  display: grid;
  gap: 4px;
}

.catalog-browser-head strong {
  color: var(--ink);
  font-size: 18px;
  line-height: 1.3;
  font-weight: 900;
}

.catalog-browser-head span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.catalog-browser-head em {
  flex: 0 0 auto;
  padding: 5px 9px;
  border-radius: 8px;
  background: rgba(21, 150, 107, .09);
  color: var(--brand-dark);
  font-size: 12px;
  font-style: normal;
  font-weight: 850;
}

.catalog-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.catalog-category {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #ffffff;
  color: var(--muted);
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  transition: border-color .18s ease, background .18s ease, color .18s ease, transform .18s ease;
}

.catalog-category:hover,
.catalog-category:focus,
.catalog-category.is-active {
  border-color: rgba(21, 150, 107, .28);
  background: rgba(236, 253, 245, .9);
  color: var(--brand-dark);
}

.catalog-category:active {
  transform: translateY(1px);
}

.catalog-category > .catalog-brand-icon {
  width: 19px;
  height: 19px;
  flex: 0 0 19px;
}

.catalog-products {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.catalog-product-card {
  position: relative;
  min-width: 0;
  min-height: 118px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: start;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--ink);
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: border-color .18s ease, background .18s ease, box-shadow .18s ease, transform .18s ease;
}

.catalog-product-card:hover,
.catalog-product-card:focus {
  border-color: rgba(21, 150, 107, .3);
  background: #fcfffd;
  transform: translateY(-1px);
}

.catalog-product-card.is-active {
  border-color: rgba(21, 150, 107, .48);
  background: linear-gradient(120deg, rgba(236, 253, 245, .92), #ffffff 72%);
  box-shadow: 0 12px 28px rgba(21, 150, 107, .11);
}

.catalog-product-card.is-active .catalog-product-icon::after {
  content: "\f058";
  position: absolute;
  right: -4px;
  bottom: -4px;
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  background: #ffffff;
  color: var(--brand);
  font: normal normal normal 14px/1 FontAwesome;
}

.catalog-product-card.is-unavailable {
  opacity: .68;
}

.catalog-product-icon {
  position: relative;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(21, 150, 107, .1);
  color: var(--brand-dark);
  font-size: 17px;
}

.catalog-brand-icon {
  width: 25px;
  height: 25px;
  display: block;
  color: currentColor;
  overflow: visible;
}

.catalog-brand-icon.is-chatgpt {
  width: 26px;
  height: 26px;
}

.catalog-brand-icon.is-claude,
.catalog-brand-icon.is-grok {
  width: 24px;
  height: 24px;
}

.catalog-brand-icon.is-gemini {
  width: 23px;
  height: 23px;
}

.catalog-product-copy {
  min-width: 0;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 5px;
  align-self: stretch;
}

.catalog-product-copy strong {
  padding-right: 4px;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.35;
  font-weight: 900;
}

.catalog-product-copy > span {
  display: -webkit-box;
  overflow: hidden;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.catalog-product-price {
  padding-right: 2px;
  color: var(--brand-dark);
  font-size: 15px;
  line-height: 1.35;
  font-weight: 900;
  white-space: nowrap;
}

.catalog-product-availability {
  justify-self: start;
  color: var(--brand-dark);
  font-size: 12px;
  line-height: 1.35;
  font-style: normal;
  font-weight: 800;
  white-space: nowrap;
}

.catalog-product-availability.is-unavailable {
  color: var(--muted);
}

.catalog-loading,
.catalog-empty {
  grid-column: 1 / -1;
  min-height: 118px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 7px;
  padding: 18px;
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .72);
  color: var(--muted);
  text-align: center;
}

.catalog-loading i,
.catalog-empty i {
  color: var(--brand-dark);
  font-size: 20px;
}

.catalog-loading .minimal-spinner {
  color: var(--brand);
}

.catalog-empty strong {
  color: var(--ink);
  font-size: 15px;
}

.catalog-empty span,
.catalog-loading span {
  font-size: 12px;
}

.catalog-enhanced .order-empty-guide,
.catalog-enhanced .catalog-native-field,
.catalog-enhanced #display_left,
.catalog-enhanced:not(.has-catalog-product) .minimal-submit-row {
  display: none !important;
}

.catalog-enhanced.has-catalog-product #alert_frame {
  min-height: 148px;
}

#onlinebuy .form-group,
#query .form-group {
  margin-bottom: 16px;
}

#onlinebuy .input-group,
#query .input-group {
  width: 100%;
}

#onlinebuy .input-group-addon,
#query .input-group-addon {
  min-width: 108px;
  text-align: center;
}

#onlinebuy #alert_frame {
  position: relative;
  padding: 16px 18px;
  border: 1px solid var(--line) !important;
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255, 255, 255, .98), rgba(247, 250, 248, .94)) !important;
  color: var(--muted) !important;
  box-shadow: none;
  max-height: 148px;
  overflow-y: auto;
  line-height: 1.7;
  font-weight: 650 !important;
  scrollbar-width: thin;
  animation: none !important;
}

#onlinebuy #alert_frame::before {
  content: "商品详情";
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.35;
  font-weight: 900;
}

#onlinebuy .btn-group-justified {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

#onlinebuy .btn-group-justified > .btn,
#onlinebuy .btn-group-justified > .btn-group {
  display: block;
  width: auto;
}

#onlinebuy .backType {
  min-height: 42px;
}

#onlinebuy #display_num .input-group {
  display: grid;
  grid-template-columns: 108px minmax(72px, 1fr) 42px;
  grid-template-rows: repeat(2, 23px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .94);
}

#onlinebuy #display_num .input-group-addon {
  width: auto !important;
  min-width: 0;
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border: 0;
  border-right: 1px solid var(--line);
  border-radius: 0;
  background: rgba(248, 250, 249, .96);
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
  grid-column: 1;
  grid-row: 1 / 3;
}

#onlinebuy #display_num .input-group-btn {
  position: relative;
  width: auto;
  display: block;
  grid-column: 3;
}

#onlinebuy #display_num .input-group-btn.is-increase {
  grid-row: 1;
}

#onlinebuy #display_num .input-group-btn.is-decrease {
  grid-row: 2;
}

#onlinebuy #display_num .minimal-quantity-arrow {
  position: absolute;
  z-index: 2;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--brand-dark);
  pointer-events: none;
}

#onlinebuy #display_num .minimal-quantity-arrow i {
  font-size: 13px;
  line-height: 1;
}

#onlinebuy #display_num #num {
  width: 100%;
  min-height: 46px;
  padding: 0 8px;
  border: 0;
  border-radius: 0;
  background: #fff;
  color: var(--ink);
  font-size: 16px;
  font-weight: 900;
  text-align: center;
  appearance: textfield;
  -moz-appearance: textfield;
  grid-column: 2;
  grid-row: 1 / 3;
  border-right: 1px solid var(--line);
}

#onlinebuy #display_num #num::-webkit-inner-spin-button,
#onlinebuy #display_num #num::-webkit-outer-spin-button {
  margin: 0;
  -webkit-appearance: none;
}

#onlinebuy #num_min,
#onlinebuy #num_add,
#onlinebuy #display_num .input-group-btn .btn-info {
  width: 100%;
  height: 23px;
  min-height: 23px;
  padding: 0;
  border: 0 !important;
  border-radius: 0 !important;
  background: rgba(248, 250, 249, .96) !important;
  color: var(--brand-dark) !important;
  color: transparent !important;
  font-size: 0;
  font-weight: 650;
  line-height: 1;
  box-shadow: none !important;
}

#onlinebuy #num_min {
  border-top: 1px solid var(--line) !important;
}

#onlinebuy #num_add {
  border-bottom: 0 !important;
}

#onlinebuy #num_min:hover,
#onlinebuy #num_add:hover,
#onlinebuy #display_num .input-group-btn .btn-info:hover {
  background: rgba(24, 168, 117, .10) !important;
  color: var(--brand-dark) !important;
}

#onlinebuy #num_min:focus,
#onlinebuy #num_add:focus,
#onlinebuy #display_num #num:focus {
  position: relative;
  z-index: 1;
  outline: 2px solid rgba(24, 168, 117, .34);
  outline-offset: -2px;
}

body.minimal-shop .form-control {
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .86);
  color: var(--ink);
  box-shadow: none;
}

body.minimal-shop .input-group .form-control {
  border-radius: 0;
}

body.minimal-shop .input-group .form-control:first-child,
body.minimal-shop .input-group-addon:first-child,
body.minimal-shop .input-group-btn:first-child > .btn,
body.minimal-shop .input-group-btn:first-child > select {
  border-top-left-radius: var(--radius);
  border-bottom-left-radius: var(--radius);
}

body.minimal-shop .input-group .form-control:last-child,
body.minimal-shop .input-group-addon:last-child,
body.minimal-shop .input-group-btn:last-child > .btn {
  border-top-right-radius: var(--radius);
  border-bottom-right-radius: var(--radius);
}

body.minimal-shop .input-group-addon {
  min-width: 96px;
  border-color: var(--line);
  background: rgba(248, 250, 252, .92);
  color: var(--muted);
  font-weight: 800;
}

body.minimal-shop .form-group {
  margin-bottom: 14px;
}

.minimal-query-console {
  display: grid;
  gap: 11px;
  margin-bottom: 16px;
}

.minimal-query-fields {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) 126px;
  gap: 10px;
  align-items: end;
}

.minimal-query-field {
  min-width: 0;
  display: grid;
  gap: 7px;
}

.minimal-query-field-label {
  margin: 0;
  color: var(--ink);
  font-size: 12px;
  line-height: 1.2;
  font-weight: 900;
}

.minimal-query-select,
.minimal-query-input {
  min-width: 0;
  min-height: 48px;
  display: grid;
  align-items: center;
  border: 1px solid rgba(207, 217, 226, .96);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .92);
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.minimal-query-select {
  position: relative;
  grid-template-columns: 38px minmax(0, 1fr) 30px;
}

.minimal-query-input {
  grid-template-columns: 40px minmax(0, 1fr) 38px;
}

.minimal-query-select:focus-within,
.minimal-query-input:focus-within {
  border-color: rgba(24, 168, 117, .52);
  background: #fff;
  box-shadow: 0 8px 20px rgba(22, 27, 33, .07), 0 0 0 3px rgba(24, 168, 117, .10);
}

.minimal-query-select > i:first-child,
.minimal-query-input > i:first-child {
  justify-self: center;
  color: var(--brand-dark);
  font-size: 14px;
}

.minimal-query-select > i:last-child {
  justify-self: center;
  color: var(--muted);
  font-size: 14px;
  pointer-events: none;
}

body.minimal-shop .minimal-query-select .form-control,
body.minimal-shop .minimal-query-input .form-control {
  width: 100%;
  min-width: 0;
  height: 46px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  box-shadow: none;
  font-weight: 800;
}

body.minimal-shop .minimal-query-select .form-control {
  appearance: none;
  cursor: pointer;
}

body.minimal-shop .minimal-query-input .form-control::placeholder {
  color: #84909e;
  font-weight: 700;
}

.minimal-query-input .query-help-btn {
  width: 30px;
  height: 30px;
  display: inline-grid;
  place-items: center;
  justify-self: center;
  border: 1px solid rgba(24, 168, 117, .18);
  border-radius: 50%;
  background: rgba(236, 253, 245, .82);
  color: var(--brand-dark) !important;
  box-shadow: none;
}

.minimal-query-input .query-help-btn:hover,
.minimal-query-input .query-help-btn:focus {
  border-color: rgba(24, 168, 117, .34);
  background: rgba(24, 168, 117, .14);
  color: var(--brand-dark) !important;
}

.minimal-query-submit,
body.minimal-shop .minimal-query-submit {
  min-height: 48px;
  padding: 0 18px;
  border: 0;
  border-radius: var(--radius);
  background: #15171d;
  color: #fff;
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(22, 27, 33, .14);
}

.minimal-query-submit:hover,
.minimal-query-submit:focus,
body.minimal-shop .minimal-query-submit:hover,
body.minimal-shop .minimal-query-submit:focus {
  background: #252932;
  color: #fff;
  transform: translateY(-1px);
}

.minimal-query-note {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
  font-weight: 750;
}

.minimal-query-note i {
  margin-top: 2px;
  color: var(--brand-dark);
}

body.minimal-shop .popover {
  border: 1px solid rgba(217, 226, 234, .92);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  color: var(--ink);
}

body.minimal-shop .popover-title {
  border-bottom-color: var(--line);
  background: rgba(248, 250, 252, .92);
  color: var(--ink);
  font-weight: 850;
}

body.minimal-shop .popover-content {
  color: var(--muted);
  line-height: 1.7;
}

.soft-alert,
body.minimal-shop .alert {
  border: 1px solid rgba(24, 168, 117, .20);
  border-radius: var(--radius);
  background: rgba(236, 253, 245, .70);
  color: var(--brand-dark);
}

.minimal-query-status-guide {
  overflow: hidden;
  margin-bottom: 16px;
  border: 1px solid rgba(217, 226, 234, .92);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .88);
  color: var(--ink);
}

.minimal-query-status-head {
  min-width: 0;
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 11px;
  align-items: center;
  padding: 14px 16px;
  background: rgba(248, 250, 252, .82);
}

.minimal-query-status-head-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(24, 168, 117, .11);
  color: var(--brand-dark);
  font-size: 16px;
}

.minimal-query-status-head-copy {
  min-width: 0;
}

.minimal-query-status-head-copy strong,
.minimal-query-status-head-copy span {
  display: block;
}

.minimal-query-status-head-copy strong {
  color: var(--ink);
  font-size: 15px;
  line-height: 1.35;
  font-weight: 900;
}

.minimal-query-status-head-copy span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
  font-weight: 750;
}

.minimal-query-status-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.minimal-query-status-item {
  min-width: 0;
  min-height: 82px;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  padding: 13px 14px;
  background: rgba(255, 255, 255, .72);
}

.minimal-query-status-item:nth-child(even) {
  border-left: 1px solid var(--line);
}

.minimal-query-status-item:nth-child(n + 3) {
  border-top: 1px solid var(--line);
}

.minimal-query-status-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(48, 111, 232, .10);
  color: #2354b7;
  font-size: 12px;
}

.minimal-query-status-item.is-success .minimal-query-status-icon {
  background: rgba(24, 168, 117, .12);
  color: var(--brand-dark);
}

.minimal-query-status-item.is-working .minimal-query-status-icon {
  background: rgba(217, 144, 33, .13);
  color: #8a4b0b;
}

.minimal-query-status-item.is-danger .minimal-query-status-icon {
  background: rgba(220, 79, 104, .12);
  color: #9f1239;
}

.minimal-query-status-copy {
  min-width: 0;
}

.minimal-query-status-copy strong {
  display: block;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.4;
  font-weight: 900;
}

.minimal-query-status-copy p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
  font-weight: 720;
  overflow-wrap: anywhere;
}

body.minimal-shop .widget,
body.minimal-shop .thumbnail,
body.minimal-shop .panel,
body.minimal-shop .well {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 10px 28px rgba(22, 27, 33, .06);
}

body.minimal-shop .widget {
  overflow: hidden;
  display: block;
}

body.minimal-shop .widget-content {
  padding: 14px;
}

body.minimal-shop .goodTypeChange img.lazy,
body.minimal-shop .thumbnail img.lazy {
  width: 100%;
  min-height: 148px;
  max-height: 188px;
  object-fit: cover;
  background: var(--paper-soft);
}

body.minimal-shop .thumbnail {
  padding: 8px;
}

body.minimal-shop .thumbnail center {
  display: grid;
  gap: 8px;
}

body.minimal-shop .table {
  margin-bottom: 0;
  background: transparent;
}

body.minimal-shop .table > thead > tr > th {
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-weight: 850;
  white-space: nowrap;
}

body.minimal-shop .table > tbody > tr > td {
  border-top: 1px solid rgba(223, 231, 238, .72);
  vertical-align: middle;
}

.query-result {
  margin-top: 16px;
}

.gift-box {
  min-height: 280px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 18px;
  padding: 34px 18px;
}

#roll {
  width: 100%;
  min-height: 78px;
  display: grid;
  place-items: center;
  padding: 18px;
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius);
  background: rgba(248, 250, 252, .86);
  color: var(--ink);
  font-size: 20px;
  font-weight: 850;
}

.gift-actions {
  width: min(280px, 100%);
}

.side-stack {
  display: grid;
  gap: 16px;
}

.mini-card {
  min-width: 0;
  padding: 22px;
}

@media (min-width: 1081px) {
  .work-card {
    min-height: 0;
  }

  .work-card.has-selected-product.is-order-pane-active {
    min-height: 895px;
  }

  #onlinebuy .order-stage,
  #onlinebuy #goodTypeContent,
  #onlinebuy #goodTypeContents {
    min-height: 0;
  }

  #onlinebuy #goodTypeContents {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    align-items: start;
  }

  #onlinebuy #goodTypeContents > .form-group {
    min-width: 0;
    margin-bottom: 0;
  }

  #onlinebuy #goodTypeContents > #display_searchBar,
  #onlinebuy #goodTypeContents > #inputsname,
  #onlinebuy #goodTypeContents > #alert_frame,
  #onlinebuy #goodTypeContents > .alert,
  #onlinebuy #goodTypeContents > .btn-group,
  #onlinebuy #goodTypeContents > .minimal-submit-row {
    grid-column: 1 / -1;
  }
}

@keyframes minimal-title-scan {
  0% {
    background-position: 125% 0;
    opacity: 0;
  }
  7% {
    opacity: 1;
  }
  38% {
    opacity: 1;
  }
  45%,
  100% {
    background-position: -35% 0;
    opacity: 0;
  }
}

.section-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 900;
}

.section-title i {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: rgba(24, 168, 117, .10);
  color: var(--brand-dark);
}

.metric {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid rgba(223, 231, 238, .82);
  color: var(--muted);
}

.metric strong {
  color: var(--ink);
  font-size: 18px;
}

.agency-card p,
.helper-content {
  color: var(--muted);
  line-height: 1.75;
}

.price-line {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin: 14px 0;
}

.price-line strong {
  color: var(--brand-dark);
  font-size: 34px;
  line-height: 1;
}

.quick-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.quick-links a {
  min-width: 0;
  min-height: 74px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  padding: 12px 8px;
  border: 1px solid rgba(223, 231, 238, .92);
  border-radius: var(--radius);
  background: rgba(248, 250, 252, .72);
  color: var(--muted);
  text-align: center;
  font-weight: 800;
  transition: border-color .18s ease, background .18s ease, color .18s ease, transform .18s ease;
}

.quick-links a:hover,
.quick-links a:focus {
  border-color: rgba(24, 168, 117, .22);
  background: rgba(236, 253, 245, .76);
  color: var(--ink);
  transform: translateY(-1px);
}

.quick-links i {
  color: var(--brand-dark);
  font-size: 20px;
}

.quick-links span {
  overflow-wrap: anywhere;
}

.contact-card {
  min-height: 210px;
}

.contact-card p {
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.75;
}

.contact-list {
  display: grid;
  gap: 9px;
  margin-bottom: 14px;
}

.contact-list div {
  min-width: 0;
  display: grid;
  grid-template-columns: 32px minmax(72px, auto) 1fr;
  gap: 10px;
  align-items: center;
  padding: 10px;
  border: 1px solid rgba(223, 231, 238, .92);
  border-radius: var(--radius);
  background: rgba(248, 250, 252, .72);
}

.contact-list i {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: rgba(24, 168, 117, .10);
  color: var(--brand-dark);
}

.contact-list span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.contact-list strong {
  min-width: 0;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.4;
  overflow-wrap: anywhere;
  text-align: right;
}

.module-hero {
  position: relative;
  min-height: 248px;
  display: grid;
  align-content: center;
  gap: 16px;
  margin-top: 18px;
  padding: clamp(26px, 5vw, 54px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-solid);
  box-shadow: none;
}

.module-hero::before {
  content: none;
}

.module-hero > * {
  position: relative;
  z-index: 1;
}

.module-hero h1 {
  max-width: 760px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(34px, 4.6vw, 56px);
  line-height: 1.08;
  font-weight: 900;
}

.module-hero p {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.module-actions,
.auth-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.module-layout,
.dashboard-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 18px;
  align-items: start;
  margin-top: 18px;
}

.module-layout.compact {
  grid-template-columns: minmax(0, 1fr) 320px;
}

.module-card,
.mini-panel,
.dashboard-card,
.user-summary {
  border: 1px solid rgba(217, 226, 234, .86);
  border-radius: var(--radius);
  background: var(--paper);
  backdrop-filter: blur(18px) saturate(145%);
  box-shadow: var(--shadow-md);
}

.module-card,
.mini-panel,
.dashboard-card {
  padding: 20px;
}

.module-card .work-content {
  padding: 0;
}

.module-copy {
  display: grid;
  gap: 12px;
  color: var(--muted);
  line-height: 1.75;
}

.module-copy strong {
  color: var(--ink);
}

.module-points,
.nav-tiles,
.success-list {
  display: grid;
  gap: 10px;
}

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

body.minimal-shop img.logo {
  width: 16px;
  height: 16px;
  margin: 0 6px 0 0;
  vertical-align: -2px;
}

.module-point,
.info-row,
.success-list li,
.nav-tiles a {
  min-width: 0;
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid rgba(223, 231, 238, .92);
  border-radius: var(--radius);
  background: rgba(248, 250, 252, .72);
  color: var(--muted);
}

.module-point i,
.info-row i,
.success-list i,
.nav-tiles i {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: rgba(24, 168, 117, .10);
  color: var(--brand-dark);
}

.module-point strong,
.info-row strong,
.success-list strong,
.nav-tiles strong {
  display: block;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.35;
}

.module-point span,
.info-row span,
.success-list span,
.nav-tiles span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
}

.nav-tiles a:hover,
.nav-tiles a:focus {
  border-color: rgba(24, 168, 117, .22);
  background: rgba(236, 253, 245, .76);
}

.auth-form {
  display: grid;
  gap: 14px;
}

.auth-form label {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
}

.auth-form .btn {
  min-height: 48px;
  border-radius: var(--radius);
  font-weight: 850;
}

.form-grid.two,
.plan-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.domain-row {
  display: grid;
  grid-template-columns: minmax(0, .95fr) auto minmax(0, 1.05fr);
  gap: 10px;
}

.domain-row .btn {
  min-width: 74px;
}

.auth-social {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--muted);
  font-weight: 800;
}

.auth-social a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .72);
  color: var(--ink);
}

.captcha-box,
#captcha {
  min-height: 42px;
}

.loading {
  display: inline-flex;
  gap: 5px;
  align-items: center;
}

.loading-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand);
  opacity: .55;
}

.plan-card {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(248, 250, 252, .78);
}

.plan-card h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 900;
}

.plan-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.plan-card strong {
  display: inline-flex;
  margin-top: 12px;
  color: var(--brand-dark);
  font-size: 24px;
}

.module-modal .modal-content {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.module-modal .modal-header,
.module-modal .modal-footer {
  border-color: var(--line);
}

.module-modal .table > tbody > tr > td,
.module-modal .table > thead > tr > th {
  vertical-align: middle;
}

.auth-page .minimal-shell,
.subsite-page .minimal-shell {
  width: min(1180px, calc(100% - 32px));
}

.auth-hero,
.subsite-hero {
  position: relative;
  margin-top: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-solid);
  box-shadow: none;
}

.auth-hero::before,
.subsite-hero::before {
  content: none;
}

.auth-hero {
  display: grid;
  gap: 12px;
  padding: 28px 32px;
}

.auth-hero > *,
.subsite-hero > * {
  position: relative;
  z-index: 1;
}

.auth-hero h1,
.subsite-hero h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.12;
  font-weight: 900;
}

.auth-hero p,
.subsite-hero p {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.auth-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.auth-hero-tags span {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(201, 210, 220, .72);
  border-radius: 999px;
  background: rgba(255, 255, 255, .64);
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.auth-layout,
.subsite-layout {
  display: grid;
  gap: 18px;
  align-items: start;
  margin-top: 18px;
}

.auth-layout {
  grid-template-columns: minmax(0, 1fr) 340px;
}

.auth-card,
.auth-side-card,
.subsite-form-card,
.subsite-hero-panel {
  border: 1px solid rgba(217, 226, 234, .86);
  border-radius: var(--radius);
  background: var(--paper);
  backdrop-filter: blur(18px) saturate(145%);
  box-shadow: var(--shadow-md);
}

.auth-card,
.auth-side-card,
.subsite-form-card {
  padding: 22px;
}

.auth-card-head,
.form-title-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.auth-card-head h2,
.form-title-row h2 {
  margin: 4px 0 0;
  color: var(--ink);
  font-size: 24px;
  font-weight: 900;
}

.form-title-row em {
  color: var(--muted);
  font-style: normal;
  font-weight: 700;
  text-align: right;
}

.auth-linkbar,
.side-link-row,
.success-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 2px;
}

.auth-linkbar a,
.side-link-row a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 12px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .64);
  color: var(--ink);
  font-weight: 850;
}

.auth-linkbar a:hover,
.side-link-row a:hover {
  border-color: rgba(24, 168, 117, .24);
  background: rgba(236, 253, 245, .72);
}

.auth-note-list {
  display: grid;
  gap: 10px;
}

.auth-note-list > div,
.auth-note-list > a {
  min-width: 0;
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid rgba(223, 231, 238, .92);
  border-radius: var(--radius);
  background: rgba(248, 250, 252, .72);
  color: var(--muted);
}

.auth-note-list i {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: rgba(24, 168, 117, .10);
  color: var(--brand-dark);
}

.auth-note-list strong {
  display: block;
  color: var(--ink);
  font-size: 15px;
}

.auth-note-list span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
}

.subsite-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 22px;
  align-items: center;
  padding: 30px 32px;
}

.subsite-hero-copy {
  display: grid;
  gap: 14px;
}

.subsite-hero-panel {
  padding: 16px;
  background: rgba(255, 255, 255, .74);
}

.version-price-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.version-price-row div {
  min-width: 0;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(248, 250, 252, .78);
}

.version-price-row em {
  display: block;
  color: var(--muted);
  font-style: normal;
  font-weight: 850;
}

.version-price-row strong {
  display: inline-flex;
  margin-top: 6px;
  color: var(--ink);
  font-size: 24px;
  line-height: 1;
}

.version-price-row span {
  margin-left: 4px;
  color: var(--muted);
  font-weight: 800;
}

.subsite-hero-panel p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.subsite-layout {
  grid-template-columns: minmax(0, 1fr) 340px;
}

.subsite-form {
  gap: 16px;
}

.form-step {
  display: grid;
  gap: 14px;
  padding: 16px;
  border: 1px solid rgba(223, 231, 238, .92);
  border-radius: var(--radius);
  background: rgba(248, 250, 252, .58);
}

.step-label {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: center;
}

.step-label i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: #15171d;
  color: #fff;
  font-style: normal;
  font-weight: 900;
}

.step-label strong {
  display: block;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.3;
}

.step-label span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.subsite-form .form-grid.two {
  gap: 12px;
}

.subsite-form .form-group {
  margin-bottom: 0;
}

.subsite-form small {
  display: block;
  margin-top: 8px;
  line-height: 1.55;
}

.submit-dock {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: stretch;
}

.submit-dock .ghost-btn,
.success-actions .ghost-btn,
.success-actions .primary-btn {
  min-height: 48px;
  padding: 0 16px;
}

.success-actions .primary-btn,
.success-actions .primary-btn:hover,
.success-actions .primary-btn:focus {
  border: 0;
  background: linear-gradient(135deg, #0f9f6e, #18a875);
  color: #fff !important;
  box-shadow: 0 14px 28px rgba(24, 168, 117, .18);
}

.success-actions .ghost-btn,
.success-actions .ghost-btn:hover,
.success-actions .ghost-btn:focus {
  border: 1px solid rgba(24, 168, 117, .24);
  background: rgba(236, 253, 245, .72);
  color: var(--brand-dark) !important;
}

.subsite-aside {
  display: grid;
  gap: 18px;
}

.version-lines {
  display: grid;
  gap: 10px;
}

.version-lines div {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(248, 250, 252, .72);
}

.version-lines strong {
  display: block;
  color: var(--ink);
  font-size: 15px;
}

.version-lines span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  line-height: 1.55;
}

.qr-box {
  display: grid;
  gap: 12px;
  text-align: center;
}

.qr-box .list-group-item {
  border-color: var(--line);
}

.user-dashboard {
  display: grid;
  gap: 18px;
  margin-top: 18px;
}

.user-summary {
  min-width: 0;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 20px;
}

.user-avatar {
  width: 76px;
  height: 76px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.user-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.user-meta {
  min-width: 0;
}

.user-meta span {
  display: inline-flex;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.user-meta h1 {
  margin: 0 0 8px;
  overflow: hidden;
  color: var(--ink);
  font-size: 26px;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 900;
}

.user-meta p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.balance-box {
  min-width: 190px;
  padding: 14px;
  border: 1px solid rgba(24, 168, 117, .20);
  border-radius: var(--radius);
  background: rgba(236, 253, 245, .64);
}

.balance-box span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.balance-box strong {
  display: block;
  margin-top: 6px;
  color: var(--brand-dark);
  font-size: 28px;
  line-height: 1.2;
}

.balance-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 12px;
}

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

.user-action {
  position: relative;
  min-height: 94px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  padding: 14px 10px;
  border: 1px solid rgba(217, 226, 234, .86);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow-sm);
  color: var(--muted);
  text-align: center;
  font-weight: 850;
}

.user-action:hover,
.user-action:focus {
  border-color: rgba(24, 168, 117, .22);
  background: rgba(236, 253, 245, .76);
  color: var(--ink);
}

.user-action i {
  color: var(--brand-dark);
  font-size: 22px;
}

.user-action span {
  overflow-wrap: anywhere;
}

body.minimal-shop .span_position,
body.minimal-shop #message_count.span_position,
body.minimal-shop #work_count.span_position {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--rose);
}

.dashboard-card h2 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
}

.dashboard-card .soft-alert {
  margin: 0;
}

.info-row {
  grid-template-columns: 1fr auto;
}

.info-row > div {
  min-width: 0;
}

.info-row > a,
.info-row > button {
  white-space: nowrap;
}

.site-link {
  color: var(--brand-dark);
  font-weight: 850;
  overflow-wrap: anywhere;
}

body.minimal-shop .security-alert {
  margin-bottom: 0;
  border-color: rgba(220, 79, 104, .22);
  background: rgba(255, 241, 242, .74);
  color: #9f1239;
}

.notice-content {
  color: var(--muted);
  line-height: 1.75;
}

.article-list {
  display: grid;
  gap: 8px;
}

.article-list a {
  min-width: 0;
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  align-items: center;
  padding: 9px;
  border-radius: var(--radius);
  color: var(--muted);
  font-weight: 700;
}

.article-list a:hover {
  background: rgba(24, 168, 117, .08);
  color: var(--ink);
}

.article-list span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: rgba(48, 111, 232, .10);
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
}

.more-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--brand-dark);
  font-weight: 850;
}

.article-page .minimal-shell {
  width: min(1180px, calc(100% - 32px));
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 18px;
  align-items: start;
  margin-top: 18px;
}

.article-main-card {
  overflow: hidden;
  padding: 0;
}

.article-toolbar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  padding: 20px;
  border-bottom: 1px solid var(--line);
  background: rgba(248, 250, 252, .72);
}

.article-toolbar span {
  color: var(--brand-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
}

.article-toolbar h2 {
  margin: 4px 0 0;
  color: var(--ink);
  font-size: 24px;
  font-weight: 900;
}

.article-search {
  width: min(420px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.article-search .btn {
  min-height: 46px;
  padding: 0 16px;
}

.article-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  margin: 20px 20px 0;
}

.article-filter a {
  color: var(--brand-dark);
  font-weight: 850;
}

.article-card-list {
  display: grid;
  gap: 12px;
  padding: 20px;
}

.article-item {
  min-width: 0;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 28px;
  gap: 14px;
  align-items: center;
  padding: 16px;
  border: 1px solid rgba(223, 231, 238, .92);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .62);
  transition: border-color .18s ease, background .18s ease, transform .18s ease;
}

.article-item:hover,
.article-item:focus {
  border-color: rgba(24, 168, 117, .24);
  background: rgba(236, 253, 245, .62);
  transform: translateY(-1px);
}

.article-index {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: rgba(48, 111, 232, .10);
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
}

.article-item h3 {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.4;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.article-item p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.7;
  overflow-wrap: anywhere;
}

.article-meta,
.article-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.article-meta {
  margin-top: 10px;
}

.article-meta span,
.article-hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.article-arrow {
  color: var(--muted);
  font-size: 22px;
}

.article-empty {
  min-height: 220px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius);
  background: rgba(248, 250, 252, .64);
  color: var(--muted);
  text-align: center;
}

.article-empty i {
  color: var(--brand-dark);
  font-size: 34px;
}

.article-empty strong {
  color: var(--ink);
  font-size: 18px;
}

.article-pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 20px 20px;
}

.article-pagination span {
  color: var(--muted);
  font-weight: 850;
}

.article-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  background: rgba(248, 250, 252, .72);
  color: var(--muted);
  font-weight: 800;
}

.article-breadcrumb a {
  color: var(--brand-dark);
}

.article-breadcrumb span {
  min-width: 0;
  color: var(--ink);
  overflow-wrap: anywhere;
}

.article-content {
  padding: 24px 20px;
  color: #242a33;
  font-size: 16px;
  line-height: 1.9;
  overflow-wrap: anywhere;
}

.article-content > :first-child {
  margin-top: 0;
}

.article-content > :last-child {
  margin-bottom: 0;
}

.article-content p {
  margin: 0 0 16px;
}

.article-content h1,
.article-content h2,
.article-content h3,
.article-content h4 {
  margin: 26px 0 12px;
  color: var(--ink);
  line-height: 1.35;
  font-weight: 900;
}

.article-content img {
  max-width: 100% !important;
  height: auto !important;
  border-radius: var(--radius);
}

.article-content table {
  width: 100% !important;
  max-width: 100%;
  display: block;
  overflow-x: auto;
  border-collapse: collapse;
}

.article-content table td,
.article-content table th {
  padding: 10px;
  border: 1px solid var(--line);
}

.article-neighbor {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 20px;
  border-top: 1px solid var(--line);
  background: rgba(248, 250, 252, .55);
}

.article-neighbor div {
  min-width: 0;
  padding: 14px;
  border: 1px solid rgba(223, 231, 238, .92);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .64);
}

.article-neighbor span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.article-neighbor a,
.article-neighbor strong {
  display: block;
  color: var(--ink);
  font-weight: 850;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
  margin-top: 28px;
  color: var(--muted);
  text-align: center;
  line-height: 1.7;
}

.site-footer a {
  color: var(--ink);
  font-weight: 850;
}

.minimal-modal .modal-content {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.minimal-modal .modal-header,
.minimal-modal .modal-footer {
  border-color: var(--line);
}

.minimal-pay-layer {
  overflow: hidden;
  border: 1px solid rgba(217, 226, 234, .92);
  border-radius: var(--radius) !important;
  background: rgba(255, 255, 255, .96);
  box-shadow: var(--shadow-lg) !important;
}

.minimal-pay-layer .layui-layer-content {
  padding: 0 !important;
  overflow: visible !important;
}

.minimal-pay-modal {
  display: grid;
  gap: 14px;
  padding: 28px;
  color: var(--ink);
  font-family: "PingFang SC", "Microsoft YaHei UI", "Microsoft YaHei", sans-serif;
  text-align: left;
}

.minimal-pay-status {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: rgba(24, 168, 117, .12);
  color: var(--brand-dark);
  font-size: 20px;
}

.minimal-pay-eyebrow {
  color: var(--brand-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
}

.minimal-pay-modal h2 {
  margin: -4px 0 0;
  color: var(--ink);
  font-size: 26px;
  line-height: 1.25;
  font-weight: 900;
}

.minimal-pay-modal p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.minimal-pay-amount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  padding: 18px;
  border: 1px solid rgba(24, 168, 117, .20);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(236, 253, 245, .88), rgba(239, 246, 255, .72)),
    #fff;
}

.minimal-pay-amount span {
  color: var(--brand-dark);
  font-size: 22px;
  font-weight: 900;
}

.minimal-pay-amount strong {
  color: var(--ink);
  font-size: 42px;
  line-height: 1;
  font-weight: 900;
}

.minimal-pay-method-title {
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
}

.minimal-pay-options {
  display: grid;
  gap: 10px;
}

.minimal-pay-layer .minimal-pay-option {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0 !important;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .78);
  color: var(--ink);
  font-size: 15px;
  font-weight: 850;
  box-shadow: none;
  transition: border-color .18s ease, background .18s ease, transform .18s ease;
}

.minimal-pay-layer .minimal-pay-option:hover,
.minimal-pay-layer .minimal-pay-option:focus {
  border-color: rgba(24, 168, 117, .28);
  background: rgba(236, 253, 245, .72);
  color: var(--ink);
  transform: translateY(-1px);
}

.minimal-pay-layer .minimal-pay-option.is-alipay {
  border-color: rgba(48, 111, 232, .28);
  background: rgba(239, 246, 255, .82);
}

.minimal-pay-layer .minimal-pay-option.is-usdt,
.minimal-pay-layer .minimal-pay-option.is-wxpay,
.minimal-pay-layer .minimal-pay-option.is-balance {
  border-color: rgba(24, 168, 117, .28);
  background: rgba(236, 253, 245, .82);
}

.minimal-pay-layer .minimal-pay-option.is-usdt {
  border-color: rgba(0, 135, 90, .34);
  background: linear-gradient(135deg, rgba(224, 252, 239, .94), rgba(240, 253, 250, .84));
  color: #053f2f;
}

.minimal-pay-layer .minimal-usdt-icon {
  width: 24px;
  height: 24px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: #18a875;
  color: #fff;
  font-size: 13px;
}

.minimal-pay-layer .minimal-pay-option.is-qqpay {
  border-color: rgba(48, 111, 232, .22);
}

.minimal-pay-layer .minimal-pay-option img.logo {
  width: 22px;
  height: 22px;
  margin: 0;
  object-fit: contain;
}

.minimal-pay-note {
  padding: 12px;
  border: 1px solid rgba(217, 144, 33, .24);
  border-radius: var(--radius);
  background: rgba(255, 247, 237, .78);
  color: #8a4b0b;
  font-size: 13px;
  line-height: 1.65;
}

.minimal-pay-note font,
.minimal-pay-note span {
  color: #b42318 !important;
  font-weight: 850;
}

.minimal-pay-actions {
  display: grid;
}

.minimal-pay-layer .minimal-pay-cancel {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: rgba(248, 250, 252, .86);
  color: var(--muted);
  font-weight: 850;
}

.minimal-pay-layer .minimal-pay-cancel:hover,
.minimal-pay-layer .minimal-pay-cancel:focus {
  background: rgba(255, 241, 242, .72);
  color: #9f1239;
}

.minimal-order-layer {
  overflow: hidden;
  border: 1px solid rgba(217, 226, 234, .92);
  border-radius: var(--radius) !important;
  background: rgba(255, 255, 255, .98);
  box-shadow: var(--shadow-lg);
}

.minimal-order-layer .layui-layer-content {
  padding: 0 !important;
  max-height: calc(100vh - 28px);
  overflow: auto !important;
}

.minimal-order-layer .layui-layer-setwin {
  top: 12px;
  right: 12px;
  z-index: 5;
  width: 36px;
  height: 36px;
  overflow: visible;
}

.minimal-order-layer .layui-layer-setwin a {
  position: static !important;
  width: 34px !important;
  height: 34px !important;
  margin: 0 !important;
  padding: 0 !important;
  display: grid !important;
  place-items: center;
  box-sizing: border-box;
  border: 1px solid rgba(24, 168, 117, .24);
  border-radius: 50%;
  background: rgba(236, 253, 245, .96) !important;
  background-image: none !important;
  color: var(--brand-dark);
  box-shadow: 0 10px 22px rgba(22, 27, 33, .08);
  opacity: 1;
}

.minimal-order-layer .layui-layer-setwin a::before {
  content: "\00d7";
  margin-top: -2px;
  color: var(--brand-dark);
  font-size: 26px;
  line-height: 1;
  font-weight: 700;
}

.minimal-order-layer .layui-layer-setwin a:hover {
  border-color: rgba(220, 79, 104, .24);
  background: rgba(255, 241, 242, .98) !important;
  color: #9f1239;
}

.minimal-order-layer .layui-layer-setwin a:hover::before {
  color: #9f1239;
}

.minimal-order-modal,
.minimal-order-list-modal {
  position: relative;
  width: 100%;
  min-width: 0;
  display: grid;
  gap: 14px;
  padding: 24px;
  color: var(--ink);
}

.minimal-order-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 6;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(24, 168, 117, .24);
  border-radius: 50%;
  background: rgba(236, 253, 245, .96);
  color: var(--brand-dark);
  font: inherit;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(22, 27, 33, .08);
  transition: border-color .18s ease, background .18s ease, color .18s ease;
}

.minimal-order-close span {
  display: block;
  margin-top: -2px;
  font-size: 26px;
  line-height: 1;
  font-weight: 700;
}

.minimal-order-close:hover,
.minimal-order-close:focus {
  border-color: rgba(220, 79, 104, .24);
  background: rgba(255, 241, 242, .98);
  color: #9f1239;
}

.minimal-order-head,
.minimal-order-list-head {
  padding-right: 48px;
}

.minimal-order-head {
  min-width: 0;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.minimal-order-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: rgba(24, 168, 117, .12);
  color: var(--brand-dark);
  font-size: 20px;
}

.minimal-order-title {
  min-width: 0;
}

.minimal-order-title span,
.minimal-order-list-head span {
  color: var(--brand-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
}

.minimal-order-title h2 {
  margin: 4px 0 2px;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.2;
  font-weight: 900;
}

.minimal-order-title p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.minimal-order-status {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0 10px;
  border: 1px solid rgba(48, 111, 232, .22);
  border-radius: 999px;
  background: rgba(239, 246, 255, .86);
  color: #2354b7;
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.minimal-order-status > i {
  width: 14px;
  height: 14px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .74);
  color: inherit;
  font-size: 8px;
  line-height: 1;
  box-shadow: inset 0 0 0 1px currentColor;
}

.minimal-order-status.is-success {
  border-color: rgba(24, 168, 117, .24);
  background: rgba(236, 253, 245, .90);
  color: var(--brand-dark);
}

.minimal-order-status.is-working {
  border-color: rgba(217, 144, 33, .28);
  background: rgba(255, 247, 237, .92);
  color: #8a4b0b;
}

.minimal-order-status.is-danger {
  border-color: rgba(220, 79, 104, .25);
  background: rgba(255, 241, 242, .88);
  color: #9f1239;
}

.minimal-order-status.is-refund {
  border-color: rgba(104, 115, 130, .22);
  background: rgba(248, 250, 252, .92);
  color: var(--muted);
}

.minimal-order-progress {
  display: grid;
  gap: 14px;
  padding: 16px;
  border: 1px solid rgba(48, 111, 232, .18);
  border-radius: var(--radius);
  background: rgba(239, 246, 255, .58);
  color: #1e429f;
}

.minimal-order-progress-main {
  min-width: 0;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}

.minimal-order-progress-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .82);
  color: currentColor;
  font-size: 16px;
  box-shadow: inset 0 0 0 1px rgba(48, 111, 232, .14);
}

.minimal-order-progress-copy {
  min-width: 0;
}

.minimal-order-progress-copy h3 {
  margin: 0;
  color: currentColor;
  font-size: 16px;
  line-height: 1.35;
  font-weight: 900;
}

.minimal-order-progress-copy p {
  margin: 4px 0 0;
  color: currentColor;
  font-size: 13px;
  line-height: 1.65;
  font-weight: 720;
  opacity: .82;
}

.minimal-order-progress.is-success {
  border-color: rgba(24, 168, 117, .22);
  background: rgba(236, 253, 245, .70);
  color: var(--brand-dark);
}

.minimal-order-progress.is-success .minimal-order-progress-icon {
  box-shadow: inset 0 0 0 1px rgba(24, 168, 117, .16);
}

.minimal-order-progress.is-working {
  border-color: rgba(217, 144, 33, .24);
  background: rgba(255, 247, 237, .76);
  color: #8a4b0b;
}

.minimal-order-progress.is-working .minimal-order-progress-icon {
  box-shadow: inset 0 0 0 1px rgba(217, 144, 33, .18);
}

.minimal-order-progress.is-danger {
  border-color: rgba(220, 79, 104, .22);
  background: rgba(255, 241, 242, .74);
  color: #9f1239;
}

.minimal-order-progress.is-danger .minimal-order-progress-icon {
  box-shadow: inset 0 0 0 1px rgba(220, 79, 104, .16);
}

.minimal-order-progress.is-refund {
  border-color: rgba(104, 115, 130, .20);
  background: rgba(248, 250, 252, .84);
  color: #526071;
}

.minimal-order-progress.is-refund .minimal-order-progress-icon {
  box-shadow: inset 0 0 0 1px rgba(104, 115, 130, .14);
}

.minimal-order-progress-content {
  padding-top: 12px;
  border-top: 1px solid rgba(104, 115, 130, .16);
}

.minimal-order-content {
  min-width: 0;
  display: grid;
  gap: 8px;
}

.minimal-order-content-line {
  margin: 0;
  color: inherit;
  line-height: 1.68;
  font-weight: 750;
  overflow-wrap: anywhere;
}

.minimal-order-detail-row {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(72px, auto) minmax(0, 1fr);
  gap: 12px;
  align-items: baseline;
  padding: 7px 0;
  border-bottom: 1px solid rgba(104, 115, 130, .12);
}

.minimal-order-detail-row:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.minimal-order-detail-row span {
  color: currentColor;
  font-size: 12px;
  font-weight: 850;
  opacity: .72;
}

.minimal-order-detail-row strong {
  min-width: 0;
  color: currentColor;
  line-height: 1.62;
  font-weight: 850;
  overflow-wrap: anywhere;
}

.minimal-order-content-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 2px;
}

.minimal-order-content-link {
  min-width: min(100%, 230px);
  min-height: 56px;
  flex: 1 1 230px;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) 16px;
  align-items: center;
  gap: 10px;
  padding: 8px 11px;
  border: 1px solid rgba(104, 115, 130, .18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .72);
  color: currentColor !important;
}

.minimal-order-content-link:hover,
.minimal-order-content-link:focus {
  background: rgba(255, 255, 255, .96);
  color: currentColor !important;
}

.minimal-order-link-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(104, 115, 130, .10);
  color: currentColor;
  font-size: 13px;
}

.minimal-order-link-copy {
  min-width: 0;
}

.minimal-order-link-copy strong,
.minimal-order-link-copy small {
  display: block;
  overflow-wrap: anywhere;
}

.minimal-order-link-copy strong {
  color: currentColor;
  font-size: 13px;
  line-height: 1.35;
  font-weight: 900;
}

.minimal-order-link-copy small {
  margin-top: 2px;
  color: currentColor;
  font-size: 11px;
  line-height: 1.45;
  font-weight: 720;
  opacity: .70;
}

.minimal-order-link-arrow {
  justify-self: end;
  color: currentColor;
  opacity: .58;
}

.minimal-order-info-grid,
.minimal-order-live-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.minimal-order-info-item,
.minimal-order-kv {
  min-width: 0;
  display: grid;
  gap: 5px;
  padding: 12px;
  border: 1px solid rgba(223, 231, 238, .92);
  border-radius: var(--radius);
  background: rgba(248, 250, 252, .78);
}

.minimal-order-info-item span,
.minimal-order-kv span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.minimal-order-info-item strong,
.minimal-order-kv strong {
  min-width: 0;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.55;
  font-weight: 850;
  word-break: break-word;
}

.minimal-order-section {
  overflow: hidden;
  border: 1px solid rgba(223, 231, 238, .92);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .86);
}

.minimal-order-section-title {
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  background: rgba(248, 250, 252, .82);
  color: var(--ink);
  font-weight: 900;
}

.minimal-order-section-body {
  padding: 14px;
  color: var(--muted);
  line-height: 1.75;
  word-break: break-word;
}

.minimal-order-section-body img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius);
}

.minimal-order-section.is-secret {
  border-color: rgba(24, 168, 117, .22);
  background: rgba(236, 253, 245, .68);
}

.minimal-order-section.is-secret .minimal-order-section-title {
  background: rgba(236, 253, 245, .90);
  color: var(--brand-dark);
}

.minimal-order-secret-head {
  min-width: 0;
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 11px 14px;
  border-bottom: 1px solid rgba(24, 168, 117, .16);
  background: rgba(236, 253, 245, .90);
}

.minimal-order-secret-head > div:first-child {
  min-width: 0;
  display: grid;
  gap: 3px;
}

.minimal-order-secret-head > div:first-child span {
  color: var(--brand-dark);
  font-size: 14px;
  font-weight: 900;
}

.minimal-order-secret-head > div:first-child small {
  color: #407866;
  font-size: 11px;
  line-height: 1.45;
  font-weight: 750;
}

.minimal-order-secret-actions {
  flex: 0 0 auto;
  display: flex;
  gap: 7px;
}

.minimal-order-secret-actions button {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0 10px;
  border: 1px solid rgba(24, 168, 117, .23);
  border-radius: 9px;
  background: rgba(255, 255, 255, .86);
  color: var(--brand-dark);
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
  transition: background .18s ease, border-color .18s ease, transform .18s ease;
}

.minimal-order-secret-actions button:hover,
.minimal-order-secret-actions button:focus {
  border-color: rgba(24, 168, 117, .38);
  background: #ffffff;
}

.minimal-order-secret-actions button:active {
  transform: translateY(1px);
}

.minimal-order-secret-list {
  min-width: 0;
  max-height: min(42vh, 390px);
  overflow: auto;
  padding: 6px 14px 12px;
  scrollbar-width: thin;
}

.minimal-order-secret-item {
  min-width: 0;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  padding: 10px 0;
  border-bottom: 1px solid rgba(24, 168, 117, .12);
}

.minimal-order-secret-item:last-child {
  border-bottom: 0;
}

.minimal-order-secret-index {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(24, 168, 117, .11);
  color: var(--brand-dark);
  font-size: 11px;
  font-weight: 900;
}

.minimal-order-secret-values {
  min-width: 0;
  display: grid;
  gap: 6px;
}

.minimal-order-secret-values > div {
  min-width: 0;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 8px;
  align-items: baseline;
}

.minimal-order-secret-values span {
  color: #407866;
  font-size: 11px;
  font-weight: 850;
}

.minimal-order-secret-values code {
  min-width: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-family: inherit;
  font-size: 13px;
  line-height: 1.55;
  font-weight: 850;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

.minimal-order-section.is-result {
  border-color: rgba(48, 111, 232, .18);
}

.minimal-order-live-result {
  margin-top: 10px;
  padding: 10px 12px;
  border-radius: var(--radius);
  background: rgba(255, 247, 237, .86);
  color: #8a4b0b;
  font-weight: 800;
}

.minimal-order-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.minimal-order-action,
.minimal-order-detail-btn,
.minimal-order-page-btn,
.minimal-order-fill {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 1px solid rgba(24, 168, 117, .24);
  border-radius: var(--radius);
  background: rgba(236, 253, 245, .82);
  color: var(--brand-dark) !important;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
  box-shadow: none;
  cursor: pointer;
}

.minimal-order-action:hover,
.minimal-order-detail-btn:hover,
.minimal-order-page-btn:hover,
.minimal-order-fill:hover {
  background: rgba(24, 168, 117, .14);
  color: var(--brand-dark) !important;
}

.minimal-order-action.is-danger {
  border-color: rgba(220, 79, 104, .22);
  background: rgba(255, 241, 242, .80);
  color: #9f1239 !important;
}

.minimal-order-fill {
  min-height: 30px;
  margin: 6px 0 0;
  padding: 0 9px;
}

.minimal-order-list-head {
  display: grid;
  gap: 4px;
  padding: 14px 48px 14px 14px;
  border: 1px solid rgba(223, 231, 238, .92);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(248, 250, 252, .92), rgba(236, 253, 245, .56));
}

.minimal-order-list-head strong {
  color: var(--ink);
  font-size: 22px;
  font-weight: 900;
}

.minimal-order-list-head em {
  color: var(--muted);
  font-style: normal;
  font-weight: 750;
}

.minimal-order-list-table {
  margin: 0;
}

.minimal-order-list-table > thead > tr > th {
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.minimal-order-list-table > tbody > tr > td {
  border-top: 1px solid rgba(223, 231, 238, .72);
  vertical-align: middle;
  color: var(--ink);
  font-weight: 750;
}

.minimal-order-error-row td {
  padding: 0 8px 12px !important;
  border-top: 0 !important;
  background: transparent;
}

.minimal-order-issue {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 12px;
  border: 1px solid rgba(220, 79, 104, .22);
  border-radius: var(--radius);
  background: rgba(255, 241, 242, .76);
  color: #9f1239;
}

.minimal-order-issue > span {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 9px;
  border-radius: 999px;
  background: rgba(220, 79, 104, .12);
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.minimal-order-issue strong,
.minimal-order-issue p {
  display: block;
  margin: 0;
}

.minimal-order-issue strong {
  margin-bottom: 3px;
  font-size: 13px;
  font-weight: 900;
}

.minimal-order-issue p {
  color: #881337;
  line-height: 1.6;
  font-weight: 750;
}

.minimal-order-issue .minimal-order-content {
  color: #881337;
}

.minimal-order-issue .minimal-order-detail-row {
  border-bottom-color: rgba(159, 18, 57, .12);
}

.minimal-order-pager {
  min-height: 34px;
  overflow: hidden;
}

.minimal-order-empty {
  color: var(--muted);
  font-weight: 750;
}

.minimal-user-center {
  min-height: 100vh;
}

.user-center-shell {
  position: relative;
  z-index: 1;
  width: min(1440px, calc(100% - 28px));
  margin: 0 auto;
  padding: 10px 0 30px;
}

.user-center-topbar {
  position: sticky;
  top: 10px;
  z-index: 50;
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 16px;
  border: 1px solid rgba(217, 226, 234, .86);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .90);
  backdrop-filter: blur(24px) saturate(150%);
  box-shadow: var(--shadow-sm);
}

.user-menu-toggle {
  width: 42px;
  height: 42px;
  display: none;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(248, 250, 252, .82);
  color: var(--ink);
}

.user-top-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.user-top-actions a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(248, 250, 252, .72);
  color: var(--muted);
  font-weight: 850;
}

.user-top-actions a:hover,
.user-top-actions a:focus {
  border-color: rgba(24, 168, 117, .24);
  background: rgba(236, 253, 245, .72);
  color: var(--ink);
}

.user-center-layout {
  display: grid;
  grid-template-columns: 286px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  margin-top: 18px;
}

.user-sidebar {
  position: sticky;
  top: 96px;
  max-height: calc(100vh - 112px);
  overflow: auto;
  display: grid;
  gap: 14px;
  padding: 16px;
  border: 1px solid rgba(217, 226, 234, .86);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .86);
  backdrop-filter: blur(18px) saturate(145%);
  box-shadow: var(--shadow-md);
}

.user-profile-card {
  min-width: 0;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 12px;
  align-items: center;
}

.user-profile-card img {
  width: 54px;
  height: 54px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  object-fit: cover;
}

.user-profile-card strong,
.user-profile-card span {
  display: block;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.user-profile-card strong {
  color: var(--ink);
  font-size: 16px;
  font-weight: 900;
}

.user-profile-card span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.user-balance-mini {
  padding: 14px;
  border: 1px solid rgba(24, 168, 117, .20);
  border-radius: var(--radius);
  background: rgba(236, 253, 245, .68);
}

.user-balance-mini span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.user-balance-mini strong {
  display: block;
  margin-top: 6px;
  color: var(--brand-dark);
  font-size: 24px;
  line-height: 1.15;
  font-weight: 900;
}

.user-side-nav,
.user-nav-section {
  display: grid;
}

.user-side-nav {
  gap: 14px;
}

.user-nav-section {
  gap: 6px;
}

.user-nav-section em {
  padding: 0 8px;
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
}

.user-nav-section a {
  min-height: 42px;
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 8px;
  align-items: center;
  padding: 6px 10px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  color: var(--muted);
  font-weight: 850;
}

.user-nav-section a i {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: rgba(248, 250, 252, .86);
  color: var(--brand-dark);
}

.user-nav-section a:hover,
.user-nav-section a:focus,
.user-nav-section a.active {
  border-color: rgba(24, 168, 117, .22);
  background: rgba(236, 253, 245, .68);
  color: var(--ink);
}

.user-main {
  min-width: 0;
  display: grid;
  gap: 18px;
}

.user-content-body {
  min-width: 0;
}

.user-content-body::after,
.minimal-user-center .wrapper::after {
  content: "";
  display: block;
  clear: both;
}

.user-page-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  padding: 22px;
  border: 1px solid rgba(213, 225, 232, .86);
  border-radius: var(--radius);
  background:
    linear-gradient(115deg, rgba(255, 255, 255, .96), rgba(244, 250, 247, .92) 52%, rgba(235, 243, 255, .78)),
    var(--paper-solid);
  box-shadow: var(--shadow-md);
}

.user-page-head span {
  color: var(--brand-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
}

.user-page-head h1 {
  margin: 6px 0 0;
  color: var(--ink);
  font-size: 30px;
  line-height: 1.16;
  font-weight: 900;
}

.user-page-head p {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
  text-align: right;
}

.minimal-user-center .wrapper {
  padding: 0;
}

.minimal-user-center .row {
  margin-left: -8px;
  margin-right: -8px;
}

.minimal-user-center [class*="col-"] {
  padding-left: 8px;
  padding-right: 8px;
}

.minimal-user-center .panel,
.minimal-user-center .list-group,
.minimal-user-center .well,
.minimal-user-center .block {
  overflow: hidden;
  border: 1px solid rgba(217, 226, 234, .86);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .84);
  box-shadow: var(--shadow-sm);
}

.minimal-user-center .panel {
  margin-bottom: 16px;
}

.minimal-user-center .panel-heading {
  border-bottom: 1px solid var(--line) !important;
  background: rgba(248, 250, 252, .82) !important;
  color: var(--ink) !important;
  font-weight: 900;
}

.minimal-user-center .panel-heading font,
.minimal-user-center .panel-heading h3,
.minimal-user-center .panel-heading h4,
.minimal-user-center .panel-heading .panel-title {
  color: var(--ink) !important;
}

.minimal-user-center .panel-body,
.minimal-user-center .list-group-item {
  border-color: var(--line);
}

.minimal-user-center .list-group-item {
  color: var(--ink);
  line-height: 1.65;
}

.minimal-user-center .table-responsive {
  border: 0;
}

.minimal-user-center .table > thead > tr > th {
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-weight: 900;
}

.minimal-user-center .table > tbody > tr > td,
.minimal-user-center .table > tbody > tr > th {
  border-top: 1px solid rgba(223, 231, 238, .76);
  vertical-align: middle;
}

.minimal-user-center .btn {
  border-radius: var(--radius);
  font-weight: 850;
}

.minimal-user-center .btn-xs,
.minimal-user-center .btn-sm {
  min-height: 30px;
}

.minimal-user-center .btn-info,
.minimal-user-center .btn-warning {
  border: 1px solid rgba(24, 168, 117, .24);
  background: rgba(236, 253, 245, .82);
  color: var(--brand-dark) !important;
}

.minimal-user-center .btn-info:hover,
.minimal-user-center .btn-warning:hover {
  background: rgba(236, 253, 245, .95);
  color: var(--brand-dark) !important;
}

.minimal-user-center .btn-danger {
  border: 0;
  background: #dc4f68;
  color: #fff;
}

.minimal-user-center .minimal-form-actions {
  margin: 22px 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.minimal-user-center .minimal-form-submit {
  width: 100%;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 18px;
  line-height: 1.2;
}

.minimal-user-center .minimal-form-submit i {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .18);
  font-size: 11px;
}

.minimal-spinner,
.layui-layer-loading .layui-layer-content::before {
  width: 24px;
  height: 24px;
  box-sizing: border-box;
  border: 3px solid rgba(24, 168, 117, .16);
  border-top-color: currentColor;
  border-radius: 50%;
  animation: minimal-spinner-turn .82s linear infinite;
}

.minimal-spinner {
  display: inline-block;
  color: var(--brand-dark);
}

.minimal-spinner.is-inline {
  width: 22px;
  height: 22px;
}

.layui-layer-loading {
  border-radius: 16px !important;
  background: rgba(255, 255, 255, .96) !important;
  box-shadow: 0 14px 38px rgba(22, 27, 33, .14) !important;
}

.layui-layer-loading .layui-layer-content,
.layui-layer-loading0 .layui-layer-content,
.layui-layer-loading1 .layui-layer-content,
.layui-layer-loading2 .layui-layer-content {
  position: relative;
  width: 54px !important;
  height: 54px !important;
  padding: 0 !important;
  border-radius: 16px !important;
  background: linear-gradient(145deg, #fff, rgba(236, 253, 245, .9)) !important;
}

.layui-layer-loading .layui-layer-content::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  color: var(--brand);
}

.layui-layer-loading .layui-layer-content::after {
  content: "";
  position: absolute;
  inset: 20px;
  border-radius: 50%;
  background: var(--brand-dark);
  box-shadow: 0 0 0 4px rgba(24, 168, 117, .08);
}

@keyframes minimal-spinner-turn {
  to { transform: rotate(360deg); }
}

.minimal-user-center .modal-content {
  overflow: hidden;
  border: 1px solid rgba(217, 226, 234, .92);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.minimal-user-center .modal-header,
.minimal-user-center .modal-footer {
  border-color: var(--line);
  background: rgba(248, 250, 252, .86);
}

.minimal-user-center .modal-title {
  color: var(--ink);
  font-weight: 900;
}

.security-alert {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  align-items: center;
  margin-bottom: 18px;
  border-color: rgba(220, 79, 104, .22);
  background: rgba(255, 241, 242, .74);
  color: #9f1239;
}

.security-alert i {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: rgba(220, 79, 104, .12);
}

.security-alert a {
  color: #9f1239;
  font-weight: 900;
}

.user-dashboard-hero,
.user-home-card,
.user-home-grid .dashboard-card,
.user-metric-card {
  border: 1px solid rgba(217, 226, 234, .86);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .84);
  backdrop-filter: blur(18px) saturate(145%);
  box-shadow: var(--shadow-sm);
}

.user-dashboard-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 16px;
  align-items: center;
  padding: 22px;
}

.user-hero-profile {
  min-width: 0;
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 16px;
  align-items: center;
}

.user-hero-profile img {
  width: 82px;
  height: 82px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  object-fit: cover;
}

.user-hero-profile span {
  color: var(--brand-dark);
  font-size: 13px;
  font-weight: 900;
}

.user-hero-profile h2 {
  margin: 6px 0;
  color: var(--ink);
  font-size: 30px;
  line-height: 1.2;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.user-hero-profile p {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.user-hero-balance {
  padding: 16px;
  border: 1px solid rgba(24, 168, 117, .20);
  border-radius: var(--radius);
  background: rgba(236, 253, 245, .64);
}

.user-hero-balance span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}

.user-hero-balance strong {
  display: block;
  margin-top: 6px;
  color: var(--brand-dark);
  font-size: 34px;
  line-height: 1.15;
  font-weight: 900;
}

.user-hero-balance em {
  margin-left: 4px;
  color: var(--muted);
  font-size: 14px;
  font-style: normal;
  font-weight: 850;
}

.user-hero-balance div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 12px;
}

.user-hero-balance .btn {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  line-height: 1.2;
  white-space: nowrap;
}

.user-metric-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.user-metric-card {
  padding: 16px;
}

.user-metric-card span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}

.user-metric-card strong {
  display: block;
  margin-top: 8px;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.25;
  font-weight: 900;
}

.user-home-card {
  margin-top: 18px;
}

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

.user-action-tile {
  position: relative;
  min-width: 0;
  min-height: 122px;
  display: grid;
  align-content: center;
  gap: 7px;
  padding: 16px;
  border: 1px solid rgba(223, 231, 238, .92);
  border-radius: var(--radius);
  background: rgba(248, 250, 252, .62);
  color: var(--muted);
  transition: border-color .18s ease, background .18s ease, transform .18s ease;
}

.user-action-tile:hover,
.user-action-tile:focus {
  border-color: rgba(24, 168, 117, .24);
  background: rgba(236, 253, 245, .70);
  color: var(--ink);
  transform: translateY(-1px);
}

.user-action-tile i {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: rgba(24, 168, 117, .10);
  color: var(--brand-dark);
  font-size: 18px;
}

.user-action-tile strong {
  color: var(--ink);
  font-size: 16px;
  line-height: 1.25;
  font-weight: 900;
}

.user-action-tile span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
  font-weight: 700;
}

.user-action-tile em,
.minimal-user-center .span_position {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--rose);
}

.user-home-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .72fr);
  gap: 18px;
  margin-top: 18px;
}

.user-info-list {
  display: grid;
  gap: 10px;
}

.user-info-list > div {
  min-width: 0;
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid rgba(223, 231, 238, .92);
  border-radius: var(--radius);
  background: rgba(248, 250, 252, .62);
}

.user-info-list span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}

.user-info-list strong {
  min-width: 0;
  color: var(--ink);
  font-weight: 900;
  overflow-wrap: anywhere;
}

.user-info-list a,
.user-info-list button {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: var(--brand-dark);
  font-weight: 900;
}

.empty-state {
  min-height: 220px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius);
  background: rgba(248, 250, 252, .62);
  color: var(--muted);
  text-align: center;
}

.empty-state i {
  color: var(--brand-dark);
  font-size: 34px;
}

.empty-state strong {
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
}

/* Minimal account, editorial, subsite and user-center refinement */
.auth-hero,
.article-hero,
.subsite-hero {
  border-color: rgba(202, 219, 211, .9);
  background: #f7fbf9;
}

.auth-hero {
  min-height: 188px;
  align-content: center;
  padding: 34px 38px;
}

.auth-hero h1,
.article-hero h1,
.subsite-hero h1 {
  max-width: 18ch;
  letter-spacing: -.025em;
  text-wrap: balance;
}

.auth-hero p,
.article-hero p,
.subsite-hero p {
  max-width: 68ch;
}

.auth-hero-tags span {
  gap: 7px;
  border-color: rgba(24, 168, 117, .18);
  background: #fff;
  color: #385349;
}

.auth-hero-tags span i {
  color: var(--brand-dark);
  font-size: 12px;
}

.auth-card,
.auth-side-card,
.subsite-form-card,
.subsite-hero-panel,
.article-main-card,
.article-side-card,
.user-center-topbar,
.user-sidebar,
.user-page-head,
.user-dashboard-hero,
.user-home-card,
.user-home-grid .dashboard-card,
.user-metric-card {
  backdrop-filter: none;
  box-shadow: none;
}

.auth-card,
.auth-side-card,
.subsite-form-card {
  padding: 26px;
}

.auth-card-head,
.form-title-row {
  align-items: center;
}

.auth-card-head h2,
.form-title-row h2 {
  margin-top: 0;
  letter-spacing: -.015em;
}

.auth-card-head em,
.form-title-row em {
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
  font-weight: 750;
  line-height: 1.55;
  text-align: right;
}

.auth-side-card,
.article-side-card,
.subsite-aside {
  position: sticky;
  top: 96px;
}

.auth-form .form-control,
.subsite-form .form-control {
  width: 100%;
  min-width: 0;
  min-height: 48px;
}

.auth-form .input-group,
.subsite-form .input-group,
.auth-layout > *,
.subsite-layout > *,
.article-layout > *,
.user-center-layout > *,
.user-main,
.user-content-body {
  min-width: 0;
}

.auth-form .input-group,
.subsite-form .input-group {
  width: 100%;
}

.auth-form .input-group-addon {
  min-width: 48px;
  border-color: var(--line-strong);
  background: #f6f9f7;
  color: var(--brand-dark);
}

.auth-form .btn-primary,
.subsite-form .btn-primary {
  min-height: 50px;
}

.auth-card :focus-visible,
.auth-side-card :focus-visible,
.subsite-page :focus-visible,
.article-page :focus-visible,
.minimal-user-center :focus-visible {
  outline: 3px solid rgba(24, 168, 117, .24);
  outline-offset: 2px;
}

.version-panel-title {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}

.version-panel-title > i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: rgba(24, 168, 117, .11);
  color: var(--brand-dark);
  font-size: 17px;
}

.version-panel-title strong,
.version-panel-title span {
  display: block;
}

.version-panel-title strong {
  color: var(--ink);
  font-size: 16px;
}

.version-panel-title span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}

.article-hero {
  min-height: 220px;
  display: grid;
  align-content: end;
  gap: 12px;
  padding: 34px 38px;
}

.article-detail-hero h1 {
  max-width: 24ch;
}

.article-layout {
  grid-template-columns: minmax(0, 1fr) 312px;
  gap: 22px;
}

.article-toolbar {
  align-items: center;
  padding: 24px;
  background: #f8faf9;
}

.article-toolbar h2 {
  margin: 0;
  letter-spacing: -.015em;
}

.article-card-list {
  gap: 0;
  padding: 8px 24px 20px;
}

.article-item {
  grid-template-columns: minmax(0, 1fr) 28px;
  gap: 18px;
  padding: 20px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  transition: color .18s ease, background .18s ease;
}

.article-item:last-child {
  border-bottom: 0;
}

.article-item:hover,
.article-item:focus {
  border-color: var(--line);
  background: #f3faf6;
  transform: none;
}

.article-item h3 {
  font-size: 19px;
  letter-spacing: -.012em;
}

.article-content {
  width: min(100%, 72ch);
  margin: 0 auto;
  padding: 34px 28px 40px;
  font-size: 16px;
  line-height: 1.95;
}

.article-content blockquote {
  margin: 22px 0;
  padding: 16px 18px;
  border: 1px solid rgba(24, 168, 117, .18);
  border-radius: var(--radius);
  background: #f3faf6;
  color: #2f4b40;
}

.article-content pre {
  max-width: 100%;
  overflow: auto;
  padding: 16px;
  border: 0;
  border-radius: var(--radius);
  background: #18201d;
  color: #edf7f1;
}

.user-page-head {
  align-items: center;
  padding: 24px;
  background: #f7fbf9;
}

.user-page-head h1 {
  margin: 0;
  letter-spacing: -.02em;
}

.user-sidebar {
  background: #fff;
}

.user-sidebar::-webkit-scrollbar {
  width: 6px;
}

.user-sidebar::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(101, 118, 109, .28);
}

.user-nav-backdrop {
  display: none;
}

.user-action-tile {
  box-shadow: none;
}

.user-action-tile:hover,
.user-action-tile:focus {
  transform: none;
}

@media (max-width: 1080px) {
  .hero,
  .main-grid,
  .module-layout,
  .article-layout,
  .auth-layout,
  .subsite-hero,
  .subsite-layout,
  .dashboard-grid,
  .user-summary,
  .user-center-layout,
  .user-dashboard-hero,
  .user-home-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    justify-self: start;
  }

  .subsite-hero-panel {
    width: min(520px, 100%);
  }

  .side-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .balance-box {
    width: 100%;
  }

  .user-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .user-sidebar {
    position: fixed;
    inset: 88px auto 14px 14px;
    z-index: 60;
    width: min(320px, calc(100% - 28px));
    max-height: none;
    transform: translateX(calc(-100% - 18px));
    transition: transform .2s ease;
  }

  .user-nav-backdrop {
    position: fixed;
    inset: 0;
    z-index: 55;
    display: block;
    border: 0;
    background: rgba(18, 27, 23, .34);
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease;
  }

  .user-nav-open {
    overflow: hidden;
  }

  .user-nav-open .user-nav-backdrop {
    opacity: 1;
    pointer-events: auto;
  }

  .user-nav-open .user-sidebar {
    transform: translateX(0);
  }

  .user-menu-toggle {
    display: grid;
  }

  .user-page-head p {
    text-align: left;
  }

  .user-action-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  html,
  body.minimal-shop {
    max-width: 100%;
    overflow-x: clip;
  }

  body.minimal-shop::before {
    background-size: auto 1050px;
    background-position: center top;
    opacity: .58;
  }

  .minimal-shell {
    width: min(720px, calc(100% - 18px));
    padding-top: 8px;
  }

  .user-center-shell {
    width: min(720px, calc(100% - 18px));
    padding-top: 8px;
  }

  .topbar {
    top: 8px;
    align-items: flex-start;
    flex-wrap: wrap;
    padding: 10px;
  }

  .user-center-topbar {
    top: 8px;
    flex-wrap: wrap;
    padding: 10px;
  }

  .brand {
    width: 100%;
    font-size: 18px;
  }

  .topbar .brand.is-logo-only {
    width: auto;
  }

  .topbar .brand.is-logo-only + .main-nav {
    width: auto;
    flex: 1 1 auto;
    justify-content: flex-end;
  }

  .user-center-topbar .brand {
    flex: 1 1 auto;
    width: auto;
  }

  .user-top-actions {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .main-nav {
    width: 100%;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 6px;
    font-size: 13px;
  }

  .main-nav a {
    flex: 1 1 0;
    min-width: 0;
    min-height: 42px;
    padding: 0 6px;
    text-align: center;
  }

  .hero {
    min-height: 0;
    gap: 24px;
    padding: 28px 18px;
  }

  .hero h1 {
    font-size: 34px;
  }

  .hero p {
    font-size: 16px;
  }

  .pane-heading,
  .auth-card-head,
  .form-title-row,
  .user-page-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .pane-heading em,
  .form-title-row em {
    text-align: left;
  }

  .minimal-query-fields {
    grid-template-columns: 1fr;
  }

  .minimal-query-status-list {
    grid-template-columns: 1fr;
  }

  .minimal-query-status-item:nth-child(even) {
    border-left: 0;
  }

  .minimal-query-status-item:nth-child(n + 2) {
    border-top: 1px solid var(--line);
  }

  .minimal-query-submit,
  body.minimal-shop .minimal-query-submit {
    width: 100%;
  }

  .minimal-order-detail-row {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .minimal-order-content-link {
    width: 100%;
    flex-basis: 100%;
  }

  .order-empty-guide {
    padding: 12px;
  }

  .catalog-browser {
    margin-bottom: 16px;
    padding: 14px;
  }

  .catalog-browser-head {
    align-items: flex-start;
  }

  .catalog-categories {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .catalog-category {
    width: 100%;
    min-width: 0;
    padding: 0 10px;
  }

  .catalog-products {
    grid-template-columns: 1fr;
  }

  .catalog-product-card {
    min-height: 112px;
    grid-template-columns: 40px minmax(0, 1fr) auto;
    gap: 10px;
    padding: 13px;
  }

  .catalog-product-icon {
    width: 40px;
    height: 40px;
  }

  #onlinebuy #display_num .input-group {
    grid-template-columns: 92px minmax(64px, 1fr) 40px;
  }

  .query-result .table-responsive,
  .minimal-order-list-modal .table-responsive {
    overflow: visible;
  }

  .minimal-order-list-table,
  .minimal-order-list-table > tbody {
    width: 100%;
    display: block;
  }

  .minimal-order-list-table > thead {
    display: none;
  }

  .minimal-order-list-table > tbody > .minimal-order-row {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 10px;
    padding: 14px;
    border: 1px solid rgba(223, 231, 238, .92);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .86);
  }

  .minimal-order-list-table > tbody > .minimal-order-row > td {
    min-width: 0;
    display: grid;
    align-content: start;
    justify-items: start;
    gap: 6px;
    padding: 0;
    border: 0;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .minimal-order-list-table > tbody > .minimal-order-row > td:nth-child(1),
  .minimal-order-list-table > tbody > .minimal-order-row > td:nth-child(2) {
    grid-column: 1 / -1;
  }

  .minimal-order-list-table > tbody > .minimal-order-row > td::before {
    content: attr(data-label);
    color: var(--muted);
    font-size: 11px;
    font-weight: 850;
  }

  .minimal-order-list-table > tbody > .minimal-order-row > td.hidden-xs {
    display: none !important;
  }

  .minimal-order-list-table .minimal-order-status,
  .minimal-order-list-table .minimal-order-detail-btn {
    min-height: 32px;
  }

  .minimal-order-list-table .minimal-order-detail-btn {
    width: 100%;
    padding: 0 9px;
  }

  .minimal-order-error-row,
  .minimal-order-error-row > td,
  .minimal-order-pager-row,
  .minimal-order-pager-row > td {
    width: 100%;
    display: block;
  }

  .minimal-order-error-row {
    margin: -2px 0 10px;
  }

  .minimal-order-issue {
    grid-template-columns: 1fr;
  }

  .order-empty-guide-main {
    align-items: flex-start;
  }

  .order-hot-recommend {
    padding-left: 0;
  }

  .hero-actions {
    align-items: stretch;
  }

  .primary-btn,
  .ghost-btn {
    width: 100%;
  }

  .hero-panel {
    width: 100%;
  }

  .notice-band {
    grid-template-columns: 1fr;
  }

  .minimal-tabs {
    display: flex !important;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 8px;
  }

  .minimal-tabs > li {
    flex: 1 1 0 !important;
    min-width: 0;
    width: auto !important;
    float: none !important;
    margin: 0 !important;
  }

  .minimal-tabs > li > a {
    width: 100%;
    min-height: 44px;
    padding-left: 8px;
    padding-right: 8px;
    text-align: center;
    white-space: nowrap;
  }

  .work-content {
    padding: 14px;
  }

  #onlinebuy .order-stage,
  #onlinebuy #goodTypeContent,
  #onlinebuy #goodTypeContents {
    min-height: 0;
  }

  #onlinebuy #inputsname {
    grid-template-columns: 1fr;
  }

  #onlinebuy #alert_frame {
    max-height: 220px;
  }

  .side-stack {
    grid-template-columns: 1fr;
  }

  .module-hero {
    min-height: 0;
    padding: 28px 18px;
  }

  .module-hero h1 {
    font-size: 32px;
  }

  .module-hero p {
    font-size: 16px;
  }

  .auth-hero,
  .subsite-hero {
    padding: 24px 18px;
  }

  .auth-hero,
  .article-hero {
    min-height: 0;
  }

  .auth-hero h1,
  .subsite-hero h1 {
    font-size: 30px;
  }

  .module-card,
  .mini-panel,
  .auth-card,
  .auth-side-card,
  .subsite-form-card,
  .dashboard-card,
  .user-summary,
  .user-dashboard-hero,
  .user-page-head,
  .user-home-card,
  .user-home-grid .dashboard-card {
    padding: 16px;
  }

  .article-toolbar,
  .quick-links,
  .form-grid.two,
  .plan-grid,
  .domain-row,
  .version-price-row,
  .submit-dock,
  .balance-actions,
  .user-actions,
  .user-hero-balance div,
  .user-metric-grid,
  .user-action-grid,
  .user-info-list > div {
    grid-template-columns: 1fr;
  }

  .user-hero-profile {
    grid-template-columns: 64px 1fr;
  }

  .user-hero-profile img {
    width: 64px;
    height: 64px;
  }

  .user-hero-profile h2 {
    font-size: 24px;
  }

  .user-action-tile {
    min-height: 104px;
  }

  .article-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .article-search {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .article-item {
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
    padding: 18px 0;
  }

  .article-arrow {
    display: none;
  }

  .article-card-list,
  .article-neighbor,
  .article-breadcrumb,
  .article-toolbar {
    padding-left: 16px;
    padding-right: 16px;
  }

  .article-content {
    width: 100%;
    padding: 26px 18px 32px;
  }

  .article-pagination,
  .article-neighbor {
    grid-template-columns: 1fr;
  }

  .article-pagination {
    align-items: stretch;
    flex-direction: column;
  }

  #onlinebuy .btn-group-justified {
    grid-template-columns: 1fr;
  }

  .auth-linkbar,
  .side-link-row,
  .success-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .user-summary {
    gap: 14px;
  }

  .user-meta h1 {
    white-space: normal;
  }

  .info-row {
    grid-template-columns: 1fr;
  }

  .minimal-pay-layer {
    width: calc(100% - 28px) !important;
    left: 14px !important;
  }

  .minimal-pay-modal {
    padding: 22px 18px;
  }

  .minimal-pay-amount strong {
    font-size: 36px;
  }

  .minimal-order-layer {
    width: calc(100% - 24px) !important;
    left: 12px !important;
  }

  .minimal-order-modal,
  .minimal-order-list-modal {
    padding: 18px;
  }

  .minimal-order-head {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .minimal-order-head-status {
    grid-column: 1 / -1;
  }

  .minimal-order-info-grid,
  .minimal-order-live-grid,
  .minimal-order-actions {
    grid-template-columns: 1fr;
  }

  .minimal-order-secret-head {
    align-items: stretch;
    flex-direction: column;
  }

  .minimal-order-secret-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .minimal-order-list-head strong {
    font-size: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero h1.is-title-motion-active::after {
    animation: none;
    opacity: 0;
  }

  .primary-btn,
  .ghost-btn,
  body.minimal-shop .btn,
  .main-nav a,
  .user-action-tile {
    transition-duration: .01ms !important;
  }

  .catalog-loading .minimal-spinner,
  .layui-layer-loading .layui-layer-content::before {
    animation: none !important;
  }
}

.support-center { padding: 0; overflow: hidden; }
.support-center .user-page-heading { padding: 28px 30px 22px; border-bottom: 1px solid var(--line); }
.support-center .user-page-heading h1 { margin: 0 0 8px; font-size: clamp(24px, 3vw, 34px); letter-spacing: -.025em; }
.support-center .user-page-heading p { max-width: 68ch; margin: 0; color: var(--muted); line-height: 1.7; }
.support-center-grid { display: grid; grid-template-columns: minmax(220px, 300px) minmax(0, 1fr); min-height: 600px; }
.support-center-grid > aside { padding: 16px; background: var(--paper-soft); border-right: 1px solid var(--line); }
.support-thread-list { display: grid; gap: 8px; margin-top: 14px; }
.support-thread-link { display: grid; gap: 5px; padding: 13px 14px; border: 1px solid transparent; border-radius: 12px; background: var(--paper); }
.support-thread-link:hover,
.support-thread-link:focus,
.support-thread-link.is-active { border-color: #b9d9ca; background: #f4faf7; outline: none; }
.support-thread-link strong { line-height: 1.45; overflow-wrap: anywhere; }
.support-thread-link span { color: var(--muted); font-size: 12px; }
.support-center-grid > main { display: flex; min-width: 0; flex-direction: column; padding: 24px; }
.support-conversation-heading { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; margin-bottom: 20px; }
.support-conversation-heading h2 { margin: 0 0 5px; font-size: 21px; letter-spacing: -.02em; }
.support-conversation-heading p { margin: 0; color: var(--muted); line-height: 1.55; }
.support-message-list { display: flex; flex: 1; flex-direction: column; gap: 14px; min-height: 340px; }
.support-message { width: min(78%, 650px); padding: 13px 15px; border-radius: 14px; background: #eef3f1; }
.support-message.is-user { align-self: flex-end; background: #e7f6ef; }
.support-message small { display: block; margin-bottom: 6px; color: var(--muted); }
.support-message p { margin: 0; line-height: 1.7; overflow-wrap: anywhere; }
.support-message-image { display: block; margin-top: 10px; }
.support-message-image img { display: block; max-width: min(100%, 360px); max-height: 320px; border-radius: 10px; object-fit: contain; }
.support-reply-form { display: grid; gap: 12px; margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--line); }
.support-reply-form > div { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.support-file-control { display: inline-flex; align-items: center; gap: 8px; min-height: 40px; margin: 0; padding: 9px 12px; color: var(--brand-dark); border: 1px solid var(--line-strong); border-radius: 10px; cursor: pointer; }
.support-file-control input { position: absolute; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.support-new-form { max-width: 760px; padding: 24px 30px 30px; border-top: 1px solid var(--line); }

.support-thread-link:focus-visible,
.support-file-control:focus-within,
.user-menu-toggle:focus-visible {
  outline: 3px solid rgba(21, 150, 107, .2);
  outline-offset: 2px;
}

.support-reply-form > label {
  margin: 0;
  color: var(--ink);
  font-size: 13px;
  font-weight: 750;
}

@media (max-width: 760px) {
  .support-center .user-page-heading { padding: 22px 18px 18px; }
  .support-center-grid { grid-template-columns: minmax(0, 1fr); min-height: 0; }
  .support-center-grid > aside { border-right: 0; border-bottom: 1px solid var(--line); }
  .support-center-grid > main { padding: 20px 16px; }
  .support-conversation-heading { align-items: stretch; flex-direction: column; }
  .support-conversation-heading .btn { width: 100%; min-height: 44px; }
  .support-message { width: 92%; }
  .support-reply-form > div { align-items: stretch; flex-direction: column; }
  .support-file-control,
  .support-reply-form .btn { width: 100%; min-height: 44px; justify-content: center; }
  .support-new-form { padding: 20px 18px 24px; }
}
