/* st48 帝国首页 — 对齐 fed-* 布局；视觉层做「高端流媒体」向：层次、毛玻璃顶栏、卡片阴影与克制动效 */

html:has(body.st48) {
  overflow-x: hidden;
  max-width: 100%;
}

/* 与 fed 其它 CSS 并存时，取消 .fed-min-width 常见的大 min-width，避免小屏整页横向滚动、块级错位 */
body.st48 .fed-min-width {
  min-width: 0 !important;
  max-width: 100%;
  box-sizing: border-box;
}

body.st48.fed-min-width {
  --st48-accent: #00a85c;
  --st48-accent-bright: #0bbe06;
  --st48-accent-glow: rgba(0, 168, 92, 0.22);
  --st48-ink: #1c1c1e;
  --st48-ink-muted: #636366;
  --st48-surface: #ffffff;
  --st48-line: rgba(0, 0, 0, 0.06);
  --st48-elev: 0 4px 6px -1px rgba(15, 23, 42, 0.05), 0 10px 28px -8px rgba(15, 23, 42, 0.08);
  --st48-elev-hover: 0 10px 22px -6px rgba(15, 23, 42, 0.1), 0 20px 48px -14px rgba(15, 23, 42, 0.14);
  --st48-radius-lg: 0.75rem;
  --st48-radius-md: 0.5rem;
  --st48-radius-sm: 0.375rem;
  /* 整站内容区最大宽度（非宽屏排版，超宽显示器两侧留白） */
  --st48-shell-max: 58rem;

  margin: 0;
  min-width: 0;
  width: 100%;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "PingFang SC",
    "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--st48-ink);
  background-color: #eceef2;
  background-image: linear-gradient(165deg, #e8ecf3 0%, #f4f6f9 38%, #eef0f4 100%);
  background-attachment: fixed;
  overflow-x: hidden;
  overflow-y: scroll;
  -webkit-font-smoothing: antialiased;
}

/* 播放页等：无 .fed-min-width 时也提供变量 + 与全站一致的基础排版（避免整页像未套壳） */
body.st48.st48-play {
  --st48-accent: #00a85c;
  --st48-accent-bright: #0bbe06;
  --st48-accent-glow: rgba(0, 168, 92, 0.22);
  --st48-ink: #1c1c1e;
  --st48-ink-muted: #636366;
  --st48-surface: #ffffff;
  --st48-line: rgba(0, 0, 0, 0.06);
  --st48-elev: 0 4px 6px -1px rgba(15, 23, 42, 0.05), 0 10px 28px -8px rgba(15, 23, 42, 0.08);
  --st48-radius-lg: 0.75rem;
  --st48-radius-md: 0.5rem;
  --st48-shell-max: 58rem;

  margin: 0;
  min-width: 0;
  width: 100%;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "PingFang SC",
    "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--st48-ink);
  overflow-x: hidden;
  overflow-y: scroll;
  -webkit-font-smoothing: antialiased;
}

body.st48 img {
  border: 0;
  vertical-align: middle;
  max-width: 100%;
}

body.st48 a {
  color: #333;
  text-decoration: none;
}

body.st48 a:hover {
  color: var(--st48-accent-bright);
}

body.st48 li {
  list-style: none;
}

body.st48 h1,
body.st48 h2,
body.st48 h3,
body.st48 h4 {
  font-weight: 400;
}

body.st48 *,
body.st48 *::before,
body.st48 *::after {
  box-sizing: border-box;
}

/* —— 精简顶栏（内容 / 播放 / 搜索等：.st48-top；不用 backdrop-filter 以免 fixed 子层错位）—— */
body.st48 .st48-top {
  position: sticky;
  top: 0;
  z-index: 900;
  width: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(250, 251, 253, 0.96) 100%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.065);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.92) inset, 0 12px 36px rgba(15, 23, 42, 0.055);
}

body.st48 .st48-top::after {
  content: "";
  position: absolute;
  left: 6%;
  right: 6%;
  bottom: 0;
  height: 2px;
  border-radius: 2px;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 168, 92, 0.2) 20%,
    rgba(14, 224, 120, 0.55) 50%,
    rgba(0, 168, 92, 0.2) 80%,
    transparent 100%
  );
  opacity: 0.88;
}

body.st48 .st48-top__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem 0.85rem;
  max-width: min(100%, var(--st48-shell-max, 58rem));
  margin: 0 auto;
  padding: 0.6rem clamp(0.65rem, 2.2vw, 1.05rem);
  min-height: 3.25rem;
}

/* 窄屏顶栏：左搜索入口、中 Logo（对称列真居中）、右汉堡；与模板 DOM 顺序一致 */
@media (max-width: 51.99rem) {
  body.st48 .st48-top__inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    column-gap: 0.35rem;
  }

  body.st48 .st48-top__inner > .st48-head-search,
  body.st48 .st48-top__inner > .st48-search {
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
    align-self: center;
    min-width: 0;
  }

  body.st48 .st48-top__inner > .st48-logo {
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
    text-align: center;
    min-width: 0;
    max-width: min(100%, 12.5rem);
    margin-block: 0;
    margin-inline: auto;
  }

  body.st48 .st48-top__inner > .st48-mnav {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
  }

  body.st48 .st48-top__inner > .st48-search {
    margin-left: 0;
    max-width: min(17rem, 58vw);
    width: max-content;
  }

  /* 侧栏打开时隐藏左侧搜索入口（放大镜或搜索条），不叠在抽屉上；无 :has 时用 JS 加 .st48-top__inner--mnav-open */
  body.st48 .st48-top__inner:has(.st48-mnav[open]) > .st48-head-search,
  body.st48 .st48-top__inner:has(.st48-mnav[open]) > .st48-search,
  body.st48 .st48-top__inner.st48-top__inner--mnav-open > .st48-head-search,
  body.st48 .st48-top__inner.st48-top__inner--mnav-open > .st48-search {
    visibility: hidden;
    pointer-events: none;
  }
}

@media (min-width: 52rem) {
  body.st48 .st48-top__inner {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.75rem 1.15rem;
  }

  body.st48 .st48-top__inner > .st48-head-search,
  body.st48 .st48-top__inner > .st48-mnav,
  body.st48 .st48-top__inner > .st48-search {
    grid-column: unset;
    grid-row: unset;
    justify-self: unset;
    max-width: unset;
    width: unset;
    margin-inline: unset;
    margin-block: unset;
  }

  body.st48 .st48-top__inner > .st48-logo {
    grid-column: unset;
    grid-row: unset;
    justify-self: unset;
    max-width: unset;
    width: unset;
    margin-inline: unset;
    margin-block: unset;
    margin: 0 -0.15rem 0 0;
    text-align: unset;
  }

  body.st48 .st48-top__inner > .st48-search {
    margin-left: auto;
  }
}

body.st48 .st48-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 800;
  color: var(--st48-ink) !important;
  text-decoration: none !important;
  border-radius: 0.65rem;
  padding: 0.1rem 0.2rem 0.1rem 0;
  margin: 0 -0.15rem 0 0;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

body.st48 .st48-logo:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

