:root {
  --brand: #ff6f6f;
  --brand-soft: #ffe8e8;
  --bg: #f6f4f2;
  --card: #ffffff;
  --text: #1f1f1f;
  --muted: #8a8a8a;
  --line: #ece8e6;
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --tab-h: 56px;
  --font: "PingFang SC", "Hiragino Sans GB", "Noto Sans SC", "Microsoft YaHei", sans-serif;
  /* ?????????????? fixed ????? */
  --phone-side: max(0px, calc((100vw - 430px) / 2));
}

* { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
html, body, #app { margin: 0; padding: 0; min-height: 100%; font-family: var(--font); background: #e8e4e1; color: var(--text); }
a { color: inherit; text-decoration: none; }
button { font: inherit; border: none; background: none; cursor: pointer; }
img { max-width: 100%; display: block; }

/* ???????????????????????? */
#app {
  max-width: 430px;
  margin: 0 auto;
  min-height: 100vh;
  background: var(--bg);
  box-shadow: 0 0 0 1px rgba(0,0,0,.04), 0 12px 40px rgba(0,0,0,.08);
  /* ??????fixed ????????/??? */
  --phone-side: max(0px, calc((100vw - 430px) / 2));
}

.app-root { min-height: 100vh; padding-bottom: calc(var(--tab-h) + var(--safe-bottom)); }
.app-root.no-tab { padding-bottom: 0; }
.site-icp {
  text-align: center;
  padding: 10px 12px calc(8px + var(--safe-bottom));
  font-size: 11px;
  color: #aaa;
  line-height: 1.6;
  background: transparent;
}
.site-icp a { color: #999; text-decoration: none; }
.site-icp span { display: block; margin-top: 2px; color: #bbb; }
.page { min-height: 100vh; padding: 12px 14px 24px; }
.page-title { font-size: 22px; font-weight: 700; margin: 8px 0 14px; }
.card { background: var(--card); border-radius: 14px; padding: 14px; margin-bottom: 12px; }
.muted { color: var(--muted); font-size: 13px; }
.empty { text-align: center; color: var(--muted); padding: 48px 16px; font-size: 14px; }
.avatar { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; background: #ddd; flex-shrink: 0; }
.avatar.lg { width: 64px; height: 64px; }
.avatar.xl { width: 72px; height: 72px; }

.btn-primary, .btn-ghost {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 40px; padding: 0 16px; border-radius: 999px; font-weight: 600;
}
.btn-primary { background: var(--brand); color: #fff; }
.btn-ghost { background: var(--brand-soft); color: var(--brand); font-size: 13px; }

.tab-bar {
  position: fixed; left: 50%; bottom: 0; z-index: 50;
  transform: translateX(-50%);
  width: 100%; max-width: 430px;
  display: flex; align-items: center;
  height: calc(var(--tab-h) + var(--safe-bottom));
  padding-bottom: var(--safe-bottom);
  background: rgba(255,255,255,.96); border-top: 1px solid var(--line);
  box-shadow: 0 -2px 12px rgba(0,0,0,.04);
}
.tab-item {
  flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 2px; color: #999; font-size: 11px; height: 56px;
}
.tab-item.active { color: #ff5a7a; }
.icon-img-wrap { position: relative; width: 22px; height: 22px; display: flex; align-items: center; justify-content: center; }
.icon-img { width: 22px; height: 22px; object-fit: contain; }
.tabbar-badge {
  position: absolute; top: -8px; right: -12px; min-width: 16px; height: 16px;
  padding: 0 4px; border-radius: 999px; background: #ef4444; color: #fff;
  font-size: 10px; line-height: 16px; text-align: center; border: 1px solid #fff;
}
.fab-wrap { position: relative; top: -8px; }
.fab-col { display: flex; flex-direction: column; align-items: center; }
.fab-btn {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, #ff7a9a, #ff5a7a);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(255, 90, 122, 0.35);
}
.fab-icon { width: 24px; height: 24px; object-fit: contain; }
.fab-text { margin-top: 2px; font-size: 11px; color: #ff6f6f; font-weight: 600; }
.ico { font-size: 18px; line-height: 1.1; }

/* ?? ???????????? + ????? ?? */
/* ?? ????????? pages/profile ?? */
.my-page {
  min-height: 100vh;
  background: #f6f2f3;
  padding-bottom: calc(72px + env(safe-area-inset-bottom));
  box-sizing: border-box;
}
.my-hero {
  position: relative;
  padding: 12px 14px 28px;
  background-color: #ff7a92;
  background-size: cover;
  background-position: center top;
  overflow: visible;
}
.my-hero::after {
  content: '';
  position: absolute;
  left: -20%;
  right: -20%;
  bottom: -20px;
  height: 60px;
  background: radial-gradient(ellipse at center, rgba(255,255,255,.18) 0%, transparent 70%);
  pointer-events: none;
}
.hero-nav {
  position: relative;
  z-index: 2;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}
.hero-nav-title {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 1px 4px rgba(180,60,80,.25);
  pointer-events: none;
}
.hero-user {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  margin-top: 4px;
}
.hero-avatar-wrap {
  width: 66px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: visible;
}
.hero-avatar {
  width: 66px;
  height: 66px;
  border-radius: 18px;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,.85);
  background: #fff;
  box-shadow: 0 5px 12px rgba(180,60,80,.22);
  flex-shrink: 0;
}
.hero-avatar.cancelled {
  filter: grayscale(1) brightness(0.92);
  opacity: .55;
  border-color: rgba(160,160,160,.85);
  background: #d0d0d0;
}
.hero-badge {
  position: static !important;
  margin-top: 6px;
  min-width: 56px;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  color: #666;
  font-size: 10px;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  white-space: nowrap;
  box-sizing: border-box;
  font-weight: 600;
}
.hero-badge.vip {
  background: linear-gradient(90deg, #d4a45a, #f5e0a0);
  color: #6b4310;
}
.hero-badge.member {
  background: linear-gradient(135deg, #ffe8ec 0%, #ffd0d8 100%);
  color: #e04555;
  font-weight: 600;
  border: 1px solid rgba(255, 111, 111, 0.45);
}
.hero-badge.guest {
  background: rgba(255, 255, 255, 0.92);
  color: #666;
}
.hero-badge-icon { width: 13px; height: 13px; object-fit: contain; }
.hero-meta {
  flex: 1;
  margin-left: 14px;
  min-width: 0;
  padding-top: 2px;
}
.hero-service {
  flex-shrink: 0;
  margin-left: 6px;
  margin-top: 12px;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(255,255,255,.95);
  border-radius: 50%;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  box-shadow: 0 4px 11px rgba(180,60,80,.22);
  box-sizing: border-box;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}
.hero-service:active { opacity: .88; transform: scale(.96); }
.hero-service-icon {
  font-size: 17px;
  line-height: 1;
  color: #FF6F6F;
}
.hero-service-text {
  font-size: 11px;
  font-weight: 700;
  color: #FF6F6F;
  line-height: 1.1;
}
.hero-name-row {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}
.hero-name {
  max-width: 140px;
  font-size: 19px;
  font-weight: 800;
  color: #fff;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.hero-name.cancelled {
  color: #b8b8b8;
  font-weight: 600;
  opacity: .85;
}
.hero-gender { font-size: 13px; flex-shrink: 0; }
.hero-gender.male { color: #d6f0ff; }
.hero-gender.female { color: #ffe4ec; }
.hero-checkin {
  flex-shrink: 0;
  margin-left: 4px;
  padding: 2px 6px;
  border: none;
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 2px;
  box-shadow: 0 2px 6px rgba(180,60,80,.16);
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}
.hero-checkin:active { opacity: .88; transform: scale(.96); }
.hero-checkin-icon { font-size: 10px; line-height: 1; }
.hero-checkin-text {
  font-size: 9px;
  font-weight: 700;
  color: #FF6F6F;
  line-height: 1.2;
  white-space: nowrap;
}
.hero-sub-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 6px;
}
.hero-id {
  margin-top: 0;
  font-size: 11px;
  color: rgba(255,255,255,.85);
  padding: 2px 7px;
  border-radius: 999px;
  background: rgba(255,255,255,.16);
}
.hero-chip {
  font-size: 11px;
  color: #fff;
  padding: 2px 7px;
  border-radius: 999px;
  background: rgba(255,255,255,.2);
}
.hero-edit {
  margin-top: 9px;
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(255,255,255,.2);
  color: #fff;
  font-size: 11px;
  cursor: pointer;
}
.hero-edit-arrow { font-size: 13px; line-height: 1; }

.my-sheet {
  position: relative;
  z-index: 3;
  margin-top: -18px;
  padding: 0 12px 4px;
}
.stats-card {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 12px;
  padding: 14px 4px;
  box-shadow: 0 5px 14px rgba(255,111,111,.1);
  margin-bottom: 0;
}
.stat-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: pointer;
}
.stat-num {
  font-size: 18px;
  font-weight: 800;
  color: #2c2c2c;
  line-height: 1.15;
}
.stat-num.accent { color: #FF6F6F; }
.stat-label {
  margin-top: 4px;
  font-size: 11px;
  color: #999;
}
.stat-divider {
  width: 1px;
  height: 24px;
  background: #f0e6e8;
  flex-shrink: 0;
  margin: 0;
}

.vip-card {
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 11px 11px 11px 10px;
  border-radius: 11px;
  background: linear-gradient(110deg, #fff9f0 0%, #fff3e2 48%, #ffe8c8 100%);
  border: 1px solid rgba(212, 164, 90, 0.28);
  box-shadow: 0 4px 10px rgba(180, 120, 40, 0.08);
  cursor: pointer;
}
.vip-card-left {
  display: flex;
  align-items: center;
  flex: 1;
  min-width: 0;
  margin-right: 8px;
}
.vip-mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(145deg, #f0d28a, #c89545);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-right: 9px;
  box-shadow: 0 3px 7px rgba(180, 120, 40, 0.22);
  overflow: hidden;
}
.vip-mark img,
.vip-mark-icon { width: 21px; height: 21px; object-fit: contain; }
.vip-copy { flex: 1; min-width: 0; }
.vip-title {
  display: block;
  font-size: 15px;
  font-weight: 800;
  color: #6b4310;
}
.vip-sub {
  display: block;
  margin-top: 3px;
  font-size: 11px;
  color: #a07840;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.vip-cta {
  flex-shrink: 0;
  padding: 7px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, #FF6F6F, #ff8a7a);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 4px 8px rgba(255, 111, 111, 0.28);
}

.enter4-row {
  display: flex;
  align-items: flex-start;
  margin-top: 10px;
  padding: 14px 4px 12px;
  background: #fff;
  border-radius: 11px;
  box-shadow: 0 3px 10px rgba(255, 111, 111, 0.06);
}
.enter4-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  padding: 0;
  border: none;
  background: transparent;
  box-shadow: none;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}
.enter4-item.loveb,
.enter4-item.gift,
.enter4-item.match { background: transparent; }
.enter4-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 6px;
  object-fit: contain;
  display: block;
}
.enter4-label {
  font-size: 13px;
  line-height: 1.3;
  color: #444;
  text-align: center;
}

.viewer-box,
.box.viewer-box {
  margin-top: 10px;
  margin-bottom: 0;
  padding: 12px;
  background: #fff;
  border-radius: 11px;
  box-shadow: 0 3px 10px rgba(255, 111, 111, 0.06);
  cursor: pointer;
}
.box-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 9px;
}
.box-title { font-size: 15px; font-weight: 700; color: #222; }
.box-more { font-size: 12px; color: #999; }
.viewer-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  overflow-x: visible;
}
.viewer-av {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  background: #eee;
  flex-shrink: 0;
}
.viewer-empty {
  font-size: 12px;
  color: #999;
  padding: 4px 0 2px;
}

.appul-grid {
  display: flex;
  flex-wrap: wrap;
  margin-top: 10px;
  padding: 6px 0 4px;
  background: #fff;
  border-radius: 11px;
  box-shadow: 0 3px 10px rgba(255, 111, 111, 0.06);
  gap: 0;
}
.appul-item {
  position: relative;
  width: 25%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  padding: 11px 4px;
  border: none;
  border-radius: 0;
  background: transparent;
  box-sizing: border-box;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}
.appul-item:active { background: #faf6f6; }
.appul-icon {
  width: 28px;
  height: 28px;
  margin-bottom: 5px;
  object-fit: contain;
}
.appul-ico { font-size: 22px; line-height: 1; }
.appul-label {
  font-size: 12px;
  color: #555;
  text-align: center;
  line-height: 1.25;
}
.appul-badge {
  position: absolute;
  top: 6px;
  right: 10px;
  padding: 1px 5px;
  border-radius: 999px;
  background: #ff6f6f;
  color: #fff;
  font-size: 9px;
  line-height: 1.4;
  font-weight: 700;
}

.legal-links {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 12px calc(14px + env(safe-area-inset-bottom));
}
.legal-link {
  font-size: 12px;
  color: #999;
  padding: 4px 6px;
  cursor: pointer;
}
.legal-dot {
  font-size: 12px;
  color: #ccc;
}

.svc-mask {
  position: fixed; z-index: 200;
  top: 0; bottom: 0;
  left: 50%; width: 100%; max-width: 430px; transform: translateX(-50%);
  background: rgba(0,0,0,.55);
  display: flex; align-items: center; justify-content: center;
  padding: 24px; box-sizing: border-box;
}
.svc-panel {
  position: relative;
  width: 100%; max-width: 280px;
  background: #fff; border-radius: 12px;
  padding: 18px 16px 14px;
  text-align: center; box-sizing: border-box;
}
.svc-title {
  font-size: 17px; font-weight: 800; color: #222; margin: 0;
}
.svc-tip {
  margin-top: 8px; font-size: 13px; color: #FF6F6F; line-height: 1.5;
}
.svc-wechat {
  display: block; width: 100%; margin-top: 10px; padding: 0; border: none;
  background: transparent; text-align: center;
  font-size: 14px; color: #333; cursor: pointer;
}
.svc-wechat.muted { color: #999; cursor: default; }
.svc-qr-box {
  margin-top: 14px; width: 100%; min-height: 180px;
  border-radius: 8px; background: #f7f7f8;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.svc-qr {
  width: 180px; height: 180px; object-fit: contain; display: block;
  margin: 0; background: transparent; border-radius: 0;
}
.svc-qr-empty {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  color: #999; font-size: 13px; padding: 20px;
}
.svc-qr-tip { font-size: 11px; color: #bbb; }
.svc-hint {
  margin: 8px 0 0; text-align: center;
  font-size: 11px; color: #999; line-height: 1.5;
}
.svc-ok {
  display: block; width: 100%; margin-top: 10px; padding: 0; border: none;
  height: 40px; line-height: 40px; text-align: center;
  font-size: 15px; font-weight: 700; color: #3b82f6;
  background: transparent; border-radius: 999px; cursor: pointer;
}
.svc-toast {
  position: absolute; left: 50%; bottom: 58px; transform: translateX(-50%);
  padding: 8px 14px; border-radius: 8px; background: rgba(0,0,0,.75);
  color: #fff; font-size: 13px; white-space: nowrap;
}
.svc-sheet { display: none; }

.act-mask {
  position: fixed; z-index: 210;
  top: 0; bottom: 0;
  left: 50%; width: 100%; max-width: 430px; transform: translateX(-50%);
  background: rgba(0,0,0,.45);
  display: flex; align-items: flex-end; justify-content: center;
}
.act-sheet {
  width: 100%; background: #f2f2f2;
  border-radius: 12px 12px 0 0;
  padding: 0 0 calc(8px + var(--safe-bottom));
  overflow: hidden;
}
.act-item {
  display: block; width: 100%; height: 52px; line-height: 52px;
  text-align: center; font-size: 16px; color: #222;
  background: #fff; border: none; border-bottom: 1px solid #f0f0f0;
}
.act-cancel {
  display: block; width: 100%; height: 52px; line-height: 52px; margin-top: 8px;
  text-align: center; font-size: 16px; color: #222; font-weight: 600;
  background: #fff; border: none;
}

.hero { padding: 8px 2px 4px; }
.brand { font-size: 26px; font-weight: 800; color: var(--brand); }
.tagline { margin: 4px 0 0; color: var(--muted); font-size: 13px; }
.banner-img { width: 100%; display: block; background: #eee; }
.filters { display: flex; gap: 8px; margin: 4px 0 12px; overflow-x: auto; }
.chip {
  flex-shrink: 0; padding: 6px 14px; border-radius: 999px; background: #fff;
  color: var(--muted); font-size: 13px; border: 1px solid var(--line);
}
.chip.on { background: var(--brand); color: #fff; border-color: var(--brand); }
.member, .row, .head, .me { display: flex; gap: 12px; align-items: center; }
.name { font-weight: 650; margin-bottom: 4px; }
.more { display: block; width: 100%; margin-top: 8px; }

/* ?? ??????????? ?? */
.home-page {
  min-height: 100vh;
  background: #f5f5f5;
  padding-bottom: 8px;
}
.home-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #fff;
  padding: 12px 16px;
  border-bottom: 1px solid #f0f0f0;
}
.home-nav-title {
  text-align: center;
  font-size: 17px;
  font-weight: 700;
  color: #222;
}
.home-warning {
  display: flex;
  gap: 8px;
  margin: 10px 12px 0;
  padding: 10px 12px;
  background: #fff7ed;
  border: 1px solid #fed7aa;
  border-radius: 10px;
}
.home-warning-text {
  flex: 1;
  font-size: 12px;
  line-height: 1.5;
  color: #c2410c;
}
.home-warning-close {
  font-size: 18px;
  color: #999;
  line-height: 1;
  padding: 0 2px;
}
.feed-tabs {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px 12px;
  background: #fff;
  overflow-x: auto;
}
.feed-tab {
  flex-shrink: 0;
  font-size: 14px;
  color: #999;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}
.feed-tab.active {
  color: #ff5a7a;
  font-weight: 700;
  border-bottom-color: #ff5a7a;
}
.feed-report {
  margin-left: auto;
  flex-shrink: 0;
  padding: 4px 10px;
  border-radius: 999px;
  background: #fff0f3;
  border: 1px solid rgba(255, 90, 122, 0.28);
  color: #ff5a7a;
  font-size: 11px;
  font-weight: 600;
}
.home-audit-tip {
  margin: 10px 12px;
  padding: 12px 14px;
  border-radius: 12px;
  background: #fff1f2;
  border: 1px solid #fecdd3;
  color: #be123c;
  font-size: 13px;
  line-height: 1.55;
}
.banner-wrap {
  position: relative;
  margin: 0 12px 12px;
  border-radius: 14px;
  overflow: hidden;
  background: #eee;
  aspect-ratio: 3278 / 1280;
  touch-action: pan-y;
}
.banner-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform .45s ease;
  will-change: transform;
}
.banner-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  position: relative;
}
.banner-wrap .banner-img,
.banner-slide .banner-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  margin: 0;
  border-radius: 0;
  display: block;
}
.banner-dots {
  position: absolute;
  left: 0; right: 0; bottom: 8px;
  display: flex;
  justify-content: center;
  gap: 6px;
  z-index: 2;
  pointer-events: none;
}
.banner-dots .dot {
  pointer-events: auto;
  width: 7px; height: 7px; border-radius: 50%;
  padding: 0; border: 1px solid rgba(0,0,0,.12);
  background: rgba(255,255,255,.55);
  box-shadow: 0 1px 2px rgba(0,0,0,.2);
  cursor: pointer;
}
.banner-dots .dot.on {
  background: #ff6f6f;
  border-color: #ff6f6f;
  width: 16px;
  border-radius: 999px;
}

.box {
  margin: 0 12px 12px;
  padding: 12px 12px 8px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(0,0,0,.04);
}
.i-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.i-box-left {
  display: flex;
  align-items: baseline;
  gap: 6px;
  min-width: 0;
}
.i-tab { font-size: 16px; font-weight: 700; color: #222; }
.i-tab.ed { color: #ff5a7a; }
.i-action { font-size: 13px; color: #ff5a7a; }
.refresh-info-btn {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 88px;
  padding: 7px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(255, 111, 111, 0.55);
  box-shadow:
    0 0 0 3px rgba(255, 111, 111, 0.1),
    0 3px 8px rgba(255, 111, 111, 0.16);
  cursor: pointer;
}
.refresh-info-txt {
  color: #ff5f6f;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  line-height: 1.2;
  display: inline-block;
  transform-origin: center bottom;
  animation: refresh-info-wiggle 1.7s ease-in-out infinite;
}
@keyframes refresh-info-wiggle {
  0%, 100% { transform: rotate(0deg) translateX(0); }
  25% { transform: rotate(-12deg) translateX(-2px); }
  50% { transform: rotate(0deg) translateX(0); }
  75% { transform: rotate(12deg) translateX(2px); }
}

.zhiding-scroll {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  padding-bottom: 4px;
}
.zhiding-track {
  display: inline-flex;
  padding: 2px 0 6px;
}
.zhiding-track.animate {
  animation: zhiding-marquee linear infinite;
}
@keyframes zhiding-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.zhiding-item {
  display: inline-flex;
  align-items: flex-start;
  flex-shrink: 0;
  width: 160px;
  min-height: 60px;
  margin-right: 8px;
  padding-bottom: 4px;
  background: #fafafa;
  border-radius: 8px;
  overflow: hidden;
  box-sizing: border-box;
  text-decoration: none;
  color: inherit;
}
.zhiding-avatar-col {
  flex-shrink: 0;
  width: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.zhiding-photo {
  width: 60px;
  height: 60px;
  display: block;
  object-fit: cover;
  background: #eee;
  border-radius: 0;
}
.zhiding-avatar-badge {
  margin-top: 5px;
  max-width: 56px;
  padding: 2px 6px;
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.5px;
  border-radius: 999px;
  line-height: 1.2;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  box-sizing: border-box;
  background: #f2f2f2;
  color: #9a9a9a;
}
.zhiding-avatar-badge.guest { background: #f2f2f2; color: #9a9a9a; }
.zhiding-avatar-badge.member {
  background: linear-gradient(135deg, #ffe8ec 0%, #ffd0d8 100%);
  color: #e04555;
  font-weight: 600;
  border: 1px solid rgba(255, 111, 111, 0.4);
}
.zhiding-avatar-badge.vip {
  background: linear-gradient(135deg, #fff8e7 0%, #f5e2a8 55%, #ecd278 100%);
  color: #8a6419;
  font-weight: 500;
}
.zhiding-info {
  padding: 6px 6px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  flex: 1;
}
.zhiding-name {
  font-size: 14px;
  font-weight: 700;
  color: #333;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.zhiding-meta {
  font-size: 11px;
  color: #999;
  margin-top: 3px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.zhiding-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 4px;
  max-width: 100%;
}
.zhiding-tag {
  max-width: 80px;
  padding: 2px 7px;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.3;
  color: #e04555;
  background: linear-gradient(135deg, #ffe8ec 0%, #ffd0d8 100%);
  border: 1px solid rgba(255, 111, 111, 0.35);
  border-radius: 999px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.list-empty { text-align: center; color: #bbb; font-size: 13px; padding: 16px 0 12px; }
.list-badge {
  display: inline-block;
  margin-top: 4px;
  padding: 1px 6px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 600;
  background: #eee;
  color: #666;
}
.list-badge.vip {
  background: linear-gradient(90deg, #f3e2c4, #e8d0a0);
  color: #7a5a28;
}
.list-badge.member, .list-badge.user { background: #ffe8e8; color: #ff6f6f; }
.list-badge.guest { background: #f2f2f2; color: #9a9a9a; }

/* ???? / ????? ? ???????? + ????????????? */
.feature-row {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  padding: 0 12px 10px;
  box-sizing: border-box;
}
.feature-item {
  position: relative;
  flex: 1;
  width: 0;
  height: 84px;
  min-height: 84px;
  border-radius: 9px;
  overflow: hidden;
  padding: 0;
  border: none;
  background: #f3e9e6;
  color: #fff;
  text-align: left;
  box-shadow: 0 3px 9px rgba(180, 120, 110, 0.12);
}
.feature-gap {
  width: 10px;
  flex-shrink: 0;
  flex-grow: 0;
}
.feature-card,
.feature-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.feature-mask {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 54px;
  background: linear-gradient(180deg, rgba(40, 28, 28, 0) 0%, rgba(40, 28, 28, 0.55) 100%);
  pointer-events: none;
}
.feature-copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 9px 10px 8px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  pointer-events: none;
}
.feature-title {
  font-size: 17px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 2px;
  line-height: 1.2;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.28);
}
.feature-sub {
  margin-top: 0;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.88);
  letter-spacing: 0.5px;
  line-height: 1.3;
  opacity: 1;
}
.feature-huxuan .feature-title { color: #fff7f5; }
.feature-note .feature-title { color: #fff8fb; }

.member-sub-tabs {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  margin-bottom: 8px;
  padding-bottom: 2px;
  -webkit-overflow-scrolling: touch;
}
.member-sub-tab {
  flex-shrink: 0;
  padding: 4px 10px;
  border-radius: 999px;
  background: #f3f4f6;
  color: #666;
  font-size: 12px;
  border: none;
  cursor: pointer;
}
.member-sub-tab.active {
  color: #fff;
  background: linear-gradient(135deg, #ff7a9a, #ff5a7a);
  font-weight: 600;
}

.list-list { padding: 0; }
.list-item {
  margin-bottom: 8px;
  cursor: pointer;
}
.list-card {
  display: flex;
  gap: 10px;
  padding: 10px;
  background: #fafafa;
  border-radius: 8px;
}
.list-avatar-wrap {
  flex-shrink: 0;
  width: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.list-avatar {
  width: 80px;
  height: 100px;
  border-radius: 8px;
  object-fit: cover;
  background: #eee;
  display: block;
}
.list-avatar-badge {
  margin-top: 7px;
  max-width: 76px;
  padding: 3px 9px;
  font-size: 10px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 1px;
  border-radius: 999px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  box-sizing: border-box;
  text-align: center;
  background: #f2f2f2;
  color: #9a9a9a;
}
.list-avatar-badge.guest { background: #f2f2f2; color: #9a9a9a; }
.list-avatar-badge.member {
  background: linear-gradient(135deg, #ffe8ec 0%, #ffd0d8 100%);
  color: #e04555;
  font-weight: 600;
  border: 1px solid rgba(255, 111, 111, 0.4);
}
.list-avatar-badge.vip {
  background: linear-gradient(135deg, #fff8e7 0%, #f5e2a8 55%, #ecd278 100%);
  color: #8a6419;
  font-weight: 500;
  letter-spacing: 0.5px;
  box-shadow: 0 1px 4px rgba(201, 153, 76, 0.18);
}
.list-info { flex: 1; min-width: 0; }
.list-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 6px;
  flex-wrap: nowrap;
}
.list-name-row {
  display: flex;
  align-items: center;
  gap: 4px;
  min-width: 0;
  flex: 1 1 auto;
  max-width: 42%;
  overflow: hidden;
}
.list-name {
  font-size: 16px;
  font-weight: 700;
  color: #222;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.list-gender-icon.male { color: #29b6f6; font-size: 14px; flex-shrink: 0; }
.list-gender-icon.female { color: #ff5a7a; font-size: 14px; flex-shrink: 0; }
.g.male { color: #29b6f6; }
.g.female { color: #ff5a7a; }
.list-actions {
  display: flex;
  align-items: flex-start;
  gap: 2px;
  flex: 0 0 auto;
  flex-wrap: nowrap;
  max-width: 58%;
}
.list-loveb,
.list-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 22px;
  min-width: 22px;
  padding: 0;
  margin: 0;
  border: none;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
  flex-shrink: 0;
}
.list-stats {
  display: flex;
  align-items: flex-start;
  gap: 1px;
  flex-wrap: nowrap;
  flex-shrink: 0;
}
.list-loveb-num,
.list-stat-num {
  font-size: 10px;
  color: #666;
  line-height: 1.2;
  white-space: nowrap;
}
.list-loveb-label {
  font-size: 9px;
  color: #ff5a7a;
  line-height: 1.2;
  white-space: nowrap;
}
.list-stat-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  background: #f3f4f6;
  color: #999;
  margin-top: 1px;
  flex-shrink: 0;
}
.list-stat-icon.like.active { background: #ffe4ea; color: #ff5a7a; }
.list-stat-icon.fav.active { background: #fff0e0; color: #f59e0b; }
.list-stat-icon.follow.active { background: #e0f2fe; color: #29b6f6; }
.list-subline {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  color: #444;
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.list-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 6px;
}
.list-chip {
  padding: 3px 8px;
  font-size: 11px;
  color: #7c3aed;
  background: #f3e8ff;
  border-radius: 999px;
}
.list-poster-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 7px;
}
.list-cta-btn {
  flex: 1;
  min-width: 0;
  height: 28px;
  padding: 0 4px;
  font-size: 12px;
  font-weight: 700;
  color: #ff5a7a;
  background: #fff;
  border: 1px solid #ff6f6f;
  border-radius: 999px;
  cursor: pointer;
}
.list-poster-btn {
  flex-shrink: 0;
  padding: 4px 11px;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #ff7a9a, #ff5a7a);
  border-radius: 999px;
  border: none;
  box-shadow: 0 2px 6px rgba(255, 90, 122, 0.28);
  cursor: pointer;
}
.list-poster-btn.busy { opacity: 0.65; }

/* ?????????? wx.previewImage?????? */
.poster-preview-mask {
  position: fixed; z-index: 280;
  inset: 0;
  left: 50%; width: 100%; max-width: 430px; transform: translateX(-50%);
  background: rgba(0,0,0,.92);
  display: flex; align-items: center; justify-content: center;
  padding: 12px 0 calc(12px + env(safe-area-inset-bottom));
  box-sizing: border-box;
}
.poster-preview-full {
  display: block;
  width: auto;
  height: auto;
  max-width: 92%;
  max-height: 92vh;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  -webkit-touch-callout: default;
  user-select: none;
  object-fit: contain;
}
.poster-preview-panel,
.poster-preview-img,
.poster-preview-tip,
.poster-preview-cap,
.poster-preview-close { display: none; }
.empty.tip-more { color: #ccc; font-size: 12px; }
.moment .content { margin: 0 0 10px; line-height: 1.55; white-space: pre-wrap; word-break: break-word; }
.media { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; margin-bottom: 10px; }
.media img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 8px; background: #eee; }
.ops { display: flex; justify-content: flex-end; }
.grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.entry { text-align: left; min-height: 96px; }
.entry .t { font-weight: 700; margin-bottom: 6px; }
.body { flex: 1; min-width: 0; }
.top { display: flex; justify-content: space-between; gap: 8px; margin-bottom: 4px; }
.preview { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.beans { margin-top: 6px; font-size: 13px; }
.beans strong { color: var(--brand); margin-left: 4px; }
.links { padding: 4px 0; }
.link {
  display: block; width: 100%; text-align: left; padding: 14px;
  border-bottom: 1px solid var(--line); font-size: 15px;
}
.link:last-child { border-bottom: none; }
.link.danger { color: #d94848; }
.note { margin-top: 16px; line-height: 1.55; font-size: 12px; }
.back { color: var(--brand); font-weight: 600; margin-bottom: 10px; }
.sec-title { font-weight: 700; margin-bottom: 10px; }
.intro { margin: 0; line-height: 1.6; white-space: pre-wrap; }
.kv {
  display: flex; justify-content: space-between; padding: 8px 0;
  border-bottom: 1px solid var(--line); font-size: 14px;
}
.kv:last-child { border-bottom: none; }
.kv span { color: var(--muted); }
.toast {
  position: fixed; left: 50%; bottom: calc(80px + var(--safe-bottom));
  transform: translateX(-50%); background: rgba(0,0,0,.78); color: #fff;
  padding: 10px 16px; border-radius: 10px; font-size: 13px; z-index: 99;
  max-width: 80%; text-align: center; pointer-events: none;
}

/* ???? H5 ???????/??/????/??? ???? */

.sub-page { min-height: 100vh; background: #f6f2f3; padding-bottom: 24px; }
.sub-nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 14px; background: #fff; border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 20;
}
.nav-back { font-size: 28px; line-height: 1; color: #333; width: 40px; text-align: left; }
.nav-title { font-size: 17px; font-weight: 700; }
.nav-action { color: var(--brand); font-size: 14px; font-weight: 600; min-width: 64px; text-align: right; }
.hint-row {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 10px 14px 0;
}
.hint { flex: 1; min-width: 0; color: #c08088; font-size: 12px; line-height: 1.4; }
.refresh-btn {
  flex-shrink: 0; padding: 7px 14px; border-radius: 999px; background: #fff;
  border: 1.5px solid rgba(255,111,111,.55);
  box-shadow: 0 0 0 3px rgba(255,111,111,.1), 0 3px 8px rgba(255,111,111,.16);
}
.refresh-txt {
  color: #ff5f6f; font-size: 13px; font-weight: 800; letter-spacing: 1px;
  display: inline-block; animation: refresh-wiggle 1.7s ease-in-out infinite;
}
@keyframes refresh-wiggle {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(-10deg); }
  75% { transform: rotate(10deg); }
}

.search-panel {
  margin: 10px 14px 12px; padding: 10px 10px 6px;
  background: #fff; border-radius: 12px;
  box-shadow: 0 4px 14px rgba(255,111,111,.1);
}
.search-bar {
  display: flex; align-items: center; gap: 8px;
  background: #f7f2f3; border-radius: 999px; padding: 6px 8px 6px 12px;
}
.search-ico { color: #c4a0a0; }
.search-input { flex: 1; border: none; outline: none; font-size: 14px; background: transparent; min-width: 0; }
.search-clear { color: #aaa; font-size: 18px; }
.search-btn {
  background: var(--brand); color: #fff; border-radius: 999px;
  padding: 6px 12px; font-size: 13px; font-weight: 600;
}
.gender-tabs { display: flex; align-items: center; gap: 8px; margin-top: 10px; padding-bottom: 4px; }
.g-tab {
  flex: 1; text-align: center; padding: 8px 0; border-radius: 8px;
  background: #f7f2f3; color: #888; font-size: 13px;
}
.g-tab.active { background: rgba(255,111,111,.12); color: var(--brand); font-weight: 600; }
.filter-entry {
  flex-shrink: 0; display: flex; align-items: center; gap: 2px;
  padding: 8px 10px; border-radius: 8px; background: #f7f2f3; color: #888; font-size: 13px;
}
.filter-entry.on { color: var(--brand); background: rgba(255,111,111,.12); font-weight: 600; }
.filter-entry-ico { transform: rotate(90deg); font-size: 14px; }

.submit-plaza {
  background:
    radial-gradient(ellipse 120% 60% at 50% -10%, #ffe4e8 0%, transparent 55%),
    linear-gradient(180deg, #fff5f6 0%, #faf6f7 40%, #f7f2f3 100%);
  min-height: 100%;
  padding-bottom: 88px;
}
.tip-pad { padding: 60px 0; }

.submit-card {
  margin: 0 14px 18px; background: #fff; border-radius: 16px; overflow: hidden;
  box-shadow: 0 4px 14px rgba(255,111,111,.12), 0 1px 4px rgba(120,40,50,.04);
  scroll-margin-top: 12px;
}
.submit-card.focused {
  box-shadow:
    0 0 0 3px rgba(255, 111, 111, 0.45),
    0 8px 20px rgba(255, 111, 111, 0.18);
  animation: submit-focus-pulse 1.6s ease-out 1;
}
@keyframes submit-focus-pulse {
  0% { transform: scale(1); }
  40% { transform: scale(1.01); }
  100% { transform: scale(1); }
}
.sc-hero { padding: 18px 14px 14px; color: #fff; position: relative; overflow: hidden; }
.sc-hero.m {
  background:
    radial-gradient(ellipse 70% 100% at 90% 0%, rgba(255,255,255,.32) 0%, transparent 50%),
    linear-gradient(145deg, #7ec4f5 0%, #4aa3eb 48%, #2f86d6 100%);
}
.sc-hero.f {
  background:
    radial-gradient(ellipse 70% 100% at 90% 0%, rgba(255,255,255,.35) 0%, transparent 50%),
    linear-gradient(145deg, #ffb0bc 0%, #ff7a8a 48%, #ff5a72 100%);
}
.sc-glow {
  position: absolute; right: -30px; top: -40px; width: 120px; height: 120px;
  border-radius: 50%; background: rgba(255,255,255,.18); pointer-events: none;
}
.sc-ring {
  position: absolute; left: -25px; bottom: -45px; width: 100px; height: 100px;
  border-radius: 50%; border: 10px solid rgba(255,255,255,.1); pointer-events: none;
}
.sc-actions {
  position: absolute; top: 10px; right: 10px; z-index: 2;
  display: flex; flex-direction: column; align-items: flex-end; gap: 6px;
}
.save-btn {
  padding: 6px 11px; border-radius: 999px; background: rgba(255,255,255,.96);
  color: #ff5a6a; font-size: 11px; font-weight: 700;
  box-shadow: 0 3px 8px rgba(80,20,30,.12);
}
.sc-hero.m .save-btn { color: #2f86d6; }
.save-btn.ghost {
  background: rgba(255,255,255,.72); color: #fff;
  border: 1px solid rgba(255,255,255,.85); box-shadow: none;
}
.sc-hero-main { position: relative; z-index: 1; padding-right: 86px; }
.id-pill {
  display: inline-flex; align-items: baseline; margin-bottom: 8px;
  padding: 3px 9px 3px 7px; border-radius: 999px;
  background: rgba(255,255,255,.22); border: 1px solid rgba(255,255,255,.45);
}
.id-lab { font-size: 10px; color: rgba(255,255,255,.85); font-weight: 600; margin-right: 2px; }
.id-num { font-size: 17px; color: #fff; font-weight: 800; font-style: italic; }
.hero-title-wrap { display: flex; align-items: center; flex-wrap: wrap; gap: 6px; }
.hero-title {
  font-size: 18px; font-weight: 800; color: #fff; line-height: 1.4;
  text-shadow: 0 1px 6px rgba(80,10,20,.18);
}
.sex-badge {
  width: 22px; height: 22px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700;
  background: rgba(255,255,255,.28); border: 1px solid rgba(255,255,255,.5);
}
.sc-chips { position: relative; z-index: 1; display: flex; flex-wrap: wrap; gap: 6px; flex: 1; min-width: 0; }
.sc-chips-row {
  position: relative; z-index: 1; display: flex; flex-wrap: wrap; align-items: center;
  gap: 6px; margin-top: 12px;
}
.sc-edit-btn {
  flex-shrink: 0; margin-left: auto; padding: 4px 11px; border-radius: 999px;
  background: rgba(255,255,255,.95); color: #d44555; font-size: 11px; font-weight: 700;
  border: 1px solid rgba(255,255,255,.7); box-shadow: 0 1px 4px rgba(80,20,30,.1);
  cursor: pointer;
}
.sc-edit-btn.edit-m { color: #2f86d6; box-shadow: 0 1px 4px rgba(30,80,140,.12); }
.sc-chip {
  padding: 4px 10px; border-radius: 999px; background: rgba(255,255,255,.92);
  color: #d44555; font-size: 11px; font-weight: 700;
  box-shadow: 0 1px 4px rgba(80,20,30,.08);
}
.sc-chip.chip-m { color: #2f86d6; }
.sc-chip.soft { background: #f7f2f3; color: #666; box-shadow: none; }

.sc-body { padding: 4px 14px 14px; background: #fff; }
.sc-sec-block { padding: 12px 0 4px; }
.sc-sec-block + .sc-sec-block { border-top: 1px solid #f5eaec; }
.sec-head { display: flex; align-items: center; gap: 6px; margin-bottom: 10px; }
.sec-bar {
  width: 4px; height: 14px; border-radius: 4px;
  background: linear-gradient(180deg, #ff8a9a, #ff6f6f);
}
.sec-bar.soft { background: linear-gradient(180deg, #ffb39a, #f08a6a); }
.sec-bar.bar-m { background: linear-gradient(180deg, #7ec4f5, #4aa3eb); }
.sec-bar.soft-m { background: linear-gradient(180deg, #9ad0f7, #5eb0ef); }
.sec-title { font-size: 14px; font-weight: 800; color: #ff6f6f; letter-spacing: .5px; }
.sec-title.soft { color: #e87a5a; }
.sec-title.title-m { color: #3d92df; }
.sec-title.soft-m { color: #4aa3eb; }
.sc-grid { display: flex; flex-wrap: wrap; margin: 0 -4px; }
.grid-cell {
  width: 50%; box-sizing: border-box; padding: 5px 4px;
  display: flex; align-items: baseline; gap: 4px;
}
.g-lab { flex-shrink: 0; font-size: 11px; color: #b09096; font-weight: 500; }
.g-lab.lab-m { color: #8aa4b8; }
.g-val { font-size: 13px; color: #2c2224; font-weight: 700; word-break: break-all; }

.mate-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.mate-chip {
  display: flex; align-items: center; gap: 4px;
  padding: 6px 9px; border-radius: 8px;
  background: #fff8f6; border: 1px solid #ffe8e4;
}
.mate-chip.mate-m { background: #f3f9fe; border-color: #d6ebf8; }
.m-lab { font-size: 10px; color: #c08070; }
.mate-m .m-lab { color: #6a92b0; }
.m-val { font-size: 12px; color: #4a3430; font-weight: 700; }
.mate-m .m-val { color: #2a4050; }
.mate-empty { font-size: 12px; color: #c8b4b8; margin: 0; }
.quote {
  position: relative; margin-top: 8px; padding: 10px 11px 9px 14px;
  border-radius: 9px; background: linear-gradient(135deg, #fff6f4, #ffefeb);
}
.quote.quote-m { background: linear-gradient(135deg, #f4faff, #eaf5fc); }
.quote-mark {
  position: absolute; left: 6px; top: 2px; font-size: 24px; line-height: 1;
  color: rgba(255,111,111,.25); font-weight: 700;
}
.quote-m .quote-mark { color: rgba(74,163,235,.3); }
.quote-txt { display: block; font-size: 13px; color: #5a4548; line-height: 1.6; word-break: break-all; }

.cta {
  margin-top: 6px; padding: 12px; border-radius: 12px;
  background:
    radial-gradient(ellipse 80% 80% at 0% 0%, rgba(255,180,190,.25) 0%, transparent 55%),
    linear-gradient(160deg, #fff5f6 0%, #ffecef 100%);
  border: 1px solid rgba(255,140,150,.35);
}
.cta.cta-m {
  background:
    radial-gradient(ellipse 80% 80% at 0% 0%, rgba(126,196,245,.28) 0%, transparent 55%),
    linear-gradient(160deg, #f4faff 0%, #e8f4fc 100%);
  border-color: rgba(74,163,235,.4);
}
.cta-head { margin-bottom: 9px; }
.cta-title { font-size: 14px; font-weight: 800; color: #d44555; }
.cta-m .cta-title { color: #2f86d6; }
.cta-sub { margin-top: 3px; font-size: 10px; color: #c09098; }
.cta-m .cta-sub { color: #7aa0b8; }
.cta-row { display: flex; gap: 8px; align-items: stretch; }
.cta-qr {
  width: 78px; height: 78px; flex-shrink: 0; border-radius: 10px; overflow: hidden;
  background: linear-gradient(145deg, #ff8a9a, #ff5f6f);
  box-shadow: 0 4px 10px rgba(255,90,100,.28); padding: 0;
}
.cta-m .cta-qr { background: linear-gradient(145deg, #7ec4f5, #2f86d6); box-shadow: 0 4px 10px rgba(47,134,214,.28); }
.cta-qr.on { background: #fff; border: 1px solid #ffe0e4; box-shadow: none; }
.qr-img { width: 100%; height: 100%; object-fit: contain; background: #fff; }
.qr-lock {
  height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 4px; color: #fff;
}
.lock-ico {
  width: 24px; height: 24px; line-height: 24px; text-align: center; border-radius: 7px;
  background: rgba(255,255,255,.25); font-size: 12px; font-weight: 800; margin-bottom: 4px;
}
.lock-t { font-size: 10px; font-weight: 700; }
.lock-p { margin-top: 2px; font-size: 9px; opacity: .88; }
.cta-wx {
  flex: 1; min-width: 0; display: flex; flex-direction: column; justify-content: center;
  padding: 9px 11px; border-radius: 10px; text-align: left;
  background: rgba(255,255,255,.88); border: 1px dashed rgba(255,130,140,.55);
}
.cta-wx.on { border-style: solid; border-color: rgba(255,160,170,.5); }
.wx-lab { font-size: 11px; color: #b07078; font-weight: 600; margin-bottom: 4px; }
.wx-val { font-size: 16px; font-weight: 800; color: #2a2224; letter-spacing: 1px; margin-bottom: 6px; word-break: break-all; }
.wx-act {
  align-self: flex-start; padding: 3px 8px; border-radius: 999px;
  background: linear-gradient(90deg, #ff7a88, #ff6f6f); color: #fff; font-size: 10px; font-weight: 700;
}
.cta-wx.on .wx-act { background: #f0f0f0; color: #888; }
.cta-m .cta-wx { border-color: rgba(74,163,235,.45); }
.cta-m .wx-lab { color: #6a92b0; }
.cta-m .wx-act { background: linear-gradient(90deg, #5eb0ef, #2f86d6); }

.fab-submit {
  position: fixed; right: calc(var(--phone-side, 0px) + 16px); bottom: 24px; z-index: 40;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  width: 64px; height: 64px; border-radius: 50%;
  background: linear-gradient(145deg, #ff8a9a, #ff5f6f);
  color: #fff; box-shadow: 0 8px 20px rgba(255,95,111,.4);
}
.fab-plus { font-size: 22px; line-height: 1; font-weight: 700; }
.fab-txt { font-size: 10px; font-weight: 700; margin-top: 2px; }

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

.filter-mask {
  position: fixed;
  top: 0; bottom: 0;
  left: 50%;
  width: 100%;
  max-width: 430px;
  transform: translateX(-50%);
  background: rgba(0,0,0,.45);
  z-index: 80;
}
.filter-drawer {
  position: fixed;
  top: 0; bottom: 0;
  right: var(--phone-side, 0px);
  width: 78%;
  max-width: 320px;
  background: #fff;
  z-index: 90;
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 24px rgba(0,0,0,.08);
}
.filter-head { display: flex; justify-content: space-between; align-items: center; padding: 16px; }
.filter-title { font-size: 17px; font-weight: 700; }
.filter-close { font-size: 28px; color: #999; width: 36px; }
.filter-body { flex: 1; overflow: auto; padding: 0 16px 16px; }
.f-section { margin-bottom: 18px; }
.f-label { font-size: 13px; color: #888; margin-bottom: 8px; }
.f-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.f-chip {
  padding: 8px 12px; border-radius: 999px; background: #f7f2f3; color: #666; font-size: 13px;
}
.f-chip.active { background: rgba(255,111,111,.14); color: var(--brand); font-weight: 600; }
.f-picker-cell {
  width: 100%; padding: 12px 14px; border-radius: 10px; background: #f7f2f3;
  border: none; font-size: 14px; text-align: left;
  display: flex; align-items: center; justify-content: space-between; color: #333;
}
.f-picker-val { font-size: 14px; color: #333; font-weight: 500; }
.f-picker-ph { color: #aaa; font-size: 14px; }
.f-picker-arrow {
  font-size: 16px; color: #bbb; line-height: 1;
  transform: rotate(90deg);
}
.ethnicity-panel .ethnicity-list {
  max-height: 52vh; overflow-y: auto; -webkit-overflow-scrolling: touch;
  padding: 4px 0 calc(8px + var(--safe-bottom));
}
.ethnicity-item {
  display: block; width: 100%; padding: 14px 20px; text-align: center;
  font-size: 15px; color: #333; background: #fff; border: none;
  border-bottom: 1px solid #f5f0f1;
}
.ethnicity-item.active {
  color: var(--brand); font-weight: 700;
  background: rgba(255,111,111,.06);
}
.filter-actions {
  display: flex; gap: 10px; padding: 12px 16px calc(12px + var(--safe-bottom));
  border-top: 1px solid #f0e6e8;
}
.filter-btn {
  flex: 1; height: 42px; border-radius: 999px; font-weight: 600; font-size: 15px;
}
.filter-btn.ghost { background: #f7f2f3; color: #666; }
.filter-btn.primary { background: var(--brand); color: #fff; }

.region-mask {
  position: fixed; z-index: 100;
  top: 0; bottom: 0;
  left: 50%; width: 100%; max-width: 430px; transform: translateX(-50%);
  background: rgba(0,0,0,.45);
  display: flex; align-items: flex-end; justify-content: center;
}
.region-panel {
  width: 100%; max-width: 430px; background: #fff;
  border-radius: 16px 16px 0 0; padding-bottom: var(--safe-bottom);
}
.region-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 16px; border-bottom: 1px solid #eee;
}
.region-head .ok { color: var(--brand); font-weight: 600; }
.region-wheel {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.region-wheel-indicator {
  position: absolute; left: 0; right: 0; top: 50%;
  height: 44px; margin-top: -22px; z-index: 1; pointer-events: none;
  border-top: 1px solid #eee; border-bottom: 1px solid #eee;
  background: rgba(255,111,111,.04);
}
.region-wheel-mask {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,.92) 0%,
    rgba(255,255,255,0) 35%,
    rgba(255,255,255,0) 65%,
    rgba(255,255,255,.92) 100%
  );
}
.region-cols {
  position: relative; z-index: 0;
  display: flex; height: 100%;
}
.region-col {
  flex: 1; min-width: 0; height: 100%;
  overflow-y: auto; -webkit-overflow-scrolling: touch;
  padding: 88px 4px;
  scroll-snap-type: y mandatory;
}
.region-item {
  display: block; width: 100%;
  min-height: 44px; line-height: 1.25;
  padding: 10px 4px; margin: 0;
  border: none; background: transparent;
  text-align: center; font-size: 13px; color: #888;
  white-space: normal; word-break: break-all;
  scroll-snap-align: center;
}
.region-item.active {
  color: #222; font-weight: 700; font-size: 14px;
}
.deposit-panel { padding: 0 0 16px; }
.deposit-panel textarea {
  width: calc(100% - 32px); margin: 12px 16px; padding: 12px;
  border: 1px solid #eee; border-radius: 10px; font: inherit; resize: vertical;
}
.deposit-panel .btn-primary { margin: 0 16px; width: calc(100% - 32px); }

/* ??? ? ????? pages/note */
.np-page {
  min-height: 100%;
  background: #f5f5f5;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}
.np-nav {
  display: flex;
  align-items: center;
  height: 44px;
  padding: 0 12px;
  background: #fff;
  flex-shrink: 0;
}
.np-back {
  width: 28px;
  border: none;
  background: transparent;
  font-size: 26px;
  line-height: 1;
  color: #333;
  padding: 0;
  cursor: pointer;
}
.np-nav-title {
  flex: 1;
  text-align: center;
  font-size: 17px;
  font-weight: 700;
  color: #222;
}
.np-nav-pad { width: 28px; }
.np-scroll {
  flex: 1;
  overflow-y: auto;
  padding: 0 12px 24px;
  box-sizing: border-box;
  -webkit-overflow-scrolling: touch;
}
.np-hero {
  margin-top: 8px;
  padding: 16px 14px 14px;
  border-radius: 11px;
  background: linear-gradient(135deg, #ff6f6f, #ff9a9a);
  color: #fff;
}
.np-kicker { font-size: 11px; opacity: .9; }
.np-hero-title {
  margin-top: 4px;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: .5px;
}
.np-hero-desc {
  margin-top: 6px;
  font-size: 11px;
  line-height: 1.5;
  opacity: .92;
}
.np-balance-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 11px;
  padding-top: 9px;
  border-top: 1px solid rgba(255,255,255,.25);
}
.np-balance { font-size: 13px; font-weight: 700; }
.np-earn {
  border: none;
  background: transparent;
  color: #fff;
  font-size: 12px;
  opacity: .95;
  padding: 0;
  cursor: pointer;
}
.np-actions {
  display: flex;
  margin-top: 10px;
  gap: 8px;
}
.np-action {
  flex: 1;
  padding: 14px 10px;
  border-radius: 9px;
  background: #fff;
  border: none;
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
  text-align: left;
  font: inherit;
  cursor: pointer;
}
.np-action-title {
  display: block;
  font-size: 15px;
  font-weight: 800;
  color: #222;
}
.np-action-sub {
  display: block;
  margin-top: 4px;
  font-size: 11px;
  color: #999;
}
.np-action.deposit .np-action-title { color: #e85a5a; }
.np-action.draw .np-action-title { color: #5b9df5; }
.np-stats {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin: 10px 0 4px;
  font-size: 11px;
  color: #999;
}
.np-dot { color: #ccc; }
.np-tabs {
  display: flex;
  gap: 6px;
  margin: 4px 0 8px;
}
.np-tab {
  flex: 1;
  text-align: center;
  padding: 8px 0;
  border-radius: 999px;
  font-size: 13px;
  color: #666;
  background: #fff;
  border: none;
  cursor: pointer;
}
.np-tab.active {
  color: #fff;
  font-weight: 700;
  background: linear-gradient(135deg, #ff6f6f, #ff8d8d);
}
.np-card {
  background: #fff;
  border-radius: 9px;
  padding: 12px;
  margin-bottom: 7px;
  box-shadow: 0 2px 7px rgba(0,0,0,.04);
}
.np-card-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
}
.np-who { font-size: 14px; font-weight: 700; color: #222; }
.np-meta { font-size: 11px; color: #999; flex-shrink: 0; }
.np-content {
  margin-top: 7px;
  font-size: 14px;
  color: #444;
  line-height: 1.55;
  white-space: pre-wrap;
  word-break: break-word;
}
.np-foot {
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.np-time { font-size: 11px; color: #bbb; }
.np-btns { display: flex; gap: 10px; }
.np-link {
  border: none;
  background: transparent;
  font-size: 12px;
  color: #888;
  padding: 0;
  cursor: pointer;
}
.np-link.primary { color: #ff6f6f; font-weight: 700; }
.np-status { font-size: 11px; color: #ff6f6f; }
.np-tip {
  text-align: center;
  color: #999;
  font-size: 12px;
  padding: 14px 0;
  margin: 0;
}
.np-empty { padding: 40px 15px; text-align: center; }
.np-empty-title { font-size: 15px; font-weight: 700; color: #333; }
.np-empty-desc { margin-top: 6px; font-size: 12px; color: #999; }
.np-more {
  display: block;
  width: 100%;
  margin: 4px 0 8px;
  padding: 10px;
  border: none;
  border-radius: 999px;
  background: #fff;
  color: #666;
  font-size: 13px;
  cursor: pointer;
}
.np-mask {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100%;
  max-width: 430px;
  transform: translateX(-50%);
  z-index: 100;
  background: rgba(0,0,0,.45);
  display: flex;
  align-items: flex-end;
}
.np-sheet {
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  background: #fff;
  border-radius: 14px 14px 0 0;
  padding: 18px 14px calc(14px + env(safe-area-inset-bottom, 0px));
  box-sizing: border-box;
}
.np-sheet-title {
  text-align: center;
  font-size: 16px;
  font-weight: 800;
  color: #222;
}
.np-sheet-desc {
  margin-top: 5px;
  text-align: center;
  font-size: 11px;
  color: #999;
}
.np-sheet-input {
  margin-top: 12px;
  width: 100%;
  min-height: 90px;
  padding: 10px;
  box-sizing: border-box;
  background: #f7f7f8;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  color: #333;
  resize: vertical;
  font-family: inherit;
}
.np-sheet-actions {
  display: flex;
  gap: 8px;
  margin-top: 14px;
}
.np-sheet-btn {
  flex: 1;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  border: none;
  cursor: pointer;
}
button.np-sheet-btn.ghost {
  background: #f2f2f2 !important;
  color: #666 !important;
}
button.np-sheet-btn.primary {
  color: #fff !important;
  background: linear-gradient(135deg, #ff6f6f, #ff8d8d) !important;
}
.np-sheet-btn.disabled { opacity: .65; }
.np-result-who {
  margin-top: 10px;
  text-align: center;
  font-size: 12px;
  color: #999;
}
.np-result-content {
  margin-top: 10px;
  padding: 14px;
  background: #fff5f5;
  border-radius: 8px;
  font-size: 15px;
  color: #333;
  line-height: 1.6;
  white-space: pre-wrap;
  word-break: break-word;
}

/* ?? ????????????? ?? */
.sf-page {
  min-height: 100%;
  background: #fff5f6;
  padding-bottom: calc(72px + var(--safe-bottom));
}
.sf-nav {
  position: sticky; top: 0; z-index: 30;
  display: flex; align-items: center; justify-content: center;
  height: 48px; padding: 0 12px;
  background: linear-gradient(165deg, #ff7a8a 0%, #ff6f6f 100%);
}
.sf-nav-back {
  position: absolute; left: 8px; font-size: 28px; color: #fff; line-height: 1; padding: 0 8px;
}
.sf-nav-title { font-size: 17px; font-weight: 700; color: #fff; letter-spacing: 1px; }
.sf-hero {
  padding: 18px 20px 36px;
  background:
    radial-gradient(ellipse 70% 80% at 100% 0%, rgba(255,220,190,.45) 0%, transparent 55%),
    linear-gradient(165deg, #ff7a8a 0%, #ff6f6f 55%, #f25a6c 100%);
  color: #fff;
}
.sf-hero-top { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.sf-kicker {
  padding: 3px 9px; border-radius: 999px; background: rgba(255,255,255,.22);
  font-size: 10px; font-weight: 600;
}
.sf-share {
  display: flex; align-items: center; gap: 4px;
  padding: 5px 11px; border-radius: 999px; background: rgba(255,255,255,.95);
  color: #ff6f6f; font-size: 12px; font-weight: 700;
  box-shadow: 0 3px 8px rgba(140,40,60,.18);
}
.sf-hero-title {
  margin-top: 10px; font-size: 24px; font-weight: 800; line-height: 1.2;
  text-shadow: 0 2px 8px rgba(140,40,60,.2);
}
.sf-hero-desc { margin-top: 6px; font-size: 12px; line-height: 1.55; opacity: .92; max-width: 92%; }
.sf-sheet { margin-top: -6px; padding: 14px 14px 0; position: relative; z-index: 2; }
.sf-sec { margin-bottom: 14px; }
.sf-sec-head { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; padding: 0 2px; }
.sf-mark {
  width: 22px; height: 22px; border-radius: 7px; line-height: 22px; text-align: center;
  background: linear-gradient(145deg, #ff7a8a, #ff5f6f); color: #fff;
  font-size: 12px; font-weight: 800;
  box-shadow: 0 3px 7px rgba(255,95,111,.28);
}
.sf-mark.mate {
  background: linear-gradient(145deg, #e8c080, #d4a45a);
  box-shadow: 0 3px 7px rgba(212,164,90,.28);
}
.sf-sec-title { font-size: 16px; font-weight: 800; color: #2f2426; }
.sf-sec-sub { margin-top: 1px; font-size: 11px; color: #a8989c; }
.sf-card {
  background: #fff; border-radius: 14px; overflow: hidden;
  box-shadow: 0 6px 18px rgba(180,80,100,.08);
}
.sf-row {
  display: flex; align-items: center; min-height: 48px;
  padding: 0 14px; width: 100%; border: none; background: #fff;
  border-bottom: 1px solid #f3ecee; text-align: left; box-sizing: border-box;
}
.sf-row.link { cursor: pointer; }
.sf-lab {
  width: 76px; flex-shrink: 0; font-size: 14px; font-weight: 600; color: #5a4a4e;
}
.sf-val {
  flex: 1; text-align: right; font-size: 14px; color: #2f2426; font-weight: 500;
}
.sf-val.ph { color: #c4b4b8; font-weight: 400; }
.sf-chev { margin-left: 4px; font-size: 16px; color: #d0c0c4; }
.sf-input {
  flex: 1; border: none; outline: none; background: transparent;
  text-align: right; font-size: 14px; color: #2f2426; height: 48px;
}
.sf-seg { flex: 1; display: flex; justify-content: flex-end; gap: 6px; }
.sf-seg-item {
  min-width: 56px; height: 30px; line-height: 30px; text-align: center;
  border-radius: 8px; background: #f7f0f2; color: #8a7a7e;
  font-size: 13px; font-weight: 600; border: none;
}
.sf-seg-item.on {
  background: linear-gradient(135deg, #ff7a8a, #ff5f6f); color: #fff;
  box-shadow: 0 3px 8px rgba(255,95,111,.28);
}
.sf-contact { padding: 10px 14px 14px; border-top: 1px solid #f3e8ea; }
.sf-contact-title { font-size: 14px; font-weight: 600; color: #5a4a4e; margin-bottom: 8px; }
.sf-contact-wrap { display: flex; gap: 10px; align-items: stretch; }
.sf-qr {
  width: 80px; height: 80px; flex-shrink: 0; border-radius: 8px; padding: 4px; box-sizing: border-box;
  background: linear-gradient(135deg, #ffb3c1, #ff6f6f); overflow: hidden; cursor: pointer;
}
.sf-qr-img { width: 100%; height: 100%; object-fit: contain; border-radius: 5px; background: #fff; }
.sf-qr-ph {
  width: 100%; height: 100%; border: 1px dashed rgba(255,255,255,.85); border-radius: 5px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: #fff; font-size: 10px; text-align: center; padding: 4px; box-sizing: border-box;
}
.sf-qr-plus { font-size: 22px; font-weight: 300; line-height: 1; margin-bottom: 2px; }
.sf-contact-right { flex: 1; min-width: 0; display: flex; flex-direction: column; justify-content: center; gap: 6px; }
.sf-contact-input {
  height: 36px; padding: 0 12px; border-radius: 8px; border: none;
  background: #faf5f6; font-size: 14px; color: #2f2426;
}
.sf-contact-note { font-size: 11px; color: #b0a0a4; line-height: 1.4; }
.sf-area-block { padding: 10px 14px 14px; }
.sf-area-label { font-size: 14px; font-weight: 600; color: #5a4a4e; margin-bottom: 6px; }
.sf-area {
  width: 100%; min-height: 90px; padding: 11px 12px; border-radius: 10px;
  border: none; background: #faf5f6; font: inherit; font-size: 14px; color: #2f2426;
  line-height: 1.55; box-sizing: border-box; resize: vertical;
}
.sf-foot-note {
  text-align: center; font-size: 11px; color: #b8a8ac; line-height: 1.5; padding: 4px 8px 0;
}
.sf-bottom-space { height: 12px; }
.sf-submit-bar {
  position: fixed; z-index: 50;
  left: 50%; transform: translateX(-50%);
  width: 100%; max-width: 430px;
  bottom: 0; padding: 8px 16px calc(9px + var(--safe-bottom));
  background: linear-gradient(180deg, rgba(255,245,246,0) 0%, #fff5f6 28%, #fff5f6 100%);
  box-sizing: border-box;
}
.sf-submit-btn {
  width: 100%; height: 50px; border-radius: 14px; border: none;
  background: linear-gradient(135deg, #ff7a8a 0%, #ff5f6f 100%);
  color: #fff; font-size: 16px; font-weight: 800; letter-spacing: .5px;
  box-shadow: 0 7px 16px rgba(255,95,111,.35);
}
.sf-submit-btn:disabled { opacity: .65; }

.form-card {
  margin: 12px 14px; background: #fff; border-radius: 14px; padding: 14px;
  display: flex; flex-direction: column; gap: 10px;
}
.form-card label { display: flex; flex-direction: column; gap: 6px; font-size: 13px; color: #888; }
.form-card input, .form-card select, .form-card textarea {
  border: 1px dashed #ffb3c1; border-radius: 8px; padding: 10px 12px;
  font: inherit; color: #333; background: #fff;
}

.vip-page {
  min-height: 100%;
  background: #f6f2f3;
  padding-bottom: calc(96px + env(safe-area-inset-bottom, 0px));
  box-sizing: border-box;
}
.vip-hero {
  position: relative;
  overflow: hidden;
  padding: calc(10px + env(safe-area-inset-top, 0px)) 14px 28px;
  background: linear-gradient(160deg, #ff8a96 0%, #FF6F6F 52%, #f25268 100%);
}
.vip-hero::after {
  content: '';
  position: absolute;
  right: -40px;
  top: -20px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.22) 0%, transparent 70%);
  pointer-events: none;
}
.vip-nav {
  position: relative;
  z-index: 2;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vip-back {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: transparent;
  color: #fff;
  font-size: 28px;
  line-height: 1;
  padding: 0 8px;
  cursor: pointer;
}
.vip-nav-title {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
}
.vip-user {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  margin-top: 12px;
}
.vip-hero-invite {
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  margin-left: 8px;
  width: 84px;
  border: 1.5px solid rgba(255, 255, 255, 0.95);
  padding: 12px 6px 8px;
  border-radius: 14px;
  background: linear-gradient(145deg, #fff6d6 0%, #ffd56a 42%, #ff9f3c 100%);
  box-shadow:
    0 5px 14px rgba(180, 70, 20, 0.38),
    0 0 0 3px rgba(255, 220, 120, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #7a3208;
  font-weight: 800;
  line-height: 1.15;
  cursor: pointer;
  animation: vipInvitePulse 1.8s ease-in-out infinite;
}
.vip-hero-invite-shine {
  position: absolute;
  top: 0;
  left: -60%;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  transform: skewX(-18deg);
  animation: vipInviteShine 2.4s ease-in-out infinite;
  pointer-events: none;
}
.vip-hero-invite-hot {
  position: absolute;
  top: -1px;
  right: -1px;
  z-index: 2;
  padding: 2px 6px;
  border-radius: 0 12px 0 8px;
  font-size: 9px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(90deg, #ff4d6a, #ff7a3c);
  box-shadow: 0 2px 6px rgba(220, 40, 60, 0.35);
}
.vip-hero-invite-emoji {
  font-size: 20px;
  line-height: 1;
  margin-bottom: 2px;
}
.vip-hero-invite-title {
  font-size: 14px;
  font-weight: 900;
  color: #7a3208;
}
.vip-hero-invite-sub {
  font-size: 13px;
  font-weight: 900;
  color: #c0392b;
}
.vip-hero-invite-cta {
  margin-top: 5px;
  padding: 3px 8px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(90deg, #ff5a7a, #ff7a45);
  box-shadow: 0 2px 6px rgba(220, 50, 70, 0.35);
}
@keyframes vipInvitePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}
@keyframes vipInviteShine {
  0% { left: -60%; }
  55% { left: 140%; }
  100% { left: 140%; }
}
.vip-plan-need {
  font-size: 24px;
  font-weight: 800;
  color: #222;
  line-height: 1.1;
}
.vip-plan-card.selected .vip-plan-need {
  color: #5a3a10;
}
.vip-pay-next {
  font-size: 14px;
  font-weight: 700;
  color: #222;
  line-height: 1.35;
}
.vip-avatar {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  border: 2px solid rgba(255,255,255,.85);
  background: #fff;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 5px 12px rgba(160,40,60,.2);
}
.vip-user-meta {
  flex: 1;
  min-width: 0;
  margin-left: 12px;
}
.vip-name-row {
  display: flex;
  align-items: center;
  gap: 6px;
}
.vip-name {
  max-width: 100px;
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.vip-grade {
  flex-shrink: 0;
  padding: 2px 7px;
  border-radius: 999px;
  font-size: 10px;
  background: rgba(0,0,0,.28);
  color: #fff;
}
.vip-grade.vip {
  background: linear-gradient(90deg, #d4a45a, #f5e0a0);
  color: #6b4310;
}
.vip-grade.member {
  background: linear-gradient(135deg, #ffe8ec 0%, #ffd0d8 100%);
  color: #e04555;
  font-weight: 600;
}
.vip-id {
  margin-top: 5px;
  font-size: 11px;
  color: rgba(255,255,255,.85);
}
.vip-tip {
  margin-top: 4px;
  font-size: 11px;
  color: rgba(255,255,255,.78);
}
.vip-loading,
.vip-empty {
  text-align: center;
  padding: 50px 0;
  color: #999;
  font-size: 14px;
}
.vip-list-btn {
  position: relative;
  flex-shrink: 0;
  margin-left: 8px;
  width: 74px;
  border: none;
  padding: 10px 6px 8px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 6px 14px rgba(160, 40, 60, 0.18);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #FF6F6F;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.2;
  cursor: pointer;
}
.vip-list-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 999px;
  background: #FF6F6F;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  line-height: 16px;
  text-align: center;
}
.vip-list-emoji {
  font-size: 18px;
  line-height: 1;
  margin-bottom: 3px;
}
.vil-list {
  padding: 12px 12px 28px;
}
.vil-card {
  width: 100%;
  display: flex;
  align-items: center;
  background: #fff;
  border: none;
  border-radius: 14px;
  padding: 12px 10px;
  margin-bottom: 10px;
  box-shadow: 0 6px 14px rgba(160, 40, 60, 0.06);
  text-align: left;
  cursor: pointer;
}
.vil-avatar {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  object-fit: cover;
  background: #f3f3f3;
  flex-shrink: 0;
}
.vil-meta {
  flex: 1;
  min-width: 0;
  margin: 0 10px;
}
.vil-name-row {
  display: flex;
  align-items: center;
  gap: 6px;
}
.vil-name {
  max-width: 160px;
  font-size: 15px;
  font-weight: 800;
  color: #222;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.vil-gender {
  flex-shrink: 0;
  font-size: 10px;
  font-weight: 700;
  padding: 1px 6px;
  border-radius: 999px;
  background: #f3f3f3;
  color: #888;
}
.vil-gender.male {
  background: #e8f3ff;
  color: #3b82f6;
}
.vil-gender.female {
  background: #ffe8ec;
  color: #FF6F6F;
}
.vil-line {
  margin-top: 3px;
  font-size: 12px;
  color: #999;
}
.vil-arrow {
  flex-shrink: 0;
  font-size: 22px;
  color: #ccc;
}
.vip-panel {
  margin: -14px 12px 0;
  position: relative;
  z-index: 3;
  background: #fff;
  border-radius: 14px;
  padding: 14px 12px 10px;
  box-shadow: 0 6px 16px rgba(255,111,111,.1);
}
.vip-panel-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 10px;
}
.vip-panel-title {
  font-size: 16px;
  font-weight: 800;
  color: #2c2c2c;
}
.vip-panel-hint {
  font-size: 11px;
  color: #aaa;
}
.vip-plan-card {
  position: relative;
  display: flex;
  align-items: stretch;
  width: 100%;
  margin: 0 0 9px;
  padding: 12px 11px;
  border-radius: 10px;
  background: #faf7f7;
  border: 1px solid transparent;
  text-align: left;
  font: inherit;
  cursor: pointer;
  box-sizing: border-box;
}
.vip-plan-card.selected {
  background: #fff5f6;
  border-color: #FF6F6F;
  box-shadow: 0 4px 10px rgba(255,111,111,.12);
}
.vip-plan-card.tier-gold.selected {
  background: linear-gradient(135deg, #fff9f0 0%, #fff1dc 100%);
  border-color: #d4a45a;
}
.vip-plan-card.tier-diamond.selected {
  background: linear-gradient(135deg, #3a2a1c 0%, #6a4a28 45%, #b8894a 100%);
  border-color: #c89545;
}
.vip-plan-left {
  width: 90px;
  flex-shrink: 0;
  padding-right: 9px;
  border-right: 1px solid #efe4e6;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.vip-plan-card.tier-diamond.selected .vip-plan-left {
  border-right-color: rgba(255,255,255,.2);
}
.vip-plan-tier {
  font-size: 13px;
  font-weight: 700;
  color: #555;
}
.vip-plan-card.selected .vip-plan-tier { color: #FF6F6F; }
.vip-plan-card.tier-gold.selected .vip-plan-tier { color: #8a5a18; }
.vip-plan-card.tier-diamond.selected .vip-plan-tier,
.vip-plan-card.tier-diamond.selected .vip-plan-price,
.vip-plan-card.tier-diamond.selected .vip-plan-yen,
.vip-plan-card.tier-diamond.selected .vip-plan-days {
  color: #fff8e8;
}
.vip-plan-price-row {
  display: flex;
  align-items: baseline;
  margin-top: 5px;
}
.vip-plan-yen {
  font-size: 12px;
  font-weight: 700;
  color: #FF6F6F;
  margin-right: 1px;
}
.vip-plan-price {
  font-size: 22px;
  font-weight: 800;
  color: #FF6F6F;
  line-height: 1;
}
.vip-plan-days {
  margin-top: 5px;
  font-size: 11px;
  color: #999;
}
.vip-plan-right {
  flex: 1;
  min-width: 0;
  padding-left: 9px;
}
.vip-plan-right-title {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: #666;
  margin-bottom: 5px;
}
.vip-plan-card.tier-diamond.selected .vip-plan-right-title,
.vip-plan-card.tier-diamond.selected .vip-benefit {
  color: rgba(255,248,232,.92);
}
.vip-benefit-row {
  display: flex;
  align-items: flex-start;
  gap: 5px;
  margin-bottom: 4px;
}
.vip-benefit-num {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #e7c578;
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  line-height: 14px;
  text-align: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.vip-plan-card.tier-diamond.selected .vip-benefit-num {
  background: rgba(255,255,255,.35);
}
.vip-benefit {
  flex: 1;
  font-size: 11px;
  color: #666;
  line-height: 1.55;
}
.vip-plan-check {
  position: absolute;
  right: 8px;
  top: 8px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #FF6F6F;
  color: #fff;
  font-size: 11px;
  line-height: 18px;
  text-align: center;
}
.vip-plan-card.tier-gold.selected .vip-plan-check { background: #c89545; }
.vip-plan-card.tier-diamond.selected .vip-plan-check {
  background: #fff8e8;
  color: #6b4310;
}
.vip-notice {
  margin-top: 6px;
  padding: 8px 4px 2px;
}
.vip-notice-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 6px;
}
.vip-notice-title {
  font-size: 14px;
  font-weight: 700;
  color: #333;
}
.vip-ticket {
  width: 18px;
  height: 11px;
  border-radius: 3px;
  background: linear-gradient(90deg, #e7c578, #f5e0a0);
  position: relative;
}
.vip-ticket::before,
.vip-ticket::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #fff;
  transform: translateY(-50%);
}
.vip-ticket::before { left: -2.5px; }
.vip-ticket::after { right: -2.5px; }
.vip-notice-text {
  text-align: center;
  font-size: 12px;
  color: #999;
  line-height: 1.6;
}
.vip-agree {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
  padding-bottom: 4px;
  cursor: pointer;
}
.vip-agree-box {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  border: 1px solid #ccc;
  margin-right: 5px;
  font-size: 10px;
  line-height: 14px;
  text-align: center;
  color: #fff;
  box-sizing: border-box;
}
.vip-agree-box.on {
  background: #FF6F6F;
  border-color: #FF6F6F;
}
.vip-agree-text {
  font-size: 12px;
  color: #888;
}
.vip-agree-link {
  font-size: 12px;
  color: #FF6F6F;
}
.vip-pay-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 14px calc(9px + env(safe-area-inset-bottom, 0px));
  background: rgba(255,255,255,.96);
  box-shadow: 0 -4px 14px rgba(0,0,0,.05);
}
.vip-pay-info { flex: 1; min-width: 0; }
.vip-pay-label {
  display: block;
  font-size: 11px;
  color: #999;
}
.vip-pay-wallet {
  display: block;
  margin-top: 2px;
  font-size: 10px;
  color: #c3994c;
}
.vip-pay-price-row {
  display: flex;
  align-items: baseline;
  margin-top: 1px;
}
.vip-pay-yen {
  font-size: 14px;
  font-weight: 700;
  color: #FF6F6F;
  margin-right: 1px;
}
.vip-pay-price {
  font-size: 24px;
  font-weight: 800;
  color: #FF6F6F;
  line-height: 1;
}
.vip-pay-btn {
  min-width: 120px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  border: none;
  border-radius: 22px;
  background: linear-gradient(135deg, #ff7a8a, #FF6F6F 55%, #f25268);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  margin-left: 10px;
  box-shadow: 0 5px 12px rgba(255,111,111,.35);
  cursor: pointer;
}
.vip-pay-btn.disabled {
  opacity: .6;
  box-shadow: none;
}
.vip-sheet-mask {
  position: fixed;
  inset: 0;
  z-index: 30;
  background: rgba(0,0,0,.45);
  display: flex;
  align-items: flex-end;
}
.vip-sheet {
  width: 100%;
  background: #f5f5f5;
  border-radius: 12px 12px 0 0;
  padding-bottom: env(safe-area-inset-bottom, 0px);
}
.vip-sheet-item,
.vip-sheet-cancel {
  display: block;
  width: 100%;
  border: none;
  background: #fff;
  font-size: 16px;
  padding: 16px;
  color: #333;
  cursor: pointer;
}
.vip-sheet-item + .vip-sheet-item {
  border-top: 1px solid #eee;
}
.vip-sheet-cancel {
  margin-top: 8px;
  color: #666;
}
.pay-bar { margin: 16px 14px; width: calc(100% - 28px); height: 46px; }
/* ???? ? ????? pages/loveb/earn */
.le-page {
  min-height: 100%;
  background: #f5f5f5;
  padding-bottom: 20px;
  box-sizing: border-box;
}
.le-header {
  background: linear-gradient(135deg, #FF6F6F, #ff9a9a);
  color: #fff;
  padding: calc(12px + env(safe-area-inset-top, 0px)) 12px 20px;
  position: relative;
  text-align: center;
}
.le-back {
  position: absolute; left: 8px; bottom: 16px;
  font-size: 28px; line-height: 1; color: #fff;
  border: none; background: transparent; padding: 0 8px; cursor: pointer;
}
.le-title { font-size: 18px; font-weight: 700; padding-top: 4px; }
.le-balance-card {
  margin: -10px 12px 12px; background: #fff; border-radius: 8px;
  padding: 16px; box-shadow: 0 4px 12px rgba(255,111,111,.15);
  position: relative; z-index: 2;
}
.le-balance-main {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
}
.le-balance-left { flex: 1; min-width: 0; }
.le-balance-label { font-size: 13px; color: #999; }
.le-balance-num {
  margin-top: 6px; font-size: 28px; font-weight: 800; color: #FF6F6F; line-height: 1.2;
}
.le-balance-tip {
  margin-top: 8px; font-size: 12px; color: #888; line-height: 1.5;
}
.le-rank-entry {
  flex-shrink: 0; width: 74px; padding: 10px 6px 8px;
  border-radius: 10px; border: 1px solid rgba(212,164,90,.35);
  background: linear-gradient(160deg, #fff7e8 0%, #ffe8c8 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  box-shadow: 0 3px 8px rgba(212,164,90,.18);
  cursor: pointer; box-sizing: border-box;
}
.le-rank-entry:active { opacity: .88; }
.le-rank-icon { font-size: 18px; line-height: 1; margin-bottom: 3px; }
.le-rank-title { font-size: 11px; font-weight: 700; color: #8a5a18; line-height: 1.25; }
.le-rank-arrow { margin-top: 2px; font-size: 14px; color: #c4923a; line-height: 1; }
.le-task-section { padding: 0 12px; }
.le-section-title { font-size: 15px; font-weight: 700; color: #333; margin-bottom: 4px; }
.le-section-tip {
  font-size: 11px; color: #999; line-height: 1.45; margin-bottom: 8px;
}
.le-loading { padding: 28px 0; text-align: center; color: #999; font-size: 14px; }
.le-task-list {
  background: #fff; border-radius: 8px; overflow: hidden;
}
.le-task-item {
  display: flex; align-items: center; width: 100%;
  padding: 14px 12px; border: none; border-bottom: 1px solid #f3f3f3;
  background: #fff; text-align: left; cursor: pointer;
  font: inherit; color: inherit; box-sizing: border-box;
  -webkit-appearance: none; appearance: none;
}
.le-task-item:last-child { border-bottom: none; }
.le-task-item:active { background: #fff8f8; }
.le-task-icon {
  width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, #ffe0e6, #ffd1dc);
  display: flex; align-items: center; justify-content: center; font-size: 17px;
}
.le-task-body { flex: 1; margin: 0 10px; min-width: 0; }
.le-task-title-row { display: flex; align-items: center; gap: 6px; }
.le-task-title { font-size: 15px; font-weight: 600; color: #333; }
.le-task-badge {
  font-size: 10px; color: #16a34a; background: #dcfce7;
  padding: 1px 6px; border-radius: 999px; font-weight: 600; flex-shrink: 0;
}
.le-task-desc {
  margin-top: 3px; font-size: 12px; color: #999; line-height: 1.4;
}
.le-task-action {
  flex-shrink: 0; font-size: 12px; color: #FF6F6F; font-weight: 600;
  padding: 4px 8px; background: #fff0f0; border-radius: 999px;
}
.le-task-action.muted { color: #16a34a; background: #dcfce7; }
.le-task-item.done .le-task-icon { opacity: .85; }
.le-task-item.hot {
  background: linear-gradient(90deg, #fffaf0 0%, #fff4e4 55%, #ffe8d2 100%);
}
.le-task-icon.hot {
  background: linear-gradient(145deg, #ffe9b5, #ff9f3c);
  box-shadow: 0 3px 8px rgba(200, 110, 20, 0.28);
}
.le-task-hot-tag {
  flex-shrink: 0;
  font-size: 10px;
  font-weight: 800;
  color: #fff;
  padding: 1px 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ff4d6a, #ff8a3c);
}
.le-task-action.hot {
  color: #fff;
  background: linear-gradient(90deg, #ff5a7a, #ff8a45);
  box-shadow: 0 3px 8px rgba(220, 70, 50, 0.28);
}
.le-task-item.featured {
  background: linear-gradient(90deg, #fff0f4 0%, #ffe4d8 48%, #ffe9b8 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 111, 111, 0.22);
}
.le-task-icon.featured {
  background: linear-gradient(145deg, #ff8aa0, #FF6F6F, #ff9f3c);
}
.le-task-hot-tag.featured {
  background: linear-gradient(90deg, #FF6F6F, #ffb347);
}
.le-task-action.featured {
  background: linear-gradient(90deg, #FF6F6F, #ff9f3c);
}

.boost-page {
  min-height: 100%;
  background: #f5f5f5;
  padding-bottom: calc(72px + var(--safe-bottom));
  box-sizing: border-box;
}
.boost-nav {
  position: sticky; top: 0; z-index: 30;
  display: flex; align-items: center; justify-content: center;
  height: 48px; padding: 0 12px;
  background: linear-gradient(135deg, #ff6f6f, #ff9a9a);
}
.boost-nav-back {
  position: absolute; left: 8px; font-size: 28px; color: #fff;
  line-height: 1; padding: 0 8px; border: none; background: transparent;
}
.boost-nav-title { font-size: 17px; font-weight: 700; color: #fff; }
.boost-hero {
  background: linear-gradient(135deg, #ff6f6f, #ff9a9a);
  padding-bottom: 24px;
}
.boost-hero-inner { padding: 12px 20px 4px; color: #fff; }
.boost-kicker { font-size: 12px; opacity: .9; margin-bottom: 4px; }
.boost-hero-title { font-size: 20px; font-weight: 800; line-height: 1.3; }
.boost-hero-desc { margin-top: 6px; font-size: 12px; opacity: .92; line-height: 1.5; }
.boost-balance {
  margin: -10px 12px 12px; background: #fff; border-radius: 10px;
  padding: 14px; box-shadow: 0 4px 12px rgba(255,111,111,.14);
  position: relative; z-index: 2;
}
.boost-balance-row { display: flex; align-items: center; justify-content: space-between; }
.boost-balance-label { font-size: 12px; color: #999; }
.boost-balance-num {
  margin-top: 4px; font-size: 26px; font-weight: 800; color: #ff6f6f; line-height: 1.15;
}
.boost-earn-btn {
  padding: 6px 14px; border-radius: 999px; border: none;
  background: rgba(255,111,111,.12); color: #ff6f6f; font-size: 12px; font-weight: 600;
}
.boost-status {
  margin-top: 9px; padding-top: 8px; border-top: 1px solid #f3f3f3;
  font-size: 11px; color: #888; line-height: 1.5;
}
.boost-status.on { color: #e85a5a; }
.boost-loading { padding: 40px 0; text-align: center; color: #999; font-size: 14px; }
.boost-section { padding: 0 12px 14px; }
.boost-section-title {
  font-size: 15px; font-weight: 700; color: #333; margin-bottom: 8px;
}
.boost-empty {
  background: #fff; border-radius: 8px; padding: 24px 12px;
  text-align: center; color: #999; font-size: 13px;
}
.boost-plan-list { display: flex; flex-direction: column; gap: 8px; }
.boost-plan {
  position: relative; display: flex; align-items: center; justify-content: space-between;
  width: 100%; background: #fff; border-radius: 9px; padding: 14px 16px;
  border: 1.5px solid transparent; box-sizing: border-box; text-align: left;
}
.boost-plan.selected {
  border-color: #ff6f6f;
  background: linear-gradient(135deg, rgba(255,111,111,.08), rgba(255,154,154,.12));
}
.boost-plan-left { display: flex; flex-direction: column; gap: 3px; }
.boost-plan-days { font-size: 17px; font-weight: 800; color: #333; }
.boost-plan.selected .boost-plan-days { color: #e85a5a; }
.boost-plan-label { font-size: 11px; color: #999; }
.boost-plan-right { display: flex; align-items: baseline; gap: 3px; }
.boost-plan-cost { font-size: 20px; font-weight: 800; color: #ff6f6f; }
.boost-plan-unit { font-size: 11px; color: #999; }
.boost-plan-check {
  position: absolute; top: 0; right: 0; width: 22px; height: 18px;
  background: #ff6f6f; color: #fff; font-size: 11px; font-weight: 700;
  line-height: 18px; text-align: center; border-radius: 0 8px 0 8px;
}
.boost-benefit {
  background: #fff; border-radius: 8px; padding: 12px 14px;
}
.boost-benefit-row {
  display: flex; align-items: flex-start; gap: 8px; margin-bottom: 9px;
}
.boost-benefit-row:last-child { margin-bottom: 0; }
.boost-benefit-dot {
  width: 18px; height: 18px; border-radius: 50%; flex-shrink: 0;
  background: rgba(255,111,111,.15); color: #ff6f6f;
  font-size: 11px; font-weight: 700; line-height: 18px; text-align: center;
}
.boost-benefit-text { flex: 1; font-size: 12px; color: #666; line-height: 1.55; }
.boost-bottom-space { height: 12px; }
.boost-pay-bar {
  position: fixed; z-index: 40;
  left: 50%; transform: translateX(-50%);
  width: 100%; max-width: 430px;
  bottom: 0;
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 14px calc(8px + var(--safe-bottom));
  background: #fff; box-shadow: 0 -3px 12px rgba(0,0,0,.06);
  box-sizing: border-box;
}
.boost-pay-info { display: flex; align-items: baseline; gap: 4px; }
.boost-pay-need { font-size: 12px; color: #888; }
.boost-pay-cost { font-size: 20px; font-weight: 800; color: #ff6f6f; }
.boost-pay-unit { font-size: 11px; color: #999; }
.boost-pay-btn {
  min-width: 110px; height: 40px; border: none; border-radius: 999px;
  background: linear-gradient(135deg, #ff6f6f, #ff8d8d);
  color: #fff; font-size: 15px; font-weight: 700;
}
.boost-pay-btn:disabled { opacity: .65; }

.qty-row {
  display: flex; align-items: center; gap: 10px; margin: 8px 14px; font-size: 14px;
}
.qty-row input {
  width: 80px; padding: 8px; border-radius: 8px; border: 1px solid #eee; font: inherit;
}

.bx-sub-host {
  margin: 0 0 10px;
  min-height: 44px;
}
.bx-sub-host wx-open-subscribe {
  display: block;
  width: 100%;
}
.msg-tabs {
  display: flex; gap: 6px; margin-bottom: 12px; overflow-x: auto;
}
.msg-tab {
  flex: 1; min-width: 70px; display: flex; flex-direction: column; align-items: center; gap: 4px;
  padding: 8px 6px; border-radius: 12px; background: #fff; color: #888; font-size: 12px;
}
.msg-tab.active { color: #ff5a7a; background: #fff0f3; font-weight: 700; }
.msg-tab-ico { width: 22px; height: 22px; object-fit: contain; }

/* ?? ????????? discover? ?? */
.discover-page {
  min-height: 100vh;
  background: #f3f3f5;
  padding-bottom: calc(var(--tab-h) + 80px + var(--safe-bottom));
}
.discover-head { padding: 10px 16px 0; }
.discover-title { font-size: 22px; font-weight: 700; color: #1a1a1a; line-height: 1.2; }
.dc-filter-bar {
  display: flex; align-items: flex-start; justify-content: space-between;
  padding: 12px 12px 8px;
}
.dc-filter-item {
  display: flex; flex-direction: column; align-items: center; flex: 1; color: #666;
}
.dc-filter-item.active .dc-filter-text { color: #ff6f6f; font-weight: 600; }
.dc-filter-icon { width: 28px; height: 28px; margin-bottom: 4px; object-fit: contain; }
.dc-filter-text { font-size: 12px; line-height: 1.2; }
.dc-feed { padding: 4px 0 24px; }
.moment-card {
  background: #fff; padding: 14px 16px 16px; margin-bottom: 8px;
}
.card-head { display: flex; align-items: flex-start; justify-content: space-between; }
.user-block { display: flex; align-items: center; flex: 1; min-width: 0; }
.dc-avatar {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0; object-fit: cover; background: #ececec;
}
.dc-meta { flex: 1; margin-left: 10px; min-width: 0; }
.name-row { display: flex; align-items: center; gap: 4px; }
.nickname {
  font-size: 16px; font-weight: 700; color: #1a1a1a;
  max-width: 90px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.gender { font-size: 13px; line-height: 1; }
.gender.male { color: #29b6f6; }
.gender.female { color: #ff5a7a; }
.sub-meta { display: block; margin-top: 4px; font-size: 12px; color: #b0b0b0; line-height: 1.3; }
.card-actions {
  flex-shrink: 0; display: flex; align-items: flex-start; gap: 6px;
  margin-left: 4px; margin-top: -6px;
}
.card-loveb, .card-stat {
  display: flex; flex-direction: column; align-items: center; min-width: 28px;
  background: none; border: none; padding: 0; color: inherit;
}
.card-stats { display: flex; align-items: flex-start; gap: 4px; }
.card-stat-num { font-size: 10px; color: #666; line-height: 1.2; }
.card-stat-icon {
  width: 26px; height: 26px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; background: #f3f4f6; color: #888; margin-top: 2px;
}
.card-stat-icon.loveb { background: #ffe4ea; color: #ff5a7a; font-size: 12px; font-weight: 700; }
.card-stat-icon.like.active { background: #ffe4ea; color: #ff5a7a; }
.card-stat-icon.fav.active { background: #fff0e0; color: #f59e0b; }
.card-stat-icon.follow.active { background: #e0f2fe; color: #29b6f6; }
.dc-content {
  display: block; margin-top: 12px; font-size: 15px; line-height: 1.75; color: #333;
  word-break: break-word; white-space: pre-wrap;
}
.media-one {
  display: block; width: 100%; margin-top: 12px; border-radius: 8px; overflow: hidden;
}
.media-grid { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 12px; }
.media-grid.cols-2 .grid-img { width: calc((100% - 5px) / 2); height: 160px; }
.media-grid.cols-3 .grid-img { width: calc((100% - 10px) / 3); height: 110px; }
.grid-img { border-radius: 6px; object-fit: cover; background: #ececec; }
.media-video { width: 100%; height: 200px; margin-top: 12px; border-radius: 8px; background: #000; }
.footer-tip { padding: 24px 0; text-align: center; font-size: 13px; color: #bbb; }

.fab-moment {
  position: fixed; right: 16px; bottom: calc(var(--tab-h) + 18px + var(--safe-bottom));
  z-index: 40; width: 64px; height: 64px; border: none; background: transparent; padding: 0;
}
.fab-moment-ring {
  position: absolute; inset: -4px; border-radius: 50%;
  border: 2px solid rgba(255,111,111,.35);
  animation: fab-moment-sway 2.4s ease-in-out infinite;
}
.fab-moment-inner {
  position: relative; z-index: 1; width: 56px; height: 56px; margin: 4px auto 0;
  border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: linear-gradient(145deg, #ff9aa6 0%, #ff6f6f 55%, #f0485c 100%);
  box-shadow: 0 6px 14px rgba(255, 90, 100, 0.38);
  border: 1px solid rgba(255,255,255,.45);
}
.fab-moment-plus { color: #fff; font-size: 18px; font-weight: 700; line-height: 1; }
.fab-moment-txt { color: #fff; font-size: 9px; font-weight: 800; line-height: 1.1; }
@keyframes fab-moment-sway {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(-8deg); }
  75% { transform: rotate(8deg); }
}

.dc-filter-mask {
  position: fixed; inset: 0; bottom: calc(var(--tab-h) + var(--safe-bottom));
  background: rgba(0,0,0,.35); z-index: 80;
}
.dc-filter-drawer {
  position: fixed; left: 50%; transform: translateX(-50%);
  width: 100%; max-width: 430px;
  bottom: calc(var(--tab-h) + var(--safe-bottom));
  background: #fff; border-radius: 14px 14px 0 0; z-index: 90;
  display: flex; flex-direction: column; max-height: 70vh;
  box-shadow: 0 -4px 16px rgba(0,0,0,.08);
}
.dc-filter-body { flex: 1; overflow: auto; padding: 0 16px 12px; }
.dc-section { margin-bottom: 10px; }
.section-head {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 10px 0; font-size: 14px; font-weight: 600; color: #333; background: none; border: none;
}
.kw-input {
  margin: 0 16px 12px; padding: 10px 12px; border-radius: 8px; border: none;
  background: #f5f5f7; font-size: 14px; width: calc(100% - 32px); box-sizing: border-box;
}

/* ?? ?????????? moment/publish? ?? */
.mpub-page {
  min-height: 100vh;
  background: #fff;
  box-sizing: border-box;
}
.mpub-nav {
  display: flex;
  align-items: center;
  height: 48px;
  padding: 0 12px;
  border-bottom: 1px solid #f0f0f0;
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 10;
}
.mpub-back {
  width: 36px;
  font-size: 28px;
  line-height: 1;
  color: #333;
  background: none;
  border: none;
  padding: 0;
}
.mpub-title {
  flex: 1;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  color: #222;
}
.mpub-submit {
  min-width: 58px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  font-size: 13px;
  color: #fff;
  background: #ffb4c0;
  border-radius: 999px;
  padding: 0 12px;
  border: none;
}
.mpub-submit.active { background: #ff6f6f; }
.mpub-submit.disabled { opacity: 0.7; }
.mpub-body {
  padding: 14px 14px 40px;
  box-sizing: border-box;
}
.mpub-content-box { position: relative; min-height: 120px; }
.mpub-textarea {
  width: 100%;
  min-height: 120px;
  padding: 0;
  font-size: 15px;
  line-height: 1.7;
  color: #333;
  background: transparent;
  border: none;
  outline: none;
  resize: vertical;
  box-sizing: border-box;
  font-family: inherit;
}
.mpub-textarea::placeholder { color: #bbb; }
.mpub-count {
  text-align: right;
  margin-top: 4px;
  font-size: 11px;
  color: #bbb;
}
.mpub-media-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.mpub-media-item,
.mpub-media-add {
  width: calc((100% - 16px) / 3);
  aspect-ratio: 1;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  background: #f5f5f7;
  border: none;
  padding: 0;
}
.mpub-media-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.mpub-media-del {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(0,0,0,.55);
  color: #fff;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  border: none;
  padding: 0;
}
.mpub-media-add {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px dashed #ddd;
  background: #fafafa;
}
.mpub-media-add.big {
  width: 100%;
  aspect-ratio: auto;
  height: 120px;
}
.mpub-add-plus {
  font-size: 28px;
  color: #ccc;
  line-height: 1;
}
.mpub-add-text {
  margin-top: 6px;
  font-size: 13px;
  color: #999;
}
.mpub-tip {
  margin-top: 12px;
  font-size: 11px;
  color: #bbb;
}
.mpub-file-hidden {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
  pointer-events: none;
}

/* ?? ?????????? members/list? ?? */
.ms-page {
  min-height: 100vh;
  background: #f7f2f3;
  padding-bottom: calc(24px + var(--safe-bottom));
}
.ms-nav {
  background: linear-gradient(160deg, #ff7a8a 0%, #ff6f6f 55%, #f25b6e 100%);
  color: #fff;
  padding-top: env(safe-area-inset-top, 0);
}
.ms-nav-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
}
.ms-back {
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 28px;
  line-height: 1;
  color: #fff;
  background: none;
  border: none;
  padding: 0 8px;
}
.ms-nav-title { font-size: 17px; font-weight: 700; }
.ms-search-panel {
  margin: -4px 12px 8px;
  padding: 12px 12px 6px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(255, 111, 111, 0.1);
  position: relative;
  z-index: 2;
}
.ms-search-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 6px 6px 12px;
  background: #f7f2f3;
  border-radius: 999px;
}
.ms-search-ico { color: #c4a0a0; font-size: 16px; }
.ms-search-input {
  flex: 1; min-width: 0; height: 32px; border: none; background: transparent;
  font-size: 14px; color: #333; outline: none; font-family: inherit;
}
.ms-search-clear {
  width: 22px; height: 22px; line-height: 20px; text-align: center;
  color: #bbb; font-size: 18px; background: none; border: none;
}
.ms-search-btn {
  padding: 0 14px; height: 32px; line-height: 32px; border-radius: 999px;
  background: #ff6f6f; color: #fff; font-size: 13px; font-weight: 600; border: none; flex-shrink: 0;
}
.ms-gender-tabs {
  display: flex; align-items: center; gap: 6px; margin-top: 10px; padding-bottom: 4px;
}
.ms-g-tab {
  flex: 1; text-align: center; padding: 8px 0; font-size: 13px; color: #888;
  background: #f7f2f3; border-radius: 8px; border: none;
}
.ms-g-tab.active {
  color: #ff6f6f; background: rgba(255, 111, 111, 0.12); font-weight: 600;
}
.ms-filter-entry {
  flex-shrink: 0; display: flex; align-items: center; justify-content: center; gap: 2px;
  min-width: 54px; padding: 8px 10px; font-size: 13px; color: #888;
  background: #f7f2f3; border-radius: 8px; border: none;
}
.ms-filter-entry.on {
  color: #ff6f6f; background: rgba(255, 111, 111, 0.12); font-weight: 600;
}
.ms-filter-ico { font-size: 12px; transform: rotate(90deg); display: inline-block; }
.ms-list { padding: 8px 12px 0; }
.ms-list-item { margin-bottom: 8px; }
.ms-list-card {
  display: flex; align-items: stretch; gap: 10px; padding: 10px;
  background: #fff; border-radius: 10px; box-shadow: 0 2px 8px rgba(0,0,0,.03);
}
.ms-avatar-wrap {
  flex-shrink: 0; width: 70px; display: flex; flex-direction: column; align-items: center;
}
.ms-avatar {
  width: 70px; height: 88px; border-radius: 8px; object-fit: cover; background: #eee; display: block;
}
.ms-avatar-badge {
  margin-top: 6px; max-width: 66px; padding: 2px 7px; font-size: 10px; line-height: 1.2;
  border-radius: 999px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; text-align: center;
  background: #f2f2f2; color: #9a9a9a;
}
.ms-avatar-badge.member {
  background: linear-gradient(135deg, #ffe8ec 0%, #ffd0d8 100%);
  color: #e04555; font-weight: 600; border: 1px solid rgba(255,111,111,.4);
}
.ms-avatar-badge.vip {
  background: linear-gradient(135deg, #fff8e7 0%, #f5e2a8 55%, #ecd278 100%);
  color: #8a6419; font-weight: 500;
}
.ms-list-info { flex: 1; min-width: 0; padding-top: 2px; }
.ms-list-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 4px; }
.ms-name-row { display: flex; align-items: center; gap: 4px; min-width: 0; flex: 1; }
.ms-list-name {
  font-size: 16px; font-weight: 700; color: #222;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.ms-gender.male { color: #29b6f6; font-size: 14px; }
.ms-gender.female { color: #ff5a7a; font-size: 14px; }
.ms-list-actions { display: flex; align-items: flex-start; gap: 4px; flex-shrink: 0; }
.ms-loveb, .ms-stat {
  display: flex; flex-direction: column; align-items: center; min-width: 22px;
  background: none; border: none; padding: 0; color: inherit;
}
.ms-stats { display: flex; align-items: flex-start; gap: 2px; }
.ms-stat-num { font-size: 10px; color: #666; }
.ms-loveb-label { font-size: 9px; color: #ff5a7a; }
.ms-stat-icon {
  width: 18px; height: 18px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; background: #f3f4f6; color: #999; margin-top: 1px;
}
.ms-stat-icon.like.active { background: #ffe4ea; color: #ff5a7a; }
.ms-stat-icon.fav.active { background: #fff0e0; color: #f59e0b; }
.ms-stat-icon.follow.active { background: #e0f2fe; color: #29b6f6; }
.ms-list-sub {
  display: block; margin-top: 6px; font-size: 12px; color: #888; line-height: 1.4;
}
.ms-chip-row { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 8px; }
.ms-chip {
  padding: 3px 7px; font-size: 11px; color: #b07070; background: #fff5f5; border-radius: 4px;
}
.ms-tip { padding: 24px 0; text-align: center; font-size: 13px; color: #bbb; }
.ms-tip.muted { color: #ccc; }
.ms-filter-mask {
  position: fixed;
  top: 0; bottom: 0;
  left: 50%;
  width: 100%;
  max-width: 430px;
  transform: translateX(-50%);
  background: rgba(0,0,0,.45);
  z-index: 80;
}
.ms-filter-drawer {
  position: fixed;
  top: 0; bottom: 0;
  right: var(--phone-side, 0px);
  width: 78%;
  max-width: 320px;
  background: #fff;
  z-index: 90;
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 24px rgba(0,0,0,.08);
}
.ms-filter-body { flex: 1; overflow: auto; padding: 0 16px 16px; }
.ms-residence-row { display: flex; align-items: center; gap: 8px; }
.ms-residence-cell {
  flex: 1; display: flex; justify-content: space-between; align-items: center;
  padding: 12px 14px; border-radius: 10px; background: #f7f2f3; border: none; font-size: 14px;
}

/* ???? ? ????? pages/loveb/recharge */
.lbr-page {
  min-height: 100%;
  background: #f7f2f3;
  padding-bottom: calc(96px + var(--safe-bottom));
  box-sizing: border-box;
}
.lbr-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #ff7a8a 0%, #ff6f6f 48%, #f25b6e 100%);
  padding: calc(8px + env(safe-area-inset-top, 0px)) 14px 28px;
  color: #fff;
}
.lbr-hero-nav {
  position: relative;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lbr-back {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 28px;
  line-height: 1;
  padding: 0 4px;
  color: #fff;
  border: none;
  background: transparent;
  cursor: pointer;
}
.lbr-nav-title { font-size: 17px; font-weight: 700; }
.lbr-hero-balance { position: relative; z-index: 1; margin-top: 14px; padding: 4px 4px 0; display: flex; align-items: stretch; justify-content: space-between; gap: 12px; }
.lbr-hero-balance-main { flex: 1; min-width: 0; display: flex; flex-direction: column; justify-content: center; }
.lbr-hero-vip-card {
  flex: 0 0 130px; width: 130px; min-height: 88px; border: 0; padding: 12px 10px;
  border-radius: 14px; cursor: pointer; text-align: left;
  background: linear-gradient(150deg, #ffe566 0%, #ffb347 42%, #ff6f6f 100%);
  box-shadow: 0 6px 14px rgba(255,111,80,.4);
  display: flex; flex-direction: column; align-items: flex-start; justify-content: center;
}
.lbr-hero-vip-crown { font-size: 18px; line-height: 1; margin-bottom: 4px; }
.lbr-hero-vip-title { display: block; font-size: 17px; font-weight: 800; color: #fff; line-height: 1.15; text-shadow: 0 1px 4px rgba(180,40,40,.28); }
.lbr-hero-vip-sub { margin-top: 6px; font-size: 11px; font-weight: 700; color: #fff; background: rgba(255,255,255,.22); padding: 3px 8px; border-radius: 999px; }
.lbr-hero-kicker { display: block; font-size: 12px; color: rgba(255,255,255,.8); }
.lbr-hero-num-row { display: flex; align-items: baseline; margin-top: 4px; gap: 5px; }
.lbr-hero-num { font-size: 36px; font-weight: 800; line-height: 1; letter-spacing: -1px; }
.lbr-hero-unit { font-size: 14px; font-weight: 600; color: rgba(255,255,255,.9); }
.lbr-hero-tip { display: block; margin-top: 7px; font-size: 11px; color: rgba(255,255,255,.75); line-height: 1.4; }
.lbr-orb { position: absolute; border-radius: 50%; pointer-events: none; }
.lbr-orb-a {
  width: 110px; height: 110px; right: -30px; top: 20px;
  background: radial-gradient(circle, rgba(255,255,255,.22) 0%, transparent 70%);
}
.lbr-orb-b {
  width: 80px; height: 80px; left: -20px; bottom: -15px;
  background: radial-gradient(circle, rgba(255,210,180,.28) 0%, transparent 70%);
}
.lbr-loading { text-align: center; padding: 50px; color: #999; font-size: 14px; }
.lbr-panel {
  margin: -14px 12px 0;
  position: relative;
  z-index: 2;
  background: #fff;
  border-radius: 14px;
  padding: 16px 14px 12px;
  box-shadow: 0 6px 16px rgba(255,111,111,.1);
}
.lbr-panel-head {
  display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 11px;
}
.lbr-panel-title { font-size: 16px; font-weight: 700; color: #2c2c2c; }
.lbr-panel-hint { font-size: 11px; color: #aaa; }
.lbr-pkg-grid {
  display: flex; flex-wrap: wrap; justify-content: space-between;
}
.lbr-pkg-tile {
  position: relative;
  width: 48%;
  margin-bottom: 8px;
  box-sizing: border-box;
  padding: 14px 10px 12px;
  border-radius: 10px;
  background: #faf7f7;
  border: 1px solid transparent;
  text-align: center;
  cursor: pointer;
  font: inherit;
  color: inherit;
}
.lbr-pkg-tile.selected {
  background: #fff5f6;
  border-color: #FF6F6F;
  box-shadow: 0 4px 10px rgba(255,111,111,.12);
}
.lbr-pkg-tag {
  position: absolute; top: 0; left: 0;
  padding: 2px 7px; font-size: 9px; color: #fff;
  background: linear-gradient(90deg, #FF6F6F, #ff9a7a);
  border-radius: 10px 0 8px 0;
}
.lbr-pkg-beans {
  display: block; font-size: 24px; font-weight: 800; color: #333; line-height: 1.1;
}
.lbr-pkg-tile.selected .lbr-pkg-beans { color: #FF6F6F; }
.lbr-pkg-beans-unit { font-size: 12px; font-weight: 600; margin-left: 2px; }
.lbr-pkg-price {
  display: block; margin-top: 5px; font-size: 15px; font-weight: 700; color: #FF6F6F;
}
.lbr-pkg-desc { display: block; margin-top: 3px; font-size: 11px; color: #999; }
.lbr-qty-block {
  margin-top: 14px; padding: 12px;
  border-radius: 10px;
  background: linear-gradient(180deg, #fff8f8 0%, #fff 100%);
  border: 1px solid #ffe4e8;
}
.lbr-qty-head {
  display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px;
}
.lbr-qty-title { font-size: 14px; font-weight: 700; color: #333; }
.lbr-qty-preview { font-size: 12px; color: #FF6F6F; font-weight: 600; }
.lbr-qty-ctrl {
  display: flex; align-items: center; justify-content: center; gap: 18px;
}
.lbr-qty-btn {
  width: 36px; height: 36px; border-radius: 50%;
  background: #fff; border: 1px solid #ffc9d2; color: #FF6F6F;
  font-size: 20px; line-height: 1; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; padding: 0;
}
.lbr-qty-btn.disabled { opacity: .35; pointer-events: none; }
.lbr-qty-mid {
  display: flex; align-items: baseline; gap: 3px;
  min-width: 50px; justify-content: center;
}
.lbr-qty-num { font-size: 24px; font-weight: 800; color: #2c2c2c; }
.lbr-qty-unit { font-size: 12px; color: #999; }
.lbr-note-list { margin-top: 14px; padding: 0 2px; }
.lbr-note-line { font-size: 11px; color: #aaa; line-height: 1.8; }
.lbr-pay-bar {
  position: fixed; z-index: 40;
  left: 50%; transform: translateX(-50%);
  width: 100%; max-width: 430px;
  bottom: 0;
  display: flex; align-items: center; justify-content: space-between;
  padding: 9px 14px calc(9px + var(--safe-bottom));
  background: rgba(255,255,255,.96);
  box-shadow: 0 -4px 14px rgba(0,0,0,.05);
  box-sizing: border-box;
}
.lbr-pay-info { flex: 1; min-width: 0; }
.lbr-pay-label { display: block; font-size: 11px; color: #999; }
.lbr-pay-wallet { display: block; margin-top: 2px; font-size: 10px; color: #c3994c; }
.lbr-pay-sum { display: flex; align-items: baseline; margin-top: 1px; }
.lbr-pay-yen { font-size: 14px; font-weight: 700; color: #FF6F6F; margin-right: 1px; }
.lbr-pay-cost { font-size: 24px; font-weight: 800; color: #FF6F6F; line-height: 1; }
.lbr-pay-btn {
  min-width: 120px; height: 44px; line-height: 44px; text-align: center;
  border-radius: 22px; border: none;
  background: linear-gradient(135deg, #ff7a8a, #FF6F6F 55%, #f25268);
  color: #fff; font-size: 15px; font-weight: 700; margin-left: 10px;
  box-shadow: 0 5px 12px rgba(255,111,111,.35); cursor: pointer;
}
.lbr-pay-btn.disabled, .lbr-pay-btn:disabled { opacity: .6; box-shadow: none; }

/* ???????????? */
.lbr-wx-mask {
  position: fixed; inset: 0; z-index: 80;
  background: rgba(0,0,0,.48);
  display: flex; align-items: center; justify-content: center;
  padding: 24px 16px;
  box-sizing: border-box;
}
.lbr-wx-panel {
  width: 100%; max-width: 320px;
  background: #fff; border-radius: 16px;
  padding: 20px 18px 16px;
  box-shadow: 0 12px 32px rgba(0,0,0,.18);
  text-align: center;
}
.lbr-wx-title { font-size: 17px; font-weight: 800; color: #222; }
.lbr-wx-desc {
  margin-top: 8px; font-size: 12px; color: #888; line-height: 1.55; text-align: left;
}
.lbr-wx-qr-box {
  margin: 14px auto 8px; width: 168px; height: 168px;
  background: #f7f7f7; border-radius: 12px;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.lbr-wx-qr { width: 156px; height: 156px; object-fit: contain; }
.lbr-wx-qr-empty { font-size: 12px; color: #bbb; }
.lbr-wx-url {
  font-size: 10px; color: #aaa; word-break: break-all; line-height: 1.4;
  max-height: 36px; overflow: hidden;
}
.lbr-wx-copy {
  margin-top: 12px; width: 100%; height: 40px; border-radius: 999px;
  border: 1px solid rgba(255,111,111,.45); background: #fff5f5;
  color: #FF6F6F; font-size: 14px; font-weight: 700;
}
.lbr-wx-ok {
  margin-top: 8px; width: 100%; height: 40px; border-radius: 999px; border: none;
  background: linear-gradient(135deg, #ff7a8a, #FF6F6F);
  color: #fff; font-size: 14px; font-weight: 700;
}

/* ?? ?????????? pages/loveb/checkin ?? */
.cki-page {
  min-height: 100vh;
  background: #f6f2f3;
  padding-bottom: 30px;
  box-sizing: border-box;
}
.cki-hero {
  background: linear-gradient(160deg, #ff7a8a 0%, #FF6F6F 50%, #f25268 100%);
  color: #fff;
  padding: 8px 14px 20px;
}
.cki-hero-nav {
  position: relative;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cki-back {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 28px;
  line-height: 1;
  color: #fff;
  border: none;
  background: none;
  padding: 0 8px;
  cursor: pointer;
}
.cki-nav-title { font-size: 17px; font-weight: 700; }
.cki-hero-card {
  margin-top: 8px;
  background: rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  padding: 14px 12px;
  text-align: center;
}
.cki-hc-label { font-size: 12px; opacity: .9; }
.cki-hc-num {
  margin-top: 4px;
  font-size: 32px;
  font-weight: 800;
  line-height: 1.1;
}
.cki-hc-unit {
  font-size: 14px;
  font-weight: 600;
  margin-left: 3px;
}
.cki-hc-sub { margin-top: 5px; font-size: 12px; opacity: .9; }
.cki-loading { text-align: center; padding: 40px; color: #999; }
.cki-panel {
  margin: 12px 12px 0;
  background: #fff;
  border-radius: 12px;
  padding: 14px 12px;
  box-shadow: 0 4px 12px rgba(180, 80, 100, 0.06);
}
.cki-sec-title {
  font-size: 15px;
  font-weight: 700;
  color: #333;
  margin-bottom: 10px;
}
.cki-today-box {
  background: #fff5f6;
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 12px;
}
.cki-today-title { font-size: 13px; color: #888; }
.cki-today-reward {
  margin-top: 5px;
  font-size: 18px;
  font-weight: 800;
  color: #FF6F6F;
}
.cki-today-tip { margin-top: 5px; font-size: 11px; color: #999; }
.cki-btn {
  width: 100%;
  height: 44px;
  border: none;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  background: linear-gradient(90deg, #ff7a8a, #FF6F6F);
  color: #fff;
  cursor: pointer;
}
.cki-btn.disabled,
.cki-btn:disabled {
  background: #e8e0e2;
  color: #999;
  cursor: default;
}
.cki-rule-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 0;
  border-bottom: 1px solid #f3ecee;
}
.cki-rule-row:last-child { border-bottom: none; }
.cki-rule-label { font-size: 14px; color: #333; font-weight: 600; }
.cki-rule-sub { margin-top: 2px; font-size: 11px; color: #aaa; }
.cki-rule-tip { font-size: 13px; color: #FF6F6F; font-weight: 700; }
.cki-empty-rules { font-size: 12px; color: #bbb; padding: 4px 0; }
.cki-tip-panel .cki-tip-line {
  font-size: 11px;
  color: #999;
  line-height: 1.8;
}

/* ?????????????? showModal? */
.cki-auto-mask {
  position: fixed; z-index: 300;
  top: 0; bottom: 0;
  left: 50%; width: 100%; max-width: 430px; transform: translateX(-50%);
  background: rgba(0,0,0,.45);
  display: flex; align-items: center; justify-content: center;
  padding: 24px; box-sizing: border-box;
}
.cki-auto-panel {
  width: 100%; max-width: 300px;
  background: #fff; border-radius: 14px;
  padding: 22px 18px 16px;
  text-align: center;
  box-shadow: 0 12px 32px rgba(0,0,0,.18);
}
.cki-auto-title { font-size: 17px; font-weight: 800; color: #222; }
.cki-auto-body {
  margin-top: 12px; font-size: 14px; color: #555;
  line-height: 1.6; white-space: pre-line; text-align: center;
}
.cki-auto-ok {
  margin-top: 18px; width: 100%; height: 42px; border: none; border-radius: 999px;
  background: linear-gradient(90deg, #ff7a8a, #FF6F6F);
  color: #fff; font-size: 15px; font-weight: 700; cursor: pointer;
}

/* ?? ???????? pages/zone ?? */
.zone-page {
  min-height: 100vh;
  background: #f7f2f3;
  padding-bottom: calc(72px + env(safe-area-inset-bottom));
  box-sizing: border-box;
}
.zone-panel {
  margin: -4px 12px 8px;
  padding: 12px 10px 10px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(255, 111, 111, 0.1);
  position: relative;
  z-index: 2;
}
.zone-chan-row {
  display: flex;
  justify-content: space-between;
}
.zone-chan {
  width: 18%;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: none;
  border: none;
  padding: 2px 0;
  cursor: pointer;
}
.zone-chan-mark {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: #e04555;
  background: #fff0f2;
}
.zone-chan.peach .zone-chan-mark { background: #fff3ea; color: #d06a3a; }
.zone-chan.sand .zone-chan-mark { background: #fff6e8; color: #c07a22; }
.zone-chan.coral .zone-chan-mark { background: #ffe8e8; color: #e04555; }
.zone-chan.gold .zone-chan-mark { background: #fff4d6; color: #8a6419; }
.zone-chan.active .zone-chan-mark {
  background: linear-gradient(160deg, #ff7a8a 0%, #ff5f6f 100%);
  color: #fff;
  box-shadow: 0 4px 10px rgba(255, 95, 111, 0.32);
}
.zone-chan-name {
  margin-top: 6px;
  font-size: 11px;
  line-height: 1.25;
  text-align: center;
  color: #888;
}
.zone-chan.active .zone-chan-name {
  color: #ff6f6f;
  font-weight: 700;
}
.zone-city-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 12px 2px 8px;
}
.zone-city-line {
  flex: 1;
  height: 1px;
  background: #f0e4e6;
}
.zone-city-txt {
  font-size: 11px;
  color: #b08a8e;
  letter-spacing: 1px;
}
.zone-city-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
}
.zone-city-chip {
  min-height: 34px;
  padding: 6px 2px;
  border: none;
  border-radius: 8px;
  background: #f7f2f3;
  color: #888;
  font-size: 12px;
  line-height: 1.2;
  cursor: pointer;
}
.zone-city-chip.active {
  background: rgba(255, 111, 111, 0.12);
  color: #ff6f6f;
  font-weight: 700;
}
.zone-body { padding: 12px; }
.zone-row {
  content-visibility: auto;
  contain-intrinsic-size: 92px;
  display: flex;
  width: 100%;
  text-align: left;
  background: #fff;
  border: 1px solid #f2e8ea;
  border-radius: 12px;
  padding: 12px;
  margin-bottom: 10px;
  cursor: pointer;
  box-sizing: border-box;
}
.zone-avatar {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
  background: #eee;
}
.zone-main {
  flex: 1;
  margin-left: 10px;
  min-width: 0;
}
.zone-name-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
}
.zone-name {
  font-size: 15px;
  font-weight: 700;
  color: #222;
}
.zone-gender.male { color: #29b6f6; font-size: 13px; }
.zone-gender.female { color: #ff5a7a; font-size: 13px; }
.zone-tag {
  padding: 1px 6px;
  border-radius: 4px;
  font-size: 10px;
  line-height: 1.4;
}
.zone-tag.star { background: #fff7e6; color: #d48806; }
.zone-tag.vip {
  background: linear-gradient(90deg, #c3994c, #fee517);
  color: #844b00;
}
.zone-sub {
  margin-top: 4px;
  font-size: 12px;
  color: #888;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.zone-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 6px;
}
.zone-chip {
  padding: 1px 8px;
  border-radius: 999px;
  font-size: 10px;
  color: #FF6F6F;
  background: #fff0f0;
}
.zone-intro {
  margin-top: 6px;
  font-size: 12px;
  color: #555;
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.zone-tip {
  padding: 24px 0;
  text-align: center;
  font-size: 13px;
  color: #999;
}
.zone-more {
  display: block;
  width: 100%;
  margin-top: 4px;
  height: 40px;
  border: none;
  border-radius: 10px;
  background: #fff;
  color: #666;
  font-size: 13px;
  cursor: pointer;
}
.zone-fab.fab-submit {
  right: 0;
  bottom: calc(var(--tab-h) + 10px + var(--safe-bottom));
  width: 64px;
  height: 64px;
  border: none;
  padding: 0;
  animation: zone-fab-sway 2s ease-in-out infinite;
  transform-origin: center center;
}
.zone-fab .fab-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(255, 111, 111, 0.35);
  box-shadow: 0 0 0 5px rgba(255, 111, 111, 0.08);
  pointer-events: none;
}
@keyframes zone-fab-sway {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(-8deg); }
  50% { transform: rotate(0deg); }
  75% { transform: rotate(8deg); }
}

/* ??? H5 ???????? pages/message/chat? ??? */
.bx-chat-page {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 430px;
  height: 100vh;
  height: 100dvh;
  background: #f3f3f5;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  overflow: hidden;
  z-index: 40;
}
.bx-chat-nav {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  height: 44px;
  padding: 0 10px;
  padding-top: env(safe-area-inset-top);
  background: #fff;
  border-bottom: 1px solid #eee;
  z-index: 10;
  box-sizing: content-box;
}
.bx-chat-back {
  width: 32px;
  height: 32px;
  border: none;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  line-height: 1;
  color: #333;
  padding: 0;
  cursor: pointer;
}
.bx-chat-nav-center {
  flex: 1;
  min-width: 0;
  padding: 0 6px;
}
.bx-chat-nav-title {
  font-size: 16px;
  font-weight: 600;
  color: #222;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.bx-chat-nav-sub {
  margin-top: 2px;
  font-size: 10px;
  color: #999;
}
.bx-chat-nav-av {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  background: #eee;
  flex-shrink: 0;
  cursor: pointer;
}
.bx-chat-list {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 12px 10px 16px;
  box-sizing: border-box;
}
.bx-chat-state {
  min-height: 52vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 16px;
  box-sizing: border-box;
}
.bx-chat-state-tip {
  text-align: center;
  color: #999;
  font-size: 14px;
  line-height: 1.5;
}
.bx-chat-state-sub {
  margin-top: 10px;
  font-size: 11px;
  color: #bbb;
}
.bx-chat-hello {
  margin-top: 14px;
  min-width: 120px;
  padding: 10px 24px;
  border: none;
  border-radius: 999px;
  background: #ff6f6f;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(255, 111, 111, 0.25);
  cursor: pointer;
}
.bx-msg-block {
  margin-bottom: 12px;
}
.bx-msg-block.mine {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.bx-msg-block.peer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.bx-msg-row {
  display: flex;
  align-items: flex-start;
  width: 100%;
  box-sizing: border-box;
}
.bx-msg-row.peer { justify-content: flex-start; }
.bx-msg-row.mine { justify-content: flex-end; }
.bx-bubble-av {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  background: #eee;
  cursor: pointer;
}
.bx-bubble-wrap {
  max-width: 70%;
  margin: 0 6px;
}
.bx-time-center {
  width: 100%;
  margin: 4px 0 10px;
  text-align: center;
  font-size: 11px;
  color: #b0b0b0;
  line-height: 1.2;
}
.bx-bubble {
  padding: 9px 11px;
  border-radius: 9px;
  font-size: 14px;
  line-height: 1.5;
  word-break: break-all;
}
.bx-msg-row.peer .bx-bubble {
  background: #fff;
  color: #333;
}
.bx-msg-row.mine .bx-bubble {
  background: #ff6f6f;
  color: #fff;
}
.bx-read-status {
  margin-top: 4px;
  margin-right: 44px;
  font-size: 10px;
  line-height: 1.2;
  text-align: right;
}
.bx-read-status.unread { color: #b0b0b0; }
.bx-read-status.read { color: #9ca3af; }
.bx-bubble.gift {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.bx-gift-img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}
.bx-gift-price {
  font-size: 10px;
  color: #ff6f6f;
}
.bx-msg-row.mine .bx-gift-price { color: rgba(255, 255, 255, 0.9); }
.bx-composer {
  flex-shrink: 0;
  background: #fff;
  border-top: 1px solid #eee;
  padding: 6px 10px;
  padding-bottom: calc(6px + env(safe-area-inset-bottom));
  z-index: 20;
  box-sizing: border-box;
}
.bx-cost-tip {
  margin-bottom: 4px;
  font-size: 11px;
  color: #999;
}
.bx-composer-row {
  display: flex;
  align-items: center;
  gap: 6px;
}
.bx-gift-btn {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffe8ec, #ffd0d8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
  box-shadow: 0 2px 6px rgba(255, 111, 111, 0.18);
  cursor: pointer;
  padding: 0;
}
.bx-composer-input {
  flex: 1;
  min-width: 0;
  height: 36px;
  padding: 0 14px;
  border: none;
  outline: none;
  background: #f5f5f5;
  border-radius: 999px;
  font-size: 14px;
  box-sizing: border-box;
}
.bx-send-btn {
  flex-shrink: 0;
  min-width: 60px;
  height: 36px;
  padding: 0 14px;
  border: none;
  border-radius: 999px;
  background: #ff6f6f;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}
.bx-send-btn.disabled { opacity: 0.55; }
.bx-gift-panel {
  margin-top: 8px;
  padding: 10px 4px 4px;
  background: #fafafa;
  border-radius: 10px;
}
.bx-gift-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4px 8px;
}
.bx-gift-panel-title {
  font-size: 14px;
  font-weight: 600;
  color: #333;
}
.bx-gift-panel-balance {
  font-size: 11px;
  color: #ff6f6f;
}
.bx-gift-empty {
  padding: 24px 0;
  text-align: center;
  font-size: 13px;
  color: #999;
}
.bx-gift-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 0 2px 4px;
  max-height: 180px;
  overflow-y: auto;
}
.bx-gift-item {
  width: calc((100% - 18px) / 4);
  box-sizing: border-box;
  padding: 8px 4px;
  background: #fff;
  border-radius: 8px;
  border: 1px solid transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
}
.bx-gift-item.active {
  border-color: #ff6f6f;
  background: #fff5f6;
}
.bx-gift-item-img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  margin-bottom: 4px;
}
.bx-gift-item-emoji {
  font-size: 28px;
  line-height: 36px;
  margin-bottom: 4px;
}
.bx-gift-item-name {
  font-size: 10px;
  color: #555;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: center;
}
.bx-gift-item-price {
  margin-top: 2px;
  font-size: 9px;
  color: #ff6f6f;
}
.bx-gift-send {
  display: block;
  width: calc(100% - 8px);
  margin: 8px 4px 0;
  height: 36px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff8e8e, #ff6f6f);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}
.bx-gift-send.disabled { opacity: 0.5; }

/* ?????????? profile/social? */
.sf-page { min-height: 100vh; background: #f7f7f8; padding-bottom: 24px; }
.sf-hero {
  background: linear-gradient(180deg, #FF6F6F 0%, #ff8a8a 55%, #f7f7f8 100%);
  padding: 0 14px 10px;
  color: #fff;
}
.sf-nav {
  position: relative;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sf-back {
  position: absolute;
  left: 0;
  font-size: 28px;
  line-height: 1;
  padding: 0 8px;
  color: #fff;
  background: transparent;
  border: none;
}
.sf-nav-title { font-size: 17px; font-weight: 700; }
.sf-nav-ph { display: none; }
.sf-stats { display: flex; gap: 6px; margin-top: 4px; }
.sf-stat {
  flex: 1;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 8px 4px;
  text-align: center;
}
.sf-num { display: block; font-size: 15px; font-weight: 800; }
.sf-label { display: block; margin-top: 2px; font-size: 10px; opacity: 0.9; }
.sf-tip {
  display: block;
  margin: 8px 0 0;
  font-size: 12px;
  opacity: 0.9;
  line-height: 1.4;
}
.sf-tabs {
  display: flex;
  gap: 8px;
  padding: 4px 12px 12px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.sf-tab {
  flex-shrink: 0;
  padding: 6px 16px;
  border-radius: 999px;
  background: #fff;
  color: #666;
  font-size: 13px;
  border: 1px solid #eee;
}
.sf-tab.on {
  background: #FF6F6F;
  color: #fff;
  border-color: #FF6F6F;
}
.sf-state {
  text-align: center;
  color: #999;
  padding: 48px 0;
  font-size: 14px;
}
.sf-list {
  margin: 0 12px;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(255, 111, 111, 0.06);
}
.sf-row {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 12px;
  border: none;
  background: #fff;
  border-bottom: 1px solid #f3f3f3;
  text-align: left;
  cursor: pointer;
}
.sf-row:last-child { border-bottom: none; }
.sf-rank {
  width: 24px;
  text-align: center;
  font-size: 14px;
  font-weight: 800;
  color: #999;
  flex-shrink: 0;
}
.sf-rank.top1 { color: #f59e0b; }
.sf-rank.top2 { color: #94a3b8; }
.sf-rank.top3 { color: #c3994c; }
.sf-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f0f0f0;
  object-fit: cover;
  flex-shrink: 0;
}
.sf-main { flex: 1; min-width: 0; }
.sf-name {
  font-size: 14px;
  font-weight: 700;
  color: #333;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.sf-sub {
  margin-top: 3px;
  font-size: 11px;
  color: #999;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.sf-side {
  flex-shrink: 0;
  font-size: 14px;
  font-weight: 800;
  color: #FF6F6F;
}

/* ???? / ?????????? profile/viewers? */
.vw-page { min-height: 100vh; background: #f7f7f8; padding-bottom: 24px; }
.vw-hero {
  background: linear-gradient(180deg, #FF6F6F 0%, #ff8a8a 55%, #f7f7f8 100%);
  padding: 0 14px 14px;
  color: #fff;
}
.vw-nav {
  position: relative;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vw-back {
  position: absolute;
  left: 0;
  font-size: 28px;
  line-height: 1;
  padding: 0 8px;
  color: #fff;
  background: transparent;
  border: none;
}
.vw-nav-title { font-size: 17px; font-weight: 700; }
.vw-nav-ph { display: none; }
.vw-stats { display: flex; gap: 8px; margin-top: 4px; }
.vw-stat {
  flex: 1;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  padding: 10px 8px;
  text-align: center;
}
.vw-num { display: block; font-size: 18px; font-weight: 800; }
.vw-label { display: block; margin-top: 2px; font-size: 11px; opacity: 0.9; }
.vw-tip {
  display: block;
  margin: 10px 0 0;
  font-size: 12px;
  opacity: 0.9;
  line-height: 1.4;
}
.vw-state {
  text-align: center;
  color: #999;
  padding: 48px 0;
  font-size: 14px;
}
.vw-list {
  margin: 0 12px;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(255, 111, 111, 0.06);
}
.vw-row {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 12px;
  border: none;
  background: #fff;
  border-bottom: 1px solid #f3f3f3;
  text-align: left;
  cursor: pointer;
}
.vw-row:last-child { border-bottom: none; }
.vw-rank {
  width: 24px;
  text-align: center;
  font-size: 14px;
  font-weight: 800;
  color: #999;
  flex-shrink: 0;
}
.vw-rank.top1 { color: #f59e0b; }
.vw-rank.top2 { color: #94a3b8; }
.vw-rank.top3 { color: #c3994c; }
.vw-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f0f0f0;
  object-fit: cover;
  flex-shrink: 0;
}
.vw-main { flex: 1; min-width: 0; }
.vw-name {
  font-size: 14px;
  font-weight: 700;
  color: #333;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.vw-sub {
  margin-top: 3px;
  font-size: 11px;
  color: #999;
}
.vw-side { text-align: right; flex-shrink: 0; }
.vw-count {
  display: block;
  font-size: 16px;
  font-weight: 800;
  color: #FF6F6F;
}
.vw-side-tip {
  display: block;
  margin-top: 1px;
  font-size: 10px;
  color: #bbb;
}

/* ?????????? earn/index? */
.ec-page { min-height: 100vh; background: #f6f2f3; padding-bottom: 24px; }
.ec-hero {
  background: linear-gradient(160deg, #ff7a8a 0%, #FF6F6F 45%, #f25268 100%);
  color: #fff;
  padding: 4px 14px 20px;
}
.ec-nav {
  position: relative;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ec-back {
  position: absolute; left: 0;
  font-size: 28px; line-height: 1; padding: 0 8px;
  color: #fff; background: transparent; border: none;
}
.ec-nav-title { font-size: 17px; font-weight: 700; }
.ec-share-pill {
  position: absolute; right: 0;
  padding: 0 12px; height: 28px; line-height: 28px;
  border-radius: 999px; border: none;
  background: rgba(255,255,255,.2); color: #fff; font-size: 13px;
}
.ec-hero-cards { display: flex; gap: 8px; margin-top: 10px; }
.ec-hero-card {
  flex: 1; text-align: left;
  background: rgba(255,255,255,.16);
  border-radius: 12px; border: none; color: #fff;
  padding: 12px 10px; cursor: pointer;
}
.ec-hc-label { display: block; font-size: 11px; opacity: .85; }
.ec-hc-num { display: block; margin-top: 6px; font-size: 22px; font-weight: 800; line-height: 1.1; }
.ec-hc-sub { display: block; margin-top: 4px; font-size: 10px; opacity: .72; line-height: 1.35; }
.ec-hero-meta {
  display: flex; justify-content: space-between; gap: 6px;
  margin-top: 10px; font-size: 11px; opacity: .9;
}
.ec-loading { text-align: center; padding: 40px; color: #999; }
.ec-panel {
  margin: 12px 12px 0; padding: 14px 12px;
  background: #fff; border-radius: 14px;
  box-shadow: 0 4px 12px rgba(255,111,111,.06);
}
.ec-sheet { margin-top: -8px; }
.ec-sec-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 10px;
}
.ec-sec-title { font-size: 15px; font-weight: 800; color: #333; }
.ec-sec-tip { font-size: 11px; color: #bbb; }
.ec-link { border: none; background: transparent; color: #FF6F6F; font-size: 12px; }
.ec-feat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px 6px;
}
.ec-feat {
  display: flex; flex-direction: column; align-items: center;
  border: none; background: transparent; padding: 0; cursor: pointer;
}
.ec-feat-icon {
  width: 40px; height: 40px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.ec-feat-title { margin-top: 6px; font-size: 12px; font-weight: 700; color: #333; }
.ec-feat-desc { margin-top: 2px; font-size: 10px; color: #999; text-align: center; line-height: 1.3; }
.ec-invite-box {
  display: flex; align-items: center; gap: 10px;
  padding: 10px; background: #fff7f7; border-radius: 10px;
}
.ec-invite-id { flex: 1; min-width: 0; }
.ec-invite-label { display: block; font-size: 11px; color: #999; }
.ec-invite-code { display: block; margin-top: 2px; font-size: 18px; font-weight: 800; color: #333; }
.ec-invite-hint { margin: 8px 0 0; font-size: 11px; color: #999; line-height: 1.5; }
.ec-rate-row {
  display: flex; justify-content: space-between; gap: 6px;
  margin-top: 10px; font-size: 11px; color: #888;
}
.ec-channel { margin-top: 10px; padding-top: 10px; border-top: 1px solid #f3f3f3; }
.ec-channel:first-of-type { margin-top: 0; padding-top: 0; border-top: none; }
.ec-ch-title { font-size: 14px; font-weight: 700; color: #333; }
.ec-ch-tip { margin-top: 2px; font-size: 12px; color: #FF6F6F; }
.ec-ch-point { margin-top: 4px; font-size: 12px; color: #666; line-height: 1.4; }
.ec-tip-panel { margin-bottom: 12px; }
.ec-tip-title { font-size: 14px; font-weight: 700; color: #333; margin-bottom: 6px; }
.ec-tip-line { font-size: 12px; color: #888; line-height: 1.6; }
.ec-btn {
  border: none; border-radius: 999px; cursor: pointer;
  font-size: 14px; font-weight: 700;
}
.ec-btn.primary {
  background: linear-gradient(135deg, #ff8e8e, #FF6F6F);
  color: #fff; padding: 0 14px; height: 36px; line-height: 36px;
}
.ec-btn.soft {
  background: #fff0f0; color: #FF6F6F;
  padding: 0 14px; height: 36px; line-height: 36px; margin-top: 8px;
}
.ec-btn.block { display: block; width: 100%; height: 42px; line-height: 42px; }
.ec-mask {
  position: fixed; z-index: 80;
  top: 0; bottom: 0;
  left: 50%; width: 100%; max-width: 430px; transform: translateX(-50%);
  background: rgba(0,0,0,.45);
}
.ec-sheet-menu {
  position: fixed; z-index: 90;
  left: 50%; bottom: 0; transform: translateX(-50%);
  width: 100%; max-width: 430px;
  background: #fff; border-radius: 16px 16px 0 0;
  padding: 8px 12px calc(12px + env(safe-area-inset-bottom));
  box-sizing: border-box;
}
.ec-sheet-menu button {
  display: block; width: 100%; height: 48px;
  border: none; background: transparent;
  border-bottom: 1px solid #f3f3f3;
  font-size: 15px; color: #333; cursor: pointer;
}
.ec-sheet-menu button.cancel { color: #999; border-bottom: none; margin-top: 4px; }
.ec-drawer {
  position: fixed; z-index: 90;
  left: 50%; bottom: 0; transform: translateX(-50%);
  width: 100%; max-width: 430px;
  max-height: 78vh;
  background: #fff; border-radius: 16px 16px 0 0;
  padding: 14px 14px calc(16px + env(safe-area-inset-bottom));
  box-sizing: border-box;
  overflow: hidden;
  display: flex; flex-direction: column;
}
.ec-drawer.tall { max-height: 82vh; }
.ec-drawer-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 8px;
}
.ec-drawer-title { font-size: 16px; font-weight: 800; color: #333; }
.ec-drawer-close {
  border: none; background: transparent;
  font-size: 24px; line-height: 1; color: #999; padding: 0 4px;
}
.ec-drawer-desc { margin: 0; font-size: 13px; color: #333; line-height: 1.5; }
.ec-drawer-tip { margin: 8px 0 0; font-size: 12px; color: #999; line-height: 1.5; }
.ec-field {
  display: flex; align-items: center; gap: 8px;
  margin: 12px 0;
  padding: 0 12px; height: 44px;
  background: #f7f7f8; border-radius: 10px;
}
.ec-field input {
  flex: 1; min-width: 0; border: none; background: transparent;
  font-size: 15px; outline: none;
}
.ec-field-link {
  border: none; background: transparent;
  color: #FF6F6F; font-size: 13px; font-weight: 700; flex-shrink: 0;
}
.ec-share-item {
  display: flex; align-items: center; gap: 10px;
  width: 100%; padding: 12px 0;
  border: none; border-bottom: 1px solid #f3f3f3;
  background: transparent; text-align: left; cursor: pointer;
}
.ec-share-icon {
  width: 40px; height: 40px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.ec-share-main { flex: 1; min-width: 0; }
.ec-share-title { display: block; font-size: 14px; font-weight: 700; color: #333; }
.ec-share-desc { display: block; margin-top: 2px; font-size: 11px; color: #999; }
.ec-share-arrow { color: #ccc; font-size: 18px; }
.ec-list-scroll { flex: 1; overflow-y: auto; -webkit-overflow-scrolling: touch; }
.ec-empty { text-align: center; color: #999; padding: 32px 0; font-size: 13px; }
.ec-list-row {
  display: flex; flex-wrap: wrap; align-items: flex-start; gap: 8px;
  padding: 12px 0; border-bottom: 1px solid #f3f3f3;
}
.ec-list-main { flex: 1; min-width: 0; }
.ec-list-title { font-size: 14px; font-weight: 700; color: #333; }
.ec-list-sub { margin-top: 3px; font-size: 11px; color: #999; }
.ec-list-side { text-align: right; flex-shrink: 0; }
.ec-list-amount { font-size: 14px; font-weight: 800; color: #FF6F6F; }
.ec-list-status { display: block; margin-top: 2px; font-size: 11px; }
.ec-list-status.ok { color: #10b981; }
.ec-list-status.bad { color: #ef4444; }
.ec-list-status.wait { color: #f59e0b; }
.ec-urgent {
  margin-top: 4px; padding: 2px 8px;
  border: 1px solid #FF6F6F; border-radius: 999px;
  background: #fff; color: #FF6F6F; font-size: 11px;
}
.ec-proof { width: 100%; margin-top: 6px; }
.ec-proof-label { font-size: 11px; color: #999; margin-bottom: 4px; }
.ec-proof-img {
  width: 72px; height: 72px; border-radius: 8px;
  object-fit: cover; background: #f3f3f3;
}
.ec-proof-empty {
  font-size: 12px; color: #bbb;
  padding: 16px; background: #f7f7f8; border-radius: 8px; text-align: center;
}

/* ??????????? earn/rank? */
.er-page { min-height: 100vh; background: #f7f7f8; padding-bottom: 24px; }
.er-hero {
  background: linear-gradient(180deg, #FF6F6F 0%, #ff8a8a 55%, #f7f7f8 100%);
  padding: 0 14px 14px; color: #fff;
}
.er-nav {
  position: relative; height: 44px;
  display: flex; align-items: center; justify-content: center;
}
.er-back {
  position: absolute; left: 0; font-size: 28px; line-height: 1;
  padding: 0 8px; color: #fff; background: transparent; border: none;
}
.er-nav-title { font-size: 17px; font-weight: 700; }
.er-nav-ph { display: none; }
.er-tip { margin: 4px 0 0; font-size: 12px; opacity: .9; line-height: 1.4; }
.er-tabs { display: flex; gap: 8px; margin-top: 10px; }
.er-tab {
  padding: 6px 14px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,.45);
  background: rgba(255,255,255,.18); color: #fff; font-size: 13px;
}
.er-tab.on { background: #fff; color: #FF6F6F; border-color: #fff; font-weight: 700; }
.er-state { text-align: center; color: #999; padding: 48px 0; font-size: 14px; }
.er-list {
  margin: -4px 12px 0; background: #fff; border-radius: 12px; overflow: hidden;
  box-shadow: 0 4px 12px rgba(255,111,111,.08);
}
.er-row {
  display: flex; align-items: center; gap: 10px; width: 100%;
  padding: 12px; border: none; background: #fff;
  border-bottom: 1px solid #f3f3f3; text-align: left; cursor: pointer;
}
.er-row:last-child { border-bottom: none; }
.er-rank {
  width: 24px; text-align: center; font-size: 14px; font-weight: 800; color: #999; flex-shrink: 0;
}
.er-rank.top1 { color: #f59e0b; }
.er-rank.top2 { color: #94a3b8; }
.er-rank.top3 { color: #c3994c; }
.er-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  object-fit: cover; background: #f0f0f0; flex-shrink: 0;
}
.er-main { flex: 1; min-width: 0; }
.er-name {
  font-size: 14px; font-weight: 700; color: #333;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.er-sub { margin-top: 3px; font-size: 11px; color: #999; }
.er-side { text-align: right; flex-shrink: 0; }
.er-money { display: block; font-size: 15px; font-weight: 800; color: #FF6F6F; }
.er-side-tip { display: block; margin-top: 2px; font-size: 10px; color: #bbb; }

/* ??/???????????? earn/rank-detail? */
.erd-page { min-height: 100vh; background: #f7f7f8; padding-bottom: 24px; }
.erd-hero {
  background: linear-gradient(180deg, #FF6F6F 0%, #ff8a8a 55%, #f7f7f8 100%);
  padding: 0 14px 14px; color: #fff;
}
.erd-nav {
  position: relative; height: 44px;
  display: flex; align-items: center; justify-content: center;
}
.erd-back {
  position: absolute; left: 0; font-size: 28px; line-height: 1;
  padding: 0 8px; color: #fff; background: transparent; border: none;
}
.erd-nav-title { font-size: 17px; font-weight: 700; }
.erd-user {
  display: flex; align-items: center; gap: 10px;
  margin-top: 6px; padding: 12px;
  background: rgba(255,255,255,.18); border-radius: 12px;
}
.erd-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  object-fit: cover; background: rgba(255,255,255,.35); flex-shrink: 0;
}
.erd-umain { flex: 1; min-width: 0; }
.erd-uname { font-size: 15px; font-weight: 700; }
.erd-usub { margin-top: 3px; font-size: 11px; opacity: .9; }
.erd-uside { text-align: right; flex-shrink: 0; }
.erd-money { display: block; font-size: 16px; font-weight: 800; }
.erd-money-tip { display: block; margin-top: 2px; font-size: 10px; opacity: .85; }
.erd-filters {
  display: flex; gap: 8px; padding: 4px 12px 12px;
  overflow-x: auto; -webkit-overflow-scrolling: touch;
}
.erd-chip {
  flex-shrink: 0; padding: 6px 14px; border-radius: 999px;
  background: #fff; color: #666; font-size: 12px; border: 1px solid #eee;
}
.erd-chip.on { background: #FF6F6F; color: #fff; border-color: #FF6F6F; }
.erd-state { text-align: center; color: #999; padding: 40px 0; font-size: 14px; }
.erd-list {
  margin: 0 12px; background: #fff; border-radius: 12px; overflow: hidden;
  box-shadow: 0 4px 12px rgba(255,111,111,.06);
}
.erd-row {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 12px; border-bottom: 1px solid #f3f3f3;
}
.erd-row:last-child { border-bottom: none; }
.erd-left { flex: 1; min-width: 0; }
.erd-kind {
  display: inline-block; padding: 1px 6px; border-radius: 4px;
  font-size: 10px; background: #f3f3f3; color: #666; margin-bottom: 4px;
}
.erd-kind.kind-commission { background: #eef2ff; color: #6366f1; }
.erd-kind.kind-cash { background: #fff7ed; color: #f59e0b; }
.erd-kind.kind-withdraw { background: #fef2f2; color: #ef4444; }
.erd-kind.kind-wallet { background: #ecfdf5; color: #10b981; }
.erd-kind.kind-recharge { background: #fdf2f8; color: #ec4899; }
.erd-title { font-size: 14px; font-weight: 700; color: #333; }
.erd-time { margin-top: 3px; font-size: 11px; color: #999; }
.erd-remark { margin-top: 2px; font-size: 11px; color: #aaa; }
.erd-amount { flex-shrink: 0; font-size: 14px; font-weight: 800; color: #FF6F6F; }
.erd-proofs { margin: 14px 12px 0; }
.erd-proof-title { font-size: 13px; font-weight: 700; color: #333; margin-bottom: 8px; }
.erd-proof-grid { display: flex; flex-wrap: wrap; gap: 8px; }
.erd-proof-img {
  width: 72px; height: 72px; border-radius: 8px;
  object-fit: cover; background: #f3f3f3; cursor: pointer;
}

/* ???????????? loveb/records? */
.lr-page { min-height: 100vh; background: #f5f5f5; padding-bottom: 24px; }
.lr-header {
  position: relative;
  background: linear-gradient(135deg, #fe803b, #fe3553);
  color: #fff;
  padding: 12px 12px 28px;
  text-align: center;
}
.lr-back {
  position: absolute; left: 8px; bottom: 24px;
  font-size: 28px; line-height: 1; padding: 0 8px;
  color: #fff; background: transparent; border: none;
}
.lr-title { font-size: 18px; font-weight: 700; padding-top: 4px; }
.lr-balance-card {
  margin: -14px 12px 12px;
  background: #fff; border-radius: 10px;
  padding: 16px;
  box-shadow: 0 4px 12px rgba(254, 53, 83, 0.12);
}
.lr-balance-label { font-size: 13px; color: #999; }
.lr-balance-num {
  margin-top: 6px; font-size: 28px; font-weight: 800;
  color: #fe803b; line-height: 1.2;
}
.lr-section { padding: 0 12px; }
.lr-section-title {
  font-size: 15px; font-weight: 700; color: #333; margin-bottom: 8px;
}
.lr-list {
  background: #fff; border-radius: 10px; overflow: hidden;
}
.lr-item {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 10px; padding: 14px 12px;
  border-bottom: 1px solid #f3f3f3;
}
.lr-item:last-child { border-bottom: none; }
.lr-main { flex: 1; min-width: 0; }
.lr-item-title { font-size: 15px; font-weight: 600; color: #333; }
.lr-remark {
  margin-top: 4px; font-size: 12px; color: #999;
  line-height: 1.4; word-break: break-all;
}
.lr-time { margin-top: 4px; font-size: 11px; color: #bbb; }
.lr-side { flex-shrink: 0; text-align: right; }
.lr-amount { font-size: 17px; font-weight: 800; line-height: 1.2; }
.lr-amount.income { color: #16a34a; }
.lr-amount.expense { color: #ef4444; }
.lr-after { margin-top: 4px; font-size: 11px; color: #aaa; }
.lr-state { text-align: center; color: #999; padding: 40px 0; font-size: 14px; }
.lr-state.small { padding: 12px 0 20px; font-size: 12px; }

/* ??????????? profile/ranks? */
.rk-page { min-height: 100vh; background: #f7f7f8; padding-bottom: 24px; }
.rk-hero {
  background: linear-gradient(180deg, #FF6F6F 0%, #ff8a8a 55%, #f7f7f8 100%);
  padding: 0 14px 14px; color: #fff;
}
.rk-nav {
  position: relative; height: 44px;
  display: flex; align-items: center; justify-content: center;
}
.rk-back {
  position: absolute; left: 0; font-size: 28px; line-height: 1;
  padding: 0 8px; color: #fff; background: transparent; border: none;
}
.rk-nav-title { font-size: 17px; font-weight: 700; }
.rk-tip { margin: 4px 0 0; font-size: 12px; opacity: .92; line-height: 1.4; }
.rk-state { text-align: center; color: #999; padding: 40px 12px; font-size: 14px; }
.rk-boards { margin: -4px 12px 0; }
.rk-board {
  display: block; width: 100%; text-align: left;
  background: #fff; border: none; border-radius: 12px;
  padding: 12px; margin-bottom: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,.04); cursor: pointer;
}
.rk-board-head {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 10px; margin-bottom: 8px;
}
.rk-board-title { font-size: 15px; font-weight: 700; color: #222; }
.rk-board-desc { margin-top: 2px; font-size: 11px; color: #999; }
.rk-board-value { text-align: right; flex-shrink: 0; }
.rk-bv-num { display: block; font-size: 17px; font-weight: 800; color: #FF6F6F; line-height: 1.1; }
.rk-bv-unit { display: block; margin-top: 1px; font-size: 10px; color: #999; }
.rk-tops {
  background: #fafafa; border-radius: 8px; padding: 4px 6px;
}
.rk-top-row {
  display: flex; align-items: center; gap: 8px;
  padding: 6px 2px;
}
.rk-rank {
  width: 20px; text-align: center;
  font-size: 12px; font-weight: 700; color: #999; flex-shrink: 0;
}
.rk-rank.top1 { color: #f5a623; }
.rk-rank.top2 { color: #9ca3af; }
.rk-rank.top3 { color: #cd7f32; }
.rk-avatar {
  width: 28px; height: 28px; border-radius: 50%;
  object-fit: cover; background: #eee; flex-shrink: 0;
}
.rk-name {
  flex: 1; min-width: 0; font-size: 13px; color: #333;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.rk-side {
  font-size: 11px; color: #FF6F6F; font-weight: 600; flex-shrink: 0;
}
.rk-tops-empty {
  padding: 12px; text-align: center; color: #bbb; font-size: 12px;
  background: #fafafa; border-radius: 8px;
}
.rk-more {
  margin-top: 8px; text-align: right;
  font-size: 12px; color: #FF6F6F; font-weight: 600;
}

/* ?????????? mutual/index? */
.mx-page { min-height: 100vh; background: #f5f5f5; padding-bottom: 24px; }
.mx-nav {
  display: flex; align-items: center; height: 44px;
  padding: 0 12px; background: #fff;
}
.mx-back {
  width: 28px; font-size: 28px; line-height: 1;
  color: #333; background: transparent; border: none; padding: 0;
}
.mx-nav-title {
  flex: 1; text-align: center;
  font-size: 17px; font-weight: 700; color: #222;
}
.mx-nav-ph { width: 28px; }
.mx-hero {
  margin: 8px 12px 0; padding: 14px;
  border-radius: 12px;
  background: linear-gradient(135deg, #ff6f6f, #ff9a9a);
  color: #fff;
}
.mx-hero-title { font-size: 16px; font-weight: 800; }
.mx-hero-desc {
  margin-top: 6px; font-size: 12px; opacity: .92; line-height: 1.5;
}
.mx-tabs {
  display: flex; gap: 8px; padding: 10px 12px 4px;
}
.mx-tab {
  flex: 1; text-align: center; padding: 8px 0;
  border: none; border-radius: 999px;
  font-size: 13px; color: #666; background: #fff; cursor: pointer;
}
.mx-tab.active {
  color: #fff; font-weight: 700;
  background: linear-gradient(135deg, #ff6f6f, #ff8d8d);
}
.mx-card {
  margin: 8px 12px 0; padding: 12px;
  background: #fff; border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
}
.mx-card-main { display: flex; gap: 10px; cursor: pointer; }
.mx-avatar {
  width: 60px; height: 60px; border-radius: 10px;
  object-fit: cover; background: #eee; flex-shrink: 0;
}
.mx-body { flex: 1; min-width: 0; }
.mx-name-row {
  display: flex; align-items: center; flex-wrap: wrap; gap: 4px;
}
.mx-name { font-size: 15px; font-weight: 700; color: #222; }
.mx-gender { font-size: 12px; }
.mx-gender.male { color: #5b9df5; }
.mx-gender.female { color: #ff6f6f; }
.mx-badge {
  font-size: 10px; padding: 1px 6px; border-radius: 4px; font-weight: 600;
}
.mx-badge.match { color: #fff; background: #ff6f6f; }
.mx-badge.selected { color: #ff6f6f; background: #fff0f0; }
.mx-sub { margin-top: 4px; font-size: 12px; color: #888; }
.mx-intro {
  margin-top: 6px; font-size: 12px; color: #666; line-height: 1.45;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden;
}
.mx-actions {
  margin-top: 10px; display: flex; justify-content: flex-end; gap: 8px;
}
.mx-btn {
  min-width: 84px; height: 32px; line-height: 32px;
  text-align: center; border-radius: 999px; border: none;
  font-size: 13px; font-weight: 700; cursor: pointer; padding: 0 12px;
}
.mx-btn:disabled { opacity: .65; cursor: default; }
.mx-btn.select {
  color: #fff; background: linear-gradient(135deg, #ff6f6f, #ff8d8d);
}
.mx-btn.done { color: #999; background: #f2f2f2; font-weight: 600; }
.mx-btn.chat {
  color: #fff; background: linear-gradient(135deg, #5b9df5, #7eb6ff);
}
.mx-btn.cancel {
  color: #666; background: #fff; border: 1px solid #ddd; font-weight: 600;
  box-sizing: border-box;
}
.mx-tip { text-align: center; color: #999; font-size: 12px; padding: 14px 0; }
.mx-empty { padding: 48px 20px; text-align: center; }
.mx-empty-title { font-size: 15px; font-weight: 700; color: #333; }
.mx-empty-desc { margin-top: 6px; font-size: 12px; color: #999; line-height: 1.5; }

/* ????????? profile/blacklist? */
.bl-page { min-height: 100vh; background: #f7f7f8; padding-bottom: 24px; }
.bl-hero {
  background: linear-gradient(180deg, #FF6F6F 0%, #ff8a8a 55%, #f7f7f8 100%);
  padding: 0 14px 14px; color: #fff;
}
.bl-nav {
  position: relative; height: 44px;
  display: flex; align-items: center; justify-content: center;
}
.bl-back {
  position: absolute; left: 0; font-size: 28px; line-height: 1;
  padding: 0 8px; color: #fff; background: transparent; border: none;
}
.bl-nav-title { font-size: 17px; font-weight: 700; }
.bl-tabs { display: flex; gap: 8px; margin-top: 6px; }
.bl-tab {
  flex: 1; text-align: center; padding: 9px 6px;
  font-size: 12px; line-height: 1.3; border-radius: 8px;
  background: rgba(255,255,255,.16); color: rgba(255,255,255,.88);
  border: 1px solid rgba(255,255,255,.22); cursor: pointer;
}
.bl-tab.on {
  background: #fff; color: #FF6F6F; font-weight: 700; border-color: #fff;
}
.bl-stats { display: flex; margin-top: 8px; }
.bl-stat {
  flex: 1; text-align: center;
  background: rgba(255,255,255,.18); border-radius: 10px; padding: 10px 8px;
}
.bl-num { display: block; font-size: 18px; font-weight: 800; }
.bl-label { display: block; margin-top: 2px; font-size: 11px; opacity: .9; }
.bl-tip {
  margin: 8px 0 0; font-size: 12px; opacity: .9; line-height: 1.45;
}
.bl-state { text-align: center; color: #999; padding: 48px 0; font-size: 14px; }
.bl-list {
  margin: 0 12px; background: #fff; border-radius: 12px; overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,.04);
}
.bl-row {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 14px; border-bottom: 1px solid #f3f4f6;
}
.bl-row:last-child { border-bottom: none; }
.bl-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  object-fit: cover; background: #eee; flex-shrink: 0; cursor: pointer;
}
.bl-main { flex: 1; min-width: 0; cursor: pointer; }
.bl-name { font-size: 15px; font-weight: 600; color: #222; }
.bl-sub { margin-top: 3px; font-size: 11px; color: #999; }
.bl-action {
  flex-shrink: 0; padding: 6px 12px;
  font-size: 12px; color: #FF6F6F;
  border: 1px solid #FF6F6F; border-radius: 999px;
  background: #fff; cursor: pointer;
}
.bl-action.apply {
  color: #fff; background: #FF6F6F; border-color: #FF6F6F;
}
.bl-tag {
  flex-shrink: 0; font-size: 11px; color: #999;
  padding: 6px 10px; border: 1px solid #ddd; border-radius: 999px;
}
.bl-tag.pending {
  color: #b45309; border-color: #f59e0b; background: #fffbeb;
}

/* ?????????? academy/index? */
.ac-page { min-height: 100vh; background: #f7f4f5; padding-bottom: 64px; }
.ac-nav {
  display: flex; align-items: center; height: 44px;
  padding: 0 12px; background: #fff; position: sticky; top: 0; z-index: 20;
}
.ac-back {
  width: 28px; font-size: 28px; line-height: 1;
  color: #333; background: transparent; border: none; padding: 0;
}
.ac-nav-title { flex: 1; text-align: center; font-size: 17px; font-weight: 700; color: #222; }
.ac-banner { position: relative; height: 160px; overflow: hidden; background: #f0e6e8; }
.ac-banner-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ac-banner-title {
  position: absolute; left: 14px; bottom: 12px; right: 14px;
  color: #fff; font-size: 15px; font-weight: 700;
  text-shadow: 0 1px 4px rgba(0,0,0,.35);
}
.ac-head {
  margin: 12px; padding: 18px 16px;
  border-radius: 14px; color: #fff;
  background: linear-gradient(135deg, #ff7a8a, #ff6f6f 55%, #ff9a9a);
  position: relative; overflow: hidden;
}
.ac-kicker { font-size: 11px; opacity: .9; }
.ac-head-title { margin-top: 4px; font-size: 20px; font-weight: 800; }
.ac-head-sub { margin-top: 4px; font-size: 12px; opacity: .9; line-height: 1.4; }
.ac-list-wrap { margin: 0 12px 12px; }
.ac-list-wrap.under { margin-top: -10px; position: relative; z-index: 2; }
.ac-sec-head { display: flex; align-items: center; gap: 6px; margin: 10px 0; }
.ac-sec-bar {
  width: 4px; height: 14px; border-radius: 4px;
  background: linear-gradient(180deg, #ff8a9a, #ff6f6f);
}
.ac-sec-title { font-size: 15px; font-weight: 800; color: #222; }
.ac-post {
  display: flex; gap: 10px; width: 100%; text-align: left;
  margin-bottom: 10px; padding: 10px;
  border: 1px solid rgba(255,111,111,.18); border-radius: 12px;
  background: #fff; box-shadow: 0 4px 12px rgba(255,111,111,.06);
  cursor: pointer;
}
.ac-thumb {
  width: 72px; height: 72px; border-radius: 10px;
  object-fit: cover; background: #f7eef0; flex-shrink: 0;
}
.ac-thumb.fallback {
  display: flex; align-items: center; justify-content: center;
  color: #ccc; font-size: 12px;
}
.ac-post-body { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.ac-post-title-row { display: flex; align-items: flex-start; gap: 6px; }
.ac-post-title {
  flex: 1; font-size: 14px; font-weight: 700; color: #222;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.ac-post-views { flex-shrink: 0; font-size: 10px; color: #bbb; }
.ac-post-summary {
  margin-top: 4px; font-size: 12px; color: #888; line-height: 1.4;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.ac-post-meta {
  margin-top: auto; padding-top: 6px;
  display: flex; align-items: center; gap: 8px;
}
.ac-post-tag {
  font-size: 10px; padding: 1px 6px; border-radius: 4px;
  color: #FF6F6F; background: #fff0f0; font-weight: 600;
}
.ac-post-date { font-size: 10px; color: #bbb; }
.ac-empty { text-align: center; color: #999; padding: 40px 12px; }
.ac-empty-title { font-size: 15px; font-weight: 700; color: #333; }
.ac-empty-sub { margin-top: 4px; font-size: 12px; color: #999; }
.ac-sheet {
  margin: -8px 12px 12px; padding: 14px 12px;
  background: #fff; border-radius: 14px;
  box-shadow: 0 6px 16px rgba(40,20,30,.06);
}
.ac-tile {
  display: flex; align-items: center; gap: 10px; width: 100%;
  padding: 12px 4px; border: none; border-bottom: 1px solid #f3f3f3;
  background: transparent; text-align: left; cursor: pointer;
}
.ac-tile:last-child { border-bottom: none; }
.ac-tile-icon {
  width: 40px; height: 40px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 15px; font-weight: 800; flex-shrink: 0;
}
.ac-tile-icon.pink { background: linear-gradient(135deg, #ff8e8e, #ff6f6f); }
.ac-tile-icon.coral { background: linear-gradient(135deg, #ffb08a, #ff7a5c); }
.ac-tile-icon.rose { background: linear-gradient(135deg, #f9a8d4, #ec4899); }
.ac-tile-copy { flex: 1; min-width: 0; }
.ac-tile-title { display: block; font-size: 14px; font-weight: 700; color: #222; }
.ac-tile-sub { display: block; margin-top: 2px; font-size: 11px; color: #999; }
.ac-tile-go { color: #ccc; font-size: 18px; }
.ac-mine-user { display: flex; align-items: center; gap: 10px; }
.ac-mine-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  object-fit: cover; background: rgba(255,255,255,.3);
}
.ac-mine-stats {
  display: flex; margin-bottom: 8px; padding-bottom: 10px;
  border-bottom: 1px solid #f3f3f3;
}
.ac-mine-stat { flex: 1; text-align: center; }
.ac-mine-stat .n { display: block; font-size: 16px; font-weight: 800; color: #FF6F6F; }
.ac-mine-stat .l { display: block; margin-top: 2px; font-size: 11px; color: #999; }
.ac-tabbar {
  position: fixed; z-index: 30;
  left: 50%; bottom: 0; transform: translateX(-50%);
  width: 100%; max-width: 430px;
  display: flex; background: #fff;
  border-top: 1px solid #f0e6e8;
  padding-bottom: env(safe-area-inset-bottom);
}
.ac-tab {
  flex: 1; height: 50px; border: none; background: transparent;
  font-size: 12px; color: #999; cursor: pointer;
}
.ac-tab.on { color: #FF6F6F; font-weight: 700; }

/* ?? / ?????????? pages/legal/doc? */
.ld-page {
  min-height: 100vh;
  background: #f7f4f5;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}
.ld-nav {
  display: flex;
  align-items: center;
  height: 44px;
  padding: 0 12px;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 20;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.04);
}
.ld-back {
  width: 32px;
  font-size: 28px;
  line-height: 1;
  color: #333;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
}
.ld-nav-title {
  flex: 1;
  text-align: center;
  font-size: 17px;
  font-weight: 700;
  color: #222;
}
.ld-nav-ph { width: 32px; }
.ld-tabs {
  display: flex;
  margin: 10px 14px 0;
  padding: 4px;
  background: #fff;
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(255, 111, 111, 0.06);
}
.ld-tab {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 13px;
  color: #888;
  padding: 10px 0;
  border-radius: 999px;
  cursor: pointer;
}
.ld-tab.on {
  color: #fff;
  font-weight: 700;
  background: linear-gradient(135deg, #ff8a9a, #ff6f6f);
}
.ld-scroll {
  flex: 1;
  overflow-y: auto;
  padding: 12px 14px 24px;
  -webkit-overflow-scrolling: touch;
}
.ld-page.has-bar .ld-scroll { padding-bottom: 96px; }
.ld-hero {
  background: linear-gradient(135deg, #ff8a9a, #ff6f6f);
  border-radius: 12px;
  padding: 18px 16px;
  margin-bottom: 12px;
}
.ld-hero-title {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
}
.ld-hero-sub {
  margin-top: 6px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
}
.ld-section {
  background: #fff;
  border-radius: 10px;
  padding: 14px;
  margin-bottom: 10px;
}
.ld-sec-title {
  font-size: 15px;
  font-weight: 800;
  color: #222;
  margin-bottom: 8px;
}
.ld-sec-p {
  margin: 0 0 8px;
  font-size: 13px;
  color: #555;
  line-height: 1.7;
}
.ld-sec-p:last-child { margin-bottom: 0; }
.ld-foot-space { height: 20px; }
.ld-agree-bar {
  position: fixed;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 100%;
  max-width: 430px;
  z-index: 30;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.06);
  box-sizing: border-box;
}
.ld-agree-btn {
  width: 100%;
  height: 44px;
  border: none;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #ff7a9a, #ff5a7a);
  cursor: pointer;
}

/* ???? ?????? / ???? / ?????? ???? */
.bx-legal-mask {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,.45);
  display: flex; align-items: center; justify-content: center;
  padding: 24px; box-sizing: border-box;
}
.bx-legal-panel {
  width: 100%; max-width: 340px;
  background: #fff; border-radius: 16px; padding: 20px 18px 16px;
  box-shadow: 0 12px 40px rgba(0,0,0,.18);
}
.bx-legal-title { font-size: 17px; font-weight: 800; color: #222; text-align: center; }
.bx-legal-body { margin-top: 12px; font-size: 13px; color: #666; line-height: 1.65; }
.bx-legal-links { margin-top: 10px; display: flex; gap: 12px; justify-content: center; }
.bx-legal-link {
  border: none; background: transparent; color: #FF6F6F;
  font-size: 13px; font-weight: 600; cursor: pointer; padding: 0;
}
.bx-legal-actions { margin-top: 16px; display: flex; gap: 10px; }
.bx-legal-btn {
  flex: 1; height: 40px; border: none; border-radius: 999px;
  font-size: 14px; font-weight: 700; cursor: pointer;
}
.bx-legal-btn.ghost { background: #f5f0f1; color: #666; }
.bx-legal-btn.primary { background: linear-gradient(135deg,#ff8a9a,#ff6f6f); color: #fff; }

.ad-page, .ap-page, .am-page, .ams-page {
  min-height: 100vh; background: linear-gradient(180deg,#ffe8ec 0%,#f7f2f3 28%,#f5f1f2 100%);
}
.ad-nav, .ap-nav, .am-nav, .ams-nav {
  display: flex; align-items: center; height: 44px; padding: 0 12px;
  background: rgba(255,246,248,.92); position: sticky; top: 0; z-index: 20;
}
.ad-back, .ap-back, .am-back, .ams-back {
  width: 32px; font-size: 28px; line-height: 1; color: #333;
  background: transparent; border: none; padding: 0; cursor: pointer;
}
.ad-nav-title, .ap-nav-title, .am-nav-title, .ams-nav-title {
  flex: 1; text-align: center; font-size: 17px; font-weight: 700; color: #1f1f1f;
}
.ad-nav-ph, .ap-nav-ph, .am-nav-ph, .ams-nav-ph { width: 32px; }
.ams-nav-action {
  border: none; background: transparent; color: #FF6F6F;
  font-size: 13px; font-weight: 600; cursor: pointer; min-width: 40px;
}
.ad-scroll, .ap-scroll, .am-scroll, .ams-scroll { padding: 12px 14px 28px; }
.ad-empty, .am-empty, .ams-empty { text-align: center; color: #999; padding: 60px 12px; }
.ad-empty-title, .am-empty-title, .ams-empty-title { font-size: 15px; font-weight: 700; color: #666; }
.am-empty-sub, .ams-empty-sub { margin-top: 6px; font-size: 12px; color: #aaa; }
.ad-hero {
  overflow: hidden; border-radius: 14px; background: #fff;
  box-shadow: 0 6px 16px rgba(40,20,30,.06);
}
.ad-cover { width: 100%; height: 150px; object-fit: cover; display: block; background: #eee; }
.ad-cover-fallback {
  height: 110px; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(145deg,#ff9aa8,#ff6f6f); color: #fff; font-size: 20px; font-weight: 800; letter-spacing: 4px;
}
.ad-hero-body { padding: 14px; }
.ad-hero-top { display: flex; gap: 10px; align-items: flex-start; }
.ad-hero-main { flex: 1; min-width: 0; }
.ad-cat {
  display: inline-block; padding: 2px 8px; border-radius: 999px;
  font-size: 10px; color: #FF6F6F; background: #fff0f2;
}
.ad-title { margin-top: 8px; font-size: 20px; font-weight: 800; color: #1f1f1f; line-height: 1.4; }
.ad-meta { margin-top: 6px; font-size: 11px; color: #aaa; }
.ad-pending { margin-top: 6px; font-size: 11px; color: #f59e0b; }
.ad-edit {
  flex-shrink: 0; margin-top: 4px; padding: 6px 14px; border-radius: 999px;
  font-size: 12px; font-weight: 600; color: #ff5a7a; background: #fff0f3;
  border: 1px solid rgba(255,90,122,.35); cursor: pointer;
}
.ad-body {
  margin-top: 10px; background: #fff; border-radius: 14px; padding: 16px 14px;
  box-shadow: 0 6px 16px rgba(40,20,30,.05);
}
.ad-summary { font-size: 14px; color: #666; line-height: 1.7; }
.ad-divider { height: 1px; margin: 14px 0; background: #f0eaec; }
.ad-content { font-size: 14px; color: #444; line-height: 1.85; word-break: break-word; }

.ap-card {
  margin-bottom: 10px; padding: 12px 13px; border-radius: 11px; background: #fff;
  box-shadow: 0 4px 12px rgba(40,20,30,.04);
}
.ap-label { font-size: 12px; font-weight: 700; color: #6b6366; margin-bottom: 8px; }
.ap-cover-box {
  width: 110px; height: 110px; border-radius: 10px; overflow: hidden;
  border: none; padding: 0; background: #f7eef0; cursor: pointer;
}
.ap-cover-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ap-cover-empty {
  width: 100%; height: 100%; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  background: linear-gradient(160deg,#ffe4e8,#ffd0d6);
}
.ap-cover-plus { font-size: 24px; color: #FF6F6F; line-height: 1; }
.ap-cover-hint { margin-top: 4px; font-size: 11px; color: #FF6F6F; }
.ap-file { display: none; }
.ap-seg { display: flex; gap: 8px; }
.ap-seg-item {
  flex: 1; border: none; padding: 10px 0; border-radius: 8px;
  font-size: 13px; color: #8a8285; background: #f6f0f2; cursor: pointer;
}
.ap-seg-item.on { color: #fff; font-weight: 700; background: linear-gradient(145deg,#ff8a9a,#ff6f6f); }
.ap-input, .ap-textarea {
  width: 100%; border: none; outline: none; font-size: 14px; color: #2a2426;
  background: transparent; box-sizing: border-box;
}
.ap-textarea { min-height: 120px; line-height: 1.55; resize: vertical; }
.ap-submit {
  width: 100%; height: 44px; margin: 8px 0 20px; border: none; border-radius: 999px;
  font-size: 15px; font-weight: 700; color: #fff;
  background: linear-gradient(145deg,#ff8a9a,#ff6f6f); cursor: pointer;
}
.ap-submit:disabled { opacity: .6; cursor: not-allowed; }

.am-item {
  display: flex; gap: 10px; width: 100%; text-align: left;
  margin-bottom: 10px; padding: 10px; border: none; border-radius: 11px;
  background: #fff; box-shadow: 0 4px 12px rgba(40,20,30,.04); cursor: pointer;
}
.am-thumb {
  width: 60px; height: 60px; border-radius: 8px; object-fit: cover;
  flex-shrink: 0; background: #f3e9eb;
}
.am-thumb.empty {
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; background: linear-gradient(145deg,#ff9aa8,#ff6f6f);
}
.am-body { flex: 1; min-width: 0; }
.am-title {
  font-size: 14px; font-weight: 600; color: #2a2426; line-height: 1.4;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.am-meta { display: flex; align-items: center; gap: 6px; margin-top: 6px; }
.am-tag {
  padding: 1px 6px; border-radius: 999px; font-size: 10px;
  color: #FF6F6F; background: rgba(255,111,111,.1);
}
.am-status { font-size: 11px; color: #9a9094; }
.am-status.st-0, .am-status.st-pending { color: #f59e0b; }
.am-status.st-1 { color: #22c55e; }
.am-status.st-2 { color: #ef4444; }
.am-reason { margin-top: 4px; font-size: 11px; color: #ef4444; }
.am-edit { display: inline-block; margin-top: 6px; font-size: 11px; color: #ff5a7a; }
.am-go-btn {
  margin-top: 14px; padding: 8px 24px; border: none; border-radius: 999px;
  background: linear-gradient(145deg,#ff8a9a,#ff6f6f); color: #fff; font-size: 14px; font-weight: 700; cursor: pointer;
}

.ams-hint {
  margin-bottom: 10px; padding: 8px 10px; border-radius: 8px;
  background: rgba(255,111,111,.08); font-size: 11px; color: #b07078;
}
.ams-card {
  display: block; width: 100%; text-align: left; margin-bottom: 9px;
  padding: 12px 13px; border: 1px solid transparent; border-radius: 11px;
  background: #fff; box-shadow: 0 4px 12px rgba(40,20,30,.04); cursor: pointer;
}
.ams-card.unread { border-color: rgba(255,111,111,.28); }
.ams-card-top { display: flex; align-items: center; gap: 6px; }
.ams-card-title { flex: 1; font-size: 14px; font-weight: 700; color: #2a2426; }
.ams-dot { width: 7px; height: 7px; border-radius: 50%; background: #FF6F6F; flex-shrink: 0; }
.ams-card-content { margin-top: 6px; font-size: 12px; color: #7a7275; line-height: 1.55; }
.ams-card-time { margin-top: 8px; font-size: 10px; color: #c0b6b9; }

.gf-page { min-height: 100vh; background: #f6f2f3; padding-bottom: 32px; }
.gf-hero {
  background: linear-gradient(160deg,#ff7a8a 0%,#FF6F6F 50%,#f25268 100%);
  color: #fff; padding: 8px 14px 18px;
}
.gf-hero.slim { padding-bottom: 28px; }
.gf-hero-nav { position: relative; height: 36px; display: flex; align-items: center; justify-content: center; }
.gf-back {
  position: absolute; left: 0; font-size: 28px; line-height: 1;
  border: none; background: transparent; color: #fff; padding: 0 6px; cursor: pointer;
}
.gf-nav-title { font-size: 17px; font-weight: 700; }
.gf-hero-tip { margin-top: 4px; font-size: 12px; opacity: .9; line-height: 1.5; }
.gf-stats { display: flex; gap: 6px; margin-top: 12px; }
.gf-hs {
  flex: 1; background: rgba(255,255,255,.16); border-radius: 8px;
  padding: 9px 6px; text-align: center;
}
.gf-hs .n { display: block; font-size: 15px; font-weight: 800; }
.gf-hs .l { display: block; margin-top: 3px; font-size: 10px; opacity: .85; }
.gf-loading { text-align: center; padding: 40px; color: #999; }
.gf-panel {
  margin: 12px 12px 0; background: #fff; border-radius: 12px; padding: 14px 12px;
  box-shadow: 0 4px 12px rgba(180,80,100,.06);
}
.gf-panel.claim-panel { margin-top: -12px; text-align: center; }
.gf-sec-title { font-size: 15px; font-weight: 700; color: #333; margin-bottom: 10px; }
.gf-type {
  display: flex; align-items: center; width: 100%; text-align: left;
  padding: 11px 8px; border: none; border-radius: 8px; background: #faf7f8;
  margin-bottom: 7px; cursor: pointer;
}
.gf-type.on { background: #fff0f2; outline: 1px solid rgba(255,111,111,.35); }
.gf-type-icon { font-size: 22px; margin-right: 8px; }
.gf-type-body { flex: 1; min-width: 0; }
.gf-type-title { display: block; font-size: 14px; font-weight: 700; color: #333; }
.gf-type-desc { display: block; margin-top: 2px; font-size: 11px; color: #999; }
.gf-type-go { color: #FF6F6F; font-size: 12px; font-weight: 600; }
.gf-tip-title { font-size: 13px; font-weight: 700; color: #333; margin-bottom: 6px; }
.gf-tip-line { font-size: 12px; color: #888; line-height: 1.7; }
.gf-share-title { font-size: 15px; font-weight: 700; color: #333; }
.gf-share-desc { margin-top: 4px; font-size: 12px; color: #999; }
.gf-poster-wrap {
  margin-top: 12px; border-radius: 12px; overflow: hidden; background: #f7f2f3;
  min-height: 200px; display: flex; align-items: center; justify-content: center;
}
.gf-poster { width: 100%; display: block; }
.gf-poster-loading { padding: 40px 12px; color: #999; font-size: 13px; }
.gf-actions { margin-top: 12px; display: flex; flex-direction: column; gap: 8px; }
.gf-btn {
  height: 42px; border: none; border-radius: 999px; font-size: 14px; font-weight: 600; cursor: pointer;
}
.gf-btn.primary { background: linear-gradient(90deg,#ff7a8a,#FF6F6F); color: #fff; }
.gf-btn.ghost { background: #f6f2f3; color: #666; }
.gf-btn:disabled { opacity: .6; }
.gf-err { color: #c44; font-size: 14px; margin-bottom: 16px; }
.gf-ok-icon {
  width: 48px; height: 48px; line-height: 48px; margin: 0 auto 10px;
  border-radius: 50%; background: #e8f8ef; color: #10b981; font-size: 24px; font-weight: 700;
}
.gf-ok-title { font-size: 16px; font-weight: 700; color: #333; }
.gf-ok-desc { margin: 6px 0 18px; font-size: 11px; color: #999; }
.gf-gift-label { font-size: 12px; color: #999; }
.gf-gift-title { margin-top: 6px; font-size: 18px; font-weight: 800; color: #333; }
.gf-gift-desc { margin-top: 6px; font-size: 12px; color: #888; line-height: 1.5; }
.gf-gift-amount { margin: 18px 0; font-size: 28px; font-weight: 800; color: #FF6F6F; }

/* ????? */
.om-page { min-height: 100vh; background: #f7f7f8; padding-bottom: 24px; }
.om-hero {
  background: linear-gradient(180deg, #FF6F6F 0%, #ff8a8a 55%, #f7f7f8 100%);
  padding: 12px 14px 16px; color: #fff;
}
.om-nav { position: relative; height: 36px; display: flex; align-items: center; justify-content: center; }
.om-back {
  position: absolute; left: 0; border: 0; background: transparent; color: #fff;
  font-size: 28px; line-height: 1; padding: 0 8px; cursor: pointer;
}
.om-nav-title { font-size: 17px; font-weight: 700; }
.om-stat {
  margin-top: 8px; display: inline-flex; flex-direction: column;
  background: rgba(255,255,255,.18); border-radius: 10px; padding: 10px 16px; min-width: 100px;
}
.om-stat b { font-size: 20px; font-weight: 800; line-height: 1.2; }
.om-stat span { font-size: 11px; opacity: .92; }
.om-tip { margin: 10px 0 0; font-size: 13px; font-weight: 600; opacity: 1; text-shadow: 0 1px 4px rgba(120,30,40,.35); line-height: 1.45; }
.om-state { text-align: center; color: #999; padding: 48px 0; font-size: 14px; }
.om-list { padding: 4px 12px 16px; }
.om-card {
  display: flex; gap: 12px; background: #fff; border-radius: 12px; padding: 12px;
  margin-bottom: 10px; box-shadow: 0 2px 8px rgba(80,20,30,.04);
}
.om-avatar-wrap {
  position: relative; width: 60px; height: 60px; border-radius: 12px; overflow: hidden;
  flex-shrink: 0; background: #f0e6e8;
}
.om-avatar {
  width: 100%; height: 100%; object-fit: cover; display: block;
  filter: blur(4px); transform: scale(1.12);
}
.om-stamp {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: rgba(40,20,24,.42);
}
.om-stamp span {
  color: #fff; font-size: 13px; font-weight: 800; letter-spacing: 1px;
  text-shadow: 0 1px 4px rgba(0,0,0,.45);
}
.om-main { flex: 1; min-width: 0; }
.om-name-row { display: flex; align-items: baseline; gap: 8px; }
.om-name-row strong {
  font-size: 15px; color: #2c2224; max-width: 140px; overflow: hidden;
  text-overflow: ellipsis; white-space: nowrap;
}
.om-uid { font-size: 11px; color: #b09096; font-weight: 600; }
.om-meta { margin-top: 4px; font-size: 12px; color: #666; }
.om-addr {
  margin-top: 2px; font-size: 12px; color: #888; overflow: hidden;
  text-overflow: ellipsis; white-space: nowrap;
}
.om-time { margin-top: 4px; font-size: 11px; color: #b09096; }
.om-more, .om-foot {
  display: block; width: 100%; text-align: center; color: #bbb; font-size: 13px;
  padding: 12px 0 4px; border: 0; background: transparent; cursor: pointer;
}
