/* v6-list.css — 提取自 toopic.cn 快照 fenlie/wap 页内联样式：v6-hero / sort-seg / v6-dock（列表页专用，勿全站加载） */

:root {
  --v6-accent: #1496ff;
  --v6-gutter: 30px;
  --v6-dock-h: 58px;
  --v6-ease: cubic-bezier(.22, 1, .36, 1);
  --v6-ease-out: cubic-bezier(.16, 1, .3, 1);
  --v6-ease-spring: cubic-bezier(.34, 1.4, .64, 1);
  --v6-neon-angle: 0deg;
}

/* 全屏通栏所需：避免 100vw 触发横向滚动条 */
html, body { max-width: 100%; overflow-x: hidden; }


/* ========== 主题区 v6-hero（全屏通栏 · 深空蓝黑 · 模块内胶囊） ========== */
.v6-hero {
  position: relative;
  left: 50%;
  right: 50%;
  width: 100vw;
  margin-left: -50vw;
  margin-right: -50vw;
  margin-top: 0;
  min-height: 168px;
  display: grid;
  grid-template-columns: minmax(460px, 1.15fr) minmax(340px, .85fr);
  color: #fff;
  background: #11161f;
  overflow: hidden;
  isolation: isolate;
}
.v6-hero--noart { display: block; }
.v6-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 15% 22%, rgba(43,149,255,.14), transparent 38%),
    linear-gradient(110deg, #11161f 0%, rgba(17,22,31,.96) 46%, rgba(17,22,31,.5) 74%, rgba(17,22,31,.22) 100%);
}
.v6-hero__copy {
  grid-column: 1;
  position: relative;
  z-index: 5;
  padding: 22px 24px 22px clamp(20px, 3vw, 44px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.v6-hero__main {
  display: flex;
  align-items: flex-start;
  min-width: 0;
}
.v6-hero__mark {
  flex: 0 0 auto;
  align-self: stretch;
  min-height: 30px;
  margin-top: 5px;
  border-radius: 999px;
  box-shadow: 0 0 14px rgba(20,150,255,.5);
}
.v6-hero__text { min-width: 0; flex: 1; }
.v6-hero h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(23px, 2.2vw, 30px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -.025em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.v6-hero__desc {
  margin: 9px 0 0;
  max-width: 46rem;
  color: rgba(255,255,255,.5);
  font-size: 12.5px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: .01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.v6-hero__art {
  grid-column: 2;
  position: relative;
  z-index: -1;
  min-height: 168px;
  overflow: hidden;
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%);
}
.v6-hero__grid {
  position: absolute;
  inset: -16px -10px -16px 0;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  grid-template-rows: 1fr 1fr;
  gap: 7px;
  transform: rotate(-2deg) scale(1.05);
}
.v6-hero__grid figure {
  margin: 0;
  overflow: hidden;
  background: #242a33;
}
.v6-hero__grid figure:first-child { grid-row: 1 / 3; }
.v6-hero__grid img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(.62) contrast(1.02) brightness(.82);
  transition: transform .8s var(--v6-ease), filter .4s ease;
}
.v6-hero:hover .v6-hero__grid img {
  transform: scale(1.03);
  filter: saturate(.75) contrast(1.02) brightness(.88);
}
.v6-hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, #11161f 0%, rgba(17,22,31,.7) 30%, rgba(17,22,31,.26) 72%, rgba(17,22,31,.1) 100%),
    linear-gradient(0deg, rgba(11,16,25,.5), transparent 45%);
  pointer-events: none;
}

/* 排序：分段控件（最新/热门/评分/日榜/周榜/月榜，项数由服务端 sortLinks 决定）
 * 改为「当前项自身即胶囊」，不再用独立滑块：
 *   1) 原滑块在本页已被 transition:none 关掉动画，它只承担静态底色；
 *   2) 独立滑块要按项数算宽度与位移（需内联 CSS 变量），项数一增就失真。
 * 布局：inline-flex + align-self:flex-start —— 父级是 column flex，默认会被拉伸成整行宽；
 *       这里保持「按内容宽、左对齐」的紧凑控件形态（原设计也是固定 146px 的紧凑控件）。
 * 窄屏（≤768px，hero 右侧给配图留了 34% 内边距，可用宽约 235px）排不下 6 项，
 * 改为 3 列 2 行，避免胶囊底色比按钮窄导致的溢出。 */
.sort-seg {
  --sort-pad: 3px;
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  gap: 2px;
  margin-top: 14px;
  padding: var(--sort-pad);
  border-radius: 999px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.sort-seg a {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  height: 30px;
  min-width: 52px;
  padding: 0 8px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.58);
  text-decoration: none;
  transition: color .2s ease;
}
.sort-seg a:hover { color: #fff; }
.sort-seg a.is-on {
  color: #fff;
  font-weight: 700;
  background: linear-gradient(135deg, #29a5ff, #087cf2);
  box-shadow: 0 5px 14px rgba(20,150,255,.4);
}
@media (max-width: 768px) {
  .sort-seg {
    display: inline-grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-flow: row;
    align-self: stretch;
    gap: 3px;
    border-radius: 16px;
  }
  .sort-seg a { min-width: 0; padding: 0 6px; font-size: 12px; }
}

/* ========== #dock（类名全用 v6- 前缀，避免冲突） ========== */
/* __DOCK_STRUCT__ */
.v6-dock{z-index:2147483000!important;isolation:isolate!important;pointer-events:none!important;}
.v6-dock.is-animating{pointer-events:none!important;}
.v6-dock__shell{position:relative!important;z-index:1!important;pointer-events:auto!important;overflow:visible!important;}
.v6-dock-pop{bottom:calc(100% + 52px)!important;z-index:20!important;}
.v6-dock-pop.is-show{z-index: 2147483646 !important;pointer-events:auto!important;}
.v6-dock__shell>.v6-dock-pop{z-index:20!important;}
.v6-dock__shell>.v6-dock-row{z-index:1!important;pointer-events:auto!important;}
.v6-dock-row .v6-dock-btn[data-menu]{pointer-events:auto!important;}
.v6-dock-swatches{position:relative!important;z-index:5!important;}
.v6-dock-swatch{position:relative!important;z-index:6!important;pointer-events:auto!important;cursor:pointer!important;display:inline-block!important;width:34px!important;height:34px!important;vertical-align:top;}
.v6-dock-swatch__fill{display:block!important;width:100%!important;height:100%!important;border-radius:50%!important;pointer-events:auto!important;}
.pic-list,.pic-list li,.pic-list .pic,.pic-list img,.gallery,.v6-results{z-index:0!important;}

.v6-dock-swatch{position:relative!important;z-index:10!important;pointer-events:auto!important;cursor:pointer!important;}
.v6-dock {
  position: fixed;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  z-index: 9990;
  width: min(760px, calc(100% - 40px));
  pointer-events: none;
  transition:
    left .42s var(--v6-ease-out),
    right .42s var(--v6-ease-out),
    bottom .42s var(--v6-ease-out),
    width .42s var(--v6-ease-out),
    transform .42s var(--v6-ease-out),
    opacity .32s var(--v6-ease-out);
}
/* 下滚隐藏（不收起为圆钮）；上滚再显示 */
.v6-dock.is-scroll-hidden:not(.is-collapsed):not(.is-collapsing) {
  transform: translateX(-50%) translateY(calc(100% + 36px));
  opacity: 0;
  pointer-events: none;
}
.v6-dock.is-collapsed.is-scroll-hidden {
  transform: translateY(calc(100% + 36px));
  opacity: 0;
  pointer-events: none;
}
.v6-dock.is-animating { pointer-events: none; }
/* 收起中/已收起：坞移到右下角，与圆钮同锚点 */
.v6-dock.is-collapsing,
.v6-dock.is-collapsed {
  left: auto;
  right: 20px;
  bottom: 20px;
  transform: none;
  width: auto;
}
.v6-dock.is-collapsed .v6-dock__shell {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(12px) scale(.55);
  filter: blur(2px);
  position: absolute;
  right: 0; bottom: 0;
  width: 1px; height: 1px; overflow: hidden;
  margin: 0; padding: 0;
}
/* 收起过程：坞条在右下角缩小淡出，衔接到圆钮 */
.v6-dock.is-collapsing .v6-dock__shell {
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px) scale(.42);
  filter: blur(2px);
  margin: 0;
  transform-origin: 100% 100%;
}
/* 展开过程：坞条从右下弹入居中 */
.v6-dock.is-expanding .v6-dock__shell {
  animation: v6-dockShellIn .44s var(--v6-ease-spring) both;
}
.v6-dock-fab {
  display: inline-flex;
  pointer-events: none;
  position: relative;
  width: 52px; height: 52px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  align-items: center; justify-content: center;
  color: #fff;
  background: linear-gradient(165deg, #3a3a40, #1c1c1e);
  box-shadow: 0 10px 28px rgba(0,0,0,.32), inset 0 0 0 1px rgba(255,255,255,.12);
  opacity: 0;
  visibility: hidden;
  transform: scale(.42) rotate(-28deg);
  transition:
    opacity .22s var(--v6-ease-out),
    transform .38s var(--v6-ease-spring),
    box-shadow .22s,
    visibility 0s linear .22s;
}
.v6-dock.is-collapsed .v6-dock-fab {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: scale(1) rotate(0);
  transition:
    opacity .24s .1s var(--v6-ease-out),
    transform .46s .06s var(--v6-ease-spring),
    box-shadow .22s,
    visibility 0s;
  animation: v6-dockFabPop .5s .08s var(--v6-ease-spring) both;
}
.v6-dock.is-collapsing .v6-dock-fab {
  opacity: 0;
  visibility: hidden;
  transform: scale(.42) rotate(-28deg);
}
.v6-dock.is-expanding .v6-dock-fab {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: scale(.35) rotate(18deg);
  transition:
    opacity .18s var(--v6-ease-out),
    transform .28s var(--v6-ease-out),
    visibility 0s linear .18s;
  animation: none;
}
.v6-dock-fab:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 14px 32px rgba(0,0,0,.38), 0 0 0 3px rgba(20,150,255,.25);
}
.v6-dock-fab:active {
  transform: scale(.92);
  transition-duration: .1s;
}
.v6-dock-fab svg {
  width: 22px; height: 22px;
  transition: transform .35s var(--v6-ease-spring);
}
.v6-dock.is-collapsed .v6-dock-fab:hover svg { transform: rotate(18deg) scale(1.06); }
.v6-dock-fab__badge {
  position: absolute; top: -2px; right: -2px;
  min-width: 18px; height: 18px; padding: 0 5px;
  border-radius: 999px;
  display: none;
  align-items: center; justify-content: center;
  font-size: 11px; font-weight: 800; line-height: 1;
  color: #fff; background: var(--v6-accent);
  box-shadow: 0 2px 8px rgba(20,150,255,.45);
  transform: scale(.6);
  transition: transform .35s var(--v6-ease-spring);
}
.v6-dock.is-filtered .v6-dock-fab__badge { display: inline-flex; }
.v6-dock.is-collapsed.is-filtered .v6-dock-fab__badge {
  transform: scale(1);
  animation: v6-dockBadgeIn .4s .2s var(--v6-ease-spring) both;
}
.v6-dock-fab__tip {
  position: absolute; right: calc(100% + 10px); top: 50%;
  transform: translateY(-50%) translateX(6px);
  max-width: 160px;
  padding: 6px 10px;
  border-radius: 10px;
  font-size: 12px; font-weight: 600;
  color: #fff; white-space: nowrap;
  overflow: hidden; text-overflow: ellipsis;
  background: rgba(28,28,30,.92);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 8px 20px rgba(0,0,0,.28);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .28s var(--v6-ease-out), transform .32s var(--v6-ease-out), visibility 0s linear .28s;
}
.v6-dock.is-filtered.is-collapsed .v6-dock-fab__tip {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0);
  transition: opacity .3s .18s, transform .34s .18s var(--v6-ease-out), visibility 0s;
}
.v6-dock.is-filtered .v6-dock-fab {
  background: linear-gradient(165deg, #2a4a6a, #1a2a3a);
  box-shadow: 0 10px 28px rgba(0,0,0,.32), 0 0 0 2px rgba(20,150,255,.45);
}
.v6-dock__shell {
  --aurora-pad: 2px;
  pointer-events: auto;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: calc(8px + var(--aurora-pad)) calc(10px + var(--aurora-pad));
  border-radius: 999px;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto;
  isolation: isolate;
  box-shadow: 0 22px 56px rgba(0,0,0,.3);
  transform-origin: 70% 100%;
  transition:
    opacity .34s var(--v6-ease-out),
    transform .4s var(--v6-ease-out),
    filter .34s var(--v6-ease-out),
    visibility .34s;
}
.v6-dock__shell::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: conic-gradient(
    from var(--v6-neon-angle),
    rgba(20,150,255,.12) 0%, transparent 16%, transparent 40%,
    rgba(20,150,255,.45) 50%, rgba(20,150,255,.85) 58%,
    #1496ff 64%, #9fd4ff 70%, rgba(20,150,255,.55) 78%,
    transparent 88%, rgba(20,150,255,.12) 100%
  );
  animation: v6-neonSpin 6.5s linear infinite;
  pointer-events: none;
  z-index: 0;
}
.v6-dock__shell::after {
  content: "";
  position: absolute;
  inset: var(--aurora-pad);
  border-radius: 999px;
  background: linear-gradient(165deg, rgba(40,40,44,.92), rgba(22,22,24,.94));
  backdrop-filter: blur(30px) saturate(1.45);
  -webkit-backdrop-filter: blur(30px) saturate(1.45);
  box-shadow: 0 1px 0 rgba(255,255,255,.1) inset, inset 0 0 0 1px rgba(255,255,255,.1);
  pointer-events: none;
  z-index: 0;
}
.v6-dock__shell > * { position: relative; z-index: 1; }
.v6-dock.is-filtered .v6-dock__shell {
  box-shadow: 0 22px 56px rgba(0,0,0,.3), 0 0 26px rgba(20,150,255,.28);
}

.v6-dock-row { display: flex; align-items: center; gap: 6px; }
.v6-dock-acts { display: flex; align-items: center; gap: 5px; }
.v6-dock-sep {
  width: 1px; height: 24px;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,.2), transparent);
  flex-shrink: 0; margin: 0 2px;
}

