:root {
  color-scheme: light;
  --bg: #e8eef4;
  --surface: #ffffff;
  --surface-soft: #f3f6fa;
  --ink: #101b2b;
  --muted: #637083;
  --line: #d7e0eb;
  --brand: #14a7ff;
  --brand-dark: #0b3a63;
  --brand-soft: #e4f5ff;
  --gold: #d8ad62;
  --gold-soft: #fff3d2;
  --metal: #cdd7df;
  --price: #f35f2a;
  --success: #12a568;
  --warning: #f59e0b;
  --danger: #e5484d;
  --radius: 14px;
  --shadow: 0 12px 30px rgba(16, 32, 51, 0.1);
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  min-height: 100%;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 50% -10%, rgba(79, 194, 255, 0.22), transparent 34%),
    linear-gradient(180deg, #152332 0%, #dce6ef 44%, #cfdbe6 100%);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
  letter-spacing: 0;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

a {
  color: inherit;
  text-decoration: none;
}

.app-shell {
  width: 100%;
  max-width: 430px;
  min-height: 100vh;
  margin: 0 auto;
  overflow-x: hidden;
  background:
    linear-gradient(180deg, rgba(10, 31, 52, 0.08) 0, rgba(232, 238, 244, 0) 210px),
    var(--bg);
  box-shadow: 0 0 0 1px rgba(16, 32, 51, 0.06), 0 24px 80px rgba(16, 32, 51, 0.14);
}

.mobile-layout {
  min-height: 100vh;
  padding-bottom: calc(76px + env(safe-area-inset-bottom));
  overflow-x: hidden;
  background: var(--bg);
}

.mobile-layout.with-detail-bar {
  padding-bottom: calc(88px + env(safe-area-inset-bottom));
}

.page {
  width: 100%;
  padding: 12px 15px 22px;
}

.top-band {
  position: relative;
  margin: -12px -15px 0;
  padding: 16px 15px 18px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 72% 15%, rgba(48, 198, 255, 0.44), transparent 24%),
    radial-gradient(circle at 10% 115%, rgba(216, 173, 98, 0.28), transparent 30%),
    linear-gradient(160deg, rgba(8, 21, 34, 0.96) 0%, rgba(16, 57, 91, 0.96) 52%, rgba(13, 100, 157, 0.95) 100%);
}

.top-band::before,
.top-band::after {
  position: absolute;
  pointer-events: none;
  content: "";
}

.top-band::before {
  right: -62px;
  top: 28px;
  width: 240px;
  height: 22px;
  border-radius: 999px;
  transform: rotate(-38deg);
  background: linear-gradient(90deg, transparent, rgba(101, 214, 255, 0.22), rgba(205, 215, 223, 0.78), rgba(101, 214, 255, 0.28), transparent);
  box-shadow: 0 0 28px rgba(83, 207, 255, 0.38);
}

.top-band::after {
  left: -24px;
  right: -24px;
  bottom: -1px;
  height: 58px;
  background:
    linear-gradient(135deg, transparent 0 22%, rgba(255, 255, 255, 0.13) 22% 32%, transparent 32%),
    linear-gradient(225deg, transparent 0 26%, rgba(0, 0, 0, 0.22) 26% 36%, transparent 36%),
    linear-gradient(180deg, transparent, rgba(232, 238, 244, 0.96));
  opacity: 0.78;
}

.top-band > * {
  position: relative;
  z-index: 1;
}

.page-title-row,
.nav-row,
.section-title-row,
.cart-total-row,
.order-total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.page-title-row {
  margin-bottom: 12px;
}

.page-title {
  margin: 0;
  font-size: 20px;
  line-height: 1.35;
  font-weight: 800;
}

.page-subtitle {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.top-band .page-subtitle {
  color: rgba(255, 255, 255, 0.78);
}

.back-btn,
.ghost-btn,
.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  border-radius: 10px;
  color: var(--ink);
  background: var(--surface);
  box-shadow: 0 4px 12px rgba(16, 32, 51, 0.08);
}

.top-band .ghost-btn,
.top-band .icon-btn {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  box-shadow: none;
}

.search-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  min-height: 44px;
  padding: 0 10px 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.96);
}

.search-bar input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
  font-size: 14px;
}

.search-bar button {
  flex: 0 0 auto;
  min-width: 54px;
  height: 32px;
  border-radius: 10px;
  color: #fff;
  background: var(--brand);
  font-size: 13px;
  font-weight: 700;
}

