:root {
  --ink: #3a2b4d;
  --ink-soft: #5a4a6a;
  --muted: #8b7fa3;
  --paper: #fdf4fb;
  --panel: #ffffff;
  --line: #f3dcef;
  --sidebar: #7a54c4;
  --sidebar-soft: #8d64d4;
  --sidebar-text: #fff8fd;
  --sidebar-muted: #e6d6fa;
  --coral: #ff7eb3;
  --coral-dark: #f2518f;
  --teal: #5cc6ff;
  --teal-dark: #2fa4dd;
  --mint: #ddf6ee;
  --gold: #f4b531;
  --gold-soft: #fff4d5;
  --danger: #ff5a7a;
  --shadow: 0 12px 30px rgba(130, 95, 170, 0.13);
  --radius: 16px;
  font-family: "LXGW WenKai Screen", "PingFang SC", "Microsoft YaHei", "Noto Sans SC", sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--paper);
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  background: var(--paper);
}

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

button {
  cursor: pointer;
}

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

a {
  color: inherit;
}

.app-root {
  min-height: 100vh;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.auth-shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(340px, 0.82fr) minmax(420px, 1fr);
  background: var(--panel);
}

.auth-aside {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 54px clamp(32px, 6vw, 92px);
  overflow: hidden;
  color: var(--sidebar-text);
  background: var(--sidebar);
}

.brand-lockup {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  color: var(--sidebar);
  background: var(--gold);
  border-radius: 50%;
  font-weight: 800;
  font-size: 18px;
}

.brand-name {
  font-size: 19px;
  font-weight: 800;
  letter-spacing: 0;
}

.auth-copy {
  position: relative;
  z-index: 1;
  max-width: 460px;
  margin: auto 0;
  padding: 72px 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.auth-aside .eyebrow {
  color: #e7c667;
}

.auth-copy h1 {
  max-width: 520px;
  margin: 0;
  font-size: 54px;
  line-height: 1.08;
  letter-spacing: 0;
}

.auth-copy p {
  max-width: 390px;
  margin: 24px 0 0;
  color: var(--sidebar-muted);
  line-height: 1.8;
}

.auth-notes {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  max-width: 410px;
  color: var(--sidebar-muted);
  font-size: 13px;
}

.auth-note {
  display: flex;
  align-items: center;
  gap: 10px;
}

.auth-note strong {
  color: var(--sidebar-text);
}

.auth-note-mark {
  width: 24px;
  height: 24px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 24px;
  color: var(--sidebar);
  background: var(--mint);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 800;
}

.auth-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px clamp(26px, 7vw, 120px);
  background: #fbfcfa;
}

.auth-card {
  width: min(100%, 444px);
}

.auth-card h2 {
  margin: 0;
  font-size: 30px;
  line-height: 1.2;
}

.auth-card > p {
  margin: 12px 0 32px;
  color: var(--muted);
  line-height: 1.7;
}

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

.auth-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(20, 30, 29, 0.56);
  backdrop-filter: blur(5px);
}

/* 支付弹窗专用粉色背景 */
.auth-overlay.payment-overlay {
  background: rgba(255, 240, 245, 0.97);
  backdrop-filter: none;
}

.auth-dialog {
  position: relative;
  width: min(520px, 100%);
  padding: 48px 44px 40px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 28px 80px rgba(11, 27, 25, 0.24);
  text-align: center;
}

.auth-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: #6f7776;
  background: #edf0ee;
  font-size: 28px;
  line-height: 1;
}

.auth-close:hover {
  color: var(--ink);
  background: #e2e7e4;
}

.auth-key {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
  border-radius: 50%;
  color: #8a5a00;
  background: var(--gold-soft);
  font-size: 22px;
  font-weight: 800;
}

.auth-dialog h2 {
  margin: 0;
  color: #1d1a18;
  font-size: 30px;
}

.auth-dialog > p {
  margin: 10px 0 28px;
  color: var(--muted);
  font-size: 14px;
}

.auth-input {
  width: 100%;
  height: 58px;
  padding: 0 20px;
  border: 1px solid #e1e5e2;
  border-radius: var(--radius);
  outline: none;
  color: var(--ink);
  background: #f8f9f7;
  text-align: center;
  transition: border-color 150ms ease, box-shadow 150ms ease, background 150ms ease;
}

.auth-input:focus {
  border-color: var(--coral);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(231, 109, 88, 0.13);
}

.auth-input::placeholder {
  color: #a2aaa7;
}

.auth-submit {
  min-height: 58px;
  border: 0;
  border-radius: var(--radius);
  color: #fff;
  background: var(--coral);
  box-shadow: 0 12px 24px rgba(231, 109, 88, 0.2);
  font-weight: 800;
}

.auth-submit:hover:not(:disabled) {
  background: var(--coral-dark);
}

.auth-error {
  margin: -12px 0 16px;
  padding: 10px 12px;
  border: 1px solid #f0d0ca;
  border-radius: var(--radius);
  color: #973f36;
  background: #fff5f3;
  font-size: 12px;
}

.auth-footnote {
  display: block;
  margin-top: 18px;
  color: #9aa29f;
  font-size: 11px;
}

