﻿:root {
  --primary: #ff4d6d;
  --primary-light: #ff6b8a;
  --primary-strong: #e63950;
  --primary-soft: #ffe4e9;
  --purple: #7c5cfc;
  --purple-light: #9b7fff;
  --purple-soft: #f0edff;
  --gold: #ffb930;
  --success: #22c55e;
  --warning: #f59e0b;
  --error: #ef4444;
  --info: #3b82f6;
  --bg: #faf7f5;
  --card: #ffffff;
  --text: #1a1a2e;
  --muted: #6b6b80;
  --weak: #a0a0b0;
  --line: #f0ebe8;
  --shadow-xs: 0 1px 2px rgba(26, 26, 46, 0.04);
  --shadow-sm: 0 2px 8px rgba(26, 26, 46, 0.06);
  --shadow-md: 0 4px 16px rgba(26, 26, 46, 0.08);
  --shadow-lg: 0 8px 32px rgba(26, 26, 46, 0.12);
  --shadow-primary: 0 4px 16px rgba(255, 77, 109, 0.3);
  --shadow-secondary: 0 4px 16px rgba(124, 92, 252, 0.3);
  --shadow: var(--shadow-md);
  --grad-primary: linear-gradient(135deg, #ff4d6d, #ff6b9d);
  --grad-tech: linear-gradient(135deg, #7c5cfc, #9b7fff);
  --grad-warm: linear-gradient(135deg, #ff4d6d, #ffb930);
  --grad-romance: linear-gradient(135deg, #ff6b9d, #c44cff);
  --safe-bottom: 18px;
  font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Helvetica Neue", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  display: grid;
  place-items: start center;
  background: #f0eeef;
  color: var(--text);
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  border: 0;
  font: inherit;
  color: inherit;
  background: transparent;
  cursor: pointer;
  transition: transform 0.16s ease, opacity 0.16s ease, box-shadow 0.16s ease;
}

button:active,
a:active {
  transform: scale(0.96);
}

.ri {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.phone {
  width: 390px;
  height: 844px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(240, 237, 255, 0.92) 0, rgba(255, 228, 233, 0.28) 25%, var(--bg) 100%);
}

.heartbeat-page {
  background: linear-gradient(180deg, #ecefff 0%, #f5f7ff 42%, #fbfbff 100%);
}

.status-bar {
  height: 46px;
  padding: 14px 26px 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  font-size: 15px;
  font-weight: 700;
}

.heartbeat-status {
  padding-right: 24px;
}

.heartbeat-status .status-time {
  font-size: 18px;
}

.heartbeat-indicators {
  gap: 7px;
}

.heartbeat-indicators > .ri {
  font-size: 20px;
  color: #11131f;
}

.network-speed {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1;
  color: var(--text);
}

.network-speed strong {
  font-size: 11px;
  font-weight: 700;
}

.network-speed small {
  font-size: 10px;
  font-weight: 700;
}

.phone-indicators {
  display: flex;
  gap: 5px;
  align-items: center;
  font-size: 11px;
  color: var(--text);
}

.signal {
  display: inline-flex;
  gap: 2px;
  align-items: end;
}

.signal i {
  width: 3px;
  border-radius: 2px;
  background: #202234;
}

.signal i:nth-child(1) { height: 6px; }
.signal i:nth-child(2) { height: 9px; }
.signal i:nth-child(3) { height: 12px; }
.signal i:nth-child(4) { height: 15px; }

.battery {
  min-width: 28px;
  padding: 1px 5px;
  border-radius: 7px;
  background: #2c2f3b;
  color: #fff;
  font-size: 12px;
  line-height: 18px;
  text-align: center;
}

.nav {
  height: 62px;
  display: grid;
  grid-template-columns: 72px 1fr 108px;
  align-items: center;
  padding: 0 14px 0 16px;
}

.recommend-nav {
  grid-template-columns: 48px 1fr 108px;
  padding-right: 12px;
}

.heart-nav {
  height: 74px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 2px 18px 0 22px;
}

.nav-title {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0;
}

.home-switch {
  display: inline-flex;
  justify-self: center;
  align-items: center;
  gap: 26px;
  font-size: 18px;
  font-weight: 700;
}

.home-switch a,
.home-switch button {
  position: relative;
  padding: 16px 0 18px;
  color: var(--text);
}

.home-switch .active {
  color: var(--primary);
}

.home-switch .active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 6px;
  width: 28px;
  height: 4px;
  border-radius: 999px;
  transform: translateX(-50%);
  background: var(--primary);
}

.back {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  font-size: 24px;
  color: var(--text);
}

mp-capsule {
  justify-self: end;
  display: block;
  width: 108px;
  height: 40px;
}

.mp-capsule {
  width: 108px;
  height: 40px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  align-items: center;
  justify-items: center;
  box-shadow: 0 4px 16px rgba(26, 26, 46, 0.08);
}

.mp-capsule-line {
  width: 1px;
  height: 20px;
  background: #e1e2ec;
}

.mp-capsule-icon {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  color: #11131f;
  font-size: 20px;
}

.heart-switch {
  gap: 34px;
  font-size: 19px;
  font-weight: 700;
}

.heart-switch a,
.heart-switch button {
  padding: 16px 0 18px;
}

.heart-switch .active::after {
  bottom: 7px;
  width: 28px;
  height: 4px;
}

.scroll {
  position: absolute;
  inset: 108px 0 82px;
  overflow-y: auto;
  padding: 0 20px 24px;
  scrollbar-width: none;
}

.heartbeat-scroll {
  inset: 120px 0 82px;
  padding: 0 20px 26px;
}

.recommend-scroll {
  inset: 120px 0 82px;
  padding: 0 20px 118px;
}

.recommend-scroll::-webkit-scrollbar {
  display: none;
}

.scroll::-webkit-scrollbar,
.tabs-row::-webkit-scrollbar {
  display: none;
}

bottom-tabbar {
  display: contents;
}

.bottom-tabs {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 82px;
  padding: 8px 18px var(--safe-bottom);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(20px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(240, 235, 232, 0.82);
  z-index: 8;
}

.tab {
  min-height: 54px;
  display: grid;
  place-items: center;
  gap: 2px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 400;
}

.tab-icon {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  font-size: 23px;
  color: var(--muted);
  opacity: 0.72;
}

.tab.active {
  color: var(--primary);
  font-weight: 500;
}

.tab.active .tab-icon {
  color: var(--primary);
  opacity: 1;
}

.section-tabs {
  display: flex;
  gap: 24px;
  padding: 4px 0 16px;
}

.section-tab {
  min-width: 44px;
  min-height: 44px;
  position: relative;
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
}

.section-tab.active {
  color: var(--primary);
}

.section-tab.active::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 4px;
  height: 4px;
  border-radius: 999px;
  background: var(--primary);
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 0 0 18px;
}

.user-card {
  min-height: 246px;
  border-radius: 16px;
  background: var(--card);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.user-card .photo {
  height: 166px;
  border-radius: 16px 16px 0 0;
}

.user-card-body {
  padding: 10px 12px 14px;
}

.card-name {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 18px;
  font-weight: 700;
}

.gender-male { color: var(--info); }
.gender-female { color: var(--primary); }

.gender-male,
.gender-female {
  display: inline-flex;
  align-items: center;
  font-size: 15px;
}

.age {
  font-size: 18px;
  font-weight: 500;
}

.chips .ri,
.chip .ri {
  margin-right: 4px;
  font-size: 14px;
}

.meta {
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.photo {
  display: block;
  position: relative;
  overflow: hidden;
  background-color: #f3f0ef;
  background-position: center;
  background-size: cover;
}

.portrait-male {
  background-image: url("../../../assets/avatar-kuangnani-blue-blazer.png");
}

.portrait-hoodie {
  background-image: url("../../../assets/avatar-qingfeng-gray-shirt.png");
}

.portrait-sakura {
  background-image: url("../../../assets/avatar-yuzhu-short-hair.png");
}

.portrait-kangnaixiang {
  background-image: url("../../../assets/avatar-kangnaixiang-beach.png");
}

.portrait-wanqing {
  background-image: url("../../../assets/avatar-wanqing-blue-shirt.png");
}

.portrait-city {
  background-image: url("../../../assets/scene-cafe-window-seat.png");
}

.portrait-sea {
  background-image: url("../../../assets/scene-beach-towel-hat.png");
}

.portrait-default {
  background-image: url("../../../assets/avatar-anyi-cream-shirt.png");
}

.card {
  background: var(--card);
  border-radius: 16px;
  padding: 16px;
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
}

.detail-photo {
  height: 384px;
  border-radius: 16px;
  margin-bottom: 0;
}

.profile-head {
  padding: 12px 16px 18px;
  margin-bottom: 16px;
  background: #fff;
  border-radius: 0 0 16px 16px;
  box-shadow: var(--shadow-sm);
}

.name-row {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 20px;
  font-weight: 700;
}

.name-row .uid {
  margin-left: auto;
  color: var(--weak);
  font-size: 13px;
  font-weight: 400;
}

.vip {
  display: inline-grid;
  place-items: center;
  min-width: 46px;
  height: 20px;
  border-radius: 999px;
  background: var(--grad-warm);
  color: #704000;
  font-size: 11px;
  font-weight: 900;
}

.tiny-badge {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  height: 19px;
  padding: 0 7px;
  margin-top: 10px;
  border-radius: 999px;
  background: var(--purple-soft);
  color: var(--purple);
  font-size: 11px;
}

.quick-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding-top: 18px;
  font-size: 14px;
}

.block-title {
  margin: 0 0 12px;
  font-size: 16px;
  font-weight: 600;
}

.intro {
  font-size: 15px;
  line-height: 1.55;
  color: var(--text);
}

.pink-link {
  color: var(--primary);
  font-weight: 600;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 10px;
}

.chip,
.chips > span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 32px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #f8f6f5;
  color: var(--text);
  font-size: 13px;
  white-space: nowrap;
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  text-align: center;
  color: var(--text);
  font-size: 14px;
}

.cert-icon {
  display: grid;
  place-items: center;
  margin: 0 auto 7px;
  width: 34px;
  height: 34px;
  color: var(--weak);
  font-size: 22px;
  position: relative;
}

.outline-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-top: 14px;
  border: 1px solid rgba(255, 77, 109, 0.58);
  border-radius: 999px;
  color: var(--primary);
  font-size: 14px;
  font-weight: 600;
}

.photo-row {
  display: flex;
  gap: 10px;
}

.thumb {
  width: 72px;
  height: 72px;
  border-radius: 8px;
}

.action-bar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 138px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  align-items: end;
  padding: 50px 24px var(--safe-bottom);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.28) 16%,
    rgba(255, 255, 255, 0.68) 30%,
    rgba(255, 255, 255, 1) 42%,
    rgba(255, 255, 255, 1) 100%
  );
  z-index: 9;
}