body.st48 .st48-logo__ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.125rem;
  height: 2.125rem;
  border-radius: 0.55rem;
  background: linear-gradient(145deg, #14e078, var(--st48-accent) 52%, #008f52);
  box-shadow: 0 3px 14px rgba(0, 120, 70, 0.28), 0 0 0 1px rgba(255, 255, 255, 0.35) inset;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

body.st48 .st48-logo:hover .st48-logo__ico {
  transform: scale(1.04);
  box-shadow: 0 5px 20px rgba(0, 120, 70, 0.34), 0 0 0 1px rgba(255, 255, 255, 0.45) inset;
}

body.st48 .st48-logo__name {
  font-size: 1.05rem;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  body.st48 .st48-logo__name {
    background: linear-gradient(118deg, var(--st48-ink) 0%, #3a3a40 55%, var(--st48-accent) 125%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent !important;
    -webkit-text-fill-color: transparent;
  }
}

body.st48 .st48-nav-wrap {
  display: none;
  /* 不用 flex:1，否则中间块吃满宽度，主导航居中后右侧整段空白，搜索框被挤到最右显得「空一大块」 */
  flex: 0 1 auto;
  min-width: 0;
}

@media (min-width: 52rem) {
  body.st48 .st48-nav-wrap {
    display: flex !important;
    justify-content: center;
    align-items: center;
  }
}

body.st48 .st48-nav {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  padding: 0.2rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.032);
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.75) inset;
}

body.st48 .st48-nav__a {
  padding: 0.42rem 0.95rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--st48-ink-muted) !important;
  border: 1px solid transparent;
  transition: color 0.18s ease, background 0.18s ease, border-color 0.18s ease, box-shadow 0.2s ease, transform 0.15s ease;
}

body.st48 .st48-nav__a:hover {
  color: var(--st48-ink) !important;
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.06);
}

body.st48 .st48-nav__a.is-on {
  color: #fff !important;
  background: linear-gradient(135deg, #14e078, var(--st48-accent) 55%, #008f52);
  border-color: rgba(0, 120, 70, 0.25);
  box-shadow: 0 4px 16px rgba(0, 140, 80, 0.28), 0 1px 0 rgba(255, 255, 255, 0.35) inset;
}

body.st48 .st48-search {
  display: none;
  align-items: center;
  gap: 0.45rem;
  flex: 0 1 17rem;
  min-width: 0;
  margin-left: auto;
  padding: 0.28rem 0.35rem 0.28rem 0.75rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 999px;
  background: linear-gradient(180deg, #fff, #f3f5f8);
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.05), 0 1px 0 rgba(255, 255, 255, 0.9) inset;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

@media (min-width: 40rem) {
  body.st48 .st48-search {
    display: flex;
  }
}

body.st48 .st48-search:focus-within {
  border-color: rgba(0, 168, 92, 0.38);
  box-shadow: 0 0 0 3px rgba(0, 168, 92, 0.2), 0 4px 18px rgba(15, 23, 42, 0.07);
}

body.st48 .st48-search__ico {
  flex-shrink: 0;
  display: inline-flex;
  color: rgba(0, 0, 0, 0.28);
}

body.st48 .st48-search input[type="search"] {
  flex: 1 1 auto;
  min-width: 0;
  border: 0;
  background: transparent;
  font-size: 0.8125rem;
  outline: none;
  color: var(--st48-ink);
}

body.st48 .st48-search input[type="search"]::placeholder {
  color: #9a9aa3;
}

body.st48 .st48-search button {
  flex-shrink: 0;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  padding: 0;
  border-radius: 999px;
  color: #fff !important;
  background: linear-gradient(135deg, #14e078, var(--st48-accent) 55%, #008f52);
  box-shadow: 0 2px 10px rgba(0, 140, 80, 0.28);
  transition: transform 0.15s ease, box-shadow 0.2s ease, filter 0.15s ease;
}

body.st48 .st48-search button:hover {
  filter: brightness(1.05);
  box-shadow: 0 4px 16px rgba(0, 140, 80, 0.35);
}

body.st48 .st48-search button:active {
  transform: scale(0.96);
}

body.st48 .st48-search button svg {
  stroke: #fff;
}

/* 顶栏（fed 首页）：不用 backdrop-filter，否则其子元素里 position:fixed 的菜单会以顶栏为包含块，手机端整屏遮罩/抽屉被裁切错位 */
body.st48 .fed-head-info {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  z-index: 999;
  color: var(--st48-ink-muted) !important;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(250, 251, 253, 0.96) 100%);
  border-bottom: 1px solid var(--st48-line);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.88) inset, 0 12px 40px rgba(15, 23, 42, 0.065);
}

body.st48 .fed-head-info::after {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 0;
  height: 2px;
  border-radius: 2px;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 168, 92, 0.2) 22%,
    rgba(18, 224, 120, 0.55) 50%,
    rgba(0, 168, 92, 0.2) 78%,
    transparent 100%
  );
  opacity: 0.85;
}

body.st48 .fed-box-shadow {
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.65) inset, 0 8px 32px rgba(15, 23, 42, 0.06);
}

/* 通栏容器：仅顶栏内用 flex，主区/页脚用块级，避免白块横排错位 */
body.st48 .fed-part-case {
  width: 100%;
  max-width: min(100%, var(--st48-shell-max, 58rem));
  margin: 0 auto;
  padding: 0 clamp(0.75rem, 2.5vw, 1.25rem);
  box-sizing: border-box;
}

body.st48 .fed-head-info .fed-part-case {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(0.3rem, 0.6vw, 0.45rem) clamp(0.4rem, 1vw, 0.65rem);
  min-height: 3.25rem;
  width: 100%;
  box-sizing: border-box;
}

body.st48 .fed-main-info > .fed-part-case {
  display: block;
  padding-bottom: 1.25rem;
  max-width: min(100%, var(--st48-shell-max, 58rem));
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}

@media (max-width: 35.99rem) {
  body.st48 .fed-head-info .fed-navs-search {
    flex: 1 1 100%;
    order: 3;
    margin-top: 0.25rem;
  }

  body.st48 .fed-head-info .fed-navs-search .fed-navs-form {
    width: 100%;
    max-width: none;
  }

  body.st48 .fed-head-info .fed-navs-input {
    flex: 1;
    width: auto !important;
    max-width: none;
  }
}

body.st48 .fed-navs-left {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  flex: 1 1 auto;
  min-width: 0;
  gap: 0.35rem 0.5rem;
}

/* 小屏：搜索图标 + 菜单汉堡同组靠右；≥sm 隐藏该组里的手机搜索 */
body.st48 .fed-navs-tools {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-left: auto;
  flex: 0 0 auto;
}

body.st48 .st48-head-search {
  display: none;
  position: relative;
  z-index: 2;
}

@media (max-width: 35.99rem) {
  body.st48 .st48-head-search {
    display: block;
  }
}

@media (min-width: 36rem) {
  body.st48 .st48-head-search {
    display: none !important;
  }
}

body.st48 .fed-navs-desk {
  display: none;
}