.app-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.bottom-nav {
  position: fixed;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  z-index: 50;
  padding: 6px;
  border: 1px solid rgba(20, 43, 44, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 44px rgba(18, 46, 45, 0.18);
  backdrop-filter: blur(14px);
}

.bottom-nav-inner {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-pill {
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  color: var(--ink-soft);
  background: transparent;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: 160ms ease;
}

.nav-pill:hover,
.nav-pill:focus-visible {
  background: var(--mint);
}

.nav-pill.active {
  color: #fff;
  background: linear-gradient(135deg, var(--coral), #ef9275);
  box-shadow: 0 8px 20px rgba(231, 109, 88, 0.35);
}

.nav-pill-icon {
  font-size: 16px;
  line-height: 1;
}

.sidebar {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding: 28px 18px 18px;
  color: var(--sidebar-text);
  background: var(--sidebar);
}

.sidebar .brand-lockup {
  padding: 0 11px 36px;
}

.sidebar .brand-mark {
  width: 36px;
  height: 36px;
  font-size: 15px;
}

.sidebar .brand-name {
  font-size: 16px;
}

.sidebar-section-label {
  padding: 0 12px 10px;
  color: #73938e;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
}

.primary-nav {
  display: grid;
  gap: 5px;
}

.nav-item {
  width: 100%;
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 12px;
  border: 1px solid transparent;
  border-radius: 6px;
  color: var(--sidebar-muted);
  background: transparent;
  text-align: left;
  transition: 160ms ease;
}

.nav-item:hover,
.nav-item:focus-visible {
  color: var(--sidebar-text);
  background: var(--sidebar-soft);
}

.nav-item.active {
  color: var(--sidebar);
  background: var(--gold);
}

.nav-item.active .nav-icon {
  color: var(--sidebar);
}

.nav-icon {
  width: 22px;
  color: #9dc3bc;
  font-size: 18px;
  text-align: center;
}

.nav-label {
  font-size: 14px;
  font-weight: 700;
}

.sidebar-footer {
  margin-top: auto;
  padding-top: 26px;
}

.sidebar-user {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 11px;
  border-top: 1px solid rgba(168, 194, 189, 0.16);
}

.avatar {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 34px;
  color: var(--sidebar);
  background: var(--mint);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 800;
}

.sidebar-user-copy {
  min-width: 0;
}

.sidebar-user-copy strong,
.sidebar-user-copy span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sidebar-user-copy strong {
  font-size: 13px;
}

.sidebar-user-copy span {
  margin-top: 3px;
  color: var(--sidebar-muted);
  font-size: 11px;
}

.icon-button {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink-soft);
  background: var(--panel);
  transition: 160ms ease;
}

.icon-button:hover,
.icon-button:focus-visible {
  color: var(--teal-dark);
  border-color: var(--teal);
  background: var(--mint);
}

.main-shell {
  width: 100%;
  max-width: 880px;
  min-height: 100vh;
  margin: 0 auto;
  padding-bottom: 120px;
  background: var(--paper);
}

.main-header {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 clamp(24px, 4vw, 62px);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
}

.main-header-copy {
  min-width: 0;
}

.main-header h1 {
  margin: 0;
  font-size: 22px;
  line-height: 1.2;
}

.main-header p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.content {
  width: 100%;
  margin: 0 auto;
  padding: 30px 22px 0;
}

.content.narrow {
  max-width: 1080px;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}

.section-head h2,
.section-head h3 {
  margin: 0;
  font-size: 19px;
}

.section-head p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.muted {
  color: var(--muted);
}

.small {
  font-size: 12px;
}

.stack {
  display: grid;
  gap: 20px;
}

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

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

.card {
  min-width: 0;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.card-flat {
  box-shadow: none;
}

.card-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.card h3,
.card h4 {
  margin: 0;
}

.card h3 {
  font-size: 17px;
}

.card h4 {
  font-size: 14px;
}

.card p {
  line-height: 1.7;
}

.card p:last-child {
  margin-bottom: 0;
}

.welcome-band {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(270px, 0.7fr);
  gap: 24px;
  padding: 28px;
  border: 1px solid #d7e6df;
  border-radius: var(--radius);
  background: var(--mint);
}

.welcome-band h2 {
  max-width: 640px;
  margin: 0;
  font-size: 40px;
  line-height: 1.2;
}

.welcome-band p {
  max-width: 620px;
  margin: 15px 0 0;
  color: var(--ink-soft);
  line-height: 1.8;
}

.welcome-side {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.signal-box {
  width: min(100%, 310px);
  padding: 16px;
  border-left: 3px solid var(--coral);
  background: rgba(255, 255, 255, 0.68);
}

.signal-box strong {
  display: block;
  font-size: 24px;
}

.signal-box span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
}

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

.metric-card {
  min-height: 126px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

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

.metric-value {
  margin-top: 15px;
  font-size: 30px;
  font-weight: 800;
  line-height: 1;
}

.metric-note {
  margin-top: 8px;
  color: var(--muted);
  font-size: 11px;
}

.metric-card.coral .metric-value {
  color: var(--coral-dark);
}

.metric-card.teal .metric-value {
  color: var(--teal-dark);
}

.metric-card.gold .metric-value {
  color: #a77915;
}

.metric-card.ink .metric-value {
  color: var(--ink);
}

.skill-hero {
  padding: 46px 0 10px;
  text-align: center;
}

.skill-hero-emoji {
  font-size: 58px;
  line-height: 1;
}

.skill-hero h1 {
  margin: 14px 0 0;
  font-size: 30px;
  letter-spacing: 3px;
}

.skill-hero-sub {
  margin: 14px auto 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.skill-tags {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.skill-tag {
  padding: 7px 16px;
  border-radius: 999px;
  color: #9b7218;
  background: var(--gold-soft);
  font-size: 13px;
  font-weight: 700;
}

.skill-profile-cta {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: var(--ink);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: 160ms ease;
}

.skill-profile-cta:hover {
  background: var(--teal-dark);
}

.skill-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 28px;
}

.skill-card {
  min-width: 0;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--panel);
  box-shadow: var(--shadow);
  transition: 180ms ease;
}

.skill-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(18, 46, 45, 0.1);
}

.skill-card-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  flex: 0 0 52px;
  border-radius: 14px;
  background: var(--mint);
  font-size: 26px;
}

.skill-card.coral .skill-card-icon {
  background: #fde5df;
}

.skill-card.gold .skill-card-icon {
  background: var(--gold-soft);
}

.skill-card-body {
  flex: 1;
  min-width: 0;
}

.skill-card-body h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  font-size: 17px;
}

.skill-card-badge {
  padding: 2px 8px;
  border-radius: 999px;
  color: #5c4307;
  background: linear-gradient(135deg, var(--gold), #f0c96a);
  font-size: 11px;
  font-weight: 800;
}

.skill-card-version {
  padding: 2px 8px;
  border-radius: 999px;
  color: #b33a1e;
  background: #fde5df;
  font-size: 11px;
  font-weight: 800;
}

.skill-card-body p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.skill-card-btn {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  padding: 0 16px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: var(--ink);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: 160ms ease;
}

.skill-card-btn:hover {
  background: var(--teal-dark);
}

.skill-card-arrow {
  transition: transform 160ms ease;
}

.skill-card-btn:hover .skill-card-arrow {
  transform: translateX(3px);
}

@media (max-width: 640px) {
  .skill-grid {
    grid-template-columns: 1fr;
  }

  .skill-hero {
    padding-top: 34px;
  }

  .skill-hero h1 {
    font-size: 26px;
  }
}

.button-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

/* 解锁区域按钮居中 */
.unlock-callout .button-row,
.face-score-comment-lock .button-row {
  justify-content: center;
}

.button {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 15px;
  border: 1px solid transparent;
  border-radius: 5px;
  color: #fff;
  background: var(--teal);
  font-size: 13px;
  font-weight: 800;
  transition: 160ms ease;
}

.button:hover,
.button:focus-visible {
  background: var(--teal-dark);
}

.button.coral {
  background: var(--coral);
}

.button.coral:hover,
.button.coral:focus-visible {
  background: var(--coral-dark);
}

.button.gold {
  color: var(--ink);
  background: var(--gold);
}

.button.gold:hover,
.button.gold:focus-visible {
  background: #d2a536;
}

.button.secondary {
  color: var(--ink-soft);
  border-color: var(--line);
  background: #fff;
}

.button.secondary:hover,
.button.secondary:focus-visible {
  color: var(--teal-dark);
  border-color: #b9d6ce;
  background: var(--mint);
}

.button.ghost {
  color: var(--teal-dark);
  border-color: transparent;
  background: transparent;
}

.button.ghost:hover,
.button.ghost:focus-visible {
  background: var(--mint);
}

.button.ghost.danger {
  color: var(--danger);
  border-color: #f0d8d5;
  background: transparent;
}

.button.ghost.danger:hover,
.button.ghost.danger:focus-visible {
  background: #fff8f7;
}

.button.danger {
  color: var(--danger);
  border-color: #f0d8d5;
  background: #fff8f7;
}

.button-icon {
  font-size: 16px;
  line-height: 1;
}

.field {
  display: grid;
  gap: 7px;
}

.field label {
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 800;
}

.field-hint {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
}

.input,
.select,
.textarea {
  width: 100%;
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid #d8e1dc;
  border-radius: 5px;
  outline: none;
  color: var(--ink);
  background: #fff;
  transition: 160ms ease;
}

.textarea {
  min-height: 118px;
  padding: 11px 12px;
  resize: vertical;
  line-height: 1.65;
}

.input:focus,
.select:focus,
.textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(39, 134, 124, 0.12);
}

.input::placeholder,
.textarea::placeholder {
  color: #adb8b3;
}

.input-with-action {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}

.input-with-action .button {
  min-width: 104px;
}

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

.form-grid .full {
  grid-column: 1 / -1;
}

.form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 6px;
}