.recommend-actions {
  bottom: 82px;
  height: 90px;
  grid-template-columns: 1fr 1.46fr 1fr;
  align-items: center;
  padding: 10px 24px var(--safe-bottom);
  backdrop-filter: none;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.28) 16%,
    rgba(255, 255, 255, 0.68) 30%,
    rgba(255, 255, 255, 1) 42%,
    rgba(255, 255, 255, 1) 100%
  );
}

.recommend-actions .round-action {
  min-height: 56px;
}

.profile-actions {
  grid-template-columns: 1fr 1.46fr 1fr;
}

.profile-super-only {
  grid-template-columns: 1fr;
  justify-items: center;
}

.recommend-actions .round-action.super strong,
.profile-actions .round-action.super strong {
  width: 132px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border-radius: 999px;
  font-size: 22px;
}

.recommend-actions .round-action.super strong span,
.profile-actions .round-action.super strong span {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.round-action {
  display: grid;
  place-items: center;
  gap: 4px;
  min-height: 62px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 400;
}

.round-action strong {
  position: relative;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  box-shadow: var(--shadow-sm);
  color: var(--primary);
  font-size: 24px;
}

.action-badge {
  position: absolute;
  right: -6px;
  top: -6px;
  min-width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
  border: 2px solid #fff;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-size: 10px;
  font-style: normal;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 4px 10px rgba(255, 77, 109, 0.28);
}

.round-action.super .action-badge {
  right: -5px;
  top: -5px;
  background: var(--gold);
  color: #5d3c20;
  box-shadow: 0 4px 10px rgba(255, 185, 48, 0.3);
}

.round-action.skip {
  color: var(--muted);
}

.round-action.skip strong {
  color: var(--muted);
}

.round-action.like,
.round-action.super,
.round-action.date {
  color: var(--primary);
}

.round-action.super strong {
  width: 56px;
  height: 56px;
  background: var(--grad-tech);
  color: #fff;
  box-shadow: var(--shadow-secondary);
}

.recommend-card-shell {
  touch-action: pan-y;
  will-change: transform;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.recommend-card-shell.is-dragging {
  transition: none;
}

.recommend-card-shell.is-flying-left,
.recommend-card-shell.is-flying-right {
  opacity: 0;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.recommend-card-shell.is-super-liked {
  transform: translateY(-18px) scale(0.96);
  opacity: 0.24;
  transition: transform 0.38s ease, opacity 0.38s ease;
}

.recommend-empty-wrap {
  min-height: 500px;
  display: grid;
  place-items: center;
  padding: 18px 0 6px;
}

.recommend-empty {
  width: 100%;
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  padding: 24px 18px;
  text-align: center;
}

.recommend-empty .empty-icon {
  width: 84px;
  height: 84px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 36px;
}

.recommend-empty h2 {
  margin: 0 0 8px;
  font-size: 22px;
  font-weight: 700;
}

.recommend-empty p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.recommend-empty .empty-actions {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.heart-stats {
  position: sticky;
  top: 0;
  z-index: 5;
  display: grid;
  align-items: center;
  margin: 0 -20px 12px;
  padding: 16px 20px 14px;
  background: linear-gradient(180deg, #eef1ff 0%, rgba(245, 247, 255, 0.96) 100%);
  text-align: center;
}

.heart-stats-two {
  grid-template-columns: 92px 1px 92px;
  justify-content: center;
  column-gap: 30px;
}

.heart-stats-three {
  grid-template-columns: 1fr 1px 1fr 1px 1fr;
}

.heart-stats .num {
  display: block;
  font-size: 26px;
  font-weight: 500;
  line-height: 1.05;
}

.heart-stats > div {
  display: grid;
  justify-items: center;
  gap: 5px;
}

.heart-stats > div > span:not(.num) {
  font-size: 14px;
  font-weight: 400;
}

.divider {
  height: 50px;
  background: #dad5d0;
}

.list-title {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0 0 14px;
  font-size: 17px;
  font-weight: 600;
}

.list-title::before {
  content: "";
  width: 4px;
  height: 20px;
  border-radius: 999px;
  background: var(--primary);
}

.liked-photo-card {
  display: block;
  position: relative;
  width: 168px;
  height: 168px;
  border-radius: 12px;
  color: rgba(255,255,255,0.82);
  font-size: 14px;
  font-weight: 600;
  padding: 12px;
  box-shadow: var(--shadow-sm);
}

.liked-photo-card::before {
  content: attr(data-label);
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  min-height: 42px;
  padding: 9px 12px 10px;
  border-radius: 12px 12px 0 0;
  background: linear-gradient(180deg, rgba(122, 116, 128, 0.62), rgba(122, 116, 128, 0.32));
  z-index: 2;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 600;
  text-shadow: 0 1px 6px rgba(26, 26, 46, 0.28);
}

.heart-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.heart-card-grid-single {
  grid-template-columns: 168px;
}

.heart-card-grid .liked-photo-card {
  width: 168px;
  height: 168px;
}

.heart-list-body {
  padding-top: 2px;
  padding-bottom: 22px;
}

.visit-section + .visit-section {
  margin-top: 24px;
}

.visit-title {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0 0 14px;
  color: var(--text);
  font-size: 17px;
  font-weight: 600;
}

.visit-title::before {
  content: "";
  width: 4px;
  height: 20px;
  border-radius: 999px;
  background: var(--primary);
}

.visit-grid {
  padding-bottom: 6px;
}

.messages-page {
  background: linear-gradient(180deg, #f1f7ff 0%, #fbf9f8 42%, var(--bg) 100%);
}

.messages-scroll {
  padding-top: 4px;
}

.message-action-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-bottom: 12px;
  overflow: hidden;
  border-radius: 12px;
  background: rgba(240, 235, 232, 0.9);
  box-shadow: var(--shadow-sm);
}

.message-action-card {
  min-height: 74px;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 9px;
  align-items: center;
  padding: 13px 10px;
  background:
    radial-gradient(circle at 86% 0%, rgba(255, 77, 109, 0.12), transparent 44px),
    rgba(255, 255, 255, 0.94);
}

.message-action-card strong {
  display: block;
  color: var(--primary);
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
}

.message-action-card small {
  display: block;
  margin-top: 2px;
  overflow: hidden;
  color: var(--text);
  font-size: 11px;
  line-height: 16px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.message-action-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #fff;
  font-size: 19px;
  box-shadow: var(--shadow-xs);
}

.message-action-icon.like {
  background: var(--grad-primary);
}

.message-action-icon.reply {
  background: var(--grad-romance);
}

.message-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding-top: 8px;
}

.message-entry {
  min-height: 88px;
  border-radius: 16px;
  padding: 16px 14px;
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 77, 109, 0.18), transparent 42px),
    linear-gradient(135deg, rgba(255,255,255,0.95), var(--primary-soft));
  box-shadow: var(--shadow-xs);
}

.message-entry h3 {
  margin: 0 0 16px;
  color: var(--primary);
  font-size: 16px;
  font-weight: 600;
}

.message-entry p {
  margin: 0;
  font-size: 14px;
  color: var(--text);
}

.notice {
  min-height: 78px;
  margin-top: 12px;
  display: grid;
  grid-template-columns: 52px 1fr 52px;
  gap: 12px;
  align-items: center;
  border-radius: 16px;
  background: #fff;
  padding: 14px;
  box-shadow: var(--shadow-sm);
  text-align: left;
}

.notice-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--grad-tech);
  color: #fff;
  font-size: 24px;
  position: relative;
}

