/* ===========================================================
   拉粑粑打卡表 —— 手绘便签风格
   =========================================================== */
:root {
  --paper:      #FDF6EA;
  --paper-2:    #FFFCF6;
  --ink:        #2A2320;
  --ink-2:      #6B5D53;
  --ink-3:      #A2938A;
  --line:       #2A2320;

  --poop:       #8A5A3B;   /* 主色：便便棕 */
  --poop-soft:  #C89A76;
  --poop-pale:  #EADBCB;

  --pink:       #F2A6C5;
  --mint:       #8ED08A;
  --sky:        #A9C0E8;
  --sun:        #F5C860;

  --radius-doodle: 22px 34px 26px 30px / 30px 24px 32px 26px;
  --radius-sm:     14px 20px 16px 18px / 18px 15px 19px 16px;
  --shadow:        3px 3px 0 var(--line);
  --shadow-sm:     2px 2px 0 var(--line);

  --tab-h: 62px;
}

* { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }

html, body {
  margin: 0; padding: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans SC",
               ui-rounded, system-ui, -apple-system, sans-serif;
  font-size: 15px;
  line-height: 1.5;
  overscroll-behavior-y: none;
}
body {
  /* 纸纹小点点 */
  background-image: radial-gradient(rgba(42,35,32,.055) 1px, transparent 1px);
  background-size: 18px 18px;
  min-height: 100dvh;
}
button, input { font: inherit; color: inherit; }
button { cursor: pointer; border: none; background: none; }
[hidden] { display: none !important; }
.mono { font-family: ui-monospace, "SF Mono", Menlo, monospace; letter-spacing: .04em; }

/* 手绘描边容器 */
.doodle {
  background: var(--paper-2);
  border: 2.5px solid var(--line);
  border-radius: var(--radius-doodle);
  box-shadow: var(--shadow);
}
.doodle-sm {
  background: var(--paper-2);
  border: 2px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}

/* 便便图形
   注意：<use> 会生成 shadow tree，外层的后代选择器进不去，
   所以一律用「可继承的 CSS 变量」来控制颜色。 */
.poop-body {
  fill: var(--poop-fill, none);
  stroke: var(--poop-stroke, var(--line));
  stroke-width: var(--poop-sw, 5);
  stroke-dasharray: var(--poop-dash, none);
  stroke-linejoin: round;
}
.poop-eye   { fill: var(--poop-face, transparent); }
.poop-mouth { fill: none; stroke: var(--poop-face, transparent); }

/* ===================== 登录页 ===================== */
.auth-screen {
  min-height: 100dvh;
  display: grid; place-items: center;
  padding: 24px 18px calc(24px + env(safe-area-inset-bottom));
}
.auth-card { width: 100%; max-width: 380px; padding: 26px 22px 24px; text-align: center; }
.auth-hero { position: relative; height: 92px; margin-bottom: 2px; }
.hero-poop { width: 92px; height: 92px; --poop-fill: var(--poop-soft); --poop-face: var(--line); }
.hero-spark { position: absolute; font-size: 20px; color: var(--ink); }
.hero-spark.s1 { left: 14%; top: 6px; }
.hero-spark.s2 { right: 16%; top: 0; font-size: 24px; }
.hero-spark.s3 { right: 22%; bottom: 8px; font-size: 16px; color: var(--ink-3); }

.logo {
  margin: 4px 0 2px; font-size: 30px; letter-spacing: 2px;
  -webkit-text-stroke: .5px var(--line);
}
.logo-sub { margin: 0 0 18px; color: var(--ink-2); font-size: 13px; }

.seg {
  display: grid; grid-template-columns: 1fr 1fr; gap: 6px;
  background: var(--poop-pale); border: 2px solid var(--line);
  border-radius: 999px; padding: 4px; margin-bottom: 16px;
}
.seg-btn { padding: 8px 0; border-radius: 999px; font-weight: 700; color: var(--ink-2); }
.seg-btn.is-on { background: var(--paper-2); color: var(--ink); border: 2px solid var(--line); }