.required-mark {
  color: var(--coral);
}

.progress-line {
  height: 6px;
  overflow: hidden;
  border-radius: 999px;
  background: #e7eee9;
}

.progress-line span {
  display: block;
  width: 65%;
  height: 100%;
  border-radius: inherit;
  background: var(--teal);
  animation: progress 1.4s ease-in-out infinite alternate;
}

@keyframes progress {
  from {
    width: 36%;
  }
  to {
    width: 78%;
  }
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 8px;
  border-radius: 4px;
  color: var(--teal-dark);
  background: var(--mint);
  font-size: 11px;
  font-weight: 800;
}

.tag.coral {
  color: var(--coral-dark);
  background: #fde5df;
}

.tag.gold {
  color: #8f6b1a;
  background: var(--gold-soft);
}

.tag.gray {
  color: #667471;
  background: #eef2ef;
}

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

.report-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 16px;
  padding: 15px 16px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}

.report-row:hover {
  border-color: #bad8cf;
}

.report-row-main {
  min-width: 0;
}

.report-row-main strong {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 13px;
}

.report-row-main span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 11px;
}

.empty-state {
  min-height: 390px;
  display: grid;
  place-items: center;
  padding: 44px 24px;
  border: 1px dashed #cbd9d2;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.52);
  text-align: center;
}

.empty-state-inner {
  max-width: 430px;
}

.empty-icon {
  width: 64px;
  height: 64px;
  display: inline-grid;
  place-items: center;
  border: 1px solid #bfd9d1;
  border-radius: 50%;
  color: var(--teal-dark);
  background: var(--mint);
  font-size: 25px;
}

.empty-state h2 {
  margin: 20px 0 9px;
  font-size: 22px;
}

.empty-state p {
  margin: 0 auto 22px;
  color: var(--muted);
  line-height: 1.8;
}

.profile-summary {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr) auto;
  align-items: center;
  gap: 15px;
}

.guest-me {
  max-width: 1080px;
}

.account-entry {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.account-entry-copy {
  display: flex;
  align-items: center;
  gap: 16px;
}

.account-entry-copy strong,
.account-entry-copy small {
  display: block;
}

.account-entry-copy strong {
  font-size: 17px;
}

.account-entry-copy small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
}

.account-logo {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  flex: 0 0 48px;
  border-radius: 50%;
  color: #8e5620;
  background: #ffe9df;
  font-size: 18px;
  font-weight: 800;
}

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

.guest-metrics article {
  min-height: 142px;
  display: grid;
  place-content: center;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fafbf9;
  text-align: center;
}

.guest-metrics span {
  color: var(--muted);
  font-size: 13px;
}

.guest-metrics strong {
  color: #191b1a;
  font-size: 34px;
}

.guest-invite {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 82px;
  gap: 12px;
}

.guest-invite-input {
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: #a2aaa7;
  background: #f8f9f7;
  font-size: 13px;
}

.guest-invite > button {
  border: 0;
  border-radius: var(--radius);
  color: #a6acab;
  background: #e3e6e4;
  font-weight: 700;
}

.guest-invite-tip {
  margin: -8px 0 0;
  color: var(--muted);
  text-align: center;
  font-size: 12px;
}

.guest-invite-tip button {
  padding: 0;
  border: 0;
  color: var(--coral-dark);
  background: transparent;
  font-weight: 700;
}

.guest-benefits {
  display: grid;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.guest-benefits > div {
  min-height: 64px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 18px;
}

.guest-benefits > div + div {
  border-top: 1px solid #edf1ed;
}

.guest-benefits strong {
  font-size: 13px;
}

.benefit-icon {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--teal-dark);
  background: var(--mint);
  font-size: 11px;
  font-weight: 800;
}

.guest-login-button {
  min-height: 60px;
  border: 0;
  border-radius: var(--radius);
  color: #fff;
  background: #1d1a18;
  box-shadow: 0 12px 24px rgba(29, 26, 24, 0.15);
  font-size: 16px;
  font-weight: 800;
}

.guest-login-button:hover {
  background: #35312e;
}

.profile-avatar {
  width: 84px;
  height: 84px;
  display: grid;
  place-items: center;
  border: 1px solid #cbe3da;
  border-radius: 50%;
  color: var(--teal-dark);
  background: var(--mint);
  font-size: 30px;
  font-weight: 800;
}

.profile-summary h2 {
  margin: 0;
  font-size: 20px;
}

.profile-summary p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.detail-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px 20px;
  margin: 18px 0 0;
}

.detail-item {
  padding-bottom: 12px;
  border-bottom: 1px solid #edf1ed;
}

.detail-item dt {
  color: var(--muted);
  font-size: 11px;
}

.detail-item dd {
  margin: 5px 0 0;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}

.invite-meter {
  display: grid;
  gap: 10px;
}

.invite-meter-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.invite-meter-head strong {
  font-size: 26px;
}

.invite-meter-head span {
  color: var(--muted);
  font-size: 12px;
}

.meter-track {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: #e9efeb;
}

.meter-track span {
  display: block;
  height: 100%;
  max-width: 100%;
  border-radius: inherit;
  background: var(--coral);
}

.invite-code-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 14px;
  border: 1px solid #eadcae;
  background: var(--gold-soft);
}

.invite-code-box strong {
  color: #8f6b1a;
  font-size: 18px;
  letter-spacing: 0;
}

.report-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.report-header h2 {
  margin: 0;
  font-size: 28px;
}

.report-header p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.report-content {
  white-space: pre-line;
  color: var(--ink-soft);
  line-height: 1.9;
}

.report-content p {
  margin: 0 0 15px;
}

.report-disclaimer {
  margin-top: 20px;
  padding: 12px 16px;
  border-radius: 12px;
  background: rgba(255, 126, 179, 0.06);
  border: 1px solid rgba(255, 126, 179, 0.12);
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
  text-align: center;
}

.report-content h1 {
  font-size: 22px;
  margin: 0 0 14px;
  color: var(--ink);
}

.report-content h2 {
  font-size: 20px;
  margin: 26px 0 12px;
  color: var(--ink);
}

.report-content h3 {
  font-size: 17px;
  margin: 22px 0 10px;
  color: var(--ink);
}

.report-content h4 {
  font-size: 15px;
  margin: 18px 0 8px;
  color: var(--ink);
}

.report-content ul,
.report-content ol {
  margin: 0 0 15px;
  padding-left: 22px;
}

.report-content li {
  margin: 0 0 6px;
}

