/* BQM 公共样式 — common.css */
/* 各页面通过 <link rel="stylesheet" href="css/common.css"> 引入 */

* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: -apple-system, 'PingFang SC', 'Microsoft YaHei', sans-serif;
  background: #1a1a2e;
  color: #e6e6e6;
  overflow: hidden;
  height: 100vh;
  width: 100vw;
  font-size: 14px;
  -webkit-user-select: none;
  user-select: none;
}

/* ─── 顶部状态栏 ─── */
.top-bar {
  height: 6vh; min-height: 40px;
  background: #16213e;
  display: flex; align-items: center;
  padding: 0 20px; gap: 20px;
}
.top-bar .store-name { font-size: 16px; font-weight: bold; color: #e94560; }
.top-bar .datetime { font-size: 13px; color: #8892b0; }
.top-bar .stat-item { font-size: 13px; color: #8892b0; }
.top-bar .stat-item strong { font-size: 16px; margin-left: 4px; color: #e94560; }
.top-bar .nav-links { display: flex; gap: 12px; margin-left: auto; }
.top-bar .nav-links a {
  color: #8892b0; text-decoration: none; font-size: 13px;
  padding: 4px 10px; border-radius: 4px; transition: all .15s;
}
.top-bar .nav-links a:hover { color: #e6e6e6; background: rgba(255,255,255,0.05); }
.top-bar .nav-links a.active { color: #e94560; font-weight: bold; }

/* 模式切换 */
.mode-switch { flex: 1; display: flex; justify-content: center; gap: 12px; }
.mode-link {
  color: #8892b0; text-decoration: none; font-size: 13px;
  padding: 4px 12px; border-radius: 4px; border: 1px solid transparent;
  transition: all .15s;
}
.mode-link:hover { color: #e6e6e6; background: rgba(255,255,255,0.05); }
.mode-link.active { color: #50c878; border-color: #50c878; font-weight: bold; }

/* 刷新按钮 */
.refresh-btn {
  padding: 6px 12px;
  background: #0f3460;
  color: #8892b0;
  border: 1px solid #533483;
  border-radius: 4px;
  font-size: 12px;
  cursor: pointer;
}
.refresh-btn:hover { color: #e6e6e6; }

/* 全屏按钮 */
.fullscreen-btn {
  padding: 6px 12px;
  background: #0f3460;
  color: #8892b0;
  border: 1px solid #533483;
  border-radius: 4px;
  font-size: 12px;
  cursor: pointer;
  transition: all .15s;
}
.fullscreen-btn:hover { color: #e6e6e6; }

/* 排队卡片号码徽章 */
.queue-card .position-badge {
  width: 42px; height: 28px;
  border-radius: 6px; background: #e94560;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: bold; color: white;
  margin-right: 12px; flex-shrink: 0;
}
.queue-card .position-badge.badge-green  { background: #2ecc71; }
.queue-card .position-badge.badge-yellow { background: #f39c12; }
.queue-card .position-badge.badge-blue   { background: #3498db; }
.queue-card .position-badge.badge-grey   { background: #555; }
.queue-card .position-badge.badge-normal  { background: #6B7B8D; }
.queue-card .position-badge.badge-cancel  { background: #E67E22; }
.queue-card .position-badge.badge-noshow  { background: #8B7355; }

/* 颜色图例 */
.legend-bar {
  display: flex; flex-wrap: wrap; gap: 6px 12px;
  padding: 8px 14px; font-size: 11px; color: #8892b0;
  border-top: 1px solid #0f3460;
  flex-shrink: 0;
}
.legend-item { display: flex; align-items: center; gap: 4px; }
.legend-dot {
  width: 10px; height: 10px; border-radius: 3px; flex-shrink: 0;
}
.legend-dot.dot-green  { background: #2ecc71; }
.legend-dot.dot-yellow { background: #f39c12; }
.legend-dot.dot-blue   { background: #3498db; }
.legend-dot.dot-grey   { background: #555; }
.legend-dot.dot-normal  { background: #6B7B8D; }
.legend-dot.dot-cancel  { background: #E67E22; }
.legend-dot.dot-noshow  { background: #8B7355; }

/* ─── 主内容 ─── */
.main-content { display: flex; height: 90vh; width: 100%; }

/* ─── 底部运营数据栏 ─── */
.bottom-bar {
  height: 5vh; min-height: 36px;
  background: #0f3460;
  display: flex; align-items: center;
  padding: 0 24px; gap: 28px;
  font-size: 13px;
}
.bottom-bar .metric { display: flex; align-items: center; gap: 4px; }
.bottom-bar .metric .label { color: #8892b0; }
.bottom-bar .metric .value { font-weight: bold; }

/* ─── 弹窗基础 ─── */
.modal-overlay {
  display: none;
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1000;
  align-items: center; justify-content: center;
}
.modal-overlay.active { display: flex; }
.modal-box {
  background: #16213e;
  border: 1px solid #0f3460;
  border-radius: 12px;
  padding: 28px;
  min-width: 360px; max-width: 92vw;
}
.modal-box h3 { margin-bottom: 16px; color: #e6e6e6; font-size: 20px; }
.modal-box .form-group { margin-bottom: 16px; }
.modal-box .form-group label { display: block; font-size: 15px; color: #8892b0; margin-bottom: 6px; }
.modal-box .form-group input,
.modal-box .form-group select {
  width: 100%; padding: 11px 14px;
  background: #0f3460; border: 1px solid #533483; border-radius: 6px;
  color: #e6e6e6; font-size: 16px;
}
.modal-box .form-group input:focus { outline: none; border-color: #e94560; }
.modal-box .modal-actions { display: flex; gap: 12px; margin-top: 16px; justify-content: flex-end; }
.modal-box .modal-actions button {
  padding: 12px 28px; border: none; border-radius: 6px;
  font-size: 16px; cursor: pointer;
}
.modal-box .btn-cancel { background: #0f3460; color: #8892b0; }
.modal-box .btn-confirm { background: #e94560; color: white; }
.modal-box .btn-confirm:active { opacity: 0.8; }

/* 座位详情弹窗 */
.seat-detail-modal .detail-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid rgba(15,52,96,0.3); }
.seat-detail-modal .detail-row .label { color: #8892b0; font-size: 14px; }
.seat-detail-modal .detail-row .value { color: #e6e6e6; font-size: 14px; }
.seat-detail-modal .action-buttons { display: flex; flex-direction: column; gap: 8px; margin-top: 16px; }
.seat-detail-modal .action-buttons button {
  width: 100%; padding: 14px; border: none; border-radius: 10px;
  font-size: 16px; font-weight: bold; cursor: pointer;
}
.seat-detail-modal .btn-release { background: #e94560; color: white; }
.seat-detail-modal .btn-seat { background: #533483; color: white; }
.seat-detail-modal .btn-clean { background: #00d9ff; color: #0a0a0a; }
.seat-detail-modal .btn-cancel { background: #0f3460; color: #8892b0; }

/* 整桌座位列表 */
.table-detail-seats { margin-top: 12px; }
.table-detail-seat {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 12px; margin-bottom: 6px;
  background: rgba(15,52,96,0.3); border-radius: 8px;
  border-left: 3px solid;
}
.table-detail-seat.seat-FREE { border-left-color: #50c878; }
.table-detail-seat.seat-OCCUPIED { border-left-color: #e94560; }
.table-detail-seat.seat-CLEANING { border-left-color: #00d9ff; }
.table-detail-seat .seat-name { font-weight: bold; color: #e6e6e6; font-size: 14px; }
.table-detail-seat .seat-status { font-size: 12px; color: #8892b0; margin-left: 8px; }
.table-detail-seat .seat-actions { display: flex; gap: 6px; }
.table-detail-seat .seat-actions button {
  padding: 6px 12px; border: none; border-radius: 4px;
  font-size: 12px; cursor: pointer; white-space: nowrap;
}

/* ─── 叫号推荐弹窗 ─── */
.notify-modal-box { min-width: 520px; max-width: 580px; }
.recs-scroll { max-height: 260px; overflow-y: auto; margin-bottom: 10px; }
.rec-card {
  background: rgba(15,52,96,0.4);
  border: 2px solid #0f3460;
  border-radius: 10px;
  padding: 14px; margin-bottom: 10px;
  cursor: pointer; transition: all 0.2s;
}
.rec-card:hover { border-color: #533483; }
.rec-card.selected { border-color: #50c878; background: rgba(80,200,120,0.1); }
.rec-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 6px; }
.rec-table { font-size: 16px; font-weight: bold; color: #e6e6e6; }
.rec-score { font-size: 13px; color: #ffd700; font-weight: bold; }
.rec-seats { font-size: 14px; color: #8892b0; margin-bottom: 4px; }
.rec-type { font-size: 12px; color: #533483; }

/* ─── 手动选座弹窗 ─── */
.picker-table-group { margin-bottom: 12px; }
.picker-table-label { font-size: 14px; font-weight: bold; color: #8892b0; margin-bottom: 6px; }
.picker-seats { display: flex; flex-wrap: wrap; gap: 6px; }
.picker-seat {
  width: 44px; height: 44px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: bold;
  cursor: pointer; transition: all 0.15s;
  border: 2px solid #0f3460; background: rgba(15,52,96,0.3);
  color: #8892b0;
}
.picker-seat.status-FREE { border-color: #50c878; color: #50c878; background: rgba(80,200,120,0.1); }
.picker-seat.status-OCCUPIED { border-color: #e94560; color: #e94560; opacity: 0.4; cursor: not-allowed; }
.picker-seat.selected { background: #50c878; color: #0a0a0a; border-color: #50c878; transform: scale(1.1); }
.picker-seat:hover:not(.status-OCCUPIED) { transform: scale(1.08); }
.picker-bar-label { font-size: 11px; color: #533483; margin-left: 4px; }
.picker-table-btn {
  width: 100%; padding: 14px 18px;
  border-radius: 8px;
  border: 2px solid #50c878;
  font-size: 13px; font-weight: bold;
  cursor: pointer; transition: all .15s;
  user-select: none;
  color: #50c878;
  background: rgba(80,200,120,0.08);
  text-align: center;
}
.picker-table-btn.selected {
  background: #50c878;
  color: #0a0a2e;
  border-color: #50c878;
  transform: scale(1.02);
}

/* ─── 状态标签 ─── */
.status-badge {
  display: inline-block;
  padding: 3px 10px; border-radius: 10px;
  font-size: 11px; font-weight: bold; white-space: nowrap;
}
.status-badge.status-notified { background: rgba(255,215,0,0.2); color: #ffd700; }
.status-badge.status-seated { background: rgba(80,200,120,0.2); color: #50c878; }
.status-badge.status-noshow { background: rgba(233,69,96,0.2); color: #e94560; }
.status-badge.status-finished { background: rgba(0,217,255,0.2); color: #00d9ff; }
.status-badge.status-cancel { background: rgba(255,107,107,0.2); color: #ff6b6b; }

/* ─── 状态颜色工具 ─── */
.c-green { color: #50c878; }
.c-red { color: #e94560; }
.c-gold { color: #ffd700; }
.c-cyan { color: #00d9ff; }
.c-gray { color: #8892b0; }

/* 加载状态 */
.loading-text { display: flex; align-items: center; justify-content: center; height: 100%; color: #8892b0; font-size: 13px; }

/* ─── Component wrapper（flex 子项必须参与 flex 布局才能约束内部滚动/撑满） ─── */
.bqm-comp.queuelist,
.bqm-comp.inhouse,
.bqm-comp.seatmap {
  flex: 1;
  min-height: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* ─── 左右面板布局（host & waiter 共用） ─── */
.left-panel {
  width: 30%; min-width: 280px;
  background: #16213e;
  border-right: 1px solid #0f3460;
  display: flex; flex-direction: column;
  overflow: hidden;
}
.right-panel {
  flex: 1;
  background: #16213e;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.panel-header {
  padding: 12px 14px;
  display: flex; justify-content: space-between; align-items: center;
  border-bottom: 1px solid #0f3460;
}
.panel-header h3 { font-size: 15px; color: #e6e6e6; }

/* ─── 选座浮动栏（host & waiter 共用） ─── */
.sel-bar {
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 1000;
  background: #16213e; border-top: 2px solid #ffd700;
  padding: 12px 20px;
  display: none;
  align-items: center; justify-content: space-between;
  gap: 12px;
}
.sel-bar.active { display: flex; }

.sel-bar .sel-info { color: #8892b0; font-size: 13px; }
.sel-bar .sel-info strong { color: #e6e6e6; }
.sel-bar .sel-btns { display: flex; gap: 8px; }
.btn-sel-cancel {
  background: #1a1a2e; color: #8892b0; border: 1px solid #533483;
  padding: 6px 16px; border-radius: 6px; cursor: pointer; font-size: 13px;
}
.btn-sel-cancel:active { background: #533483; }
.btn-sel-confirm {
  background: #e94560; color: #fff; border: none;
  padding: 6px 16px; border-radius: 6px; cursor: pointer; font-size: 13px; font-weight: bold;
}
.btn-sel-confirm:disabled { opacity: 0.4; cursor: not-allowed; }
.btn-sel-confirm:not(:disabled):active { opacity: 0.8; }

/* 响应式 — 横屏手机适配 */
@media (max-width: 900px) {
  .left-panel {
    width: 28%;
    min-width: 200px;
  }
  .seat-map-canvas { min-height: 0; }
  .seat-legend { gap: 10px; font-size: 10px; }
  .seat-legend .dot { width: 10px; height: 10px; }
  .bar-stool { width: 26px; height: 26px; font-size: 8px; }
  .table-node .table-label { font-size: 11px; }
  .table-node .table-info { font-size: 9px; }
  .notify-modal-box { min-width: 340px; max-width: 95vw; }
  .modal-box { min-width: 280px; padding: 18px; }
  .picker-seat { width: 38px; height: 38px; font-size: 11px; }
  .recs-scroll { max-height: 180px; }
  .queue-card .position-badge { width: 36px; height: 24px; font-size: 11px; margin-right: 8px; }
}

/* 超小屏横屏（≤ 667px 宽）进一步压缩 */
@media (max-width: 667px) and (orientation: landscape) {
  .top-bar { height: 36px; padding: 0 10px; gap: 10px; }
  .top-bar .store-name { font-size: 13px; }
  .top-bar .datetime,
  .top-bar .stat-item,
  .top-bar .nav-links a { font-size: 11px; }
  .main-content { height: calc(100vh - 72px); }
  .left-panel { width: 25%; min-width: 160px; }
  .bottom-bar { height: 36px; padding: 0 12px; gap: 14px; font-size: 11px; }
  .seat-map-canvas { min-height: 0; border-radius: 4px; margin: 0 4px 4px; }
  .seat-legend { gap: 8px; font-size: 9px; margin-bottom: 4px; }
  .seat-legend .dot { width: 8px; height: 8px; }
  .bar-stool { width: 22px; height: 22px; font-size: 7px; }
  .table-node { font-size: 9px; }
  .table-node .table-label { font-size: 10px; }
  .table-node .table-info { font-size: 8px; }
  .panel-header { padding: 8px 10px; }
  .panel-header h3 { font-size: 13px; }
  .queue-card { padding: 8px 10px; }
  .queue-card .position-badge { width: 32px; height: 22px; font-size: 10px; margin-right: 6px; }
  .notify-modal-box { min-width: 300px; }
  .modal-box { min-width: 240px; padding: 14px; }
  .modal-box h3 { font-size: 15px; }
  .modal-box .form-group input,
  .modal-box .form-group select { padding: 8px 10px; font-size: 13px; }
  .modal-box .modal-actions button { padding: 8px 16px; font-size: 13px; }
  .picker-seat { width: 32px; height: 32px; font-size: 10px; }
  .picker-table-btn { padding: 10px 12px; font-size: 11px; }
  .rec-card { padding: 10px; }
  .rec-table { font-size: 14px; }
  .rec-seats { font-size: 12px; }
  .recs-scroll { max-height: 140px; }
  .sel-bar { padding: 8px 12px; }
  .sel-bar .sel-info { font-size: 11px; }
  .btn-sel-cancel, .btn-sel-confirm { padding: 5px 12px; font-size: 11px; }
  .status-badge { font-size: 10px; padding: 2px 6px; }
}

/* ─── 座位图组件样式（host / waiter 共用） ─── */
.seat-map-wrap { display: flex; flex-direction: column; flex: 1; padding: 8px; }
.seat-legend {
  display: flex; gap: 16px; padding: 6px 0;
  font-size: 12px; margin-bottom: 8px;
}
.seat-legend .legend-item { display: flex; align-items: center; gap: 6px; }
.seat-legend .dot { width: 12px; height: 12px; border-radius: 50%; display: inline-block; }
.seat-legend .dot.free { background: #50c878; }
.seat-legend .dot.occupied { background: #e94560; }
.seat-legend .dot.reserved { background: #ffd700; }
.seat-legend .dot.cleaning { background: #00d9ff; }
.seat-map-canvas { flex: 1; min-height: 500px; background: #0f3460; border-radius: 6px; margin: 0 8px 8px; position: relative; overflow: hidden; }

/* 座位图元素 */
.table-node {
  position: absolute; border-radius: 8px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.2s;
  font-size: 11px;
}
.table-node:hover { transform: scale(1.08); z-index: 10; }
.table-node .table-label { font-weight: bold; font-size: 13px; }
.table-node .table-info { font-size: 10px; margin-top: 2px; }
.table-node.status-FREE { background: rgba(80,200,120,0.25); border: 2px solid #50c878; color: #50c878; }
.table-node.status-OCCUPIED { background: rgba(233,69,96,0.25); border: 2px solid #e94560; color: #e94560; }
.table-node.status-RESERVED { background: rgba(255,215,0,0.25); border: 2px solid #ffd700; color: #ffd700; }
.table-node.status-CLEANING { background: rgba(0,217,255,0.2); border: 2px solid #00d9ff; color: #00d9ff; }

/* 可拼桌 — 虚线 + 加粗 */
.table-node.mergeable.status-FREE { border: 3px dashed #50c878; }
.table-node.mergeable.status-OCCUPIED { border: 3px dashed #e94560; }
.table-node.mergeable.status-RESERVED { border: 3px dashed #ffd700; }
.table-node.mergeable.status-CLEANING { border: 3px dashed #00d9ff; }

.bar-stool {
  position: absolute; width: 32px; height: 32px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 9px; font-weight: bold;
  cursor: pointer; transition: all 0.2s;
}
.bar-stool:hover { transform: scale(1.15); z-index: 10; }
.bar-stool.stool-FREE { background: rgba(80,200,120,0.3); border: 2px solid #50c878; color: #50c878; }
.bar-stool.stool-OCCUPIED { background: rgba(233,69,96,0.3); border: 2px solid #e94560; color: #e94560; }
.bar-stool.stool-CLEANING { background: rgba(0,217,255,0.3); border: 2px solid #00d9ff; color: #00d9ff; }
.bar-stool.stool-RESERVED { background: rgba(255,215,0,0.3); border: 2px solid #ffd700; color: #ffd700; }
.stool-selected { background: #ffd700 !important; color: #1a1a2e !important; box-shadow: 0 0 10px rgba(255,215,0,0.5); }
.table-selected { border-color: #ffd700 !important; color: #ffd700 !important; box-shadow: 0 0 10px rgba(255,215,0,0.4); }

/* Waiter 座位选中高亮 */
.bar-stool.highlight { border-color: #e6e6e6 !important; box-shadow: 0 0 6px rgba(255,255,255,0.3); }
.table-node.highlight { border-color: #e6e6e6 !important; box-shadow: 0 0 6px rgba(255,255,255,0.3); }
.bar-stool.co-ticket { border-color: #e6e6e6 !important; border-style: dashed; }

/* Waiter 左栏选中高亮 */
.queue-card.waiter-selected {
  border: 2px solid #e6e6e6;
  background: rgba(255,255,255,0.06);
}

/* 弹窗宽度限制 */
#bqm-modal-overlay .modal-box { max-width: 600px; }

/* 详情卡（左右分栏） */
.detail-card { min-width: 520px; }
.detail-header {
  display: flex; align-items: center; gap: 10px;
  padding-bottom: 12px; border-bottom: 1px solid #0f3460; margin-bottom: 14px;
}
.detail-badge {
  background: #e94560; color: #fff; font-weight: bold; font-size: 13px;
  padding: 3px 10px; border-radius: 4px;
}
.detail-name { font-size: 16px; font-weight: bold; color: #e6e6e6; }

.detail-body { display: flex; gap: 20px; margin-bottom: 14px; }

.detail-left {
  flex-shrink: 0; width: 140px;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.detail-qr { display: inline-block; background: #fff; padding: 8px; border-radius: 6px; }
/* 通信按钮栏：独立行、弹窗横向居中 */
.detail-phone-bar {
  display: flex; gap: 8px; justify-content: center;
  margin-bottom: 12px; padding-bottom: 0;
}
.detail-btn-phone, .detail-btn-copy, .detail-btn-sms {
  padding: 6px 14px; border: none; border-radius: 4px;
  font-size: 12px; cursor: pointer; text-decoration: none; color: #fff; white-space: nowrap;
}
.detail-btn-phone { background: #2ecc71; }
.detail-btn-copy { background: #0f3460; color: #ccc; border: 1px solid #533483; }
.detail-btn-sms { background: #533483; }

.detail-right { flex: 1; display: flex; flex-direction: column; gap: 6px; }
.detail-row { display: flex; justify-content: space-between; align-items: center; font-size: 13px; }
.detail-label { color: #8892b0; flex-shrink: 0; }
.detail-value { color: #e6e6e6; text-align: right; font-weight: 500; }

/* 备注区 */
.detail-notes { border-top: 1px solid #0f3460; padding-top: 12px; }
.detail-note-row { margin-bottom: 10px; }
.detail-note-row:last-child { margin-bottom: 0; }
.detail-note-editable { margin-top: 6px; }

/* 快速短语工具栏 */
.detail-note-toolbar { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 8px; }
.quick-tag {
  padding: 3px 10px; font-size: 12px; color: #8892b0;
  background: #0f3460; border: 1px solid #533483; border-radius: 12px;
  cursor: pointer; transition: all 0.15s; user-select: none;
}
.quick-tag:hover { background: #1a3a6a; color: #e6e6e6; border-color: #7B52AB; }

.detail-note-editable textarea {
  width: 100%; padding: 8px 10px; border-radius: 4px;
  border: 1px solid #0f3460; background: #0a0a23; color: #e6e6e6;
  font-size: 13px; resize: vertical; font-family: inherit;
}
.detail-note-editable textarea:focus { outline: none; border-color: #533483; }

/* 备注底部操作栏 */
.detail-note-bar {
  display: flex; justify-content: flex-end; align-items: center;
  gap: 8px; margin-top: 6px;
}
.detail-btn-clear {
  padding: 5px 14px; background: transparent; color: #8892b0;
  border: 1px solid #533483; border-radius: 4px;
  font-size: 12px; cursor: pointer;
}
.detail-btn-save {
  padding: 5px 14px; background: #533483; color: #fff;
  border: none; border-radius: 4px; font-size: 12px; cursor: pointer;
}
.detail-btn-save:disabled { opacity: 0.4; cursor: not-allowed; }

/* 操作按钮 */
.detail-actions {
  display: flex; gap: 10px; justify-content: center;
  padding-top: 12px; border-top: 1px solid #0f3460;
}
.detail-btn-cancel {
  flex: 1; padding: 12px; background: #333; color: #ccc;
  border: none; border-radius: 6px; font-size: 15px; font-weight: bold; cursor: pointer;
}
.detail-btn-notify {
  flex: 1; padding: 12px; background: #e94560; color: #fff;
  border: none; border-radius: 6px; font-size: 15px; font-weight: bold; cursor: pointer;
}
.detail-btn-notch:notify:disabled { opacity: 0.4; cursor: not-allowed; }

/* 宽弹窗（详情卡用） */
#bqm-modal-overlay .modal-box.wide { max-width: 640px; }