.field { display: block; text-align: left; margin-bottom: 12px; }
.field > span { display: block; font-size: 12.5px; color: var(--ink-2); margin: 0 0 5px 6px; font-weight: 700; }
.field input {
  width: 100%; padding: 11px 13px;
  background: var(--paper);
  border: 2px solid var(--line); border-radius: var(--radius-sm);
  outline: none;
}
.field input:focus { box-shadow: var(--shadow-sm); }

.hint { font-size: 12px; color: var(--ink-2); text-align: left; margin: -2px 0 12px 6px; }
.err {
  background: #FFE9E4; border: 2px solid #D9603F; color: #8E3018;
  border-radius: var(--radius-sm); padding: 8px 11px; font-size: 13px; margin: 0 0 12px;
  text-align: left;
}

.btn-main {
  width: 100%; padding: 13px 16px; font-weight: 800; letter-spacing: 1px;
  background: var(--sun); color: var(--ink);
  border: 2.5px solid var(--line); border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
}
.btn-main:active { transform: translate(2px, 2px); box-shadow: 1px 1px 0 var(--line); }
.btn-ghost {
  width: 100%; padding: 12px 16px; font-weight: 700;
  background: var(--paper-2); border: 2.5px solid var(--line);
  border-radius: var(--radius-sm); box-shadow: var(--shadow);
}
.btn-ghost:active { transform: translate(2px, 2px); box-shadow: 1px 1px 0 var(--line); }
.btn-tiny {
  padding: 6px 12px; font-size: 13px; font-weight: 700;
  background: var(--mint); border: 2px solid var(--line);
  border-radius: 999px; box-shadow: var(--shadow-sm);
}

/* ===================== 主框架 ===================== */
.app { max-width: 560px; margin: 0 auto; padding-bottom: calc(var(--tab-h) + 82px + env(safe-area-inset-bottom)); }

.topbar {
  position: sticky; top: 0; z-index: 20;
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 12px 16px 10px;
  background: linear-gradient(var(--paper) 78%, rgba(253,246,234,0));
}
.brand { display: flex; align-items: center; gap: 9px; }
.brand-poop { width: 34px; height: 34px; flex: none; transform: rotate(-6deg);
  --poop-fill: var(--poop-pale); --poop-face: var(--line); }
.brand-title { font-size: 18px; font-weight: 800; letter-spacing: 1px; }
.brand-sub { font-size: 11px; color: var(--ink-2); }

