/* 一日恋爱 · H5 预览 · 页面层（各屏样式） */

/* ============ 启动页 ============ */
.launch { position: relative; min-height: 100%; background: linear-gradient(168deg, #191521 0%, #271C2C 52%, #3E2436 100%); display: flex; flex-direction: column; padding: 0 28px; overflow: hidden; }
.launch-glow { position: absolute; top: -130px; right: -110px; width: 380px; height: 380px; border-radius: 50%; background: radial-gradient(circle, rgba(229, 72, 77, 0.42) 0%, rgba(229, 72, 77, 0) 68%); pointer-events: none; animation: floaty 7s ease-in-out infinite; }
.launch-glow.b { top: auto; right: auto; bottom: -160px; left: -130px; width: 340px; height: 340px; background: radial-gradient(circle, rgba(255, 122, 89, 0.24) 0%, rgba(255, 122, 89, 0) 68%); animation-delay: 2s; }
.launch .mock-tag { position: absolute; top: 16px; right: 20px; font-size: 11px; color: rgba(255, 255, 255, 0.55); border: 1px solid rgba(255, 255, 255, 0.22); border-radius: 999px; padding: 3px 10px; z-index: 5; }
.launch-top { padding-top: 19vh; position: relative; z-index: 2; }
.wordmark { font-size: 68px; font-weight: 800; letter-spacing: 10px; color: #fff; line-height: 1.08; text-shadow: 0 10px 40px rgba(229, 72, 77, 0.35); }
.wordmark-sub { margin-top: 10px; font-size: 11px; letter-spacing: 4.5px; color: rgba(255, 255, 255, 0.4); }
.launch-mid { margin-top: 42px; position: relative; z-index: 2; flex: 1; }
.slogan { font-size: 17.5px; color: rgba(255, 255, 255, 0.94); line-height: 1.62; font-weight: 500; }
.features { margin-top: 30px; padding: 0; list-style: none; }
.feature { display: flex; align-items: center; gap: 13px; margin-bottom: 16px; font-size: 13.5px; color: rgba(255, 255, 255, 0.68); line-height: 1.5; }
.feature .icon-chip { background: rgba(255, 255, 255, 0.09); border: 1px solid rgba(255, 255, 255, 0.12); color: #FFB4A0; width: 34px; height: 34px; }
.feature .ic { width: 17px; height: 17px; }
.launch-bottom { position: relative; z-index: 2; padding-bottom: 36px; }
.agree { display: flex; align-items: flex-start; justify-content: center; margin-top: 14px; cursor: pointer; }
.check { width: 17px; height: 17px; border-radius: 50%; border: 1.5px solid rgba(255, 255, 255, 0.35); margin: 1px 7px 0 0; flex-shrink: 0; position: relative; transition: all 0.18s ease; }
.check.on { background: linear-gradient(135deg, #E5484D, #FF7A59); border-color: transparent; }
.check.on::after { content: ''; position: absolute; left: 5px; top: 2px; width: 5px; height: 9px; border-right: 2px solid #fff; border-bottom: 2px solid #fff; transform: rotate(45deg); }
.agree-text { font-size: 11.5px; color: rgba(255, 255, 255, 0.45); line-height: 1.6; }
.agree-text u { color: rgba(255, 255, 255, 0.82); text-decoration: none; }

/* ============ 首页 ============ */
.hero {
  position: relative; margin-top: 2px; border-radius: var(--radius-xl);
  padding: 22px 20px 24px; background: var(--grad-ink);
  box-shadow: 0 16px 40px rgba(23, 20, 30, 0.35);
  overflow: hidden;
}
.hero::before { content: ''; position: absolute; inset: 0; background: var(--grad-glow); pointer-events: none; }
.hero::after {
  content: ''; position: absolute; right: -20px; bottom: -34px; width: 150px; height: 150px;
  border: 22px solid rgba(255, 255, 255, 0.045); border-radius: 50%; pointer-events: none;
}
.hero-top { display: flex; align-items: baseline; justify-content: space-between; position: relative; }
.hero-greeting { color: #fff; font-size: 15px; font-weight: 600; }
.hero-date { color: rgba(255, 255, 255, 0.45); font-size: 11.5px; }
.hero-title { margin-top: 22px; color: #fff; font-size: 20px; font-weight: 700; line-height: 1.4; position: relative; }
.hero-desc { margin-top: 8px; color: rgba(255, 255, 255, 0.58); font-size: 13px; line-height: 1.6; position: relative; }
.hero-btn { margin-top: 20px; position: relative; }
.hero-btn-ghost { background: rgba(255, 255, 255, 0.08); color: rgba(255, 255, 255, 0.92); border: 1px solid rgba(255, 255, 255, 0.25); box-shadow: none; }
.hero-pills { display: flex; gap: 8px; margin-top: 14px; position: relative; }
.hero-pill { display: inline-flex; align-items: center; gap: 5px; font-size: 11px; color: rgba(255, 255, 255, 0.72); background: rgba(255, 255, 255, 0.08); border: 1px solid rgba(255, 255, 255, 0.12); border-radius: 999px; padding: 3px 10px; }
.hero-pill .ic { width: 12px; height: 12px; }

.entries { display: flex; margin-top: 12px; gap: 10px; }
.entry { flex: 1; background: var(--surface); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); padding: 15px; cursor: pointer; transition: transform 0.18s ease, box-shadow 0.18s ease; border: 1px solid var(--line); }
.entry:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.entry-title { display: flex; align-items: center; font-size: 14.5px; font-weight: 700; }
.entry-title .ic { width: 16px; height: 16px; color: var(--brand); margin-right: 7px; }
.entry-desc { margin-top: 5px; font-size: 11px; color: var(--ink-3); line-height: 1.5; }
.entry-badge { margin-left: 6px; min-width: 17px; height: 17px; padding: 0 5px; border-radius: 999px; background: var(--brand); color: #fff; font-size: 10.5px; font-weight: 600; display: inline-flex; align-items: center; justify-content: center; }

/* 今日推荐 */
.rec-card { display: flex; align-items: center; gap: 12px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); padding: 13px 14px; margin-bottom: 10px; cursor: pointer; transition: transform 0.18s ease, box-shadow 0.18s ease; }
.rec-card:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }
.rec-body { flex: 1; min-width: 0; }
.rec-name { font-size: 14.5px; font-weight: 700; display: flex; align-items: center; gap: 7px; }
.rec-score { display: inline-flex; align-items: center; gap: 3px; font-size: 10.5px; color: var(--brand); background: var(--brand-soft); border-radius: 999px; padding: 2px 8px; font-weight: 700; }
.rec-score .ic { width: 11px; height: 11px; }
.rec-meta { margin-top: 3px; font-size: 11.5px; color: var(--ink-3); }
.rec-invite { width: 40px; height: 40px; border-radius: 50%; border: none; background: var(--brand-soft); color: var(--brand); display: flex; align-items: center; justify-content: center; cursor: pointer; flex-shrink: 0; transition: all 0.16s ease; }
.rec-invite:hover { background: var(--brand); color: #fff; }
.rec-invite .ic { width: 17px; height: 17px; }

/* 自动匹配 */
.auto-btn { margin-top: 10px; }
.auto-overlay { position: absolute; inset: 0; z-index: 500; background: rgba(16, 13, 20, 0.92); backdrop-filter: blur(6px); display: flex; flex-direction: column; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.25s ease; }
.auto-overlay.show { opacity: 1; pointer-events: auto; }
.auto-ring { position: relative; width: 132px; height: 132px; display: flex; align-items: center; justify-content: center; }
.auto-ring::before, .auto-ring::after { content: ''; position: absolute; inset: 0; border-radius: 50%; border: 2px solid rgba(229, 72, 77, 0.65); animation: pulseRing 2s ease-out infinite; }
.auto-ring::after { animation-delay: 0.7s; }
.auto-core { width: 76px; height: 76px; border-radius: 50%; background: var(--grad-brand); display: flex; align-items: center; justify-content: center; color: #fff; box-shadow: 0 14px 40px rgba(229, 72, 77, 0.5); animation: floaty 2.4s ease-in-out infinite; }
.auto-core .ic { width: 34px; height: 34px; }
.auto-title { margin-top: 30px; color: #fff; font-size: 17px; font-weight: 700; }
.auto-desc { margin-top: 8px; color: rgba(255, 255, 255, 0.5); font-size: 12.5px; text-align: center; line-height: 1.7; padding: 0 44px; }
.auto-cancel { margin-top: 34px; }
.auto-steps { margin-top: 22px; display: flex; flex-direction: column; gap: 9px; }
.auto-step { display: flex; align-items: center; gap: 9px; font-size: 12.5px; color: rgba(255, 255, 255, 0.4); transition: color 0.3s ease; }
.auto-step.on { color: rgba(255, 255, 255, 0.92); }
.auto-step .dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; opacity: 0.6; }
.auto-step.on .dot { background: var(--coral); opacity: 1; box-shadow: 0 0 10px rgba(255, 122, 89, 0.8); }

/* 模式与场景 */
.modes { display: flex; flex-wrap: wrap; }
.mode-chip { display: inline-flex; align-items: center; gap: 6px; padding: 6px 14px; border-radius: 999px; background: var(--surface); border: 1px solid var(--line); color: var(--ink-2); font-size: 13px; margin: 0 8px 8px 0; cursor: pointer; transition: all 0.18s ease; }
.mode-chip .ic { width: 14px; height: 14px; }
.mode-chip.on { color: #fff; font-weight: 600; border-color: transparent; box-shadow: 0 6px 16px rgba(23, 24, 28, 0.16); }

.hscroll { display: flex; overflow-x: auto; padding: 2px 16px 8px; margin: 0 -16px; scrollbar-width: none; }
.hscroll::-webkit-scrollbar { display: none; }
.scene-card { position: relative; width: 204px; margin-right: 12px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); padding: 15px 15px 17px; flex-shrink: 0; cursor: pointer; transition: transform 0.18s ease, box-shadow 0.18s ease; overflow: hidden; }
.scene-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.scene-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--mode-c, var(--brand)); }
.scene-head { display: flex; align-items: center; gap: 9px; }
.scene-icon { width: 32px; height: 32px; border-radius: 10px; display: flex; align-items: center; justify-content: center; }
.scene-icon .ic { width: 17px; height: 17px; }
.scene-name { font-size: 15px; font-weight: 700; }
.scene-desc { margin-top: 9px; font-size: 12px; color: var(--ink-2); line-height: 1.55; min-height: 37px; }
.scene-meta { margin-top: 8px; font-size: 11px; color: var(--ink-3); display: flex; align-items: center; gap: 5px; }
.scene-meta .ic { width: 12px; height: 12px; }
.scene-season { display: inline-flex; margin-top: 7px; font-size: 10.5px; color: var(--warn); background: var(--warn-soft); border-radius: 6px; padding: 2px 8px; }

.route-card { display: flex; gap: 13px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); padding: 15px 16px; margin-bottom: 11px; }
.route-bar { width: 4px; border-radius: 4px; flex-shrink: 0; background: var(--mode-c, var(--brand)); }
.route-name { font-size: 15px; font-weight: 700; display: flex; align-items: center; gap: 7px; }
.route-desc { margin-top: 4px; font-size: 12.5px; color: var(--ink-2); }
.route-steps { margin-top: 7px; font-size: 11.5px; color: var(--ink-3); line-height: 1.6; display: flex; align-items: center; flex-wrap: wrap; gap: 4px; }
.route-steps .ic { width: 12px; height: 12px; color: var(--ink-3); }

/* 步骤时间线 */
.steps-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); padding: 18px 16px 8px; }
.timeline { display: flex; justify-content: space-between; position: relative; }
.timeline::before { content: ''; position: absolute; left: 22px; right: 22px; top: 17px; height: 2px; background: var(--line); }
.tl-step { display: flex; flex-direction: column; align-items: center; gap: 9px; position: relative; z-index: 1; width: 25%; }
.tl-dot { width: 36px; height: 36px; border-radius: 50%; background: var(--surface); border: 2px solid var(--line); color: var(--ink-3); display: flex; align-items: center; justify-content: center; }
.tl-dot .ic { width: 17px; height: 17px; }
.tl-step.on .tl-dot { background: var(--grad-brand); border-color: transparent; color: #fff; box-shadow: 0 6px 16px rgba(229, 72, 77, 0.32); }
.tl-name { font-size: 11.5px; font-weight: 600; color: var(--ink-2); }
.tl-sub { font-size: 10px; color: var(--ink-3); margin-top: -6px; padding-bottom: 10px; }

.rules-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); padding: 6px 16px; }
.rule { display: flex; gap: 12px; padding: 13px 0; border-bottom: 1px solid var(--line); }
.rule:last-child { border-bottom: none; }
.rule .icon-chip { background: var(--brand-soft); color: var(--brand); }
.rule-title { font-size: 14px; font-weight: 600; }
.rule-desc { margin-top: 3px; font-size: 12px; color: var(--ink-3); line-height: 1.55; }

.footer { margin-top: 28px; text-align: center; font-size: 11.5px; color: var(--ink-3); }

/* ============ 资料 ============ */
.form-card { padding: 4px 16px; }
.bio-input { width: 100%; min-height: 70px; font-size: 14px; line-height: 1.6; border: none; outline: none; resize: none; font-family: inherit; background: transparent; color: var(--ink); }
.bio-count { text-align: right; font-size: 11px; color: var(--ink-3); padding-top: 5px; }
.tag-wrap { display: flex; flex-wrap: wrap; }
.photo-grid { display: flex; flex-wrap: wrap; }
.photo { position: relative; width: 100px; height: 100px; border-radius: var(--radius-md); margin: 0 11px 11px 0; overflow: hidden; cursor: pointer; }
.photo:nth-child(3n) { margin-right: 0; }
.photo-img { width: 100%; height: 100%; object-fit: cover; background: var(--surface-2); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 22px; font-weight: 700; }
.photo-del { position: absolute; top: 5px; right: 5px; width: 22px; height: 22px; border-radius: 50%; background: rgba(0, 0, 0, 0.55); color: #fff; font-size: 14px; display: flex; align-items: center; justify-content: center; border: none; cursor: pointer; backdrop-filter: blur(4px); }
.photo-add { border: 1.5px dashed var(--line); background: var(--surface-2); display: flex; flex-direction: column; align-items: center; justify-content: center; color: var(--ink-3); transition: all 0.18s ease; }
.photo-add:hover { border-color: var(--brand); color: var(--brand); background: var(--brand-soft); }
.photo-plus { display: flex; }
.photo-plus .ic { width: 22px; height: 22px; }
.photo-hint { margin-top: 5px; font-size: 11px; }
.note { margin-top: 4px; font-size: 11.5px; color: var(--ink-3); }
.status-banner { display: flex; align-items: center; gap: 9px; margin-top: 8px; padding: 12px 14px; border-radius: var(--radius-md); background: var(--brand-soft); }
.status-banner .ic { width: 16px; height: 16px; color: var(--brand); }
.status-banner-text { font-size: 12.5px; color: var(--brand); }
.status-banner.warn { background: var(--warn-soft); }
.status-banner.warn .ic, .status-banner.warn .status-banner-text { color: var(--warn); }

/* ============ 发现 ============ */
.discover-head { padding: 14px 4px 4px; }
.discover-count { font-size: 16px; font-weight: 700; }
.discover-sub { margin-top: 3px; font-size: 11.5px; color: var(--ink-3); }
.cand { display: flex; align-items: center; gap: 13px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); padding: 14px; margin-top: 11px; cursor: pointer; transition: transform 0.18s ease, box-shadow 0.18s ease; }
.cand:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.cand-photo { width: 68px; height: 68px; border-radius: 16px; overflow: hidden; flex-shrink: 0; box-shadow: var(--shadow-sm); }
.cand-body { flex: 1; margin-left: 0; min-width: 0; }
.cand-name { font-size: 15.5px; font-weight: 700; display: flex; align-items: center; gap: 8px; }
.cand-score { display: inline-flex; align-items: center; gap: 3px; font-size: 10px; font-weight: 700; color: var(--brand); background: var(--brand-soft); border-radius: 999px; padding: 2px 7px; }
.cand-score .ic { width: 10px; height: 10px; }
.cand-meta { margin-top: 3px; font-size: 12px; color: var(--ink-2); }
.cand-job { margin-top: 2px; font-size: 11.5px; color: var(--ink-3); }
.cand-tags { display: flex; flex-wrap: wrap; margin-top: 7px; }
.sk-card { display: flex; align-items: center; gap: 13px; margin-top: 11px; padding: 14px; border-radius: var(--radius-lg); }
.sk-avatar { width: 68px; height: 68px; border-radius: 16px; }
.sk-lines { flex: 1; display: flex; flex-direction: column; gap: 8px; }
.sk-line { height: 12px; border-radius: 6px; }

/* ============ 候选人详情 ============ */
.user-hero { position: relative; margin-top: 6px; height: 290px; border-radius: var(--radius-xl); overflow: hidden; box-shadow: 0 16px 40px rgba(23, 20, 30, 0.28); }
.user-hero-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.user-hero-fallback { width: 100%; height: 100%; background: var(--grad-ink); display: flex; align-items: center; justify-content: center; }
.user-hero-initial { font-size: 84px; font-weight: 700; color: rgba(255, 255, 255, 0.86); }
.user-hero-shade { position: absolute; left: 0; right: 0; bottom: 0; height: 160px; background: linear-gradient(to top, rgba(12, 10, 14, 0.85), rgba(12, 10, 14, 0)); }
.user-hero-info { position: absolute; left: 20px; right: 20px; bottom: 18px; }
.user-hero-name { color: #fff; font-size: 22px; font-weight: 700; }
.user-hero-meta { margin-top: 5px; color: rgba(255, 255, 255, 0.84); font-size: 12.5px; display: flex; align-items: center; gap: 6px; }
.user-hero-meta .ic { width: 13px; height: 13px; }
.user-hero-job { margin-top: 3px; color: rgba(255, 255, 255, 0.62); font-size: 12.5px; }
.rows { padding: 4px 16px; }
.row-item { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 14px; }
.row-item:last-child { border-bottom: none; }
.row-item-k { display: flex; align-items: center; gap: 7px; color: var(--ink-3); flex-shrink: 0; }
.row-item-k .ic { width: 14px; height: 14px; }
.row-item-v { text-align: right; }
.bio-text { font-size: 14px; line-height: 1.7; color: var(--ink-2); }
.safety-note { display: flex; gap: 9px; margin: 20px 4px 0; font-size: 11.5px; color: var(--ink-3); line-height: 1.6; }
.safety-note .ic { width: 14px; height: 14px; flex-shrink: 0; margin-top: 1px; color: var(--ok); }

/* ============ 邀请中心 ============ */
.seg { position: relative; display: flex; background: var(--surface); border: 1px solid var(--line); border-radius: 999px; padding: 4px; margin-top: 12px; box-shadow: var(--shadow-sm); }
.seg-item { position: relative; z-index: 1; flex: 1; text-align: center; padding: 8px 0; border-radius: 999px; font-size: 13.5px; color: var(--ink-2); cursor: pointer; transition: color 0.2s ease; }
.seg-item.on { color: #fff; font-weight: 600; }
.seg-thumb { position: absolute; top: 4px; bottom: 4px; width: calc(50% - 4px); border-radius: 999px; background: var(--grad-brand); box-shadow: 0 6px 16px rgba(229, 72, 77, 0.3); transition: transform 0.26s cubic-bezier(0.32, 0.72, 0, 1); }
.seg-thumb.right { transform: translateX(100%); }
.app-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); padding: 15px; margin-top: 12px; animation: pageIn 0.3s ease both; }
.app-head { display: flex; align-items: center; }
.app-who { flex: 1; margin-left: 11px; }
.app-name { font-size: 15px; font-weight: 600; }
.app-meta { margin-top: 2px; font-size: 11.5px; color: var(--ink-3); }
.app-time { font-size: 11px; color: var(--ink-3); }
.app-msg { position: relative; margin-top: 11px; padding: 11px 13px; border-radius: var(--radius-md); background: var(--surface-2); border: 1px solid var(--line); font-size: 13.5px; color: var(--ink-2); line-height: 1.6; }
.app-actions { display: flex; margin-top: 13px; gap: 10px; }
.app-actions .btn { flex: 1; }
.app-foot { margin-top: 11px; }

/* ============ CP 空间 ============ */
.cp-pair { display: flex; align-items: center; justify-content: center; padding: 26px 0 12px; }
.cp-side { cursor: pointer; }
.cp-side:active { opacity: 0.85; }
.cp-side { display: flex; flex-direction: column; align-items: center; width: 104px; }
.cp-avatar-ring { padding: 3px; border-radius: 50%; background: linear-gradient(135deg, rgba(229, 72, 77, 0.5), rgba(255, 122, 89, 0.25)); }
.cp-avatar-ring.me { background: var(--grad-brand); }
.cp-avatar { width: 64px; height: 64px; border-radius: 50%; color: #fff; font-size: 25px; font-weight: 700; display: flex; align-items: center; justify-content: center; overflow: hidden; border: 3px solid var(--bg); }
.cp-avatar img { width: 100%; height: 100%; object-fit: cover; }
.cp-label { margin-top: 10px; font-size: 13.5px; font-weight: 600; max-width: 104px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.cp-link { padding: 0 4px 30px; color: var(--brand); position: relative; }
.cp-link .ic { width: 22px; height: 22px; filter: drop-shadow(0 4px 10px rgba(229, 72, 77, 0.4)); }
.cp-status { text-align: center; font-size: 13.5px; color: var(--ink-2); margin-bottom: 4px; }

.stepper { display: flex; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); padding: 15px 8px 12px; margin-top: 14px; }
.step-item { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 7px; position: relative; }
.step-item:not(:last-child)::after { content: ''; position: absolute; top: 14px; left: calc(50% + 18px); right: calc(-50% + 18px); height: 2px; background: var(--line); }
.step-item.done:not(:last-child)::after { background: rgba(229, 72, 77, 0.45); }
.step-dot { width: 30px; height: 30px; border-radius: 50%; background: var(--surface-2); border: 1.5px solid var(--line); color: var(--ink-3); display: flex; align-items: center; justify-content: center; position: relative; z-index: 1; transition: all 0.25s ease; }
.step-dot .ic { width: 14px; height: 14px; }
.step-item.cur .step-dot { background: var(--grad-brand); border-color: transparent; color: #fff; box-shadow: 0 6px 16px rgba(229, 72, 77, 0.35); }
.step-item.done .step-dot { background: var(--brand-soft); border-color: transparent; color: var(--brand); }
.step-name { font-size: 10.5px; color: var(--ink-3); }
.step-item.cur .step-name, .step-item.done .step-name { color: var(--ink); font-weight: 600; }

.chat-entry { display: flex; align-items: center; gap: 11px; margin: 13px 0 4px; padding: 13px 15px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); cursor: pointer; transition: transform 0.18s ease; }
.chat-entry:hover { transform: translateY(-1px); }
.chat-entry-bubble { width: 32px; height: 32px; border-radius: 11px; background: var(--brand-soft); color: var(--brand); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.chat-entry-bubble .ic { width: 17px; height: 17px; }
.chat-entry-text { flex: 1; font-size: 15px; font-weight: 600; }
.chat-entry-meta { font-size: 12px; color: var(--ink-3); margin-right: 7px; }
.chat-entry-meta.hot { color: var(--brand); font-weight: 600; }

.modes-grid { display: flex; flex-wrap: wrap; justify-content: space-between; }
.mode-card { width: calc(50% - 6px); background: var(--surface); border: 1.5px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); padding: 14px; margin-bottom: 12px; cursor: pointer; transition: all 0.18s ease; }
.mode-card:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }
.mode-card.mine { border-color: rgba(229, 72, 77, 0.5); }
.mode-card.theirs { border-color: rgba(76, 127, 224, 0.5); }
.mode-card.agreed { border-color: var(--brand); background: var(--brand-soft); box-shadow: 0 8px 20px rgba(229, 72, 77, 0.16); }
.mode-card-top { display: flex; align-items: center; gap: 8px; }
.mode-card-icon { width: 30px; height: 30px; border-radius: 10px; display: flex; align-items: center; justify-content: center; }
.mode-card-icon .ic { width: 16px; height: 16px; }
.mode-card-name { font-size: 14.5px; font-weight: 700; }
.mode-card-tagline { margin-top: 7px; font-size: 11.5px; color: var(--ink-3); line-height: 1.5; }
.mode-card-badges { display: flex; margin-top: 8px; min-height: 19px; }
.mode-badge { font-size: 10.5px; border-radius: 6px; padding: 2px 7px; margin-right: 6px; font-weight: 600; }

.route-card2 { display: flex; gap: 13px; background: var(--surface); border: 1.5px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); padding: 15px 16px; margin-bottom: 11px; cursor: pointer; transition: all 0.18s ease; }
.route-card2:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }
.route-card2.mine { border-color: rgba(229, 72, 77, 0.5); }
.route-card2.theirs { border-color: rgba(76, 127, 224, 0.5); }
.route-card2.agreed { border-color: var(--brand); box-shadow: 0 8px 20px rgba(229, 72, 77, 0.16); }
.route-head { display: flex; align-items: center; }
.route-head .mini-badge { margin-left: 7px; font-size: 10px; color: var(--ink-2); background: var(--surface-2); border: 1px solid var(--line); border-radius: 6px; padding: 2px 6px; }

.dates { display: flex; overflow-x: auto; padding: 2px 0 6px; scrollbar-width: none; }
.dates::-webkit-scrollbar { display: none; }
.date-chip { width: 64px; padding: 11px 0; border-radius: var(--radius-md); background: var(--surface); border: 1.5px solid var(--line); text-align: center; margin-right: 9px; flex-shrink: 0; cursor: pointer; transition: all 0.16s ease; }
.date-chip:hover { transform: translateY(-1px); }
.date-chip.mine { border-color: rgba(229, 72, 77, 0.5); }
.date-chip.theirs { border-color: rgba(76, 127, 224, 0.5); }
.date-chip.agreed { border-color: var(--brand); background: var(--brand-soft); }
.date-chip.today .date-label { color: var(--brand); }
.date-label { font-size: 13.5px; font-weight: 700; }
.date-week { margin-top: 3px; font-size: 10.5px; color: var(--ink-3); }

.day-banner { margin-top: 12px; padding: 16px; border-radius: var(--radius-lg); background: linear-gradient(135deg, var(--brand-soft), var(--warn-soft)); border: 1px solid rgba(229, 72, 77, 0.18); }
.day-banner-title { font-size: 14.5px; font-weight: 700; color: var(--brand); display: flex; align-items: center; gap: 7px; }
.day-banner-title .ic { width: 15px; height: 15px; }
.day-banner-desc { margin-top: 6px; font-size: 11.5px; color: var(--brand); opacity: 0.78; }
.day-banner-link { margin-top: 9px; font-size: 12px; color: var(--brand); font-weight: 600; cursor: pointer; display: flex; align-items: center; gap: 5px; }
.day-banner-link .ic { width: 13px; height: 13px; }
.day-banner-link.done { opacity: 0.75; }

.tasks-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); padding: 6px 16px; }
.task-progress { display: flex; align-items: center; gap: 10px; padding: 12px 0 4px; }
.task-progress-bar { flex: 1; height: 6px; border-radius: 6px; background: var(--surface-2); overflow: hidden; }
.task-progress-fill { height: 100%; border-radius: 6px; background: var(--grad-brand); transition: width 0.35s cubic-bezier(0.32, 0.72, 0, 1); }
.task-progress-text { font-size: 11.5px; color: var(--ink-3); font-variant-numeric: tabular-nums; }
.task { display: flex; align-items: flex-start; padding: 13px 0; border-bottom: 1px solid var(--line); cursor: pointer; transition: opacity 0.2s; }
.task:last-child { border-bottom: none; }
.task:hover { opacity: 0.85; }
.task-check { width: 20px; height: 20px; border-radius: 50%; border: 1.5px solid var(--line); margin: 2px 11px 0 0; flex-shrink: 0; position: relative; transition: all 0.18s ease; }
.task-check.on { border-color: rgba(229, 72, 77, 0.6); background: var(--brand-soft); }
.task-check.both { border-color: transparent; background: var(--grad-brand); }
.task-check.both::after { content: ''; position: absolute; left: 6px; top: 3px; width: 5px; height: 9px; border-right: 2px solid #fff; border-bottom: 2px solid #fff; transform: rotate(45deg); }
.task-body { flex: 1; }
.task-title { font-size: 14px; font-weight: 600; }
.task.done .task-title { color: var(--ink-3); text-decoration: line-through; }
.task-desc { margin-top: 3px; font-size: 12px; color: var(--ink-3); line-height: 1.55; }
.task-state { margin-left: 8px; padding-top: 3px; font-size: 10.5px; color: var(--ink-3); flex-shrink: 0; }

.choice-actions { display: flex; gap: 10px; }
.choice-btn { flex: 1; height: 50px; }
.choice-wait { display: flex; align-items: center; justify-content: center; gap: 9px; padding: 18px 16px; border-radius: var(--radius-lg); background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow-sm); font-size: 14px; color: var(--ink-2); }
.choice-wait .ic { width: 16px; height: 16px; color: var(--brand); }

