/* 财富PC 聊天室房间页（深色主题，移动端优先，PC 居中）
 * 版本：v20260806a —— 文件名带版本号，改动必须换名破 CDN 缓存 */
* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { height: 100%; }
body {
  background: #0b0d12;
  color: #e8e8ec;
  font-family: -apple-system, "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
  font-size: 14px;
  -webkit-tap-highlight-color: transparent;
}
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input { font-family: inherit; }

#pc-app {
  display: flex; flex-direction: column;
  height: 100dvh;
  max-width: 560px; margin: 0 auto;
  background: #14161d;
  position: relative;
  overflow: hidden;
}
@media (min-width: 600px) {
  #pc-app { border-left: 1px solid #262a35; border-right: 1px solid #262a35; }
}

/* ---------- 1. 顶栏 ---------- */
#pc-topbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 8px; background: #1b1e27; flex: none;
  padding-top: calc(10px + env(safe-area-inset-top));
}
.pc-topbar-btn { color: #e8e8ec; font-size: 22px; width: 40px; height: 32px; text-decoration: none; text-align: center; line-height: 32px; }
#pc-room-title { font-size: 17px; font-weight: 600; letter-spacing: 1px; }
#pc-online { font-size: 13px; font-weight: 400; color: #9aa0ae; margin-left: 4px; }

/* ---------- 2. 期号状态条 ---------- */
#pc-statusbar {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 16px; background: #20232e; flex: none;
}
.pc-status-issue { font-size: 15px; color: #cfd3dd; }
.pc-status-issue span { color: #fff; font-weight: 600; }
.pc-countdown { font-size: 26px; font-weight: 700; color: #fff; font-variant-numeric: tabular-nums; margin-top: 2px; }
.pc-countdown.is-locked { color: #f0b429; font-size: 20px; }
.pc-countdown.is-drawing { color: #4fc3f7; font-size: 20px; }
.pc-balance-label { font-size: 13px; color: #cfd3dd; display: flex; align-items: center; gap: 4px; justify-content: flex-end; }
.pc-balance { font-size: 20px; font-weight: 700; color: #ff8a5c; text-align: right; font-variant-numeric: tabular-nums; }
.pc-icon-btn { color: #9aa0ae; font-size: 15px; padding: 2px 6px; }
.pc-icon-btn:active { color: #fff; }

/* ---------- 3. 上期开奖条 ---------- */
#pc-lastresult {
  display: flex; align-items: center; gap: 6px;
  padding: 8px 12px; background: #171a22; flex: none;
  flex-wrap: wrap; position: relative;
}
.pc-lastresult-main { display: flex; align-items: center; gap: 8px; flex: 1; min-width: 0; }
.pc-lastresult-issue { font-size: 14px; color: #cfd3dd; white-space: nowrap; }
.pc-lastresult-issue span { color: #fff; font-weight: 600; }
.pc-balls { display: inline-flex; align-items: center; gap: 4px; }
.pc-balls em { font-style: normal; color: #9aa0ae; font-size: 13px; }
.pc-ball {
  display: inline-flex; align-items: center; justify-content: center;
  width: 26px; height: 26px; border-radius: 50%;
  font-size: 14px; font-weight: 700; color: #fff;
}
.pc-ball-blue { background: radial-gradient(circle at 35% 30%, #4fc3f7, #0288d1); }
.pc-ball-red { background: radial-gradient(circle at 35% 30%, #ff8a65, #e64a19); }
.pc-last-combo { font-size: 14px; color: #f0b429; font-weight: 600; }
.pc-history-list {
  width: 100%; max-height: 200px; overflow-y: auto;
  border-top: 1px solid #262a35; margin-top: 6px; padding-top: 4px;
}
.pc-history-row {
  display: flex; align-items: center; gap: 6px; padding: 5px 2px;
  font-size: 13px; color: #9aa0ae; border-bottom: 1px dashed #23262f;
}
.pc-history-row .pc-ball { width: 20px; height: 20px; font-size: 11px; }
.pc-history-row .pc-h-combo { margin-left: auto; color: #f0b429; }

/* ---------- 4. 聊天流 ---------- */
#pc-chat-wrap { flex: 1; overflow-y: auto; position: relative; padding: 10px 10px 6px; -webkit-overflow-scrolling: touch; }
#pc-chat-list { display: flex; flex-direction: column; gap: 12px; min-height: 100%; }
.pc-msg { display: flex; gap: 8px; align-items: flex-start; }
.pc-msg-avatar { width: 42px; flex: none; text-align: center; }
.pc-msg-avatar img { width: 42px; height: 42px; border-radius: 50%; background: #2a2e3a; display: block; }
.pc-msg-main { min-width: 0; max-width: 82%; }
.pc-msg-nick { font-size: 12px; color: #8a90a0; margin-bottom: 3px; }
.pc-msg-nick time { margin-left: 6px; color: #5c6270; }
.pc-msg-bubble {
  display: inline-block; background: #262b3b; color: #fff;
  border-radius: 4px 14px 14px 14px; padding: 9px 12px;
  font-size: 16px; font-weight: 600; word-break: break-all; white-space: pre-wrap;
}
.pc-msg.is-mine .pc-msg-bubble { background: #2f4356; }
.pc-msg-system { text-align: center; font-size: 13px; color: #f0b429; padding: 2px 0; letter-spacing: 1px; }
.pc-msg-bot .pc-msg-avatar img { border: 2px solid #f0b429; }
.pc-msg-bot .pc-msg-nick { color: #f0b429; }
.pc-msg-bot .pc-msg-bubble { background: #2a2417; border: 1px solid #4a3d1c; color: #f5e2ae; font-size: 14px; font-weight: 400; }
.pc-msg-receipt .pc-msg-bubble { background: #1d2b22; border: 1px solid #2c4a38; color: #b9e6c8; font-size: 14px; font-weight: 400; }
#pc-chat-tobottom {
  position: absolute; right: 12px; bottom: 12px;
  background: rgba(38, 43, 59, .95); color: #fff; font-size: 12px;
  border-radius: 14px; padding: 6px 12px; box-shadow: 0 2px 8px rgba(0,0,0,.4);
}

/* ---------- 5. 底部输入框 ---------- */
#pc-inputbar {
  display: flex; gap: 8px; padding: 8px 10px; background: #1b1e27; flex: none;
}
#pc-chat-input {
  flex: 1; height: 42px; border: none; border-radius: 21px;
  background: #2a2e3b; color: #fff; padding: 0 16px; font-size: 15px; outline: none;
}
#pc-chat-input::placeholder { color: #7a8090; }
#pc-chat-input:disabled { color: #7a8090; }
#pc-chat-send {
  width: 84px; height: 42px; border-radius: 21px; flex: none;
  background: linear-gradient(135deg, #f7d98b, #e0b14f); color: #4a3208;
  font-size: 16px; font-weight: 700;
}
#pc-chat-send:disabled { background: #3a3e4b; color: #7a8090; }

/* ---------- 6. 底部四 Tab ---------- */
#pc-tabbar {
  display: flex; background: #1b1e27; flex: none;
  padding-bottom: env(safe-area-inset-bottom);
  border-top: 1px solid #23262f;
}
.pc-tab {
  flex: 1; display: flex; flex-direction: column; align-items: center; gap: 2px;
  padding: 7px 0 6px; color: #c9cddb; font-size: 13px;
}
.pc-tab .pc-tab-ico { font-size: 19px; line-height: 1; }
.pc-tab.is-active { color: #f7d98b; }

/* ---------- 半屏面板 ---------- */
#pc-panel-mask {
  position: fixed; inset: 0; background: rgba(0,0,0,.45); z-index: 40;
}
.pc-panel {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 41;
  background: #161923; border-radius: 14px 14px 0 0;
  display: flex; flex-direction: column;
  max-height: 78%;
  box-shadow: 0 -4px 24px rgba(0,0,0,.5);
  padding-bottom: env(safe-area-inset-bottom);
}
.pc-panel-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 12px; border-bottom: 1px solid #23262f; flex: none; gap: 8px;
}
.pc-panel-collapse { color: #c9cddb; font-size: 14px; white-space: nowrap; }
.pc-panel-title { font-size: 17px; font-weight: 600; }
.pc-panel-head-right { display: flex; gap: 6px; }
.pc-mini-btn {
  background: #232838; color: #c9cddb; font-size: 12px;
  border-radius: 12px; padding: 5px 10px; white-space: nowrap;
}
.pc-mini-btn:active { background: #2e3448; }

/* ---------- 信用面板 ---------- */
.pc-credit-body { display: flex; flex: 1; min-height: 0; }
.pc-credit-side {
  width: 84px; flex: none; display: flex; flex-direction: column;
  background: #12151d; border-radius: 0 0 0 0;
}
.pc-credit-cat {
  padding: 16px 0; font-size: 15px; color: #c9cddb; text-align: center;
  border-left: 3px solid transparent;
}
.pc-credit-cat.is-active { background: #1d212c; color: #f7d98b; border-left-color: #f7d98b; }
.pc-credit-main { flex: 1; overflow-y: auto; padding: 12px 10px 8px; position: relative; -webkit-overflow-scrolling: touch; }
.pc-credit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.pc-credit-grid.is-points { grid-template-columns: repeat(4, 1fr); }
.pc-sel-cell {
  background: #232838; border-radius: 10px; padding: 12px 4px 9px;
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  border: 1px solid transparent;
}
.pc-sel-cell .pc-sel-name { font-size: 15px; font-weight: 600; }
.pc-sel-cell .pc-sel-odds { font-size: 12px; color: #9aa0ae; }
.pc-sel-cell.is-picked { background: linear-gradient(160deg, #f7d98b, #e0b14f); }
.pc-sel-cell.is-picked .pc-sel-name { color: #4a3208; }
.pc-sel-cell.is-picked .pc-sel-odds { color: #7a5c1c; }
.pc-credit-bubble {
  position: sticky; bottom: 6px; margin: 10px auto 2px; width: max-content;
  background: linear-gradient(135deg, #f7d98b, #e0b14f); color: #4a3208;
  font-size: 14px; font-weight: 700; border-radius: 18px; padding: 8px 22px;
  box-shadow: 0 4px 12px rgba(0,0,0,.4);
}
.pc-credit-amountbar {
  display: flex; gap: 8px; align-items: center; padding: 10px 12px 4px; flex: none;
}
.pc-amt-quick {
  width: 52px; height: 40px; border-radius: 8px; background: #232838;
  font-size: 15px; font-weight: 700; color: #e8e8ec; flex: none;
}
.pc-amt-quick.is-active { background: linear-gradient(135deg, #f7d98b, #e0b14f); color: #4a3208; }
#pc-credit-amount {
  flex: 1; height: 40px; border: none; border-radius: 8px; background: #232838;
  color: #fff; font-size: 16px; font-weight: 700; text-align: center; outline: none; min-width: 0;
}
.pc-credit-actions {
  display: flex; gap: 8px; padding: 8px 12px 10px; flex: none;
}
.pc-credit-actions button {
  flex: 1; height: 52px; border-radius: 10px; background: #232838;
  color: #e8e8ec; font-size: 13px; line-height: 1.25;
}
.pc-credit-actions .pc-primary,
.pc-primary {
  background: linear-gradient(135deg, #f7d98b, #e0b14f); color: #4a3208;
  font-size: 16px; font-weight: 700; border-radius: 10px;
}
.pc-credit-actions .pc-primary { flex: 1.6; }
.pc-primary:disabled { background: #3a3e4b; color: #7a8090; }

/* ---------- 桌投面板 ---------- */
.pc-subtabs { display: flex; background: #232838; border-radius: 8px; overflow: hidden; }
.pc-subtab { padding: 7px 18px; font-size: 14px; color: #c9cddb; }
.pc-subtab.is-active { background: #f7d98b; color: #4a3208; font-weight: 700; }
.pc-table-grid {
  flex: 1; overflow-y: auto; padding: 12px 10px;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px;
  align-content: start; -webkit-overflow-scrolling: touch;
}
.pc-table-grid.is-4col { grid-template-columns: repeat(4, 1fr); }
.pc-tcell {
  background: #232838; border-radius: 10px; padding: 12px 6px 8px;
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  border: 1px solid transparent; position: relative;
}
.pc-tcell .pc-tcell-name { font-size: 18px; font-weight: 700; }
.pc-tcell .pc-tcell-odds { font-size: 12px; color: #9aa0ae; }
.pc-tcell .pc-tcell-heat { display: flex; gap: 10px; font-size: 11px; color: #7a8090; margin-top: 2px; }
.pc-tcell.is-staked { border-color: #f7d98b; }
.pc-tcell .pc-tcell-mine {
  position: absolute; top: -7px; right: -5px;
  background: #ff8a5c; color: #3d1c06; font-size: 11px; font-weight: 700;
  border-radius: 10px; padding: 2px 7px;
}
.pc-table-chips { display: flex; gap: 7px; padding: 8px 12px 4px; flex: none; }
.pc-chip {
  flex: 1; height: 38px; border-radius: 8px; background: #232838;
  font-size: 14px; font-weight: 700; color: #c9cddb;
}
.pc-chip.is-active { background: #4fc3f7; color: #06283a; }
.pc-table-actions { display: flex; gap: 8px; padding: 8px 12px 10px; flex: none; }
.pc-table-summary {
  flex: 1.6; background: #232838; border-radius: 10px; color: #c9cddb;
  font-size: 14px; text-align: left; padding: 0 14px; height: 48px;
}
#pc-table-clear { flex: 1; height: 48px; border-radius: 10px; background: #232838; font-size: 15px; }
#pc-table-submit { flex: 1.4; height: 48px; }

/* ---------- 快投面板 ---------- */
.pc-quick-display {
  display: flex; align-items: center; gap: 8px; margin: 12px 12px 8px;
  background: #f5f6fa; border-radius: 12px; padding: 12px 14px; flex: none;
}
.pc-quick-text { flex: 1; color: #333; font-size: 16px; font-weight: 600; word-break: break-all; min-height: 20px; }
.pc-quick-text.is-empty { color: #9aa0ae; font-weight: 400; }
#pc-quick-close { color: #666; font-size: 16px; }
.pc-quick-points {
  display: flex; gap: 6px; overflow-x: auto; padding: 2px 12px 8px; flex: none;
  -webkit-overflow-scrolling: touch;
}
.pc-qpoint {
  flex: none; width: 56px; background: #f5f6fa; border-radius: 8px;
  padding: 6px 0; text-align: center;
}
.pc-qpoint .pc-qp-num { font-size: 15px; font-weight: 700; color: #222; }
.pc-qpoint .pc-qp-odds { font-size: 10px; color: #888; }
.pc-quick-keys {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 7px;
  padding: 4px 12px 12px; overflow-y: auto;
}
.pc-qkey {
  background: #f5f6fa; border-radius: 8px; padding: 9px 0 6px;
  display: flex; flex-direction: column; align-items: center; gap: 1px;
  min-height: 52px; justify-content: center;
}
.pc-qkey .pc-qk-name { font-size: 16px; font-weight: 700; color: #222; }
.pc-qkey .pc-qk-odds { font-size: 10px; color: #888; }
.pc-qkey.is-digit .pc-qk-name { color: #0288d1; font-size: 20px; }
.pc-qkey.is-fn { background: #c9cede; }
.pc-qkey.is-fn .pc-qk-name { font-size: 13px; color: #444; }
.pc-qkey.is-confirm { background: #4fc3f7; }
.pc-qkey.is-confirm .pc-qk-name { color: #fff; font-size: 15px; }
.pc-qkey:active { filter: brightness(.92); }

/* ---------- 更多面板 ---------- */
.pc-more-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 4px;
  padding: 18px 12px 22px; overflow-y: auto;
}
.pc-more-cell {
  display: flex; flex-direction: column; align-items: center; gap: 7px;
  padding: 14px 0; color: #e8e8ec; font-size: 13px; text-decoration: none;
  border-radius: 10px;
}
.pc-more-cell:active { background: #232838; }
.pc-more-ico {
  width: 52px; height: 52px; border-radius: 14px; background: #232838;
  display: flex; align-items: center; justify-content: center; font-size: 24px;
}

/* ---------- 弹窗 ---------- */
#pc-modal-mask { position: fixed; inset: 0; background: rgba(0,0,0,.55); z-index: 50; }
.pc-modal {
  position: absolute; left: 4%; right: 4%; top: 8%; bottom: 10%; z-index: 51;
  background: #1b1e27; border-radius: 14px; display: flex; flex-direction: column;
  box-shadow: 0 8px 32px rgba(0,0,0,.6); overflow: hidden;
}
.pc-modal-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 14px; border-bottom: 1px solid #262a35; flex: none;
  font-size: 16px; font-weight: 600;
}
.pc-modal-body { flex: 1; overflow-y: auto; padding: 14px; -webkit-overflow-scrolling: touch; }
.pc-modal-body h3 { font-size: 15px; color: #f7d98b; margin: 12px 0 6px; }
.pc-modal-body h3:first-child { margin-top: 0; }
.pc-modal-body p, .pc-modal-body li { font-size: 13px; color: #c9cddb; line-height: 1.8; }
.pc-modal-body ul { padding-left: 18px; }
.pc-modal-body table { width: 100%; border-collapse: collapse; font-size: 12px; }
.pc-modal-body th, .pc-modal-body td { padding: 6px 4px; border-bottom: 1px solid #262a35; text-align: center; color: #c9cddb; }
.pc-modal-body th { color: #9aa0ae; font-weight: 400; }

/* 追号面板 */
.pc-chase { top: 4%; bottom: 4%; }
.pc-chase-row {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 9px 0; border-bottom: 1px solid #23262f; font-size: 14px;
}
.pc-chase-label { color: #c9cddb; flex: none; }
.pc-chase-value { color: #f7d98b; font-weight: 600; word-break: break-all; text-align: right; }
.pc-chase-row input[type="number"] {
  width: 110px; height: 36px; background: #232838; border: none; border-radius: 8px;
  color: #fff; font-size: 15px; text-align: center; outline: none;
}
.pc-stepper { display: inline-flex; align-items: center; gap: 8px; }
.pc-stepper button {
  width: 34px; height: 34px; background: #232838; border-radius: 8px;
  font-size: 18px; color: #e8e8ec;
}
.pc-period-quick, .pc-chase-type {
  background: #232838; border-radius: 8px; padding: 7px 13px; font-size: 13px;
  color: #c9cddb; margin-left: 6px;
}
.pc-period-quick.is-active, .pc-chase-type.is-active { background: #4fc3f7; color: #06283a; font-weight: 700; }
.pc-chase-stopwin { display: flex; align-items: center; gap: 6px; font-size: 14px; }
.pc-chase-stopwin input { width: 18px; height: 18px; accent-color: #4fc3f7; }
.pc-chase-detail-title { text-align: center; color: #4fc3f7; font-size: 15px; padding: 12px 0 4px; }
.pc-chase-table input {
  width: 56px; height: 28px; background: #232838; border: none; border-radius: 6px;
  color: #fff; font-size: 13px; text-align: center; outline: none;
}
.pc-chase-foot { display: flex; align-items: center; gap: 12px; padding-top: 12px; }
.pc-chase-total { flex: 1; font-size: 14px; line-height: 1.6; color: #c9cddb; }
.pc-chase-total span { color: #ff8a5c; }
#pc-chase-submit { height: 48px; padding: 0 26px; }

/* 登录弹窗 */
.pc-login { top: 30%; bottom: auto; }
.pc-login-body { text-align: center; padding: 24px 14px; }
.pc-login-body p { margin-bottom: 18px; }
.pc-login-link { display: inline-block; padding: 12px 44px; text-decoration: none; }

/* toast */
#pc-toast {
  position: fixed; left: 50%; top: 42%; transform: translateX(-50%);
  background: rgba(20, 22, 30, .95); color: #fff; font-size: 14px;
  border-radius: 10px; padding: 12px 22px; z-index: 90;
  max-width: 80%; text-align: center; line-height: 1.6;
  box-shadow: 0 4px 20px rgba(0,0,0,.5);
}

/* 走势图 canvas */
.pc-trend-canvas { width: 100%; background: #12151d; border-radius: 8px; }
.pc-trend-tabs { display: flex; gap: 6px; margin-bottom: 10px; }
.pc-trend-tab { flex: 1; background: #232838; border-radius: 8px; padding: 8px 0; font-size: 13px; color: #c9cddb; }
.pc-trend-tab.is-active { background: #f7d98b; color: #4a3208; font-weight: 700; }

/* 路子图 */
.pc-road-row { display: flex; gap: 4px; margin-bottom: 4px; }
.pc-road-dot {
  width: 22px; height: 22px; border-radius: 50%; font-size: 10px;
  display: inline-flex; align-items: center; justify-content: center; color: #fff; font-weight: 700;
}
.pc-road-dot.is-big { background: #e64a19; }
.pc-road-dot.is-small { background: #0288d1; }
.pc-road-dot.is-odd { background: #7b1fa2; }
.pc-road-dot.is-even { background: #00796b; }

/* 校验页 */
.pc-verify-item { border: 1px solid #262a35; border-radius: 10px; padding: 10px; margin-bottom: 10px; }
.pc-verify-head { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; font-size: 13px; }
.pc-verify-groups { margin-top: 8px; font-size: 12px; color: #9aa0ae; line-height: 1.9; }
.pc-verify-pending { font-size: 12px; color: #7a8090; margin-top: 6px; font-style: italic; }

/* 注单列表 */
.pc-bet-item { border: 1px solid #262a35; border-radius: 10px; padding: 10px 12px; margin-bottom: 10px; font-size: 13px; }
.pc-bet-item .pc-bet-line1 { display: flex; justify-content: space-between; color: #c9cddb; }
.pc-bet-item .pc-bet-items { color: #e8e8ec; margin: 6px 0; line-height: 1.7; }
.pc-bet-item .pc-bet-foot { display: flex; justify-content: space-between; align-items: center; color: #9aa0ae; font-size: 12px; }
.pc-bet-status-win { color: #4caf50; } .pc-bet-status-lose { color: #9aa0ae; }
.pc-bet-status-locked { color: #f0b429; } .pc-bet-status-refunded { color: #4fc3f7; }
.pc-bet-cancel {
  background: #3a3e4b; color: #ff8a5c; border-radius: 6px;
  font-size: 12px; padding: 4px 12px;
}
.pc-list-more { display: block; width: 100%; background: #232838; border-radius: 8px; padding: 10px 0; font-size: 13px; color: #c9cddb; margin-top: 4px; }
.pc-empty { text-align: center; color: #5c6270; padding: 30px 0; font-size: 13px; }

/* 2026-08-06 修复：hidden 属性必须压过 .pc-modal 的 display:flex，否则弹窗永远可见 */
#pc-modal-mask[hidden], .pc-modal[hidden], .pc-panel[hidden], #pc-toast[hidden], #pc-panel-mask[hidden] { display: none !important; }

/* ---------- 钱包弹窗（2026-08-06 转入/转出） ---------- */
.pc-balance-box { background: none; border: none; padding: 0; text-align: right; cursor: pointer; display: flex; flex-direction: column; align-items: flex-end; }
.pc-wallet-balances { display: flex; gap: 10px; margin-bottom: 6px; }
.pc-wallet-bal-item { flex: 1; background: #1d212c; border-radius: 10px; padding: 12px; display: flex; flex-direction: column; gap: 6px; }
.pc-wallet-bal-label { font-size: 12px; color: #8a90a2; }
.pc-wallet-bal-num { font-size: 20px; font-weight: 700; color: #fff; }
.pc-wallet-bal-num.pc-gold { color: #f7d98b; }
.pc-wallet-row { display: flex; gap: 8px; margin: 6px 0; }
.pc-wallet-row input { flex: 1; height: 42px; border: none; border-radius: 8px; background: #2a2e3b; color: #fff; padding: 0 14px; font-size: 15px; outline: none; }
.pc-wallet-tip { font-size: 12px; color: #8a90a2; margin: 2px 0 10px; }
.pc-btn-gold { min-width: 84px; height: 42px; border: none; border-radius: 8px; background: linear-gradient(135deg, #f7d98b, #e0b14f); color: #4a3208; font-size: 15px; font-weight: 700; cursor: pointer; }
.pc-btn-gold:disabled { background: #3a3e4b; color: #7a8090; }
.pc-btn-ghost { min-width: 56px; height: 42px; border: 1px solid #3a3e4b; border-radius: 8px; background: none; color: #c9cddb; font-size: 14px; cursor: pointer; }

/* ---------- 2026-08-07 手机端防聚焦放大：输入框字号统一 ≥16px（iOS <16px 聚焦自动缩放） ---------- */
#pc-chat-input, .pc-wallet-row input, .pc-chase-row input[type="number"], .pc-chase-table input,
#pc-credit-amount, .pc-quick-input input, .pc-amt-input { font-size: 16px !important; }

/* ---------- 进入弹窗公告（2026-08-07） ---------- */
.pc-notice { max-width: 420px; }
.pc-notice-content { font-size: 15px; color: #e8e8ec; line-height: 1.9; white-space: pre-wrap; word-break: break-word; margin: 6px 0 16px; }
.pc-notice-ok { width: 100%; }

/* ---------- 钱包入口按钮（余额旁，2026-08-07） ---------- */
.pc-status-right { display: flex; align-items: center; gap: 8px; }
.pc-wallet-entry {
  flex: none; height: 30px; padding: 0 12px; border: 1px solid #4a3d1c; border-radius: 15px;
  background: linear-gradient(135deg, #f7d98b, #e0b14f); color: #4a3208;
  font-size: 13px; font-weight: 700; cursor: pointer; align-self: center;
}

/* ---------- 公告弹窗高度自适应（2026-08-07：修底部大空白） ---------- */
.pc-notice { top: 50%; bottom: auto; max-height: 82%; transform: translateY(-50%); }
.pc-notice .pc-modal-body { flex: none; }
