/* ========================================================================
   大卡片叠层：PPT 式分页（上下滚动）+ 右侧标题目录 + 字段详情弹窗
   ======================================================================== */
.bigcard-overlay {
  position: fixed; inset: 0; z-index: var(--z-overlay);
  display: none; place-items: center;
  padding: var(--space-5);
}
.bigcard-overlay.is-open { display: grid; }
.bigcard-overlay__backdrop {
  position: absolute; inset: 0;
  /* 背景层毛玻璃：深色半透明 + 模糊，让背后页面虚化沉浸 */
  background: rgb(var(--glass) / .5);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
  backdrop-filter: blur(14px) saturate(1.1);
}

/* 左侧圆形返回 */
/* 返回键固定在左下角，hover 不位移（避免按钮"跑掉"难按） */
.bc-back { position: fixed; left: var(--space-5); bottom: var(--space-5); top: auto; transform: none; z-index: 5; }
.bc-back:hover, .bc-back:active { transform: none; }

/* 舞台（加大；宽度同时受 vh 约束，保持 16:9 不超屏） */
/* 宽屏：卡片居中收窄，左留返回钮、右留标题目录的空间 */
.bigcard-stage { position: relative; z-index: 1; width: min(1360px, calc(100vw - 240px), 142vh); }

.bc-titlebar {
  position: absolute; left: 0; right: 0; bottom: 100%;   /* 浮在卡片上方，不占 stage 高 → 卡片真正居中 */
  margin-bottom: var(--space-2); color: var(--text);
  display: flex; align-items: center; gap: var(--space-3);
  pointer-events: none;          /* 标题栏空白处点击穿透到背景 → 关闭叠层 */
}
.bc-titlebar > * { pointer-events: auto; }   /* 标题/按钮本身可点 */
.bc-title { font-weight: 700; font-size: var(--fs-lg); }
.bc-progress { color: var(--text-muted); font-size: var(--fs-xs); }

/* 视口 + 轨道（竖向翻页：轨道 column，translateY 切换） */
.bc-viewport {
  position: relative; overflow: hidden;
  width: 100%; aspect-ratio: 16 / 9;
  border: 1px solid rgb(255 255 255 / .1); border-radius: var(--radius);
  /* 卡片层毛玻璃：更透 + 强 blur，透出背后虚化的背景 */
  background: rgb(var(--glass) / .55);
  -webkit-backdrop-filter: blur(30px) saturate(1.4);
  backdrop-filter: blur(30px) saturate(1.4);
  box-shadow: 0 24px 80px rgb(var(--shadow) / .55), inset 0 1px 0 rgb(255 255 255 / .08);
}
.bigcard { display: flex; flex-direction: column; height: 100%; transition: transform .4s var(--ease); }
.slide {
  flex: 0 0 100%; width: 100%; height: 100%;
  display: flex; flex-direction: column; min-width: 0; min-height: 0;
}
.slide__head {
  position: relative; z-index: 10;
  display: flex; align-items: center; gap: var(--space-3);
  padding: var(--space-4) var(--space-5) var(--space-2);
  border-bottom: 1px solid var(--line);
}
.slide__kicker { font-size: var(--fs-xs); color: var(--text-muted); }
.slide__body { flex: 1; min-height: 0; overflow: auto; padding: var(--space-4) var(--space-5); }

/* 参数页头工具：参数类型切换与说明入口始终在首屏。 */
.slide__tools {
  display: inline-flex; align-items: center; gap: var(--space-2);
  margin-left: auto;
}
.param-set-switch {
  display: inline-flex; align-items: center; gap: 2px;
  padding: 3px;
  border: 1px solid var(--line); border-radius: var(--radius-pill);
  background: var(--glass-fill);
}
.param-set-switch__item {
  min-height: 28px; padding: 4px var(--space-3);
  border: 0; border-radius: var(--radius-pill);
  background: transparent; color: var(--text-muted);
  font: inherit; font-size: var(--fs-xs); line-height: 1; cursor: pointer;
  transition: color .15s var(--ease), background-color .15s var(--ease);
}
.param-set-switch__item:hover { color: var(--text); }
.param-set-switch__item[aria-selected="true"] {
  color: var(--accent); background: var(--accent-soft); font-weight: 700;
}