@media (min-width: 48rem) {
  body.st48 .fed-navs-desk {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    flex: 1 1 auto;
    min-width: 0;
    gap: clamp(0.15rem, 0.35vw, 0.35rem) clamp(0.25rem, 0.9vw, 0.55rem);
    padding: 0 clamp(0.15rem, 0.8vw, 0.45rem);
    margin-left: 0.15rem;
    border-left: 1px solid rgba(0, 0, 0, 0.06);
  }
}

body.st48 .fed-navs-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-right: 0.15rem;
  min-width: 0;
  max-width: 100%;
  text-decoration: none !important;
}

body.st48 .fed-navs-logo__mark {
  width: 2.125rem;
  height: 2.125rem;
  flex-shrink: 0;
  border-radius: 0.55rem;
  object-fit: cover;
  box-shadow: 0 2px 10px rgba(0, 120, 70, 0.22), 0 0 0 1px rgba(255, 255, 255, 0.35) inset;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

body.st48 .fed-navs-logo:hover .fed-navs-logo__mark {
  transform: scale(1.04) rotate(-2deg);
  box-shadow: 0 4px 16px rgba(0, 120, 70, 0.28), 0 0 0 1px rgba(255, 255, 255, 0.45) inset;
}

body.st48 .fed-navs-logo__text {
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.03em;
  color: var(--st48-ink) !important;
  line-height: 1.15;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: min(13rem, calc(100vw - 9.5rem));
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  body.st48 .fed-navs-logo__text {
    background: linear-gradient(115deg, var(--st48-ink) 0%, #3d3d42 52%, var(--st48-accent) 118%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent !important;
    -webkit-text-fill-color: transparent;
  }
}

@media (min-width: 48rem) {
  body.st48 .fed-navs-logo__text {
    max-width: min(17rem, 100%);
  }
}

body.st48 .st48-nav-ico-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  opacity: 0.88;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

body.st48 .fed-navs-title:hover .st48-nav-ico-wrap {
  opacity: 1;
  transform: translateY(-1px);
}

body.st48 .st48-nav-ico {
  display: block;
  vertical-align: middle;
}

body.st48 .fed-navs-title {
  display: inline-block;
  padding: 0.45rem 0.85rem;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--st48-ink-muted) !important;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: color 0.18s ease, background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, transform 0.15s ease;
}

body.st48 .fed-navs-title--ico {
  gap: 0.38rem;
}

@media (min-width: 48rem) {
  body.st48 a.fed-navs-title.fed-show-md-block {
    display: inline-flex !important;
    align-items: center;
    vertical-align: middle;
  }
}

body.st48 .fed-navs-title:not(.fed-text-green):hover {
  color: var(--st48-ink) !important;
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(0, 0, 0, 0.07);
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.06);
}

body.st48 .fed-navs-title.fed-text-green:hover {
  color: #fff !important;
  filter: brightness(1.06);
  border-color: rgba(0, 120, 70, 0.35);
  box-shadow: 0 4px 18px rgba(0, 140, 80, 0.32), 0 1px 0 rgba(255, 255, 255, 0.4) inset;
}

body.st48 .fed-navs-title.fed-text-green {
  color: #fff !important;
  background: linear-gradient(135deg, #14e078, var(--st48-accent) 55%, #008f52);
  border-color: rgba(0, 120, 70, 0.28);
  box-shadow: 0 3px 14px rgba(0, 140, 80, 0.28), 0 1px 0 rgba(255, 255, 255, 0.35) inset;
}

body.st48 .fed-text-green {
  color: var(--st48-accent) !important;
  background: rgba(0, 168, 92, 0.08);
  border-color: rgba(0, 168, 92, 0.18);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.65) inset;
}

body.st48 .fed-navs-title.fed-text-green .st48-nav-ico-wrap {
  opacity: 1;
  color: #fff;
}

body.st48 .fed-font-xvi {
  font-size: 1rem;
}

body.st48 .fed-font-xiv {
  font-size: 0.875rem;
}

body.st48 .fed-font-xii {
  font-size: 0.75rem;
}

/* 演示：≥768px 显示横排导航；小屏用侧滑菜单 */
body.st48 .fed-show-md-block {
  display: none !important;
}

@media (min-width: 48rem) {
  body.st48 .fed-show-md-block {
    display: inline-block !important;
  }

  body.st48 .fed-hide-sm {
    display: inline-block !important;
  }

  body.st48 .fed-hide-xs {
    display: inline-block !important;
  }
}

body.st48 .fed-hide-md {
  display: block;
}

@media (min-width: 48rem) {
  body.st48 .fed-hide-md {
    display: none !important;
  }
}

/* 主区顶距：默认跟 sticky .st48-top；若仍使用 fixed .fed-head-info 的旧页，用相邻兄弟保留大顶距避免内容被挡 */
body.st48 .fed-main-info {
  padding: 0.65rem 0 0;
  min-width: 0;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

body.st48 .fed-head-info ~ .fed-main-info {
  padding-top: 4rem;
}

@media (max-width: 47.99rem) {
  body.st48 .fed-head-info ~ .fed-main-info {
    padding-top: 5rem;
  }
}

body.st48 .fed-part-layout {
  margin: 0 0 0.75rem;
  overflow: hidden;
  max-width: 100%;
  box-sizing: border-box;
  border-radius: var(--st48-radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: var(--st48-elev);
  transition: box-shadow 0.28s ease, transform 0.28s ease;
}

/* 首页等：fed 皮肤常把 .fed-part-layout 做成纵向 flex，子级 .fed-col-sx12 若继承 flex:1 会在「标题行」和「海报网格」之间顶出巨大空白；分类页 .st48-list-page 保留自身结构不覆盖 */
body.st48 .fed-main-info .fed-part-layout:not(.st48-list-page) {
  display: block;
}

body.st48 .fed-main-info .fed-part-layout:not(.st48-list-page) > .fed-col-sx12 {
  display: block;
  width: 100%;
  flex: none;
  min-height: 0;
}

/* 分类页需要裁切英雄区光晕，避免 ::before 负向偏移撑出横向滚动条 */
body.st48 .fed-part-layout.st48-list-page {
  overflow-x: hidden;
  overflow-y: visible;
  max-width: 100%;
}

body.st48 .fed-part-layout:hover {
  box-shadow: var(--st48-elev-hover);
}

body.st48 .fed-back-whits {
  background: var(--st48-surface);
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, #fff 24%, #fafbfc 100%);
}

body.st48 .fed-padding {
  padding: 0.625rem 0.75rem;
}

body.st48 .fed-list-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.5rem 0.75rem;
  border-bottom: 1px solid var(--st48-line);
  background: linear-gradient(180deg, rgba(250, 251, 252, 0.9) 0%, rgba(255, 255, 255, 0.35) 100%);
}

body.st48 .fed-list-head h2,
body.st48 .fed-list-head h1 {
  position: relative;
  margin: 0;
  padding: 0.15rem 0 0.15rem 0.7rem;
  color: var(--st48-ink);
  flex: 0 1 auto;
  line-height: 1.35;
  font-weight: 600;
  font-size: 1.02rem;
  letter-spacing: -0.025em;
}

body.st48 .fed-list-head h1.st48-list-page__h1 {
  font-size: 1.08rem;
  flex: 1 1 100%;
  width: 100%;
}

body.st48 .fed-list-head h2::before,
body.st48 .fed-list-head h1::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.38em;
  bottom: 0.38em;
  width: 3px;
  border-radius: 3px;
  background: linear-gradient(180deg, var(--st48-accent-bright), var(--st48-accent));
  box-shadow: 0 0 12px var(--st48-accent-glow);
}

