/* ============================================================
   地铁大富翁 · 样式
   ============================================================ */
* { box-sizing: border-box; margin: 0; padding: 0; -webkit-tap-highlight-color: transparent; }

:root {
  --ink: #1d2b45;
  --paper: #fbf7ee;
  --gold: #f5b425;
  --shadow: 0 10px 30px rgba(10, 18, 40, .28);
  --r: 14px;
}

html, body { height: 100%; }
body {
  font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", -apple-system,
               BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: #16203a;
  background-image:
    radial-gradient(1200px 700px at 12% -10%, #3a5cc8 0%, transparent 60%),
    radial-gradient(900px 600px at 92% 8%, #8e4fd0 0%, transparent 55%),
    radial-gradient(1000px 800px at 50% 115%, #1b8f8a 0%, transparent 60%),
    linear-gradient(160deg, #16203a, #0f1830);
  overflow: hidden;
  user-select: none;
}

.hidden { display: none !important; }
.screen { position: fixed; inset: 0; }

/* ================= 开始界面 ================= */
#startScreen { overflow-y: auto; display: flex; align-items: flex-start; justify-content: center; padding: 20px 14px 40px; }
.start-inner { width: min(860px, 100%); }

.logo { text-align: center; color: #fff; padding: 8px 0 20px; }
.logo-emoji { font-size: 62px; line-height: 1; filter: drop-shadow(0 6px 12px rgba(0,0,0,.4)); animation: bob 2.4s ease-in-out infinite; }
@keyframes bob { 0%,100% { transform: translateY(0) } 50% { transform: translateY(-9px) } }
.logo h1 {
  font-size: clamp(34px, 8vw, 58px); letter-spacing: 4px; font-weight: 900;
  background: linear-gradient(180deg, #fff 30%, var(--gold));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  text-shadow: 0 4px 0 rgba(0,0,0,.18);
}
.logo .sub { margin-top: 8px; font-size: clamp(13px, 3.4vw, 17px); opacity: .85; letter-spacing: 1px; }
.logo .sub span { color: var(--gold); margin: 0 4px; }

.pick { margin-bottom: 18px; }
.pick h2 { color: #fff; font-size: 16px; margin-bottom: 10px; opacity: .9; font-weight: 700; }

.char-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: 10px; }
.char-card {
  background: rgba(255,255,255,.1); border: 3px solid transparent; border-radius: var(--r);
  padding: 10px 6px 12px; text-align: center; cursor: pointer; color: #fff;
  transition: transform .15s, background .15s, border-color .15s;
  backdrop-filter: blur(6px);
}
.char-card:hover { transform: translateY(-4px); background: rgba(255,255,255,.18); }
.char-card.sel { border-color: var(--gold); background: rgba(245,180,37,.24); transform: translateY(-4px); box-shadow: 0 8px 22px rgba(245,180,37,.3); }
.char-card svg { width: 62px; height: 62px; display: block; margin: 0 auto 4px; }
.char-card .cn { font-weight: 800; font-size: 15px; }
.char-card .ct { font-size: 11px; opacity: .75; margin-top: 3px; }

.opt-row { display: flex; flex-wrap: wrap; gap: 8px; }
.opt {
  flex: 1 1 auto; min-width: 92px; padding: 12px 10px; border-radius: 12px; cursor: pointer;
  border: 2px solid rgba(255,255,255,.18); background: rgba(255,255,255,.09); color: #fff;
  font-size: 15px; font-weight: 700; font-family: inherit; transition: .15s;
}
.opt:hover { background: rgba(255,255,255,.18); }
.opt.sel { background: var(--gold); color: #4a3000; border-color: #fff; box-shadow: 0 6px 16px rgba(245,180,37,.34); }

.start-actions { display: flex; flex-direction: column; gap: 10px; align-items: center; margin-top: 24px; }
.big-btn {
  width: min(420px, 100%); padding: 18px; font-size: 22px; font-weight: 900; letter-spacing: 2px;
  border: none; border-radius: 16px; cursor: pointer; color: #4a2c00; font-family: inherit;
  background: linear-gradient(180deg, #ffd35c, #f5901e);
  box-shadow: 0 7px 0 #b96a10, 0 14px 26px rgba(0,0,0,.34);
  transition: transform .08s, box-shadow .08s;
}
.big-btn:active { transform: translateY(5px); box-shadow: 0 2px 0 #b96a10, 0 6px 14px rgba(0,0,0,.3); }
.ghost-btn {
  background: rgba(255,255,255,.12); color: #fff; border: 2px solid rgba(255,255,255,.25);
  padding: 10px 22px; border-radius: 12px; font-size: 15px; cursor: pointer; font-family: inherit; font-weight: 700;
}
.ghost-btn:hover { background: rgba(255,255,255,.2); }

/* ================= 游戏布局 ================= */
#gameScreen { display: flex; gap: 10px; padding: 8px; }
#boardWrap { flex: 1 1 auto; min-width: 0; display: grid; place-items: center; }

#board {
  width: min(100%, calc(100vh - 20px)); aspect-ratio: 1;
  display: grid; grid-template-columns: repeat(9, 1fr); grid-template-rows: repeat(9, 1fr);
  gap: .35cqw; padding: .5cqw; position: relative;
  background: linear-gradient(150deg, #10406b, #0d2f52 45%, #16264a);
  border-radius: 18px; box-shadow: var(--shadow), inset 0 0 0 3px rgba(255,255,255,.09);
  container-type: inline-size;
}

/* ---- 格子 ---- */
.tile {
  position: relative; background: var(--paper); border-radius: .8cqw; overflow: hidden;
  display: flex; flex-direction: column; align-items: center; justify-content: flex-start;
  padding: .3cqw .2cqw; cursor: default; transition: box-shadow .15s, transform .15s;
}
.tile .bar { width: 100%; height: 1.5cqw; flex: none; border-radius: .3cqw; margin-bottom: .25cqw; }
.tile .em { font-size: 2.9cqw; line-height: 1.05; }
.tile .nm { font-size: 1.28cqw; font-weight: 800; text-align: center; line-height: 1.15; margin-top: .1cqw; letter-spacing: -.02em; }
.tile .pr { font-size: 1.15cqw; font-weight: 700; color: #7b6a4e; margin-top: auto; padding-bottom: .1cqw; }
.tile .lvl { position: absolute; top: 2.1cqw; right: .25cqw; font-size: .95cqw; line-height: 1; text-align: right; }
.tile.owned { box-shadow: inset 0 0 0 .35cqw var(--oc); }
.tile.owned .pr { color: var(--oc); font-weight: 900; }
.tile.can-up { cursor: pointer; animation: pulse 1.4s ease-in-out infinite; }
.tile.can-up:hover { transform: scale(1.05); z-index: 5; }
@keyframes pulse { 0%,100% { box-shadow: inset 0 0 0 .35cqw var(--oc), 0 0 0 0 rgba(245,180,37,.75) } 50% { box-shadow: inset 0 0 0 .35cqw var(--oc), 0 0 0 .9cqw rgba(245,180,37,0) } }
.tile.hl { transform: scale(1.07); z-index: 6; box-shadow: 0 0 0 .4cqw var(--gold), 0 .8cqw 2cqw rgba(0,0,0,.4); }

.tile.corner { background: linear-gradient(160deg, #fff9e6, #ffe9b8); }
.tile.corner .em { font-size: 4.2cqw; margin-top: .5cqw; }
.tile.corner .nm { font-size: 1.4cqw; }
.tile.t-block { background: linear-gradient(160deg, #fff3c4, #ffdf7a); }
.tile.t-ball  { background: linear-gradient(160deg, #ffe1e1, #ffb9b9); }
.tile.t-hub   { background: linear-gradient(160deg, #e8f1ff, #cbdcfb); }
.tile.t-ticket{ background: linear-gradient(160deg, #efe6ff, #d9c9fb); }
.tile.t-block .em, .tile.t-ball .em { animation: bob 1.8s ease-in-out infinite; }

/* ---- 中间面板 ---- */
#center {
  grid-column: 2 / 9; grid-row: 2 / 9; border-radius: 1.2cqw;
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,.04) 0 2px, transparent 2px 16px),
    linear-gradient(160deg, #1a3a68, #12294c 55%, #101f3d);
  display: flex; flex-direction: column; color: #fff; padding: 1.6cqw; gap: .6cqw;
  box-shadow: inset 0 0 0 .25cqw rgba(255,255,255,.1);
}
.c-top { display: flex; align-items: center; gap: 1cqw; flex: none; }
.c-round { font-size: 1.6cqw; font-weight: 700; opacity: .9; }
.c-round b { font-size: 2.1cqw; color: var(--gold); }
.c-pot { font-size: 1.6cqw; font-weight: 700; background: rgba(245,180,37,.18); padding: .3cqw 1cqw; border-radius: 2cqw; }
.c-pot b { color: var(--gold); }
.c-tools { margin-left: auto; display: flex; gap: .5cqw; }
.tool {
  width: 3.2cqw; height: 3.2cqw; border-radius: 50%; border: none; cursor: pointer;
  background: rgba(255,255,255,.14); color: #fff; font-size: 1.5cqw; display: grid; place-items: center;
  transition: .15s; padding: 0;
}
.tool:hover { background: rgba(255,255,255,.28); transform: scale(1.1); }
.tool.off { opacity: .35; }

/* 中间的地铁线路图 */
.c-map { flex: 1 1 auto; min-height: 0; display: flex; flex-direction: column; justify-content: center; gap: .7cqw; padding: .4cqw 0; }
#lineMap { display: flex; flex-direction: column; gap: .6cqw; }
.map-title { font-size: 1.5cqw; font-weight: 800; opacity: .82; letter-spacing: .5px; }
.map-title small { font-weight: 500; opacity: .6; font-size: 1.15cqw; margin-left: .4cqw; }
.lrow { display: flex; align-items: center; gap: .9cqw; }
.lchip {
  width: 2.8cqw; height: 2.8cqw; border-radius: .6cqw; flex: none; display: grid; place-items: center;
  font-size: 1.6cqw; font-weight: 900; color: #fff; box-shadow: 0 .2cqw .5cqw rgba(0,0,0,.3);
}
.ltrack {
  flex: 1 1 auto; border-radius: 1.6cqw; display: flex; align-items: flex-start;
  justify-content: space-around; padding: .7cqw 1.6cqw .45cqw; position: relative; min-width: 0;
}
.ltrack::before {
  content: ''; position: absolute; left: 1.8cqw; right: 1.8cqw; top: 1.58cqw;
  height: .44cqw; border-radius: 1cqw; background: currentColor; opacity: .55;
}
.stnbox { display: flex; flex-direction: column; align-items: center; gap: .22cqw; position: relative; min-width: 0; }
.stn {
  width: 1.8cqw; height: 1.8cqw; border-radius: 50%; background: #16264a;
  box-shadow: 0 0 0 .34cqw currentColor; flex: none; display: grid; place-items: center;
}
.stn.own { background: var(--so); box-shadow: 0 0 0 .34cqw var(--so); }
.stn b { color: #16264a; font-size: 1.15cqw; line-height: 1; font-weight: 900; }
.stnbox .sl { font-size: 1.18cqw; color: #dae5f7; opacity: .8; white-space: nowrap; letter-spacing: -.02em; }
.stnbox.own .sl { opacity: 1; font-weight: 700; }
.lfull { font-size: 1.15cqw; font-weight: 800; color: var(--gold); flex: none; width: 5.8cqw; text-align: right; }

.c-mid { flex: none; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .9cqw; padding: .6cqw 0; }
#turnBanner { display: flex; align-items: center; gap: 1cqw; background: rgba(255,255,255,.1); padding: .6cqw 2cqw .6cqw .6cqw; border-radius: 6cqw; }
.t-av { width: 5cqw; height: 5cqw; border-radius: 50%; background: #fff; display: grid; place-items: center; overflow: hidden; flex: none; }
.t-av svg { width: 90%; height: 90%; }
.t-txt { display: flex; flex-direction: column; line-height: 1.25; }
.t-txt b { font-size: 2.1cqw; }
.t-txt span { font-size: 1.35cqw; opacity: .75; }

#diceRow { display: flex; gap: 1.4cqw; }
.die {
  width: 7cqw; height: 7cqw; border-radius: 1.4cqw; background: #fff; color: #1d2b45;
  display: grid; place-items: center; font-size: 5.6cqw; line-height: 1;
  box-shadow: 0 .6cqw 0 #c9bda3, 0 1.2cqw 2cqw rgba(0,0,0,.35);
}
.die.rolling { animation: shake .28s linear infinite; }
@keyframes shake {
  0% { transform: rotate(0) translateY(0) } 25% { transform: rotate(-14deg) translateY(-8%) }
  50% { transform: rotate(0) translateY(4%) } 75% { transform: rotate(14deg) translateY(-8%) } 100% { transform: rotate(0) }
}

#msg { font-size: 1.65cqw; text-align: center; min-height: 2.4cqw; opacity: .92; max-width: 90%; line-height: 1.4; }

.c-bot { flex: none; }
#actions { display: flex; flex-wrap: wrap; gap: .8cqw; justify-content: center; }
.act {
  border: none; border-radius: 1.2cqw; padding: 1.1cqw 2.4cqw; font-size: 2cqw; font-weight: 900;
  cursor: pointer; font-family: inherit; color: #43290b; letter-spacing: .05em;
  background: linear-gradient(180deg, #ffd35c, #f5a01e);
  box-shadow: 0 .55cqw 0 #b96a10, 0 1cqw 2cqw rgba(0,0,0,.3);
  transition: transform .07s, box-shadow .07s, filter .15s;
}
.act:hover { filter: brightness(1.06); }
.act:active { transform: translateY(.5cqw); box-shadow: 0 .05cqw 0 #b96a10; }
.act.sec { background: linear-gradient(180deg, #dfe6f2, #b6c2d6); color: #33405a; box-shadow: 0 .55cqw 0 #8593ac, 0 1cqw 2cqw rgba(0,0,0,.28); }
.act.sec:active { box-shadow: 0 .05cqw 0 #8593ac; }
.act.go { background: linear-gradient(180deg, #7ee39b, #33b45f); color: #0d3d20; box-shadow: 0 .55cqw 0 #1f7d40, 0 1cqw 2cqw rgba(0,0,0,.28); }
.act.go:active { box-shadow: 0 .05cqw 0 #1f7d40; }
.act[disabled] { opacity: .45; pointer-events: none; }

/* ---- 棋子 ---- */
#tokenLayer { position: absolute; inset: 0; pointer-events: none; }
.token {
  position: absolute; width: 5.4cqw; height: 5.4cqw; border-radius: 50%;
  background: #fff; box-shadow: 0 .35cqw .7cqw rgba(0,0,0,.45), inset 0 0 0 .3cqw var(--pc);
  display: grid; place-items: center; overflow: hidden;
  transition: left .16s cubic-bezier(.34,1.4,.64,1), top .16s cubic-bezier(.34,1.4,.64,1);
  z-index: 20;
}
.token svg { width: 96%; height: 96%; }
.token.jump { animation: jump .16s ease-out; }
@keyframes jump { 0% { transform: scale(1) } 45% { transform: scale(1.35) translateY(-22%) } 100% { transform: scale(1) } }
.token.active { z-index: 30; box-shadow: 0 .35cqw .7cqw rgba(0,0,0,.45), inset 0 0 0 .3cqw var(--pc), 0 0 0 .5cqw var(--gold); }
.token.fly { transition: left .55s cubic-bezier(.5,-.3,.4,1.35), top .55s cubic-bezier(.5,-.3,.4,1.35); }
.token.dead { filter: grayscale(1); opacity: .35; }

/* ================= 侧栏 ================= */
#side { flex: 0 0 300px; display: flex; flex-direction: column; gap: 8px; min-height: 0; }

.pcard {
  background: rgba(255,255,255,.94); border-radius: 12px; padding: 8px 10px;
  display: grid; grid-template-columns: 40px 1fr; gap: 8px; align-items: center;
  box-shadow: 0 4px 14px rgba(0,0,0,.24); border-left: 6px solid var(--pc); transition: .2s;
}
.pcard.turn { transform: translateX(-5px); box-shadow: 0 0 0 3px var(--gold), 0 6px 18px rgba(0,0,0,.3); }
.pcard.dead { opacity: .45; filter: grayscale(.8); }
.pcard .av { width: 40px; height: 40px; border-radius: 50%; background: #f2ede2; display: grid; place-items: center; overflow: hidden; }
.pcard .av svg { width: 94%; height: 94%; }
.pcard .nm { font-weight: 900; font-size: 14px; display: flex; align-items: center; gap: 5px; }
.pcard .nm .badge { font-size: 10px; background: #e7ecf5; color: #55627d; border-radius: 6px; padding: 1px 5px; font-weight: 700; }
.pcard .mo { font-size: 17px; font-weight: 900; color: #16913f; letter-spacing: -.02em; }
.pcard .mo small { font-size: 11px; color: #8a8a8a; font-weight: 700; margin-left: 4px; }
.pcard .rowline { display: flex; flex-wrap: wrap; gap: 3px; margin-top: 3px; align-items: center; }
.pcard .dot { width: 13px; height: 13px; border-radius: 4px; font-size: 8px; color: #fff; display: grid; place-items: center; font-weight: 900; }
.pcard .mon { font-size: 13px; }
.pcard .buff { font-size: 12px; }

#logWrap { flex: 1 1 auto; min-height: 0; background: rgba(8,16,34,.62); border-radius: 12px; overflow: hidden; box-shadow: inset 0 0 0 2px rgba(255,255,255,.07); }
#log { height: 100%; overflow-y: auto; padding: 8px 10px; font-size: 12.5px; line-height: 1.55; color: #d9e3f5; scroll-behavior: smooth; }
#log div { padding: 2px 0; border-bottom: 1px dashed rgba(255,255,255,.07); }
#log .good { color: #8ff0a8; }
#log .bad  { color: #ff9d9d; }
#log .sys  { color: #b9c6de; opacity: .8; }

/* ================= 弹层 ================= */
#overlay {
  position: fixed; inset: 0; background: rgba(6, 12, 28, .72); backdrop-filter: blur(4px);
  display: grid; place-items: center; z-index: 100; padding: 16px; overflow-y: auto;
}
.modal {
  background: var(--paper); border-radius: 20px; padding: 22px 20px; width: min(430px, 100%);
  box-shadow: 0 24px 60px rgba(0,0,0,.55); text-align: center; animation: pop .28s cubic-bezier(.2,1.5,.5,1);
  max-height: 92vh; overflow-y: auto;
}
@keyframes pop { from { transform: scale(.75); opacity: 0 } to { transform: scale(1); opacity: 1 } }
.modal .m-emoji { font-size: 62px; line-height: 1; }
.modal h3 { font-size: 24px; margin: 8px 0 6px; }
.modal p { font-size: 15.5px; line-height: 1.6; color: #4d5b74; }
.modal .price { font-size: 30px; font-weight: 900; color: #16913f; margin: 10px 0 4px; }
.modal .m-btns { display: flex; flex-direction: column; gap: 9px; margin-top: 16px; }
.mbtn {
  padding: 14px; border-radius: 13px; border: none; cursor: pointer; font-family: inherit;
  font-size: 17px; font-weight: 800; color: #43290b;
  background: linear-gradient(180deg, #ffd35c, #f5a01e); box-shadow: 0 4px 0 #b96a10;
  transition: transform .07s, box-shadow .07s;
}
.mbtn:active { transform: translateY(3px); box-shadow: 0 1px 0 #b96a10; }
.mbtn.sec { background: linear-gradient(180deg, #e6ebf3, #bcc7d8); color: #33405a; box-shadow: 0 4px 0 #8593ac; }
.mbtn.sec:active { box-shadow: 0 1px 0 #8593ac; }
.mbtn small { display: block; font-size: 12px; font-weight: 600; opacity: .72; margin-top: 2px; }

.rentbox { background: #fff; border-radius: 12px; padding: 10px 12px; margin: 12px 0 4px; text-align: left; font-size: 13px; }
.rentbox .rr { display: flex; justify-content: space-between; padding: 3px 0; border-bottom: 1px dashed #e6ded0; }
.rentbox .rr:last-child { border: 0; }
.rentbox .rr b { color: #16913f; }

.card3d { border-radius: 18px; padding: 20px 16px; color: #fff; box-shadow: 0 14px 34px rgba(0,0,0,.4); }
.tilegrid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 9px; margin-top: 14px; }
.tilebtn {
  padding: 12px 8px; border-radius: 12px; border: 3px solid #e0d6c2; background: #fff; cursor: pointer;
  font-family: inherit; font-size: 14px; font-weight: 800; color: var(--ink);
}
.tilebtn:hover { border-color: var(--gold); transform: translateY(-2px); }
.tilebtn .te { display: block; font-size: 26px; }
.tilebtn .ts { display: block; font-size: 11px; font-weight: 600; color: #8a7a5e; margin-top: 2px; }

/* 排行 */
.rank { text-align: left; margin: 14px 0 4px; }
.rankrow { display: flex; align-items: center; gap: 9px; padding: 8px; border-radius: 11px; background: #fff; margin-bottom: 7px; }
.rankrow.win { background: linear-gradient(90deg, #fff2c9, #ffe08a); box-shadow: 0 0 0 3px var(--gold); }
.rankrow .rav { width: 36px; height: 36px; border-radius: 50%; background: #f2ede2; display: grid; place-items: center; overflow: hidden; flex: none; }
.rankrow .rav svg { width: 94%; height: 94%; }
.rankrow .rn { font-weight: 900; font-size: 15px; flex: 1; }
.rankrow .rw { font-weight: 900; color: #16913f; }
.rankrow .rp { font-size: 20px; width: 26px; text-align: center; }

/* 玩法说明 */
.rules { text-align: left; font-size: 14px; line-height: 1.75; color: #46536c; }
.rules h4 { color: var(--ink); font-size: 16px; margin: 14px 0 5px; }
.rules ul { padding-left: 20px; }
.rules li { margin: 3px 0; }
.rules .k { background: #fff3c4; border-radius: 5px; padding: 0 5px; font-weight: 800; color: #7a5a00; }

/* 顶部横幅 */
#bannerLayer { position: fixed; top: 12%; left: 0; right: 0; display: grid; place-items: center; pointer-events: none; z-index: 90; }
.banner {
  padding: 14px 34px; border-radius: 16px; color: #fff; text-align: center;
  box-shadow: 0 14px 34px rgba(0,0,0,.45); animation: bnr 1.5s ease forwards;
}
.banner b { display: block; font-size: 27px; font-weight: 900; letter-spacing: 1px; }
.banner span { font-size: 15px; opacity: .95; }
@keyframes bnr {
  0% { transform: translateY(-40px) scale(.7); opacity: 0 }
  15% { transform: translateY(0) scale(1.06); opacity: 1 }
  25% { transform: scale(1) }
  80% { opacity: 1; transform: translateY(0) }
  100% { opacity: 0; transform: translateY(-22px) }
}

#confetti { position: fixed; inset: 0; pointer-events: none; z-index: 200; }

/* ================= 窄屏 / 平板竖屏 ================= */
@media (max-width: 980px), (orientation: portrait) {
  body { overflow-y: auto; }
  #gameScreen { flex-direction: column; overflow-y: auto; padding: 6px; }
  #boardWrap { width: 100%; }
  #board { width: min(100%, 96vw); }
  #side { flex: none; width: 100%; display: grid; grid-template-columns: 1fr 1fr; gap: 7px; }
  #playersPanel { display: grid; gap: 6px; }
  #logWrap { height: 190px; }
}
@media (max-width: 620px) {
  #side { grid-template-columns: 1fr; }
  #logWrap { height: 150px; }
  .pcard { grid-template-columns: 30px 1fr; padding: 6px 8px; }
  .pcard .av { width: 30px; height: 30px; }
  .pcard .nm { font-size: 12.5px; }
  .pcard .mo { font-size: 14px; }
  .pcard .mo small { font-size: 10px; }
  #log { font-size: 11.5px; }

  /* 手机屏幕上格子太小,站名会缩到 5px 看不清 ——
     改成只留大图标和价格,名字看中间的线路图,点格子能看详情 */
  .tile .nm { display: none; }
  .tile.corner .nm { display: block; font-size: 2cqw; line-height: 1.1; }
  .tile .em { font-size: 5.2cqw; margin-top: .4cqw; }
  .tile.corner .em { font-size: 4.6cqw; }
  /* 没有价格的格子(问号砖块 / 精灵球 / 买月票)把图标居中,别顶在上边 */
  .tile.t-block, .tile.t-ball, .tile.t-ticket { justify-content: center; }
  .tile.t-block .em, .tile.t-ball .em, .tile.t-ticket .em { font-size: 6cqw; margin: 0; }
  .tile .pr { font-size: 2cqw; }
  .tile .lvl { font-size: 1.7cqw; top: 2.6cqw; }
  .map-title small { display: none; }
  .stnbox .sl { font-size: 1.55cqw; }
  .stn b { font-size: 1.5cqw; }
  .lfull { font-size: 1.5cqw; width: 7cqw; }
}