/* 详细参数：手动均衡的两列（flex），html2canvas 导出也能对齐 */
.params-grid {
  display: block;
}
.params-columns,
.params-wide-group__columns {
  display: flex;
  gap: var(--space-5);
  align-items: flex-start;
}
.params-col {
  flex: 1;
  min-width: 0;
}
.params-group {
  min-width: 0;
  margin-bottom: var(--space-4);
}
.params-wide-group {
  min-width: 0;
  margin-bottom: var(--space-4);
}
.params-wide-group__title {
  padding: calc(var(--space-2) * var(--pscale)) var(--space-3);
  border-bottom: 1px solid var(--line);
  color: var(--accent);
  font-family: var(--font-sans);
  font-size: calc(var(--fs-sm) * var(--pscale));
  font-weight: 700;
}
.params-wide-group__columns .params-group { margin-bottom: 0; }
.bigcard .is-empty,
.bigcard .group-empty { display: none; }
.param-set-panel[hidden] { display: none; }
.param-set-description {
  margin: 0 0 8px;
  padding: 7px 10px;
  border-left: 2px solid var(--accent);
  background: var(--accent-soft);
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

/* 长参数的编号说明：编号紧跟具体参数值，悬停/键盘聚焦/点击均可查看。 */
.param-note {
  position: relative; display: inline-flex; vertical-align: baseline;
  margin-left: 5px;
}
.param-note__marker {
  display: inline-grid; place-items: center;
  width: 16px; height: 16px; padding: 0;
  border: 1px solid var(--accent);
  border-radius: 50%; background: var(--accent-soft); color: var(--accent);
  font-family: var(--font-mono); font-size: 10px; line-height: 1;
  cursor: help;
}
.param-note__marker:hover,
.param-note__marker:focus-visible,
.param-note.is-open .param-note__marker {
  outline: none; background: var(--accent); color: var(--surface);
}
.param-note__tip {
  position: absolute; z-index: 8; right: 0; top: calc(100% + 7px);
  width: max-content; max-width: min(310px, 68vw); padding: var(--space-3);
  border: 1px solid var(--glass-border); border-radius: var(--radius-sm);
  background: var(--surface); color: var(--text);
  box-shadow: 0 12px 30px rgb(var(--shadow) / .28);
  font-family: var(--font-sans); font-size: var(--fs-xs); font-weight: 400;
  line-height: 1.6; text-align: left; white-space: normal; overflow-wrap: anywhere;
  opacity: 0; visibility: hidden; pointer-events: none;
  transform: translateY(-4px);
  transition: opacity .12s var(--ease), transform .12s var(--ease), visibility .12s;
}
.param-note:hover .param-note__tip,
.param-note:focus-within .param-note__tip,
.param-note.is-open .param-note__tip {
  opacity: 1; visibility: visible; transform: translateY(0);
}

/* 参数页头的全部说明：? 图标悬停/聚焦显示，浮层不占参数表空间。 */
.param-notes {
  position: relative; flex: 0 0 auto;
}
.param-notes[hidden] { display: none; }
.param-notes__toggle {
  position: relative;
  display: grid; place-items: center;
  width: 30px; height: 30px; padding: 0;
  border: 1px solid var(--accent);
  border-radius: 50%;
  background: var(--glass-fill); color: var(--accent);
  font-family: var(--font-mono); font-size: var(--fs-sm); font-weight: 700;
  cursor: help;
  transition: color .15s var(--ease), background-color .15s var(--ease), border-color .15s var(--ease);
}
.param-notes__toggle:hover,
.param-notes__toggle:focus-visible,
.param-notes.is-open .param-notes__toggle {
  outline: none; border-color: var(--accent);
  background: var(--accent); color: var(--surface);
}
.param-notes__count {
  position: absolute; right: -6px; top: -7px;
  min-width: 16px; height: 16px; padding: 0 3px;
  display: grid; place-items: center;
  border: 1px solid var(--surface); border-radius: var(--radius-pill);
  background: var(--accent); color: var(--surface);
  font-size: 9px; line-height: 1;
}
.param-notes__summary {
  position: absolute; z-index: 12; right: 0; top: 100%;
  width: min(520px, calc(100vw - 48px)); padding: var(--space-4);
  display: flex; flex-direction: column;
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  background: var(--surface);
  box-shadow: 0 16px 40px rgb(var(--shadow) / .32);
  max-height: min(60vh, 430px);
  overflow: hidden;
  overscroll-behavior: contain;
  opacity: 0; visibility: hidden; pointer-events: none;
  transform: translateY(-4px);
  transition: opacity .12s var(--ease), transform .12s var(--ease), visibility .12s;
}
.param-notes:hover .param-notes__summary,
.param-notes:focus-within .param-notes__summary,
.param-notes.is-open .param-notes__summary {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateY(0);
}
.param-notes__summary ol {
  flex: 1 1 auto;
  display: grid; gap: var(--space-3); margin: 0; padding: 0 var(--space-2) 0 2.75em;
  min-height: 0; overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-gutter: stable;
}
.param-notes__summary li { padding-left: var(--space-2); color: var(--accent); }
.param-notes__summary li strong {
  display: block; margin-bottom: 2px; color: var(--text); font-size: var(--fs-sm);
}
.param-notes__summary li span {
  display: block; color: var(--text-muted); font-size: var(--fs-sm); line-height: 1.65;
}

/* 右侧目录：常驻标题列表，当前项高亮、其余变淡（滚动感） */
.bc-dots {
  position: fixed; right: var(--space-5); top: 50%; transform: translateY(-50%);
  z-index: 2; display: flex; flex-direction: column; gap: 6px; align-items: flex-end;
}
.bc-navitem {
  display: flex; align-items: center; justify-content: flex-end; gap: 10px;
  background: transparent; border: 0; padding: 5px 2px; cursor: pointer;
  color: var(--text-muted); opacity: .45;
  transition: opacity .2s var(--ease), color .2s var(--ease);
}
.bc-navitem__label { font-family: var(--font-mono); font-size: var(--fs-sm); white-space: nowrap; }
.bc-navitem__dot { width: 9px; height: 9px; border-radius: 50%; border: 1.5px solid currentColor; flex: 0 0 auto; transition: all .2s var(--ease); }
.bc-navitem:hover { opacity: .85; color: var(--text); }
.bc-navitem[aria-current="true"] { opacity: 1; color: var(--accent); }
.bc-navitem[aria-current="true"] .bc-navitem__dot { background: var(--accent); border-color: var(--accent); transform: scale(1.15); }

/* ---- 总览 ---- */
.ov {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: var(--space-6);
  height: 100%;
  overflow: hidden;
}
/* 左列 */
.ov__left {
  display: flex; flex-direction: column; gap: var(--space-5);
  overflow: auto; min-height: 0;
}
.ov__left > .param-set-panel { min-height: 100%; }
.overview-param-set {
  min-height: 100%;
  display: flex; flex-direction: column; gap: var(--space-5);
}
.ov__name { font-size: var(--fs-2xl); margin-bottom: var(--space-2); line-height: 1.15; }
.ov__summary { color: var(--text-muted); font-size: var(--fs-base); line-height: 1.6; }
.ov__tags { display: flex; gap: var(--space-2); flex-wrap: wrap; margin-top: var(--space-3); }
/* 参数预览：两张独立大卡片，分开摆放 */
.ov__preview {
  display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4);
  flex-shrink: 0;
}
.pcard {
  padding: var(--space-4) var(--space-4);
  border: 1px solid var(--glass-border); border-radius: var(--radius);
  /* 内部玻璃分层：微亮半透明叠加 */
  background: var(--glass-fill); min-width: 0;
}
.pcard--link {
  cursor: pointer;
  transition: border-color .15s var(--ease);
}
.pcard--link:hover { border-color: var(--accent); }
.pcard__hd {
  font-size: var(--fs-xs); color: var(--accent);
  font-family: var(--font-mono); margin-bottom: var(--space-3);
}
.pcard__row {
  display: flex; justify-content: space-between; gap: var(--space-3);
  padding: var(--space-2) 0; border-top: 1px solid var(--line);
  font-size: var(--fs-sm); line-height: 1.45;
}
.pcard__k { color: var(--text-muted); flex-shrink: 0; }
.pcard__v { font-weight: 500; text-align: right; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.pcard__v:has(.v-list) { overflow: visible; text-align: left; white-space: normal; }
/* 链接/快捷导航行 */
.ov__actions { display: flex; gap: var(--space-2); flex-wrap: wrap; margin-top: auto; }
/* 右列 */
.ov__right {
  display: flex; flex-direction: column; gap: var(--space-4);
  overflow: hidden; min-height: 0;
}
.ov__imgbox {
  flex: 1.1; min-height: 0; overflow: hidden;
  border-radius: var(--radius); background: var(--glass-fill);
  border: 1px solid var(--glass-border);
}
.ov__img { width: 100%; height: 100%; object-fit: contain; display: block; }
.ov__radarbox {
  flex: 1; min-height: 0;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--glass-border); border-radius: var(--radius);
  padding: var(--space-3); background: var(--glass-fill);
  cursor: pointer; overflow: hidden;
  transition: border-color .15s var(--ease);
}
.ov__radarbox:hover { border-color: var(--accent); }
.ov__radar { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
.ov__radar svg { display: block; width: 100%; height: 100%; }

/* ---- 软件生态 / 评分 / 价格 ---- */
.sw { min-width: 0; }
/* 表格定宽：列按比例分配，长值随宽换行，绝不撑出横向滚动条 */
.sw .table-card { table-layout: fixed; width: 100%; }
.sw .table-card th { width: 34%; }
.sw__links { display: flex; gap: var(--space-2); flex-wrap: wrap; margin-top: var(--space-4); }
.sw__links .btn { max-width: 100%; overflow-wrap: anywhere; }
.sc { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-6); }