body.st48 .fed-list-head .fed-part-tips {
  flex: 0 1 auto;
  margin-left: auto;
  justify-content: flex-end;
  max-width: 100%;
}

body.st48 .fed-part-rows::after {
  content: "";
  display: table;
  clear: both;
}

body.st48 .fed-part-tips {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.15rem 0.2rem;
  row-gap: 0.35rem;
}

body.st48 .fed-part-tips li {
  margin: 0;
  padding: 0;
  font-size: 0.8125rem;
  color: #999;
}

body.st48 .fed-part-tips a {
  color: #5c5c61;
  border-radius: 999px;
  padding: 0.12rem 0.38rem;
  margin: 0 -0.12rem;
  transition: color 0.18s ease, background 0.18s ease;
}

body.st48 .fed-part-tips a:hover {
  color: var(--st48-accent-bright);
  background: rgba(0, 168, 92, 0.08);
}

body.st48 .fed-more {
  color: var(--st48-accent) !important;
  font-weight: 600;
}

body.st48 .fed-col-sx12 {
  width: 100%;
  max-width: 100%;
  clear: both;
  float: none;
}

/* 海报宫格：用 Grid 替代 float，避免错位与高度不齐 */
body.st48 .fed-list-info {
  margin: 0;
  padding: 0.5rem clamp(0.35rem, 1.2vw, 0.65rem) 0.85rem;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem 0.45rem;
  align-items: start;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

/* 分类页：防止其它皮肤样式把列表改成横向 flex */
body.st48 .fed-part-layout.st48-list-page .fed-list-info {
  display: grid;
  width: 100%;
  max-width: 100%;
}

@media (min-width: 36rem) {
  body.st48 .fed-list-info {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.55rem 0.5rem;
  }
}

/* 平板横屏 / 小笔记本：5 列，避免 768px 起直接 6 列导致海报过窄 */
@media (min-width: 48rem) {
  body.st48 .fed-list-info {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.6rem 0.52rem;
  }
}

@media (min-width: 64rem) {
  body.st48 .fed-list-info {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 0.65rem 0.55rem;
  }
}

body.st48 .fed-list-item {
  position: relative;
  margin: 0;
  padding: 0 0 0.2rem;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  border-radius: var(--st48-radius-md);
  transition: transform 0.22s ease;
}

body.st48 .fed-list-item:not(.st48-empty-li):hover {
  transform: translateY(-3px);
}

body.st48 .fed-list-item.st48-empty-li {
  grid-column: 1 / -1;
  display: block;
  text-align: center;
  color: #999;
  padding: 1.35rem 0.75rem !important;
  font-size: 0.875rem;
}

/* 海报 2:3 */
body.st48 .fed-list-pics {
  position: relative;
  display: block;
  width: 100%;
  padding-top: 150%;
  overflow: hidden;
  border-radius: var(--st48-radius-md);
  background: linear-gradient(145deg, #eceef2 0%, #dfe3ea 100%);
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06), 0 0 0 1px rgba(255, 255, 255, 0.35) inset;
  transition: box-shadow 0.25s ease;
}

body.st48 .fed-list-item:not(.st48-empty-li):hover .fed-list-pics {
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.12), 0 0 0 1px rgba(255, 255, 255, 0.5) inset;
}

body.st48 .fed-list-pics > img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1);
}

body.st48 .fed-list-item:not(.st48-empty-li):hover .fed-list-pics > img {
  transform: scale(1.05);
}

body.st48 .fed-list-score {
  position: absolute;
  z-index: 3;
  top: 0.4rem;
  left: 0.4rem;
  min-width: 1.75rem;
  padding: 0.15rem 0.4rem;
  text-align: center;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  line-height: 1.2;
  color: #fff !important;
  border-radius: 0.35rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

body.st48 .fed-back-green {
  background: linear-gradient(135deg, #12d06b 0%, var(--st48-accent) 48%, #007a45 160%) !important;
}

body.st48 .fed-list-remarks {
  position: absolute;
  z-index: 3;
  right: 0.25rem;
  bottom: 0.25rem;
  left: 0.25rem;
  padding: 0.15rem 0.25rem;
  text-align: right;
  line-height: 1.25;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.65);
}

body.st48 .fed-text-white {
  color: #fff !important;
}

body.st48 .fed-text-right {
  text-align: right !important;
}

body.st48 .fed-list-play {
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
  transition: background 0.28s ease;
}

body.st48 .fed-list-pics:hover .fed-list-play {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.35) 100%);
}

/* 子类筛选：小屏隐藏子类链，≥sm 与演示一致 */
body.st48 .fed-part-tips > li.fed-hide-xs {
  display: none !important;
}

@media (min-width: 36rem) {
  body.st48 .fed-part-tips > li.fed-hide-xs {
    display: list-item !important;
  }
}

/* 播放遮罩：小屏不占位，≥sm 显示 */
body.st48 .fed-list-pics .fed-list-play {
  display: none !important;
}

@media (min-width: 36rem) {
  body.st48 .fed-list-pics .fed-list-play {
    display: block !important;
  }
}

body.st48 .fed-show-sm-block {
  display: none !important;
}

@media (min-width: 36rem) {
  body.st48 .fed-show-sm-block {
    display: block !important;
  }

  body.st48 .fed-text-sm-left {
    text-align: left !important;
  }
}

body.st48 .fed-visible {
  display: block;
}

body.st48 .fed-list-title {
  margin-top: 0.45rem;
  line-height: 1.4;
  color: var(--st48-ink);
  font-weight: 500;
  letter-spacing: -0.015em;
  overflow: hidden;
  word-break: break-word;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  white-space: normal;
  min-height: calc(1.4em * 2);
  max-width: 100%;
  flex: 0 0 auto;
}

body.st48 .fed-part-eone {
  word-break: break-word;
}

body.st48 .fed-list-desc {
  margin-top: 0.2rem;
  line-height: 1.35;
  overflow: hidden;
  word-break: break-word;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  max-width: 100%;
  flex: 0 0 auto;
  min-height: calc(1.35em * 2);
}

/* fed-show-sm-block 在 sm+ 使用 display:block!important，会打掉 line-clamp 所需的 -webkit-box */
@media (min-width: 36rem) {
  body.st48 .fed-list-desc.fed-show-sm-block {
    display: -webkit-box !important;
    -webkit-box-orient: vertical;
  }
}

body.st48 .fed-text-muted {
  color: #86868b !important;
}

body.st48 .fed-text-center {
  text-align: center !important;
}

body.st48 .fed-text-black {
  color: var(--st48-ink) !important;
}

/* 搜索框 */
body.st48 .fed-navs-search {
  display: none;
  align-items: center;
  flex-shrink: 0;
}

@media (min-width: 36rem) {
  body.st48 .fed-navs-search.fed-show-sm-block {
    display: flex !important;
  }
}