.v6-dock-btn {
  height: 40px; padding: 0 14px 0 13px; border-radius: 999px;
  display: inline-flex; align-items: center; gap: 6px;
  font: inherit; font-size: 13px; font-weight: 600;
  color: rgba(255,255,255,.88);
  background: rgba(255,255,255,.06);
  border: 1px solid transparent;
  white-space: nowrap; cursor: pointer;
}
.v6-dock-btn svg.ico { width: 14px; height: 14px; opacity: .8; }
.v6-dock-btn .chev { width: 10px; height: 10px; opacity: .45; transition: transform .22s; }
.v6-dock-btn:hover { background: rgba(255,255,255,.12); color: #fff; }
.v6-dock-btn.is-open {
  background: var(--v6-accent); color: #fff;
  box-shadow: 0 4px 18px rgba(20,150,255,.42);
}
.v6-dock-btn.is-open .chev { transform: rotate(180deg); opacity: .7; }
.v6-dock-btn.has-val:not(.is-open) {
  background: rgba(20,150,255,.18);
  border-color: rgba(20,150,255,.4);
  color: #fff;
}
.v6-dock-btn__text { display: inline-flex; align-items: baseline; gap: 5px; min-width: 0; }
.v6-dock-btn__dot { display: none; opacity: .4; }
.v6-dock-btn.has-val .v6-dock-btn__dot { display: inline; }
.v6-dock-btn__val {
  display: none; max-width: 72px; overflow: hidden; text-overflow: ellipsis;
  font-weight: 700; color: #7ec8ff;
}
.v6-dock-btn.has-val .v6-dock-btn__val { display: inline; }
.v6-dock-btn.is-open .v6-dock-btn__val { color: rgba(255,255,255,.85); }

.v6-dock-clear {
  height: 40px; padding: 0 14px; border-radius: 999px;
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 12px; font-weight: 700; text-decoration: none;
  color: rgba(255,255,255,.28);
  background: rgba(255,255,255,.04);
  border: 1px dashed rgba(255,255,255,.1);
  pointer-events: none;
}
.v6-dock-clear svg { width: 12px; height: 12px; }
.v6-dock.is-filtered .v6-dock-clear {
  pointer-events: auto; color: #1c1c1c; background: #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,.2);
}
.v6-dock.is-filtered .v6-dock-clear:hover { background: var(--v6-accent); color: #fff; }

.v6-dock-minify {
  height: 40px; width: 40px; padding: 0; border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.55);
  background: rgba(255,255,255,.06);
  border: 1px solid transparent;
  cursor: pointer;
  flex-shrink: 0;
  transition: color .2s, background .2s, transform .22s var(--v6-ease-spring);
}
.v6-dock-minify svg {
  width: 16px; height: 16px;
  transition: transform .28s var(--v6-ease-spring);
}
.v6-dock-minify:hover {
  color: #fff; background: rgba(255,255,255,.12);
  transform: translateY(1px);
}
.v6-dock-minify:hover svg { transform: translateY(2px); }
.v6-dock-minify:active { transform: scale(.9); }
.v6-dock.is-collapsing .v6-dock-minify {
  color: #fff;
  background: rgba(20,150,255,.28);
  transform: scale(.88);
}
.v6-dock.is-collapsing .v6-dock-minify svg { transform: translateY(4px) scale(1.1); }

.v6-dock-pop {
  position: absolute; left: 50%; bottom: calc(100% + 22px);
  transform: translateX(-50%) translateY(12px) scale(.97);
  width: min(640px, calc(100vw - 40px));
  padding: 18px; border-radius: 22px;
  background: rgba(28, 28, 30, .97);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 24px 64px rgba(0,0,0,.42);
  opacity: 0; visibility: hidden; pointer-events: none;
  max-height: min(52vh, 440px);
  display: flex; flex-direction: column;
  transition: .28s var(--v6-ease-out);
}
.v6-dock-pop.is-show { z-index: 2147483646 !important; pointer-events: auto !important; }
.v6-dock__shell > .v6-dock-pop { z-index: 50 !important; }
.v6-dock__shell > .v6-dock-row { z-index: 1; }
.v6-dock-swatch { position: relative !important; z-index: 3 !important; pointer-events: auto !important; cursor: pointer !important; }

.v6-dock-pop.is-show {
  /* __DOCK_POP_Z__ */
  z-index: 2147483646 !important;
  opacity: 1; visibility: visible;
  transform: translateX(-50%) translateY(0) scale(1);
  pointer-events: auto;
}
.v6-dock-panel { display: none; }
.v6-dock-panel.is-show { display: block; }
.v6-dock-pop__head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 12px;
}
.v6-dock-pop__title {
  font-size: 12px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: rgba(255,255,255,.42);
}
.v6-dock-pop__meta { font-size: 12px; color: rgba(255,255,255,.35); margin-left: 8px; }
.v6-dock-pop__hint { font-size: 11px; color: rgba(255,255,255,.3); margin-top: 2px; }
.v6-dock-pop__reset {
  font-size: 12px; font-weight: 600; color: rgba(255,255,255,.45);
  padding: 5px 10px; border-radius: 999px; text-decoration: none;
}
.v6-dock-pop__reset:hover { color: var(--v6-accent); background: rgba(255,255,255,.06); }