/* 评价 */
.eval-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); padding: 20px 16px; text-align: center; }
.eval-title { font-size: 15px; font-weight: 700; }
.eval-sub { margin-top: 5px; font-size: 12px; color: var(--ink-3); }
.stars { display: flex; justify-content: center; gap: 9px; margin-top: 16px; }
.star-btn { width: 34px; height: 34px; cursor: pointer; color: var(--line); transition: transform 0.15s ease, color 0.15s ease; }
.star-btn .ic { width: 34px; height: 34px; }
.star-btn .ic path { stroke-width: 1.6; }
.star-btn.on { color: #F2B33D; }
.star-btn.on .ic path { fill: #F2B33D; stroke: #F2B33D; }
.star-btn:active { transform: scale(1.18); }
.eval-tags { display: flex; flex-wrap: wrap; justify-content: center; margin-top: 16px; }
.eval-done { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 14px; font-size: 12.5px; color: var(--ok); }
.eval-done .ic { width: 15px; height: 15px; }
.eval-partner { margin-top: 10px; font-size: 12.5px; color: var(--ink-2); display: flex; align-items: center; justify-content: center; gap: 6px; }
.eval-partner .ic { width: 14px; height: 14px; color: #F2B33D; }

.result { margin-top: 30px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-xl); box-shadow: var(--shadow-md); padding: 34px 24px; text-align: center; position: relative; overflow: hidden; }
.result-art { margin: 0 auto 16px; width: 86px; height: 86px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.result-art .ic { width: 40px; height: 40px; }
.result-art.ok { background: var(--brand-soft); color: var(--brand); }
.result-art.gray { background: var(--surface-2); color: var(--ink-3); }
.result-title { font-size: 19px; font-weight: 700; }
.result-desc { margin-top: 10px; font-size: 13px; color: var(--ink-3); line-height: 1.7; }
.result-btn { margin-top: 26px; }

/* ============ 聊天 ============ */
.chat-page { display: flex; flex-direction: column; height: 100%; background: var(--bg); }

/* 聊天页：约会安排面板 */
.chat-plan-bar { display: flex; align-items: center; gap: 9px; padding: 9px 16px; cursor: pointer; border-bottom: 1px solid var(--line); background: var(--surface); flex-shrink: 0; }
.chat-plan-ic { width: 24px; height: 24px; border-radius: 8px; background: var(--brand-soft); color: var(--brand); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.chat-plan-ic .ic { width: 14px; height: 14px; }
.chat-plan-text { flex: 1; font-size: 12px; color: var(--ink-2); overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
.chat-plan-chev { width: 7px; height: 7px; border-right: 2px solid var(--ink-3); border-bottom: 2px solid var(--ink-3); transform: rotate(45deg); transition: transform 0.2s ease; margin-right: 3px; flex-shrink: 0; }
.chat-plan-chev.up { transform: rotate(-135deg); }
.chat-plan-panel { padding: 2px 16px 14px; max-height: 46vh; overflow-y: auto; border-bottom: 1px solid var(--line); background: var(--surface); flex-shrink: 0; scrollbar-width: none; }
.chat-plan-panel::-webkit-scrollbar { display: none; }
.chat-plan-panel .plan-label { font-size: 11.5px; color: var(--ink-3); margin: 12px 0 8px; }
.chat-plan-panel .plan-label:first-child { margin-top: 8px; }
.chat-plan-panel .mode-chip { cursor: pointer; }
.chat-plan-panel .route-card2 { cursor: pointer; margin-bottom: 8px; }
.chat-plan-panel .stepper { margin-top: 8px; box-shadow: none; border: none; background: transparent; padding: 8px 0 14px; }
.chat-plan-panel .result { margin-top: 12px; }
.chat-plan-panel .modes-grid .mode-card { margin-bottom: 10px; }
.plan-done { display: flex; align-items: center; gap: 7px; margin: 10px 0 2px; padding: 10px 12px; border-radius: 10px; background: var(--brand-soft); color: var(--brand); font-size: 13px; font-weight: 600; }
.plan-done .ic { width: 14px; height: 14px; flex-shrink: 0; }
.chat-avatar--tap { cursor: pointer; }
.chat-scroll { flex: 1; overflow-y: auto; padding: 6px 16px 12px; scrollbar-width: none; }
.chat-scroll::-webkit-scrollbar { display: none; }
.chat-hint { text-align: center; font-size: 12px; color: var(--ink-3); padding: 60px 0; }
.chat-time { display: flex; justify-content: center; margin: 16px 0 10px; }
.chat-time span { font-size: 10.5px; color: var(--ink-3); background: var(--surface); border: 1px solid var(--line); border-radius: 999px; padding: 2px 10px; }
.chat-row { display: flex; align-items: flex-end; margin-bottom: 9px; animation: pageIn 0.22s ease both; }
.chat-row.me { justify-content: flex-end; }
.chat-avatar { width: 32px; height: 32px; border-radius: 50%; color: #fff; font-size: 12px; font-weight: 600; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-right: 8px; overflow: hidden; }
.chat-avatar.me-avatar { background: var(--grad-brand); margin: 0 0 0 8px; }
.chat-bubble { max-width: 236px; padding: 10px 13px; border-radius: 14px; border-bottom-left-radius: 4px; background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow-sm); font-size: 14px; line-height: 1.55; word-break: break-word; white-space: pre-wrap; }
.chat-bubble.me { background: var(--grad-brand); border: none; color: #fff; border-radius: 14px; border-bottom-right-radius: 4px; box-shadow: 0 6px 16px rgba(229, 72, 77, 0.25); }
.chat-read { text-align: right; font-size: 10px; color: var(--ink-3); margin: -4px 45px 6px 0; }
.chat-typing { display: flex; align-items: center; gap: 4px; padding: 12px 14px; }
.chat-typing i { width: 6px; height: 6px; border-radius: 50%; background: var(--ink-3); display: block; animation: bounceDot 1.2s infinite; }
.chat-typing i:nth-child(2) { animation-delay: 0.15s; }
.chat-typing i:nth-child(3) { animation-delay: 0.3s; }
.chat-notice { display: flex; align-items: center; justify-content: center; gap: 6px; font-size: 10.5px; color: var(--ink-3); padding: 6px 16px 0; }
.chat-notice .ic { width: 12px; height: 12px; color: var(--ok); }
.chat-input-bar { flex-shrink: 0; display: flex; align-items: center; gap: 10px; padding: 8px 12px calc(12px + env(safe-area-inset-bottom)); background: var(--surface); border-top: 1px solid var(--line); }
.chat-field { flex: 1; height: 40px; padding: 0 15px; background: var(--surface-2); border: 1px solid var(--line); border-radius: 999px; font-size: 14px; outline: none; font-family: inherit; color: var(--ink); transition: border-color 0.15s; }
.chat-field:focus { border-color: rgba(229, 72, 77, 0.5); }
.chat-send { width: 40px; height: 40px; border-radius: 50%; background: var(--grad-brand); color: #fff; display: flex; align-items: center; justify-content: center; border: none; cursor: pointer; box-shadow: var(--shadow-float); transition: transform 0.15s; }
.chat-send:active { transform: scale(0.94); }
.chat-send .ic { width: 18px; height: 18px; margin-left: -1px; }
.chat-send.off { opacity: 0.4; }
.chat-closed { flex: 1; text-align: center; padding: 10px 0; font-size: 13px; color: var(--ink-3); background: var(--surface-2); border-radius: 999px; }

/* ============ 安全中心 ============ */
.shield-hero { display: flex; align-items: center; gap: 14px; background: var(--grad-ink); border-radius: var(--radius-xl); padding: 20px; box-shadow: 0 16px 40px rgba(23, 20, 30, 0.3); position: relative; overflow: hidden; margin-top: 4px; }
.shield-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(300px 200px at 90% -20%, rgba(63, 163, 125, 0.4), transparent 70%); }
.shield-hero-icon { width: 46px; height: 46px; border-radius: 15px; background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.14); color: #7ED8B4; display: flex; align-items: center; justify-content: center; position: relative; }
.shield-hero-icon .ic { width: 22px; height: 22px; }
.shield-hero-title { color: #fff; font-size: 16px; font-weight: 700; position: relative; }
.shield-hero-desc { margin-top: 4px; color: rgba(255, 255, 255, 0.55); font-size: 11.5px; position: relative; }
.ticket { position: relative; background: var(--surface); border: 1px dashed rgba(229, 72, 77, 0.4); border-radius: var(--radius-lg); padding: 18px 18px; }
.ticket::before, .ticket::after { content: ''; position: absolute; top: 50%; width: 18px; height: 18px; border-radius: 50%; background: var(--bg); transform: translateY(-50%); }
.ticket::before { left: -10px; }
.ticket::after { right: -10px; }
.trip-text { font-size: 13px; line-height: 1.85; color: var(--ink-2); white-space: pre-wrap; }
.trip-actions { display: flex; margin-top: 11px; gap: 9px; }
.trip-actions .btn { flex: 1; }
.list-card { padding: 4px 16px; }
.block-row { display: flex; align-items: center; padding: 12px 0; border-bottom: 1px solid var(--line); }
.block-row:last-child { border-bottom: none; }
.block-row-name { flex: 1; margin-left: 11px; font-size: 14.5px; }
.block-row-btn { font-size: 13px; color: var(--brand); padding: 5px 12px; border-radius: 999px; border: 1px solid rgba(229, 72, 77, 0.35); cursor: pointer; transition: all 0.15s ease; }
.block-row-btn:hover { background: var(--brand-soft); }
.safety-hint { font-size: 12px; color: var(--ink-3); line-height: 1.6; padding: 4px; }

/* ============ 我的 ============ */
.me-card { display: flex; align-items: center; gap: 15px; margin-top: 12px; padding: 22px 20px; border-radius: var(--radius-xl); background: var(--grad-ink); box-shadow: 0 16px 40px rgba(23, 20, 30, 0.32); position: relative; overflow: hidden; }
.me-card::before { content: ''; position: absolute; inset: 0; background: var(--grad-glow); }
.me-avatar-wrap { position: relative; cursor: pointer; z-index: 1; }
.me-avatar-ring { padding: 3px; border-radius: 50%; background: var(--grad-brand); display: block; }
.me-card-avatar { width: 58px; height: 58px; border-radius: 50%; background: var(--grad-ink); color: #fff; font-size: 23px; font-weight: 700; display: flex; align-items: center; justify-content: center; border: 3px solid rgba(255, 255, 255, 0.14); overflow: hidden; }
.me-card-avatar img { width: 100%; height: 100%; object-fit: cover; }
.me-avatar-edit { position: absolute; right: -2px; bottom: -2px; width: 22px; height: 22px; border-radius: 50%; background: #fff; color: #191A1F; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-sm); border: none; cursor: pointer; }
.me-avatar-edit .ic { width: 12px; height: 12px; }
.me-card-info { position: relative; flex: 1; }
.me-card-name { display: flex; align-items: center; color: #fff; font-size: 17px; font-weight: 700; }
.me-card-admin { margin-left: 8px; font-size: 10px; font-weight: 500; color: rgba(255, 255, 255, 0.78); border: 1px solid rgba(255, 255, 255, 0.35); border-radius: 999px; padding: 1px 7px; }
.me-card-id { margin-top: 5px; color: rgba(255, 255, 255, 0.42); font-size: 11px; letter-spacing: 0.4px; }
.me-credit { display: inline-flex; align-items: center; gap: 4px; margin-top: 8px; font-size: 10.5px; color: #FFD9A8; background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.14); border-radius: 999px; padding: 2px 9px; }
.me-credit .ic { width: 11px; height: 11px; }
.cells { margin-top: 16px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); padding: 0 16px; }
.cell { display: flex; align-items: center; gap: 11px; min-height: 56px; border-bottom: 1px solid var(--line); cursor: pointer; transition: opacity 0.15s; }
.cell:hover { opacity: 0.8; }
.cell:last-child { border-bottom: none; }
.cell-icon { width: 32px; height: 32px; border-radius: 10px; background: var(--surface-2); border: 1px solid var(--line); color: var(--ink-2); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cell-icon .ic { width: 16px; height: 16px; }
.cell-icon.brand { background: var(--brand-soft); border-color: transparent; color: var(--brand); }
.cell-icon.danger { background: var(--brand-soft); border-color: transparent; color: var(--brand); }
.cell-label { flex: 1; font-size: 15px; }
.cell-label.danger { color: var(--brand); }
.cell-hint { margin-right: 8px; font-size: 12px; color: var(--ink-3); }
.cell-badge { margin-right: 8px; min-width: 18px; height: 18px; padding: 0 6px; border-radius: 999px; background: var(--brand); color: #fff; font-size: 11px; font-weight: 600; display: flex; align-items: center; justify-content: center; }
.mine-footer { margin-top: 28px; text-align: center; font-size: 11.5px; color: var(--ink-3); }

/* ============ 管理端 ============ */
.stats { display: flex; flex-wrap: wrap; justify-content: space-between; margin-top: 12px; }
.stat { width: calc(50% - 5px); background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); padding: 16px; margin-bottom: 11px; display: flex; align-items: center; gap: 12px; }
.stat-icon { width: 40px; height: 40px; border-radius: 13px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.stat-icon .ic { width: 19px; height: 19px; }
.stat-num { font-size: 24px; font-weight: 700; line-height: 1.1; font-variant-numeric: tabular-nums; }
.stat-label { margin-top: 3px; font-size: 11.5px; color: var(--ink-3); }
.admin-foot { margin-top: 24px; text-align: center; font-size: 11.5px; color: var(--ink-3); }

.pcard { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); padding: 15px; margin-top: 12px; animation: pageIn 0.3s ease both; }
.pcard-head { display: flex; align-items: center; }
.pcard-who { flex: 1; margin-left: 12px; }
.pcard-name { font-size: 16px; font-weight: 700; }
.pcard-gender { font-size: 12px; font-weight: 400; color: var(--ink-3); margin-left: 5px; }
.pcard-meta { margin-top: 3px; font-size: 12px; color: var(--ink-2); }
.pcard-city { margin-top: 1px; font-size: 11.5px; color: var(--ink-3); }
.pcard-photos { display: flex; margin-top: 11px; gap: 9px; }
.pcard-photo { width: 95px; height: 95px; border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 30px; font-weight: 700; cursor: pointer; overflow: hidden; }
.pcard-photo img { width: 100%; height: 100%; object-fit: cover; }
.pcard-bio { margin-top: 11px; font-size: 13px; line-height: 1.65; color: var(--ink-2); }
.pcard-tags { display: flex; flex-wrap: wrap; margin-top: 8px; }
.pcard-ideal { margin-top: 6px; font-size: 11.5px; color: var(--ink-3); }
.pcard-actions { display: flex; margin-top: 13px; gap: 9px; }
.pcard-actions .btn { flex: 1; }

.rcard { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); padding: 15px; margin-top: 12px; animation: pageIn 0.3s ease both; }
.rcard-head { display: flex; align-items: center; justify-content: space-between; }
.rcard-who { display: flex; align-items: center; }
.rcard-name { font-size: 14.5px; font-weight: 600; }
.rcard-arrow { margin: 0 8px; font-size: 11px; color: var(--ink-3); }
.rcard-time { font-size: 11px; color: var(--ink-3); }
.rcard-reason { display: inline-flex; align-items: center; gap: 5px; margin-top: 10px; font-size: 11.5px; color: var(--brand); background: var(--brand-soft); border-radius: 7px; padding: 4px 10px; font-weight: 600; }
.rcard-reason .ic { width: 12px; height: 12px; }
.rcard-detail { margin-top: 8px; font-size: 13px; line-height: 1.6; color: var(--ink-2); }
.rcard-actions { display: flex; margin-top: 13px; gap: 8px; }
.rcard-actions .btn { flex: 1; height: 41px; font-size: 14px; }
.rcard-warn { color: var(--warn); border-color: rgba(201, 138, 43, 0.4); }

.search-row { display: flex; align-items: center; margin-top: 12px; gap: 9px; }
.search-input { flex: 1; height: 44px; padding: 0 16px; background: var(--surface); border: 1px solid var(--line); border-radius: 999px; font-size: 13.5px; outline: none; box-shadow: var(--shadow-sm); font-family: inherit; color: var(--ink); transition: border-color 0.15s; }
.search-input:focus { border-color: rgba(229, 72, 77, 0.5); }
.search-btn { display: flex; align-items: center; gap: 6px; height: 44px; padding: 0 18px; border-radius: 999px; background: var(--grad-brand); color: #fff; font-size: 13.5px; font-weight: 600; border: none; cursor: pointer; font-family: inherit; box-shadow: var(--shadow-float); }
.search-btn .ic { width: 15px; height: 15px; }
.match-hint { margin: 13px 4px 4px; font-size: 12px; color: var(--ink-3); }
.ucard { display: flex; align-items: center; gap: 12px; background: var(--surface); border: 1.5px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); padding: 13px 15px; margin-top: 10px; cursor: pointer; transition: all 0.18s ease; }
.ucard:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }
.ucard.on { border-color: var(--brand); background: var(--brand-soft); }
.ucard-body { flex: 1; min-width: 0; }
.ucard-name { font-size: 15px; font-weight: 600; }
.ucard-gender { font-size: 11.5px; color: var(--ink-3); font-weight: 400; margin-left: 4px; }
.ucard-meta { margin-top: 3px; font-size: 11.5px; color: var(--ink-3); }
.ucard-check { width: 24px; height: 24px; border-radius: 50%; border: 1.5px solid var(--line); color: #fff; font-size: 12px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all 0.18s ease; }
.ucard-check.on { background: var(--grad-brand); border-color: transparent; }
.match-bar { display: flex; align-items: center; padding: 10px 16px; padding-bottom: max(10px, env(safe-area-inset-bottom)); background: var(--bg); border-top: 1px solid var(--line); }
.match-bar-text { flex: 1; font-size: 14px; font-weight: 600; margin-right: 10px; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
.match-bar-btn { width: 140px; height: 44px; font-size: 14.5px; flex-shrink: 0; }