.notice h3 {
  margin: 0 0 4px;
  font-size: 18px;
  font-weight: 700;
}

.notice-body {
  min-width: 0;
}

.notice p {
  margin: 0;
  color: var(--weak);
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.notice-time {
  align-self: start;
  justify-self: end;
  color: var(--weak);
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap;
}

.inbox-section {
  margin-bottom: 18px;
}

.thread-list {
  overflow: hidden;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-sm);
}

.thread-item {
  width: 100%;
  min-height: 76px;
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr) 48px;
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(240, 235, 232, 0.9);
  text-align: left;
}

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

.thread-item.active {
  background: linear-gradient(90deg, rgba(255, 228, 233, 0.42), rgba(255,255,255,0));
}

.thread-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  box-shadow: var(--shadow-xs);
}

.thread-main {
  min-width: 0;
}

.thread-top {
  display: flex;
  align-items: center;
  gap: 7px;
  min-width: 0;
}

.thread-top strong {
  font-size: 16px;
  font-weight: 700;
  white-space: nowrap;
}

.thread-tag {
  height: 19px;
  display: inline-flex;
  align-items: center;
  padding: 0 7px;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 10px;
  font-weight: 600;
  white-space: nowrap;
}

.thread-tag.secondary {
  background: #f1f1f4;
  color: var(--weak);
}

.thread-tag.warning {
  background: rgba(255, 185, 48, 0.18);
  color: #a46400;
}

.thread-preview {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.thread-meta {
  display: grid;
  justify-items: end;
  gap: 8px;
  color: var(--weak);
  font-size: 12px;
}

.thread-badge {
  min-width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
}

.system-thread-icon {
  display: grid;
  place-items: center;
  background: var(--grad-tech);
  color: #fff;
  font-size: 22px;
}

.system-notice {
  width: 100%;
  margin-top: 0;
}

.mine-head {
  display: grid;
  grid-template-columns: 92px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 20px 16px;
}

.avatar-progress {
  position: relative;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  padding: 7px;
  background: conic-gradient(var(--primary) 0 80%, var(--line) 80% 100%);
}

.avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.progress-pill {
  position: absolute;
  left: 14px;
  bottom: -8px;
  min-width: 60px;
  height: 24px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  display: grid;
  place-items: center;
  grid-auto-flow: column;
  column-gap: 3px;
  font-size: 12px;
  font-weight: 700;
}

.mine-name {
  font-size: 18px;
  font-weight: 700;
}

.mine-meta {
  margin-top: 8px;
  color: var(--muted);
  font-size: 15px;
}

.mine-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
  margin: 18px 0;
}

.mine-stats strong {
  display: block;
  font-size: 22px;
  font-weight: 700;
}

.mine-stats span {
  color: var(--text);
  font-size: 12px;
}

.vip-entry-card {
  min-height: 76px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  margin: 0 0 12px;
  padding: 16px 18px;
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(255, 185, 48, 0.26), rgba(255, 255, 255, 0.1) 48%),
    linear-gradient(135deg, #ffe9c9, #d7a67a);
  color: #684018;
  box-shadow: var(--shadow-sm);
}

