:root {
  --bg: #f4f6fa;
  --panel: #ffffff;
  --text: #182033;
  --muted: #7b8494;
  --line: #e5e9f0;
  --accent: #ff5b22;
  --accent-2: #1267e8;
  --success: #07823f;
  --warn: #b7791f;
  --danger: #d82d45;
  --shadow: 0 16px 34px rgba(22, 31, 49, .08);
  --soft-shadow: 0 8px 22px rgba(22, 31, 49, .055);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  height: 100%;
  min-height: 100%;
  background:
    linear-gradient(180deg, #e9edf4 0%, #dce2eb 100%);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  overflow: hidden;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.app-shell {
  width: min(430px, 100vw);
  height: 100vh;
  height: 100dvh;
  margin: 0 auto;
  background: var(--bg);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 60px rgba(13, 22, 38, .14);
}

.view {
  flex: 1 1 auto;
  min-height: 0;
  height: auto;
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 16px;
}

.page {
  min-height: 100%;
}

.mine-page {
  display: flex;
  flex-direction: column;
}

.mine-page > .header {
  order: 0;
}

.mine-page > .menu {
  order: 4;
}

.mine-page > .mine-tools {
  order: 2;
}

.mine-page > .mine-logout {
  order: 5;
}

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  height: 48px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  background: rgba(248, 250, 253, .94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.header-title {
  font-weight: 700;
  font-size: 17px;
  flex: 1;
  min-width: 0;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.icon-btn {
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--panel);
  color: var(--text);
  display: grid;
  place-items: center;
  box-shadow: 0 4px 12px rgba(22, 31, 49, .05);
}

.hero {
  padding: 14px;
  display: grid;
  gap: 10px;
}

.promo-strip {
  min-height: 92px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(255, 255, 255, .88)),
    linear-gradient(135deg, rgba(255, 91, 34, .14), rgba(18, 103, 232, .11));
  border-radius: 8px;
  padding: 16px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, .78);
  box-shadow: var(--shadow);
}

.home-banner {
  position: relative;
  min-height: 90px;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, .78);
  box-shadow: var(--shadow);
}

.home-banner-track {
  height: 90px;
  display: flex;
}

.home-banner.banner-count-2 .home-banner-track {
  width: 200%;
  animation: homeBanner2 7s infinite;
}

.home-banner.banner-count-3 .home-banner-track {
  width: 300%;
  animation: homeBanner3 10s infinite;
}

.home-banner-slide,
.home-banner-link {
  flex: 0 0 100%;
  height: 90px;
  display: block;
  color: inherit;
  text-decoration: none;
}

.home-banner.banner-count-2 .home-banner-slide,
.home-banner.banner-count-2 .home-banner-link {
  flex-basis: 50%;
}

.home-banner.banner-count-3 .home-banner-slide,
.home-banner.banner-count-3 .home-banner-link {
  flex-basis: 33.333333%;
}

.home-banner-slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.home-banner-placeholder {
  width: 100%;
  height: 100%;
  padding: 18px;
  display: grid;
  align-content: center;
  gap: 6px;
  color: #fff;
  background: linear-gradient(135deg, #ff6b35, #f59e0b);
}

.home-banner-placeholder strong {
  font-size: 20px;
}

.home-banner-placeholder span {
  font-size: 13px;
  opacity: .92;
}

.home-banner-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 8px;
  display: flex;
  justify-content: center;
  gap: 6px;
  pointer-events: none;
}

.home-banner-dots span {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 1px 4px rgba(13, 22, 38, .18);
}