/* 评分分页底部：用户五星打分 */
.sc__fb {
  margin-top: var(--space-5); padding-top: var(--space-4);
  border-top: 1px solid var(--line);
  display: flex; align-items: center; gap: var(--space-3); flex-wrap: wrap;
}
.sc__fb-label { font-size: var(--fs-sm); color: var(--text-muted); }
.stars { display: inline-flex; gap: 2px; }
.stars .star {
  background: none; border: 0; padding: 0 2px; cursor: pointer;
  font-size: 24px; line-height: 1; color: var(--line);
  transition: color .12s var(--ease), transform .12s var(--ease);
}
.stars .star:hover { transform: scale(1.18); }
.stars .star.on      { color: var(--warn); }
.stars .star.preview { color: var(--warn); opacity: .55; }
.sc__fb-val { font-family: var(--font-mono); font-size: var(--fs-sm); color: var(--warn); min-width: 3em; }
.sc__fb-clear {
  background: none; border: 0; cursor: pointer; color: var(--text-muted);
  font-size: var(--fs-xs); text-decoration: underline; padding: 0;
}
.sc__fb-clear:hover { color: var(--danger); }
.pr__now { display: flex; align-items: center; gap: var(--space-4); margin-bottom: var(--space-4); }
.pr__big { font-size: var(--fs-2xl); font-weight: 700; color: var(--accent-2); }
.pr__note { margin-top: var(--space-3); }

