/* 黄瓜短剧 V1 · 前台样式 */
:root {
  --bg: #09090b; --bg2: #111114; --bg3: #17171b; --bg4: #202026;
  --line: #1f1f24; --line2: #2c2c33;
  --tx: #f2f0ea; --tx2: #c4c1b7; --tx3: #9c988d; --tx4: #7c7970;
  --acc: #d6b36a; --acc2: #e8cd92; --acc-deep: #b8933f; --acc-ink: #191204;
  --acc-soft: rgba(214,179,106,.13);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { color-scheme: dark; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg); color: var(--tx);
  font: 15px/1.65 -apple-system, BlinkMacSystemFont, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
[hidden] { display: none !important; }
.num { font-variant-numeric: tabular-nums; }
.wrap { max-width: 1480px; margin: 0 auto; padding: 0 20px; }

/* —— 头部 —— */
.site-head { position: sticky; top: 0; z-index: 50; background: rgba(12,13,17,.92); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); }
.head-row { display: flex; align-items: center; gap: 18px; height: 54px; }
.logo { display: inline-flex; align-items: center; font-size: 19px; font-weight: 800; letter-spacing: 2px; color: var(--acc); white-space: nowrap; }
.logo-mark { flex-shrink: 0; display: block; margin-right: 9px; }
.logo span { color: var(--tx); }
.tabs { display: flex; gap: 4px; overflow-x: auto; scrollbar-width: none; }
.tabs::-webkit-scrollbar { display: none; }
.tabs a { padding: 8px 12px 10px; border-radius: 8px; color: var(--tx2); white-space: nowrap; font-size: 14px; }
.tabs a.on { color: var(--acc2); background: transparent; font-weight: 600; position: relative; }
.tabs a.on::after { content: ''; position: absolute; left: 12px; right: 12px; bottom: 0; height: 2px; border-radius: 2px; background: linear-gradient(90deg, transparent, var(--acc), transparent); }
.tabs a:hover { color: var(--tx); }
.search-box { margin-left: auto; }
.search-box input {
  width: 150px; padding: 7px 12px; border-radius: 99px; border: 1px solid var(--line2);
  background: var(--bg2); color: var(--tx); font-size: 13px; outline: none;
}
.search-box input:focus { border-color: var(--acc); width: 190px; }
.me-link { color: var(--tx2); white-space: nowrap; font-size: 14px; padding: 9px 6px; }
.me-link.on { color: var(--acc); }
@media (max-width: 1024px) {
  .head-row { flex-wrap: wrap; height: auto; padding-top: 10px; padding-bottom: 0; row-gap: 2px; }
  .logo { order: 1; }
  .search-box { order: 2; }
  .me-link { order: 3; }
  .tabs { order: 4; width: 100%; }
  .tabs a { font-size: 15px; }
  .search-box input { width: 138px; }
}

/* —— 区块 —— */
main.wrap { padding-top: 22px; padding-bottom: 48px; min-height: 60vh; }
.sec { margin-bottom: 34px; }
.sec-title { font-size: 18px; font-weight: 700; margin-bottom: 14px; display: flex; align-items: baseline; gap: 10px; }
.sec-title small { color: var(--tx3); font-weight: 400; font-size: 12px; }
.sec-more { margin-left: auto; font-size: 13px; color: var(--tx3); padding: 8px 0 8px 10px; margin-top: -8px; margin-bottom: -8px; }
.sec-more:hover { color: var(--acc); }
.page-h1 { font-size: 22px; font-weight: 700; margin-bottom: 6px; }
.page-lead { color: var(--tx3); margin-bottom: 18px; font-size: 14px; }
.crumb { font-size: 14px; color: var(--tx3); margin-bottom: 14px; }
.crumb a { color: var(--tx3); display: inline-block; padding: 6px 2px; margin: -6px -2px; }
.crumb a:hover { color: var(--acc); }

