* { margin:0; padding:0; box-sizing:border-box; }
:root {
  --bg: #f5f5f5; --bg2: #e0e0e0; --gold: #ff9800; --red: #e74c3c;
  --green: #4caf50; --blue: #2196f3; --white: #333333; --card-w: 70px; --card-h: 100px;
}
body { font-family: 'Microsoft YaHei', sans-serif; background: var(--bg2); color: var(--white); overflow: hidden; height: 100vh; }
.screen { display: none; width: 100vw; height: 100vh; }
.screen.active { display: flex; }

/* 主菜单 */
#menu { justify-content: center; align-items: center; background: radial-gradient(ellipse at center, #1a5c30 0%, #0a2a15 100%); }
.menu-container { text-align: center; padding: 40px; }
.game-title { font-size: 72px; color: var(--gold); text-shadow: 0 4px 20px rgba(255,215,0,.5); margin-bottom: 10px; letter-spacing: 20px; }
.subtitle { color: #aaa; font-size: 18px; margin-bottom: 40px; }
.menu-input { margin-bottom: 30px; }
.menu-input input { padding: 12px 24px; font-size: 18px; border-radius: 8px; border: 2px solid var(--gold); background: rgba(0,0,0,.3); color: var(--white); text-align: center; width: 240px; outline: none; }
.menu-buttons { display: flex; flex-direction: column; gap: 16px; align-items: center; }
.btn { padding: 14px 36px; font-size: 18px; border: none; border-radius: 12px; cursor: pointer; font-weight: bold; transition: all .2s; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,.3); }
.btn:active { transform: translateY(0); }
.btn-primary { background: linear-gradient(135deg, #f39c12, #e67e22); color: #fff; }
.btn-secondary { background: linear-gradient(135deg, #3498db, #2980b9); color: #fff; }
.btn-accent { background: linear-gradient(135deg, #27ae60, #219a52); color: #fff; padding: 10px 24px; font-size: 16px; }
.btn-lg { width: 260px; padding: 16px; font-size: 20px; }
.btn-sm { padding: 8px 16px; font-size: 14px; border-radius: 8px; }
.pvp-panel { margin-top: 20px; display: flex; flex-direction: column; gap: 12px; align-items: center; }
.join-row { display: flex; gap: 8px; }
.join-row input { padding: 10px 16px; font-size: 16px; border-radius: 8px; border: 2px solid #555; background: rgba(0,0,0,.3); color: #fff; width: 140px; text-align: center; }

/* 游戏桌面 */
#gameScreen { position: relative; background: radial-gradient(ellipse at center, #1e5a33 0%, #0d2818 100%); }
.game-table { width: 100%; height: 100%; position: relative; }

/* 信息栏 */
.game-info-bar { position: absolute; top: 8px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 13; flex-wrap: wrap; justify-content: center; max-width: 90%; }
.info-badge { background: rgba(0,0,0,.7); padding: 5px 12px; border-radius: 20px; font-size: 12px; color: var(--gold); border: 1px solid rgba(255,215,0,.3); }
.info-badge.hidden { display: none; }

/* 玩家区域 */
.player-area { position: absolute; display: flex; flex-direction: column; align-items: center; z-index: 12; }
.player-info { background: rgba(0,0,0,.65); padding: 8px 16px; border-radius: 10px; display: flex; gap: 10px; align-items: center; font-size: 13px; border: 1px solid rgba(255,255,255,.15); white-space: nowrap; }
.player-name { color: var(--gold); font-weight: bold; }
.player-score { color: #7bed9f; }
.player-badge { font-size: 11px; padding: 2px 8px; border-radius: 10px; font-weight: bold; }
.player-badge.dealer { background: var(--red); color: #fff; }
.player-badge.partner { background: var(--blue); color: #fff; }
.player-badge.defender { background: #666; color: #fff; }

.player-top { top: 46px; left: 50%; transform: translateX(-50%); }
.player-left { left: 20px; top: 45%; transform: translateY(-50%); }
/* player-right 定位在底牌面板部分统一定义 */
.player-bottom { bottom: 10px; left: 50%; transform: translateX(-50%); width: 90%; }

.player-bottom .player-info { margin-bottom: 8px; }

/* 手牌区域 */
.hand-area { display: flex; justify-content: center; flex-wrap: nowrap; gap: -2px; padding: 0 10px; max-width: 100%; }

/* === 真实扑克牌样式 === */
.card {
  width: var(--card-w); height: var(--card-h); border-radius: 8px;
  background: #fff; border: 1px solid #b8b8b0;
  cursor: pointer; transition: all .18s ease; flex-shrink: 0;
  position: relative; user-select: none;
  box-shadow: 0 1px 3px rgba(0,0,0,.18), 0 4px 8px rgba(0,0,0,.12);
  overflow: hidden;
}
.card::before {
  content: ''; position: absolute; inset: 2px; border-radius: 6px;
  border: 1px solid rgba(0,0,0,.04); pointer-events: none; z-index: 1;
}
.card:hover { transform: translateY(-14px); box-shadow: 0 8px 24px rgba(0,0,0,.4); border-color: var(--gold); z-index: 5; }
.card.selected { transform: translateY(-22px); border-color: var(--gold); box-shadow: 0 10px 28px rgba(255,215,0,.45); }
.card.disabled { opacity: .5; cursor: not-allowed; }

/* 左上角：点数 + 小花色 */
.card .card-tl {
  position: absolute; top: 4px; left: 5px;
  display: flex; flex-direction: column; align-items: center; line-height: 1; z-index: 2;
}
.card .card-tl .card-rank {
  font-size: 16px; font-weight: 700;
  font-family: Georgia, 'Times New Roman', serif;
  letter-spacing: -0.5px;
}
.card .card-tl .card-mini-suit { font-size: 14px; margin-top: -2px; }

/* 右下角：倒转 */
.card .card-br {
  position: absolute; bottom: 4px; right: 5px;
  display: flex; flex-direction: column; align-items: center; line-height: 1;
  transform: rotate(180deg); z-index: 2;
}
.card .card-br .card-rank {
  font-size: 16px; font-weight: 700;
  font-family: Georgia, 'Times New Roman', serif;
  letter-spacing: -0.5px;
}
.card .card-br .card-mini-suit { font-size: 14px; margin-top: -2px; }

/* 中间花色区域 */
.card .card-center {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
}
.card .card-center .center-suit { font-size: 36px; }

/* 数字牌中间花色网格 */
.card .card-pips {
  position: absolute; top: 20px; bottom: 20px; left: 10px; right: 10px;
  display: flex; flex-direction: column; justify-content: space-between; align-items: center;
  pointer-events: none;
}
.card .card-pips .pip-row { display: flex; justify-content: space-around; width: 100%; }
.card .card-pips .pip { font-size: 15px; line-height: 1; }
.card .card-pips .pip.flip { transform: rotate(180deg); }

/* 人物牌 JQK */
.card .card-face {
  position: absolute; top: 22px; bottom: 22px; left: 4px; right: 4px;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none; border-radius: 4px; overflow: hidden;
}
.card .card-face .face-img {
  font-size: 38px; filter: saturate(0.8);
}
.card .card-face .face-frame {
  position: absolute; inset: 0; border: 1.5px solid currentColor; border-radius: 4px;
  opacity: .1;
}

/* 颜色 */
.card.red { color: #cc1122; }
.card.black { color: #222; }

/* 大小王特殊样式 */
.card.joker-big {
  background: linear-gradient(170deg, #fff 0%, #ffe8e8 50%, #ffd0d0 100%);
  border-color: #cc3333; color: #cc2222;
}
.card.joker-small {
  background: linear-gradient(170deg, #fff 0%, #e8e8ff 50%, #d0d0ee 100%);
  border-color: #666; color: #333;
}
.card.joker-big .card-center, .card.joker-small .card-center {
  flex-direction: column; gap: 2px;
}
.card.joker-big .joker-star, .card.joker-small .joker-star {
  font-size: 36px;
}
.card.joker-big .joker-text, .card.joker-small .joker-text {
  font-size: 10px; font-weight: 900; letter-spacing: 2px;
  font-family: Georgia, serif;
}

/* 主牌高亮 */
.card.trump-card {
  border-color: #d4a00a;
  box-shadow: 0 1px 3px rgba(0,0,0,.18), 0 0 12px rgba(212,160,10,.3);
}
/* 分牌标记 */
.card.score-card::after {
  content: '分'; position: absolute; top: 2px; right: 2px;
  font-size: 8px; color: #fff; z-index: 3;
  background: #cc1122; border-radius: 3px; padding: 0 2px;
  line-height: 1.3;
}

/* 牌背 */
.card-backs { display: flex; gap: 2px; }
.card-back {
  width: 32px; height: 46px; border-radius: 4px; border: 1px solid #456;
  background: #1a4a8a;
  background-image:
    repeating-linear-gradient(45deg, transparent, transparent 4px, rgba(255,255,255,.06) 4px, rgba(255,255,255,.06) 5px),
    repeating-linear-gradient(-45deg, transparent, transparent 4px, rgba(255,255,255,.06) 4px, rgba(255,255,255,.06) 5px);
  box-shadow: 0 1px 3px rgba(0,0,0,.25);
  position: relative;
}
.card-back::after {
  content: ''; position: absolute; inset: 3px; border: 1px solid rgba(255,255,255,.15);
  border-radius: 2px;
}

/* 出牌区 */
.trick-area { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 320px; height: 220px; }
.trick-card { position: absolute; min-width: var(--card-w); min-height: var(--card-h); display: flex; align-items: center; justify-content: center; }
.trick-top { top: 0; left: 50%; transform: translateX(-50%); }
.trick-left { left: 0; top: 50%; transform: translateY(-50%); }
.trick-right { right: 0; top: 50%; transform: translateY(-50%); }
.trick-bottom { bottom: 0; left: 50%; transform: translateX(-50%); }
.trick-card .card { cursor: default; }
.trick-card .card:hover { transform: none; border-color: #c8c8c0; box-shadow: 1px 2px 6px rgba(0,0,0,.35); }

/* 操作面板 */
.action-panel { position: absolute; bottom: 180px; left: 50%; transform: translateX(-50%); background: rgba(0,0,0,.75); padding: 16px 24px; border-radius: 16px; display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; align-items: center; z-index: 20; border: 1px solid rgba(255,215,0,.2); backdrop-filter: blur(4px); max-width: 600px; }
.action-panel .action-title { width: 100%; text-align: center; color: var(--gold); font-size: 15px; font-weight: bold; margin-bottom: 4px; }

/* 日志 - 样式定义在底牌面板部分 */
.game-log p { margin-bottom: 3px; border-bottom: 1px solid rgba(255,255,255,.05); padding-bottom: 3px; }

/* 弹窗 */
.modal { position: fixed; inset: 0; background: rgba(0,0,0,.7); display: flex; justify-content: center; align-items: center; z-index: 100; }
.modal-content { background: linear-gradient(135deg, #1a472a, #0d2818); padding: 40px; border-radius: 20px; text-align: center; border: 2px solid var(--gold); min-width: 360px; box-shadow: 0 20px 60px rgba(0,0,0,.5); }
.modal-content h2 { color: var(--gold); font-size: 28px; margin-bottom: 20px; }
.modal-content .result-detail { color: #ccc; margin: 10px 0; font-size: 15px; }
.modal-content .btn { margin: 5px; }

/* 牌花色图标 */
.suit-btn { width: 60px; height: 60px; border-radius: 12px; font-size: 32px; display: flex; align-items: center; justify-content: center; cursor: pointer; border: 2px solid #555; background: rgba(255,255,255,.1); transition: all .2s; }
.suit-btn:hover { border-color: var(--gold); background: rgba(255,215,0,.15); transform: scale(1.1); }
.suit-btn.red { color: #e74c3c; }
.suit-btn.black { color: #fff; }

/* 选择面板中的牌 */
.partner-select { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; max-width: 500px; }
.partner-card { padding: 8px 12px; border-radius: 8px; cursor: pointer; border: 2px solid #555; background: rgba(255,255,255,.1); transition: all .2s; font-size: 14px; }
.partner-card:hover { border-color: var(--gold); background: rgba(255,215,0,.15); }
.partner-card.red { color: #e74c3c; }
.partner-card.black { color: #fff; }

/* 玩法介绍按钮 */
.btn-help { background: linear-gradient(135deg, #8e44ad, #6c3483); color: #fff; }
.btn-rules-float {
  position: absolute; top: 8px; left: 10px; z-index: 15;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(0,0,0,.6); border: 1px solid rgba(255,215,0,.4);
  color: var(--gold); font-size: 18px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all .2s;
}
.btn-rules-float:hover { background: rgba(255,215,0,.2); transform: scale(1.1); }

/* 音效开关按钮 */
.btn-sound-toggle {
  position: absolute; top: 8px; left: 52px; z-index: 15;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(0,0,0,.6); border: 1px solid rgba(255,215,0,.4);
  color: var(--gold); font-size: 18px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all .2s;
}
.btn-sound-toggle:hover { background: rgba(255,215,0,.2); transform: scale(1.1); }

/* 玩法介绍弹窗 */
.rules-modal { z-index: 200; }
.rules-content {
  background: linear-gradient(160deg, #1a2a1a 0%, #0d1f12 100%);
  width: 680px; max-width: 92vw; max-height: 85vh;
  border-radius: 16px; border: 2px solid var(--gold);
  box-shadow: 0 20px 60px rgba(0,0,0,.7);
  display: flex; flex-direction: column; overflow: hidden;
  position: relative;
}
.rules-close {
  position: absolute; top: 12px; right: 16px;
  background: none; border: none; color: #888; font-size: 22px;
  cursor: pointer; z-index: 10; transition: color .2s;
}
.rules-close:hover { color: #fff; }
.rules-title {
  color: var(--gold); font-size: 22px; padding: 20px 24px 12px;
  text-align: center; text-shadow: 0 2px 8px rgba(255,215,0,.3);
}
.rules-tabs {
  display: flex; gap: 0; border-bottom: 1px solid rgba(255,215,0,.2);
  padding: 0 16px; flex-shrink: 0;
}
.rules-tab {
  flex: 1; padding: 10px 8px; font-size: 13px; font-weight: 600;
  background: none; border: none; border-bottom: 3px solid transparent;
  color: #888; cursor: pointer; transition: all .2s; white-space: nowrap;
}
.rules-tab:hover { color: #ccc; }
.rules-tab.active { color: var(--gold); border-bottom-color: var(--gold); }
.rules-body {
  flex: 1; overflow-y: auto; padding: 20px 24px;
  scrollbar-width: thin; scrollbar-color: rgba(255,215,0,.3) transparent;
}
.rules-body::-webkit-scrollbar { width: 6px; }
.rules-body::-webkit-scrollbar-thumb { background: rgba(255,215,0,.3); border-radius: 3px; }
.rules-section { margin-bottom: 20px; }
.rules-section h3 { color: var(--gold); font-size: 16px; margin-bottom: 10px; padding-bottom: 6px; border-bottom: 1px solid rgba(255,215,0,.1); }
.rules-section p { color: #ccc; font-size: 14px; line-height: 1.7; margin-bottom: 6px; }
.rules-section strong { color: #fff; }
.rules-section em { color: #f39c12; font-style: normal; }
.rules-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(120px,1fr)); gap: 10px; margin-top: 8px; }
.rules-card {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px; padding: 12px; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 4px;
}
.rules-card .rules-icon { font-size: 24px; }
.rules-card span:nth-child(2) { color: #fff; font-weight: 600; font-size: 14px; }
.rules-card .rules-sub { color: #888; font-size: 12px; }
.rules-card.trump { border-color: rgba(255,215,0,.3); background: rgba(255,215,0,.06); }
.rules-roles { display: flex; gap: 10px; margin-top: 8px; flex-wrap: wrap; }
.rules-role {
  flex: 1; min-width: 140px; padding: 12px; border-radius: 10px;
  text-align: center; font-size: 13px; color: #ccc; line-height: 1.6;
}
.role-dealer { background: rgba(231,76,60,.15); border: 1px solid rgba(231,76,60,.3); }
.role-partner { background: rgba(52,152,219,.15); border: 1px solid rgba(52,152,219,.3); }
.role-ghost { background: rgba(149,165,166,.15); border: 1px solid rgba(149,165,166,.3); }
.rules-steps { display: flex; flex-direction: column; gap: 14px; }
.rules-step { display: flex; gap: 12px; align-items: flex-start; }
.step-num {
  width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
  background: var(--gold); color: #1a1a2e; font-weight: 900; font-size: 14px;
  display: flex; align-items: center; justify-content: center;
}
.step-content h4 { color: #fff; font-size: 14px; margin-bottom: 4px; }
.step-content p { color: #bbb; font-size: 13px; line-height: 1.6; margin-bottom: 2px; }
.rules-order { display: flex; flex-wrap: wrap; gap: 4px; align-items: center; margin-top: 8px; }
.order-item {
  padding: 4px 10px; background: rgba(255,255,255,.08); border-radius: 6px;
  font-size: 13px; font-weight: 600; color: #fff;
}
.order-item.crown { background: rgba(255,215,0,.2); color: var(--gold); }
.order-item.main { background: rgba(231,76,60,.2); color: #e74c3c; }
.order-item.side { background: rgba(52,152,219,.2); color: #3498db; }
.order-item.dim { color: #888; }
.order-gt { color: #666; font-size: 12px; }
.rules-list { list-style: none; padding: 0; }
.rules-list li { color: #ccc; font-size: 13px; line-height: 1.7; padding-left: 16px; position: relative; }
.rules-list li::before { content: '•'; color: var(--gold); position: absolute; left: 0; }
.rules-score-table { margin-top: 8px; border-radius: 8px; overflow: hidden; border: 1px solid rgba(255,255,255,.1); }
.score-row { display: grid; grid-template-columns: repeat(4,1fr); padding: 8px 12px; font-size: 13px; color: #ccc; }
.score-row.header { background: rgba(255,215,0,.1); color: var(--gold); font-weight: 600; }
.score-row:not(:last-child) { border-bottom: 1px solid rgba(255,255,255,.05); }
.score-row.total { background: rgba(255,215,0,.06); font-weight: 600; }
.score-row .gold { color: var(--gold); }
/* 两列的表格 */
.score-table-2col .score-row { grid-template-columns: 1fr 1fr; }

/* 朋家暴露动画 */
.partner-reveal-overlay {
  position: fixed; inset: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0, 0, 0, 0);
  pointer-events: none;
  transition: background 0.4s ease;
}
.partner-reveal-overlay.show {
  background: rgba(0, 0, 0, 0.55);
}
.partner-reveal-overlay.hide {
  background: rgba(0, 0, 0, 0);
}
.partner-reveal-content {
  text-align: center;
  transform: scale(0.3);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.partner-reveal-overlay.show .partner-reveal-content {
  transform: scale(1);
  opacity: 1;
}
.partner-reveal-overlay.hide .partner-reveal-content {
  transform: scale(1.2);
  opacity: 0;
  transition: all 0.5s ease;
}
.partner-reveal-icon {
  font-size: 64px;
  margin-bottom: 8px;
  animation: partnerBounce 0.8s ease infinite alternate;
}
.partner-reveal-title {
  font-size: 72px;
  font-weight: 900;
  color: #4fc3f7;
  text-shadow: 0 0 20px rgba(79, 195, 247, 0.8), 0 0 40px rgba(79, 195, 247, 0.4), 0 4px 12px rgba(0,0,0,0.5);
  letter-spacing: 24px;
  margin-bottom: 12px;
}
.partner-reveal-name {
  font-size: 22px;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
  background: rgba(79, 195, 247, 0.2);
  padding: 8px 24px;
  border-radius: 20px;
  border: 1px solid rgba(79, 195, 247, 0.4);
  display: inline-block;
}
@keyframes partnerBounce {
  from { transform: translateY(0); }
  to { transform: translateY(-8px); }
}

/* 庄家扣底牌展示（右侧面板） */
.bottom-cards-panel {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 215, 0, 0.25);
  border-radius: 10px;
  padding: 8px 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  max-height: 80vh;
  overflow-y: auto;
}
.bottom-cards-title {
  font-size: 11px;
  color: var(--gold);
  font-weight: bold;
  margin-bottom: 2px;
  white-space: nowrap;
}
.bottom-cards-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
}
.bottom-cards-list .card {
  width: 48px;
  height: 68px;
  cursor: default;
  flex-shrink: 0;
}
.bottom-cards-list .card:hover {
  transform: none;
  border-color: #b8b8b0;
  box-shadow: 0 1px 3px rgba(0,0,0,.18);
  z-index: auto;
}
.bottom-cards-list .card .card-tl .card-rank { font-size: 12px; }
.bottom-cards-list .card .card-tl .card-mini-suit { font-size: 10px; }
.bottom-cards-list .card .card-br .card-rank { font-size: 12px; }
.bottom-cards-list .card .card-br .card-mini-suit { font-size: 10px; }
.bottom-cards-list .card .card-center .center-suit { font-size: 22px; }
.bottom-cards-list .card .card-pips .pip { font-size: 10px; }
.bottom-cards-list .card .card-face .face-img { font-size: 24px; }
.bottom-cards-list .card.joker-big .joker-star,
.bottom-cards-list .card.joker-small .joker-star { font-size: 24px; }
.bottom-cards-list .card.joker-big .joker-text,
.bottom-cards-list .card.joker-small .joker-text { font-size: 7px; letter-spacing: 1px; }
.bottom-cards-list .card.score-card::after { font-size: 7px; }

/* 日志 - 需要给底牌面板让位 */
.game-log { position: absolute; top: 46px; right: 76px; width: 180px; max-height: 160px; overflow-y: auto; background: rgba(0,0,0,.5); border-radius: 8px; padding: 8px; font-size: 11px; color: #aaa; z-index: 8; pointer-events: auto; }

/* 右侧玩家信息 - 给底牌面板让位 */
.player-right { right: 76px; top: 45%; transform: translateY(-50%); }

@media(max-width:768px) {
  :root { --card-w: 52px; --card-h: 76px; }
  .game-title { font-size: 48px; letter-spacing: 10px; }
  .btn-lg { width: 200px; font-size: 16px; }
  .trick-area { width: 260px; height: 180px; }
  .game-log { display: none; }
  .card .card-tl .card-rank, .card .card-br .card-rank { font-size: 13px; }
  .card .card-tl .card-mini-suit, .card .card-br .card-mini-suit { font-size: 11px; }
  .card .card-center .center-suit { font-size: 26px; }
  .card .card-pips .pip { font-size: 12px; }
  .card .card-face .face-img { font-size: 28px; }
  .bottom-cards-panel { right: 4px; padding: 4px 3px; }
  .bottom-cards-list .card { width: 36px; height: 52px; }
  .bottom-cards-list .card .card-tl .card-rank { font-size: 10px; }
  .bottom-cards-list .card .card-tl .card-mini-suit { font-size: 8px; }
  .bottom-cards-list .card .card-br .card-rank { font-size: 10px; }
  .bottom-cards-list .card .card-br .card-mini-suit { font-size: 8px; }
  .bottom-cards-list .card .card-center .center-suit { font-size: 16px; }
  .bottom-cards-list .card .card-pips .pip { font-size: 8px; }
  .bottom-cards-list .card .card-face .face-img { font-size: 18px; }
  .bottom-cards-title { font-size: 9px; }
  .player-right { right: 46px; }
}

/* ICP 备案标识 */
.icp-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  padding: 6px 0;
  background: rgba(0,0,0,.4);
  z-index: 9999;
}
.icp-footer a {
  color: #999;
  font-size: 12px;
  text-decoration: none;
}
.icp-footer a:hover {
  color: #ccc;
}