.report-content strong {
  color: var(--ink);
  font-weight: 700;
}

.report-content code {
  background: #f2f5f3;
  border-radius: 4px;
  padding: 1px 6px;
  font-size: 13px;
  font-family: Consolas, Menlo, monospace;
}

.locked-preview {
  position: relative;
  max-height: 250px;
  overflow: hidden;
}

.locked-mask {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 86px;
  display: grid;
  place-items: end center;
  padding-bottom: 12px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #fff 76%);
  color: var(--muted);
  font-size: 12px;
  pointer-events: none;
}

.locked-content {
  position: relative;
  min-height: 210px;
  overflow: hidden;
  padding: 22px;
  border: 1px solid #eadcae;
  background: #fffaf0;
}

.locked-content::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(255, 250, 240, 0.08), rgba(255, 250, 240, 0.92) 78%);
  pointer-events: none;
}

.locked-blur {
  filter: blur(3px);
  opacity: 0.62;
  user-select: none;
}

.unlock-callout {
  position: relative;
  z-index: 1;
  margin-top: 0;
  padding: 20px;
  border: 1px solid #eddca8;
  border-radius: 6px;
  background: rgba(255, 250, 240, 0.94);
}

.unlock-hint {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.unlock-hint .link {
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--teal-dark);
  font-size: inherit;
  font-weight: 700;
  text-decoration: underline;
  cursor: pointer;
}