body.st48 .fed-navs-form {
  display: flex;
  align-items: center;
  max-width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 1.5rem;
  overflow: hidden;
  background: linear-gradient(180deg, #fff 0%, #f6f7f9 100%);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

body.st48 .fed-navs-form:focus-within {
  border-color: rgba(0, 168, 92, 0.35);
  box-shadow: 0 0 0 3px var(--st48-accent-glow), 0 2px 8px rgba(15, 23, 42, 0.06);
}

body.st48 .fed-navs-input {
  width: 10rem;
  max-width: 42vw;
  border: 0;
  padding: 0.45rem 0.65rem;
  background: transparent;
  font-size: 0.8125rem;
  color: #333;
}

@media (min-width: 48rem) {
  body.st48 .fed-navs-input {
    width: clamp(10rem, 16vw, 14rem);
    max-width: none;
  }
}

body.st48 .fed-navs-submit {
  border: 0;
  margin: 0.15rem 0.2rem 0.15rem 0;
  padding: 0.4rem 0.85rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #fff !important;
  background: linear-gradient(135deg, #14e078, var(--st48-accent) 55%, #008f52);
  box-shadow: 0 2px 10px rgba(0, 140, 80, 0.25);
  transition: transform 0.15s ease, filter 0.15s ease, box-shadow 0.2s ease;
}

body.st48 .fed-navs-submit:hover {
  filter: brightness(1.06);
  box-shadow: 0 4px 16px rgba(0, 140, 80, 0.32);
}

body.st48 .fed-navs-submit:active {
  transform: scale(0.97);
}

body.st48 .fed-navs-submit .fed-ico-sou {
  border-color: #fff;
}

body.st48 .fed-ico-sou {
  display: block;
  width: 1rem;
  height: 1rem;
  border: 2px solid currentColor;
  border-radius: 50%;
  position: relative;
  box-sizing: border-box;
}

body.st48 .fed-ico-sou::after {
  content: "";
  position: absolute;
  width: 0.35rem;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  right: -0.2rem;
  bottom: -0.05rem;
  transform: rotate(45deg);
}

body.st48 .fed-back-ashen {
  background: #f8f8f8 !important;
}

/* 移动菜单（遮罩/抽屉须相对视口固定，且 z-index 高于顶栏） */
body.st48 .st48-mnav {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
}

/* 打开时整棵子树（含 fixed 抽屉）须压过 .st48-head-search（z-index:2），否则放大镜会叠在抽屉头上 */
body.st48 .st48-mnav[open] {
  z-index: 8;
}

/* 与 .st48-nav-wrap 一致：≥52rem 为电脑端，只保留横向主导航，隐藏汉堡 */
@media (min-width: 52rem) {
  body.st48 .st48-mnav {
    display: none !important;
  }
}

body.st48 .st48-mnav summary {
  list-style: none;
}

body.st48 .st48-mnav summary::-webkit-details-marker {
  display: none;
}

/* 手机顶栏：放大镜展开搜索（与 .st48-search 的 40rem 断点一致，仅小屏显示） */
body.st48 .st48-head-search {
  display: none;
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
}

@media (max-width: 39.99rem) {
  body.st48 .st48-top__inner > .st48-head-search {
    display: block;
  }
}

@media (min-width: 40rem) {
  body.st48 .st48-top__inner > .st48-head-search {
    display: none !important;
  }
}

body.st48 .st48-head-search__btn .st48-head-search__ico {
  display: block;
}

body.st48 .st48-head-search summary {
  list-style: none;
}

body.st48 .st48-head-search summary::-webkit-details-marker {
  display: none;
}

body.st48 .st48-head-search__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.6rem;
  border: 1px solid #e6e6e6;
  border-radius: 0.5rem;
  background: #fff;
  color: #555;
  cursor: pointer;
  list-style: none;
  -webkit-tap-highlight-color: transparent;
}

body.st48 .st48-head-search__btn .fed-ico-sou {
  transform: scale(1.05);
}

body.st48 .st48-head-search__backdrop {
  position: fixed;
  inset: 0;
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  background: rgba(15, 23, 42, 0.28);
  z-index: 10025;
}

body.st48 .st48-head-search__panel {
  position: fixed;
  left: 0;
  right: 0;
  top: calc(3.35rem + env(safe-area-inset-top, 0px));
  z-index: 10026;
  padding: 0.65rem clamp(0.75rem, 2.5vw, 1rem) 0.85rem;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--st48-line);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.1);
}

body.st48 .st48-head-search__form {
  width: 100%;
  max-width: none;
}

body.st48 .st48-head-search__form .fed-navs-input {
  flex: 1;
  width: auto !important;
  max-width: none;
}

body.st48 .fed-mnav-sum {
  list-style: none;
  cursor: pointer;
}

body.st48 .fed-mnav-sum::-webkit-details-marker {
  display: none;
}

body.st48 .st48-mnav__btn {
  padding: 0.45rem 0.6rem;
  border: 1px solid #e6e6e6;
  border-radius: 0.35rem;
  background: #fff;
}

body.st48 .st48-mnav__burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 1.35rem;
}

body.st48 .st48-mnav__burger span {
  height: 2px;
  background: #333;
  border-radius: 1px;
}

body.st48 .st48-mnav__backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  background: linear-gradient(125deg, rgba(10, 16, 28, 0.58) 0%, rgba(15, 23, 42, 0.42) 55%, rgba(12, 20, 36, 0.5) 100%);
  z-index: 10040;
}

body.st48 .st48-mnav__drop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(20.5rem, 92vw);
  max-width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  z-index: 10041;
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border-left: 1px solid rgba(255, 255, 255, 0.75);
  background: linear-gradient(168deg, #f6f7fb 0%, #ffffff 42%, #f0f2f7 100%);
  box-shadow: -16px 0 56px rgba(15, 23, 42, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  -webkit-overflow-scrolling: touch;
}

body.st48 .st48-mnav__drop::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--st48-accent-bright), var(--st48-accent) 45%, #006b4a);
  z-index: 2;
  pointer-events: none;
}

@media (max-width: 47.99rem) {
  body.st48 .st48-mnav__drop {
    left: 0;
    width: 100%;
    max-width: none;
    border-left: 0;
    box-shadow: 0 -8px 40px rgba(15, 23, 42, 0.12);
  }
}

body.st48 .st48-mnav__head {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
  padding: max(1rem, env(safe-area-inset-top)) 1.1rem 1rem;
  margin: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.72) 100%);
}

body.st48 .st48-mnav__brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex: 1 1 auto;
  min-width: 0;
}

body.st48 .st48-mnav__brand-mark,
body.st48 .st48-mnav__hint-ico {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.65rem;
  flex-shrink: 0;
  object-fit: cover;
  border: 1px solid rgba(0, 168, 92, 0.18);
  box-shadow: 0 6px 18px rgba(0, 120, 70, 0.2), 0 1px 0 rgba(255, 255, 255, 0.85) inset;
}

body.st48 .st48-mnav__brand-lines {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
  min-width: 0;
}

body.st48 .st48-mnav__brand-kicker {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--st48-accent);
  opacity: 0.88;
}