.hero-panel {
  position: relative;
  min-height: 158px;
  margin-top: 14px;
  padding: 16px;
  overflow: hidden;
  border-radius: 18px;
  background:
    radial-gradient(circle at 58% 36%, rgba(68, 210, 255, 0.5), transparent 16%),
    radial-gradient(circle at 86% 16%, rgba(216, 173, 98, 0.28), transparent 24%),
    linear-gradient(150deg, rgba(9, 18, 30, 0.94), rgba(15, 56, 86, 0.94) 56%, rgba(14, 103, 158, 0.92)),
    linear-gradient(180deg, #0b1826, #123f5f);
  color: #fff;
}

.hero-panel::before,
.hero-panel::after {
  position: absolute;
  pointer-events: none;
  content: "";
}

.hero-panel::before {
  right: -28px;
  top: 58px;
  width: 210px;
  height: 22px;
  border-radius: 999px;
  transform: rotate(-37deg);
  background: linear-gradient(90deg, transparent, rgba(143, 225, 255, 0.22), rgba(230, 239, 247, 0.88), rgba(20, 167, 255, 0.46), transparent);
  box-shadow: 0 0 34px rgba(20, 167, 255, 0.54);
}

.hero-panel::after {
  right: -18px;
  bottom: -18px;
  width: 210px;
  height: 92px;
  background:
    linear-gradient(135deg, transparent 0 28%, rgba(255, 255, 255, 0.13) 28% 40%, transparent 40%),
    linear-gradient(225deg, transparent 0 34%, rgba(0, 0, 0, 0.28) 34% 46%, transparent 46%);
  opacity: 0.85;
}

.brand-lockup {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: baseline;
  gap: 7px;
  margin-bottom: 11px;
  color: var(--metal);
  text-shadow: 0 0 18px rgba(80, 215, 255, 0.42);
}

.brand-lockup span {
  font-size: 20px;
  line-height: 1;
  font-weight: 950;
}

.brand-lockup em {
  color: var(--gold);
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 1.4px;
}

.hero-panel h1 {
  position: relative;
  z-index: 1;
  max-width: 255px;
  margin: 0;
  font-size: 24px;
  line-height: 1.25;
  font-weight: 900;
}

.hero-panel p {
  position: relative;
  z-index: 1;
  max-width: 245px;
  margin: 8px 0 0;
  color: rgba(236, 244, 250, 0.86);
  font-size: 13px;
  line-height: 1.55;
}

.hero-metrics {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 8px;
  margin-top: 14px;
}

.hero-metric {
  min-width: 70px;
  padding: 7px 9px;
  border: 1px solid rgba(216, 173, 98, 0.28);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.hero-metric strong,
.hero-metric span {
  display: block;
}

.hero-metric strong {
  font-size: 14px;
  line-height: 1.2;
}

.hero-metric span {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
}

.business-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 9px;
  margin-top: 14px;
}

.business-entry,
.game-card,
.account-card,
.cart-item,
.summary-card,
.form-card,
.payment-card,
.order-card,
.empty-state,
.detail-block {
  border: 1px solid rgba(217, 226, 238, 0.9);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.business-entry {
  min-height: 78px;
  padding: 10px 6px;
  text-align: center;
}

.business-icon,
.tab-icon,
.mini-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
}

.business-icon {
  width: 30px;
  height: 30px;
  margin: 0 auto 7px;
  border-radius: 11px;
  background: var(--brand-soft);
}

.business-entry strong {
  display: block;
  font-size: 12px;
  line-height: 1.35;
  font-weight: 800;
}

.business-entry span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.35;
}

.section {
  margin-top: 18px;
}

.section-title-row {
  margin-bottom: 10px;
}

.section-title {
  margin: 0;
  font-size: 17px;
  line-height: 1.35;
  font-weight: 850;
}

.section-link {
  color: var(--brand);
  font-size: 13px;
  font-weight: 700;
}

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

.game-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 114px;
  padding: 12px 10px;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 18%, rgba(20, 167, 255, 0.16), transparent 36%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 252, 0.98));
}

.game-card::after {
  position: absolute;
  right: -26px;
  bottom: -20px;
  width: 92px;
  height: 70px;
  transform: rotate(-22deg);
  background: linear-gradient(90deg, transparent, rgba(20, 167, 255, 0.22), rgba(216, 173, 98, 0.2), transparent);
  content: "";
}

.game-card-logo {
  position: relative;
  z-index: 1;
  width: 100%;
}

.game-logo {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  min-height: 42px;
  padding: 5px 8px 5px 5px;
  gap: 7px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, var(--game-a), var(--game-b));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 8px 18px rgba(16, 32, 51, 0.16);
}