.preview-card {
  border-color: #f2d8a8;
  background: linear-gradient(180deg, #fffaf0, #fffdf8);
}

.preview-card .tag {
  color: #9a6b13;
  border-color: #eadcae;
  background: #fff4d6;
}

.unlock-callout h3 {
  margin: 0;
  font-size: 17px;
}

.unlock-callout p {
  margin: 8px 0 16px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.payment-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: 20px;
}

.payment-amount {
  display: flex;
  align-items: baseline;
  gap: 7px;
  margin: 18px 0 24px;
}

.payment-amount strong {
  color: var(--coral-dark);
  font-size: 44px;
  line-height: 1;
}

.payment-amount span {
  color: var(--muted);
  font-size: 13px;
}

.order-lines {
  display: grid;
  gap: 12px;
  padding: 17px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.order-line {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-size: 13px;
}

.order-line strong {
  color: var(--ink);
}

.payment-method {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border: 1px solid #b9d9d1;
  background: #f4fbf8;
}

.alipay-mark {
  width: 36px;
  height: 36px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #1e9bd7;
  font-size: 14px;
  font-weight: 800;
}

.payment-method strong,
.payment-method span {
  display: block;
}

.payment-method span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
}

.notice {
  padding: 13px 15px;
  border-left: 3px solid var(--gold);
  color: #766022;
  background: var(--gold-soft);
  font-size: 12px;
  line-height: 1.7;
}

.qr-placeholder {
  width: 168px;
  height: 168px;
  display: grid;
  place-items: center;
  margin: 0 auto;
  border: 1px solid var(--line);
  color: var(--muted);
  background: repeating-linear-gradient(45deg, #fff, #fff 8px, #eef5f1 8px, #eef5f1 16px);
  font-size: 12px;
}

.error-box {
  padding: 14px 16px;
  border-left: 3px solid var(--danger);
  color: #8c3e3b;
  background: #fff4f2;
  font-size: 13px;
  line-height: 1.7;
}

.toast-region {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 50;
  display: grid;
  gap: 9px;
  width: min(360px, calc(100vw - 48px));
  pointer-events: none;
}

.toast {
  padding: 13px 15px;
  border: 1px solid #c8ddd6;
  border-radius: 6px;
  color: var(--ink);
  background: #fff;
  box-shadow: var(--shadow);
  font-size: 13px;
  line-height: 1.5;
  animation: toast-in 180ms ease-out;
}

.toast.error {
  border-color: #edcbc6;
  color: #8c3e3b;
  background: #fff8f7;
}

@keyframes toast-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1100px) {
  .metric-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .welcome-band,
  .payment-layout {
    grid-template-columns: 1fr;
  }

  .welcome-side {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .auth-dialog {
    padding: 44px 22px 28px;
  }

  .auth-dialog h2 {
    font-size: 25px;
  }

  .auth-close {
    top: 14px;
    right: 14px;
  }

  .auth-shell {
    grid-template-columns: 1fr;
  }

  .auth-aside {
    min-height: 300px;
    padding: 28px 24px;
  }

  .auth-copy {
    padding: 42px 0 26px;
  }

  .auth-copy h1 {
    font-size: 38px;
  }

  .auth-notes {
    display: none;
  }

  .auth-panel {
    padding: 34px 24px 54px;
  }

  .app-shell {
    display: block;
  }

  .sidebar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 20;
    min-height: 0;
    display: block;
    padding: 0;
    border-top: 1px solid rgba(168, 194, 189, 0.22);
  }

  .sidebar .brand-lockup,
  .sidebar-section-label,
  .sidebar-footer {
    display: none;
  }

  .primary-nav {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
  }

  .nav-item {
    min-height: 64px;
    display: grid;
    place-items: center;
    gap: 3px;
    padding: 6px 2px;
    border-radius: 0;
    font-size: 11px;
  }

  .nav-icon {
    width: auto;
    font-size: 17px;
  }

  .nav-label {
    font-size: 11px;
  }

  .main-header {
    min-height: 74px;
    padding: 0 20px;
  }

  .main-header h1 {
    font-size: 19px;
  }

  .main-header p {
    max-width: 220px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .content {
    padding: 24px 20px 102px;
  }

  .grid-2,
  .grid-3,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-grid .full {
    grid-column: auto;
  }

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

  .metric-card {
    min-height: 112px;
  }

  .metric-value {
    font-size: 25px;
  }

  .welcome-band {
    padding: 22px;
  }

  .welcome-band h2 {
    font-size: 28px;
  }

  .profile-summary {
    grid-template-columns: 58px minmax(0, 1fr);
  }

  .profile-avatar {
    width: 58px;
    height: 58px;
    font-size: 21px;
  }

  .profile-summary .button-row {
    grid-column: 1 / -1;
  }

  .guest-metrics {
    grid-template-columns: 1fr 1fr;
  }

  .guest-metrics article {
    min-height: 112px;
  }

  .detail-list {
    grid-template-columns: 1fr;
  }

  .report-header {
    display: grid;
  }

  .report-row {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .report-row .tag {
    grid-row: 2;
  }

  .report-row-actions {
    grid-column: 2;
    grid-row: 1 / span 2;
    flex-direction: column;
    align-items: stretch;
  }

  .form-actions {
    align-items: stretch;
    flex-direction: column-reverse;
  }

  .form-actions .button-row {
    width: 100%;
  }

  .form-actions .button {
    flex: 1;
  }
}

/* 颜值打分：照片上传弹窗 */
.photo-dialog {
  text-align: center;
}

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

.photo-thumb {
  position: relative;
  aspect-ratio: 1;
  border-radius: 12px;
  overflow: hidden;
  background: #f2f4f2;
}

.photo-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.photo-thumb button {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 22px;
  height: 22px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: rgba(0, 0, 0, 0.55);
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
}

.photo-add {
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border: 1.5px dashed #e3c6df;
  border-radius: 16px;
  color: var(--muted);
  font-size: 13px;
  cursor: pointer;
  transition: 160ms ease;
}

/* 未选照片时，让“添加照片”框在 3 列中居中显示 */
.photo-add:only-child {
  grid-column: 2;
}

.photo-add span {
  font-size: 26px;
  line-height: 1;
}

.photo-add:hover {
  border-color: var(--coral);
  color: var(--coral);
}

.photo-count {
  margin: 4px 0 16px;
  color: var(--muted);
  font-size: 12px;
}

/* 颜值自评引导链接 */
.field-guide {
  margin-left: 8px;
}

.field-guide button {
  border: 0;
  padding: 0;
  color: var(--coral);
  background: transparent;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: underline;
}

.field-guide button:hover {
  color: var(--coral-dark);
}

/* 颜值打分卡片引导高亮 */
.skill-card.highlight {
  box-shadow: 0 0 0 3px var(--coral);
  transform: translateY(-2px);
}

/* ---- 颜值打分专用页面 ---- */
.face-score-page {
  max-width: 480px;
  margin: 0 auto;
  padding: 24px 16px 96px;
}

.face-score-header {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.face-score-back {
  width: 36px;
  height: 36px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--panel);
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
}

.face-score-header h2 {
  margin: 0;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.2;
}

.face-score-header p {
  margin: 4px 0 0;
  font-size: 13px;
  color: var(--muted);
}

.face-score-no-person {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  gap: 16px;
}

.face-score-no-person-icon {
  font-size: 56px;
  line-height: 1;
}

.face-score-no-person-text {
  font-size: 15px;
  color: #c0392b;
  font-weight: 600;
  margin: 0;
  max-width: 320px;
  line-height: 1.5;
}

/* ===== 支付解锁弹窗 ===== */
.pay-dialog {
  width: 380px;
  max-width: 92vw;
  padding: 32px 24px 24px;
  text-align: center;
  position: relative;
}

.pay-dialog h2 {
  font-size: 20px;
  font-weight: 800;
  margin: 0 0 16px;
  color: var(--text);
}

.pay-price-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  margin-bottom: 8px;
}

.pay-price {
  font-size: 36px;
  font-weight: 900;
  color: #e67e22;
  line-height: 1;
}

.pay-tag {
  display: inline-block;
  background: #e67e22;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  line-height: 1.4;
}

.pay-original {
  font-size: 13px;
  color: var(--muted);
  text-decoration: line-through;
}

.pay-subtitle {
  font-size: 13px;
  color: var(--muted);
  margin: 0 0 20px;
}

.pay-skills {
  display: flex;
  justify-content: center;
  gap: 16px 24px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.pay-skill-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  min-width: 56px;
}

.pay-skill-icon {
  font-size: 28px;
  line-height: 1;
}

.pay-skill-name {
  font-size: 11px;
  color: var(--muted);
  white-space: nowrap;
}

.pay-alipay-section {
  margin-bottom: 20px;
}

.pay-alipay-logo {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  font-weight: 700;
  color: #1677ff;
  margin-bottom: 4px;
}

.pay-alipay-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: #1677ff;
  color: #fff;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 900;
}

.pay-alipay-hint {
  font-size: 12px;
  color: var(--muted);
  margin: 0 0 12px;
}

.pay-qr-card {
  background: #1677ff;
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 10px;
}

.pay-qr-placeholder {
  background: #fff;
  border-radius: 8px;
  width: 180px;
  height: 180px;
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pay-qr-img {
  display: block;
  width: 220px;
  height: 220px;
  margin: 0 auto 12px;
  border-radius: 10px;
  object-fit: cover;
}

.pay-qr-text {
  font-size: 13px;
  color: var(--muted);
}

.pay-qr-payee {
  font-size: 12px;
  color: rgba(255,255,255,0.85);
  margin: 0 0 2px;
}

.pay-qr-amount {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.pay-qr-tip {
  font-size: 11px;
  color: var(--muted);
  margin: 0;
}

.pay-confirm-btn {
  width: 100%;
  padding: 14px;
  background: #1a1a1a;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.15s;
  margin-bottom: 16px;
}

.pay-confirm-btn:hover { opacity: 0.85; }
.pay-confirm-btn:disabled { opacity: 0.5; cursor: not-allowed; }

.pay-fan-bonus {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  text-align: left;
  padding: 10px 12px;
  background: #fff0f5;
  border-radius: 8px;
  border: 1px solid #ffd6e7;
}

.pay-fan-icon {
  font-size: 16px;
  line-height: 1.4;
  flex-shrink: 0;
}

.pay-fan-text {
  font-size: 12px;
  color: #c2185b;
  margin: 0;
  line-height: 1.5;
  text-align: left;
}

.pay-fan-text .pay-fan-detail {
  font-size: 12px;
  color: #c2185b;
  opacity: 0.8;
  margin-top: 2px;
}

@media (max-width: 560px) {
  .pay-dialog {
    width: 100%;
    max-width: 100vw;
    border-radius: 16px 16px 0 0;
    padding: 24px 20px 20px;
    max-height: 90vh;
    overflow-y: auto;
  }
  .pay-price { font-size: 32px; }
  .pay-skills { gap: 12px 18px; }
  .pay-qr-placeholder { width: 160px; height: 160px; }
}

.face-score-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 420px;
  text-align: center;
}

.face-score-spinner {
  position: relative;
  width: 128px;
  height: 128px;
  margin-bottom: 28px;
  display: grid;
  place-items: center;
}

/* 多层脉冲光环 */
.face-score-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1.5px solid rgba(226, 92, 74, 0.35);
  animation: face-score-pulse 2.4s ease-out infinite;
}

.face-score-pulse-2 { animation-delay: 0.8s; }
.face-score-pulse-3 { animation-delay: 1.6s; }

@keyframes face-score-pulse {
  0% { transform: scale(0.55); opacity: 0.9; }
  70% { transform: scale(1.05); opacity: 0.15; }
  100% { transform: scale(1.05); opacity: 0; }
}

/* 中心核心：双环旋转 + 灯笼 */
.face-score-core {
  position: relative;
  width: 84px;
  height: 84px;
  display: grid;
  place-items: center;
}

.face-score-core svg {
  position: absolute;
  inset: 0;
  width: 84px;
  height: 84px;
  transform: rotate(-90deg);
}

.face-score-track {
  stroke: #f2e7e0;
}

.face-score-spin {
  stroke: var(--coral);
  stroke-dasharray: 44 132;
  animation: face-score-spin 1.4s cubic-bezier(0.5, 0.15, 0.5, 0.85) infinite;
}

.face-score-spin-rev {
  stroke: rgba(226, 92, 74, 0.45);
  animation: face-score-spin-rev 2.1s linear infinite;
}

@keyframes face-score-spin {
  0% { stroke-dashoffset: 132; }
  100% { stroke-dashoffset: -132; }
}

@keyframes face-score-spin-rev {
  0% { stroke-dashoffset: 66; }
  100% { stroke-dashoffset: -102; }
}

.face-score-lantern {
  font-size: 34px;
  animation: face-score-lantern 1.8s ease-in-out infinite;
  filter: drop-shadow(0 2px 6px rgba(226, 92, 74, 0.35));
}

@keyframes face-score-lantern {
  0%, 100% { transform: translateY(0) rotate(-4deg); }
  50% { transform: translateY(-5px) rotate(4deg); }
}

/* 加载步骤条 */
.face-score-loading-steps {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
}

.face-score-step {
  font-size: 12px;
  color: var(--muted);
  opacity: 0.55;
  animation: face-score-step-glow 3.6s ease-in-out infinite;
}

.face-score-step:nth-child(3) { animation-delay: 1.2s; }
.face-score-step:nth-child(5) { animation-delay: 2.4s; }

@keyframes face-score-step-glow {
  0%, 8% { opacity: 1; color: var(--coral); font-weight: 700; }
  33%, 100% { opacity: 0.55; color: var(--muted); font-weight: 400; }
}

.face-score-step-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(226, 92, 74, 0.5);
}