/* ---- 导出分享图面板 ---- */
.export-panel { position: fixed; inset: 0; z-index: calc(var(--z-overlay) + 20); display: none; place-items: center; padding: var(--space-5); }
.export-panel.is-open { display: grid; }
.export-panel__backdrop { position: absolute; inset: 0; background: rgb(var(--glass) / .7); backdrop-filter: blur(8px); }
.export-panel__card {
  position: relative; z-index: 1; width: min(460px, 92vw);
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: var(--space-5); box-shadow: 0 24px 70px rgb(var(--shadow) / .4);
}
.export-panel__head { display: flex; align-items: center; gap: var(--space-3); margin-bottom: var(--space-4); }
.export-panel__name { font-family: var(--font-mono); font-size: var(--fs-xs); color: var(--text-muted); margin-left: auto; }
.export-panel__head .icon-btn { margin-left: var(--space-2); }
.export-panel__grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-3); }
.export-opt {
  display: flex; flex-direction: column; align-items: center; gap: var(--space-2);
  padding: var(--space-3); border: 1px solid var(--line); border-radius: var(--radius-sm);
  background: var(--card); cursor: pointer; transition: border-color .14s var(--ease), background-color .14s var(--ease);
}
.export-opt:hover { border-color: var(--accent); background: var(--accent-soft); }
.export-opt__box { width: 54px; background: var(--surface-2); border: 1px solid var(--line); border-radius: 3px; }
.export-opt__label { font-size: var(--fs-xs); color: var(--text); }
.export-panel__hint { margin-top: var(--space-4); font-family: var(--font-mono); font-size: var(--fs-xs); color: var(--text-muted); text-align: center; }