.v6-tag-search {
  display: flex; align-items: center; gap: 8px;
  height: 40px; padding: 0 14px; margin-bottom: 12px;
  border-radius: 12px; background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
}
.v6-tag-search svg { color: rgba(255,255,255,.4); flex-shrink: 0; }
.v6-tag-search input {
  flex: 1; min-width: 0; border: 0; outline: 0;
  background: transparent; color: #fff; font: inherit; font-size: 13px;
}
.v6-tag-search input::placeholder { color: rgba(255,255,255,.35); }
.v6-dock-pop__body { overflow-y: auto; min-height: 0; flex: 1; max-height: 280px; }

.v6-dock-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.v6-dock-chip {
  height: 34px; padding: 0 14px; border-radius: 999px;
  display: inline-flex; align-items: center;
  font-size: 13px; font-weight: 600; text-decoration: none;
  color: rgba(255,255,255,.8);
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.08);
}
.v6-dock-chip:hover { background: rgba(255,255,255,.13); color: #fff; }
.v6-dock-chip.is-on {
  background: var(--v6-accent); color: #fff; border-color: transparent; font-weight: 700;
}
.v6-dock-chip[hidden] { display: none !important; }
.v6-dock-chip.v6-size-more {
  gap: 5px;
  background: rgba(255,255,255,.04);
  border-style: dashed;
  color: rgba(255,255,255,.55);
  cursor: pointer;
}
.v6-dock-chip.v6-size-more svg {
  width: 12px; height: 12px; opacity: .7;
  transition: transform .2s;
}
.v6-dock-chip.v6-size-more .ico-up { display: none; }
.v6-dock-chip.v6-size-more.is-open .ico-down { display: none; }
.v6-dock-chip.v6-size-more.is-open .ico-up { display: block; }
.v6-dock-chip.v6-size-more.is-open,
.v6-dock-chip.v6-size-more:hover {
  color: #fff; border-color: rgba(255,255,255,.28); background: rgba(255,255,255,.1);
}
.v6-size-other {
  display: none;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px dashed rgba(255,255,255,.1);
}
.v6-size-other.is-open { display: flex; }
.v6-dock-empty {
  padding: 28px 12px; text-align: center;
  font-size: 13px; color: rgba(255,255,255,.4);
}
/* __LIST_EMPTY_V6__: flex center, no body */
.v6-results:has(.v6-list-empty),
.v6-results.v6-results--empty{
  display:flex!important;flex-direction:column!important;align-items:center!important;justify-content:center!important;
  float:none!important;clear:both!important;width:100%!important;max-width:none!important;
  min-height:calc(100vh - 340px)!important;margin:0!important;padding:28px 20px!important;box-sizing:border-box!important;background:transparent!important
}
.v6-list-empty{display:block!important;margin:0 auto!important;max-width:360px!important;width:auto!important;padding:0!important;text-align:center!important;color:#333!important;background:none!important;border:none!important;border-radius:0!important;box-shadow:none!important}
.v6-list-empty__mark{width:56px;height:56px;margin:0 auto 16px;border-radius:50%;display:flex;align-items:center;justify-content:center;background:#fff;border:1px solid #e4e7ec}
.v6-list-empty__mark svg{width:24px;height:24px;display:block}
.v6-list-empty__title{margin:0 0 8px;font-size:17px;font-weight:600;color:#2a2f38;letter-spacing:.02em;line-height:1.4}
.v6-list-empty__desc{margin:0 auto 20px;max-width:26em;font-size:13px;line-height:1.7;color:#8b93a0}
.v6-list-empty__btn{display:inline-flex;align-items:center;justify-content:center;min-width:140px;padding:10px 22px;border-radius:999px;background:#1496ff;color:#fff!important;text-decoration:none;font-size:13.5px;font-weight:600;box-shadow:none;transition:background .18s ease,transform .18s ease}
.v6-list-empty__btn:hover{color:#fff!important;background:#0d7fe0;transform:translateY(-1px)}
.v6-list-empty__btn:active{transform:translateY(0)}
@media (max-width:640px){.v6-results:has(.v6-list-empty),.v6-results.v6-results--empty{min-height:calc(100vh - 320px)!important;padding:24px 16px!important}.v6-list-empty__title{font-size:16px}}

.v6-dock-swatches { display: flex; flex-wrap: wrap; gap: 10px; padding: 4px 2px; }
/* __DOCK_SWATCH_HIT__ */
.v6-dock__shell > .v6-dock-pop { z-index: 20 !important; }
.v6-dock__shell > .v6-dock-row { z-index: 1; }
.v6-dock-pop.is-show { z-index: 2147483646 !important; pointer-events: auto !important; }
/* __DOCK_NATIVE_HIT__ */
.v6-dock__shell > .v6-dock-pop { z-index: 50 !important; }
.v6-dock__shell > .v6-dock-row { z-index: 1; }
.v6-dock-pop.is-show { z-index: 2147483646 !important; pointer-events: auto !important; }
.v6-dock-swatch { position: relative !important; z-index: 3 !important; pointer-events: auto !important; cursor: pointer !important; }


.v6-dock-swatch { position: relative; z-index: 2; cursor: pointer; }
.v6-dock.is-animating .v6-dock-pop.is-show,
.v6-dock.is-animating .v6-dock-swatch { pointer-events: auto !important; }

.v6-dock-swatch {
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.18);
  display: inline-block; text-decoration: none;
}
.v6-dock-swatch.is-on { box-shadow: 0 0 0 2px #1c1c1c, 0 0 0 4px var(--v6-accent); }

@keyframes v6-neonSpin { to { --v6-neon-angle: 360deg; } }
@keyframes v6-dockShellIn {
  0% {
    opacity: 0;
    transform: translateY(18px) scale(.55);
    filter: blur(3px);
  }
  100% {
    opacity: 1;
    transform: none;
    filter: none;
  }
}
@keyframes v6-dockFabPop {
  0% { transform: scale(.42) rotate(-28deg); }
  62% { transform: scale(1.08) rotate(4deg); }
  100% { transform: scale(1) rotate(0); }
}
@keyframes v6-dockBadgeIn {
  0% { transform: scale(.4); }
  70% { transform: scale(1.15); }
  100% { transform: scale(1); }
}

@media (max-width: 768px) {
  .v6-hero {
    display: block;
    min-height: 172px;
  }
  .v6-hero__copy {
    position: relative;
    z-index: 5;
    min-height: 172px;
    padding: 18px 20px;
    padding-right: 34%;
  }
  .v6-hero h1 { font-size: 20px; }
  .v6-hero__desc { font-size: 11.5px; }
  .v6-hero__art {
    position: absolute;
    inset: 0;
    min-height: 100%;
    clip-path: none;
    z-index: -1;
  }
  .v6-hero__grid { inset: 0; display: block; transform: none; }
  .v6-hero__grid figure { width: 100%; height: 100%; }
  .v6-hero__grid figure:not(:first-child) { display: none; }
  .v6-hero__grid img,
  .v6-hero:hover .v6-hero__grid img { transform: none; }
  .v6-hero__veil {
    background: linear-gradient(90deg, rgba(10,14,20,.96), rgba(10,14,20,.72) 62%, rgba(10,14,20,.4));
  }
  .v6-dock { bottom: 12px; width: min(100% - 16px, 720px); }
  .v6-dock.is-collapsing,
  .v6-dock.is-collapsed { right: 14px; bottom: 14px; }
  .v6-dock-acts { overflow-x: auto; scrollbar-width: none; max-width: 100%; }
  .v6-dock-acts::-webkit-scrollbar { display: none; }
  .v6-dock-btn { height: 38px; padding: 0 12px; font-size: 12px; }
  .v6-dock-clear { height: 38px; padding: 0 12px; }
  .v6-dock-fab__tip { display: none !important; }
  
}

@media (prefers-reduced-motion: reduce) {
  .v6-dock__shell::before { animation: none !important; }
  .v6-hero,
  .sort-seg__glider { transition: none !important; }
  .v6-dock,
  .v6-dock__shell,
  .v6-dock-fab,
  .v6-dock-fab__tip,
  .v6-dock-fab__badge,
  .v6-dock-minify,
  .v6-dock-minify svg { transition: none !important; animation: none !important; }
}

/* v6-dock 移动端隐藏（快照 #v6-dock-hide-m） */
@media (max-width: 768px) {
  .v6-dock, .v6-dock-fab { display: none !important; }
  body.v6-has-dock { padding-bottom: 0 !important; }
}