.vip-entry-card p {
  margin: 5px 0 0;
  color: rgba(104, 64, 24, 0.82);
  font-size: 13px;
}

.vip-entry-title {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0;
}

.vip-entry-card > span {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(26, 26, 46, 0.82);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
}

.menu {
  margin: 0;
  border-radius: 16px;
  background: #fff;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.menu-item {
  width: 100%;
  min-height: 64px;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) auto 32px;
  gap: 10px;
  align-items: center;
  padding: 10px 18px;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  font-weight: 500;
  text-align: left;
}

.menu-item:last-child {
  border-bottom: 0;
}

.menu-icon {
  width: 32px;
  height: 32px;
  color: var(--muted);
  font-size: 20px;
  display: grid;
  place-items: center;
  position: relative;
}

.menu-photo {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  justify-self: end;
  grid-column: 3 / 5;
}

.coin-balance {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  color: #8b5a1f;
  font-size: 13px;
  font-weight: 700;
}

.coin-balance .ri,
.wallet-balance-card .ri,
.coin-package .ri,
.coin-detail-item .ri {
  color: #f59e0b;
}

.menu-photo::before {
  width: 26px;
  height: 32px;
  top: 24%;
  box-shadow: 0 38px 0 18px rgba(38, 42, 62, 0.28);
}

.menu-photo::after {
  width: 34px;
  height: 14px;
  top: 21%;
}

.menu-chevron {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  grid-column: 4;
  justify-self: end;
  color: var(--muted);
  font-size: 22px;
  line-height: 1;
}

.settings-page {
  background: #f7f8fb;
}

.settings-nav {
  grid-template-columns: 48px 1fr 108px;
  padding-left: 8px;
}

.settings-content {
  position: absolute;
  inset: 108px 0 116px;
  padding: 0 8px;
  overflow-y: auto;
}

.settings-content::-webkit-scrollbar {
  display: none;
}

.settings-list {
  overflow: hidden;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(26, 26, 46, 0.03);
}

.settings-item {
  width: 100%;
  min-height: 68px;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 32px;
  align-items: center;
  gap: 8px;
  padding: 0 16px 0 28px;
  border-bottom: 1px solid #f0f1f4;
  color: #424552;
  font-size: 16px;
  font-weight: 500;
  text-align: left;
}

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

.settings-icon {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: #5f6473;
  font-size: 21px;
}

.settings-chevron {
  display: grid;
  place-items: center;
  justify-self: end;
  color: #252833;
  font-size: 25px;
}

.settings-logout {
  position: absolute;
  left: 40px;
  right: 40px;
  bottom: 16px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #f0f2f6;
  color: #a6acba;
  font-size: 16px;
  font-weight: 500;
}

.edit-switch {
  display: flex;
  gap: 20px;
  font-size: 16px;
  font-weight: 600;
}

.edit-switch a,
.edit-switch span {
  position: relative;
  padding: 13px 0 15px;
}

.edit-switch .active {
  color: var(--primary);
}

.edit-switch .active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 5px;
  width: 30px;
  height: 3px;
  border-radius: 999px;
  transform: translateX(-50%);
  background: var(--primary);
}

.progress-line {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 4px;
  padding: 0 0 12px;
}

.progress-line i {
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 77, 109, 0.22);
}

.progress-line i.done {
  background: var(--primary);
}

.edit-hero {
  display: grid;
  grid-template-columns: 1fr 130px;
  min-height: 136px;
  align-items: center;
  overflow: hidden;
}

.edit-hero .hero-name {
  padding-left: 26px;
  font-size: 16px;
  font-weight: 600;
}

.edit-avatar {
  display: block;
  width: 84px;
  height: 84px;
  margin: auto;
  padding: 0;
  position: relative;
}

.camera {
  position: absolute;
  right: -3px;
  bottom: 7px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--grad-tech);
  color: #fff;
  font-size: 15px;
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.section-head h2 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.section-note {
  color: var(--weak);
  font-size: 12px;
  font-weight: 400;
}

.uid-text {
  color: var(--muted);
  font-size: 13px;
}

.edit-link {
  color: var(--primary);
  font-size: 13px;
}

.upload-box {
  width: 82px;
  height: 82px;
  border-radius: 8px;
  background: #f8f6f5;
  color: var(--weak);
  display: grid;
  place-items: center;
  text-align: center;
  font-size: 12px;
  line-height: 18px;
}

.upload-box .ri {
  display: block;
  margin-bottom: 2px;
  font-size: 22px;
}

.share-btn {
  position: sticky;
  float: right;
  bottom: 10px;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  background: #fff;
  box-shadow: var(--shadow-md);
  font-size: 14px;
  font-weight: 500;
}

.share-btn .ri {
  margin-left: 6px;
  font-size: 16px;
}