body.st48 .st48-mnav__brand-title {
  font-size: 1.125rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--st48-ink);
}

body.st48 .st48-mnav__hint {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0;
  flex: 1 1 auto;
  min-width: 0;
}

body.st48 .st48-mnav__close {
  position: relative;
  z-index: 1;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.85);
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.65rem;
  cursor: pointer;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #3a3a40;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.12s ease;
}

body.st48 .st48-mnav__close:hover {
  background: rgba(0, 168, 92, 0.1);
  border-color: rgba(0, 168, 92, 0.28);
  color: var(--st48-accent);
}

body.st48 .st48-mnav__close:active {
  transform: scale(0.96);
}

body.st48 .st48-mnav__close:focus-visible {
  outline: 2px solid rgba(0, 168, 92, 0.45);
  outline-offset: 2px;
}

body.st48 .st48-mnav__pad {
  position: relative;
  z-index: 1;
  flex: 1 1 auto;
  min-height: 0;
  padding: 0.85rem 1rem max(1.25rem, env(safe-area-inset-bottom));
  overflow-y: auto;
  overflow-x: hidden;
}

body.st48 .st48-mnav__list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

body.st48 .st48-mnav__drop .st48-mnav__link {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.88rem 1rem;
  border-radius: var(--st48-radius-md);
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
  font-size: 0.9375rem;
  font-weight: 650;
  color: var(--st48-ink) !important;
  transition: transform 0.15s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.15s ease;
}

body.st48 .st48-mnav__drop .st48-mnav__link:hover {
  border-color: rgba(0, 168, 92, 0.32);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 6px 22px rgba(0, 140, 80, 0.12);
  color: var(--st48-accent) !important;
  transform: translateY(-1px);
}

body.st48 .st48-mnav__drop .st48-mnav__link.is-active {
  border-color: rgba(0, 168, 92, 0.42);
  background: linear-gradient(135deg, rgba(0, 168, 92, 0.12) 0%, rgba(0, 168, 92, 0.04) 100%);
  color: var(--st48-accent) !important;
  box-shadow: 0 0 0 1px rgba(0, 168, 92, 0.12) inset, 0 4px 16px rgba(0, 140, 80, 0.1);
}

body.st48 .st48-mnav__drop .st48-mnav__link:focus-visible {
  outline: 2px solid rgba(0, 168, 92, 0.45);
  outline-offset: 2px;
}

body.st48 .st48-mnav__link-txt {
  flex: 1 1 auto;
  min-width: 0;
}

body.st48 .st48-mnav__drop .st48-mnav__link::after {
  content: "";
  width: 0.38rem;
  height: 0.38rem;
  margin-left: 0.25rem;
  flex-shrink: 0;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  opacity: 0.2;
  transform: rotate(-45deg);
}

body.st48 .st48-mnav__drop .st48-mnav__link:hover::after,
body.st48 .st48-mnav__drop .st48-mnav__link.is-active::after {
  opacity: 0.42;
}

body.st48 .st48-nav-ico-wrap--m {
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 0.5rem;
  background: linear-gradient(145deg, rgba(0, 168, 92, 0.12), rgba(0, 168, 92, 0.06));
  color: var(--st48-accent);
  border: 1px solid rgba(0, 168, 92, 0.12);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.75) inset;
}

body.st48 .st48-mnav__drop .st48-mnav__link:hover .st48-nav-ico-wrap--m,
body.st48 .st48-mnav__drop .st48-mnav__link.is-active .st48-nav-ico-wrap--m {
  background: linear-gradient(145deg, rgba(0, 168, 92, 0.22), rgba(0, 168, 92, 0.1));
  border-color: rgba(0, 168, 92, 0.22);
}

body.st48 .st48-nav-ico-wrap--m .st48-nav-ico {
  width: 1.15rem;
  height: 1.15rem;
}

body.st48 .st48-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* 分类列表页顶区：英雄区 + 筛选条（list_page.temp.shoutu48） */
body.st48 .fed-part-layout.st48-list-page .fed-list-head.st48-list-head {
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  padding: 0;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  border-bottom: none;
  background: transparent;
  overflow: visible;
}

body.st48 .st48-list-hero {
  position: relative;
  padding: 1rem clamp(0.75rem, 2.5vw, 1.1rem) 1.15rem;
  width: 100%;
  max-width: 100%;
  border-radius: var(--st48-radius-lg) var(--st48-radius-lg) 0 0;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  background: linear-gradient(145deg, #f8fafc 0%, #ffffff 42%, #f4fbf7 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
  overflow: hidden;
  box-sizing: border-box;
}

body.st48 .st48-list-hero::before {
  content: "";
  position: absolute;
  right: 0;
  top: -35%;
  width: min(18rem, 85%);
  height: min(11rem, 42vw);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 168, 92, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

body.st48 .st48-crumb {
  position: relative;
  z-index: 1;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
  margin: 0 0 0.65rem;
  padding: 0.2rem 0.55rem 0.2rem 0.35rem;
  width: fit-content;
  max-width: 100%;
  font-size: 0.8125rem;
  color: #5c5c61;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 999px;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
}

body.st48 .st48-crumb__home {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: #3a3a3e;
  font-weight: 500;
}

body.st48 .st48-crumb__home::before {
  content: "";
  display: inline-block;
  width: 0.4rem;
  height: 0.4rem;
  margin-right: 0.15rem;
  border-radius: 2px;
  background: linear-gradient(135deg, var(--st48-accent-bright), var(--st48-accent));
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.35) inset;
}

body.st48 .st48-crumb a:hover {
  color: var(--st48-accent);
}

body.st48 .st48-crumb__sep {
  opacity: 0.45;
  font-weight: 300;
}

body.st48 .st48-crumb__here {
  color: var(--st48-ink);
  font-weight: 600;
  letter-spacing: -0.02em;
}

body.st48 .st48-list-title-row {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 0.5rem;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

body.st48 .st48-list-head h1.st48-list-page__h1,
body.st48 .st48-list-head h1 {
  padding-left: 0;
  margin: 0;
  flex: 1 1 auto;
  min-width: 0;
  font-size: clamp(1.25rem, 3.8vw, 1.65rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.2;
  color: var(--st48-ink);
}

body.st48 .st48-list-head h1.st48-list-page__h1::before,
body.st48 .st48-list-head h1::before {
  display: none;
}

body.st48 .st48-list-title__badge {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.65rem;
  height: 2.65rem;
  border-radius: 0.75rem;
  color: #fff;
  background: linear-gradient(145deg, #14e078 0%, var(--st48-accent) 45%, #006b45 130%);
  box-shadow: 0 6px 18px rgba(0, 120, 70, 0.28), 0 0 0 1px rgba(255, 255, 255, 0.25) inset;
}

body.st48 .st48-list-title__badge svg {
  display: block;
}

body.st48 .st48-list-page__intro {
  position: relative;
  z-index: 1;
  margin: 0 0 0.85rem;
  padding: 0.55rem 0 0;
  border-top: 1px dashed rgba(0, 0, 0, 0.08);
  line-height: 1.65;
  max-width: 100%;
  box-sizing: border-box;
  font-size: 0.875rem;
  color: #5a5a5f !important;
}

body.st48 .st48-list-meta-bar {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.65rem;
  margin: 0;
  padding: 0.55rem 0.75rem;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  border-radius: var(--st48-radius-md);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.04);
}

body.st48 .st48-list-meta-bar__item {
  display: inline-flex;
  align-items: baseline;
  gap: 0.25rem;
  font-size: 0.8125rem;
  color: #6e6e73;
}

body.st48 .st48-list-meta-bar__k {
  font-weight: 500;
  color: #86868b;
}

body.st48 .st48-list-meta-bar__v {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--st48-ink);
  font-variant-numeric: tabular-nums;
}

body.st48 .st48-list-meta-bar__u {
  font-size: 0.75rem;
  color: #86868b;
}

body.st48 .st48-list-meta-bar__dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(0, 168, 92, 0.35);
}

body.st48 .st48-list-filters {
  padding: clamp(0.7rem, 1.4vw, 0.95rem) clamp(0.65rem, 2.2vw, 1.35rem) clamp(0.8rem, 1.6vw, 1.05rem);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  background: #fff;
  border-radius: 0 0 var(--st48-radius-lg) var(--st48-radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-top: none;
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.04);
}

/* 仅小屏 / 触摸：提示可横向滑动选择子分类与筛选项（与下方横滑区域一致） */
body.st48 .st48-filter-hint {
  display: none;
}

body.st48 .st48-filter-panel {
  margin: 0 0 0.75rem;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

body.st48 .st48-filter-row {
  display: flex;
  align-items: center;
  gap: 0.5rem 0.75rem;
  padding: 0.52rem 0;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.12);
}

body.st48 .st48-filter-row--last {
  border-bottom: 0;
  padding-bottom: 0.15rem;
}

body.st48 .st48-filter-row__lab {
  flex: 0 0 3rem;
  margin: 0;
  padding-right: 0.35rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #6e6e73;
  line-height: 1.35;
  text-align: right;
  box-sizing: border-box;
  align-self: center;
}

/* 外层：占满行剩余宽度；内层 __scroll 负责排标签（桌面换行 / 小屏由父横向滚动） */
body.st48 .st48-filter-row__body {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  align-items: center;
  overflow: visible;
  box-sizing: border-box;
}

body.st48 .st48-filter-row__scroll {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  align-content: center;
  gap: clamp(0.3rem, 0.6vw, 0.45rem) clamp(0.45rem, 1.1vw, 0.75rem);
  min-width: 0;
  width: 100%;
  box-sizing: border-box;
}

body.st48 .st48-filter-all,
body.st48 .st48-filter-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.28rem 0.55rem;
  border-radius: 0.4rem;
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.35;
  text-decoration: none;
  border: 1px solid transparent;
  color: #3a3a40;
  background: transparent;
  transition: color 0.16s ease, background 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease;
}