.face-score-loading h3 {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 800;
}

.face-score-loading p {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
}

/* ===== 连麦对话页 ===== */
.chat-page {
  display: flex;
  flex-direction: column;
  max-width: 880px;
  margin: 0 auto;
  padding: 0;
  height: calc(100vh - 190px);
  min-height: 420px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  overflow: hidden;
}

.chat-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.chat-head-copy {
  display: grid;
  gap: 2px;
}

.chat-head-title {
  font-size: 15px;
  font-weight: 800;
}

.chat-scroll {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
}

.chat-list {
  display: grid;
  gap: 14px;
}

.bubble-row {
  display: grid;
  gap: 5px;
  max-width: 78%;
}

.bubble-row.user {
  justify-self: end;
  justify-items: end;
}

.bubble-name {
  font-size: 12px;
  color: var(--muted);
}

.bubble {
  padding: 11px 14px;
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.75;
  white-space: pre-wrap;
  word-break: break-word;
}

.assistant-bubble {
  border: 1px solid #d5e6e0;
  border-top-left-radius: 3px;
  background: var(--mint);
  color: var(--ink);
}

.user-bubble {
  border: 1px solid #f0d5d0;
  border-top-right-radius: 3px;
  background: #fff3f0;
  color: var(--ink);
}

.typing-dots {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 15px 16px;
}

.typing-dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal-dark);
  animation: typing-bounce 1.2s ease-in-out infinite;
}

.typing-dots span:nth-child(2) { animation-delay: 0.15s; }
.typing-dots span:nth-child(3) { animation-delay: 0.3s; }

@keyframes typing-bounce {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.5; }
  30% { transform: translateY(-4px); opacity: 1; }
}

.chat-input-bar {
  display: flex;
  gap: 10px;
  padding: 14px 16px;
  border-top: 1px solid var(--line);
  background: #fff;
}

.chat-input {
  flex: 1;
  min-width: 0;
  height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 21px;
  font-size: 14px;
  outline: none;
  background: #fff;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.chat-input:focus {
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(226, 92, 74, 0.12);
}

.send-btn {
  min-width: 92px;
}

@media (max-width: 760px) {
  .chat-page {
    height: calc(100vh - 186px);
    min-height: 360px;
  }

  .bubble-row {
    max-width: 92%;
  }
}

.face-score-photo-toggle {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  margin-bottom: 16px;
  font-size: 13px;
  color: var(--muted);
}

.face-score-switch {
  width: 44px;
  height: 24px;
  border: 0;
  border-radius: 999px;
  background: #d5dddd;
  position: relative;
  cursor: pointer;
  transition: background 160ms ease;
}

.face-score-switch::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0,0,0,0.12);
  transition: transform 160ms ease;
}

.face-score-switch.on {
  background: var(--coral);
}

.face-score-switch.on::after {
  transform: translateX(20px);
}

.face-score-photo-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}

/* B 方案：多张照片 grid 布局 */
.face-score-photo-wrap.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 14px;
  justify-items: center;
}

.face-score-photo-card {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.face-score-photo-caption {
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  line-height: 1.4;
}

.face-score-photo {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.face-score-photo-placeholder {
  width: 180px;
  height: 180px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: #eef2f1;
  color: var(--muted);
  font-size: 13px;
}

.face-score-score {
  text-align: center;
  margin-bottom: 24px;
}

.face-score-mark {
  font-size: 44px;
  font-weight: 800;
  line-height: 1.15;
  color: var(--coral);
  letter-spacing: 0.5px;
}

.face-score-status {
  margin-top: 8px;
  font-size: 14px;
  color: var(--muted);
}

.face-score-comment {
  overflow: hidden;
}

.face-score-comment-head {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 16px 12px;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  color: var(--ink-soft);
}

.face-score-comment-icon {
  font-size: 16px;
}

.face-score-comment-body {
  padding: 16px;
}

.face-score-comment-body.locked {
  min-height: 120px;
  display: grid;
  place-items: center;
  background: #fafbfa;
}

.face-score-comment-lock {
  text-align: center;
}

.face-score-comment-lock .button {
  min-height: 44px;
  padding: 0 24px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
}

.face-score-hint {
  margin: 14px 0 0;
  font-size: 12px;
  color: var(--coral);
}

.face-score-hint .link {
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  font-size: inherit;
  font-weight: 700;
  text-decoration: underline;
  cursor: pointer;
}

.face-score-again {
  width: 100%;
  min-height: 48px;
  margin-top: 24px;
  border-radius: 999px;
  font-size: 15px;
}

@media (max-width: 560px) {
  .face-score-page {
    padding: 16px 12px 80px;
  }
  .face-score-photo,
  .face-score-photo-placeholder {
    width: 160px;
    height: 160px;
  }
  .face-score-photo-wrap.grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 10px;
  }
  .face-score-photo-caption {
    font-size: 11px;
  }
  .face-score-mark {
    font-size: 34px;
  }
}

/* ===== 合盘条件对比表（双栏双列） ===== */
.comparison-table-wrap {
  overflow-x: auto;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.comparison-table th,
.comparison-table td {
  padding: 10px 14px;
  text-align: left;
  border-bottom: 1px solid #f0f1f3;
  vertical-align: top;
}
.comparison-table thead th {
  background: #faf7f2;
  font-weight: 700;
  color: #6b4f2a;
}
.comparison-table tbody tr:last-child td {
  border-bottom: 0;
}
.comparison-table .comparison-label {
  width: 76px;
  font-weight: 600;
  color: #6b4f2a;
  background: #fdfbf7;
}
.comparison-table td:not(.comparison-label) {
  color: #333;
}

/* 出生日期数字输入 */
.birth-date-field .birth-date-inputs {
  display: flex;
  align-items: center;
  gap: 6px;
}
.birth-date-field .birth-year {
  width: 80px;
  background: #f5f5f5;
  color: #666;
  cursor: default;
}
.birth-date-field .birth-month,
.birth-date-field .birth-day {
  width: 64px;
}
.birth-date-field .birth-sep {
  color: #888;
  font-size: 14px;
  user-select: none;
}

/* ===== 单题问卷（MBTI 式） ===== */
.quiz-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.quiz-head-title {
  flex: 1;
  min-width: 0;
}
.quiz-progress-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}
.quiz-progress {
  flex: 1;
  height: 8px;
  border-radius: 99px;
  background: #e3e7e1;
  overflow: hidden;
}
.quiz-progress span {
  display: block;
  height: 100%;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--coral), #ef9275);
  transition: width 220ms ease;
}
.quiz-step-count {
  flex: 0 0 auto;
  font-size: 12px;
  font-weight: 800;
  color: var(--ink-soft);
  letter-spacing: 0.06em;
  font-variant-numeric: tabular-nums;
}
.quiz-card {
  gap: 22px;
}
.quiz-question h3 {
  margin: 0 0 6px;
  font-size: 20px;
  line-height: 1.4;
}
.quiz-question p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}
.quiz-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 10px;
}
.quiz-card-grid-pair {
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  max-width: 360px;
  margin: 0 auto;
}
.quiz-option {
  min-height: 52px;
  padding: 10px 14px;
  border: 1.5px solid #d8e1dc;
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  transition: 150ms ease;
}
.quiz-option:hover {
  border-color: var(--teal);
  color: var(--teal-dark);
}
.quiz-option.selected {
  border-color: var(--coral);
  background: rgba(231, 109, 88, 0.08);
  color: var(--coral-dark);
  box-shadow: 0 0 0 3px rgba(231, 109, 88, 0.14);
}
.quiz-field {
  display: grid;
  gap: 8px;
}
.quiz-field .input,
.quiz-field .textarea {
  width: 100%;
}
.quiz-suffix {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
}
.quiz-suffix > span {
  color: var(--ink-soft);
  font-weight: 700;
  font-size: 14px;
}
.quiz-detail {
  display: grid;
  gap: 7px;
  padding: 14px;
  border: 1px dashed var(--teal);
  border-radius: 10px;
  background: rgba(39, 134, 124, 0.05);
}
.quiz-detail label {
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 800;
}
.quiz-detail-hint {
  margin: 0;
  font-size: 12px;
  color: var(--coral-dark);
  line-height: 1.5;
}
.quiz-detail-hint.muted {
  color: var(--muted);
}
.quiz-nav {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-top: 4px;
}
.quiz-nav .button {
  min-width: 108px;
}
@media (max-width: 560px) {
  .quiz-head {
    flex-wrap: wrap;
  }
  .quiz-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .quiz-nav .button {
    min-width: 0;
    flex: 1;
  }
}