.game-logo-sigil {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border-radius: 11px;
  color: #101b2b;
  background: linear-gradient(145deg, #fff7d8, var(--game-c));
  font-size: 12px;
  font-weight: 950;
  box-shadow: 0 0 18px rgba(20, 167, 255, 0.28);
}

.game-logo-copy {
  display: grid;
  min-width: 0;
  gap: 1px;
}

.game-logo-copy strong {
  margin: 0;
  color: #fff;
  font-size: 12px;
  line-height: 1.1;
  font-weight: 950;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.game-logo-copy em {
  color: rgba(255, 255, 255, 0.72);
  font-size: 9px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.8px;
}

.game-logo.compact {
  min-height: 34px;
  padding: 4px 6px 4px 4px;
  gap: 5px;
  border-radius: 12px;
}

.game-logo.compact .game-logo-sigil {
  width: 25px;
  height: 25px;
  border-radius: 9px;
  font-size: 10px;
}

.game-logo.compact .game-logo-copy strong {
  font-size: 10px;
}

.game-logo.compact .game-logo-copy em {
  display: none;
}

.game-card > strong {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.3;
  font-weight: 800;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.game-card > span:not(.game-card-logo) {
  position: relative;
  z-index: 1;
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
}

.filter-panel {
  display: grid;
  gap: 10px;
  margin-bottom: 12px;
  padding: 12px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
}

.filter-row {
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
}

.filter-row label {
  color: var(--muted);
  font-size: 12px;
}

.filter-row select,
.form-field input,
.form-field textarea {
  width: 100%;
  min-width: 0;
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 11px;
  outline: 0;
  background: #fff;
  color: var(--ink);
  font-size: 13px;
}

.filter-row select {
  padding: 0 10px;
}

.switch-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip,
.status-chip,
.tag,
.order-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  padding: 3px 8px;
  border-radius: 999px;
  font-size: 11px;
  line-height: 1.35;
  font-weight: 700;
  white-space: nowrap;
}

.chip {
  border: 1px solid var(--line);
  color: var(--muted);
  background: #fff;
}

.chip.active {
  border-color: rgba(22, 119, 255, 0.35);
  color: var(--brand);
  background: var(--brand-soft);
}

.account-list {
  display: grid;
  gap: 12px;
}

.account-card {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 11px;
  padding: 10px;
  overflow: hidden;
}

.cover {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1.08;
  overflow: hidden;
  border-radius: 12px;
  background:
    radial-gradient(circle at 58% 36%, rgba(255, 255, 255, 0.28), transparent 20%),
    linear-gradient(145deg, var(--game-a), var(--game-b));
}

.cover::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(145deg, transparent 0 24%, rgba(255, 255, 255, 0.18) 24% 32%, transparent 32%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.09) 0 9px, transparent 9px 18px);
  content: "";
}

.cover::after {
  position: absolute;
  right: -28px;
  bottom: -6px;
  width: 130px;
  height: 64px;
  transform: rotate(-32deg);
  background: linear-gradient(90deg, transparent, rgba(232, 242, 249, 0.78), rgba(20, 167, 255, 0.26), transparent);
  box-shadow: 0 0 30px rgba(20, 167, 255, 0.28);
  content: "";
}

.cover-glow {
  position: absolute;
  inset: auto -18px -22px auto;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(216, 173, 98, 0.36), transparent 62%);
}

.cover-logo {
  position: absolute;
  top: 8px;
  left: 8px;
  right: 8px;
  z-index: 1;
}

.cover-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 6px;
  padding: 10px;
  color: #fff;
  z-index: 1;
}

.cover-game {
  width: fit-content;
  max-width: 100%;
  padding: 4px 7px;
  border-radius: 999px;
  background: rgba(5, 16, 27, 0.34);
  font-size: 10px;
  font-weight: 800;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cover-rank {
  font-size: 18px;
  line-height: 1.2;
  font-weight: 900;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.24);
}

.account-info {
  min-width: 0;
}

.account-game {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
}

.status-chip.available {
  color: #047857;
  background: #dff7ec;
}

.status-chip.locked {
  color: #9a5a00;
  background: #fff1c7;
}

.status-chip.sold {
  color: #9f1239;
  background: #ffe4e6;
}

.account-title {
  display: -webkit-box;
  margin: 6px 0 0;
  overflow: hidden;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.35;
  font-weight: 850;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 8px;
}