/* ---- 字段详情弹窗 ---- */
.field-pop { position: fixed; inset: 0; z-index: calc(var(--z-overlay) + 10); display: none; place-items: center; padding: var(--space-5); }
.field-pop.is-open { display: grid; }
.field-pop::before { content: ""; position: absolute; inset: 0; background: rgb(var(--glass) / .6); backdrop-filter: blur(4px); }
.field-pop__card {
  position: relative; width: min(420px, 92vw);
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: var(--space-5); box-shadow: 0 20px 60px rgb(var(--shadow) / .4);
}
.field-pop__card h4 { font-size: var(--fs-lg); }
.field-pop__row { display: flex; justify-content: space-between; gap: var(--space-3); padding: var(--space-2) 0; border-bottom: 1px solid var(--line); font-size: var(--fs-sm); }
.field-pop__row .k { color: var(--text-muted); }
.field-pop__row .v { font-family: var(--font-mono); text-align: right; }

/* ---- ≤900：卡片占满、目录收成底部横排点（无右侧标题列，卡片更宽） ---- */
@media (max-width: 900px) {
  .ov, .sc { grid-template-columns: 1fr; }
  /* 总览整体随卡片体滚动，去掉左列内部滚动条（会裁掉下半内容） */
  .ov { height: auto; overflow: visible; }
  .ov__left { overflow: visible; }
  .ov__right { flex-direction: row; max-height: 200px; }
  .ov__imgbox { flex: 1.4; }
  .ov__radarbox { flex: 1; }
  .ov__preview { grid-template-columns: 1fr 1fr; }
  .bigcard-overlay { padding: 0; }
  .bigcard-stage { width: 100vw; height: 100dvh; display: flex; flex-direction: column; }
  .bc-titlebar {
    position: relative; inset: auto; flex: 0 0 auto;
    padding: var(--space-3) var(--space-4); margin: 0;
  }
  .bc-btn-label { display: none; }
  .bc-titlebar .btn { padding-inline: var(--space-2); }
  .bc-viewport { flex: 1; aspect-ratio: auto; border-radius: 0; border-left: 0; border-right: 0; }
  .slide__body { padding-bottom: var(--space-8); }
  /* 返回键移到左下角：不挡标题/内容，拇指好按 */
  .bc-back {
    left: var(--space-4); bottom: var(--space-4); top: auto; transform: none;
    width: 48px; height: 48px; z-index: 5;
    background: rgb(var(--glass) / .85); backdrop-filter: blur(8px);
    border: 1px solid var(--line); box-shadow: 0 4px 14px rgb(var(--shadow) / .2);
  }
  .bc-dots {
    right: auto; left: 50%; top: auto; bottom: var(--space-3); transform: translateX(-50%);
    flex-direction: row; align-items: center; gap: 12px; padding: 8px 14px;
    background: rgb(var(--glass) / .85); backdrop-filter: blur(8px);
    border: 1px solid var(--line); border-radius: var(--radius-pill);
  }
  .bc-navitem { opacity: 1; padding: 0; }
  .bc-navitem__label { display: none; }
  .ov__name { font-size: var(--fs-xl); }
}