.toast {
  position: absolute;
  left: 50%;
  bottom: 106px;
  transform: translateX(-50%) translateY(12px);
  min-width: 170px;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(26, 26, 46, 0.88);
  color: #fff;
  font-size: 14px;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transition: 0.2s ease;
  z-index: 20;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.fade-scroll {
  padding-bottom: 144px;
}

.with-actions {
  inset-bottom: 90px;
}

.launch-phone {
  background:
    radial-gradient(circle at 50% 13%, rgba(255, 228, 233, 0.95), transparent 118px),
    linear-gradient(180deg, #fff7f8 0%, #faf7f5 58%, #fff 100%);
}

.launch-wrap {
  position: absolute;
  inset: 46px 0 0;
  padding: 0 28px calc(var(--safe-bottom) + 22px);
  display: grid;
  grid-template-rows: 62px 1fr auto;
}

.launch-top {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.brand-panel {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 16px;
  transform: translateY(-18px);
}

.brand-logo {
  width: 108px;
  height: 108px;
  border-radius: 28px;
  object-fit: contain;
  background: #fff;
  box-shadow: var(--shadow-lg);
}

.brand-name {
  margin: 0;
  font-size: 34px;
  font-weight: 700;
  letter-spacing: 0;
}

.brand-slogan {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.launch-actions {
  display: grid;
  gap: 14px;
}

.primary-btn,
.secondary-btn,
.ghost-btn {
  min-height: 54px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 700;
}

.primary-btn {
  width: 100%;
  background: var(--grad-primary);
  color: #fff;
  box-shadow: var(--shadow-primary);
}

.primary-btn.purple {
  background: var(--grad-tech);
  box-shadow: var(--shadow-secondary);
}

.primary-btn.disabled,
.primary-btn:disabled {
  background: #f1f0f4;
  color: var(--weak);
  box-shadow: none;
  pointer-events: none;
}

.secondary-btn {
  width: 100%;
  background: #fff;
  color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.ghost-btn {
  min-height: 44px;
  color: var(--weak);
  font-weight: 500;
}

.agreement-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.agreement-row a {
  color: var(--primary);
}

.check-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid #d8d3d2;
  background: #fff;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 15px;
  flex: 0 0 auto;
}

.agreement-row.active .check-dot,
.check-dot.active {
  border-color: var(--primary);
  background: var(--primary);
}

.sheet-mask,
.dialog-mask {
  position: absolute;
  inset: 0;
  display: none;
  background: rgba(26, 26, 46, 0.34);
  z-index: 30;
}

.sheet-mask.show,
.dialog-mask.show,
.show-sheet .sheet-mask,
.show-dialog .dialog-mask {
  display: block;
}

.phone-sheet {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 24px 24px 0 0;
  background: #fff;
  padding: 28px 30px calc(var(--safe-bottom) + 24px);
  box-shadow: var(--shadow-lg);
}

.sheet-head {
  display: grid;
  grid-template-columns: 58px 1fr 32px;
  gap: 18px;
  align-items: start;
  margin-bottom: 22px;
}

.sheet-mini-logo {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  object-fit: contain;
  box-shadow: var(--shadow-xs);
}

.sheet-title {
  margin: 0;
  color: #17182b;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.35;
}

.sheet-subtitle {
  margin: 8px 0 0;
  color: var(--weak);
  font-size: 15px;
  font-weight: 600;
}

.sheet-close {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  color: var(--weak);
  font-size: 24px;
}

.phone-card {
  min-height: 96px;
  border-radius: 18px;
  background: #faf9fa;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
}

.masked-phone {
  display: block;
  color: #17182b;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 3px;
  text-align: center;
}

.phone-note {
  color: var(--success);
  font-size: 15px;
  font-weight: 700;
  text-align: center;
}

.phone-sheet .primary-btn {
  min-height: 60px;
  font-size: 19px;
  box-shadow: 0 10px 22px rgba(255, 77, 109, 0.24);
}

.phone-sheet .ghost-btn {
  width: auto;
  min-height: 44px;
  justify-content: flex-start;
  padding: 0 8px;
  color: var(--weak);
  font-size: 18px;
  font-weight: 700;
}

.login-empty {
  min-height: 430px;
  display: grid;
  place-items: center;
  text-align: center;
}

.login-empty-inner {
  display: grid;
  gap: 14px;
  justify-items: center;
}

.login-empty-icon {
  width: 72px;
  height: 72px;
  border-radius: 24px;
  display: grid;
  place-items: center;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 32px;
}

.login-empty h2 {
  margin: 0;
  font-size: 22px;
}

.login-empty p {
  margin: 0 0 10px;
  color: var(--muted);
  line-height: 1.5;
}

.guest-mine-card {
  margin-top: 28px;
  border-radius: 24px;
  background: #fff;
  padding: 28px 22px;
  box-shadow: var(--shadow-sm);
  display: grid;
  gap: 18px;
  text-align: center;
}

.guest-floating-login {
  position: absolute;
  left: 50%;
  bottom: 96px;
  width: 210px;
  min-height: 50px;
  transform: translateX(-50%);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--grad-primary);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  box-shadow: var(--shadow-primary);
  z-index: 12;
}

.guest-floating-login:active {
  transform: translateX(-50%) scale(0.96);
}

.guest-avatar {
  width: 78px;
  height: 78px;
  margin: 0 auto;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #f7f6f8;
  color: var(--weak);
  font-size: 34px;
}

.dialog-card {
  position: absolute;
  left: 28px;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 22px;
  background: #fff;
  padding: 24px 20px 20px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.dialog-card h2 {
  margin: 0 0 8px;
  font-size: 22px;
}

.dialog-card p {
  margin: 0 0 20px;
  color: var(--muted);
  line-height: 1.5;
}

.dialog-actions {
  display: grid;
  gap: 10px;
}

.mutual-like-card {
  padding-top: 28px;
}

.mutual-avatar-row {
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.mutual-avatar {
  width: 68px;
  height: 68px;
  border: 4px solid #fff;
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.mutual-avatar + .mutual-heart + .mutual-avatar {
  margin-left: -10px;
}

.mutual-heart {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  margin: 0 -6px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: var(--grad-primary);
  color: #fff;
  font-size: 20px;
  box-shadow: var(--shadow-primary);
  z-index: 2;
}

.recharge-action-sheet {
  height: 500px;
  padding: 22px 18px calc(var(--safe-bottom) + 16px);
  border-radius: 28px 28px 0 0;
}

.recharge-title-row {
  min-height: 38px;
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr) 32px;
  align-items: center;
  margin-bottom: 12px;
}

.recharge-title-row h2 {
  margin: 0;
  color: var(--text);
  font-size: 21px;
  font-weight: 800;
  line-height: 1;
  text-align: center;
}

.recharge-title-row h2::before,
.recharge-title-row h2::after {
  content: "";
  display: inline-block;
  width: 30px;
  height: 14px;
  margin: 0 16px 2px;
  border-radius: 999px;
  background:
    linear-gradient(180deg, transparent 0 3px, rgba(107, 107, 128, 0.36) 3px 5px, transparent 5px 8px, rgba(107, 107, 128, 0.28) 8px 10px, transparent 10px 100%);
  filter: blur(0.2px);
}

.recharge-title-row h2::after {
  transform: scaleX(-1);
}

.recharge-action-sheet .sheet-close {
  width: 34px;
  height: 34px;
  color: #28283a;
  font-size: 26px;
}

.recharge-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 2px 16px 16px;
  color: #5e5863;
  font-size: 15px;
  font-weight: 600;
}

.recharge-meta-row span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}

.recharge-meta-row .ri,
.recharge-action-sheet .coin-package .ri {
  color: #ffae1c;
  font-size: 18px;
  filter: drop-shadow(0 1px 1px rgba(255, 168, 24, 0.2));
}

.recharge-meta-row strong {
  color: var(--text);
  font-size: 17px;
  font-weight: 700;
}

.recharge-promo {
  height: 64px;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  margin: 0 0 22px;
  padding: 7px 10px 7px 16px;
  overflow: hidden;
  border-radius: 11px;
  background: linear-gradient(100deg, #c7ddff 0%, #d7d1ff 56%, #efc2ff 100%);
}

.promo-avatar {
  width: 46px;
  height: 46px;
  border: 2px solid rgba(255, 255, 255, 0.88);
  border-radius: 50%;
  box-shadow: var(--shadow-xs);
}

.recharge-promo strong {
  min-width: 0;
  color: #3a3348;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.25;
  white-space: nowrap;
}

.recharge-package-row {
  display: flex;
  gap: 8px;
  margin: 0 -18px;
  padding: 0 18px 4px;
  overflow-x: auto;
  scrollbar-width: none;
}

.recharge-package-row::-webkit-scrollbar {
  display: none;
}

.sheet-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  font-size: 27px;
}

.sheet-icon.coin {
  background: #fff3d6;
  color: #c88716;
}

.sheet-icon.super {
  background: var(--purple-soft);
  color: var(--purple);
}

.recharge-action-sheet .coin-package {
  flex: 0 0 104px;
  min-height: 136px;
  gap: 18px;
  padding: 32px 8px 17px;
  border: 1.5px solid #ffe0ad;
  border-radius: 14px;
  background: #fff;
}

.recharge-action-sheet .primary-btn {
  width: calc(100% - 72px);
  min-height: 58px;
  margin: 27px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, #c78262 0%, #f2d1c5 50%, #d3997b 100%);
  color: #5b3426;
  font-size: 19px;
  font-weight: 700;
  box-shadow: none;
}

.recharge-action-sheet .coin-package span {
  max-width: calc(100% + 2px);
  min-height: 24px;
  padding: 3px 9px;
  border-radius: 11px 0 12px 0;
  background: #ffeac0;
  color: #7b5426;
  font-size: 13px;
  font-weight: 800;
}

.recharge-action-sheet .coin-package:first-child span {
  background: linear-gradient(135deg, #8361ff 0%, #ff4ea6 100%);
  color: #fff;
}

.recharge-action-sheet .coin-package strong {
  color: #6a472c;
  font-size: 25px;
  font-weight: 500;
}

.recharge-action-sheet .coin-package small {
  color: #6a472c;
  font-size: 16px;
  font-weight: 500;
}

.recharge-action-sheet .coin-package.selected {
  border-color: #ffd996;
  background: #fff8e9;
  box-shadow: inset 0 0 0 1px #ffe1a8;
}

.recharge-vip-link {
  display: block;
  margin-top: 14px;
  color: var(--weak);
  font-size: 15px;
  font-weight: 600;
  text-align: center;
}

.super-like-info-sheet {
  padding-left: 22px;
  padding-right: 22px;
}

.super-like-info-sheet .sheet-head {
  grid-template-columns: 48px 1fr 32px;
  gap: 12px;
  margin-bottom: 18px;
}

.super-like-info-list {
  display: grid;
  gap: 8px;
}

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

.super-like-balance-row span {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 1px solid rgba(240, 235, 232, 0.88);
  border-radius: 14px;
  background: #fff;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  box-shadow: var(--shadow-xs);
}

.super-like-balance-row .ri {
  color: var(--primary);
  font-size: 16px;
}

.super-like-balance-row .ri-copper-coin-fill,
.super-like-info-item .ri-copper-coin-fill {
  color: #f59e0b;
}

.super-like-balance-row strong {
  color: var(--text);
  font-size: 15px;
}

.super-like-location-preview {
  padding: 12px;
  margin-bottom: 12px;
  border: 1px solid rgba(240, 235, 232, 0.86);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(241, 247, 255, 0.88), rgba(255, 255, 255, 0.96));
  box-shadow: var(--shadow-xs);
}

.preview-title {
  margin-bottom: 9px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  text-align: center;
}

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

.preview-entry {
  min-height: 82px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 4px;
  padding: 10px 7px;
  border-radius: 12px;
  background:
    radial-gradient(circle at 88% 0%, rgba(255, 77, 109, 0.13), transparent 42px),
    #fff;
  box-shadow: var(--shadow-xs);
  text-align: center;
}

.preview-entry .ri {
  color: var(--primary);
  font-size: 22px;
}

.preview-entry strong,
.preview-entry span {
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.preview-entry strong {
  color: var(--text);
  font-size: 13px;
}

.preview-entry span {
  color: var(--weak);
  font-size: 11px;
}

.super-like-info-item {
  min-height: 48px;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 9px;
  align-items: center;
  padding: 8px 10px;
  border-radius: 14px;
  background: #faf9fb;
  color: var(--text);
  font-size: 14px;
}

.super-like-info-item .ri {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: #fff;
  color: var(--purple);
  font-size: 19px;
  box-shadow: var(--shadow-xs);
}

.super-like-info-note {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  margin: 10px 0 0;
  color: var(--weak);
  font-size: 12px;
  line-height: 1.45;
}

.super-like-info-note .ri {
  margin-top: 1px;
  color: var(--weak);
  font-size: 14px;
}

.super-like-vip-note {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 10px;
  border: 0;
  background: transparent;
  color: var(--weak);
  font: inherit;
  font-size: 12px;
  line-height: 1.45;
}

.super-like-vip-note .ri {
  color: var(--weak);
  font-size: 14px;
}

.remind-check {
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
}

.remind-check input {
  display: none;
}

.remind-check input:checked + .check-dot {
  border-color: var(--primary);
  background: var(--primary);
}

.sheet-actions {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.sheet-actions .primary-btn {
  min-height: 54px;
}

.vip-limit-panel {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 54px 22px calc(var(--safe-bottom) + 16px);
  background: linear-gradient(180deg, #fff4df 0%, #f7f1ff 48%, #fff 100%);
  overflow-y: auto;
  scrollbar-width: none;
}

.vip-limit-panel::-webkit-scrollbar {
  display: none;
}

.vip-close {
  position: absolute;
  right: 18px;
  top: 54px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.72);
  border-radius: 50%;
}

.vip-limit-hero {
  min-height: 188px;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 9px;
  padding: 18px 20px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 20% 10%, rgba(255, 255, 255, 0.44), transparent 92px),
    linear-gradient(135deg, #4a2b20, #a36a3d 58%, #f2c48a);
  color: #fff;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.vip-limit-hero .vip-hero-icon {
  width: 58px;
  height: 58px;
  font-size: 32px;
}

.vip-limit-hero h2 {
  margin: 0;
  font-size: 23px;
  line-height: 1.24;
}

.vip-limit-hero p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.5;
}

.vip-limit-panel .vip-benefit-grid {
  margin-top: 0;
}

.vip-limit-panel .vip-benefit {
  min-height: 84px;
  padding: 12px;
}

.vip-limit-panel .vip-benefit .ri {
  width: 30px;
  height: 30px;
  font-size: 18px;
}

.vip-limit-plans {
  margin-top: 0;
  padding: 14px;
  border-radius: 18px;
}

.vip-limit-plans .section-head {
  margin-bottom: 10px;
}

.vip-limit-plans .vip-plan-row {
  width: 100%;
  min-height: 58px;
  padding: 9px 12px;
  text-align: left;
}

.vip-limit-plans .vip-plan-row + .vip-plan-row {
  margin-top: 8px;
}

.vip-limit-actions {
  display: grid;
  gap: 8px;
  margin-top: auto;
}

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

.super-like-effect {
  position: absolute;
  inset: 0;
  display: none;
  place-items: center;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 44%, rgba(124, 92, 252, 0.2), transparent 150px),
    rgba(26, 26, 46, 0.18);
  z-index: 28;
}

.super-like-effect.show {
  display: grid;
}

.super-like-burst {
  position: relative;
  width: 220px;
  height: 220px;
  display: grid;
  place-items: center;
  animation: superBurst 1.38s ease both;
}

.super-like-avatar {
  width: 96px;
  height: 96px;
  border: 5px solid #fff;
  border-radius: 50%;
  box-shadow: var(--shadow-lg);
}

.super-like-rocket {
  position: absolute;
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--grad-tech);
  color: #fff;
  font-size: 40px;
  box-shadow: 0 14px 34px rgba(124, 92, 252, 0.34);
  animation: superRocket 1.38s ease both;
}

.super-like-spark {
  position: absolute;
  display: grid;
  place-items: center;
  color: #ff4d6d;
  filter: drop-shadow(0 6px 12px rgba(255, 77, 109, 0.24));
  animation: superSpark 1.2s ease both;
}

.super-like-spark.one {
  left: 24px;
  top: 34px;
  font-size: 24px;
}

.super-like-spark.two {
  right: 28px;
  top: 52px;
  font-size: 28px;
  animation-delay: 0.06s;
}

.super-like-spark.three {
  right: 52px;
  bottom: 26px;
  color: #ffb930;
  font-size: 24px;
  animation-delay: 0.12s;
}

.super-like-copy {
  position: absolute;
  left: 38px;
  right: 38px;
  top: 548px;
  display: grid;
  justify-items: center;
  gap: 6px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-lg);
  animation: superCopy 1.38s ease both;
}

.super-like-copy strong {
  color: var(--purple);
  font-size: 22px;
}

.super-like-copy span {
  color: var(--muted);
  font-size: 14px;
}

@keyframes superBurst {
  0% { transform: scale(0.72); opacity: 0; }
  18% { transform: scale(1.06); opacity: 1; }
  72% { transform: scale(1); opacity: 1; }
  100% { transform: translateY(-18px) scale(0.88); opacity: 0; }
}

@keyframes superRocket {
  0% { transform: translateY(46px) scale(0.62) rotate(-18deg); opacity: 0; }
  24% { transform: translateY(0) scale(1) rotate(0); opacity: 1; }
  78% { transform: translateY(-84px) scale(0.82) rotate(18deg); opacity: 1; }
  100% { transform: translateY(-126px) scale(0.68) rotate(26deg); opacity: 0; }
}

@keyframes superSpark {
  0% { transform: scale(0.2); opacity: 0; }
  26% { transform: scale(1.18); opacity: 1; }
  100% { transform: translateY(-22px) scale(0.84); opacity: 0; }
}

@keyframes superCopy {
  0% { transform: translateY(18px); opacity: 0; }
  24% { transform: translateY(0); opacity: 1; }
  78% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(-16px); opacity: 0; }
}