.tag {
  color: #175dbf;
  background: var(--brand-soft);
}

.tag.hot {
  color: #b42318;
  background: #fff0e7;
}

.spec-line {
  display: -webkit-box;
  margin-top: 8px;
  overflow: hidden;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.price-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 8px;
  margin-top: 9px;
}

.price {
  color: var(--price);
  font-size: 19px;
  line-height: 1.1;
  font-weight: 950;
}

.price small {
  font-size: 12px;
  font-weight: 850;
}

.original-price {
  margin-left: 4px;
  color: #94a3b8;
  font-size: 11px;
  text-decoration: line-through;
}

.primary-btn,
.secondary-btn,
.danger-btn,
.plain-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 14px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 850;
  white-space: nowrap;
}

.primary-btn {
  color: #fff;
  background: linear-gradient(135deg, #1677ff, #0f5ed8);
  box-shadow: 0 8px 18px rgba(22, 119, 255, 0.24);
}

.secondary-btn {
  color: var(--brand);
  background: var(--brand-soft);
}

.danger-btn {
  color: #fff;
  background: var(--danger);
}

.plain-btn {
  color: var(--muted);
  background: #eef3f8;
}

.mini-btn {
  min-height: 32px;
  padding: 0 10px;
  border-radius: 10px;
  color: #fff;
  background: var(--brand);
  font-size: 12px;
  font-weight: 800;
}

.mini-btn.secondary {
  color: var(--brand);
  background: var(--brand-soft);
}

.detail-hero {
  position: relative;
  margin: -12px -15px 0;
  padding: 12px 15px 18px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 72% 12%, rgba(20, 167, 255, 0.44), transparent 28%),
    linear-gradient(160deg, #081522 0%, #10395b 54%, #0e679e 100%);
}

.detail-hero::before {
  position: absolute;
  right: -62px;
  top: 66px;
  width: 250px;
  height: 20px;
  border-radius: 999px;
  transform: rotate(-38deg);
  background: linear-gradient(90deg, transparent, rgba(230, 239, 247, 0.9), rgba(20, 167, 255, 0.45), transparent);
  box-shadow: 0 0 34px rgba(20, 167, 255, 0.45);
  pointer-events: none;
  content: "";
}

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

.detail-slider {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 84%;
  gap: 10px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  padding: 4px 0 4px;
  scrollbar-width: none;
}

.detail-slider::-webkit-scrollbar {
  display: none;
}

.screenshot {
  position: relative;
  min-height: 190px;
  overflow: hidden;
  border-radius: 16px;
  scroll-snap-align: start;
  background:
    radial-gradient(circle at 58% 32%, rgba(255, 255, 255, 0.34), transparent 18%),
    linear-gradient(140deg, var(--game-a), var(--game-b));
}

.screenshot::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, transparent 0 22%, rgba(255, 255, 255, 0.18) 22% 30%, transparent 30%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.09) 0 10px, transparent 10px 20px);
  content: "";
}

.screenshot::after {
  position: absolute;
  right: -34px;
  top: 66px;
  width: 220px;
  height: 18px;
  border-radius: 999px;
  transform: rotate(-36deg);
  background: linear-gradient(90deg, transparent, rgba(230, 239, 247, 0.86), rgba(20, 167, 255, 0.34), transparent);
  box-shadow: 0 0 34px rgba(20, 167, 255, 0.38);
  content: "";
}

.screenshot-logo {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 1;
  max-width: calc(100% - 28px);
}

.screenshot-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 14px;
  color: #fff;
  z-index: 1;
}

.screenshot-content strong {
  font-size: 23px;
  line-height: 1.2;
  font-weight: 950;
}

.screenshot-content span {
  margin-top: 6px;
  font-size: 12px;
  line-height: 1.45;
  opacity: 0.86;
}

.detail-summary {
  position: relative;
  z-index: 2;
  margin: -16px 15px 0;
  padding: 16px 14px 14px;
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow);
}

.detail-summary h1 {
  margin: 0;
  font-size: 18px;
  line-height: 1.45;
  font-weight: 900;
}

.detail-summary .price-row {
  margin-top: 10px;
}

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

.spec-item {
  min-height: 58px;
  padding: 10px;
  border-radius: 12px;
  background: var(--surface-soft);
}

.spec-item span,
.timeline-item span,
.progress-item span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.35;
}

.spec-item strong,
.timeline-item strong,
.progress-item strong {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  line-height: 1.35;
}

.detail-block {
  padding: 14px;
}