/* ---- ≤640 手机竖屏：窄屏专属微调（总览预览/图区竖排，详参仍保持两列+自适应缩放） ---- */
@media (max-width: 640px) {
  .ov__preview { grid-template-columns: 1fr; }
  .ov__right { flex-direction: column; max-height: none; }
  .ov__imgbox { max-height: 240px; }
  .ov__name { font-size: var(--fs-lg); }
  .slide__head { align-items: center; flex-wrap: wrap; padding-inline: var(--space-4); }
  .slide__body { padding-inline: var(--space-4); }
  .slide__tools {
    order: 3; width: 100%;
    justify-content: flex-end;
  }
  .param-set-switch {
    flex: 1 1 auto; width: auto; margin-left: 0; overflow-x: auto;
    border-radius: var(--radius-sm);
  }
  .param-set-switch__item { flex: 1 0 auto; }
  .param-notes__summary { width: calc(100vw - (var(--space-4) * 2)); }
  /* 窄屏收窄单项气泡；编号位于参数值列，右对齐后不会越出视口。 */
  .param-note__tip {
    position: absolute;
    z-index: 30;
    inset: calc(100% + 7px) 0 auto auto;
    width: max-content;
    max-width: min(190px, calc(100vw - (var(--space-4) * 2)));
    max-height: min(38dvh, 260px);
    overflow: auto;
  }
  /* 详参：手机改单列竖排(SoC、板载…一个个往下)，不两列并联，避免太挤 */
  .params-columns,
  .params-wide-group__columns { flex-direction: column; gap: 0; }
}

/* ---- 图片画廊 lightbox ---- */
.lightbox {
  position: fixed; inset: 0; z-index: calc(var(--z-overlay) + 50);
  display: none; place-items: center;
}
.lightbox.is-open { display: grid; }
.lightbox__backdrop {
  position: absolute; inset: 0;
  background: rgb(var(--glass) / .55);   /* 跟主题：白天浅雾、夜间深色 */
  -webkit-backdrop-filter: blur(24px) saturate(1.1);
  backdrop-filter: blur(24px) saturate(1.1);
}
.lightbox__frame {
  position: relative; z-index: 1; margin: 0;
  display: flex; flex-direction: column; align-items: center; gap: var(--space-2);
  max-width: 88vw; max-height: 84vh;
}
.lightbox__img {
  max-width: 88vw; max-height: 76vh;
  object-fit: contain; border-radius: var(--radius);
  box-shadow: 0 20px 60px rgb(0 0 0 / .5);
}
.lightbox__caption {
  max-width: min(88vw, 920px); color: #fff; text-align: center;
  font-size: var(--fs-sm); line-height: 1.45; text-shadow: 0 1px 8px rgb(0 0 0 / .65);
}
.lightbox__close {
  position: absolute; top: var(--space-4); right: var(--space-5); z-index: 2;
  width: 40px; height: 40px; border-radius: 50%; border: 0;
  background: rgb(255 255 255 / .12); color: #fff; font-size: 20px; cursor: pointer;
}
.lightbox__close:hover { background: rgb(255 255 255 / .22); }
.lightbox__nav {
  position: absolute; z-index: 2; top: 50%; transform: translateY(-50%);
  width: 48px; height: 64px; border: 0; cursor: pointer;
  background: rgb(255 255 255 / .1); color: #fff; font-size: 32px;
  border-radius: var(--radius);
}
.lightbox__nav:hover { background: rgb(255 255 255 / .2); }
.lightbox__prev { left: var(--space-4); }
.lightbox__next { right: var(--space-4); }
.lightbox__thumbs {
  position: absolute; z-index: 2; bottom: var(--space-4); left: 50%; transform: translateX(-50%);
  display: flex; gap: var(--space-2); max-width: 90vw; overflow-x: auto; padding: var(--space-2);
}
.lightbox__thumb {
  flex: 0 0 auto; width: 64px; height: 48px; padding: 0; cursor: pointer;
  border: 2px solid transparent; border-radius: var(--radius-sm); overflow: hidden; background: none;
}
.lightbox__thumb.is-active { border-color: #fff; }
.lightbox__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
/* 图片张数角标 */
.ov__imgbox { position: relative; cursor: pointer; }
.ov__imgcount {
  position: absolute; right: var(--space-2); bottom: var(--space-2);
  background: rgb(0 0 0 / .55); color: #fff; font-size: var(--fs-xs);
  padding: 2px 8px; border-radius: var(--radius-pill);
}