.chat-page {
  background: linear-gradient(180deg, #edf7ff 0%, #fbfbff 54%, #fff 100%);
}

.chat-nav {
  grid-template-columns: 44px 1fr 108px;
}

.chat-nav-title {
  min-width: 0;
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 9px;
  align-items: center;
}

.chat-nav-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
}

.chat-nav-title strong {
  display: block;
  overflow: hidden;
  color: var(--text);
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.chat-nav-title small {
  display: block;
  color: var(--weak);
  font-size: 11px;
  line-height: 16px;
}

.chat-scroll {
  inset: 108px 0 86px;
  padding: 10px 16px 22px;
}

.chat-tip {
  width: fit-content;
  max-width: 260px;
  margin: 2px auto 16px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--weak);
  font-size: 12px;
}

.chat-feed {
  display: grid;
  gap: 12px;
}

.chat-time {
  justify-self: center;
  color: var(--weak);
  font-size: 11px;
}

.chat-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.chat-row.self {
  justify-content: flex-end;
}

.chat-row .chat-avatar {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  border-radius: 50%;
}

.chat-bubble {
  max-width: 236px;
  padding: 10px 12px;
  border-radius: 14px 14px 14px 4px;
  background: #fff;
  box-shadow: var(--shadow-xs);
  color: var(--text);
  font-size: 14px;
  line-height: 1.5;
}