.id-chip {
  display: flex; flex-direction: column; align-items: flex-end; gap: 1px;
  padding: 5px 10px; font-size: 11px; line-height: 1.25; color: var(--ink-2);
  max-width: 42vw;
}
.id-chip span { max-width: 100%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.id-chip b { font-family: ui-monospace, Menlo, monospace; color: var(--ink); font-size: 12px; }

.views { padding: 0 16px; }
.view { display: none; animation: pop .18s ease-out; }
.view.is-on { display: block; }
@keyframes pop { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

.view-title { font-size: 20px; margin: 6px 0 14px; letter-spacing: 1px; }
.view-title small { font-size: 12px; color: var(--ink-2); font-weight: 500; margin-left: 6px; }
.tip { font-size: 12px; color: var(--ink-2); margin: 12px 4px 0; }

/* ===================== 日历 ===================== */
.month-bar { display: flex; align-items: center; justify-content: center; gap: 14px; margin: 2px 0 12px; }
.month-bar h2 { font-size: 19px; margin: 0; letter-spacing: 1px; min-width: 132px; text-align: center; }
.round-btn {
  width: 34px; height: 34px; font-size: 19px; font-weight: 800; line-height: 1;
  background: var(--paper-2); border: 2.5px solid var(--line); border-radius: 50%;
  box-shadow: var(--shadow-sm);
}
.round-btn:active { transform: translate(1px, 1px); box-shadow: none; }

.mini-stats { display: flex; gap: 8px; margin-bottom: 12px; }
.mini {
  flex: 1; text-align: center; padding: 8px 4px;
  background: var(--paper-2); border: 2px solid var(--line);
  border-radius: var(--radius-sm); box-shadow: var(--shadow-sm);
}
.mini b { display: block; font-size: 20px; line-height: 1.1; }
.mini span { font-size: 11px; color: var(--ink-2); }
.mini.hot { background: var(--sun); }

.cal-card { padding: 12px 10px 14px; }
.weekdays {
  display: grid; grid-template-columns: repeat(7, 1fr);
  font-size: 12px; color: var(--ink-2); text-align: center; font-weight: 700;
  margin-bottom: 6px;
}
.weekdays .sun { color: var(--pink); }
.grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }

.cell {
  position: relative; aspect-ratio: 1 / 1.12;
  display: flex; flex-direction: column; align-items: center; justify-content: flex-start;
  padding-top: 2px;
  border: 2px dashed transparent; border-radius: 12px;
  min-height: 44px;
}
.cell.blank { visibility: hidden; }
.cell .d { font-size: 11px; color: var(--ink-3); font-weight: 700; line-height: 1; }
.cell .p {
  width: 78%; max-width: 34px; margin-top: 1px;
  --poop-stroke: var(--ink-3); --poop-sw: 4.5; --poop-dash: 7 6;
}
.cell.done .p {
  --poop-stroke: var(--line); --poop-dash: none;
  --poop-fill: var(--mood-fill, var(--poop-soft)); --poop-face: var(--line);
}
.cell.done .d { color: var(--ink); }
.cell.today { border-color: var(--line); background: rgba(245,200,96,.35); }
.cell.today .d { color: var(--ink); }
.cell.future { opacity: .38; }
.cell:active { transform: scale(.94); }

.cell .emo {
  position: absolute; right: -1px; bottom: 0; font-size: 12px;
  filter: drop-shadow(0 0 1.5px var(--paper-2)) drop-shadow(0 0 1.5px var(--paper-2));
}
.dot-badge {
  position: absolute; right: -2px; top: -2px;
  min-width: 15px; height: 15px; padding: 0 3px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 10px; font-style: normal; font-weight: 800;
  background: var(--pink); color: var(--ink);
  border: 1.5px solid var(--line); border-radius: 999px;
}

.legend {
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: center;
  margin-top: 12px; padding: 8px 10px; font-size: 11.5px; color: var(--ink-2);
}
.legend span { display: inline-flex; align-items: center; gap: 4px; }
.legend .dot-badge { position: static; }
.lg-poop { width: 18px; height: 18px; --poop-stroke: var(--ink-3); --poop-dash: 7 6; }
.lg-poop.done { --poop-stroke: var(--line); --poop-dash: none; --poop-fill: var(--poop-soft); }

/* ===================== 统计 ===================== */
.tiles { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 14px; }
.tile {
  padding: 12px 14px;
  background: var(--paper-2); border: 2.5px solid var(--line);
  border-radius: var(--radius-sm); box-shadow: var(--shadow);
}
.tile b { display: block; font-size: 28px; line-height: 1.1; }
.tile b i { font-size: 13px; font-style: normal; font-weight: 700; color: var(--ink-2); margin-left: 2px; }
.tile span { font-size: 12px; color: var(--ink-2); }
.tile.streak { background: var(--sun); }
.tile.best   { background: #E8F3E6; }

.chart-card { padding: 14px 14px 16px; margin-bottom: 14px; }
.chart-card figcaption { margin-bottom: 12px; }
.chart-card h3 { margin: 0; font-size: 15px; letter-spacing: .5px; }
.cap-sub { margin: 2px 0 0; font-size: 11.5px; color: var(--ink-2); }

/* 时段柱状图：单系列，单色 */
.hours { display: grid; grid-template-columns: repeat(12, 1fr); gap: 2px; align-items: end; height: 116px; }
.hbar { display: flex; flex-direction: column; justify-content: flex-end; height: 100%; gap: 3px; }
.hbar .bar {
  background: var(--poop);
  border-radius: 4px 4px 0 0;
  min-height: 2px;
  transition: height .25s ease-out;
}
.hbar.zero .bar { background: var(--poop-pale); }
.hbar .hv { font-size: 9px; text-align: center; color: var(--ink); font-weight: 800; height: 11px; }
.hbar .hl { font-size: 9px; text-align: center; color: var(--ink-3); }
.hours-empty, .mood-empty { font-size: 13px; color: var(--ink-2); text-align: center; padding: 18px 0; }

/* 状态排行：单色横条 + 直接标注 */
.moodbars { display: flex; flex-direction: column; gap: 9px; }
.mrow { display: grid; grid-template-columns: 84px 1fr auto; align-items: center; gap: 8px; }
.mrow .ml { font-size: 12.5px; white-space: nowrap; }
.mrow .mt { display: block; height: 14px; background: var(--poop-pale); border-radius: 999px; overflow: hidden; }
.mrow .mf { display: block; height: 100%; background: var(--poop); border-radius: 999px; transition: width .3s ease-out; }
.mrow .mc { font-size: 12px; font-weight: 800; min-width: 20px; text-align: right; }

/* ===================== 排行榜 ===================== */
.room-bar { display: flex; align-items: center; gap: 8px; padding: 8px 10px; margin-bottom: 6px; }
.room-bar > span { font-size: 12px; color: var(--ink-2); font-weight: 700; }
.room-bar input {
  flex: 1; min-width: 0; padding: 7px 10px; text-transform: uppercase;
  background: var(--paper); border: 2px solid var(--line); border-radius: 999px; outline: none;
  font-family: ui-monospace, Menlo, monospace; font-size: 13px;
}
.board { list-style: none; margin: 12px 0 0; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.bcard {
  display: flex; align-items: center; gap: 10px; padding: 10px 12px;
  background: var(--paper-2); border: 2.5px solid var(--line);
  border-radius: var(--radius-sm); box-shadow: var(--shadow);
}
.bcard.me { background: #FFF3D6; }
.bcard .rk { font-size: 18px; font-weight: 800; min-width: 26px; text-align: center; }
.bcard .av { font-size: 22px; }
.bcard .who { flex: 1; min-width: 0; }
.bcard .who b { display: block; font-size: 14px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.bcard .who small { font-size: 10.5px; color: var(--ink-2); font-family: ui-monospace, Menlo, monospace; }
.bcard .num { text-align: right; }
.bcard .num b { display: block; font-size: 19px; line-height: 1.1; }
.bcard .num small { font-size: 10.5px; color: var(--ink-2); }
.board-empty { text-align: center; color: var(--ink-2); font-size: 13px; padding: 26px 0; }

/* ===================== 我的 ===================== */
.me-card { padding: 14px 16px; margin-bottom: 12px; }
.me-row { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 6px 0; font-size: 13.5px; }
.me-row + .me-row { border-top: 1.5px dashed var(--poop-pale); }
.me-row span { color: var(--ink-2); }
.me-label { margin: 0 0 10px; font-size: 12.5px; color: var(--ink-2); font-weight: 700; }
.avatars { display: flex; flex-wrap: wrap; gap: 8px; }
.av-btn {
  width: 44px; height: 44px; font-size: 22px; line-height: 1;
  background: var(--paper); border: 2px solid var(--line); border-radius: 50%;
}
.av-btn.is-on { background: var(--sun); box-shadow: var(--shadow-sm); }
.ver { text-align: center; font-size: 11px; color: var(--ink-3); margin: 16px 0 0; }

/* ===================== FAB & 底栏 ===================== */
.fab {
  position: fixed; z-index: 30;
  left: 50%; transform: translateX(-50%);
  bottom: calc(var(--tab-h) + 14px + env(safe-area-inset-bottom));
  display: flex; align-items: center; gap: 7px;
  padding: 10px 20px 10px 14px;
  background: var(--sun); font-weight: 800; letter-spacing: 1px; font-size: 15px;
}
.fab svg { width: 26px; height: 26px; --poop-fill: var(--poop-soft); --poop-face: var(--line); }
.fab:active { transform: translateX(-50%) translateY(2px); box-shadow: 1px 1px 0 var(--line); }

.tabbar {
  position: fixed; z-index: 30; left: 0; right: 0; bottom: 0;
  height: calc(var(--tab-h) + env(safe-area-inset-bottom));
  padding-bottom: env(safe-area-inset-bottom);
  display: grid; grid-template-columns: repeat(4, 1fr);
  background: var(--paper-2); border-top: 2.5px solid var(--line);
}
.tab { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px; color: var(--ink-3); }
.tab i { font-size: 19px; font-style: normal; filter: grayscale(1); opacity: .55; }
.tab span { font-size: 10.5px; font-weight: 700; }
.tab.is-on { color: var(--ink); }
.tab.is-on i { filter: none; opacity: 1; transform: translateY(-1px); }

/* ===================== 弹层 ===================== */
.sheet-mask { position: fixed; inset: 0; background: rgba(42,35,32,.45); z-index: 40; }
.sheet {
  position: fixed; z-index: 50; left: 0; right: 0; bottom: 0;
  max-width: 560px; margin: 0 auto;
  padding: 8px 18px calc(20px + env(safe-area-inset-bottom));
  background: var(--paper-2);
  border: 2.5px solid var(--line); border-bottom: none;
  border-radius: 26px 26px 0 0;
  max-height: 86dvh; overflow-y: auto;
  animation: up .22s cubic-bezier(.2,.8,.3,1);
}
@keyframes up { from { transform: translateY(100%); } to { transform: none; } }
.sheet-handle { width: 46px; height: 5px; background: var(--poop-pale); border-radius: 99px; margin: 4px auto 10px; }
.sheet-title { margin: 0 0 14px; font-size: 17px; letter-spacing: 1px; }
.sheet-title span { color: var(--ink-2); font-size: 14px; font-weight: 500; }
.sheet-label { margin: 0 0 8px; font-size: 12.5px; color: var(--ink-2); font-weight: 700; }
.sheet-actions { display: grid; grid-template-columns: 1fr 1.6fr; gap: 10px; margin-top: 16px; }
.row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

.moods { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-bottom: 14px; }
.mood-btn {
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  padding: 9px 2px 7px;
  background: var(--paper); border: 2px solid var(--line); border-radius: var(--radius-sm);
}
.mood-btn .e { font-size: 21px; line-height: 1; }
.mood-btn .t { font-size: 10.5px; color: var(--ink-2); }
.mood-btn.is-on { box-shadow: var(--shadow-sm); }
.mood-btn.is-on .t { color: var(--ink); font-weight: 800; }

.day-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.day-item {
  display: flex; align-items: center; gap: 10px; padding: 9px 11px;
  background: var(--paper); border: 2px solid var(--line); border-radius: var(--radius-sm);
}
.day-item .e { font-size: 20px; }
.day-item .info { flex: 1; min-width: 0; }
.day-item .info b { font-size: 14px; }
.day-item .info small { display: block; font-size: 10.5px; color: var(--ink-3); }
.del-btn {
  padding: 5px 10px; font-size: 12px; font-weight: 700;
  border: 2px solid var(--line); border-radius: 999px; background: #FFE9E4;
}
.day-empty { text-align: center; color: var(--ink-2); font-size: 13px; padding: 22px 0; }

/* ===================== 提示 & 便便雨 ===================== */
.toast {
  position: fixed; z-index: 90; left: 50%; bottom: calc(var(--tab-h) + 82px);
  transform: translateX(-50%);
  padding: 9px 16px; font-size: 13px; font-weight: 700; white-space: nowrap;
  background: var(--ink); color: var(--paper); border-radius: 999px;
  animation: pop .2s ease-out;
}
.rain { position: fixed; inset: 0; pointer-events: none; z-index: 80; overflow: hidden; }
.drop { position: absolute; top: -40px; font-size: 26px; animation: fall linear forwards; }
@keyframes fall {
  to { transform: translateY(112vh) rotate(360deg); opacity: .2; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* ===========================================================
   贴纸系统
   =========================================================== */

/* 日历格子里的贴纸 */
.cell .st {
  width: 88%; max-width: 38px; margin-top: 0;
  display: block; object-fit: contain;
  filter: drop-shadow(1px 1px 0 rgba(42,35,32,.18));
  animation: stick .28s cubic-bezier(.2,1.4,.4,1);
}
@keyframes stick { from { transform: scale(.4) rotate(-14deg); opacity: 0; } to { transform: none; opacity: 1; } }
.cell.done { background: color-mix(in srgb, var(--mood-fill, var(--poop-soft)) 18%, transparent); }
.cell.done.today { background: rgba(245,200,96,.5); }
.lg-st { width: 20px; height: 20px; object-fit: contain; vertical-align: -5px; }

/* 记录列表里的贴纸缩略图 */
.day-item .st-thumb { width: 34px; height: 34px; object-fit: contain; flex: none; }
.day-item .st-name { color: var(--ink-2); }

/* ---------- 开奖弹层 ---------- */
.reveal {
  position: fixed; inset: 0; z-index: 85;   /* 高于便便雨，让卡片压在彩带之上 */
  display: grid; place-items: center; padding: 24px;
  background: rgba(42,35,32,.5);
  animation: pop .2s ease-out;
}
.reveal-card {
  width: 100%; max-width: 300px; padding: 20px 20px 18px; text-align: center;
  animation: bounceIn .38s cubic-bezier(.2,1.3,.4,1);
}
@keyframes bounceIn { from { transform: scale(.7) translateY(20px); opacity: 0; } to { transform: none; opacity: 1; } }
.reveal-kicker {
  display: inline-block; margin: 0 0 8px; padding: 3px 12px;
  font-size: 12px; font-weight: 800; letter-spacing: 1px;
  background: var(--sun); border: 2px solid var(--line); border-radius: 999px;
}
.reveal-art { position: relative; display: grid; place-items: center; height: 148px; }
.reveal-art img {
  width: 132px; height: 132px; object-fit: contain; position: relative; z-index: 1;
  filter: drop-shadow(2px 3px 0 rgba(42,35,32,.2));
  animation: wobble 1.6s ease-in-out infinite;
}
@keyframes wobble { 0%,100% { transform: rotate(-3deg); } 50% { transform: rotate(3deg); } }
.reveal-ray {
  position: absolute; width: 190px; height: 190px; border-radius: 50%;
  background: repeating-conic-gradient(var(--sun) 0deg 12deg, transparent 12deg 24deg);
  opacity: .5; animation: spin 9s linear infinite;
  -webkit-mask-image: radial-gradient(circle, transparent 34%, #000 62%, transparent 78%);
          mask-image: radial-gradient(circle, transparent 34%, #000 62%, transparent 78%);
}
@keyframes spin { to { transform: rotate(360deg); } }
.reveal-card h3 { margin: 4px 0 2px; font-size: 21px; letter-spacing: 1.5px; }
.reveal-sub { margin: 0 0 16px; font-size: 12.5px; color: var(--ink-2); }

/* ---------- 贴纸图鉴 ---------- */
.album-count { float: right; font-family: ui-monospace, Menlo, monospace; color: var(--ink); }
.album { display: grid; grid-template-columns: repeat(6, 1fr); gap: 6px; }
.al-item {
  position: relative; aspect-ratio: 1; padding: 2px;
  background: var(--paper); border: 2px solid var(--poop-pale); border-radius: 12px;
}
.al-item.got { border-color: var(--line); background: var(--paper-2); }
.al-item img { width: 100%; height: 100%; object-fit: contain; }
.al-item.miss img { filter: grayscale(1) opacity(.16); }
.al-item .n {
  position: absolute; right: 0; bottom: 0;
  min-width: 14px; height: 14px; padding: 0 3px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 9px; font-weight: 800; font-style: normal;
  background: var(--mint); border: 1.5px solid var(--line); border-radius: 999px;
}
.al-item:active { transform: scale(.92); }
.album-tip { margin: 10px 0 0; font-size: 11.5px; color: var(--ink-3); }