.detail-block p {
  margin: 0;
  color: #3f536c;
  font-size: 14px;
  line-height: 1.75;
}

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

.guarantee-card {
  position: relative;
  min-height: 132px;
  padding: 12px;
  overflow: hidden;
  border: 1px solid rgba(20, 167, 255, 0.16);
  border-radius: 14px;
  background:
    radial-gradient(circle at 100% 0%, rgba(20, 167, 255, 0.16), transparent 36%),
    linear-gradient(180deg, #ffffff, #f5f8fb);
}

.guarantee-card::after {
  position: absolute;
  right: -24px;
  bottom: -22px;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(216, 173, 98, 0.24), transparent 68%);
  content: "";
}

.guarantee-icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(145deg, #0b3a63, #14a7ff);
  box-shadow: 0 10px 20px rgba(20, 167, 255, 0.22);
}

.guarantee-icon svg {
  width: 18px;
  height: 18px;
}

.guarantee-icon em {
  position: absolute;
  right: -5px;
  bottom: -5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  color: #132033;
  background: linear-gradient(145deg, #fff7d8, var(--gold));
  font-size: 10px;
  font-style: normal;
  font-weight: 950;
}

.guarantee-card strong {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.35;
}

.guarantee-card > span:not(.guarantee-icon) {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.deal-flow {
  position: relative;
  display: grid;
  gap: 0;
}

.deal-step {
  position: relative;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 10px;
  padding-bottom: 16px;
}

.deal-step::before {
  position: absolute;
  top: 38px;
  bottom: 0;
  left: 18px;
  width: 2px;
  background: linear-gradient(180deg, var(--brand), rgba(216, 173, 98, 0.72));
  content: "";
}

.deal-step:last-of-type {
  padding-bottom: 4px;
}

.deal-step:last-of-type::before {
  display: none;
}

.deal-step-index {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 2px solid rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  color: #fff;
  background:
    linear-gradient(145deg, #0b3a63, #14a7ff);
  box-shadow: 0 0 0 4px #eef5fb, 0 10px 22px rgba(20, 167, 255, 0.24);
  font-size: 13px;
  font-weight: 950;
}

.deal-step strong {
  display: block;
  padding-top: 1px;
  font-size: 14px;
  line-height: 1.4;
}

.deal-step span:not(.deal-step-index) {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.risk-note {
  margin-top: 10px;
  padding: 12px;
  border: 1px solid rgba(216, 173, 98, 0.32);
  border-radius: 14px;
  background: linear-gradient(135deg, #fffaf0, #f4fbff);
}

.risk-note strong,
.risk-note span {
  display: block;
}

.risk-note strong {
  color: #8a5b13;
  font-size: 13px;
}

.risk-note span {
  margin-top: 5px;
  color: #5d6878;
  font-size: 12px;
  line-height: 1.6;
}

.guarantee-list,
.flow-list {
  display: grid;
  gap: 10px;
}

.guarantee-item,
.flow-item {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
}

.number-dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 10px;
  color: #fff;
  background: var(--brand);
  font-size: 13px;
  font-weight: 900;
}

.guarantee-item strong,
.flow-item strong {
  display: block;
  font-size: 14px;
  line-height: 1.35;
}

.guarantee-item span,
.flow-item span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.detail-action-bar,
.bottom-tab {
  position: fixed;
  right: 50%;
  transform: translateX(50%);
  z-index: 20;
  width: 100%;
  max-width: 430px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(217, 226, 238, 0.9);
}

.detail-action-bar {
  bottom: 0;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 10px;
  padding: 10px 15px calc(10px + env(safe-area-inset-bottom));
}

.bottom-tab {
  bottom: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  min-height: 60px;
  padding: 6px 4px calc(6px + env(safe-area-inset-bottom));
}

.tab-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  min-width: 0;
  color: #738297;
  background: transparent;
  font-size: 11px;
  font-weight: 750;
}

.tab-item.active {
  color: var(--brand);
}

.tab-icon svg,
.business-icon svg,
.mini-icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cart-item {
  display: grid;
  grid-template-columns: 24px 86px minmax(0, 1fr);
  gap: 10px;
  padding: 10px;
}

.cart-check {
  align-self: center;
  width: 20px;
  height: 20px;
}

.cart-info {
  min-width: 0;
}

.cart-info h3,
.order-card h3,
.summary-card h3 {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 850;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.cart-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 8px;
}

.cart-total-row {
  position: sticky;
  bottom: calc(64px + env(safe-area-inset-bottom));
  z-index: 10;
  margin: 12px -15px -22px;
  padding: 10px 15px;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
}

.total-label {
  color: var(--muted);
  font-size: 12px;
}

.form-card,
.summary-card,
.payment-card,
.order-card {
  padding: 13px;
}

.form-field {
  display: grid;
  gap: 6px;
  margin-top: 12px;
}

.form-field:first-child {
  margin-top: 0;
}

.form-field label {
  color: #334155;
  font-size: 13px;
  font-weight: 750;
}

.form-field input,
.form-field textarea {
  padding: 0 11px;
}

.form-field textarea {
  min-height: 78px;
  padding-top: 10px;
  resize: vertical;
}

.check-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 11px;
  color: #334155;
  font-size: 13px;
  line-height: 1.5;
}

.check-row input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 1px;
}

.checkout-actions {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.payment-card {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  width: 100%;
  min-height: 78px;
  text-align: left;
  background:
    radial-gradient(circle at 100% 0%, rgba(20, 167, 255, 0.1), transparent 34%),
    #fff;
}

.payment-mark {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  overflow: hidden;
  border-radius: 16px;
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  box-shadow: 0 10px 20px rgba(16, 32, 51, 0.12);
}

.payment-mark.wechat {
  background: linear-gradient(145deg, #0bbf72, #1edb87);
}

.payment-mark.alipay {
  background: linear-gradient(145deg, #1677ff, #00a4ff);
}

.wechat-bubble {
  position: absolute;
  border-radius: 50%;
  background: #fff;
}

.wechat-bubble::before,
.wechat-bubble::after {
  position: absolute;
  top: 9px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #0bbf72;
  content: "";
}

.wechat-bubble.one {
  left: 10px;
  top: 13px;
  width: 23px;
  height: 17px;
}

.wechat-bubble.one::before {
  left: 7px;
}

.wechat-bubble.one::after {
  left: 14px;
}

.wechat-bubble.two {
  right: 8px;
  bottom: 12px;
  width: 20px;
  height: 15px;
  opacity: 0.9;
}

.wechat-bubble.two::before {
  left: 6px;
}

.wechat-bubble.two::after {
  left: 12px;
}

.alipay-symbol {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  color: #1677ff;
  background: #fff;
  font-size: 22px;
  line-height: 1;
  font-weight: 950;
}

.payment-copy {
  min-width: 0;
}

.payment-copy strong {
  display: flex;
  align-items: center;
  gap: 7px;
  min-width: 0;
  font-size: 15px;
}

.payment-copy strong em {
  display: inline-flex;
  align-items: center;
  min-height: 21px;
  padding: 2px 7px;
  border-radius: 999px;
  color: #0b5f95;
  background: var(--brand-soft);
  font-size: 10px;
  font-style: normal;
  font-weight: 850;
}

.payment-copy > span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.countdown {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 9px;
  border-radius: 999px;
  color: #8a4b00;
  background: #fff3d7;
  font-size: 12px;
  font-weight: 850;
}

.mine-band {
  padding-bottom: 22px;
}

.mine-profile-card {
  position: relative;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
}

.mine-logout-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 11px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.mine-logout-btn svg {
  width: 18px;
  height: 18px;
}

.mine-profile-row {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 13px;
  align-items: center;
}

.mine-avatar {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border: 2px solid rgba(255, 255, 255, 0.62);
  border-radius: 22px;
  background:
    radial-gradient(circle at 72% 18%, rgba(20, 167, 255, 0.8), transparent 30%),
    linear-gradient(145deg, #132033, #0e679e);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.mine-avatar img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.mine-avatar::after {
  position: absolute;
  right: -5px;
  bottom: -5px;
  width: 20px;
  height: 20px;
  border: 3px solid #0e3959;
  border-radius: 50%;
  background: linear-gradient(145deg, #fff7d8, var(--gold));
  content: "";
}

.mine-avatar.logged-in::after {
  background: linear-gradient(145deg, #dff7ec, #17b26a);
}

.mine-avatar span {
  color: #fff;
  font-size: 28px;
  font-weight: 950;
  text-shadow: 0 0 18px rgba(20, 167, 255, 0.6);
}

.mine-profile-main {
  min-width: 0;
}

.mine-profile-main h1 {
  margin: 0;
  color: #fff;
  font-size: 20px;
  line-height: 1.25;
  font-weight: 950;
}

.mine-profile-main p {
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  line-height: 1.45;
}

.mine-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}

.mine-badges span {
  display: inline-flex;
  min-height: 22px;
  align-items: center;
  padding: 3px 7px;
  border: 1px solid rgba(216, 173, 98, 0.34);
  border-radius: 999px;
  color: #fff2c7;
  background: rgba(255, 255, 255, 0.09);
  font-size: 10px;
  font-weight: 750;
}

.wechat-login-btn {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 48px;
  margin-top: 13px;
  padding: 6px 12px 6px 7px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  color: #fff;
  background: linear-gradient(145deg, rgba(16, 185, 129, 0.95), rgba(7, 148, 89, 0.95));
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.16);
  text-align: left;
}

.wechat-login-btn .payment-mark {
  width: 36px;
  height: 36px;
  /* border-radius: 13px; */
  box-shadow: none;
}

.wechat-login-btn .wechat-bubble.one {
  left: 7px;
  top: 10px;
  width: 19px;
  height: 14px;
}

.wechat-login-btn .wechat-bubble.two {
  right: 6px;
  bottom: 9px;
  width: 17px;
  height: 13px;
}

.wechat-login-btn > span:last-child {
  min-width: 0;
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.wechat-login-btn:disabled {
  opacity: 0.86;
}

.login-agreement {
  margin: 9px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  line-height: 1.55;
  text-align: center;
}

.login-agreement button {
  padding: 0;
  color: #fff2c7;
  background: transparent;
  font-size: inherit;
  font-weight: 850;
}

.login-page {
  min-height: 100vh;
  padding-bottom: 24px;
}

.login-band {
  min-height: 310px;
  padding-bottom: 78px;
}

.login-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 26px;
  text-align: center;
}

.login-brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border: 2px solid rgba(255, 255, 255, 0.58);
  border-radius: 24px;
  color: #fff;
  background:
    radial-gradient(circle at 72% 16%, rgba(255, 242, 199, 0.55), transparent 30%),
    linear-gradient(145deg, rgba(20, 167, 255, 0.92), rgba(11, 58, 99, 0.98));
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.28);
  font-size: 34px;
  font-weight: 950;
}

.login-hero h1 {
  margin: 18px 0 0;
  color: #fff;
  font-size: 24px;
  line-height: 1.25;
  font-weight: 950;
}

.login-hero p {
  max-width: 300px;
  margin: 10px auto 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  line-height: 1.65;
}

.login-card {
  position: relative;
  z-index: 2;
  margin: -46px 0 0;
  padding: 16px;
  border: 1px solid rgba(20, 167, 255, 0.12);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow);
}

.login-card-title strong,
.login-card-title span {
  display: block;
}

.login-card-title strong {
  color: var(--brand-dark);
  font-size: 18px;
  line-height: 1.3;
  font-weight: 950;
}

.login-card-title span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.login-auth-btn {
  margin-top: 16px;
}

.login-consent {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 8px;
  align-items: start;
  margin-top: 13px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.login-consent input {
  width: 16px;
  height: 16px;
  margin: 2px 0 0;
  accent-color: var(--success);
}

.login-consent button {
  padding: 0;
  color: var(--brand-dark);
  background: transparent;
  font-size: inherit;
  font-weight: 850;
}

.mine-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.mine-stats div {
  min-height: 72px;
  padding: 12px 10px;
  border: 1px solid rgba(20, 167, 255, 0.12);
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--shadow);
  text-align: center;
}

.mine-stats strong,
.mine-stats span {
  display: block;
}

.mine-stats strong {
  color: var(--brand-dark);
  font-size: 22px;
  line-height: 1.1;
  font-weight: 950;
}

.mine-stats span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
}

.mine-menu {
  display: grid;
  gap: 10px;
}

.mine-menu-item {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 22px;
  align-items: center;
  gap: 11px;
  width: 100%;
  min-height: 68px;
  padding: 12px;
  border: 1px solid rgba(217, 226, 238, 0.9);
  border-radius: 14px;
  background:
    radial-gradient(circle at 100% 0%, rgba(20, 167, 255, 0.1), transparent 32%),
    #fff;
  box-shadow: var(--shadow);
  text-align: left;
}

.mine-menu-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 15px;
  color: #fff;
  background: linear-gradient(145deg, #0b3a63, #14a7ff);
  box-shadow: 0 10px 18px rgba(20, 167, 255, 0.2);
}

.mine-menu-icon svg {
  width: 19px;
  height: 19px;
}

.mine-menu-copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.mine-menu-copy strong {
  color: var(--ink);
  font-size: 14px;
  line-height: 1.35;
}

.mine-menu-copy span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.agreement-hero {
  position: relative;
  margin: -12px -15px 0;
  padding: 14px 15px 24px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 72% 12%, rgba(20, 167, 255, 0.42), transparent 28%),
    radial-gradient(circle at 10% 115%, rgba(216, 173, 98, 0.24), transparent 30%),
    linear-gradient(160deg, #081522 0%, #10395b 54%, #0e679e 100%);
}

.agreement-hero::before {
  position: absolute;
  right: -60px;
  top: 64px;
  width: 240px;
  height: 18px;
  border-radius: 999px;
  transform: rotate(-38deg);
  background: linear-gradient(90deg, transparent, rgba(230, 239, 247, 0.84), rgba(20, 167, 255, 0.4), transparent);
  box-shadow: 0 0 32px rgba(20, 167, 255, 0.42);
  pointer-events: none;
  content: "";
}

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

.agreement-hero h1 {
  margin: 18px 0 0;
  font-size: 24px;
  line-height: 1.28;
  font-weight: 950;
}

.agreement-hero p {
  max-width: 330px;
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  line-height: 1.6;
}

.agreement-hero > span {
  display: inline-flex;
  margin-top: 12px;
  padding: 5px 9px;
  border: 1px solid rgba(216, 173, 98, 0.34);
  border-radius: 999px;
  color: #fff2c7;
  background: rgba(255, 255, 255, 0.09);
  font-size: 11px;
  font-weight: 800;
}

.agreement-card {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 12px;
  margin-top: -12px;
  padding: 14px;
  border: 1px solid rgba(217, 226, 238, 0.9);
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow);
}