/* ===== 移动端适配补充（2026-08-20 第六批） ===== */

/* 防止 iOS Safari 聚焦输入框时自动缩放页面（字号 <16px 会触发） */
@media (max-width: 760px) {
  .input,
  .select,
  .textarea {
    font-size: 16px;
  }
}

/* 小屏手机（≤560px）：登录页 + 报告页细化 */
@media (max-width: 560px) {
  /* 登录页 / 登录弹窗 */
  .auth-overlay {
    padding: 12px;
  }
  .auth-copy {
    padding: 30px 20px;
  }
  .auth-copy h1 {
    font-size: 30px;
  }
  .auth-copy p {
    margin-top: 16px;
  }
  .auth-panel {
    padding: 26px 16px 40px;
  }
  .auth-card h2 {
    font-size: 24px;
  }
  .auth-card > p {
    margin: 10px 0 22px;
  }
  .auth-dialog {
    padding: 36px 18px 28px;
  }
  .auth-dialog h2 {
    font-size: 22px;
  }
  .auth-form {
    gap: 14px;
  }

  /* 报告页：分级标题字号收敛 */
  .report-content {
    line-height: 1.8;
  }
  .report-content h1 {
    font-size: 19px;
    margin: 0 0 10px;
  }
  .report-content h2 {
    font-size: 17px;
    margin: 20px 0 8px;
  }
  .report-content h3 {
    font-size: 15px;
    margin: 16px 0 6px;
  }
  .report-content ul,
  .report-content ol {
    padding-left: 18px;
    margin: 0 0 12px;
  }

  /* 合盘条件对比表：小屏收紧 */
  .comparison-table {
    font-size: 13px;
  }
  .comparison-table th,
  .comparison-table td {
    padding: 8px 10px;
  }
  .comparison-table .comparison-label {
    width: 64px;
  }
}

/* ==================================================================
   V1 糖果泡泡卡通皮肤（叠加层）——只改视觉，不改布局与功能
   ================================================================== */

/* ---------- 全局氛围：糖果渐变背景 + 漂浮泡泡 ---------- */
body {
  background:
    radial-gradient(1100px 520px at 8% -6%, rgba(255, 182, 216, 0.5), transparent 62%),
    radial-gradient(900px 480px at 96% 4%, rgba(178, 224, 255, 0.55), transparent 60%),
    radial-gradient(760px 420px at 50% 108%, rgba(183, 240, 222, 0.5), transparent 62%),
    linear-gradient(180deg, #fdf6fb 0%, #f5f0fd 55%, #eef7fc 100%);
  background-attachment: fixed;
}

body::before,
body::after {
  content: "";
  position: fixed;
  z-index: 0;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.45;
}

body::before {
  width: 230px;
  height: 230px;
  left: -70px;
  top: 16%;
  background: radial-gradient(circle at 32% 30%, rgba(255, 255, 255, 0.9), rgba(255, 176, 213, 0.35) 58%, transparent 72%);
  animation: candy-float 9s ease-in-out infinite;
}

body::after {
  width: 300px;
  height: 300px;
  right: -90px;
  bottom: 10%;
  background: radial-gradient(circle at 60% 34%, rgba(255, 255, 255, 0.9), rgba(160, 216, 255, 0.35) 58%, transparent 72%);
  animation: candy-float 12s ease-in-out infinite reverse;
}

@keyframes candy-float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-26px) scale(1.05); }
}

@media (prefers-reduced-motion: reduce) {
  body::before,
  body::after { animation: none; }
}

/* ---------- 卡通字体 ---------- */
.app-root h1,
.app-root h2,
.app-root h3,
.app-root h4,
.brand-name,
.skill-hero h1,
.welcome-band h2,
.auth-card h2,
.auth-dialog h2,
.nav-label,
.nav-pill,
.button,
.auth-submit,
.send-btn,
.card-title-row strong {
  font-family: "ZCOOL KuaiLe", "LXGW WenKai Screen", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-weight: 400;
  letter-spacing: 0.5px;
}