.chat-message-stack,
.chat-media-wrap {
  max-width: 236px;
  display: grid;
  gap: 5px;
}

.chat-media-wrap {
  position: relative;
}

.chat-row.self .chat-bubble {
  border-radius: 14px 14px 4px 14px;
  background: var(--grad-tech);
  color: #fff;
  box-shadow: var(--shadow-secondary);
}

.chat-media {
  width: 160px;
  height: 112px;
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
}

.is-violation .chat-bubble {
  position: relative;
  overflow: hidden;
  background: #f1f1f4;
  color: transparent;
  text-shadow: 0 0 10px rgba(26, 26, 46, 0.72);
}

.chat-row.self .is-violation .chat-bubble {
  background: linear-gradient(135deg, #8d7bec, #a492ff);
  color: transparent;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.9);
}

.is-violation .chat-bubble::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.18) 0 6px, rgba(255,255,255,0.34) 6px 12px),
    rgba(26, 26, 46, 0.08);
  backdrop-filter: blur(4px);
}

.is-violation .chat-media {
  filter: blur(8px) saturate(0.55);
  transform: scale(1.03);
}

.chat-media-wrap.is-violation .chat-media::after {
  content: "内容已打码";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border-radius: inherit;
  background: rgba(26, 26, 46, 0.42);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
}

.violation-note {
  color: var(--error);
  font-size: 11px;
  line-height: 16px;
  text-align: left;
}

.chat-row.self .violation-note {
  text-align: right;
}

.chat-composer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  min-height: 86px;
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) 40px 56px;
  gap: 8px;
  align-items: center;
  padding: 10px 14px var(--safe-bottom);
  background: rgba(255, 255, 255, 0.94);
  border-top: 1px solid rgba(240, 235, 232, 0.88);
  backdrop-filter: blur(20px);
  z-index: 10;
}

.composer-tool {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--muted);
  font-size: 22px;
}

.chat-input-shell {
  height: 42px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  background: #f7f6f6;
}

.chat-input-shell input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--text);
  font: inherit;
  font-size: 13px;
}

.chat-input-shell input::placeholder {
  color: var(--weak);
}

.send-pill {
  height: 40px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  box-shadow: var(--shadow-primary);
}

.super-like-page {
  background: linear-gradient(180deg, #f0efff 0%, #fbfbff 44%, #fff 100%);
}

.super-like-scroll {
  padding: 0 14px 28px;
}

.super-like-card {
  overflow: hidden;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-sm);
}

.super-like-row {
  min-height: 78px;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 50px;
  gap: 12px;
  align-items: center;
  padding: 13px 14px;
  border-bottom: 1px solid rgba(240, 235, 232, 0.9);
}

.super-like-row:last-child {
  border-bottom: 0;
}

.super-like-row.muted {
  opacity: 0.78;
}

.super-like-avatar {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  box-shadow: var(--shadow-xs);
}

.super-like-info {
  min-width: 0;
}