.agreement-section {
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.agreement-section:last-of-type {
  border-bottom: 0;
}

.agreement-section h2 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.45;
  font-weight: 900;
}

.agreement-section p {
  margin: 7px 0 0;
  color: #3f536c;
  font-size: 13px;
  line-height: 1.82;
}

.order-card {
  display: grid;
  gap: 9px;
}

.order-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  color: var(--muted);
  font-size: 12px;
}

.order-badge.pending {
  color: #8a4b00;
  background: #fff3d7;
}

.order-badge.processing {
  color: #175dbf;
  background: var(--brand-soft);
}

.order-badge.done {
  color: #047857;
  background: #dff7ec;
}

.order-badge.cancelled {
  color: #9f1239;
  background: #ffe4e6;
}

.progress-list {
  display: grid;
  gap: 0;
}

.progress-item {
  position: relative;
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 10px;
  padding-bottom: 16px;
}

.progress-item:last-child {
  padding-bottom: 0;
}

.progress-item::before {
  position: absolute;
  top: 30px;
  bottom: 0;
  left: 14px;
  width: 2px;
  background: var(--line);
  content: "";
}

.progress-item:last-child::before {
  display: none;
}

.progress-dot {
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: #fff;
  background: #cbd5e1;
  font-size: 12px;
  font-weight: 900;
}