body.st48 .st48-filter-all:hover,
body.st48 .st48-filter-tag:hover {
  color: var(--st48-accent);
}

body.st48 .st48-filter-all.is-active,
body.st48 .st48-filter-tag.is-active {
  color: #fff !important;
  background: linear-gradient(135deg, #14e078, var(--st48-accent) 58%, #008f52);
  border-color: transparent;
  box-shadow: 0 3px 12px rgba(0, 140, 80, 0.28);
  font-weight: 600;
}

body.st48 .st48-filter-tag--zm {
  min-width: 1.65rem;
  padding-left: 0.35rem;
  padding-right: 0.35rem;
}

body.st48 .st48-sort-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem 0.85rem;
  padding-top: 0.15rem;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

body.st48 .st48-sort-row__label {
  flex: 0 0 auto;
  margin: 0;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #6e6e73;
  font-size: 0.75rem;
}

body.st48 .st48-sort-tabs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
  list-style: none;
  flex: 1 1 auto;
  min-width: 0;
}

body.st48 .st48-sort-tabs li {
  margin: 0;
  padding: 0;
}

body.st48 .st48-sort-tabs a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.35rem;
  padding: 0.4rem 1rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: #4a4a4f;
  font-size: 0.8125rem;
  font-weight: 500;
  background: linear-gradient(180deg, #fff 0%, #f6f7f9 100%);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.05);
  transition: color 0.18s ease, background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

body.st48 .st48-sort-tabs a:hover {
  color: var(--st48-accent);
  border-color: rgba(0, 168, 92, 0.35);
  box-shadow: 0 2px 8px rgba(0, 168, 92, 0.12);
}

body.st48 .st48-sort-tabs li.active a {
  color: #fff !important;
  border-color: transparent;
  background: linear-gradient(135deg, #14e078, var(--st48-accent) 55%, #008f52);
  box-shadow: 0 4px 16px rgba(0, 140, 80, 0.32);
  font-weight: 600;
}

@media (max-width: 35.99rem) {
  /* 小屏：贴边留白、主白卡片全宽无圆角、统计/排序纵向铺满，海报 3 列宫格 */
  body.st48 .fed-main-info > .fed-part-case {
    padding-left: max(0.5rem, env(safe-area-inset-left, 0px));
    padding-right: max(0.5rem, env(safe-area-inset-right, 0px));
  }

  body.st48 .fed-head-info .fed-part-case {
    padding-left: max(0.45rem, env(safe-area-inset-left, 0px));
    padding-right: max(0.45rem, env(safe-area-inset-right, 0px));
  }

  body.st48 .fed-part-layout {
    margin-left: 0;
    margin-right: 0;
    border-radius: 0;
    border-left: 0;
    border-right: 0;
  }

  body.st48 .fed-list-head {
    flex-direction: column;
    align-items: stretch;
    gap: 0.45rem;
  }

  body.st48 .fed-list-head .fed-part-tips {
    justify-content: flex-start;
    width: 100%;
  }

  body.st48 .st48-list-hero {
    padding: 0.75rem 0.6rem 0.95rem;
    border-radius: 0;
  }

  body.st48 .st48-list-hero::before {
    top: -28%;
    width: min(14rem, 78vw);
    height: min(9rem, 48vw);
  }

  body.st48 .st48-crumb {
    max-width: 100%;
    box-sizing: border-box;
  }

  body.st48 .st48-list-title-row {
    gap: 0.5rem;
  }

  body.st48 .st48-list-title__badge {
    width: 2.35rem;
    height: 2.35rem;
    border-radius: 0.65rem;
  }

  body.st48 .st48-list-head h1.st48-list-page__h1,
  body.st48 .st48-list-head h1 {
    font-size: clamp(1.05rem, 5vw, 1.35rem);
  }

  body.st48 .st48-list-page__intro {
    max-width: 100%;
    font-size: 0.8125rem;
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  body.st48 .st48-list-page__intro * {
    max-width: 100%;
    box-sizing: border-box;
  }

  body.st48 .st48-list-meta-bar {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.45rem 0.55rem;
  }

  body.st48 .st48-list-meta-bar__dot {
    display: none;
  }

  body.st48 .st48-list-meta-bar__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0.4rem 0.15rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    box-sizing: border-box;
  }

  body.st48 .st48-list-meta-bar__item:last-of-type {
    border-bottom: 0;
  }

  body.st48 .st48-list-meta-bar__v {
    font-size: 0.95rem;
  }

  body.st48 .st48-sort-row {
    flex-direction: column;
    align-items: stretch;
  }

  body.st48 .st48-sort-row__label {
    margin-bottom: 0.2rem;
  }

  body.st48 .st48-sort-tabs {
    flex-direction: column;
    width: 100%;
    justify-content: flex-start;
  }

  body.st48 .st48-sort-tabs li {
    width: 100%;
  }

  body.st48 .st48-sort-tabs a {
    width: 100%;
    box-sizing: border-box;
    justify-content: flex-start;
    padding-left: 0.85rem;
    padding-right: 0.85rem;
  }

  body.st48 .fed-part-layout.st48-list-page .fed-list-info {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding-left: 0.4rem;
    padding-right: 0.4rem;
    gap: 0.45rem 0.35rem;
  }

  body.st48 .st48-list-page__pager-wrap {
    padding-left: 0.35rem;
    padding-right: 0.35rem;
  }
}

/*
 * 小屏 / 触摸：左侧分类名 + 右侧单行横滑（width:0 + flex 技巧，避免 scrollWidth 算成整行宽导致不能滑）
 */
@media (max-width: 63.99rem), (hover: none) and (pointer: coarse) {
  body.st48 .st48-list-filters {
    padding: 0.65rem 0.55rem 0.8rem;
    border-radius: 0;
    border-left: 0;
    border-right: 0;
    overflow: visible;
  }

  body.st48 .st48-filter-hint {
    display: flex;
    align-items: flex-start;
    gap: 0.45rem;
    margin: 0 0 0.5rem;
    padding: 0.42rem 0.5rem;
    border-radius: var(--st48-radius-md);
    background: rgba(0, 168, 92, 0.09);
    border: 1px solid rgba(0, 168, 92, 0.22);
    color: #5c5c61;
    font-size: 0.75rem;
    line-height: 1.45;
    box-sizing: border-box;
  }

  body.st48 .st48-filter-hint__ico {
    flex-shrink: 0;
    margin-top: 0.1rem;
    color: var(--st48-accent);
    display: inline-flex;
    align-items: center;
  }

  body.st48 .st48-filter-hint__ico svg {
    display: block;
  }

  body.st48 .st48-filter-hint strong {
    color: var(--st48-accent);
    font-weight: 700;
  }

  body.st48 .st48-filter-panel {
    margin-bottom: 0.55rem;
    overflow: visible;
  }

  body.st48 .st48-filter-row {
    flex-direction: row;
    align-items: center;
    gap: 0.45rem 0.55rem;
    padding: 0.42rem 0;
    min-width: 0;
    width: 100%;
    max-width: 100%;
  }

  body.st48 .st48-filter-row__lab {
    flex: 0 0 3rem;
    margin: 0;
    padding-right: 0.35rem;
    text-align: right;
    align-self: center;
  }

  /* width:0 强制在 flex 行内占「剩余宽度」，内部才能出现横向 overflow */
  body.st48 .st48-filter-row__body {
    flex: 1 1 0%;
    width: 0;
    min-width: 0;
    max-width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    position: relative;
    z-index: 1;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 0.35rem;
    margin-bottom: -0.1rem;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    touch-action: pan-x;
    scrollbar-width: thin;
  }

  body.st48 .st48-filter-row__body::-webkit-scrollbar {
    height: 4px;
  }

  body.st48 .st48-filter-row__body::-webkit-scrollbar-thumb {
    background: rgba(0, 168, 92, 0.35);
    border-radius: 99px;
  }

  body.st48 .st48-filter-row__scroll {
    display: flex;
    flex: 0 0 auto;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 0.32rem 0.42rem;
    width: max-content;
    min-width: min-content;
    max-width: none;
    padding-inline-end: max(1rem, env(safe-area-inset-right, 0px));
    box-sizing: border-box;
  }

  body.st48 .st48-filter-all,
  body.st48 .st48-filter-tag {
    flex: 0 0 auto;
    flex-shrink: 0;
    white-space: nowrap;
  }

  body.st48 .st48-filter-tag--zm {
    min-width: 1.65rem;
    padding-left: 0.35rem;
    padding-right: 0.35rem;
  }
}

body.st48 .st48-list-page__pager-wrap {
  border-top: 1px solid var(--st48-line);
}

body.st48 .st48-pager__meta {
  margin: 0.85rem 0 0.5rem;
}

body.st48 .st48-pager-outer .stui-page {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.35rem 0.45rem;
  list-style: none;
  margin: 0;
  padding: 0 0 0.65rem;
}

body.st48 .st48-pager-outer .stui-page li {
  margin: 0;
  padding: 0;
  list-style: none;
}

body.st48 .st48-pager-outer .stui-page a,
body.st48 .st48-pager-outer .stui-page span,
body.st48 .st48-pager-outer .stui-page strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.25rem;
  min-height: 2.25rem;
  padding: 0 0.5rem;
  border-radius: 0.35rem;
  font-size: 0.8125rem;
  border: 1px solid var(--st48-line);
  color: var(--st48-ink);
  background: #fff;
}

body.st48 .st48-pager-outer .stui-page a:hover {
  border-color: rgba(0, 168, 92, 0.35);
  color: var(--st48-accent);
}

/* 页脚 */
body.st48 .fed-foot-info {
  padding: 1.5rem 0 2.25rem;
  margin-top: 0.75rem;
  color: var(--st48-ink-muted);
  border-top: 1px solid var(--st48-line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.35) 0%, transparent 100%);
}