.super-like-info strong {
  display: block;
  overflow: hidden;
  color: var(--text);
  font-size: 16px;
  font-weight: 700;
  line-height: 22px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.super-like-info small {
  display: block;
  margin-top: 2px;
  overflow: hidden;
  color: var(--muted);
  font-size: 12px;
  line-height: 17px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.super-like-action,
.super-like-state {
  justify-self: end;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 20px;
  box-shadow: var(--shadow-md);
}

.super-like-action.heart {
  background: #fff;
  color: var(--primary);
}

.super-like-action.chat {
  background: #fff;
  color: #ee5cc2;
}

.super-like-state {
  background: #f2f2f5;
  color: var(--weak);
  font-size: 12px;
  box-shadow: none;
}

.list-end {
  margin: 20px 0 0;
  color: var(--weak);
  font-size: 13px;
  text-align: center;
}

.wallet-page {
  background: linear-gradient(180deg, #eafaff 0%, #f7f1ff 34%, #fff 100%);
}

.wallet-scroll {
  position: absolute;
  inset: 108px 0 92px;
  overflow-y: auto;
  padding: 0 10px 28px;
  scrollbar-width: none;
}

.wallet-scroll::-webkit-scrollbar,
.coin-detail-list::-webkit-scrollbar {
  display: none;
}

.wallet-balance-card {
  min-height: 134px;
  margin: 0 -10px;
  padding: 18px 30px 22px;
  background:
    radial-gradient(circle at 86% 20%, rgba(255, 185, 48, 0.18), transparent 84px),
    linear-gradient(135deg, rgba(255, 236, 202, 0.72), rgba(240, 237, 255, 0.82));
}

.wallet-balance-card > span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 8px;
}

.wallet-balance-card div {
  display: flex;
  align-items: center;
  gap: 8px;
}

.wallet-balance-card strong {
  font-size: 24px;
  font-weight: 700;
}

.wallet-balance-card a {
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--muted);
  font-size: 12px;
}

.recharge-panel,
.vip-plan-card {
  margin-top: -16px;
  padding: 18px 10px 20px;
  border-radius: 18px 18px 0 0;
  background: #fff;
}

.panel-title {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  margin: 0 0 14px;
  font-size: 16px;
  font-weight: 700;
}

.panel-title span {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(107, 107, 128, 0.28));
}

.panel-title span:last-child {
  background: linear-gradient(90deg, rgba(107, 107, 128, 0.28), transparent);
}

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

.coin-package {
  position: relative;
  min-height: 122px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 14px;
  padding: 22px 8px 12px;
  border: 1px solid rgba(232, 178, 92, 0.48);
  border-radius: 10px;
  background: #fff;
  color: #5d3c20;
}

.coin-package span {
  position: absolute;
  left: 0;
  top: 0;
  min-height: 22px;
  padding: 3px 8px;
  border-radius: 9px 0 9px 0;
  background: #ffe6b0;
  color: #8a5a18;
  font-size: 11px;
  font-weight: 700;
}

.coin-package strong {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 20px;
  font-weight: 600;
}

.coin-package small {
  color: #5d3c20;
  font-size: 13px;
}

.coin-package.selected {
  border-color: #ffb930;
  box-shadow: inset 0 0 0 1px #ffb930;
}

.recharge-action-sheet .recharge-package-row {
  display: flex;
  grid-template-columns: none;
  flex-wrap: nowrap;
  gap: 8px;
  margin: 0 -18px;
  padding: 0 26px 4px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
}

.recharge-action-sheet .recharge-package-row::-webkit-scrollbar {
  display: none;
}

.recharge-action-sheet .recharge-package-row .coin-package {
  flex: 0 0 104px;
  width: 104px;
  scroll-snap-align: start;
}

.wallet-vip-banner {
  min-height: 88px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 64px;
  gap: 12px;
  align-items: center;
  margin-top: 28px;
  padding: 14px 16px;
  border-radius: 12px;
  background: linear-gradient(135deg, #f4eaff, #ffdce8);
  color: #7c4fcd;
}

.wallet-vip-banner strong,
.wallet-vip-banner span {
  display: block;
}

.wallet-vip-banner strong {
  font-size: 17px;
  margin-bottom: 6px;
}

.wallet-vip-banner span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.wallet-vip-banner > .ri {
  justify-self: end;
  color: #b26cff;
  font-size: 42px;
}

.wallet-bottom {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 92px;
  display: grid;
  align-items: center;
  padding: 12px 38px var(--safe-bottom);
  background: linear-gradient(180deg, rgba(255,255,255,0.18), #fff 32%);
  z-index: 10;
}

.primary-btn.bronze {
  background: linear-gradient(135deg, #c68261, #f0c6b2);
  box-shadow: 0 4px 16px rgba(198, 130, 97, 0.28);
  color: #4b2618;
}

.recharge-action-sheet .primary-btn.bronze {
  width: calc(100% - 72px);
  min-height: 58px;
  display: grid;
  place-items: center;
  margin: 27px auto 0;
  padding: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, #c78262 0%, #f2d1c5 50%, #d3997b 100%);
  box-shadow: none;
  color: #5b3426;
  font-size: 19px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}

.recharge-action-sheet .recharge-vip-link {
  width: 100%;
  display: block;
  text-align: center;
}

.detail-page {
  background: linear-gradient(180deg, #eafaff 0%, #f8fbff 34%, #fff 100%);
}

.coin-detail-list {
  position: absolute;
  inset: 108px 0 0;
  overflow-y: auto;
  padding: 14px 16px 28px;
  background: #fff;
}

.coin-detail-item {
  min-height: 66px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
}

.coin-detail-item strong,
.coin-detail-item span {
  display: block;
}

.coin-detail-item strong {
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
}

.coin-detail-item span {
  margin-top: 2px;
  color: var(--weak);
  font-size: 12px;
}

.coin-detail-item b {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 600;
}

.coin-detail-item .plus {
  color: var(--purple);
}

.coin-detail-item .minus {
  color: #5f4a32;
}

.vip-page {
  background: linear-gradient(180deg, #fff4df 0%, #f7f1ff 44%, #fff 100%);
}

.vip-scroll {
  padding: 0 16px 28px;
}

.vip-hero-card {
  min-height: 190px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 76px;
  gap: 12px;
  align-items: center;
  padding: 22px 18px;
  border-radius: 22px;
  background:
    radial-gradient(circle at 90% 20%, rgba(255, 255, 255, 0.46), transparent 86px),
    linear-gradient(135deg, #4a2b20, #a36a3d 56%, #f2c48a);
  color: #fff;
  box-shadow: var(--shadow-md);
}

.vip-kicker {
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  color: #ffe7b9;
  font-size: 12px;
  font-weight: 700;
}

.vip-hero-card h1 {
  margin: 16px 0 8px;
  font-size: 25px;
  line-height: 1.22;
  letter-spacing: 0;
}

.vip-hero-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  line-height: 1.5;
}

.vip-hero-icon {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.18);
  color: #ffe7b9;
  font-size: 38px;
}

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

.vip-benefit {
  min-height: 116px;
  display: grid;
  align-content: center;
  gap: 7px;
  padding: 16px;
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.vip-benefit .ri {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: #fff3d6;
  color: #c88716;
  font-size: 20px;
}

.vip-benefit strong {
  font-size: 16px;
}

.vip-benefit span {
  color: var(--muted);
  font-size: 12px;
}

.vip-plan-card {
  margin-top: 14px;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
}

.vip-plan-card .section-head {
  margin-bottom: 12px;
}

.plan-save {
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  background: #fff3d6;
  color: #8a5a18;
  font-size: 12px;
  font-weight: 700;
}

.vip-plan-row {
  min-height: 68px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
}

.vip-plan-row + .vip-plan-row {
  margin-top: 10px;
}

.vip-plan-row strong,
.vip-plan-row span {
  display: block;
}

.vip-plan-row strong {
  font-size: 16px;
}

.vip-plan-row span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

.vip-plan-row b {
  color: #8a5a18;
  font-size: 18px;
}

.vip-plan-row.selected {
  border-color: #ffb930;
  background: #fffaf0;
}