/* —— 卡片网格 —— */
.grid, .grid-feat, .grid-browse { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.grid > *, .grid-feat > *, .grid-browse > * { min-width: 0; }
@media (min-width: 641px) { .grid, .grid-feat, .grid-browse { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; } }
@media (min-width: 900px) { .grid, .grid-feat, .grid-browse { grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 16px; } }
@media (min-width: 1100px) {
  .grid, .grid-browse { grid-template-columns: repeat(auto-fill, minmax(182px, 1fr)); gap: 24px; }
  .grid-feat { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 24px; }
}
.card-cover { position: relative; display: block; border-radius: 12px; overflow: hidden; aspect-ratio: 2/3; background: var(--bg3); box-shadow: 0 1px 0 rgba(255,255,255,.03) inset; transition: box-shadow .25s; }
.card:hover .card-cover { box-shadow: 0 6px 24px rgba(0,0,0,.5), 0 0 0 1px rgba(214,179,106,.25); }
.card-cover img { width: 100%; height: 100%; object-fit: cover; transition: transform .25s; }
.card:hover .card-cover img { transform: scale(1.04); }
.card-line { position: absolute; left: 6px; top: 6px; font-style: normal; font-size: 12px; padding: 2px 8px; border-radius: 6px; background: rgba(10,9,6,.62); color: var(--acc2); border: 1px solid rgba(214,179,106,.28); }
.card-ep { position: absolute; right: 6px; bottom: 6px; font-style: normal; font-size: 12px; padding: 2px 8px; border-radius: 6px; background: rgba(0,0,0,.6); }
.card-title { display: block; margin-top: 8px; font-size: 14px; font-weight: 600; line-height: 1.4; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.card-meta { display: block; margin-top: 2px; font-size: 12px; color: var(--tx4); }
.card-meta a { color: var(--tx3); display: inline-block; padding: 7px 4px; margin: -7px -4px; }
.card-meta a:hover { color: var(--acc); }
/* 封面点击即播放；居中播放图标做"可点播放"的悬停暗示（触屏无 hover，直接点封面即播） */
.card-playhint { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%) scale(.85); width: 52px; height: 52px; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: rgba(10,9,6,.5); color: #fff; border: 1.5px solid rgba(255,255,255,.85); backdrop-filter: blur(3px); opacity: 0; transition: opacity .2s, transform .2s; pointer-events: none; }
.card-playhint svg { width: 24px; height: 24px; margin-left: 3px; }
.card:hover .card-playhint { opacity: 1; transform: translate(-50%, -50%) scale(1); }

/* —— 继续观看条 —— */
.continue-strip { display: flex; align-items: center; gap: 12px; padding: 10px 14px; border: 1px solid var(--line); border-radius: 12px; background: var(--bg2); margin-bottom: 24px; overflow-x: auto; }
.continue-strip[hidden] { display: none; }
.strip-label { font-size: 12px; color: var(--tx3); white-space: nowrap; }
.strip-items { display: flex; gap: 10px; }
.strip-items a { display: flex; align-items: center; gap: 8px; padding: 8px 14px; border-radius: 99px; background: var(--bg3); font-size: 14px; white-space: nowrap; }
.strip-items a b { color: var(--acc); font-weight: 600; }
.strip-items a:hover { background: var(--bg4); }

/* —— 详情页 —— */
.detail { display: flex; gap: 24px; margin-bottom: 30px; }
.detail-cover { flex: 0 0 200px; }
.detail-cover img { border-radius: 12px; aspect-ratio: 2/3; object-fit: cover; }
.detail-info { flex: 1; min-width: 0; }
.detail-meta { display: flex; gap: 12px; align-items: center; color: var(--tx3); font-size: 14px; margin: 8px 0 10px; flex-wrap: wrap; }
.detail-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 12px; }
.detail-intro-wrap { margin-bottom: 18px; max-width: 640px; }
.detail-intro { color: var(--tx2); font-size: 15px; line-height: 1.75; }
.detail-intro.clamped { display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.intro-toggle { margin-top: 6px; font-size: 13px; color: var(--acc); padding: 6px 8px; margin-left: -8px; }
.detail-actions { display: flex; gap: 12px; }
@media (max-width: 640px) { .detail { gap: 14px; } .detail-cover { flex-basis: 120px; } }

.pill { display: inline-flex; align-items: center; padding: 5px 14px; border-radius: 99px; font-size: 14px; background: var(--bg3); color: var(--tx2); }
.pill.on, .pill:hover { background: var(--acc-soft); color: var(--acc); }
.pill-line { background: var(--acc-soft); color: var(--acc); }
.pill-making { background: rgba(208,163,85,.15); color: #d0a355; }
.pill-online { background: rgba(94,170,123,.15); color: #5eaa7b; }

.btn-primary { display: inline-flex; align-items: center; justify-content: center; padding: 9px 22px; border-radius: 99px; background: linear-gradient(160deg, var(--acc2), var(--acc)); color: var(--acc-ink); font-weight: 700; font-size: 14px; letter-spacing: .5px; box-shadow: 0 2px 14px rgba(214,179,106,.22); }
.btn-primary, .btn-ghost { font-size: 15px; white-space: nowrap; flex-shrink: 0; }
.btn-primary:hover { filter: brightness(1.06); }
.btn-ghost { display: inline-flex; align-items: center; padding: 9px 18px; border-radius: 99px; border: 1px solid var(--line2); color: var(--tx2); font-size: 14px; }
.btn-ghost:hover { color: var(--tx); border-color: var(--tx4); }
.btn-ghost.active { color: var(--acc); border-color: var(--acc); }
.btn-block { width: 100%; }

.ep-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(64px, 1fr)); gap: 10px; max-width: 920px; }
.ep-link { display: grid; place-items: center; height: 46px; border-radius: 10px; background: var(--bg3); border: 1px solid var(--line); font-size: 15px; }
.ep-link:hover { background: var(--acc-soft); color: var(--acc); }

/* —— 筛选 —— */
.filters { margin-bottom: 20px; border: 1px solid var(--line); border-radius: 12px; padding: 6px 14px; background: var(--bg2); }
.filter-row { display: flex; align-items: center; gap: 8px; padding: 8px 0; border-bottom: 1px solid var(--line); flex-wrap: wrap; }
.filter-row:last-child { border-bottom: 0; }
.filter-label { font-size: 12px; color: var(--tx4); width: 44px; flex-shrink: 0; }

/* —— 标签云 —— */
.tag-cloud { display: flex; gap: 10px; flex-wrap: wrap; }
.tag-chip { padding: 8px 16px; border-radius: 10px; background: var(--bg2); border: 1px solid var(--line); font-size: 14px; }
.tag-chip span { color: var(--tx4); font-size: 12px; }
.tag-chip:hover { border-color: var(--acc); color: var(--acc); }

/* —— 心愿榜 —— */
.wish-form { display: flex; flex-direction: column; gap: 10px; margin-bottom: 22px; padding: 16px; border: 1px solid var(--line); border-radius: 12px; background: var(--bg2); max-width: 960px; }
.ipt { width: 100%; padding: 11px 15px; border-radius: 10px; border: 1px solid var(--line2); background: var(--bg); color: var(--tx); font: inherit; font-size: 15px; outline: none; }
.ipt:focus { border-color: var(--acc); }
.wish-form .btn-primary { align-self: flex-end; }
.wish-tabs { display: flex; gap: 8px; margin-bottom: 14px; }
.wish-list { list-style: none; display: flex; flex-direction: column; gap: 10px; max-width: 960px; }
.wish-item { display: flex; gap: 14px; align-items: flex-start; padding: 14px 16px; border: 1px solid var(--line); border-radius: 12px; background: var(--bg2); }
.wish-item.top3 { border-color: rgba(214,179,106,.45); }
.wish-item.top3 .wish-rank { color: var(--acc); }
.wish-rank { font-size: 18px; font-weight: 800; color: var(--tx4); width: 28px; text-align: center; flex-shrink: 0; }
.wish-body { flex: 1; min-width: 0; }
.wish-body b { font-size: 14px; }
.wish-body p { color: var(--tx3); font-size: 12px; margin-top: 3px; }
.wish-online-link { display: inline-block; margin-top: 6px; font-size: 12px; color: #5eaa7b; }
.wish-vote { display: flex; flex-direction: column; align-items: center; gap: 2px; flex-shrink: 0; }
.vote-btn { width: 38px; height: 38px; border-radius: 10px; background: var(--bg3); display: grid; place-items: center; }
.vote-btn svg { width: 20px; height: 20px; }
.vote-btn:hover, .vote-btn.voted { background: var(--acc-soft); color: var(--acc); }
.vote-count { font-size: 12px; color: var(--tx3); }

/* —— 搜索 / 表单页 —— */
.search-big { display: flex; gap: 10px; margin: 14px 0 22px; max-width: 560px; }
.search-big .ipt { flex: 1; min-width: 0; }
.auth-wrap { display: flex; justify-content: center; padding: 7vh 16px 60px; }
.auth-panel { width: 100%; max-width: 400px; background: var(--bg2); border: 1px solid var(--line); border-radius: 16px; padding: 32px 28px; }
.auth-title { font-size: 24px; font-weight: 700; text-align: center; }
.auth-lead { font-size: 13px; color: var(--tx3); text-align: center; margin: 8px 0 22px; }
.auth-tabs { display: grid; grid-template-columns: repeat(3, 1fr); background: var(--bg); border: 1px solid var(--line2); border-radius: 12px; padding: 4px; gap: 4px; margin-bottom: 18px; }
.seg { padding: 9px 0; border-radius: 9px; font-size: 14px; color: var(--tx3); text-align: center; }
.seg.on { background: var(--acc-soft); color: var(--acc2); font-weight: 600; }
.auth-form { display: flex; flex-direction: column; gap: 14px; }
.auth-fields { display: flex; flex-direction: column; gap: 14px; }
.row-inline { display: flex; gap: 10px; }
.row-inline .ipt { flex: 1; }
.row-inline .btn-ghost { white-space: nowrap; }
.dev-hint { font-size: 13px; color: #d0a355; }
.notice { padding: 11px 15px; border-radius: 10px; margin-bottom: 14px; font-size: 14px; }
.notice-ok { background: rgba(94,170,123,.12); color: #7fd0a0; }
.notice-err { background: rgba(217,99,99,.12); color: #e89090; }

/* —— 历史 —— */
.history-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.history-list a { display: flex; gap: 12px; align-items: center; padding: 10px; border: 1px solid var(--line); border-radius: 12px; background: var(--bg2); }
.history-list img { width: 52px; aspect-ratio: 2/3; object-fit: cover; border-radius: 8px; }
.history-list b { display: block; font-size: 14px; }
.history-list span { font-size: 12px; color: var(--tx3); }
.history-list em { margin-left: auto; font-style: normal; font-size: 12px; color: var(--acc); white-space: nowrap; }

/* —— 空态 / 分页 / 静态页 —— */
.empty { text-align: center; color: var(--tx3); padding: 40px 0; display: flex; flex-direction: column; gap: 14px; align-items: center; }
.pager { display: flex; gap: 8px; margin-top: 22px; justify-content: center; }
.pager a { padding: 6px 12px; border-radius: 8px; background: var(--bg2); border: 1px solid var(--line); font-size: 13px; }
.pager a.on { background: var(--acc-soft); color: var(--acc); border-color: transparent; }
.static-page { max-width: 720px; color: var(--tx2); font-size: 14px; }
.static-page .page-h1 { margin-bottom: 16px; }

/* —— 页脚 —— */
.site-foot { border-top: 1px solid var(--line); padding: 52px 0 28px; background: #070708; }
.foot-grid { display: grid; grid-template-columns: 1.2fr .7fr .7fr 1.5fr; gap: 44px; margin-bottom: 40px; }
.foot-brand .logo { font-size: 24px; }
.foot-slogan { margin: 12px 0 20px; color: var(--tx4); font-size: 13px; letter-spacing: 2px; }
.foot-social { display: flex; gap: 12px; }
.foot-social a { width: 40px; height: 40px; border-radius: 50%; background: #141419; border: 1px solid var(--line); display: grid; place-items: center; color: var(--tx2); transition: all .2s; }
.foot-social a svg { width: 18px; height: 18px; }
.foot-social a:hover { background: var(--acc-soft); border-color: rgba(214,179,106,.4); color: var(--acc); }
.foot-col { display: flex; flex-direction: column; gap: 4px; }
.foot-col b, .foot-road b { font-size: 12px; color: var(--tx4); letter-spacing: 3px; font-weight: 600; margin-bottom: 10px; display: block; }
.foot-col a { color: var(--tx2); font-size: 14px; padding: 6px 0; }
.foot-col a:hover { color: var(--acc2); }
.foot-road { background: #0d0d11; border: 1px solid var(--line); border-radius: 14px; padding: 20px 22px; }
.road-tip { font-size: 12px; color: var(--tx4); margin: 2px 0 14px; }
.road-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.road-pill { padding: 6px 14px; border-radius: 99px; border: 1px solid var(--line2); font-size: 13px; color: var(--tx2); }
.road-pill.main { border-color: rgba(214,179,106,.5); color: var(--acc2); }
.road-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.road-btn { display: inline-flex; align-items: center; gap: 7px; padding: 8px 16px; border-radius: 99px; border: 1px solid var(--line2); font-size: 13px; color: var(--tx2); white-space: nowrap; }
.road-btn:hover { color: var(--tx); border-color: var(--tx4); }
.road-btn--gold { background: var(--acc-soft); border-color: rgba(214,179,106,.4); color: var(--acc2); }
.foot-bar { border-top: 1px solid var(--line); padding-top: 20px; display: flex; justify-content: space-between; align-items: center; gap: 14px; flex-wrap: wrap; }
.foot-legal { display: flex; gap: 8px; }
.foot-legal a { color: var(--tx4); font-size: 13px; padding: 8px 10px; margin: -8px 0; }
.foot-legal a:hover { color: var(--tx2); }
.foot-copy { font-size: 12px; color: var(--tx4); letter-spacing: 1px; }
@media (max-width: 960px) {
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .foot-brand, .foot-road { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  .site-foot { padding: 36px 0 22px; }
  .foot-grid { gap: 24px; margin-bottom: 30px; }
}

/* —— 桌面大屏适配：容器更宽、字号分级放大 —— */
@media (min-width: 1000px) {
  body { font-size: 16px; }
  .btn-primary, .btn-ghost { font-size: 16px; }
  .pill { font-size: 14px; padding: 6px 16px; }
  .ep-link { font-size: 16px; }
  .cmt-content { font-size: 15px; }
  .cmt-head b { font-size: 14px; }
  .cmt-actions button { font-size: 13px; }
  .cmt-replies li { font-size: 14px; }
  .foot-col a { font-size: 15px; }
  .foot-col b, .foot-road b { font-size: 13px; }
  .road-pill { font-size: 14px; }
  .road-btn { font-size: 14px; }
  .foot-legal a { font-size: 14px; }
  .foot-slogan { font-size: 14px; }
  .road-tip { font-size: 13px; }
  .wrap { padding: 0 36px; }
  .head-row { height: 70px; gap: 28px; }
  .logo { font-size: 28px; letter-spacing: 3px; }
  .tabs { gap: 8px; }
  .tabs a { font-size: 17px; padding: 11px 18px 14px; }
  .tabs a.on::after { left: 16px; right: 16px; }
  .search-box input { width: 240px; font-size: 15px; padding: 10px 18px; }
  .search-box input:focus { width: 280px; }
  .me-link { font-size: 16px; }
  main.wrap { padding-top: 36px; padding-bottom: 72px; }
  .sec { margin-bottom: 52px; }
  .sec-title { font-size: 24px; margin-bottom: 22px; }
  .sec-title small { font-size: 14px; }
  .sec-more { font-size: 14px; }
  .page-h1 { font-size: 28px; margin-bottom: 10px; }
  .page-lead { font-size: 15px; margin-bottom: 24px; }
  .crumb { font-size: 14px; margin-bottom: 18px; }
  .grid { gap: 22px; }
  .grid-feat { gap: 22px; }
  .card-title { font-size: 16px; margin-top: 10px; }
  .card-meta { font-size: 13px; margin-top: 4px; }
  .continue-strip { padding: 14px 18px; }
  .strip-label { font-size: 13px; }
  .strip-items a { font-size: 13px; padding: 8px 16px; }
  .detail { gap: 34px; }
  .detail-cover { flex: 0 0 260px; }
  .detail-meta { font-size: 15px; }
  .detail-intro { font-size: 16px; line-height: 1.75; }
  .detail-intro-wrap { max-width: 780px; }
  .filters { padding: 10px 20px; }
  .filter-label { font-size: 14px; width: 56px; }
  .tag-chip { font-size: 16px; padding: 11px 22px; }
  .wish-form { padding: 22px; }
  .ipt { font-size: 16px; padding: 12px 16px; }
  .wish-item { padding: 18px 22px; }
  .wish-rank { font-size: 22px; width: 34px; }
  .wish-body b { font-size: 17px; }
  .wish-body p { font-size: 14px; }
  .vote-btn { width: 44px; height: 44px; }
  .vote-count { font-size: 13px; }
  .history-list b { font-size: 16px; }
  .history-list span { font-size: 14px; }
  .static-page { font-size: 16px; line-height: 1.85; }
  .notice { font-size: 15px; }
}

/* —— 评论区（详情页）—— */
.cmt-box { max-width: 780px; }
.cmt-form { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.cmt-form-bar { display: flex; align-items: center; justify-content: flex-end; gap: 12px; }
.cmt-reply-chip { font-size: 12px; color: var(--acc2); background: var(--acc-soft); padding: 4px 12px; border-radius: 99px; cursor: pointer; }
.cmt-login-tip { padding: 14px 16px; border: 1px dashed var(--line2); border-radius: 12px; color: var(--tx3); font-size: 14px; margin-bottom: 20px; }
.cmt-login-tip a { color: var(--acc); }
.cmt-list { list-style: none; display: flex; flex-direction: column; gap: 18px; }
.cmt-item { display: flex; gap: 12px; }
.cmt-avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--bg4); display: grid; place-items: center; font-size: 15px; color: var(--acc2); flex-shrink: 0; }
.cmt-body { flex: 1; min-width: 0; border-bottom: 1px solid var(--line); padding-bottom: 14px; }
.cmt-item:last-child .cmt-body { border-bottom: 0; }
.cmt-head { display: flex; align-items: baseline; gap: 10px; }
.cmt-head b { font-size: 13px; color: var(--tx2); }
.cmt-head time { font-size: 12px; color: var(--tx4); }
.cmt-content { font-size: 14px; margin: 4px 0 6px; word-break: break-word; }
.cmt-actions { display: flex; gap: 16px; }
.cmt-actions button { font-size: 12px; color: var(--tx3); padding: 4px 6px; margin: -4px -6px; }
.cmt-actions button:hover, .cmt-like.liked { color: var(--acc); }
.cmt-replies { list-style: none; margin-top: 8px; background: var(--bg2); border-radius: 10px; padding: 10px 14px; display: flex; flex-direction: column; gap: 6px; }
.cmt-replies li { font-size: 13px; color: var(--tx2); word-break: break-word; }
.cmt-replies b { color: var(--tx3); font-weight: 500; }
.cmt-empty { color: var(--tx4); font-size: 14px; padding: 18px 0; }

.cmt-pending { font-style: normal; font-size: 11px; color: #d0a355; background: rgba(208,163,85,.12); padding: 2px 8px; border-radius: 99px; }
.cmt-login-mini { font-size: 12px; color: var(--tx3); margin-right: auto; }
.cmt-login-mini:hover { color: var(--acc); }

/* —— 意见反馈 —— */
.fb-wrap { max-width: 620px; }
.fb-form { display: flex; flex-direction: column; gap: 8px; margin-top: 8px; }
.fb-label { font-size: 14px; color: var(--tx2); margin-top: 10px; font-weight: 600; }
.fb-types { display: flex; flex-wrap: wrap; gap: 8px; }
.fb-type { display: inline-flex; align-items: center; gap: 6px; padding: 8px 14px; border-radius: 99px; border: 1px solid var(--line2); background: var(--bg2); cursor: pointer; font-size: 14px; color: var(--tx2); }
.fb-type input { accent-color: var(--acc); }
.fb-type:has(input:checked) { border-color: var(--acc); color: var(--acc2); background: var(--acc-soft); }
.fb-bar { display: flex; align-items: center; gap: 14px; margin-top: 14px; }
.fb-tip { font-size: 13px; color: #e89090; }
.fb-done { text-align: center; padding: 40px 0; display: flex; flex-direction: column; align-items: center; gap: 10px; }
.fb-done-ico { width: 56px; height: 56px; border-radius: 50%; background: var(--acc-soft); color: var(--acc2); display: grid; place-items: center; font-size: 28px; }
.fb-done b { font-size: 18px; }
.fb-done p { color: var(--tx3); margin-bottom: 8px; }