body.st48 .fed-foot-info .fed-part-case {
  display: block;
}

body.st48 .fed-foot-info p {
  margin: 0.5rem 0;
  line-height: 1.65;
}

body.st48 :focus-visible {
  outline: 2px solid var(--st48-accent);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  body.st48 .fed-list-item,
  body.st48 .fed-list-pics,
  body.st48 .fed-list-pics > img,
  body.st48 .fed-list-play,
  body.st48 .fed-part-layout,
  body.st48 .fed-navs-form,
  body.st48 .fed-navs-logo,
  body.st48 .fed-navs-logo__mark,
  body.st48 .fed-navs-title,
  body.st48 .st48-nav-ico-wrap {
    transition: none !important;
  }

  body.st48 .fed-list-item:not(.st48-empty-li):hover {
    transform: none;
  }

  body.st48 .fed-list-item:not(.st48-empty-li):hover .fed-list-pics > img {
    transform: none;
  }

  body.st48 .fed-part-layout:hover {
    box-shadow: var(--st48-elev);
  }

  body.st48 .fed-navs-logo:hover .fed-navs-logo__mark {
    transform: none;
  }

  body.st48 .fed-navs-title:hover .st48-nav-ico-wrap {
    transform: none;
  }

  body.st48 .st48-logo:hover,
  body.st48 .st48-logo:hover .st48-logo__ico,
  body.st48 .st48-card:hover .st48-card__pic img,
  body.st48 .nj-play-v2__big-play {
    transition: none !important;
    transform: none !important;
  }
}