/* ---------- 侧边栏：紫色糖果渐变 ---------- */
.sidebar {
  background: linear-gradient(200deg, #8d64d4 0%, #7a54c4 45%, #6a46b3 100%);
  box-shadow: inset -14px 0 34px rgba(58, 20, 96, 0.18);
}

.nav-item {
  border-radius: 999px;
}

.nav-item.active {
  color: #6a46b3;
  background: linear-gradient(135deg, #ffe9a8, #f4b531);
  box-shadow: 0 6px 16px rgba(244, 181, 49, 0.35);
}

.nav-icon { color: #d9c4f7; }
.nav-item.active .nav-icon { color: #6a46b3; }

.sidebar-section-label { color: #cbb4ef; }

/* ---------- 底部导航：粉白胶囊 ---------- */
.bottom-nav {
  border: 2px solid #ffd9ec;
  box-shadow: 0 18px 44px rgba(255, 126, 179, 0.22);
}

.nav-pill.active {
  background: linear-gradient(135deg, #ff9ecb, #f2518f);
  box-shadow: 0 8px 20px rgba(242, 81, 143, 0.35);
}

/* ---------- 果冻按钮 ---------- */
.button,
.auth-submit,
.send-btn {
  border-radius: 999px;
}

.button.coral,
.auth-submit,
.send-btn {
  background: linear-gradient(180deg, #ff9ecb 0%, #f2518f 100%);
  border-color: transparent;
  box-shadow: inset 0 -3px 0 rgba(200, 40, 105, 0.25), 0 8px 20px rgba(242, 81, 143, 0.3);
  color: #fff;
}

.button.coral:hover:not(:disabled),
.auth-submit:hover:not(:disabled),
.send-btn:hover:not(:disabled) {
  background: linear-gradient(180deg, #ffadd4 0%, #f963a0 100%);
}

.button.coral:active:not(:disabled),
.auth-submit:active:not(:disabled),
.send-btn:active:not(:disabled) {
  transform: translateY(1px) scale(0.98);
  box-shadow: inset 0 -1px 0 rgba(200, 40, 105, 0.25), 0 4px 12px rgba(242, 81, 143, 0.28);
}

.button.gold {
  background: linear-gradient(180deg, #ffd76b 0%, #f4a91f 100%);
  border-color: transparent;
  color: #6b4a00;
  box-shadow: inset 0 -3px 0 rgba(170, 120, 10, 0.28), 0 8px 20px rgba(244, 181, 49, 0.3);
}

.button.gold:hover:not(:disabled) {
  background: linear-gradient(180deg, #ffe083 0%, #fbb531 100%);
}

/* ---------- 卡片：圆角白卡 + 粉描边 ---------- */
.card,
.card-flat,
.quiz-card,
.auth-card,
.report-row,
.unlock-callout {
  border-radius: 20px;
  border-color: #ffe1f0;
}

.card {
  box-shadow: var(--shadow), inset 0 0 0 1px rgba(255, 255, 255, 0.6);
}

.report-row:hover {
  border-color: #ffc4e0;
  box-shadow: 0 10px 24px rgba(255, 126, 179, 0.16);
}

/* ---------- 欢迎横幅：薄荷→粉渐变 ---------- */
.welcome-band {
  border: 2px solid #d8f3ea;
  background: linear-gradient(120deg, #ddf6ee 0%, #e9f3ff 55%, #ffe6f2 100%);
}

.signal-box {
  border-left: 4px solid #ff7eb3;
  border-radius: 0 14px 14px 0;
}

/* ---------- 技能页 hero：粉紫渐变标题 ---------- */
.skill-hero h1 {
  background: linear-gradient(180deg, #ff7eb3 0%, #a56bff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.skill-tag {
  border: 2px solid #ffe9a8;
  border-radius: 999px;
  color: #a06a00;
}

/* ---------- 技能卡图标泡泡 ---------- */
.skill-card-icon {
  box-shadow: inset 0 -5px 0 rgba(0, 0, 0, 0.08), 0 8px 18px rgba(130, 95, 170, 0.2);
}

.skill-card.coral .skill-card-icon {
  background: linear-gradient(160deg, #ffd0e4, #ff7eb3);
}

.skill-card.gold .skill-card-icon {
  background: linear-gradient(160deg, #ffe9a8, #f4b531);
}

.skill-card-btn {
  border-radius: 999px;
}

.skill-card:hover {
  border-color: #ffc4e0;
  box-shadow: 0 16px 36px rgba(255, 126, 179, 0.18);
}

/* ---------- 聊天气泡：粉蓝CP ---------- */
.assistant-bubble {
  border: 2px solid #d8f3ea;
  border-top-left-radius: 4px;
  background: linear-gradient(160deg, #e2f8f0, #cdf2e6);
}

.user-bubble {
  border: 2px solid #ffd9ec;
  border-top-right-radius: 4px;
  background: linear-gradient(160deg, #ffe6f2, #ffd0e4);
}

.chat-input {
  border-radius: 999px;
  border-color: #f3dcef;
}

.chat-input:focus {
  border-color: #ff7eb3;
  box-shadow: 0 0 0 4px rgba(255, 126, 179, 0.14);
}

.chat-input-bar {
  border-top-color: #ffe1f0;
}

/* ---------- 登录侧栏：粉紫渐变 ---------- */
.auth-aside {
  background: linear-gradient(210deg, #9d76e0 0%, #7a54c4 50%, #5f3fa8 100%);
}

.auth-panel {
  background: linear-gradient(180deg, #fffafd 0%, #fdf4fb 100%);
}

.auth-input {
  border-radius: 999px;
  border-color: #f3dcef;
}

.auth-input:focus {
  border-color: #ff7eb3;
  box-shadow: 0 0 0 4px rgba(255, 126, 179, 0.14);
}

/* ---------- 测验/问答选项 ---------- */
.quiz-option {
  border-radius: 16px;
  border-color: #f3dcef;
}

.quiz-option:hover {
  border-color: #ffb3d2;
  background: #fff5fa;
}

.quiz-option.selected {
  border-color: #f2518f;
  background: linear-gradient(160deg, #ffe6f2, #ffd0e4);
  box-shadow: 0 8px 20px rgba(242, 81, 143, 0.16);
}

/* ---------- 表单控件 ---------- */
.field input,
.field .select,
.field .textarea,
.select,
.textarea {
  border-radius: 14px;
  border-color: #f3dcef;
}

.field input:focus,
.select:focus,
.textarea:focus {
  border-color: #ff7eb3;
  box-shadow: 0 0 0 4px rgba(255, 126, 179, 0.12);
}

/* ---------- 标签与提示 ---------- */
.tag {
  border-radius: 999px;
}

.tag.coral {
  background: #ffd0e4;
  color: #c22e6f;
}

.progress-line span {
  background: linear-gradient(90deg, #ff7eb3, #a56bff);
  border-radius: 999px;
}

/* ---------- Toast 圆角 ---------- */
.toast {
  border-radius: 999px;
  background: linear-gradient(180deg, #8d64d4, #7a54c4);
}

.toast.error {
  background: linear-gradient(180deg, #ff7a95, #f2518f);
}

/* ---------- 颜值打分页微调 ---------- */
.face-score-mark,
.face-score-score {
  color: #f2518f;
}

/* ---------- 链接色 ---------- */
.app-root a {
  color: var(--coral-dark);
}

/* ---------- 18+ 年龄声明 ---------- */
.age-footer {
  margin-top: 32px;
  padding: 16px 0 12px;
  text-align: center;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
  border-top: 1px solid rgba(255, 126, 179, 0.08);
}

/* ---------- 备案号（工信部要求悬挂于首页底部） ---------- */
.beian-line {
  margin-top: 6px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

.beian-line a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.18s ease;
}

.beian-line a:hover {
  color: var(--sidebar);
  text-decoration: underline;
}

/* 公安备案：徽章图标 + 备案号（图标缺失时 onerror 移除图片，自动降级为纯文字） */
.beian-line a.beian-police {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.beian-icon {
  width: 14px;
  height: 14px;
  display: block;
  flex-shrink: 0;
}