@keyframes homeBanner2 {
  0%, 42% { transform: translateX(0); }
  50%, 92% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

@keyframes homeBanner3 {
  0%, 28% { transform: translateX(0); }
  34%, 62% { transform: translateX(-33.333333%); }
  68%, 94% { transform: translateX(-66.666666%); }
  100% { transform: translateX(0); }
}

.promo-title {
  font-weight: 800;
  font-size: 18px;
}

.promo-sub {
  color: var(--muted);
  margin-top: 6px;
  font-size: 13px;
}

.coupon-art {
  width: 76px;
  height: 54px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 0 50%, var(--panel) 0 8px, transparent 9px),
    radial-gradient(circle at 100% 50%, var(--panel) 0 8px, transparent 9px),
    linear-gradient(135deg, #ff6b35, #f7b733);
  position: relative;
}

.coupon-art::before,
.coupon-art::after {
  content: "";
  position: absolute;
  top: 10px;
  bottom: 10px;
  width: 1px;
  border-left: 1px dashed rgba(255, 255, 255, .85);
}

.auth-page {
  min-height: 100vh;
  padding: 0 0 32px;
  background:
    radial-gradient(circle at 68% 50%, rgba(255, 255, 255, .82) 0 54px, transparent 116px),
    linear-gradient(180deg, #fff 0%, #fff8f8 100%);
  position: relative;
  overflow: hidden;
}

.auth-screen .tabbar {
  display: none;
}

.auth-hero {
  position: relative;
  min-height: 270px;
  padding: 10px 20px 0;
  color: #fff;
  background:
    radial-gradient(circle at 72% 8%, rgba(170, 47, 198, .36) 0 58px, transparent 59px),
    radial-gradient(circle at 18% 54%, rgba(255, 255, 255, .22) 0 62px, transparent 63px),
    radial-gradient(circle at 82% 70%, rgba(255, 221, 130, .38) 0 118px, transparent 119px),
    linear-gradient(145deg, #f94f74 0%, #ff7759 48%, #ff9a56 100%);
}

.auth-hero::before,
.auth-hero::after {
  content: "";
  position: absolute;
  left: -8%;
  right: -8%;
  bottom: -1px;
  height: 118px;
  background: #fff;
  pointer-events: none;
}

.auth-hero::before {
  border-radius: 52% 48% 0 0 / 72% 68% 0 0;
  transform: translateY(38px) rotate(-4deg);
}

.auth-hero::after {
  left: 45%;
  right: -20%;
  bottom: 12px;
  height: 100px;
  border-radius: 55% 45% 0 0 / 90% 70% 0 0;
  transform: rotate(7deg);
  opacity: .98;
}

.auth-brand {
  position: relative;
  z-index: 1;
  text-align: center;
  padding-top: 58px;
}

.auth-logo {
  display: none;
}

.auth-brand h1 {
  margin: 0;
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 0;
  text-shadow: 0 6px 18px rgba(150, 41, 48, .18);
}

.auth-brand p {
  margin: 8px auto 0;
  color: rgba(255, 255, 255, .88);
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: 0;
}

.auth-card {
  position: relative;
  z-index: 2;
  margin: -20px 38px 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}

.auth-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 22px;
}

.auth-tabs button {
  border: 0;
  border-bottom: 2px solid transparent;
  background: transparent;
  border-radius: 0;
  height: 34px;
  color: #d98a7f;
  font-size: 14px;
}

.auth-tabs button.active {
  border-color: #ff8b68;
  color: #ff7a61;
  background: transparent;
  font-weight: 700;
}

.auth-login-types {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin: -16px 0 24px;
}

.auth-login-types button {
  height: 26px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #e09a8d;
  font-size: 13px;
}

.auth-login-types button.active {
  color: #ff7f66;
  background: transparent;
  font-weight: 700;
}

.auth-link-button {
  display: block;
  margin: -12px 0 20px auto;
  padding: 0;
  border: 0;
  background: transparent;
  color: #ff7f66;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
}

.auth-field {
  position: relative;
  display: block;
  margin-bottom: 26px;
  padding-left: 34px;
  color: #c8a09b;
  font-size: 0;
  border-bottom: 1px solid rgba(227, 190, 184, .48);
}

.auth-field::before {
  position: absolute;
  left: 0;
  top: 10px;
  width: 22px;
  text-align: center;
  color: #f2a493;
  font-size: 19px;
  line-height: 1;
}

.auth-field-phone::before {
  content: "□";
  font-size: 22px;
  transform: scaleX(.72);
}

.auth-field-lock::before {
  content: "♙";
  font-size: 20px;
}

.auth-field-user::before {
  content: "○";
}

.auth-field-code::before {
  content: "✉";
  font-size: 17px;
}

.auth-field > span:first-child {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.auth-field input,
.auth-field select {
  width: 100%;
  height: 46px;
  border: 0;
  border-radius: 0;
  padding: 0;
  color: var(--text);
  background: transparent;
  outline: none;
  font-size: 15px;
}

.auth-field select {
  appearance: none;
  -webkit-appearance: none;
  display: block;
  cursor: pointer;
  line-height: 46px;
  padding-right: 28px;
  color: #b9938d;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.auth-field select option {
  color: var(--text);
  background: #fff;
}

.auth-field-province::before {
  content: "\25CE";
  font-size: 17px;
}

.auth-field-province::after {
  content: "\2304";
  position: absolute;
  right: 0;
  top: 11px;
  width: 22px;
  height: 22px;
  line-height: 20px;
  text-align: center;
  color: #e09a8d;
  font-size: 18px;
  pointer-events: none;
}

.auth-field input::placeholder {
  color: #c9aaa5;
  opacity: .9;
}

.auth-field input:focus {
  box-shadow: none;
}

.auth-field:focus-within {
  border-bottom-color: rgba(255, 127, 102, .72);
}

.sms-code-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 96px;
  gap: 8px;
  align-items: center;
}

.sms-code-row .plain {
  height: 34px;
  border: 0;
  background: transparent;
  color: #e09a8d;
  font-weight: 700;
  font-size: 13px;
  line-height: 34px;
  padding: 0;
  white-space: nowrap;
  text-align: right;
}

.auth-submit {
  display: block;
  width: 68%;
  height: 52px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, #ff9855 0%, #ff6f6b 100%);
  color: #fff;
  font-weight: 800;
  margin: 42px auto 0;
  box-shadow: 0 12px 28px rgba(255, 112, 88, .28);
  font-size: 16px;
}

.auth-agreement {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 4px 0 -18px;
  color: #b39a96;
  font-size: 12px;
  line-height: 1.5;
}

.auth-agreement-check {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.auth-agreement input {
  width: 14px;
  height: 14px;
  margin: 0;
  accent-color: #ff6f52;
}

.auth-agreement button {
  border: 0;
  padding: 0;
  background: transparent;
  color: #ff6f52;
  font: inherit;
  font-weight: 700;
}

.auth-submit:active {
  transform: translateY(1px);
}

.auth-links {
  margin: 16px 0 0;
  text-align: center;
  color: #e09a8d;
  font-size: 13px;
}

.auth-tip {
  margin: 18px auto 0;
  max-width: 310px;
  color: #b39a96;
  font-size: 12px;
  line-height: 1.7;
  text-align: center;
}

.user-strip {
  margin: 12px 14px 0;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .92);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
}

.user-strip strong,
.user-strip span {
  display: block;
}

.user-strip span {
  color: var(--muted);
  font-size: 12px;
  margin-top: 3px;
}

.mine-user {
  margin-top: 0;
  border-radius: 0;
  border-left: 0;
  border-right: 0;
}

.logout-btn {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--muted);
  border-radius: 8px;
  height: 34px;
  padding: 0 12px;
}

.empty-page {
  margin: 18px 14px;
  padding: 34px 14px;
  text-align: center;
  color: var(--muted);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.agreement-card {
  margin: 14px;
  padding: 16px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.agreement-content {
  margin: 0;
  color: var(--ink);
  font-family: inherit;
  font-size: 14px;
  line-height: 1.85;
  white-space: pre-wrap;
  word-break: break-word;
}

.agreement-actions {
  margin-top: 18px;
  padding: 4px 0 2px;
}

.agreement-accept-btn {
  width: 100%;
  height: 46px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, #ff9855 0%, #ff5a35 100%);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  box-shadow: 0 12px 26px rgba(255, 91, 53, .24);
}

.coupon-art::before {
  left: 22px;
}

.coupon-art::after {
  right: 22px;
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding: 0 12px 10px;
  min-width: 0;
}

.quick {
  position: relative;
  height: 62px;
  min-width: 0;
  border: 1px solid rgba(229, 233, 240, .8);
  border-radius: 8px;
  background: var(--panel);
  color: var(--text);
  display: grid;
  place-items: center;
  gap: 3px;
  padding: 6px 2px;
  box-shadow: var(--soft-shadow);
  font-size: 12px;
  line-height: 1.1;
}

.quick span:last-child {
  max-width: 100%;
  white-space: nowrap;
}

.quick-icon {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  color: var(--accent);
  font-size: 20px;
}

.quick-badge {
  position: absolute;
  top: 5px;
  right: 2px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border: 2px solid var(--panel);
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ef4444;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  pointer-events: none;
  box-sizing: border-box;
}

.section-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 14px 10px;
}

.section-head h2 {
  margin: 0;
  font-size: 19px;
}

.spacer {
  flex: 1;
}

.select {
  height: 32px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--panel);
  padding: 0 10px;
  color: var(--text);
}

.filter-row {
  display: flex;
  flex-wrap: nowrap;
  gap: 5px;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0 calc(12px + env(safe-area-inset-right)) 8px 12px;
  scrollbar-width: none;
  white-space: nowrap;
  scroll-padding-inline: 14px;
  overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;
}

.filter-row::-webkit-scrollbar {
  display: none;
}

.chip {
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--panel);
  padding: 2px 7px;
  white-space: nowrap;
  color: #414753;
  min-width: max-content;
  min-height: 20px;
  font-size: 11px;
  line-height: 1.2;
}

.chip.active {
  border-color: var(--accent);
  color: var(--accent);
  background: #fff2ec;
  box-shadow: 0 2px 6px rgba(255, 91, 34, .10);
}

.list {
  display: grid;
  gap: 12px;
  padding: 0 14px;
}

.ticket-list {
  gap: 6px;
}

.ticket {
  background: var(--panel);
  border-radius: 8px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  padding: 14px;
  box-shadow: var(--soft-shadow);
  border: 1px solid rgba(229, 233, 240, .72);
  position: relative;
  overflow: hidden;
}

.ticket.unmergeable::before {
  content: "不能合并拆分";
  position: absolute;
  right: 0;
  top: 0;
  background: #242d47;
  color: white;
  font-size: 11px;
  padding: 4px 8px;
  border-bottom-left-radius: 8px;
}

.ticket-main {
  min-width: 0;
}