.progress-item.active .progress-dot,
.progress-item.done .progress-dot {
  background: var(--brand);
}

.progress-item.done::before {
  background: var(--brand);
}

.empty-state {
  padding: 30px 18px;
  text-align: center;
}

.empty-state strong {
  display: block;
  font-size: 16px;
}

.empty-state p {
  margin: 7px 0 14px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.modal-mask {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 16px;
  background: rgba(15, 23, 42, 0.5);
}

.modal-box {
  width: 100%;
  max-width: 398px;
  padding: 16px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.24);
}

.modal-box h2 {
  margin: 0;
  font-size: 18px;
}

.modal-box p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.modal-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 16px;
}

.toast-root {
  position: fixed;
  right: 50%;
  bottom: calc(82px + env(safe-area-inset-bottom));
  z-index: 70;
  display: grid;
  gap: 8px;
  width: min(360px, calc(100vw - 32px));
  transform: translateX(50%);
  pointer-events: none;
}

.toast {
  padding: 10px 13px;
  border-radius: 12px;
  color: #fff;
  background: rgba(15, 23, 42, 0.92);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.18);
  font-size: 13px;
  text-align: center;
}

.hidden {
  display: none !important;
}

@media (max-width: 360px) {
  .page {
    padding-right: 12px;
    padding-left: 12px;
  }

  .top-band,
  .detail-hero {
    margin-right: -12px;
    margin-left: -12px;
    padding-right: 12px;
    padding-left: 12px;
  }

  .account-card {
    grid-template-columns: 100px minmax(0, 1fr);
    gap: 9px;
  }

  .business-entry {
    padding-right: 4px;
    padding-left: 4px;
  }
}