.owner,
.meta {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.ticket-row {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 7px 0;
}

.ticket-badge {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: linear-gradient(180deg, #fff4ed, #ffe9dc);
  color: var(--accent);
  display: grid;
  place-items: center;
  font-weight: 800;
  flex: 0 0 auto;
}

.ticket-title {
  font-size: 13px;
  color: #fff;
  background: linear-gradient(90deg, #f59a23, #ffb13b);
  padding: 2px 7px;
  border-radius: 4px;
  display: inline-block;
}

.compact-ticket-card {
  gap: 8px;
  padding: 10px 12px;
}

.compact-ticket-card .owner,
.compact-ticket-card .meta {
  font-size: 11px;
  line-height: 1.35;
}

.compact-ticket-card .ticket-row {
  gap: 8px;
  margin: 5px 0;
}

.compact-ticket-card .ticket-badge {
  width: 34px;
  height: 34px;
  border-radius: 7px;
}

.ticket-product-thumb {
  overflow: hidden;
  background: #f3f6fb;
  color: #6b7280;
}

.ticket-product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ticket-product-placeholder {
  background: linear-gradient(180deg, #fff4ed, #ffe9dc);
  color: var(--accent);
}

.compact-ticket-card .amount {
  margin-top: 2px;
  font-size: 12px;
}

.ticket-business-line {
  color: var(--text);
  max-width: 140px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.compact-ticket-card .ticket-side {
  min-width: 72px;
}

.compact-ticket-card .price {
  font-size: 20px;
  line-height: 1.15;
}

.compact-ticket-card .primary,
.compact-ticket-card .secondary {
  min-height: 32px;
  padding: 7px 12px;
  font-size: 13px;
}

.star-rating {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  white-space: nowrap;
}

.star-rating .stars {
  display: inline-flex;
  align-items: center;
  gap: 1px;
}

.star-layer {
  position: relative;
  display: inline-block;
  width: 13px;
  height: 13px;
  line-height: 13px;
  font-size: 13px;
}

.star-base,
.star-fill {
  position: absolute;
  inset: 0;
  display: block;
}

.star-base {
  color: #e4e5e9;
}

.star-fill {
  color: #ffca3c;
  overflow: hidden;
}

.star-rating .rating-value {
  color: #1c2a44;
  font-weight: 700;
}

.star-rating.compact {
  gap: 3px;
  font-size: 11px;
}

.star-rating.compact .star-layer {
  width: 12px;
  height: 12px;
  line-height: 12px;
  font-size: 12px;
}

.amount {
  margin-top: 4px;
  font-size: 13px;
}

.ticket-side {
  display: grid;
  align-content: center;
  justify-items: end;
  min-width: 78px;
  max-width: 96px;
}

.price {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.primary,
.secondary,
.danger,
.success {
  border: 0;
  border-radius: 999px;
  padding: 9px 14px;
  color: #fff;
  min-height: 36px;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(18, 103, 232, .16);
  white-space: nowrap;
}

.primary {
  background: linear-gradient(180deg, #ff6b35, var(--accent));
}

.secondary {
  background: linear-gradient(180deg, #287df4, var(--accent-2));
}

.secondary.muted {
  background: linear-gradient(180deg, #a8b0bd, #7f8794);
  box-shadow: none;
}

.secondary.muted:disabled {
  opacity: 1;
}

.primary.muted:disabled {
  background: linear-gradient(180deg, #a8b0bd, #7f8794);
  box-shadow: none;
  opacity: 1;
}

button:disabled {
  opacity: .45;
  cursor: not-allowed;
}

.danger {
  background: linear-gradient(180deg, #ff6a3a, var(--accent));
}

.success {
  background: var(--success);
}

.plain {
  border: 1px solid var(--line);
  background: var(--panel);
  color: var(--text);
  border-radius: 8px;
  min-height: 36px;
  padding: 7px 12px;
}

.close-lock-btn {
  min-height: 30px;
  padding: 5px 10px;
  font-size: 13px;
}

.record-compact {
  gap: 8px;
  padding: 10px 12px;
}

.record-compact .owner,
.record-compact .meta {
  font-size: 11px;
  line-height: 1.35;
}

.record-compact .ticket-row {
  gap: 8px;
  margin: 5px 0;
}

.record-compact .ticket-badge {
  width: 34px;
  height: 34px;
  border-radius: 7px;
}

.record-compact .amount {
  margin-top: 2px;
  font-size: 12px;
}

.record-compact .ticket-side {
  min-width: 68px;
}

.record-compact .price {
  font-size: 20px;
}

.record-compact .status {
  min-height: 32px;
  padding: 7px 12px;
  font-size: 13px;
}

.detail-card {
  margin: 14px;
  background: var(--panel);
  border-radius: 8px;
  padding: 14px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(229, 233, 240, .72);
}

.my-ticket-list {
  padding-bottom: 112px;
}

.ticket.selected {
  outline: 2px solid rgba(18, 103, 232, .36);
  background: #f2f7ff;
}

.select-ticket {
  width: fit-content;
  margin-bottom: 8px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text);
  font-size: 13px;
}

.select-ticket input {
  width: 18px;
  height: 18px;
  accent-color: var(--accent);
}

.operate-panel {
  margin: 14px;
  padding: 14px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--line);
  display: grid;
  gap: 10px;
  box-shadow: var(--soft-shadow);
}

.operate-summary {
  color: var(--accent-2);
  font-weight: 700;
}

.warning-text {
  color: var(--danger);
  background: #fff1f2;
  border: 1px solid #ffd3d9;
  border-radius: 8px;
  padding: 8px 10px;
  font-size: 13px;
}

.split-row {
  display: grid;
  gap: 8px;
}

.bottom-actions {
  position: sticky;
  bottom: 64px;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 22vw, 96px);
  align-items: center;
  padding: 18px 64px 22px;
  background: linear-gradient(180deg, rgba(244, 246, 250, 0), rgba(244, 246, 250, .96) 34%, var(--bg));
}

.bottom-actions button {
  min-height: 34px;
  border-radius: 4px;
  padding: 7px 14px;
  font-size: 15px;
  font-weight: 700;
  box-shadow: 0 10px 22px rgba(22, 31, 49, .12);
}

.bottom-actions .primary {
  background: linear-gradient(180deg, #2480ff, var(--accent-2));
}

.pay-code {
  margin: 12px 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 230px;
  display: grid;
  place-items: center;
  gap: 10px;
  padding: 16px;
  background: repeating-linear-gradient(45deg, #f8fafc 0 12px, #eef2f6 12px 24px);
}

.pay-code-head,
.pay-code-foot {
  width: 100%;
  display: grid;
  gap: 4px;
  text-align: center;
}

.pay-code-head span,
.pay-code-foot {
  color: var(--muted);
  font-size: 12px;
}

.detail-card .detail-ticket {
  align-items: center;
}

.detail-ticket .ticket-side {
  justify-content: center;
}

.detail-ticket .price {
  font-size: 32px;
  line-height: 1;
}

.detail-pay-code {
  height: min(58vh, 520px);
  min-height: 430px;
  padding: 18px;
  align-content: start;
  overflow-y: auto;
  overflow-x: hidden;
}

.product-profile-card {
  width: min(100%, 370px);
  margin: 0 auto 14px;
}

.product-profile-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  background: #f8fafc;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.product-profile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-profile-description {
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.55;
  color: var(--text);
  white-space: pre-wrap;
}

.detail-pay-code-img {
  width: min(100%, 370px);
  max-height: none;
  object-fit: contain;
  display: block;
  margin: auto;
  padding: 10px;
  background: #fff;
  border: 1px solid var(--line);
}

.qr {
  width: 190px;
  height: 190px;
  background:
    linear-gradient(90deg, #111 12px, transparent 12px) 0 0 / 24px 24px,
    linear-gradient(#111 12px, transparent 12px) 0 0 / 24px 24px,
    #fff;
  border: 12px solid #fff;
  box-shadow: 0 0 0 1px var(--line);
}

.merchant-qr {
  position: relative;
  background:
    linear-gradient(90deg, #111 12px, transparent 12px) 0 0 / 24px 24px,
    linear-gradient(#111 12px, transparent 12px) 0 0 / 24px 24px,
    linear-gradient(135deg, #f7fbff, #fff);
}

.merchant-qr span {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: var(--accent-2);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
}

.dark-page {
  background: #101010;
  color: #e9e9e9;
  padding-bottom: 24px;
}

.dark-page .header {
  background: #101010;
  color: #fff;
  border-bottom-color: #202020;
}

.review-page {
  background: var(--bg);
  color: var(--text);
  padding-bottom: 20px;
}

.review-page .header {
  background: rgba(255, 255, 255, .84);
  color: var(--text);
  border-bottom-color: var(--line);
}

.review-page .list {
  padding-top: 14px;
}

.review-page .ticket-list {
  gap: 6px;
}

.review-record {
  background: var(--panel);
  border-color: rgba(229, 233, 240, .9);
  color: var(--text);
  box-shadow: var(--soft-shadow);
}

.review-record .owner,
.review-record .meta {
  color: var(--muted);
}

.review-record .amount {
  color: var(--text);
}

.review-record .price {
  color: var(--text);
}

.review-record .ticket-side {
  border-left: 1px dashed var(--line);
  padding-left: 18px;
}

.cert-card {
  margin: 14px 10px;
  padding: 16px;
  border-radius: 8px;
  background: #1b1b1b;
  border: 1px solid #242424;
}

.cert-title {
  margin: 8px 0 10px;
  color: #d8d8d8;
  font-weight: 700;
}

.cert-title span,
.cert-field label span {
  color: #ff4d3d;
  margin-right: 2px;
}

.upload-grid {
  display: grid;
  grid-template-columns: 112px;
  gap: 10px;
  margin-bottom: 22px;
}

.cert-upload-overview {
  margin: 12px 14px 0;
  padding: 11px 12px;
  border: 1px solid #343434;
  border-radius: 6px;
  background: #1b1b1b;
  color: #d8d8d8;
  display: grid;
  gap: 4px;
}

.cert-upload-overview strong {
  color: #f5f5f5;
  font-size: 14px;
}

.cert-upload-overview span {
  color: #999;
  font-size: 12px;
  line-height: 1.45;
}

.cert-upload-overview.working {
  border-color: rgba(45, 129, 247, .58);
  background: rgba(35, 91, 168, .16);
}

.cert-upload-overview.success {
  border-color: rgba(30, 167, 94, .55);
  background: rgba(20, 112, 62, .16);
}

.cert-upload-overview.danger {
  border-color: rgba(231, 76, 60, .62);
  background: rgba(151, 43, 34, .18);
}

.cert-upload-item {
  min-width: 0;
  display: grid;
  gap: 6px;
}

.cert-upload-status {
  min-height: 20px;
  color: #999;
  font-size: 12px;
  line-height: 1.35;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.cert-upload-status.queued,
.cert-upload-status.preparing,
.cert-upload-status.authorizing,
.cert-upload-status.uploading,
.cert-upload-status.verifying {
  color: #7fb5ff;
}

.cert-upload-status.success {
  color: #54c884;
}

.cert-upload-status.error {
  color: #ff796e;
}

.cert-upload-status button {
  flex: 0 0 auto;
  min-height: 26px;
  padding: 3px 10px;
  border: 1px solid #a9423a;
  border-radius: 4px;
  background: #6f2924;
  color: #fff;
  cursor: pointer;
}

.cert-upload-status button[hidden] {
  display: none;
}

.upload-grid.two {
  grid-template-columns: 1fr 1fr;
}

.upload-thumb,
.upload-empty {
  width: 100%;
  min-height: 86px;
  border: 1px solid #454545;
  border-radius: 4px;
  background: #303030;
  color: #d46a3d;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 7px;
  position: relative;
  overflow: hidden;
  font-size: 13px;
  cursor: pointer;
}

.upload-thumb span {
  position: relative;
  z-index: 1;
  color: #e36b52;
  font-weight: 600;
  text-align: center;
}

.upload-thumb em {
  display: block;
  font-style: normal;
  font-size: 12px;
  color: rgba(255, 138, 92, .9);
  position: relative;
  z-index: 1;
}

.upload-thumb b {
  position: absolute;
  right: 8px;
  bottom: 8px;
  padding: 3px 7px;
  border-radius: 999px;
  background: rgba(7, 130, 63, .92);
  color: #fff;
  font-size: 12px;
}

.cert-upload-badge.queued,
.cert-upload-badge.preparing,
.cert-upload-badge.authorizing,
.cert-upload-badge.uploading,
.cert-upload-badge.verifying {
  background: rgba(31, 103, 201, .94);
}

.cert-upload-badge.error {
  background: rgba(184, 48, 39, .94);
}

.upload-thumb img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  display: block;
}

.file-input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.upload-grid.bank-upload {
  grid-template-columns: 1fr;
}

.upload-thumb.id-front {
  background: #303030;
}

.upload-thumb.id-back {
  background: #303030;
}

.upload-thumb.shop {
  background: #303030;
}

.upload-thumb.license {
  width: 180px;
  min-height: 116px;
  background: #303030;
}

.upload-thumb.pay-code {
  width: 112px;
  min-height: 112px;
  margin: 0;
  padding: 0;
  background: #303030;
}

.upload-thumb.pay-code em {
  position: relative;
  left: auto;
  right: auto;
  bottom: auto;
  text-align: center;
}

.merchant-qr.real-code {
  background: #fff;
  padding: 10px;
}

.merchant-qr.real-code img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  border-radius: 4px;
}

.cert-section {
  margin: 22px 0 12px;
  font-size: 18px;
}

.cert-field {
  padding: 12px 0;
  border-bottom: 1px solid #303030;
}

.cert-field label {
  display: block;
  color: #d4d4d4;
  margin-bottom: 8px;
  font-weight: 700;
}

.cert-input {
  width: 100%;
  min-height: 42px;
  border: 1px solid #3a3a3a;
  border-radius: 6px;
  background: #121212;
  color: #f4f4f4;
  padding: 0 11px;
  outline: none;
}

.cert-textarea {
  min-height: 82px;
  padding: 10px 11px;
  resize: vertical;
  line-height: 1.5;
}

.cert-input:focus {
  border-color: #ff6b35;
  box-shadow: 0 0 0 3px rgba(255, 107, 53, .14);
}

.cert-input::placeholder {
  color: #777;
}

.cert-status-card {
  border-color: rgba(255, 107, 53, .45);
  background: #201a17;
}

.cert-review-head strong,
.cert-review-head span {
  display: block;
}

.cert-review-head strong {
  color: #fff;
  font-size: 18px;
}

.cert-review-head span {
  color: #b8b8b8;
  margin-top: 6px;
  font-size: 13px;
}

.cert-review-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.cert-review-item {
  display: grid;
  gap: 8px;
}

.cert-review-item strong {
  color: #e8e8e8;
  font-size: 13px;
}

.cert-review-thumb {
  min-height: 104px;
  border-radius: 6px;
  background: #262626;
  color: #777;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.cert-review-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cert-field.readonly div {
  color: #f4f4f4;
  line-height: 1.5;
}

.plain.light {
  background: #fff;
  color: var(--text);
  border: 1px solid var(--line);
}

.cert-submit {
  padding: 14px 20px 28px;
  background: #101010;
}

.cert-submit button {
  width: 100%;
  border-radius: 999px;
  min-height: 44px;
  font-size: 16px;
}

.notice {
  margin: 14px;
  padding: 12px 13px;
  border-radius: 8px;
  background: #fff8e8;
  color: #6e4a13;
  border: 1px solid #f4dfb1;
  line-height: 1.55;
  font-size: 13px;
}

.form {
  display: grid;
  gap: 10px;
}

.input,
.textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  padding: 10px 11px;
  outline: none;
}

.input:focus,
.textarea:focus,
.select:focus {
  border-color: rgba(18, 103, 232, .55);
  box-shadow: 0 0 0 3px rgba(18, 103, 232, .1);
}

.textarea {
  min-height: 88px;
  resize: vertical;
}

.hidden-file-input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.proof-upload-box {
  min-height: 96px;
  border: 1px dashed rgba(255, 78, 36, .55);
  border-radius: 10px;
  background: #fff7f2;
  color: var(--primary);
  display: grid;
  place-items: center;
  cursor: pointer;
  overflow: hidden;
  font-weight: 700;
}

.proof-upload-preview {
  width: 100%;
  max-height: 180px;
  object-fit: contain;
  background: #fff;
}

.proof-upload-preview.hidden {
  display: none;
}

.record {
  background: var(--panel);
  border-radius: 8px;
  padding: 14px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  box-shadow: var(--soft-shadow);
  border: 1px solid rgba(229, 233, 240, .72);
}

.status {
  border-radius: 999px;
  color: white;
  padding: 5px 10px;
  font-size: 12px;
  align-self: center;
  border: 0;
  cursor: pointer;
  font-weight: 700;
  min-width: 68px;
}

.status.confirmed {
  background: linear-gradient(180deg, #0d944b, var(--success));
}

.status.waiting {
  background: linear-gradient(180deg, #287df4, var(--accent-2));
}

.status.unpaid {
  background: var(--muted);
}

.status.locked {
  background: linear-gradient(180deg, #94a3b8, #64748b);
}

.status.frozen {
  background: linear-gradient(180deg, #475569, #1e293b);
}

.status.dispute {
  background: linear-gradient(180deg, #e14136, #c92826);
}

.profile {
  order: 1;
  margin: 14px;
  margin-bottom: 10px;
  padding: 18px 14px 10px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.98), rgba(255,255,255,.9)),
    linear-gradient(135deg, rgba(18, 103, 232, .12), rgba(255, 91, 34, .08));
  border-radius: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  box-shadow: 0 14px 30px rgba(17, 24, 39, .08);
}

.profile > div:nth-child(2) {
  min-width: 0;
  flex: 1 1 auto;
}

.profile > div:nth-child(2) strong,
.profile > div:nth-child(2) .meta {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.profile-rating {
  flex: 0 0 auto;
  align-self: flex-start;
  padding-top: 2px;
}

.profile-rating .star-rating {
  padding: 3px 5px;
  border-radius: 6px;
  background: rgba(255, 255, 255, .72);
}

.credit-inline {
  flex: 0 0 100%;
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  padding-top: 2px;
  color: #657085;
  font-size: 12px;
  line-height: 1.35;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.credit-inline span {
  min-width: 0;
}

.credit-inline span + span::before {
  content: "｜";
  margin-right: 8px;
  color: #c6ccd6;
}

.credit-inline strong {
  color: #152033;
  font-weight: 800;
}

.credit-guide-link {
  flex: 0 0 auto;
  margin-left: auto;
  padding: 0;
  border: 0;
  background: transparent;
  color: #1677ff;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
}

.mine-tools {
  margin: 0 14px 10px;
  padding: 10px 12px 12px;
  border: 1px solid rgba(229, 233, 240, .8);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--soft-shadow);
}

.mine-tools-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 9px;
}

.mine-tools-head strong { font-size: 14px; }
.mine-tools-head span { color: var(--muted); font-size: 11px; }

.mine-tool-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.mine-tool {
  min-width: 0;
  min-height: 58px;
  padding: 7px 3px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fafc;
  color: var(--text);
  display: grid;
  place-items: center;
  gap: 3px;
  font-size: 12px;
}

.mine-tool:active { transform: translateY(1px); }

.mine-tool-icon {
  color: var(--accent);
  font-size: 20px;
  line-height: 1;
}

.financial-calculator-page {
  min-height: 100%;
  background: #f3f6fa;
}

.calculator-tabs {
  position: sticky;
  top: 48px;
  z-index: 15;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 4px;
  margin: 10px 12px;
  padding: 4px;
  border: 1px solid #dce4ef;
  border-radius: 8px;
  background: rgba(255, 255, 255, .96);
  box-shadow: var(--soft-shadow);
}

.calculator-tabs button {
  min-width: 0;
  height: 38px;
  padding: 0 4px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: #5b6678;
  font-size: 12px;
  white-space: nowrap;
}

.calculator-tabs button.active {
  background: #1f73ea;
  color: #fff;
  font-weight: 800;
}

.calculator-workspace {
  margin: 0 12px 14px;
  overflow: hidden;
  border: 1px solid #dce4ef;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--soft-shadow);
}

.calculator-section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  padding: 14px 14px 11px;
  border-bottom: 1px solid #e5eaf1;
}

.calculator-section-head strong {
  flex: 0 0 auto;
  color: #172033;
  font-size: 15px;
}

.calculator-section-head span {
  min-width: 0;
  color: var(--muted);
  font-size: 10px;
  text-align: right;
}

.calculator-form {
  display: grid;
  gap: 11px;
  padding: 14px;
}

.calculator-field {
  min-width: 0;
  display: grid;
  gap: 5px;
}

.calculator-field > span {
  color: #344057;
  font-size: 12px;
  font-weight: 700;
}

.calculator-input-wrap {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto 34px;
  align-items: center;
  overflow: hidden;
  border: 1px solid #d5deea;
  border-radius: 7px;
  background: #fff;
}

.calculator-input-wrap:focus-within {
  border-color: #287df4;
  box-shadow: 0 0 0 2px rgba(40, 125, 244, .1);
}

.calculator-input-wrap .input {
  min-width: 0;
  height: 42px;
  padding: 0 10px;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.calculator-input-wrap small {
  padding: 0 5px;
  color: #788397;
  font-size: 11px;
}

.calculator-field-clear {
  width: 34px;
  height: 42px;
  padding: 0;
  border: 0;
  border-left: 1px solid #e5eaf1;
  border-radius: 0;
  background: #f7f9fc;
  color: #7b8798;
  font-size: 18px;
}

.calculator-term-input {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 76px;
  gap: 8px;
}

.calculator-term-input .input {
  min-width: 0;
  width: 100%;
  height: 42px;
  border: 1px solid #d5deea;
  border-radius: 7px;
  background: #fff;
}

.loan-methods {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
  padding: 0 14px 12px;
}

.loan-methods button {
  min-width: 0;
  height: 38px;
  padding: 0 3px;
  border: 1px solid #cdd8e8;
  border-radius: 7px;
  background: #fff;
  color: #3e4d66;
  font-size: 11px;
  white-space: nowrap;
}

.loan-methods button.active {
  border-color: #287df4;
  background: #eaf3ff;
  color: #1267d6;
  font-weight: 800;
}

.calculator-status {
  margin: 0 14px 10px;
  padding: 9px 10px;
  border-radius: 7px;
  background: #fff3f1;
  color: #c9362b;
  font-size: 11px;
  line-height: 1.5;
}

.calculator-actions {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 8px;
  padding: 0 14px 14px;
}

.calculator-actions button {
  min-width: 0;
  height: 42px;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 800;
}

.calculator-reset {
  border: 1px solid #d3ddea;
  background: #fff;
  color: #59667b;
}

.calculator-primary {
  border: 1px solid #1f73ea;
  background: #1f73ea;
  color: #fff;
}

.calculator-result {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0 14px 14px;
  overflow: hidden;
  border: 1px solid #dbe5f2;
  border-radius: 8px;
  background: #f7faff;
}

.calculator-result > div {
  min-width: 0;
  display: grid;
  gap: 4px;
  padding: 11px;
}

.calculator-result > div:nth-child(even) { border-left: 1px solid #e0e7f0; }
.calculator-result > div:nth-child(n+3) { border-top: 1px solid #e0e7f0; }
.calculator-result span { color: #6a768a; font-size: 10px; }
.calculator-result strong { overflow-wrap: anywhere; color: #172033; font-size: 15px; }

.calculator-result .calculator-result-emphasis {
  grid-column: 1 / -1;
  border-top: 1px solid #d8e5f5;
  border-left: 0;
  background: #eef6ff;
}

.calculator-result-emphasis strong {
  color: #1267d6;
  font-size: 22px;
}

.loan-schedule {
  margin: 0 14px 14px;
  overflow: hidden;
  border: 1px solid #dce4ef;
  border-radius: 8px;
}

.loan-schedule-toggle {
  width: 100%;
  height: 42px;
  padding: 0 11px;
  border: 0;
  background: #f8fafc;
  color: #243149;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 12px;
  font-weight: 800;
}

.loan-schedule-toggle small { color: var(--muted); font-size: 10px; font-weight: 400; }
.loan-schedule-body { border-top: 1px solid #dce4ef; }
.loan-schedule-scroll { max-width: 100%; overflow-x: auto; }

.loan-schedule table {
  width: 620px;
  border-collapse: collapse;
  background: #fff;
  font-size: 10px;
}

.loan-schedule th,
.loan-schedule td {
  height: 34px;
  padding: 5px 8px;
  border-bottom: 1px solid #edf0f5;
  text-align: right;
  white-space: nowrap;
}

.loan-schedule th:first-child,
.loan-schedule td:first-child { text-align: center; }
.loan-schedule th { background: #f8fafc; color: #59667b; }

.loan-schedule-pagination {
  display: grid;
  grid-template-columns: 74px 1fr 74px;
  align-items: center;
  gap: 8px;
  padding: 8px;
  background: #fff;
  text-align: center;
  font-size: 10px;
}

.loan-schedule-pagination button {
  height: 30px;
  border: 1px solid #d3ddea;
  border-radius: 6px;
  background: #fff;
  color: #3d4b61;
  font-size: 10px;
}

.loan-schedule-pagination button:disabled { opacity: .45; }

.calculator-disclaimer {
  margin: -2px 14px 14px;
  color: #7a8495;
  font-size: 10px;
  line-height: 1.55;
}

.income-stats-page { background: #f3f6fa; }

.income-summary {
  margin: 12px 12px 10px;
  padding: 16px;
  border: 1px solid #dce5f2;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--soft-shadow);
}

.income-summary-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  color: #526077;
  font-size: 13px;
}

.income-summary-head small {
  color: var(--muted);
  font-size: 10px;
  text-align: right;
}

.income-total {
  display: block;
  margin: 8px 0 14px;
  color: #14213a;
  font-size: 30px;
  line-height: 1.2;
}

.income-summary-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
  padding-top: 12px;
}

.income-summary-metrics span { display: grid; gap: 3px; }
.income-summary-metrics span + span { padding-left: 16px; border-left: 1px solid var(--line); }
.income-summary-metrics small { color: var(--muted); font-size: 11px; }
.income-summary-metrics strong { font-size: 15px; }

.income-filters {
  margin-bottom: 10px;
  padding: 0 12px;
}

.income-range-tabs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 5px;
}

.income-range-btn {
  min-width: 0;
  height: 34px;
  padding: 0 2px;
  border: 1px solid #d8e0ec;
  border-radius: 7px;
  background: #fff;
  color: #536078;
  font-size: 11px;
  white-space: nowrap;
}

.income-range-btn.active {
  border-color: #287df4;
  background: #eaf3ff;
  color: #1267d6;
  font-weight: 700;
}

.income-custom-range {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) 58px;
  gap: 7px;
  margin-top: 8px;
}

.income-custom-range label { min-width: 0; display: grid; gap: 4px; }
.income-custom-range label span { color: var(--muted); font-size: 10px; }
.income-custom-range input,
.income-custom-range button {
  min-width: 0;
  width: 100%;
  height: 36px;
  border: 1px solid #d8e0ec;
  border-radius: 7px;
  background: #fff;
  font-size: 11px;
}

.income-custom-range input { padding: 0 6px; }
.income-custom-range button { align-self: end; border-color: #287df4; background: #287df4; color: #fff; font-weight: 700; }

.income-ledger { padding: 0 12px 12px; }

.income-month {
  margin-bottom: 8px;
  overflow: hidden;
  border: 1px solid #dce4ef;
  border-radius: 8px;
  background: #fff;
}

.income-month-toggle,
.income-day-toggle {
  width: 100%;
  border: 0;
  background: #fff;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  text-align: left;
}

.income-month-toggle { min-height: 58px; padding: 9px 12px; }
.income-day-toggle { min-height: 52px; padding: 8px 12px; }
.income-month-toggle > span,
.income-day-toggle > span { min-width: 0; display: grid; gap: 3px; }
.income-month-toggle > span:last-child,
.income-day-toggle > span:last-child { flex: 0 0 auto; text-align: right; }
.income-month-toggle strong { font-size: 14px; }
.income-day-toggle strong { font-size: 13px; }
.income-month-toggle small,
.income-day-toggle small { color: var(--muted); font-size: 10px; }

.income-days { border-top: 1px solid var(--line); }
.income-day + .income-day { border-top: 1px solid var(--line); }
.income-day-toggle { background: #fbfcfe; }

.income-day-detail { padding: 0 12px 10px; background: #fbfcfe; }

.income-transaction {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.35fr);
  gap: 8px;
  padding: 9px 0;
  border-top: 1px dashed #dfe5ee;
}

.income-transaction > div { min-width: 0; display: grid; gap: 3px; }
.income-transaction strong { color: #14213a; font-size: 14px; }
.income-transaction span { overflow: hidden; color: var(--muted); font-size: 10px; text-overflow: ellipsis; white-space: nowrap; }
.income-transaction-meta { text-align: right; }

.income-load-more {
  width: 100%;
  height: 34px;
  margin-top: 3px;
  border: 1px solid #cad8eb;
  border-radius: 7px;
  background: #fff;
  color: #1267d6;
  font-size: 12px;
}

.income-page-status,
.income-inline-status,
.income-empty {
  margin: 12px;
  padding: 16px;
  border-radius: 8px;
  background: #fff;
  color: var(--muted);
  text-align: center;
  font-size: 12px;
}

.income-inline-status { margin: 0; padding: 12px 0; background: transparent; }
.income-page-status.danger,
.income-inline-status.danger { color: #c9362b; }
.income-empty { display: grid; gap: 5px; }
.income-empty strong { color: var(--text); font-size: 14px; }
.income-empty span { font-size: 11px; }

.content-page-card {
  min-height: 240px;
}

.content-article-page { background: #f3f6fa; }

.content-article-card {
  margin: 14px;
  padding: 20px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.content-article-header {
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.content-article-header h1 {
  margin: 0;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.35;
  letter-spacing: 0;
}

.content-article-header p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.content-article-body {
  padding-top: 8px;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.85;
  overflow-wrap: anywhere;
}

.content-article-body h2 {
  margin: 20px 0 8px;
  color: #172033;
  font-size: 17px;
  line-height: 1.45;
  letter-spacing: 0;
}

.content-article-body p { margin: 10px 0; }
.content-article-empty { color: var(--muted); text-align: center; }

@media screen and (max-width: 430px) {
  .content-article-card { margin: 10px; padding: 16px 14px; }
  .content-article-header h1 { font-size: 20px; }
}

.avatar {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(180deg, #e8edf5, #d6deea);
  display: grid;
  place-items: center;
  font-size: 27px;
}

.stats {
  order: 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 0 14px 12px;
}

.join-stats {
  padding-top: 8px;
}

.stat {
  background: var(--panel);
  border-radius: 8px;
  padding: 12px;
  box-shadow: var(--soft-shadow);
  border: 1px solid rgba(229, 233, 240, .72);
}

.stat strong {
  display: block;
  font-size: 20px;
}

.menu {
  margin: 0 14px;
  background: var(--panel);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--soft-shadow);
  border: 1px solid rgba(229, 233, 240, .72);
}

.menu button {
  width: 100%;
  height: 48px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: var(--panel);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
  color: var(--text);
}

.menu button:active,
.quick:active,
.ticket:active {
  transform: translateY(1px);
}

.menu button:last-child {
  border-bottom: 0;
}

.view.support-view {
  overflow: hidden;
  padding-bottom: 0;
}

.support-page {
  height: 100%;
  min-height: 0;
  display: grid;
  grid-template-rows: 48px auto minmax(0, 1fr);
  background: #f4f6fb;
  overflow: hidden;
}

.support-fallback {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 12px 14px;
  padding: 12px 14px;
  border-radius: 10px;
  background: #ffffff;
  color: #64748b;
  font-size: 13px;
}

.support-fallback button {
  border: 0;
  background: transparent;
  color: #2563eb;
  font-weight: 700;
}

.support-chat-panel {
  display: flex;
  flex-direction: column;
  min-height: 0;
  margin: 0 14px 12px;
  border-radius: 12px;
  background: #ffffff;
  overflow: hidden;
}

.support-message-list {
  flex: 1;
  min-height: 0;
  padding: 16px 12px;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.support-message {
  display: flex;
  flex-direction: column;
  margin-bottom: 12px;
}

.support-message.mine {
  align-items: flex-end;
}

.support-message.service {
  align-items: flex-start;
}

.support-message-bubble {
  max-width: 78%;
  padding: 9px 11px;
  border-radius: 12px;
  background: #eef2f7;
  color: #0f172a;
  white-space: pre-wrap;
  word-break: break-word;
  line-height: 1.45;
  font-size: 14px;
}

.support-message.mine .support-message-bubble {
  background: #ff5a2f;
  color: #ffffff;
}

.support-message time {
  margin-top: 4px;
  color: #94a3b8;
  font-size: 11px;
}

.support-closed-tip {
  padding: 8px 12px;
  background: #fff7ed;
  color: #c2410c;
  font-size: 12px;
}

.support-input-bar {
  flex: 0 0 auto;
  display: grid;
  grid-template-columns: 1fr 72px;
  gap: 8px;
  padding: 10px;
  border-top: 1px solid #e5e7eb;
  background: #ffffff;
}

.support-input-bar textarea {
  height: 42px;
  min-height: 42px;
  max-height: 72px;
  resize: none;
  border: 1px solid #d8dee9;
  border-radius: 10px;
  padding: 9px 10px;
  font: inherit;
  line-height: 1.4;
}

.support-input-bar button {
  align-self: end;
  min-height: 42px;
}

.mine-logout {
  margin: 38px 14px 96px;
  padding-top: 18px;
  border-top: 1px solid rgba(229, 233, 240, .9);
}

.mine-logout-btn {
  width: 100%;
  min-height: 46px;
  border: 0;
  border-radius: 8px;
  background: linear-gradient(180deg, #ff6a3a, var(--accent));
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  box-shadow: 0 12px 24px rgba(255, 91, 34, .2);
}

.mine-logout-btn:active {
  transform: translateY(1px);
}

.video-player-shell {
  margin: 14px;
  padding: 12px;
  background: var(--panel);
  border: 1px solid rgba(229, 233, 240, .72);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
}

.tutorial-video {
  display: block;
  width: 100%;
  max-height: 68vh;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  background: #0f172a;
}

.admin-page {
  background: #eef2f7;
}

.admin-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 14px;
}

.admin-stat {
  background: var(--panel);
  border: 1px solid rgba(229, 233, 240, .8);
  border-radius: 8px;
  padding: 12px 8px;
  text-align: center;
  box-shadow: var(--soft-shadow);
}

.admin-stat strong {
  display: block;
  font-size: 22px;
}

.admin-stat span {
  color: var(--muted);
  font-size: 12px;
}

.admin-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding: 0 14px 12px;
}

.admin-tabs button {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--muted);
  min-height: 34px;
  font-size: 13px;
}

.admin-tabs button.active {
  border-color: var(--accent-2);
  color: var(--accent-2);
  background: #edf5ff;
  font-weight: 700;
}

.admin-content {
  padding-bottom: 18px;
}

.admin-list {
  gap: 10px;
}

.admin-card {
  background: var(--panel);
  border-radius: 8px;
  border: 1px solid rgba(229, 233, 240, .8);
  padding: 14px;
  box-shadow: var(--soft-shadow);
}

.admin-card.compact {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
}

.admin-card-head {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  margin-bottom: 8px;
}

.admin-reason {
  margin-top: 10px;
  padding: 10px;
  border-radius: 8px;
  background: #fff7ed;
  color: #9a3412;
  font-size: 13px;
  line-height: 1.5;
}

.admin-state {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.empty {
  min-height: 180px;
  display: grid;
  place-items: center;
  color: var(--muted);
}

.tabbar {
  flex: 0 0 auto;
  min-height: 64px;
  padding-bottom: env(safe-area-inset-bottom);
  border-top: 1px solid var(--line);
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(14px);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.tab {
  border: 0;
  background: transparent;
  color: var(--muted);
  display: grid;
  place-items: center;
  align-content: center;
  gap: 2px;
  font-size: 12px;
  min-height: 64px;
}

.tab.active {
  color: var(--accent);
  font-weight: 700;
}

.tab-icon {
  font-size: 20px;
  line-height: 1;
}

.tabbar.detail-actionbar {
  grid-template-columns: minmax(0, 2fr) minmax(104px, .8fr);
  gap: 8px;
  min-height: 64px;
  padding: 8px 12px calc(8px + env(safe-area-inset-bottom));
}

.detail-actionbar .detail-action {
  width: 100%;
  min-width: 0;
  min-height: 46px;
  border-radius: 8px;
  font-size: 15px;
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(12, 18, 30, .46);
  backdrop-filter: blur(4px);
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 22px;
}

.modal.hidden {
  display: none;
}

.wechat-open-mask-lock {
  overflow: hidden;
  height: 100%;
}

.wechat-open-mask {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding: max(12px, env(safe-area-inset-top)) 10px 0;
  background: rgba(0, 0, 0, .72);
}

.wechat-open-mask img {
  display: block;
  width: min(92vw, 520px);
  height: auto;
  max-height: 92vh;
  object-fit: contain;
}

.dialog {
  width: min(380px, 100%);
  background: var(--panel);
  border-radius: 8px;
  padding: 18px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,.7);
}

.dialog h3 {
  margin: 0 0 12px;
  font-size: 18px;
}

.dialog-actions {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.dialog-actions button {
  flex: 1;
}

.proof-dialog {
  position: relative;
  width: min(520px, 100%);
  max-height: min(82vh, 720px);
  overflow: auto;
  background: var(--panel);
  border-radius: 8px;
  padding: 16px 16px 18px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,.74);
}

.proof-dialog h3 {
  margin: 0 84px 12px 0;
  text-align: center;
  font-size: 17px;
}

.proof-dialog h3 span {
  color: #1d4ed8;
}

.proof-upload-dialog {
  width: min(360px, calc(100vw - 24px));
  max-height: calc(100vh - 28px);
  max-height: calc(100dvh - 28px - env(safe-area-inset-bottom));
  padding: 12px 12px calc(12px + env(safe-area-inset-bottom));
  display: grid;
  gap: 8px;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.proof-upload-dialog h3 {
  margin: 0;
  text-align: center;
  font-size: 16px;
  line-height: 1.25;
}

.scan-notice-dialog {
  width: min(330px, calc(100vw - 34px));
  background: #fff;
  border-radius: 4px;
  padding: 22px 24px 20px;
  box-shadow: 0 18px 42px rgba(15, 23, 42, .24);
}

.scan-notice-dialog h3 {
  margin: 0 0 22px;
  text-align: center;
  font-size: 20px;
  color: #111827;
  font-weight: 800;
}

.scan-notice-body {
  color: #001dff;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.55;
  margin-bottom: 26px;
  text-align: left;
}

.scan-notice-ok {
  width: 100%;
  min-height: 44px;
  border-radius: 999px;
  font-weight: 800;
}

.scan-pay-tip {
  border: 1px solid #f3c879;
  background: #fff8e8;
  color: #8a4f00;
  border-radius: 8px;
  padding: 7px 9px;
  line-height: 1.35;
}

.scan-pay-tip strong {
  display: block;
  color: #7c3f00;
  margin-bottom: 2px;
  font-size: 13px;
}

.scan-pay-tip p {
  margin: 0;
  font-size: 12px;
}

.proof-upload-dialog .upload-line {
  min-height: 112px;
  max-height: min(36dvh, 220px);
  border: 1px dashed rgba(255, 78, 36, .55);
  border-radius: 10px;
  background: #fff7f2;
  color: var(--primary);
  display: grid;
  place-items: center;
  align-content: center;
  gap: 6px;
  padding: 10px;
  text-align: center;
  font-weight: 700;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.proof-upload-dialog .upload-line input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.proof-upload-dialog .upload-line span {
  max-width: 100%;
  overflow-wrap: anywhere;
  position: relative;
  z-index: 1;
  font-size: 13px;
}

.proof-upload-dialog .proof-upload-preview {
  width: 100%;
  max-height: min(34dvh, 200px);
  object-fit: contain;
  display: block;
  border-radius: 8px;
  background: #fff;
}

.proof-upload-dialog .proof-upload-preview.hidden {
  display: none;
}

.proof-upload-dialog textarea {
  width: 100%;
  height: 74px;
  min-height: 74px;
  max-height: 74px;
  box-sizing: border-box;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 9px 10px;
  resize: none;
  outline: none;
  font-size: 14px;
  line-height: 1.45;
  overflow-y: auto;
}

.proof-upload-dialog textarea:focus {
  border-color: rgba(255, 78, 36, .55);
  box-shadow: 0 0 0 3px rgba(255, 78, 36, .1);
}

.proof-submit-status {
  min-height: 18px;
  color: #52647d;
  font-size: 12px;
  line-height: 1.5;
  text-align: center;
}

.proof-submit-status.success {
  color: #087a55;
}

.proof-submit-status.danger {
  color: #c4333d;
}

.proof-upload-dialog[aria-busy="true"] .upload-line,
.proof-upload-dialog[aria-busy="true"] textarea {
  opacity: .72;
}

.proof-upload-dialog .proof-actions {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 6px;
}

.proof-upload-dialog .proof-actions button {
  min-height: 36px;
  border-radius: 999px;
  padding: 0 8px;
  white-space: nowrap;
  font-size: 13px;
}

.proof-close {
  position: absolute;
  top: 0;
  right: 0;
  border: 0;
  background: #f01818;
  color: #fff;
  padding: 8px 12px;
  font-weight: 700;
}

.proof-frame {
  height: min(62vh, 480px);
  overflow: auto;
  border: 1px solid var(--line);
  background: #f3f4f6;
}

.buyer-proof-dialog {
  width: min(420px, calc(100vw - 32px));
  padding: 14px 14px 16px;
}

.buyer-proof-dialog h3 {
  margin: 0 56px 12px;
  font-size: 16px;
}

.buyer-proof-frame {
  min-height: 420px;
  max-height: min(62vh, 520px);
  overflow: auto;
  background: #18d7d6;
  display: grid;
  place-items: center;
}

.buyer-proof-img {
  width: 100%;
  min-height: 420px;
  object-fit: contain;
  background: #fff;
}

.buyer-proof-placeholder {
  color: #06101f;
  font-size: 20px;
  line-height: 1.85;
  font-weight: 800;
  text-align: center;
}

.voucher-modal {
  position: relative;
  width: min(420px, calc(100vw - 34px));
  max-height: min(82vh, 760px);
  overflow: auto;
  background: #fff;
  border-radius: 8px;
  padding: 18px 18px 16px;
  box-shadow: 0 22px 56px rgba(15, 23, 42, .28);
}

.voucher-modal h3 {
  margin: 0 56px 14px;
  text-align: center;
  color: #0f172a;
  font-size: 17px;
  line-height: 1.3;
}

.voucher-modal h3 span {
  color: #1d4ed8;
}

.voucher-close {
  position: absolute;
  right: 0;
  top: 0;
  border: 0;
  border-radius: 0 8px 0 8px;
  background: #ef1f1f;
  color: #fff;
  min-height: 34px;
  padding: 0 12px;
  font-weight: 800;
}

.voucher-image-wrap {
  min-height: 420px;
  max-height: min(60vh, 560px);
  overflow: auto;
  background: #20d4cf;
  display: grid;
  place-items: center;
}

.voucher-image-wrap .buyer-proof-img {
  width: 100%;
  min-height: 420px;
  object-fit: contain;
  display: block;
  background: #fff;
}

.voucher-image-wrap .buyer-proof-placeholder {
  width: 100%;
  min-height: 420px;
  display: grid;
  place-items: center;
  color: #06101f;
  font-size: 20px;
  line-height: 1.8;
  font-weight: 800;
  text-align: center;
  padding: 28px;
}

.voucher-meta {
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.voucher-meta p {
  margin: 2px 0;
}

.voucher-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 12px;
}

.proof-phone {
  position: relative;
  min-height: 620px;
  margin: 0 auto;
  padding: 26px 20px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 84% 28%, rgba(255,255,255,.22), transparent 21%),
    linear-gradient(180deg, #0d55ed 0%, #226cf6 46%, #f3f6fb 46%, #f3f6fb 100%);
}
/*
.proof-amount {
  margin: 4px 0 24px;
  text-align: center;
  font-size: 44px;
  font-weight: 800;
  letter-spacing: 0;
}
*/
.proof-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 12px;
  font-size: 14px;
}

.proof-row span {
  opacity: .8;
}

.proof-banner {
  margin-top: 30px;
  border-radius: 8px;
  background: #f8d5f0;
  color: #6b3073;
  padding: 22px 18px;
  text-align: center;
  font-size: 18px;
  font-weight: 800;
}

.proof-card {
  height: 180px;
  margin-top: 18px;
  border-radius: 8px;
  background:
    linear-gradient(140deg, rgba(0,0,0,.18), transparent 35%),
    linear-gradient(90deg, #1d4f72, #c2d8e9 50%, #243a58);
}



.proof-meta {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
}

.proof-meta.strong {
  color: var(--text);
  font-size: 16px;
  font-weight: 700;
}

.proof-meta.warning {
  color: #f97316;
  font-weight: 700;
}

.review-proof-dialog {
  background: #fff;
  color: var(--text);
}

.review-proof-dialog .proof-meta {
  color: var(--muted);
}

.review-proof-dialog .proof-meta.strong {
  color: var(--text);
}

.review-proof-frame {
  background: #f8fafc;
  border-color: var(--line);
}

.review-proof-actions {
  gap: 18px;
}

.review-proof-actions button {
  border-radius: 999px;
  min-height: 44px;
  font-size: 16px;
}

.feedback-dialog {
  width: min(360px, calc(100vw - 56px));
  background: #1b1b1b;
  color: #f2f2f2;
  border-radius: 8px;
  padding: 24px 22px 18px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, .45);
}

.feedback-dialog h3 {
  margin: 0 0 18px;
  text-align: center;
  font-size: 24px;
}

.feedback-textarea {
  width: 100%;
  min-height: 150px;
  border: 0;
  border-radius: 6px;
  background: #1b1b1b;
  color: #fff;
  resize: none;
  outline: none;
  font-size: 16px;
}

.feedback-textarea::placeholder {
  color: #d7d7d7;
}

.feedback-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 18px;
}

.feedback-actions button {
  border: 0;
  background: transparent;
  min-height: 40px;
  font-size: 18px;
  color: #f2f2f2;
}

.feedback-actions .secondary {
  color: #2d7df0;
  box-shadow: none;
}

.row-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 10px;
}

@media (min-width: 700px) {
  body {
    padding: 18px 0;
  }

  .app-shell {
    height: calc(100vh - 36px);
    height: calc(100dvh - 36px);
    border-radius: 12px;
  }
}

@media (max-width: 360px) {
  .quick {
    height: 58px;
    font-size: 11px;
  }

  .quick-icon {
    width: 22px;
    height: 22px;
    font-size: 18px;
  }

  .compact-ticket-card {
    gap: 7px;
    padding: 9px 10px;
  }

  .compact-ticket-card .price {
    font-size: 18px;
  }

  .compact-ticket-card .primary,
  .compact-ticket-card .secondary {
    min-height: 30px;
    padding: 6px 10px;
    font-size: 12px;
  }
}
