:root {
  --green: #16a34a;
  --green-dark: #15803d;
  --green-soft: #ecfdf5;
  --link: #1a5fb4;
  --link-hover: #0c447c;
  --ink: #16251d;
  --text: #25312a;
  --muted: #647067;
  --faint: #9aa6a0;
  --line: #dfe7e2;
  --soft-line: #edf2ef;
  --bg: #f6f8fa;
  --shadow: 0 12px 30px rgba(22, 37, 29, .08);
  --radius: 8px;
  --container: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  min-width: 0;
  color: var(--text);
  background: var(--bg);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

h1,
h2,
h3,
p,
a,
button {
  overflow-wrap: break-word;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

button,
input,
select {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.site-top {
  background: #fff;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
}

.top-inner {
  height: 74px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
}

.top-inner > *,
.layout > *,
.detail-hero > *,
.software-card > *,
.list-item > *,
.download-row > *,
.rank-list li > *,
.cover-card > * {
  min-width: 0;
}

.logo img {
  width: 170px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  min-width: 0;
}

.main-nav a {
  padding: 10px 12px;
  color: var(--ink);
  border-radius: var(--radius);
  font-weight: 600;
  white-space: nowrap;
}

.main-nav a:hover,
.main-nav a.is-active {
  color: var(--green-dark);
  background: var(--green-soft);
}

.top-search {
  width: 300px;
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  overflow: hidden;
}

.top-search input {
  min-width: 0;
  flex: 1;
  border: 0;
  outline: 0;
  padding: 10px 0 10px 16px;
}

.top-search button {
  border: 0;
  color: #fff;
  background: var(--green);
  padding: 10px 16px;
  cursor: pointer;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--radius);
  color: var(--ink);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  padding: 28px 0 20px;
}

.hero-panel {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 28px;
  align-items: center;
  padding: 30px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green-dark);
  font-weight: 700;
  font-size: 14px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 14px;
  color: var(--ink);
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.18;
  letter-spacing: 0;
}

.hero p {
  color: var(--muted);
  font-size: 17px;
}

.hero-search {
  display: flex;
  max-width: 680px;
  margin-top: 22px;
  border: 2px solid #bbf7d0;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
}

.hero-search input {
  min-width: 0;
  flex: 1;
  border: 0;
  outline: 0;
  padding: 15px 18px;
}

.hero-search button,
.btn {
  border: 0;
  border-radius: var(--radius);
  color: #fff;
  background: var(--green);
  font-weight: 700;
  cursor: pointer;
}

.hero-search button {
  padding: 0 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
}

.btn:hover,
.hero-search button:hover {
  background: var(--green-dark);
}

.btn.secondary {
  color: var(--green-dark);
  background: var(--green-soft);
  border: 1px solid #bbf7d0;
}

.btn.gray {
  color: var(--text);
  background: #f3f4f6;
}

.hot-words {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.hot-words a,
.tag {
  color: var(--muted);
  font-size: 13px;
  padding: 5px 10px;
  border-radius: 999px;
  background: #f2f6f3;
}

.hero-media {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--soft-line);
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  margin-top: 18px;
}

.quick-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.quick-card img {
  width: 40px;
  height: 40px;
}

.quick-card strong {
  display: block;
  color: var(--ink);
  line-height: 1.25;
}

.quick-card span {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.section {
  margin: 24px 0;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.section-title {
  margin: 0;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.25;
}

.section-desc {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.more-link {
  color: var(--green-dark);
  font-weight: 700;
  white-space: nowrap;
}

.layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 22px;
}

.layout.reverse {
  grid-template-columns: 280px minmax(0, 1fr);
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.card.pad {
  padding: 18px;
}

.software-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.software-card {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 12px;
  padding: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.software-card img {
  width: 58px;
  height: 58px;
}

.software-card h3 {
  margin: 0 0 4px;
  color: var(--ink);
  font-size: 16px;
}

.software-card p,
.list-item p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.meta-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 9px;
  color: var(--muted);
  font-size: 12px;
}

.rank-list,
.article-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.rank-list li {
  display: grid;
  grid-template-columns: 28px 42px 1fr;
  gap: 10px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--soft-line);
}

.rank-list li:last-child {
  border-bottom: 0;
}

.rank-num {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  color: var(--muted);
  background: #f1f5f9;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
}

.rank-num.top {
  color: #fff;
  background: var(--green);
}

.rank-list img {
  width: 42px;
  height: 42px;
}

.rank-list a {
  display: block;
  color: var(--ink);
  font-weight: 500;
  line-height: 1.35;
}

.rank-list small {
  color: var(--muted);
}

.channel-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.channel-card {
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.channel-card h3 {
  margin-bottom: 10px;
  color: var(--ink);
}

.channel-card a {
  display: inline-flex;
  margin: 0 8px 8px 0;
  color: var(--muted);
  font-size: 14px;
}

.article-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--soft-line);
}

.article-list li:last-child {
  border-bottom: 0;
}

.article-list a {
  color: var(--ink);
  font-weight: 700;
}

.article-list span {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

.crumbs {
  width: min(var(--container), calc(100% - 32px));
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 14px;
}

.crumbs::before {
  content: "当前位置：";
  color: var(--faint);
}

.crumbs a {
  color: var(--green-dark);
}

.page-title {
  margin: 18px 0;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.page-title h1 {
  margin-bottom: 8px;
  font-size: 30px;
}

.filter-bar {
  display: grid;
  gap: 12px;
  margin-bottom: 16px;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.filter-row strong {
  color: var(--ink);
  margin-right: 4px;
}

.filter-row button,
.sort-tabs button,
.search-tabs button {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--muted);
  border-radius: 999px;
  padding: 6px 12px;
  cursor: pointer;
}

.filter-row button.is-active,
.filter-row .tag.is-active,
.sort-tabs button.is-active,
.search-tabs button.is-active {
  color: var(--green-dark);
  border-color: #bbf7d0;
  background: var(--green-soft);
}

.list-panel {
  padding: 0 18px;
}

.list-item {
  display: grid;
  grid-template-columns: 78px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--soft-line);
}

.list-item:last-child {
  border-bottom: 0;
}

.list-item img {
  width: 78px;
  height: 78px;
}

.list-item h2 {
  margin: 0 0 4px;
  color: var(--ink);
  font-size: 19px;
}

.pager {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.pager a {
  min-width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--muted);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.pager a.is-active {
  color: #fff;
  background: var(--green);
  border-color: var(--green);
}

.side-box + .side-box {
  margin-top: 16px;
}

.side-box h2,
.side-box h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 18px;
}

.card.pad > h2 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 18px;
}

.cat-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.cat-links a {
  padding: 8px 10px;
  color: var(--muted);
  background: #f7faf8;
  border-radius: var(--radius);
  font-size: 14px;
}

.cat-links a.is-active {
  color: var(--green-dark);
  background: var(--green-soft);
  font-weight: 700;
}

.detail-hero {
  display: grid;
  grid-template-columns: 96px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.detail-hero .app-icon {
  width: 96px;
  height: 96px;
}

.detail-hero h1 {
  margin-bottom: 6px;
  font-size: 31px;
}

.attr-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 0;
}

.attr-grid div {
  padding: 7px 14px;
  background: #f8faf9;
  border-radius: var(--radius);
  color: var(--muted);
  font-size: 13px;
}

.attr-grid strong {
  display: block;
  color: var(--ink);
  font-size: 14px;
}

.download-stack {
  display: grid;
  gap: 10px;
  min-width: 190px;
}

.download-stack .btn {
  text-align: center;
}

.download-trust {
  display: grid;
  gap: 3px;
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.download-trust strong {
  color: var(--green-dark);
}

.anchor-tabs {
  display: flex;
  gap: 8px;
  position: sticky;
  top: 75px;
  z-index: 20;
  padding: 10px;
  margin: 0 0 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow-x: auto;
}

.anchor-tabs a {
  white-space: nowrap;
  padding: 8px 12px;
  color: var(--muted);
  border-radius: var(--radius);
}

.anchor-tabs a:hover {
  color: var(--green-dark);
  background: var(--green-soft);
}

.anchor-tabs a.is-active {
  color: #fff;
  background: var(--green);
  font-weight: 600;
}

.content-block {
  margin-bottom: 16px;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.content-block h2 {
  color: var(--ink);
  font-size: 24px;
}

.section-anchor {
  display: block;
  height: 1px;
  scroll-margin-top: 96px;
}

.article-body {
  color: #26332b;
  font-size: 16px;
  line-height: 1.75;
}

.article-body h2 {
  margin-top: 30px;
}

.article-body p {
  margin-bottom: 16px;
}

.article-body img {
  margin: 18px 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.download-box {
  display: grid;
  gap: 10px;
}

.download-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 14px;
  background: #f8faf9;
  border-radius: var(--radius);
}

.notice {
  padding: 12px 14px;
  color: #7c4a03;
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: var(--radius);
  font-size: 14px;
}

.cover-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.cover-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.cover-card .body {
  padding: 16px;
}

.cover-card h3 {
  margin-bottom: 6px;
  color: var(--ink);
}

.special-head {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 22px;
  align-items: center;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.special-head img {
  border-radius: var(--radius);
}

.search-hero {
  max-width: 860px;
  margin: 42px auto 26px;
  padding: 0 16px;
  text-align: center;
}

.search-hero .logo img {
  margin: 0 auto 22px;
}

.search-hero h1 {
  margin-bottom: 14px;
  font-size: 30px;
}

.search-box-large {
  display: flex;
  border: 2px solid #bbf7d0;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
}

.search-box-large input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: 0;
  padding: 18px 20px;
}

.search-box-large button {
  border: 0;
  padding: 0 28px;
  color: #fff;
  background: var(--green);
  font-weight: 700;
}

.search-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0;
}

.site-footer {
  margin-top: 0;
  padding: 28px 0;
  color: #d5ded8;
  background: #16251d;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 22px;
}

.site-footer h3 {
  margin-bottom: 10px;
  color: #fff;
}

.site-footer a {
  display: block;
  color: #d5ded8;
  margin: 6px 0;
}

.copyright {
  margin-top: 20px;
  padding-top: 16px;
  color: #a8b8ae;
  border-top: 1px solid rgba(255,255,255,.12);
  font-size: 13px;
}

.mobile-download {
  display: none;
}

@media (max-width: 1100px) {
  .top-inner {
    grid-template-columns: auto minmax(0, 1fr) 42px;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    display: none;
    grid-column: 1 / -1;
    padding: 0 0 14px;
    flex-wrap: wrap;
  }

  .main-nav.is-open {
    display: flex;
  }

  .top-search {
    width: min(360px, 100%);
    justify-self: end;
  }

  .top-inner {
    height: auto;
    min-height: 74px;
    padding: 10px 0;
  }

  .quick-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .software-grid,
  .channel-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .layout,
  .layout.reverse,
  .special-head {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  body {
    font-size: 15px;
  }

  .container {
    width: min(100% - 20px, var(--container));
  }

  .top-inner {
    grid-template-columns: 1fr 42px;
    gap: 10px;
  }

  .logo img {
    width: 148px;
  }

  .top-search {
    grid-column: 1 / -1;
    width: 100%;
    order: 3;
  }

  .hero-panel {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .hero-search,
  .search-box-large {
    display: grid;
  }

  .hero-search button,
  .search-box-large button {
    min-height: 46px;
  }

  .quick-grid,
  .software-grid,
  .channel-grid,
  .cover-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section-head {
    align-items: start;
    flex-direction: column;
  }

  .list-item {
    grid-template-columns: 64px 1fr;
  }

  .list-item .btn {
    grid-column: 2;
    width: fit-content;
  }

  .detail-hero {
    grid-template-columns: 74px 1fr;
  }

  .detail-hero .app-icon {
    width: 74px;
    height: 74px;
  }

  .detail-hero .download-stack {
    grid-column: 1 / -1;
  }

  .attr-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .anchor-tabs {
    top: 0;
  }

  .mobile-download {
    display: flex;
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: 10px;
    z-index: 60;
    box-shadow: var(--shadow);
  }
}

@media (max-width: 520px) {
  .hero-panel,
  .content-block,
  .page-title,
  .special-head,
  .card.pad {
    padding: 16px;
  }

  .detail-hero {
    grid-template-columns: 64px minmax(0, 1fr);
    padding: 16px;
  }

  .detail-hero .app-icon {
    width: 64px;
    height: 64px;
  }

  .detail-hero h1 {
    font-size: 24px;
  }

  .attr-grid,
  .download-row {
    grid-template-columns: 1fr;
  }

  .download-row .btn,
  .pager a {
    width: 100%;
  }

  .pager {
    flex-wrap: wrap;
  }

  .list-panel {
    padding: 0 12px;
  }
}

/* ============================================================
   XZJI 2026 · 下载面板 / 正版购买 / 报错反馈 / 多语言 组件
   说明：仅用 CSS 渐变、边框、阴影实现装饰，不使用背景图片。
   ============================================================ */

/* ---------- 多语言切换 xz-lang-switcher ---------- */
.xz-lang-switcher {
  position: relative;
}

.xz-lang-switcher__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 42px;
  padding: 0 14px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  white-space: nowrap;
}

.xz-lang-switcher__btn:hover {
  color: var(--green-dark);
  border-color: #bbf7d0;
  background: var(--green-soft);
}

.xz-lang-switcher__globe {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  background: var(--green);
  border-radius: 6px;
  letter-spacing: -1px;
}

.xz-lang-switcher__label {
  font-weight: 600;
  font-size: 14px;
}

.xz-lang-switcher__menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 80;
  min-width: 168px;
  margin: 0;
  padding: 6px;
  list-style: none;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.xz-lang-switcher__menu a {
  display: block;
  padding: 9px 12px;
  color: var(--text);
  border-radius: 6px;
  font-size: 14px;
}

.xz-lang-switcher__menu a:hover {
  color: var(--green-dark);
  background: var(--green-soft);
}

/* ---------- 下载按钮 / 面板 xz-download-panel ---------- */
.xz-download-panel {
  display: grid;
  gap: 10px;
  min-width: 200px;
}

.xz-dl-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 8px 18px;
  border: 0;
  border-radius: var(--radius);
  color: #fff;
  background: var(--green);
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  cursor: pointer;
  transition: background .15s ease;
}

.xz-dl-btn:hover {
  background: var(--green-dark);
}

.xz-dl-btn__t {
  font-size: 16px;
}

.xz-dl-btn__s {
  font-size: 12px;
  font-weight: 500;
  opacity: .9;
}

/* 本地下载：强调主色 */
.xz-dl-btn--local {
  background: var(--green);
}

/* 网盘下载：次按钮 */
.xz-dl-btn--netdisk {
  color: var(--green-dark);
  background: var(--green-soft);
  border: 1px solid #bbf7d0;
}

.xz-dl-btn--netdisk:hover {
  background: #d6f5e3;
}

/* 不可用状态：灰色、禁用光标、不可点击 */
.xz-dl-btn.is-disabled {
  color: #9aa6a0;
  background: #eef1ef;
  border: 1px solid var(--soft-line);
  cursor: not-allowed;
  pointer-events: none;
}

.xz-dl-empty {
  margin: 2px 0 0;
  padding: 10px 12px;
  color: #7c4a03;
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: var(--radius);
  font-size: 13px;
}

/* 报错反馈按钮（辅助操作）：描边、低视觉权重 */
.xz-report-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 8px 16px;
  color: #b91c1c;
  background: #fef2f2;
  border: 1px dashed #fca5a5;
  border-radius: var(--radius);
  font-weight: 600;
  cursor: pointer;
  transition: background .16s, border-color .16s;
}

.xz-report-btn:hover {
  background: #fee2e2;
  border-color: #f87171;
}

/* 下载地址区列表 */
.xz-download-list {
  display: grid;
  gap: 10px;
}

.xz-dl-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
  background: #f8faf9;
  border: 1px solid var(--soft-line);
  border-radius: var(--radius);
}

.xz-dl-row.is-active {
  background: var(--green-soft);
  border-color: #bbf7d0;
}

.xz-dl-row.is-off {
  opacity: .85;
}

.xz-dl-row__info strong {
  display: block;
  color: var(--ink);
  font-size: 15px;
}

.xz-dl-row__info span {
  color: var(--muted);
  font-size: 13px;
}

.xz-dl-row .xz-dl-btn {
  flex-direction: row;
  min-height: 44px;
  min-width: 132px;
}

.xz-dl-row--netdisk {
  background: #f7fdf9;
  border-color: #d7f5df;
}

.xz-netdisk-title {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.xz-netdisk-icon {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: #4b5563;
  font-size: 13px;
  font-style: normal;
  font-weight: 800;
  line-height: 1;
}

.xz-netdisk-icon::before {
  content: attr(data-icon);
}

.xz-netdisk-icon.is-baidu,
.xz-netdisk-icon.netdisk-baidu { background: #2563eb; }
.xz-netdisk-icon.is-aliyun,
.xz-netdisk-icon.netdisk-aliyun,
.xz-netdisk-icon.netdisk-alipan { background: #f97316; }
.xz-netdisk-icon.is-quark,
.xz-netdisk-icon.netdisk-quark { background: #06b6d4; }
.xz-netdisk-icon.is-xunlei,
.xz-netdisk-icon.netdisk-xunlei { background: #6366f1; }
.xz-netdisk-icon.is-lanzou,
.xz-netdisk-icon.netdisk-lanzou,
.xz-netdisk-icon.netdisk-lanzous { background: #0ea5e9; }
.xz-netdisk-icon.is-tianyi,
.xz-netdisk-icon.netdisk-tianyi { background: #dc2626; }
.xz-netdisk-icon.is-weiyun,
.xz-netdisk-icon.netdisk-weiyun { background: #10b981; }
.xz-netdisk-icon.is-123pan,
.xz-netdisk-icon.netdisk-123,
.xz-netdisk-icon.netdisk-123pan { background: #7c3aed; font-size: 11px; }

.xz-dl-tips {
  display: grid;
  gap: 6px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 13px;
}

.xz-dl-tip strong {
  color: var(--green-dark);
}

/* 文本型触发按钮（嵌在提示文字里） */
.xz-link-btn {
  padding: 0 2px;
  color: #b91c1c;
  background: none;
  border: 0;
  font: inherit;
  font-weight: 700;
  text-decoration: underline;
  cursor: pointer;
}

/* ---------- 正版购买推荐栏 xz-buy-box ---------- */
.xz-buy-box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  margin-top: 14px;
  padding: 18px;
  background: linear-gradient(135deg, #fffdf5, #fff8e8);
  border: 1px solid #f3e2b3;
  border-radius: var(--radius);
}

.xz-buy-box__tag {
  display: inline-block;
  margin-bottom: 8px;
  padding: 3px 10px;
  color: #92600b;
  background: #fdecc4;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.xz-buy-box__title {
  margin: 0 0 6px;
  color: var(--ink);
  font-size: 18px;
}

.xz-buy-box__badge {
  margin-left: 8px;
  padding: 2px 8px;
  color: var(--green-dark);
  background: var(--green-soft);
  border: 1px solid #bbf7d0;
  border-radius: 999px;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  vertical-align: middle;
}

.xz-buy-box__desc {
  margin: 0;
  color: #6b5a36;
  font-size: 14px;
}

.xz-buy-box__price {
  margin: 8px 0 0;
  color: #b45309;
  font-size: 16px;
  font-weight: 700;
}

.xz-buy-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 10px 26px;
  color: #5b3b06;
  background: linear-gradient(135deg, #ffd768, #f5b302);
  border-radius: var(--radius);
  font-weight: 800;
  white-space: nowrap;
}

.xz-buy-btn:hover {
  filter: brightness(.96);
}

.xz-buy-box__none {
  color: #a98b4d;
  font-size: 14px;
}

/* ---------- 报错反馈弹窗 xz-report-modal ---------- */
.xz-report-modal[hidden] {
  display: none;
}

.xz-report-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 16px;
}

.xz-report-modal__mask {
  position: absolute;
  inset: 0;
  background: rgba(15, 25, 20, .55);
}

.xz-report-modal__dialog {
  position: relative;
  width: min(480px, 100%);
  max-height: 90vh;
  overflow-y: auto;
  padding: 24px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 24px 60px rgba(15, 25, 20, .35);
}

.xz-report-modal__x {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  color: var(--muted);
  background: #f3f4f6;
  border: 0;
  border-radius: 8px;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}

.xz-report-modal__x:hover {
  color: #b91c1c;
  background: #fef2f2;
}

.xz-report-modal h3 {
  margin: 0 0 6px;
  color: var(--ink);
  font-size: 20px;
}

.xz-report-modal__sub {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 14px;
}

.xz-report-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 14px;
  padding: 10px 12px;
  color: var(--muted);
  background: #f7faf8;
  border-radius: var(--radius);
  font-size: 13px;
}

.xz-report-meta b {
  color: var(--ink);
}

.xz-report-label {
  display: block;
  margin: 12px 0 8px;
  color: var(--ink);
  font-weight: 700;
  font-size: 14px;
}

.xz-report-label i {
  color: #dc2626;
  font-style: normal;
}

.xz-report-types {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.xz-report-types label {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 9px 10px;
  background: #f8faf9;
  border: 1px solid var(--soft-line);
  border-radius: var(--radius);
  font-size: 14px;
  cursor: pointer;
}

.xz-report-types input {
  accent-color: var(--green);
}

.xz-report-form textarea,
.xz-report-form input[type="text"] {
  width: 100%;
  padding: 10px 12px;
  color: var(--text);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  outline: 0;
  resize: vertical;
}

.xz-report-form textarea:focus,
.xz-report-form input[type="text"]:focus {
  border-color: var(--green);
}

.xz-report-msg {
  margin: 12px 0 0;
  padding: 10px 12px;
  border-radius: var(--radius);
  font-size: 14px;
}

.xz-report-msg.is-ok {
  color: var(--green-dark);
  background: var(--green-soft);
  border: 1px solid #bbf7d0;
}

.xz-report-msg.is-err {
  color: #b91c1c;
  background: #fef2f2;
  border: 1px solid #fca5a5;
}

.xz-report-actions {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.xz-report-actions .btn {
  flex: 1;
}

/* ---------- 响应式：组件 ---------- */
@media (max-width: 1100px) {
  .xz-lang-switcher {
    order: 2;
  }

  .xz-lang-switcher__menu {
    right: auto;
    left: 0;
  }
}

@media (max-width: 760px) {
  .xz-buy-box {
    grid-template-columns: 1fr;
  }

  .xz-buy-btn {
    width: 100%;
  }

  .xz-report-types {
    grid-template-columns: 1fr;
  }

  /* 移动端下载按钮加大点击区域 */
  .xz-dl-btn {
    min-height: 54px;
  }

  .xz-dl-row {
    grid-template-columns: 1fr;
  }

  .xz-dl-row .xz-dl-btn {
    width: 100%;
  }
}

/* ============================================================
   XZJI 2026 · Wrapper 页面体系
   适用于：文章列表(list)、单机游戏频道/列表/详情(category_game/list_game/show_game)、
   安卓频道/列表/详情(category_android*/list_android/show_android)、专题列表/分类/子类、TAG、装机必备。
   这些模板统一用 <div class="wrapper"> 包裹，故全部样式都 scope 在 .wrapper 下，
   既能复用与下载皮肤一致的设计变量，又不会污染已有的 .container 下载页样式。
   ============================================================ */
.wrapper {
  width: min(var(--container), calc(100% - 32px));
  margin: 18px auto 0;
}

.wrapper .mb20 { margin-bottom: 20px; }
.wrapper .mt20 { margin-top: 20px; }
.crumbs .sep { margin: 0 6px; color: var(--faint); }

/* SVG 线性图标统一描边 */
.wrapper .svg-i { display: inline-grid; place-items: center; width: 22px; height: 22px; }
.wrapper .svg-i svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.wrapper .hide { display: none !important; }

/* ---------- 频道横幅 hero / inner ---------- */
.wrapper .hero { padding: 0; margin-bottom: 20px; }
.wrapper .hero .inner {
  padding: 30px;
  background: linear-gradient(135deg, var(--green-soft), #fff);
  border: 1px solid var(--line);
  border-radius: 14px;
}
.wrapper .hero .inner h1 { margin: 0 0 10px; color: var(--ink); font-size: clamp(24px, 3vw, 34px); }
.wrapper .hero .inner p { margin: 0; color: var(--muted); }

/* ---------- 卡片容器 / 模块标题 ---------- */
.wrapper .down-list-box,
.wrapper .mod-box,
.wrapper .cat-panel,
.wrapper .widget,
.wrapper .detail-block {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.wrapper .down-list-box { padding: 22px; }
.wrapper .mod-box { padding: 20px; margin-bottom: 20px; }
.wrapper .cat-panel { padding: 16px; margin-bottom: 16px; }
.wrapper .widget { padding: 16px; margin-bottom: 16px; }
.wrapper .detail-block { padding: 22px; margin-bottom: 16px; }

.wrapper .down-list-box > .ph { margin: 0 0 6px; color: var(--ink); font-size: 24px; line-height: 1.25; }
.wrapper .intro { margin: 0 0 18px; color: var(--muted); font-size: 14px; }
.wrapper .cat-panel .ph,
.wrapper .widget-hd { display: flex; align-items: center; justify-content: space-between; margin: 0 0 12px; color: var(--ink); font-size: 16px; font-weight: 700; }

.wrapper .mod-box-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 12px; margin-bottom: 16px; }
.wrapper .mod-box-head .title { margin: 0; color: var(--ink); font-size: 20px; }
.wrapper .mod-box-head .more { color: var(--green-dark); font-weight: 700; font-size: 14px; white-space: nowrap; }

/* ---------- 分类链接 clist ---------- */
.wrapper .clist { display: flex; flex-wrap: wrap; gap: 8px; }
.wrapper .clist a { padding: 6px 12px; color: var(--muted); background: #f7faf8; border: 1px solid var(--soft-line); border-radius: 999px; font-size: 14px; }
.wrapper .clist a:hover,
.wrapper .clist a.is-active { color: var(--green-dark); background: var(--green-soft); border-color: #bbf7d0; font-weight: 700; }

/* ---------- 游戏海报网格 ---------- */
.wrapper .game-grid,
.wrapper .poster-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; margin: 0; padding: 0; list-style: none; }
.wrapper .game-card a,
.wrapper .poster-card { position: relative; display: block; }
.wrapper .game-card .pic,
.wrapper .poster-card .pic { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; border-radius: var(--radius); border: 1px solid var(--soft-line); }
.wrapper .game-card .t,
.wrapper .poster-card .t { display: block; margin-top: 8px; color: var(--ink); font-size: 14px; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.wrapper .poster-card .a { display: flex; justify-content: space-between; margin-top: 4px; color: var(--muted); font-size: 12px; }
.wrapper .game-card .mask {
  position: absolute; left: 0; right: 0; top: 0; bottom: 0;
  display: flex; flex-direction: column; justify-content: flex-end; gap: 4px;
  padding: 12px; border-radius: var(--radius);
  color: #fff; font-size: 12px;
  background: linear-gradient(transparent 35%, rgba(10, 20, 14, .82));
  opacity: 0; transition: opacity .2s ease;
}
.wrapper .game-card a:hover .mask { opacity: 1; }
.wrapper .game-card .mask .btn { margin-top: 6px; min-height: 34px; padding: 6px 10px; font-size: 13px; }

/* ---------- 安卓应用图标网格 ---------- */
.wrapper .app-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin: 0; padding: 0; list-style: none; }
.wrapper .app-card a { display: flex; flex-direction: column; align-items: center; gap: 8px; height: 100%; padding: 18px 12px; text-align: center; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
.wrapper .app-card a:hover { border-color: #bbf7d0; box-shadow: var(--shadow); }
.wrapper .app-card .ico { width: 60px; height: 60px; border-radius: 14px; }
.wrapper .app-card .t { color: var(--ink); font-size: 14px; font-weight: 600; }
.wrapper .app-card .meta { color: var(--muted); font-size: 12px; }
.wrapper .app-card .btn { min-height: 34px; padding: 6px 16px; font-size: 13px; }

/* ---------- 专题封面网格 ---------- */
.wrapper .topic-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 0; padding: 0; list-style: none; }
.wrapper .topic-card { display: block; height: 100%; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.wrapper .topic-card:hover { box-shadow: var(--shadow); }
.wrapper .topic-card .pic { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.wrapper .topic-card .body { padding: 14px; }
.wrapper .topic-card .body h3 { margin: 0 0 6px; color: var(--ink); font-size: 16px; }
.wrapper .topic-card .body p { margin: 0; color: var(--muted); font-size: 13px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

/* ---------- 文章/资讯列表 ---------- */
.wrapper .news-list { margin: 0; padding: 0; list-style: none; }
.wrapper .news-list li { display: flex; gap: 12px; align-items: center; padding: 12px 0; border-bottom: 1px solid var(--soft-line); }
.wrapper .news-list li:last-child { border-bottom: 0; }
.wrapper .news-list .date { color: var(--muted); font-size: 13px; white-space: nowrap; }
.wrapper .news-list a { color: var(--ink); font-weight: 600; }
.wrapper .news-list a:hover { color: var(--green-dark); }

/* ---------- 侧栏排行 widget（覆盖下载皮肤的 .rank-list 网格） ---------- */
.wrapper .widget .rank-list { margin: 0; padding: 0; list-style: none; }
.wrapper .widget .rank-list li { display: flex; align-items: center; gap: 10px; padding: 8px 0; border-bottom: 1px solid var(--soft-line); }
.wrapper .widget .rank-list li:last-child { border-bottom: 0; }
.wrapper .widget .rank-list .num { flex: none; width: 22px; height: 22px; display: grid; place-items: center; border-radius: 6px; background: #f1f5f9; color: var(--muted); font-size: 12px; font-weight: 700; }
.wrapper .widget .rank-list .num.n1,
.wrapper .widget .rank-list .num.n2,
.wrapper .widget .rank-list .num.n3 { background: var(--green); color: #fff; }
.wrapper .widget .rank-list .ico { flex: none; width: 36px; height: 36px; border-radius: 8px; }
.wrapper .widget .rank-list .meta { min-width: 0; display: flex; flex-direction: column; }
.wrapper .widget .rank-list .meta .t { color: var(--ink); font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.wrapper .widget .rank-list .meta .a { color: var(--muted); font-size: 12px; }

/* ---------- 分页 pagination ---------- */
.wrapper .pagination { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-top: 20px; }
.wrapper .pagination a,
.wrapper .pagination span,
.wrapper .pagination b { min-width: 38px; height: 38px; display: inline-grid; place-items: center; padding: 0 12px; color: var(--muted); background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
.wrapper .pagination a:hover { color: var(--green-dark); border-color: #bbf7d0; }
.wrapper .pagination .current,
.wrapper .pagination b,
.wrapper .pagination strong,
.wrapper .pagination span.current { color: #fff; background: var(--green); border-color: var(--green); }

/* ---------- 详情页头部（游戏/安卓） ---------- */
.wrapper .detail-hero { padding: 22px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
.wrapper .clearfix::after { content: ""; display: table; clear: both; }
.wrapper .detail-hero .game-cover { float: left; width: 184px; height: 240px; margin: 0 22px 12px 0; object-fit: cover; border-radius: var(--radius); border: 1px solid var(--soft-line); }
.wrapper .detail-hero h1 { margin: 0 0 6px; color: var(--ink); font-size: clamp(22px, 2.6vw, 30px); }
.wrapper .detail-hero .sub { margin: 0 0 14px; color: var(--muted); }
.wrapper .detail-hero .head { display: flex; align-items: center; gap: 16px; }
.wrapper .detail-hero .head .ico { width: 96px; height: 96px; border-radius: 18px; flex: none; }
.wrapper .detail-hero .head .meta { min-width: 0; }
.wrapper .detail-hero .qrcode { text-align: center; }
.wrapper .detail-hero .qrcode .label { display: block; margin-top: 6px; color: var(--muted); font-size: 12px; }

/* 属性表（ul/li，覆盖下载皮肤的 div 网格） */
.wrapper .attr-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin: 16px 0; padding: 0; list-style: none; }
.wrapper .attr-grid li { padding: 10px 12px; background: #f8faf9; border-radius: var(--radius); color: var(--ink); font-size: 13px; }
.wrapper .attr-grid li span { display: block; margin-bottom: 2px; color: var(--muted); font-size: 12px; }

/* 主题标签 */
.wrapper .tags { display: flex; flex-wrap: wrap; align-items: baseline; gap: 10px; margin: 14px 0 0; }
.wrapper .tags dt { color: var(--muted); font-weight: 700; }
.wrapper .tags dd { margin: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.wrapper .tags dd a { padding: 4px 12px; color: var(--muted); background: #f2f6f3; border-radius: 999px; font-size: 13px; }
.wrapper .tags dd a:hover { color: var(--green-dark); background: var(--green-soft); }

/* 下载大按钮组 */
.wrapper .dl-buttons { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px; clear: both; }
.wrapper .dl-buttons .btn,
.wrapper .dl-buttons .reserve,
.wrapper .dl-buttons .disable { display: inline-flex; align-items: center; gap: 10px; min-height: 56px; padding: 10px 22px; border-radius: var(--radius); }
.wrapper .dl-buttons .lbl { display: flex; flex-direction: column; line-height: 1.2; text-align: left; }
.wrapper .dl-buttons .lbl .h { font-size: 16px; font-weight: 700; }
.wrapper .dl-buttons .lbl .s { font-size: 12px; font-weight: 500; opacity: .9; }
.wrapper .dl-buttons .btn.alt { color: var(--green-dark); background: var(--green-soft); border: 1px solid #bbf7d0; }
.wrapper .dl-buttons .reserve { color: #92600b; background: #fdecc4; border: 0; cursor: pointer; }
.wrapper .dl-buttons .disable { color: var(--muted); background: #eef1ef; cursor: not-allowed; }

/* ---------- 详情正文 / 截图 / 锚点 ---------- */
.wrapper .detail-block h2 { margin: 0 0 14px; color: var(--ink); font-size: 22px; }
.wrapper .article { color: #26332b; font-size: 16px; line-height: 1.8; }
.wrapper .article img { margin: 16px 0; border: 1px solid var(--line); border-radius: var(--radius); }
.wrapper .safe-tip { margin: 16px 0; padding: 12px 16px; background: var(--green-soft); border-left: 4px solid var(--green); border-radius: 6px; color: var(--green-dark); }
.wrapper .shots ul { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin: 0; padding: 0; list-style: none; }
.wrapper .shots-portrait ul { grid-template-columns: repeat(4, 1fr); }
.wrapper .shots img { width: 100%; border: 1px solid var(--line); border-radius: var(--radius); }
.wrapper .shots-empty { padding: 30px; text-align: center; color: var(--muted); }

.wrapper .anchor-tabs { display: flex; gap: 8px; position: sticky; top: 75px; z-index: 20; margin: 0 0 16px; padding: 10px; list-style: none; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow-x: auto; }
.wrapper .anchor-tabs li { white-space: nowrap; padding: 8px 12px; color: var(--muted); border-radius: var(--radius); cursor: pointer; }
.wrapper .anchor-tabs li.is-active,
.wrapper .anchor-tabs li:hover { color: var(--green-dark); background: var(--green-soft); }
.wrapper .anchor-tabs li.dl { color: var(--green-dark); font-weight: 700; }

/* ---------- 选项卡 js-tabs ---------- */
.wrapper .block-head { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.wrapper .block-head > span:first-child { color: var(--ink); font-size: 18px; font-weight: 700; }
.wrapper .tabs { display: flex; gap: 6px; margin: 0; padding: 0; list-style: none; }
.wrapper .tabs li { padding: 6px 12px; color: var(--muted); background: #f3f4f6; border-radius: 999px; font-size: 13px; cursor: pointer; }
.wrapper .tabs li.is-active { color: #fff; background: var(--green); }

/* ---------- 下载线路 / 网盘 ---------- */
.wrapper .mirror-hd { margin: 0 0 10px; color: var(--ink); font-weight: 700; }
.wrapper .dl-providers { display: grid; gap: 8px; margin: 0 0 14px; padding: 0; list-style: none; }
.wrapper .dl-providers li a { display: flex; align-items: center; gap: 12px; padding: 12px 14px; color: var(--ink); background: #f8faf9; border: 1px solid var(--soft-line); border-radius: var(--radius); }
.wrapper .dl-providers li a:hover { border-color: #bbf7d0; background: var(--green-soft); }
.wrapper .dl-providers .icon { width: 28px; height: 28px; flex: none; }
.wrapper .dl-providers .meta { display: flex; flex-direction: column; }
.wrapper .dl-providers .name { font-weight: 700; }
.wrapper .dl-providers .code { color: var(--muted); font-size: 12px; }
.wrapper .dl-providers .arrow { margin-left: auto; width: 20px; height: 20px; color: var(--green); }
.wrapper .mirror-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; margin: 0; padding: 0; list-style: none; }
.wrapper .mirror-list li { display: flex; align-items: center; gap: 8px; padding: 12px 14px; color: var(--green-dark); background: var(--green-soft); border: 1px solid #bbf7d0; border-radius: var(--radius); font-weight: 600; }
.wrapper .notice-tip { padding: 12px 14px; color: #7c4a03; background: #fffbeb; border: 1px solid #fde68a; border-radius: var(--radius); font-size: 14px; }
.wrapper .notice-tip strong { color: var(--green-dark); }

/* ---------- 猜你喜欢 like-section ---------- */
.wrapper .like-hero { display: flex; gap: 14px; margin-bottom: 14px; }
.wrapper .like-pic { width: 200px; border-radius: var(--radius); }
.wrapper .like-info h4 { margin: 0 0 6px; font-size: 16px; }
.wrapper .like-info .d { margin: 0 0 8px; color: var(--muted); font-size: 13px; }
.wrapper .like-info .more { color: var(--green-dark); font-weight: 700; }
.wrapper .like-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 0; padding: 0; list-style: none; }
.wrapper .like-list li { display: flex; gap: 10px; align-items: center; }
.wrapper .like-list .ico { width: 48px; height: 48px; flex: none; border-radius: 10px; }
.wrapper .like-list .meta { min-width: 0; }
.wrapper .like-list .meta .t { display: block; color: var(--ink); font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.wrapper .like-list .meta .a { color: var(--muted); font-size: 12px; }

/* 让 wrapper 的购买栏/报错按钮在白卡片里也有合适间距 */
.wrapper .xz-buy-box { margin: 16px 0 0; }
.wrapper .detail-hero .dl-buttons .xz-report-btn { min-height: 44px; }

/* ---------- 响应式：wrapper 体系 ---------- */
@media (max-width: 1100px) {
  .wrapper .game-grid,
  .wrapper .poster-grid { grid-template-columns: repeat(4, 1fr); }
  .wrapper .app-grid { grid-template-columns: repeat(3, 1fr); }
  .wrapper .topic-grid { grid-template-columns: repeat(2, 1fr); }
  .wrapper .like-list { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .wrapper { width: min(100% - 20px, var(--container)); }
  .wrapper .game-grid,
  .wrapper .poster-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .wrapper .app-grid { grid-template-columns: repeat(2, 1fr); }
  .wrapper .topic-grid,
  .wrapper .like-list,
  .wrapper .shots ul,
  .wrapper .shots-portrait ul,
  .wrapper .attr-grid { grid-template-columns: 1fr; }
  .wrapper .shots-portrait ul { grid-template-columns: repeat(2, 1fr); }
  .wrapper .detail-hero .game-cover { float: none; display: block; width: 140px; height: 186px; margin: 0 auto 14px; }
  .wrapper .detail-hero { text-align: center; }
  .wrapper .detail-hero .attr-grid,
  .wrapper .detail-hero .tags,
  .wrapper .dl-buttons { text-align: left; }
  .wrapper .detail-hero .head { flex-direction: column; text-align: center; }
  .wrapper .detail-hero .qrcode { display: none; }
  .wrapper .dl-buttons .btn,
  .wrapper .dl-buttons .reserve,
  .wrapper .dl-buttons .disable { width: 100%; justify-content: center; }
  .wrapper .anchor-tabs { top: 0; }
  .wrapper .like-hero { flex-direction: column; }
  .wrapper .like-pic { width: 100%; }
}

@media (max-width: 520px) {
  .wrapper .game-grid,
  .wrapper .poster-grid { grid-template-columns: repeat(2, 1fr); }
  .wrapper .app-grid { grid-template-columns: repeat(2, 1fr); }
  .wrapper .down-list-box,
  .wrapper .mod-box,
  .wrapper .detail-block { padding: 16px; }
}

/* ---------- 2026 topic pages and shared header polish ---------- */
.top-inner {
  grid-template-columns: auto minmax(0, 1fr) minmax(240px, 300px) auto auto;
}

.top-hot-row {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 38px;
  padding-bottom: 10px;
  color: var(--muted);
  font-size: 13px;
}

.top-hot-row a {
  color: var(--green-dark);
  padding: 3px 9px;
  background: var(--green-soft);
  border: 1px solid #bbf7d0;
  border-radius: 999px;
}

.main-nav {
  overflow-x: auto;
  scrollbar-width: none;
}

.main-nav::-webkit-scrollbar {
  display: none;
}

.xz-topic-page {
  padding-bottom: 8px;
}

.xz-topic-hero,
.xz-topic-detail-hero,
.xz-topic-section,
.xz-topic-filter,
.xz-sidebar-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.xz-topic-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 24px;
  align-items: center;
  margin: 18px 0 20px;
  padding: 28px;
}

.xz-topic-hero h1,
.xz-topic-detail-info h1 {
  margin: 8px 0 12px;
}

.xz-topic-hero p,
.xz-topic-detail-info p {
  margin-bottom: 0;
  color: var(--muted);
}

.xz-topic-hero-card {
  min-height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 22px;
  color: var(--green-dark);
  background: linear-gradient(135deg, var(--green-soft), #fff);
  border: 1px solid #bbf7d0;
  border-radius: var(--radius);
}

.xz-topic-hero-card strong {
  color: var(--ink);
  font-size: 42px;
  line-height: 1;
}

.xz-topic-hero-card span {
  margin-top: 8px;
  font-weight: 800;
}

.xz-topic-hero-card p {
  margin-top: 8px;
  font-size: 14px;
}

.xz-topic-search {
  display: flex;
  max-width: 620px;
  margin-top: 20px;
  border: 2px solid #bbf7d0;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
}

.xz-topic-search input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: 0;
  padding: 14px 16px;
}

.xz-topic-search button {
  border: 0;
  color: #fff;
  background: var(--green);
  padding: 0 24px;
  font-weight: 700;
  cursor: pointer;
}

.xz-topic-filter {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 20px;
  padding: 16px;
}

.xz-topic-filter > span {
  flex: none;
  color: var(--ink);
  font-weight: 800;
}

.xz-topic-filter div,
.xz-topic-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.xz-topic-filter a,
.xz-topic-tags span,
.xz-badge {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--soft-line);
  border-radius: 999px;
  background: #f8faf9;
  color: var(--muted);
  font-size: 13px;
}

.xz-topic-filter a {
  padding: 5px 12px;
}

.xz-topic-filter a:hover,
.xz-topic-filter a.is-active {
  color: var(--green-dark);
  background: var(--green-soft);
  border-color: #bbf7d0;
  font-weight: 700;
}

.xz-topic-tags span,
.xz-badge {
  padding: 4px 10px;
}

.xz-topic-section {
  margin-bottom: 20px;
  padding: 22px;
}

.xz-topic-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.xz-topic-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-width: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.xz-topic-card:hover {
  transform: translateY(-2px);
  border-color: #bbf7d0;
  box-shadow: var(--shadow);
}

.xz-topic-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: var(--green-soft);
}

.xz-topic-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 8px;
  padding: 15px;
}

.xz-topic-tag-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.xz-topic-tag-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.xz-topic-tag-card:hover {
  transform: translateY(-2px);
  border-color: #bbf7d0;
  box-shadow: var(--shadow);
}

.xz-topic-tag-card strong {
  color: var(--ink);
  font-size: 18px;
  line-height: 1.35;
}

.xz-topic-tag-card em {
  color: var(--muted);
  font-style: normal;
  font-size: 13px;
}

.xz-topic-tag-card.is-large strong {
  font-size: 20px;
}

.xz-topic-tag-card.is-medium strong {
  font-size: 19px;
}

.xz-topic-card h3,
.xz-resource-card h3,
.xz-sidebar-card h2 {
  margin: 0;
  color: var(--ink);
}

.xz-topic-card p,
.xz-resource-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.xz-card-action {
  margin-top: auto;
  color: var(--green-dark);
  font-weight: 800;
  font-size: 14px;
}

.xz-topic-detail-hero {
  display: grid;
  grid-template-columns: 390px minmax(0, 1fr);
  gap: 26px;
  align-items: center;
  margin: 18px 0 20px;
  padding: 22px;
}

.xz-topic-cover img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 1px solid var(--soft-line);
  border-radius: var(--radius);
}

.xz-topic-detail-info,
.xz-resource-card__body,
.xz-sidebar-list span {
  min-width: 0;
}

.xz-topic-tags {
  margin-top: 16px;
}

.xz-topic-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 22px;
  align-items: start;
}

.xz-resource-list {
  display: grid;
  gap: 12px;
}

.xz-resource-card {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.xz-resource-card:hover {
  border-color: #bbf7d0;
  box-shadow: var(--shadow);
}

.xz-resource-card > img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid var(--soft-line);
}

.xz-resource-card .meta-line {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 7px;
  color: var(--muted);
  font-size: 13px;
}

.xz-sidebar {
  position: sticky;
  top: 96px;
}

.xz-sidebar-card {
  padding: 18px;
}

.xz-sidebar-card h2 {
  margin-bottom: 12px;
  font-size: 18px;
}

.xz-sidebar-list {
  display: grid;
  gap: 10px;
}

.xz-sidebar-list a {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
}

.xz-sidebar-list img {
  width: 88px;
  height: 50px;
  object-fit: cover;
  border: 1px solid var(--soft-line);
  border-radius: var(--radius);
}

.xz-sidebar-list span {
  color: var(--ink);
  font-weight: 700;
  line-height: 1.4;
}

.xz-related-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.xz-related-tags a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  color: var(--muted);
  background: #f8faf9;
  border: 1px solid var(--soft-line);
  border-radius: 999px;
  font-size: 13px;
}

.xz-related-tags a:hover {
  color: var(--green-dark);
  background: var(--green-soft);
  border-color: #bbf7d0;
}

.xz-related-tags span {
  color: var(--green-dark);
  font-weight: 800;
}

.xz-empty {
  padding: 34px 18px;
  text-align: center;
  color: var(--muted);
  background: #f8faf9;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
}

.xz-pagination,
.wrapper .pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.xz-pagination a,
.xz-pagination span,
.xz-pagination b,
.wrapper .pagination a,
.wrapper .pagination span,
.wrapper .pagination b {
  min-width: 38px;
  min-height: 38px;
  display: inline-grid;
  place-items: center;
  padding: 0 12px;
  color: var(--muted);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.xz-pagination a:hover,
.wrapper .pagination a:hover {
  color: var(--green-dark);
  border-color: #bbf7d0;
}

.xz-pagination .current,
.xz-pagination b,
.xz-pagination strong,
.wrapper .pagination .current,
.wrapper .pagination b,
.wrapper .pagination strong {
  color: #fff;
  background: var(--green);
  border-color: var(--green);
}

@media (max-width: 1180px) {
  .top-inner {
    grid-template-columns: auto minmax(0, 1fr) auto auto;
  }

  .top-search {
    grid-column: 1 / -1;
    width: 100%;
    order: 3;
  }
}

@media (max-width: 980px) {
  .xz-topic-hero,
  .xz-topic-detail-hero,
  .xz-topic-layout {
    grid-template-columns: 1fr;
  }

  .xz-sidebar {
    position: static;
  }

  .xz-topic-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .xz-topic-tag-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .top-inner {
    grid-template-columns: 1fr auto auto;
    gap: 10px;
  }

  .top-hot-row {
    overflow-x: auto;
    padding-bottom: 8px;
  }

  .top-hot-row a,
  .top-hot-row span {
    white-space: nowrap;
  }

  .xz-topic-hero,
  .xz-topic-detail-hero,
  .xz-topic-section {
    padding: 16px;
  }

  .xz-topic-hero-card {
    min-height: 120px;
  }

  .xz-topic-search {
    display: grid;
  }

  .xz-topic-search button {
    min-height: 46px;
  }

  .xz-resource-card {
    grid-template-columns: 64px minmax(0, 1fr);
  }

  .xz-resource-card > img {
    width: 64px;
    height: 64px;
  }

  .xz-resource-card .btn {
    grid-column: 2;
    width: fit-content;
  }

  .xz-topic-tag-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .xz-topic-grid {
    grid-template-columns: 1fr;
  }

  .xz-topic-tag-grid {
    grid-template-columns: 1fr;
  }

  .xz-topic-filter {
    display: grid;
  }

  .xz-resource-card .btn {
    width: 100%;
  }
}

/* ===================================================================
   2026pc 详情页（show_download）补充组件样式
   说明：以下类在原 xzji2026 皮肤中缺失，详情页模板需要。全部使用既有
   设计令牌（--green/--line/--muted/--radius 等），并随 .layout 自适应。
   =================================================================== */

/* 选项卡：下载 PC/Android、排行 周/总。main.js 通过 .hide / li.is-active 切换 */
.js-tabs-pane.hide { display: none !important; }
.mod-tablist { display: flex; gap: 6px; list-style: none; margin: 0; padding: 0; }
.mod-tablist li {
  cursor: pointer;
  padding: 4px 12px;
  font-size: 13px;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  transition: all .2s;
}
.mod-tablist li.is-active {
  color: #fff;
  background: var(--green);
  border-color: var(--green);
}
.js-tabs-hd { margin-bottom: 14px; }

/* 排行侧栏标题 + 选项卡同排 */
.box-title { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.box-title h2 { margin: 0; font-size: 16px; }

/* 下载前说明（xzji_render_download_notice 输出的 dl 表） */
.download-before-note { margin: 0 0 18px; }
.download-before-note > h2 { font-size: 16px; margin: 0 0 10px; }
.download-before-note dl { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px; margin: 0; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.download-before-note dl > div { display: flex; gap: 8px; padding: 9px 12px; background: #fff; font-size: 13px; }
.download-before-note dt { flex: 0 0 76px; color: var(--muted); }
.download-before-note dd { margin: 0; color: var(--text); word-break: break-all; }
.download-before-note dd a { color: var(--link); text-decoration: underline; text-underline-offset: 3px; }
.download-before-note dd a:hover { color: var(--link-hover); }
.download-before-note code { font-size: 12px; color: var(--green-dark); }
.purchase-support { margin: 0 0 18px; padding: 14px 16px; background: var(--green-soft); border: 1px solid var(--soft-line); border-radius: var(--radius); }
.purchase-support h2 { font-size: 15px; margin: 0 0 6px; }
.purchase-support p { margin: 0 0 10px; font-size: 13px; color: var(--muted); }
.purchase-support a { display: inline-block; padding: 7px 16px; background: var(--green); color: #fff; border-radius: 6px; font-size: 13px; }

/* 列表 / 空状态 / 购买按钮变体 */
.link-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.link-list li { padding-left: 14px; position: relative; font-size: 14px; }
.link-list li::before { content: ""; position: absolute; left: 0; top: 9px; width: 5px; height: 5px; border-radius: 50%; background: var(--green); }
.link-list a { color: var(--text); }
.link-list a:hover { color: var(--green); }
.empty-tip { color: var(--faint); font-size: 14px; padding: 18px 0; text-align: center; }
.xz-dl-btn--buy { background: #b45309; }
.xz-dl-btn--buy:hover { background: #92400e; }
.xz-buy-btn--coupon { background: #fff; color: var(--green-dark); border: 1px solid var(--green); }

@media (max-width: 520px) {
  .download-before-note dl { grid-template-columns: 1fr; }
}

/* ===================================================================
   2026pc 头部重设计（权威覆盖块，置于文件末尾以胜过前面零散的 grid 规则）
   结构：第一行 .top-inner(logo + 搜索 + 多语言 + 汉堡)；第二行 .main-nav 整条导航栏。
   彻底解决「搜索框遮挡导航」（5 个元素塞进 3 列 grid 导致的换行/重叠）。
   =================================================================== */
.site-top {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 22px rgba(22, 37, 29, .05);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.top-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  height: 64px;
}
.top-inner .logo { flex: 0 0 auto; }
.top-inner .logo img { width: 170px; height: auto; display: block; }
.top-search {
  flex: 0 1 340px;
  width: min(340px, 34vw);
  margin-left: auto;
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
}
.top-search input { min-width: 0; flex: 1; border: 0; outline: 0; padding: 9px 0 9px 16px; background: transparent; }
.top-search button { border: 0; color: #fff; background: var(--green); padding: 9px 18px; cursor: pointer; white-space: nowrap; }
.top-inner .xz-lang-switcher { flex: 0 0 auto; }
.nav-toggle { display: none; flex: 0 0 auto; }

.main-nav {
  display: block;
  background: #fff;
  border-top: 1px solid var(--soft-line);
  border-bottom: 1px solid var(--soft-line);
}
.main-nav-inner {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  gap: 10px;
  height: 50px;
  padding: 6px 0;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
}
.main-nav-inner::-webkit-scrollbar { display: none; }
.main-nav a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  flex: 0 0 auto;
  padding: 0 18px;
  font-size: 16px;
  color: var(--text);
  font-weight: 600;
  white-space: nowrap;
  border-radius: var(--radius);
  position: relative;
}
.main-nav a:hover {
  color: var(--green-dark);
  background: var(--green-soft);
}
.main-nav a.is-active {
  color: #fff;
  background: var(--green);
  box-shadow: 0 6px 14px rgba(22, 163, 74, .16);
}
.main-nav a.is-active::after {
  display: none;
}

.crumbs {
  display: block;
  width: min(var(--container), calc(100% - 32px));
  margin: 12px auto 12px;
  padding: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
  border: 0;
}

.crumbs a {
  color: var(--green-dark);
  font-weight: 500;
}

.crumbs span {
  color: var(--muted);
}

.layout > aside {
  position: sticky;
  top: 128px;
  align-self: start;
  max-height: none;
  overflow: visible;
}

.layout > aside .side-box.js-tabs {
  display: flex;
  flex-direction: column;
  max-height: none;
}

.layout > aside .side-box.js-tabs .box-title {
  flex: 0 0 auto;
}

.layout > aside .side-box.js-tabs .js-tabs-bd {
  min-height: 0;
  overflow-y: visible;
  padding-right: 0;
  overscroll-behavior: contain;
  scrollbar-width: none;
}

.layout > aside .side-box.js-tabs .js-tabs-bd::-webkit-scrollbar {
  display: none;
}

.layout > aside .side-box.js-tabs .rank-list li {
  grid-template-columns: 26px 38px 1fr;
  gap: 9px;
  padding: 7px 0;
}

.layout > aside .side-box.js-tabs .rank-list img {
  width: 38px;
  height: 38px;
}

.layout > aside .side-box.js-tabs .rank-list a {
  font-size: 15px;
}

.layout > aside .side-box.js-tabs .rank-list small {
  font-size: 12px;
}

.xz-list-page .list-item__icon {
  width: 78px;
  height: 78px;
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
}

.xz-list-page .list-item h2 em {
  color: var(--muted);
  font-style: normal;
  font-size: 14px;
  font-weight: 600;
}

.xz-list-page .filter-row .tag {
  border: 1px solid var(--line);
}

.xz-pager {
  flex-wrap: wrap;
}

.xz-pager a,
.xz-pager span {
  min-width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  padding: 0 12px;
  color: var(--muted);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.xz-pager .current,
.xz-pager .cur,
.xz-pager span.is-active {
  color: #fff;
  background: var(--green);
  border-color: var(--green);
}

.xz-pager .np,
.xz-pager .total,
.xz-pager .disabled {
  display: none !important;
}

.xz-translate-engine {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.xz-lang-switcher__menu a {
  cursor: pointer;
}

body {
  top: 0 !important;
}

body > .skiptranslate,
.goog-te-banner-frame,
.goog-te-balloon-frame,
#goog-gt-tt {
  display: none !important;
}

.xz-list-page .page-title p {
  margin: 0;
}

.xz-list-page .layout.reverse {
  grid-template-columns: 280px minmax(0, 1fr);
}

.xz-list-page .side-box {
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(22, 37, 29, .05);
}

.xz-list-page .side-box.card.pad {
  padding: 0;
}

.xz-list-page .side-box > h2,
.xz-list-page .side-box .box-title {
  margin: 0;
  padding: 16px 18px 12px;
  border-bottom: 1px solid var(--soft-line);
}

.xz-list-page .side-box > h2 {
  font-size: 18px;
  line-height: 1.25;
}

.xz-list-page .side-box .box-title h2 {
  font-size: 17px;
}

.xz-list-page .cat-links {
  padding: 14px 16px 16px;
  gap: 9px;
}

.xz-list-page .cat-links a {
  display: flex;
  align-items: center;
  min-height: 40px;
  padding: 9px 12px;
  background: #f7faf8;
  border: 1px solid transparent;
  transition: color .18s, background .18s, border-color .18s, transform .18s;
}

.xz-list-page .cat-links a:hover {
  color: var(--green-dark);
  background: #fff;
  border-color: #bbf7d0;
  transform: translateY(-1px);
}

.xz-list-page .cat-links a.is-active {
  color: var(--green-dark);
  background: var(--green-soft);
  border-color: #bbf7d0;
  box-shadow: inset 3px 0 0 var(--green);
}

.xz-list-page .side-box .js-tabs-bd {
  padding: 10px 16px 14px;
}

.xz-list-page .side-box .rank-list li {
  grid-template-columns: 28px 44px minmax(0, 1fr);
  gap: 10px;
  padding: 10px 0;
}

.xz-list-page .side-box .rank-list img {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #f6f8fa;
}

.xz-list-page .side-box .rank-list a {
  font-size: 15px;
  line-height: 1.3;
}

@media (max-width: 980px) {
  .xz-list-page .layout.reverse {
    grid-template-columns: 1fr;
    grid-template-areas:
      "content"
      "side";
  }

  .xz-list-page .layout > section {
    grid-area: content;
    order: 1;
  }

  .xz-list-page .layout > aside {
    grid-area: side;
    order: 2;
  }
}

@media (max-width: 520px) {
  .xz-list-page .cat-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .xz-list-page .xz-pager a,
  .xz-list-page .xz-pager span {
    width: auto;
    min-width: 40px;
  }
}

.xz-download-list .xz-dl-row.is-active + .xz-dl-row--netdisk {
  margin-top: 8px;
}

.xz-download-list .xz-dl-row--netdisk + .xz-dl-row--netdisk {
  margin-top: 8px;
}

.xz-download-list .xz-dl-row--netdisk {
  min-height: 74px;
}

.xz-category-page {
  padding-bottom: 8px;
}

.xz-cat-hero {
  margin: 14px 0 24px;
  padding: 28px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(236, 253, 245, .95), rgba(255, 255, 255, .96) 56%),
    #fff;
  box-shadow: 0 14px 32px rgba(22, 37, 29, .06);
}

.xz-cat-hero h1 {
  margin: 8px 0 10px;
  font-size: 34px;
}

.xz-cat-hero p {
  max-width: 820px;
  margin: 0;
  color: var(--text);
  font-size: 16px;
  line-height: 1.75;
}

.xz-cat-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.xz-cat-stats span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 11px;
  color: var(--green-dark);
  background: #fff;
  border: 1px solid #bbf7d0;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.xz-cat-side-cats {
  margin-bottom: 16px;
}

.xz-cat-side-cats h2 {
  margin: 0 0 14px;
  font-size: 20px;
}

.xz-cat-category-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.xz-cat-category-links a,
.xz-cat-tile {
  color: var(--text);
  background: rgba(255, 255, 255, .82);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.xz-cat-category-links a {
  display: inline-flex;
  align-items: center;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
}

.xz-cat-category-links a:hover,
.xz-cat-tile:hover {
  color: var(--green-dark);
  border-color: #bbf7d0;
  background: #fff;
}

.xz-cat-main {
  display: grid;
  gap: 18px;
}

.xz-cat-nav,
.xz-cat-section {
  box-shadow: 0 10px 24px rgba(22, 37, 29, .04);
}

.xz-cat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.xz-cat-tile {
  display: grid;
  gap: 5px;
  min-height: 92px;
  padding: 14px;
}

.xz-cat-tile strong {
  color: var(--ink);
  font-size: 16px;
}

.xz-cat-tile span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.xz-cat-soft-grid {
  grid-template-columns: repeat(auto-fill, minmax(228px, 1fr));
}

.xz-cat-section .software-card {
  align-items: center;
  transition: border-color .18s, transform .18s, box-shadow .18s;
}

.xz-cat-section .software-card:hover {
  border-color: #bbf7d0;
  box-shadow: 0 10px 22px rgba(22, 163, 74, .08);
  transform: translateY(-1px);
}

.xz-cat-section .software-card h3 {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.xz-cat-side-note p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

@media (max-width: 980px) {
  .xz-cat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .xz-cat-hero {
    padding: 18px;
    margin-top: 10px;
  }

  .xz-cat-hero h1 {
    font-size: 28px;
  }

  .xz-cat-category-links,
  .xz-cat-grid,
  .xz-cat-soft-grid {
    grid-template-columns: 1fr;
  }

  .xz-cat-tile {
    min-height: 76px;
  }
}

@media (max-width: 980px) {
  .layout > aside {
    position: static;
    max-height: none;
    overflow: visible;
  }
  .layout > aside .side-box.js-tabs {
    max-height: none;
  }
  .layout > aside .side-box.js-tabs .js-tabs-bd {
    overflow: visible;
    padding-right: 0;
  }
}

@media (max-width: 760px) {
  .section {
    margin: 14px 0;
  }

  .detail-hero {
    margin-bottom: 12px;
  }

  .layout.section {
    margin-top: 12px;
  }

  .anchor-tabs {
    margin-bottom: 10px;
  }

  .content-block {
    margin-bottom: 12px;
  }
}

@media (max-width: 520px) {
  .detail-hero {
    padding-bottom: 12px;
  }

  .download-trust {
    margin-top: 2px;
  }

  .anchor-tabs {
    padding: 8px;
    margin-bottom: 8px;
  }

  .anchor-tabs a {
    padding: 7px 10px;
  }

  .content-block {
    padding: 14px;
  }
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: auto;
    height: 40px;
    padding: 0 11px;
    border: 1px solid var(--line);
    background: #fff;
    border-radius: var(--radius);
    color: var(--ink);
    font-weight: 700;
  }
  .nav-toggle .nav-toggle__text { display: inline; width: auto; height: auto; margin: 0; background: none; font-size: 13px; }
  .nav-toggle .nav-toggle__bars { display: grid; gap: 4px; width: 16px; height: auto; margin: 0; background: none; }
  .nav-toggle .nav-toggle__bars span { display: block; width: 16px; height: 2px; margin: 0; background: currentColor; border-radius: 2px; }
  .top-search { flex: 1 1 auto; width: auto; margin-left: 12px; }
  .main-nav { display: none; border-top: 1px solid var(--line); background: #fff; box-shadow: 0 16px 26px rgba(22, 37, 29, .08); }
  .main-nav.is-open { display: block; }
  .main-nav-inner {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: stretch;
    height: auto;
    overflow: visible;
    padding: 10px 0;
  }
  .main-nav a { flex: none; justify-content: center; height: 38px; padding: 0 8px; color: var(--ink); font-size: 14px; }
  .main-nav a:hover { color: var(--green-dark); background: var(--green-soft); }
  .main-nav a.is-active { color: #fff; background: var(--green); }
  .main-nav a.is-active::after { display: none; }
}
@media (max-width: 560px) {
  .top-inner { flex-wrap: wrap; height: auto; padding: 10px 0; gap: 12px; }
  .top-inner .logo img { width: 150px; }
  .nav-toggle { order: 2; margin-left: auto; }
  .xz-lang-switcher { display: none; }
  .top-search { order: 4; flex: 1 0 100%; width: 100%; margin: 0; }
  .main-nav-inner { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
  .main-nav a { height: 40px; }
  .crumbs { width: min(100% - 20px, var(--container)); padding: 8px 0; font-size: 12px; }
}

.attr-grid .attr-value {
  display: block;
  min-width: 0;
}

@media (max-width: 560px) {
  .detail-hero { grid-template-columns: 58px minmax(0, 1fr); gap: 12px; }
  .detail-hero .app-icon { width: 58px; height: 58px; border-radius: 12px; }
  .detail-hero h1 { font-size: 21px; line-height: 1.25; }
  .detail-hero p { margin-bottom: 10px; font-size: 13px; line-height: 1.5; }
  .attr-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    margin-top: 10px;
  }
  .attr-grid div {
    display: flex;
    align-items: center;
    gap: 6px;
    min-width: 0;
    padding: 7px 8px;
    font-size: 12px;
    line-height: 1.25;
  }
  .attr-grid strong {
    flex: 0 0 auto;
    display: inline;
    font-size: 12px;
  }
  .attr-grid .attr-value {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .section { margin: 12px 0; }
  .layout.section { margin-top: 10px; }
  .anchor-tabs { margin-bottom: 8px; padding: 8px; }
  .content-block { margin-bottom: 12px; padding: 14px; }
  .download-trust { margin-top: 2px; }
}

/* ===================================================================
   软件截图灯箱（点击大图查看）
   =================================================================== */
.cover-grid img { cursor: zoom-in; }
.xz-lightbox {
  position: fixed; inset: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: center;
  background: rgba(8, 15, 12, .88); padding: 32px;
  -webkit-user-select: none; user-select: none;
}
.xz-lightbox[hidden] { display: none; }
.xz-lightbox__img { max-width: 92vw; max-height: 84vh; border-radius: 6px; box-shadow: 0 24px 70px rgba(0, 0, 0, .55); }
.xz-lightbox__btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px; border: 0; border-radius: 50%;
  background: rgba(255, 255, 255, .14); color: #fff; font-size: 26px; line-height: 1; cursor: pointer;
}
.xz-lightbox__btn:hover { background: rgba(255, 255, 255, .28); }
.xz-lightbox__prev { left: 24px; }
.xz-lightbox__next { right: 24px; }
.xz-lightbox__close { top: 24px; right: 24px; transform: none; width: 44px; height: 44px; font-size: 24px; }
.xz-lightbox__count { position: absolute; bottom: 22px; left: 0; right: 0; text-align: center; color: rgba(255, 255, 255, .85); font-size: 13px; }
@media (max-width: 560px) {
  .xz-lightbox__prev { left: 8px; }
  .xz-lightbox__next { right: 8px; }
  .xz-lightbox__btn { width: 40px; height: 40px; }
}

/* ===================================================================
   栏目页（category_download）布局优化
   一屏有十几个子分类区块，原来卡片是 2 列（每个 ~403px 过宽、留白多、
   页面过长）。改为 3 列密排 + 标题/区块更紧凑，整体更易扫读。
   作用域限定 .xz-category-page，避免影响首页/列表等复用同名类的页面。
   =================================================================== */
.xz-category-page .xz-cat-main { gap: 16px; }
.xz-category-page .card.xz-cat-section { padding: 18px 20px; }

/* 子分类区块标题更克制（24px 在重复十几次时过重） */
.xz-category-page .section-head { align-items: center; margin-bottom: 12px; }
.xz-category-page .section-title { font-size: 19px; }
.xz-category-page .section-desc { font-size: 13px; margin-top: 4px; }

/* “更多”做成胶囊按钮，点击目标更明确 */
.xz-category-page .more-link {
  flex: 0 0 auto;
  padding: 5px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  transition: color .18s, border-color .18s, background .18s;
}
.xz-category-page .more-link:hover {
  color: var(--green-dark);
  border-color: #bbf7d0;
  background: var(--green-soft);
}

/* 卡片标题字号与三列密排匹配，单行省略 */
.xz-category-page .xz-cat-section .software-card { padding: 12px; }
.xz-category-page .xz-cat-section .software-card h3 { font-size: 15px; }

/* Hero 收紧一点，减少首屏占用 */
.xz-cat-hero { margin: 14px 0 20px; padding: 24px 28px; }
.xz-cat-hero h1 { font-size: 30px; }

/* 中屏（侧栏收起后）保持 3 列密排；窄屏单列 */
@media (max-width: 560px) {
  .xz-category-page .card.xz-cat-section { padding: 16px; }
  .xz-category-page .section-title { font-size: 18px; }
}

/* ===================================================================
   排版系统 / TYPOGRAPHY SYSTEM
   -------------------------------------------------------------------
   本块置于文件末尾，按层叠规则「最后生效」：
   · 会覆盖裸标签默认值（body / p / h1~h3 / small 等）；
   · 不会覆盖更高特异性的组件类（.section-title / .detail-hero h1 …），
     这些组件标题仍按各自设定显示——所以这套全局尺度主要作用于
     CMS 正文 {$content} 里编辑写的裸 h2/h3/p，以及未单独定制的文本。
   · 站点类型：内容/下载站（非后台数据密集型），正文取 16px / 行高 1.65。
   · 移动优先：基准为移动端值，@media(min-width:768px) 覆盖为 PC 值。
   =================================================================== */

:root {
  /* 字号（rem，html 基准 16px） */
  --fs-body: 1rem;         /* 16px 正文 */
  --fs-small: .875rem;     /* 14px 次要/说明 */
  --fs-meta: .75rem;       /* 12px 辅助/标签 */
  --fs-h3: 1.125rem;       /* 18px（PC 升至 20px） */
  --fs-h2: 1.25rem;        /* 20px（PC 升至 28px） */
  --fs-h1: 1.5rem;         /* 24px（PC 升至 36px） */
  /* 行高 */
  --lh-body: 1.6;          /* 移动正文（PC 升至 1.65） */
  --lh-relaxed: 1.65;
  --lh-h3: 1.4;
  --lh-h2: 1.3;
  --lh-h1: 1.2;
  /* 阅读宽度：约 35-45 个汉字/行，防止宽屏长行 */
  --reading-measure: 42rem;
}

/* 1) 基础：rem 基准 + 字体平滑 + 不用纯黑（用深灰 --text:#25312a，
      在 #fff / --bg 上对比度 >12:1，满足 WCAG AAA） */
html { font-size: 16px; }
body {
  color: var(--text);
  line-height: var(--lh-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* 2) 正文与列表 */
p, li { font-size: var(--fs-body); line-height: var(--lh-body); }
p { margin: 0 0 1.25rem; }
p:last-child { margin-bottom: 0; }

/* 3) 次要 / 辅助文字（utility，可直接加在标签上） */
small, .text-muted { font-size: var(--fs-small); line-height: 1.5; color: var(--muted); }
.text-meta, .badge { font-size: var(--fs-meta); line-height: 1.4; color: var(--muted); }

/* 4) 标题尺度（裸标签基准；带类名的组件标题特异性更高，不受影响） */
h1 { font-size: var(--fs-h1); line-height: var(--lh-h1); font-weight: 700; }
h2 { font-size: var(--fs-h2); line-height: var(--lh-h2); font-weight: 700; }
h3 { font-size: var(--fs-h3); line-height: var(--lh-h3); font-weight: 600; }

/* 5) 阅读宽度限制：仅作用于文章正文容器，避免约束卡片/侧栏里的短文本。
      如有其它正文容器（如新闻文章），把其类名补进选择器即可。 */
.art-content p,
.art-content li,
.article-body > p {
  max-width: var(--reading-measure);
}

/* 💻 PC 端（>= 768px） */
@media (min-width: 768px) {
  body { line-height: var(--lh-relaxed); }     /* 1.65 */
  p, li { line-height: var(--lh-relaxed); }
  h1 { font-size: 2.25rem; line-height: var(--lh-h1); }   /* 36px */
  h2 { font-size: 1.75rem; line-height: var(--lh-h2); }   /* 28px */
  h3 { font-size: 1.25rem; line-height: var(--lh-h3); }   /* 20px */
}

/* ===================================================================
   栏目页 Hero 两栏化：左侧简介 + 右侧「软件分类」快捷导航
   解决：① 分类磁贴间距过大（改为紧凑胶囊 chips，见上方 .xz-cat-category-links）
        ② Hero 留白过多（右侧放分类导航填充，align-items:start 让卡片随内容收缩）
   =================================================================== */
.xz-cat-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(290px, 360px);
  gap: 28px;
  align-items: start;
}
.xz-cat-hero__main { min-width: 0; }
.xz-cat-hero__nav {
  background: rgba(255, 255, 255, .75);
  border: 1px solid var(--soft-line);
  border-radius: var(--radius);
  padding: 16px 18px;
}
.xz-cat-hero__nav-title {
  margin: 0 0 12px;
  font-size: 16px;
  color: var(--ink);
}
/* 窄屏：上下堆叠 */
@media (max-width: 860px) {
  .xz-cat-hero {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

/* ---------- 2026 系统工具频道首页：现代下载站布局 ---------- */
#soft-category-page {
  --cat-blue: #16a34a;
  --cat-blue-dark: #15803d;
  --cat-blue-soft: #ecfdf5;
  --cat-ink: #111827;
  --cat-text: #374151;
  --cat-muted: #6b7280;
  --cat-line: #e5e7eb;
  --cat-bg: #f6f8fb;
  --cat-card-shadow: 0 10px 24px rgba(15, 23, 42, .05);
  color: var(--cat-text);
  background: var(--cat-bg);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", Arial, sans-serif;
  font-size: 14px;
}

#soft-category-page .xz-cat-icons {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

#soft-category-page .xz-category-page {
  padding-bottom: 24px;
}

#soft-category-page .card {
  border-color: var(--cat-line);
  border-radius: 14px;
  box-shadow: var(--cat-card-shadow);
}

#soft-category-page .card.pad {
  padding: 22px;
}

#soft-category-page .xz-cat-hero {
  display: block;
  margin: 14px 0 20px;
  padding: 22px 26px 24px;
  background: #fff;
  border: 1px solid var(--cat-line);
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, .06);
}

#soft-category-page .xz-cat-crumbs {
  margin: 0 0 14px;
  color: var(--cat-muted);
  font-size: 13px;
  line-height: 1.55;
}

#soft-category-page .xz-cat-crumbs a {
  color: var(--cat-muted);
  font-weight: 500;
}

#soft-category-page .xz-cat-hero .eyebrow {
  color: var(--cat-blue);
  background: var(--cat-blue-soft);
  border: 1px solid #bbf7d0;
}

#soft-category-page .xz-cat-hero h1 {
  margin: 0 0 10px;
  color: var(--cat-ink);
  font-size: 30px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0;
}

#soft-category-page .xz-cat-hero p {
  max-width: 920px;
  color: var(--cat-text);
  font-size: 14px;
  line-height: 1.75;
}

#soft-category-page .xz-cat-stats {
  gap: 10px;
  margin-top: 18px;
}

#soft-category-page .xz-cat-stats span {
  min-height: 32px;
  padding: 5px 12px;
  color: var(--cat-blue-dark);
  background: var(--cat-blue-soft);
  border-color: #bbf7d0;
  border-radius: 999px;
  font-size: 12px;
  line-height: 1.5;
}

#soft-category-page .xz-cat-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 96px;
  width: min(560px, 100%);
  margin-top: 20px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
}

#soft-category-page .xz-cat-search input {
  min-width: 0;
  height: 46px;
  padding: 0 14px;
  color: var(--cat-ink);
  background: transparent;
  border: 0;
  outline: 0;
  font-size: 15px;
}

#soft-category-page .xz-cat-search button {
  height: 46px;
  color: #fff;
  background: var(--cat-blue);
  border: 0;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
}

#soft-category-page .xz-cat-search button:hover {
  background: var(--cat-blue-dark);
}

#soft-category-page .xz-cat-side-cats h2 {
  margin: 0 0 12px;
}

#soft-category-page .xz-side-cat-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
}

#soft-category-page .xz-side-cat-links a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 40px;
  padding: 9px 12px;
  color: var(--cat-muted);
  background: #f7faf8;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.25;
  text-align: left;
  transition: color .18s, background .18s, border-color .18s, transform .18s;
}

#soft-category-page .xz-side-cat-links a:hover {
  color: var(--cat-blue-dark);
  background: #fff;
  border-color: #bbf7d0;
  transform: translateY(-1px);
}

#soft-category-page .xz-side-cat-links a:first-child {
  color: var(--cat-blue-dark);
  background: var(--cat-blue-soft);
  border-color: #bbf7d0;
  box-shadow: inset 3px 0 0 var(--green);
  font-weight: 700;
}

#soft-category-page .xz-cat-directory {
  margin-bottom: 20px;
}

#soft-category-page .section-title,
#soft-category-page .side-box h2 {
  color: var(--cat-ink);
  font-size: 21px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0;
}

#soft-category-page .section-desc {
  color: var(--cat-muted);
  font-size: 14px;
  line-height: 1.7;
}

#soft-category-page .xz-cat-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 12px;
  margin-top: 16px;
}

#soft-category-page .xz-cat-card {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  grid-template-areas:
    "icon title"
    "icon desc";
  gap: 4px 12px;
  min-height: 94px;
  padding: 14px;
  color: var(--cat-text);
  background: #fff;
  border: 1px solid var(--cat-line);
  border-radius: 14px;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

#soft-category-page .xz-cat-card:hover {
  color: var(--cat-text);
  border-color: #86efac;
  box-shadow: 0 12px 24px rgba(22, 163, 74, .08);
  transform: translateY(-1px);
}

#soft-category-page .xz-cat-card__icon {
  grid-area: icon;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--cat-blue);
  background: var(--cat-blue-soft);
  border-radius: 12px;
}

#soft-category-page .xz-cat-card__icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

#soft-category-page .xz-cat-card strong {
  grid-area: title;
  align-self: end;
  color: var(--cat-ink);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
}

#soft-category-page .xz-cat-card span:last-child {
  grid-area: desc;
  color: var(--cat-muted);
  font-size: 13px;
  line-height: 1.55;
}

#soft-category-page .xz-cat-layout {
  grid-template-columns: minmax(0, 7fr) minmax(280px, 3fr);
  gap: 22px;
  align-items: start;
}

#soft-category-page .xz-cat-main {
  gap: 20px;
}

#soft-category-page .xz-cat-section {
  border-radius: 14px;
}

#soft-category-page .xz-cat-section .section-head {
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
}

#soft-category-page .more-link {
  color: var(--cat-blue);
  font-size: 14px;
  font-weight: 700;
}

#soft-category-page .more-link:hover {
  color: var(--cat-blue-dark);
}

#soft-category-page .xz-cat-soft-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

#soft-category-page .xz-soft-card {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 14px;
  min-height: 0;
  padding: 16px;
  background: #fff;
  border: 1px solid var(--cat-line);
  border-radius: 14px;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

#soft-category-page .xz-soft-card:hover {
  border-color: #bbf7d0;
  box-shadow: 0 14px 26px rgba(15, 23, 42, .07);
  transform: translateY(-1px);
}

#soft-category-page .xz-soft-card__icon {
  display: block;
  width: 64px;
  height: 64px;
}

#soft-category-page .xz-soft-card__icon img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border-radius: 12px;
}

#soft-category-page .xz-soft-card__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

#soft-category-page .xz-soft-card h3 {
  margin: 0;
  color: var(--cat-ink);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.42;
}

#soft-category-page .xz-soft-card h3 a {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

#soft-category-page .xz-soft-card p {
  display: -webkit-box;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  color: var(--cat-text);
  font-size: 14px;
  line-height: 1.65;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

#soft-category-page .xz-soft-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

#soft-category-page .xz-soft-card__meta span {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 2px 8px;
  color: var(--cat-muted);
  background: #f8fafc;
  border: 1px solid var(--cat-line);
  border-radius: 999px;
  font-size: 12px;
  line-height: 1.4;
}

#soft-category-page .xz-soft-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: start;
  min-height: 40px;
  padding: 8px 14px;
  color: var(--cat-blue);
  background: var(--cat-blue-soft);
  border: 1px solid #bbf7d0;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
}

#soft-category-page .xz-soft-card__btn:hover {
  color: #fff;
  background: var(--cat-blue);
  border-color: var(--cat-blue);
}

#soft-category-page .layout > aside {
  top: 120px;
}

#soft-category-page .side-box {
  border-radius: 14px;
}

#soft-category-page .side-box + .side-box {
  margin-top: 16px;
}

#soft-category-page .side-box .box-title {
  align-items: center;
}

#soft-category-page .mod-tablist li {
  min-height: 34px;
  padding: 6px 12px;
  color: var(--cat-muted);
  border-color: var(--cat-line);
  font-size: 13px;
}

#soft-category-page .mod-tablist li.is-active {
  color: #fff;
  background: var(--cat-blue);
  border-color: var(--cat-blue);
}

#soft-category-page .rank-list li {
  grid-template-columns: 28px 42px minmax(0, 1fr);
  min-height: 56px;
  padding: 4px 0;
  border-color: var(--cat-line);
}

#soft-category-page .rank-ico {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 10px;
}

#soft-category-page .rank-list img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  border-radius: 9px;
}

#soft-category-page .rank-list > li > img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 10px;
}

#soft-category-page .rank-num {
  background: #f1f5f9;
  color: var(--cat-muted);
  border-radius: 8px;
}

#soft-category-page .rank-num.top {
  color: #fff;
  background: var(--cat-blue);
}

#soft-category-page .rank-meta {
  min-width: 0;
}

#soft-category-page .rank-list a {
  display: -webkit-box;
  max-width: 100%;
  overflow: hidden;
  color: var(--cat-ink);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.15;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

#soft-category-page .rank-list small {
  display: block;
  margin-top: 1px;
  overflow: hidden;
  color: var(--cat-muted);
  font-size: 12px;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#soft-category-page .xz-cat-hot h2 {
  margin: 0 0 12px;
}

#soft-category-page .xz-hot-list {
  display: grid;
  gap: 8px;
}

#soft-category-page .xz-hot-list a {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-height: 44px;
  color: var(--cat-ink);
  font-size: 14px;
  font-weight: 600;
}

#soft-category-page .xz-hot-list img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  border-radius: 9px;
}

#soft-category-page .xz-hot-list span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#soft-category-page .xz-cat-faq h2 {
  margin: 0 0 12px;
}

#soft-category-page .xz-cat-faq dl {
  display: grid;
  gap: 8px;
  margin: 0;
}

#soft-category-page .xz-cat-faq dt {
  color: var(--cat-ink);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
}

#soft-category-page .xz-cat-faq dd {
  margin: 0 0 8px;
  color: var(--cat-muted);
  font-size: 14px;
  line-height: 1.75;
}

@media (max-width: 1080px) {
  #soft-category-page .xz-cat-soft-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  #soft-category-page .xz-cat-layout {
    grid-template-columns: 1fr;
  }

  #soft-category-page .layout > aside {
    position: static;
    order: 2;
  }
}

@media (max-width: 720px) {
  #soft-category-page .container {
    width: min(100% - 20px, var(--container));
  }

  #soft-category-page .xz-cat-hero {
    padding: 20px;
    margin-top: 10px;
  }

  #soft-category-page .xz-cat-hero h1 {
    font-size: 26px;
  }

  #soft-category-page .xz-cat-hero p {
    font-size: 14px;
    line-height: 1.75;
  }

  #soft-category-page .xz-cat-search {
    grid-template-columns: 1fr;
    border-radius: 12px;
  }

  #soft-category-page .xz-cat-search input,
  #soft-category-page .xz-cat-search button {
    height: 44px;
  }

  #soft-category-page .xz-cat-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  #soft-category-page .xz-cat-card {
    grid-template-columns: 36px minmax(0, 1fr);
    min-height: 104px;
    padding: 12px;
  }

  #soft-category-page .xz-cat-card__icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
  }

  #soft-category-page .xz-cat-card__icon svg {
    width: 21px;
    height: 21px;
  }

  #soft-category-page .section-title,
  #soft-category-page .side-box h2 {
    font-size: 20px;
  }

  #soft-category-page .section-desc {
    font-size: 14px;
  }

  #soft-category-page .xz-cat-section .section-head {
    align-items: flex-start;
  }

  #soft-category-page .xz-soft-card {
    grid-template-columns: 56px minmax(0, 1fr);
    min-height: 0;
    padding: 14px;
  }

  #soft-category-page .xz-soft-card__icon,
  #soft-category-page .xz-soft-card__icon img {
    width: 56px;
    height: 56px;
  }

  #soft-category-page .xz-soft-card h3 {
    font-size: 15px;
  }

  #soft-category-page .xz-soft-card p {
    min-height: 0;
    font-size: 14px;
  }

  #soft-category-page .xz-soft-card__meta span {
    font-size: 12px;
  }
}

@media (max-width: 420px) {
  #soft-category-page .xz-cat-card {
    grid-template-columns: 1fr;
    grid-template-areas:
      "icon"
      "title"
      "desc";
  }

  #soft-category-page .xz-soft-card {
    grid-template-columns: 1fr;
  }

  #soft-category-page .xz-soft-card__btn {
    justify-self: stretch;
  }
}

/* 系统工具频道页：独立面包屑 */
#soft-category-page .breadcrumb-wrap {
  width: min(var(--container), calc(100% - 32px));
  margin: 12px auto 12px;
  padding: 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#soft-category-page .breadcrumb-wrap::before {
  content: "当前位置：";
  color: var(--faint);
}

#soft-category-page .breadcrumb-wrap a {
  color: var(--green-dark);
  font-weight: 500;
  text-decoration: none;
}

#soft-category-page .breadcrumb-wrap a:hover {
  color: var(--green);
}

#soft-category-page .breadcrumb-wrap span {
  color: #9ca3af;
}

#soft-category-page .xz-cat-hero {
  margin-top: 0;
}

@media (max-width: 768px) {
  #soft-category-page .breadcrumb-wrap {
    width: min(100% - 20px, var(--container));
    margin: 10px auto;
    overflow-x: auto;
    font-size: 12px;
    text-overflow: clip;
  }
}

/* 频道列表页：字号与系统工具频道页统一 */
#soft-list-page {
  font-size: 14px;
}

#soft-list-page .crumbs {
  font-size: 13px;
  line-height: 1.35;
}

#soft-list-page .page-title h1 {
  font-size: 30px;
  line-height: 1.25;
}

#soft-list-page .page-title p {
  color: var(--text);
  font-size: 14px;
  line-height: 1.75;
}

#soft-list-page .side-box > h2,
#soft-list-page .side-box .box-title h2 {
  font-size: 20px;
  line-height: 1.35;
}

#soft-list-page .cat-links a {
  font-size: 14px;
}

#soft-list-page .list-item h2 {
  font-size: 17px;
  line-height: 1.35;
}

#soft-list-page .list-item p {
  font-size: 14px;
  line-height: 1.65;
}

#soft-list-page .meta-line {
  font-size: 12px;
}

#soft-list-page .list-item .btn {
  font-size: 14px;
}

#soft-list-page .side-box .rank-list a {
  font-size: 14px;
  line-height: 1.3;
}

#soft-list-page .side-box .rank-list small {
  font-size: 12px;
}

#soft-list-page .side-box.js-tabs .box-title {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 6px;
  align-items: center;
}

#soft-list-page .side-box.js-tabs .box-title h2 {
  min-width: 0;
  overflow: hidden;
  font-size: 18px;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#soft-list-page .side-box.js-tabs .mod-tablist {
  gap: 4px;
  margin-bottom: 0;
}

#soft-list-page .side-box.js-tabs .mod-tablist li {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 32px;
  padding: 5px 9px;
  font-size: 12px;
  line-height: 1;
  word-break: keep-all;
  white-space: nowrap;
}

@media (max-width: 760px) {
  #soft-list-page .page-title h1 {
    font-size: 26px;
  }

  #soft-list-page .side-box > h2,
  #soft-list-page .side-box .box-title h2 {
    font-size: 20px;
  }

  #soft-list-page .list-item h2 {
    font-size: 16px;
  }
}

#soft-list-page .list-item p {
  display: -webkit-box;
  max-width: 100%;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

#soft-list-page .meta-line {
  gap: 6px;
  margin-top: 10px;
}

#soft-list-page .meta-line span {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 2px 8px;
  color: #4b5563;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  font-size: 12px;
  line-height: 1.35;
  white-space: nowrap;
}

#soft-list-page .meta-line span:nth-child(1) {
  color: #15803d;
  background: #f0fdf4;
  border-color: #bbf7d0;
}

#soft-list-page .meta-line span:nth-child(2) {
  color: #2563eb;
  background: #eff6ff;
  border-color: #bfdbfe;
}

#soft-list-page .meta-line span:nth-child(3) {
  color: #9a3412;
  background: #fff7ed;
  border-color: #fed7aa;
}

#soft-list-page .meta-line span:nth-child(4) {
  color: #475569;
  background: #f8fafc;
  border-color: #e2e8f0;
}

#soft-list-page .cat-links a {
  gap: 8px;
}

#soft-list-page .cat-links a::before {
  content: "";
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  background: currentColor;
  opacity: .92;
  -webkit-mask: var(--cat-icon, url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M4 5h16v4H4zm0 5h16v4H4zm0 5h16v4H4z'/%3E%3C/svg%3E")) center / 16px 16px no-repeat;
  mask: var(--cat-icon, url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M4 5h16v4H4zm0 5h16v4H4zm0 5h16v4H4z'/%3E%3C/svg%3E")) center / 16px 16px no-repeat;
}

#soft-list-page .cat-links a:nth-child(1) {
  --cat-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 4a10 10 0 0 0-9 14h4a6 6 0 1 1 10 0h4A10 10 0 0 0 12 4zm1 3v6.2l4.2 2.4-1.2 2.1-5-2.9V7z'/%3E%3C/svg%3E");
}

#soft-list-page .cat-links a:nth-child(2) {
  --cat-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 4a8 8 0 1 1-7.5 10.7l2.1-.8A5.8 5.8 0 1 0 8 7.6V11H5V4h7v3H9.8A5.8 5.8 0 0 1 12 4z'/%3E%3C/svg%3E");
}

#soft-list-page .cat-links a:nth-child(3) {
  --cat-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M4 5h16v12H4zm2 2v8h12V7zm4 11h4v2h-4z'/%3E%3C/svg%3E");
}

#soft-list-page .cat-links a:nth-child(4) {
  --cat-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 3c4.4 0 8 1.3 8 3v12c0 1.7-3.6 3-8 3s-8-1.3-8-3V6c0-1.7 3.6-3 8-3zm0 3c-3 0-5 .6-5 1s2 1 5 1 5-.6 5-1-2-1-5-1zm-5 5v3c0 .4 2 1 5 1s5-.6 5-1v-3c-1.4.7-3.5 1-5 1s-3.6-.3-5-1z'/%3E%3C/svg%3E");
}

#soft-list-page .cat-links a:nth-child(5) {
  --cat-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M6 4h12v16H6zm3 3v2h6V7zm0 4v2h6v-2zm0 4v2h4v-2z'/%3E%3C/svg%3E");
}

#soft-list-page .cat-links a:nth-child(6) {
  --cat-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M8 4h8l1 2h4v3H3V6h4zm-1 6h14l-2 10H9zm2 2 1 6h7l1-6z'/%3E%3C/svg%3E");
}

#soft-list-page .cat-links a:nth-child(7) {
  --cat-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M5 4h10l4 4v16H5zm9 2v4h4zM8 13h8v2H8zm0 4h6v2H8z'/%3E%3C/svg%3E");
}

#soft-list-page .cat-links a:nth-child(8) {
  --cat-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 3a9 9 0 1 1 0 18 9 9 0 0 1 0-18zm1 4h-2v6l5 3 1-1.7-4-2.3z'/%3E%3C/svg%3E");
}

#soft-list-page .cat-links a:nth-child(9) {
  --cat-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M10 3h4v5l5 9a4 4 0 0 1-3.5 6h-7A4 4 0 0 1 5 17l5-9zm1.2 8-3.5 6a2 2 0 0 0 1.8 3h7a2 2 0 0 0 1.8-3l-3.5-6z'/%3E%3C/svg%3E");
}

#soft-list-page .cat-links a:nth-child(10) {
  --cat-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M7 3h10v3h3v5h-3v10H7V11H4V6h3zm2 2v3h6V5zm0 9v5h6v-5z'/%3E%3C/svg%3E");
}

#soft-list-page .cat-links a:nth-child(11) {
  --cat-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M9 2h6v8h2a4 4 0 0 1 0 8h-3v4h-4v-4H7a4 4 0 0 1 0-8h2zm0 11H7a1 1 0 0 0 0 2h3v-2zm5 0v2h3a1 1 0 0 0 0-2z'/%3E%3C/svg%3E");
}

#soft-list-page .cat-links a:nth-child(12) {
  --cat-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 3a9 9 0 1 1 0 18 9 9 0 0 1 0-18zm0 4a5 5 0 1 0 0 10 5 5 0 0 0 0-10zm0 3a2 2 0 1 1 0 4 2 2 0 0 1 0-4z'/%3E%3C/svg%3E");
}

#soft-list-page .cat-links a:nth-child(13) {
  --cat-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M5 10a2 2 0 1 1 0 4 2 2 0 0 1 0-4zm7 0a2 2 0 1 1 0 4 2 2 0 0 1 0-4zm7 0a2 2 0 1 1 0 4 2 2 0 0 1 0-4z'/%3E%3C/svg%3E");
}

@media (max-width: 520px) {
  #soft-list-page .meta-line {
    gap: 5px;
  }

  #soft-list-page .meta-line span {
    min-height: 23px;
    padding: 2px 7px;
    font-size: 11px;
  }
}

#soft-list-page .cat-links a {
  gap: 0;
}

#soft-list-page .cat-links a::before {
  content: none;
  display: none;
}

#soft-category-page .xz-soft-card__meta span {
  white-space: nowrap;
}

#soft-category-page .xz-soft-card__meta span:nth-child(1) {
  color: #2563eb;
  background: #eff6ff;
  border-color: #bfdbfe;
}

#soft-category-page .xz-soft-card__meta span:nth-child(2) {
  color: #9a3412;
  background: #fff7ed;
  border-color: #fed7aa;
}

#soft-category-page .xz-soft-card__meta span:nth-child(3) {
  color: #15803d;
  background: #f0fdf4;
  border-color: #bbf7d0;
}

.container .anchor-tabs {
  position: static;
  top: auto;
  z-index: auto;
}

.cover-grid--single {
  display: block;
  position: relative;
  width: min(100%, 840px);
  padding: 0 56px;
  box-sizing: border-box;
  margin-inline: auto;
}

.cover-grid--single img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: contain;
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.cover-grid--single img.is-gallery-hidden {
  display: none;
}

.cover-grid--single.has-gallery::before,
.cover-grid--single.has-gallery::after {
  display: none;
}

.cover-nav {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  color: #fff;
  background: rgba(17, 24, 39, .58);
  border: 1px solid rgba(255, 255, 255, .55);
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(17, 24, 39, .22);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
}

.cover-nav:hover,
.cover-nav:focus-visible {
  background: rgba(22, 163, 74, .88);
  outline: none;
}

.cover-nav--prev {
  left: 6px;
}

.cover-nav--next {
  right: 6px;
}

@media (max-width: 760px) {
  .cover-grid--single {
    width: 100%;
    padding: 0 42px;
  }

  .cover-grid--single img {
    width: 100%;
    max-height: none;
  }

  .cover-nav {
    width: 34px;
    height: 34px;
    font-size: 23px;
  }

  .cover-nav--prev {
    left: 4px;
  }

  .cover-nav--next {
    right: 4px;
  }
}

.article-body .art-content,
.article-body .art-content p,
.article-body .art-content li,
.article-body > p {
  max-width: none;
}

.article-body .art-content {
  width: 100%;
}

.article-body .art-content p {
  text-wrap: auto;
}

.article-body .art-content a {
  color: var(--link);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color .18s ease;
}

.article-body .art-content a:hover {
  color: var(--link-hover);
}

.detail-hero {
  grid-template-columns: 96px minmax(0, 1fr) 226px;
  align-items: center;
}
/* 右侧下载区按钮多、列高时，左侧信息垂直居中，留白上下均分不再堆在底部；
   下载区始终顶部对齐，图标与标题随左列居中。 */
.detail-hero .download-stack { align-self: start; }
.detail-hero .app-icon { align-self: center; }

.detail-hero > div:not(.download-stack) {
  min-width: 0;
}

.detail-hero h1 {
  max-width: none;
  overflow: visible;
  color: var(--ink);
  line-height: 1.25;
  text-overflow: clip;
  white-space: normal;
  word-break: break-word;
}

.detail-hero .download-stack {
  width: 226px;
  min-width: 0;
}

.site-footer {
  font-size: 14px;
  line-height: 1.7;
}

.site-footer p,
.site-footer a,
.footer-note,
.copyright {
  font-size: 14px;
}

@media (max-width: 980px) {
  .detail-hero {
    grid-template-columns: 74px minmax(0, 1fr);
  }

  .detail-hero .download-stack {
    width: auto;
  }
}

/* 电脑软件下载频道首页 /soft/ */
#soft-channel-page {
  --channel-ink: #111827;
  --channel-text: #374151;
  --channel-muted: #6b7280;
  --channel-line: #e5e7eb;
  --channel-green: #16a34a;
  --channel-green-dark: #15803d;
  --channel-green-soft: #ecfdf5;
  font-size: 14px;
}

#soft-channel-page .breadcrumb-wrap {
  width: min(var(--container), calc(100% - 32px));
  margin: 12px auto;
  overflow: hidden;
  color: var(--channel-muted);
  font-size: 13px;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#soft-channel-page .breadcrumb-wrap::before {
  content: "当前位置：";
  color: var(--faint);
}

#soft-channel-page .breadcrumb-wrap a {
  color: var(--channel-green-dark);
  font-weight: 500;
  text-decoration: none;
}

#soft-channel-page .breadcrumb-wrap a:hover {
  color: var(--channel-green);
}

#soft-channel-page .xz-channel-page {
  padding-bottom: 0;
}

#soft-channel-page .card {
  border-color: var(--channel-line);
  border-radius: 14px;
}

#soft-channel-page .card.pad {
  padding: 22px;
}

#soft-channel-page .xz-channel-hero {
  display: block;
  margin: 0 0 18px;
  padding: 26px 28px;
  background:
    radial-gradient(circle at 12% 0, rgba(22, 163, 74, .10), transparent 30%),
    #fff;
  box-shadow: 0 12px 28px rgba(15, 23, 42, .05);
}

#soft-channel-page .xz-channel-hero h1 {
  margin: 0 0 10px;
  color: var(--channel-ink);
  font-size: 30px;
  font-weight: 700;
  line-height: 1.25;
}

#soft-channel-page .xz-channel-hero p {
  max-width: none;
  margin: 0;
  color: var(--channel-text);
  font-size: 14px;
  line-height: 1.75;
}

#soft-channel-page .xz-channel-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

#soft-channel-page .xz-channel-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 5px 12px;
  color: var(--channel-green-dark);
  background: var(--channel-green-soft);
  border: 1px solid #bbf7d0;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

#soft-channel-page .xz-channel-quick {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

#soft-channel-page .xz-channel-quick a,
#soft-channel-page .xz-side-cat-links a {
  display: flex;
  align-items: center;
  min-height: 40px;
  padding: 9px 12px;
  overflow: hidden;
  color: var(--channel-muted);
  background: #f7faf8;
  border: 1px solid transparent;
  border-radius: 10px;
  font-size: 14px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#soft-channel-page .xz-channel-quick a:hover,
#soft-channel-page .xz-side-cat-links a:hover,
#soft-channel-page .xz-side-cat-links a:first-child {
  color: var(--channel-green-dark);
  background: var(--channel-green-soft);
  border-color: #bbf7d0;
  font-weight: 700;
}

#soft-channel-page .xz-channel-cats {
  margin-bottom: 18px;
}

#soft-channel-page .xz-channel-cat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

#soft-channel-page .xz-channel-cat-card {
  display: grid;
  gap: 6px;
  min-height: 104px;
  padding: 14px;
  color: var(--channel-text);
  background: #fff;
  border: 1px solid var(--channel-line);
  border-radius: 12px;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

#soft-channel-page .xz-channel-cat-card:hover {
  color: var(--channel-green-dark);
  border-color: #bbf7d0;
  box-shadow: 0 12px 22px rgba(15, 23, 42, .06);
  transform: translateY(-1px);
}

#soft-channel-page .xz-channel-cat-card strong {
  color: var(--channel-ink);
  font-size: 16px;
  line-height: 1.35;
}

#soft-channel-page .xz-channel-cat-card span {
  display: -webkit-box;
  overflow: hidden;
  color: var(--channel-muted);
  font-size: 13px;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

#soft-channel-page .xz-channel-layout {
  grid-template-columns: minmax(0, 7fr) minmax(280px, 3fr);
  gap: 22px;
}

#soft-channel-page .xz-channel-main {
  display: grid;
  gap: 20px;
}

#soft-channel-page .xz-channel-section {
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(22, 37, 29, .04);
}

#soft-channel-page .xz-channel-section .section-head {
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 14px;
}

#soft-channel-page .section-title {
  font-size: 20px;
  line-height: 1.35;
}

#soft-channel-page .section-desc {
  margin-top: 4px;
  color: var(--channel-muted);
  font-size: 14px;
  line-height: 1.65;
}

#soft-channel-page .more-link {
  flex: 0 0 auto;
  padding: 5px 14px;
  color: var(--channel-green);
  border: 1px solid var(--channel-line);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
}

#soft-channel-page .more-link:hover {
  color: var(--channel-green-dark);
  border-color: #bbf7d0;
  background: var(--channel-green-soft);
}

#soft-channel-page .xz-channel-soft-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

#soft-channel-page .xz-soft-card {
  display: grid;
  grid-template-columns: 60px minmax(0, 1fr);
  gap: 12px;
  min-height: 178px;
  padding: 14px;
  background: #fff;
  border: 1px solid var(--channel-line);
  border-radius: 12px;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

#soft-channel-page .xz-soft-card:hover {
  border-color: #bbf7d0;
  box-shadow: 0 14px 26px rgba(15, 23, 42, .07);
  transform: translateY(-1px);
}

#soft-channel-page .xz-soft-card__icon,
#soft-channel-page .xz-soft-card__icon img {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  object-fit: contain;
}

#soft-channel-page .xz-soft-card__body {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 8px;
}

#soft-channel-page .xz-soft-card h3 {
  margin: 0;
  color: var(--channel-ink);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.42;
}

#soft-channel-page .xz-soft-card h3 a,
#soft-channel-page .rank-list a {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

#soft-channel-page .xz-soft-card p {
  display: -webkit-box;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  color: var(--channel-text);
  font-size: 14px;
  line-height: 1.65;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

#soft-channel-page .xz-soft-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

#soft-channel-page .xz-soft-card__meta span {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 2px 8px;
  border: 1px solid var(--channel-line);
  border-radius: 999px;
  font-size: 12px;
  line-height: 1.4;
  white-space: nowrap;
}

#soft-channel-page .xz-soft-card__meta span:nth-child(1) {
  color: #2563eb;
  background: #eff6ff;
  border-color: #bfdbfe;
}

#soft-channel-page .xz-soft-card__meta span:nth-child(2) {
  color: #9a3412;
  background: #fff7ed;
  border-color: #fed7aa;
}

#soft-channel-page .xz-soft-card__meta span:nth-child(3) {
  color: #15803d;
  background: #f0fdf4;
  border-color: #bbf7d0;
}

#soft-channel-page .xz-soft-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: start;
  min-height: 38px;
  padding: 7px 14px;
  color: var(--channel-green);
  background: var(--channel-green-soft);
  border: 1px solid #bbf7d0;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
}

#soft-channel-page .xz-soft-card__btn:hover {
  color: #fff;
  background: var(--channel-green);
  border-color: var(--channel-green);
}

#soft-channel-page .layout > aside {
  top: 120px;
}

#soft-channel-page .side-box {
  border-radius: 14px;
}

#soft-channel-page .side-box + .side-box {
  margin-top: 16px;
}

#soft-channel-page .side-box h2,
#soft-channel-page .side-box .box-title h2 {
  font-size: 20px;
  line-height: 1.35;
}

#soft-channel-page .xz-side-cat-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
}

#soft-channel-page .side-box .box-title {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
}

#soft-channel-page .side-box .box-title h2 {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#soft-channel-page .mod-tablist {
  gap: 4px;
}

#soft-channel-page .mod-tablist li {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 5px 9px;
  color: var(--channel-muted);
  font-size: 12px;
  line-height: 1;
  white-space: nowrap;
  word-break: keep-all;
}

#soft-channel-page .mod-tablist li.is-active {
  color: #fff;
  background: var(--channel-green);
  border-color: var(--channel-green);
}

#soft-channel-page .rank-list li {
  grid-template-columns: 28px 42px minmax(0, 1fr);
  min-height: 56px;
  padding: 4px 0;
  border-color: var(--channel-line);
}

#soft-channel-page .rank-ico {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 10px;
}

#soft-channel-page .rank-list img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  border-radius: 9px;
}

#soft-channel-page .rank-num {
  color: var(--channel-muted);
  background: #f1f5f9;
  border-radius: 8px;
}

#soft-channel-page .rank-num.top {
  color: #fff;
  background: var(--channel-green);
}

#soft-channel-page .rank-meta {
  min-width: 0;
}

#soft-channel-page .rank-list a {
  max-width: 100%;
  color: var(--channel-ink);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
}

#soft-channel-page .rank-list small {
  display: block;
  margin-top: 1px;
  overflow: hidden;
  color: var(--channel-muted);
  font-size: 12px;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#soft-channel-page .xz-channel-note p {
  margin: 0;
  color: var(--channel-muted);
  font-size: 14px;
  line-height: 1.75;
}

@media (max-width: 1080px) {
  #soft-channel-page .xz-channel-soft-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  #soft-channel-page .xz-channel-hero,
  #soft-channel-page .xz-channel-layout {
    grid-template-columns: 1fr;
  }

  #soft-channel-page .layout > aside {
    position: static;
    order: 2;
  }

  #soft-channel-page .xz-channel-cat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  #soft-channel-page .breadcrumb-wrap {
    width: min(100% - 20px, var(--container));
    margin: 10px auto;
    overflow-x: auto;
    font-size: 12px;
    text-overflow: clip;
  }

  #soft-channel-page .container {
    width: min(100% - 20px, var(--container));
  }

  #soft-channel-page .xz-channel-hero,
  #soft-channel-page .card.pad {
    padding: 16px;
  }

  #soft-channel-page .xz-channel-hero h1 {
    font-size: 26px;
  }

  #soft-channel-page .xz-channel-quick,
  #soft-channel-page .xz-side-cat-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #soft-channel-page .xz-channel-cat-grid {
    grid-template-columns: 1fr;
  }

  #soft-channel-page .xz-channel-section .section-head {
    align-items: flex-start;
  }

  #soft-channel-page .xz-soft-card {
    grid-template-columns: 56px minmax(0, 1fr);
    padding: 12px;
  }

  #soft-channel-page .xz-soft-card__icon,
  #soft-channel-page .xz-soft-card__icon img {
    width: 56px;
    height: 56px;
  }
}

/* ===================================================================
   /soft/xitong/ 系统工具「筛选列表页」（category_download）
   重点：查找与下载 —— 紧凑 hero + 子分类/排序筛选 + 横向列表卡片 + 右侧栏
   =================================================================== */
/* 侧栏在右：主内容 order:1（左 1fr），侧栏 order:2（右 320px） */
.xz-listing-layout { grid-template-columns: minmax(0, 1fr) 320px; }
.xz-listing-layout > .xz-listing-main { order: 1; min-width: 0; }
.xz-listing-layout > aside { order: 2; }

.xz-listing-hero {
  margin: 14px 0 16px;
  padding: 18px 22px;
  background: linear-gradient(135deg, var(--green-soft), #fff 62%), #fff;
  border: 1px solid var(--soft-line);
  border-radius: var(--radius);
}
.xz-listing-hero h1 { margin: 0 0 6px; font-size: 26px; }
.xz-listing-hero p { margin: 0; color: var(--muted); font-size: 14px; }

/* 筛选 / 排序条 */
.xz-filter { padding: 14px 16px; margin-bottom: 16px; display: grid; gap: 10px; }
.xz-filter__row { display: flex; align-items: flex-start; gap: 12px; }
.xz-filter__label { flex: 0 0 auto; padding-top: 5px; font-size: 13px; font-weight: 700; color: var(--muted); }
.xz-filter__chips { display: flex; flex-wrap: wrap; gap: 8px; }
.xz-filter__chips a {
  padding: 5px 13px; border: 1px solid var(--line); border-radius: 999px;
  font-size: 13px; color: var(--text); background: #fff;
  transition: color .18s, border-color .18s, background .18s;
}
.xz-filter__chips a:hover { color: var(--green-dark); border-color: #bbf7d0; background: var(--green-soft); }
.xz-filter__chips a.is-active { color: #fff; background: var(--green); border-color: var(--green); }

/* 横向列表卡片 */
.xz-soft-list { display: flex; flex-direction: column; gap: 12px; }
.xz-list-row {
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color .18s, box-shadow .18s;
}
.xz-list-row:hover { border-color: #bbf7d0; box-shadow: 0 10px 22px rgba(22, 163, 74, .08); }
.xz-list-row__icon img { width: 68px; height: 68px; border-radius: 12px; }
.xz-list-row__body { min-width: 0; }
.xz-list-row__title { margin: 0 0 5px; font-size: 17px; line-height: 1.3; }
.xz-list-row__title a { color: var(--ink); }
.xz-list-row__title a:hover { color: var(--green-dark); }
.xz-list-row__desc {
  margin: 0 0 8px; color: var(--muted); font-size: 13px; line-height: 1.6;
  display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden;
}
.xz-list-row__meta { display: flex; flex-wrap: wrap; gap: 8px; font-size: 12.5px; }
.xz-list-row__meta span {
  display: inline-flex; align-items: center;
  color: var(--muted); background: var(--bg);
  border: 1px solid var(--soft-line); border-radius: 6px;
  padding: 2px 9px; line-height: 1.5;
}
.xz-list-row__meta .tag {
  color: var(--green-dark); background: var(--green-soft);
  border-color: #bbf7d0; font-weight: 600;
}
.xz-list-row__action { flex: 0 0 auto; }
.xz-list-row__btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 9px 20px; border-radius: 8px; white-space: nowrap;
  color: #fff; background: var(--green); font-weight: 600; font-size: 14px;
  transition: background .18s;
}
.xz-list-row__btn:hover { background: var(--green-dark); }

/* 列表页移动端：筛选+列表优先，侧栏下移 */
@media (max-width: 980px) {
  .xz-listing-layout { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .xz-list-row { grid-template-columns: 54px minmax(0, 1fr); gap: 12px; }
  .xz-list-row__icon img { width: 54px; height: 54px; }
  .xz-list-row__action { grid-column: 1 / -1; }
  .xz-list-row__btn { width: 100%; }
  .xz-listing-hero { padding: 16px; }
  .xz-listing-hero h1 { font-size: 22px; }
  .xz-filter__row { flex-direction: column; gap: 6px; }
}

/* ===================================================================
   /soft/ 电脑软件「频道聚合页」补充（category_download_channel）
   =================================================================== */
/* 热门软件分类宫格 */
.xz-channel-block { margin: 0 0 22px; }
.xz-ch-cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(216px, 1fr));
  gap: 14px;
}
.xz-ch-cat {
  padding: 14px 16px; background: #fff;
  border: 1px solid var(--line); border-radius: var(--radius);
  transition: border-color .18s, box-shadow .18s;
}
.xz-ch-cat:hover { border-color: #bbf7d0; box-shadow: 0 10px 22px rgba(22, 163, 74, .06); }
.xz-ch-cat__name { display: inline-block; margin-bottom: 8px; font-size: 16px; font-weight: 700; color: var(--ink); }
.xz-ch-cat__name:hover { color: var(--green-dark); }
.xz-ch-cat__links { display: flex; flex-wrap: wrap; gap: 6px; }
.xz-ch-cat__links a { font-size: 12.5px; color: var(--muted); padding: 3px 9px; border-radius: 999px; background: var(--bg); }
.xz-ch-cat__links a:hover { color: var(--green-dark); background: var(--green-soft); }

/* 装机必备 */
.xz-must-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 10px; }
.xz-must-item {
  display: flex; align-items: center; gap: 10px; min-width: 0;
  padding: 9px 12px; background: #fff;
  border: 1px solid var(--line); border-radius: var(--radius);
}
.xz-must-item:hover { border-color: #bbf7d0; background: var(--green-soft); }
.xz-must-item img { width: 38px; height: 38px; border-radius: 8px; flex: 0 0 auto; }
.xz-must-item span { min-width: 0; font-size: 13px; font-weight: 600; color: var(--text); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* 软件专题入口 */
.xz-ch-topic-grid { display: flex; flex-wrap: wrap; gap: 10px; }
.xz-ch-topic {
  padding: 9px 16px; background: #fff; font-size: 14px; font-weight: 600; color: var(--text);
  border: 1px solid var(--line); border-radius: 999px;
}
.xz-ch-topic:hover { color: var(--green-dark); border-color: #bbf7d0; background: var(--green-soft); }

@media (max-width: 560px) {
  .xz-ch-cat-grid { grid-template-columns: 1fr; }
}

/* ===================================================================
   /soft/ 频道页：分类聚合网格（10 个大分类，每行 2 个，每块含 2-3 软件）
   =================================================================== */
.xz-ch-col-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.xz-ch-col { display: flex; flex-direction: column; }
.xz-ch-col__head {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding-bottom: 10px; margin-bottom: 6px;
  border-bottom: 1px solid var(--soft-line);
}
.xz-ch-col__title { margin: 0; font-size: 17px; line-height: 1.3; }
.xz-ch-col__title a { color: var(--ink); }
.xz-ch-col__title a:hover { color: var(--green-dark); }
.xz-ch-col__head .more-link { flex: 0 0 auto; font-size: 13px; }

.xz-ch-col__list { display: flex; flex-direction: column; }
.xz-ch-col__item {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 10px 8px;
  border-radius: var(--radius);
  transition: background .16s;
}
.xz-ch-col__item + .xz-ch-col__item { border-top: 1px solid var(--soft-line); }
.xz-ch-col__item:hover { background: var(--green-soft); }
.xz-ch-col__item:hover .xz-ch-col__go { color: #fff; background: var(--green); border-color: var(--green); }
.xz-ch-col__ico { width: 48px; height: 48px; border-radius: 10px; }
.xz-ch-col__body { min-width: 0; display: flex; flex-direction: column; gap: 3px; }
.xz-ch-col__name {
  font-size: 14px; font-weight: 600; color: var(--text);
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.xz-ch-col__meta { display: flex; flex-wrap: wrap; font-size: 12px; color: var(--muted); }
.xz-ch-col__meta span:not(:first-child)::before { content: "·"; margin: 0 6px; color: var(--faint); }
.xz-ch-col__go {
  flex: 0 0 auto; align-self: center;
  padding: 5px 14px; font-size: 13px; font-weight: 600;
  color: var(--green-dark); background: #fff;
  border: 1px solid var(--line); border-radius: 999px;
  transition: all .16s;
}

/* 中屏：侧栏收起后分类网格仍 2 列；手机单列 */
@media (max-width: 560px) {
  .xz-ch-col-grid { grid-template-columns: 1fr; }
}

/* ===================================================================
   频道页：分类导航 chip 条（图标 + 名称胶囊，替代原编辑推荐）
   =================================================================== */
.xz-cat-nav { display: flex; flex-wrap: wrap; gap: 10px; margin: 0 0 20px; }
.xz-cat-nav__item {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 14px; font-weight: 600; color: var(--text);
  transition: color .16s, border-color .16s, background .16s;
}
.xz-cat-nav__item:hover { color: var(--green-dark); border-color: #bbf7d0; background: var(--green-soft); }
.xz-cat-nav__item.is-active { color: #fff; background: var(--green); border-color: var(--green); }
.xz-cat-nav__ico { display: inline-flex; width: 18px; height: 18px; color: var(--green); flex: 0 0 auto; }
.xz-cat-nav__item:hover .xz-cat-nav__ico { color: var(--green-dark); }
.xz-cat-nav__item.is-active .xz-cat-nav__ico { color: #fff; }
.xz-cat-nav__ico svg { width: 100%; height: 100%; display: block; }
@media (max-width: 560px) {
  .xz-cat-nav { gap: 8px; }
  .xz-cat-nav__item { padding: 8px 12px; font-size: 13px; }
  .xz-cat-nav__ico { width: 16px; height: 16px; }
}

/* ===================================================================
   手机端页脚：链接组改横排，缩短整体高度（原来每个链接独占一行太长）
   =================================================================== */
@media (max-width: 760px) {
  .site-footer { margin-top: 24px; padding: 22px 0; }
  /* 4 个分组两列排布，品牌+简介占满一行 */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 14px 18px; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .site-footer h3 { margin-bottom: 6px; }
  /* 组内链接横排换行，不再每条一行 */
  .site-footer .footer-grid a { display: inline-block; margin: 0 14px 6px 0; }
  .footer-note { margin-top: 4px; }
}
@media (max-width: 380px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ===================================================================
   手机端分页：横排紧凑按钮（覆盖 .pager a{width:100%} 导致的整行铺满堆叠）
   =================================================================== */
@media (max-width: 760px) {
  .xz-pager { display: flex; flex-wrap: wrap; justify-content: center; gap: 6px; }
  .xz-pager a,
  .xz-pager span {
    width: auto;
    min-width: 36px;
    height: 36px;
    padding: 0 11px;
  }
}

/* 页脚频道/服务等链接：点击区域只到文字宽度，避免点右侧空白也跳转 */
.footer-grid a {
  width: -moz-fit-content;
  width: fit-content;
}

/* ===================================================================
   最新更新页（/new/，page/new_app）：悬停切换的分类标签 + 最新条目网格
   =================================================================== */
.xz-new-page { padding-bottom: 8px; }

/* 标签条（鼠标滑过即切换，JS 给当前项加 .is-active） */
.xz-new-tabhd {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  list-style: none;
  margin: 14px 0 18px;
  padding: 0;
  border-bottom: 2px solid var(--soft-line);
}
.xz-new-tabhd li a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 11px 18px;
  margin-bottom: -2px;
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
  border-radius: 10px 10px 0 0;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: color .16s, background .16s, border-color .16s;
}
.xz-new-tabhd__ico { display: inline-flex; width: 18px; height: 18px; flex: 0 0 auto; }
.xz-new-tabhd__ico svg { width: 100%; height: 100%; display: block; }
.xz-new-tabhd li a:hover { color: var(--green-dark); background: var(--green-soft); }
.xz-new-tabhd li.is-active a {
  color: #fff;
  background: var(--green);
  border-bottom-color: var(--green);
}
.xz-new-tabhd li.is-active a:hover { color: #fff; background: var(--green-dark); }

/* 最新条目网格：一行 4 个 */
.xz-new-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.xz-new-item {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color .16s, box-shadow .16s, transform .16s;
}
.xz-new-item:hover { border-color: #bbf7d0; box-shadow: 0 10px 22px rgba(22, 163, 74, .08); transform: translateY(-1px); }
.xz-new-item__ico { width: 56px; height: 56px; border-radius: 10px; object-fit: cover; background: var(--bg); }
.xz-new-item__body { min-width: 0; display: flex; flex-direction: column; gap: 5px; }
.xz-new-item__name {
  font-size: 14px; font-weight: 600; color: var(--ink);
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.xz-new-item__meta { display: flex; flex-wrap: wrap; gap: 6px 10px; font-size: 12px; color: var(--muted); }
.xz-new-item__meta .date { color: var(--muted); }
.xz-new-item__meta .is-today { color: #dc2626; font-weight: 700; }

/* 查看更多 */
.xz-new-more-wrap { text-align: center; margin-top: 18px; }
.xz-new-more {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 22px;
  color: var(--green-dark); font-weight: 600;
  border: 1px solid var(--green); border-radius: 999px;
  transition: color .16s, background .16s;
}
.xz-new-more:hover { color: #fff; background: var(--green); }

@media (max-width: 1000px) { .xz-new-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 720px) { .xz-new-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) {
  .xz-new-tabhd li a { padding: 9px 12px; font-size: 14px; }
}
@media (max-width: 460px) { .xz-new-grid { grid-template-columns: 1fr; } }

/* 装机必备独立页面 */
#bibei-page {
  --bibei-primary: #16a34a;
  --bibei-primary-dark: #15803d;
  --bibei-primary-soft: #dcfce7;
  --bibei-bg: #f6f8f9;
  --bibei-card: #fff;
  --bibei-text: #0f172a;
  --bibei-muted: #64748b;
  --bibei-border: #e5e7eb;
  background: var(--bibei-bg);
  color: var(--bibei-text);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", Arial, sans-serif;
}
#bibei-page .bibei-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 16px 20px 14px;
  color: var(--bibei-muted);
  font-size: 13px;
  line-height: 1.6;
}
#bibei-page .bibei-breadcrumb a {
  color: var(--bibei-muted);
  text-decoration: none;
}
#bibei-page .bibei-breadcrumb a:hover {
  color: var(--bibei-primary);
}
#bibei-page .bibei-breadcrumb span {
  color: #9ca3af;
}
#bibei-page .bibei-breadcrumb .bibei-breadcrumb__label {
  color: var(--bibei-muted);
}
#bibei-page .bibei-breadcrumb span:last-child {
  color: var(--bibei-primary-dark);
}
.bibei-page {
  padding-bottom: 28px;
}
.bibei-hero-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 20px;
  align-items: stretch;
  margin-bottom: 24px;
}
.bibei-hero,
.bibei-flow-card,
.bibei-section,
.bibei-side-card,
.bibei-faq {
  background: var(--bibei-card);
  border: 1px solid var(--bibei-border);
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, .04);
}
.bibei-hero {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 28px;
  align-items: center;
  min-height: 208px;
  padding: 34px 42px;
  background:
    radial-gradient(circle at 80% 30%, rgba(22, 163, 74, .16), transparent 32%),
    linear-gradient(135deg, #fff 0%, #f2fff8 48%, #fff 100%);
}
.bibei-hero::after {
  display: none;
}
.bibei-hero__content {
  position: relative;
  z-index: 1;
}
.bibei-hero h1 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--bibei-text);
  font-size: 40px;
  line-height: 1.22;
  font-weight: 800;
  letter-spacing: 0;
}
.bibei-hero h1::first-letter {
  color: var(--bibei-primary);
}
.bibei-hero h1 span {
  color: var(--bibei-primary);
}
.bibei-hero p {
  position: relative;
  z-index: 1;
  max-width: 620px;
  margin: 14px 0 0;
  color: #334155;
  font-size: 15px;
  line-height: 1.75;
}
.bibei-benefits {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: nowrap;
  gap: 18px;
  align-items: center;
  justify-content: start;
  margin-top: 28px;
}
.bibei-benefits span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  flex: 0 0 auto;
  min-width: max-content;
  padding: 0;
  color: var(--bibei-primary-dark);
  font-size: 13px;
  font-weight: 700;
  background: transparent;
  border: 0;
  border-radius: 0;
}
.bibei-benefits strong,
.bibei-benefits em {
  display: inline;
  white-space: nowrap;
}
.bibei-benefits strong {
  line-height: 1.25;
}
.bibei-benefits em {
  margin-left: 4px;
  color: var(--bibei-muted);
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
}
.bibei-benefits i {
  display: inline-flex;
  flex: 0 0 34px;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  color: var(--bibei-primary);
  font-style: normal;
  background: #dcfce7;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px #bbf7d0;
}
.bibei-hero-art {
  position: relative;
  z-index: 1;
  height: 176px;
  transform: translateY(-16px);
}
.bibei-art-monitor {
  position: absolute;
  left: 50%;
  top: 38%;
  width: 150px;
  height: 112px;
  border-radius: 24px;
  background: linear-gradient(145deg, #22c55e, #16a34a);
  box-shadow: 0 28px 44px rgba(22, 163, 74, .22), inset 0 0 0 2px rgba(255,255,255,.34);
  transform: translate(-50%, -50%) rotateX(10deg) rotateZ(0deg);
}
.bibei-art-monitor::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -38px;
  width: 116px;
  height: 32px;
  border-radius: 50%;
  background: rgba(22, 163, 74, .14);
  transform: translateX(-50%);
}
.bibei-art-monitor::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -26px;
  width: 72px;
  height: 30px;
  border-radius: 10px 10px 18px 18px;
  background: linear-gradient(180deg, #bbf7d0, #86efac);
  box-shadow: 0 14px 28px rgba(22, 163, 74, .16);
  transform: translateX(-50%);
}
.bibei-art-monitor i {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 42px;
  height: 42px;
  border-bottom: 8px solid #fff;
  border-radius: 0 0 4px 4px;
  transform: translate(-50%, -56%);
}
.bibei-art-monitor i::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -12px;
  width: 8px;
  height: 42px;
  border-radius: 999px;
  background: #fff;
  transform: translateX(-50%);
}
.bibei-art-monitor i::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 18px;
  width: 24px;
  height: 24px;
  border-right: 8px solid #fff;
  border-bottom: 8px solid #fff;
  transform: translateX(-50%) rotate(45deg);
}
.bibei-art-cube {
  position: absolute;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .78);
  border: 1px solid #bbf7d0;
  box-shadow: 0 14px 30px rgba(15, 23, 42, .08);
}
.bibei-art-cube--left {
  left: 22px;
  top: 64px;
}
.bibei-art-cube--right {
  right: 22px;
  top: 38px;
}
.bibei-flow-card {
  padding: 24px;
}
.bibei-flow-card h2,
.bibei-side-card h2 {
  margin: 0 0 16px;
  color: var(--bibei-text);
  font-size: 20px;
  line-height: 1.35;
  font-weight: 800;
}
.bibei-flow-card ol,
.bibei-order-list,
.bibei-hot-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.bibei-flow-card li {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  min-height: 40px;
  border-bottom: 1px dashed var(--bibei-border);
}
.bibei-flow-card li:last-child {
  border-bottom: 0;
}
.bibei-flow-card li span,
.bibei-order-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  background: var(--bibei-primary);
  border-radius: 50%;
}
.bibei-flow-card li strong {
  font-size: 14px;
  font-weight: 700;
}
.bibei-flow-card li em {
  color: var(--bibei-muted);
  font-size: 12px;
  font-style: normal;
  white-space: nowrap;
}
.bibei-fixed-anchor {
  position: fixed;
  top: 150px;
  right: max(14px, calc((100vw - 1180px) / 2 - 118px));
  z-index: 20;
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 96px;
  padding: 10px;
  background: rgba(255, 255, 255, .94);
  border: 1px solid var(--bibei-border);
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(15, 23, 42, .08);
  backdrop-filter: blur(10px);
}
.bibei-fixed-anchor strong {
  display: block;
  padding: 2px 0 5px;
  color: var(--bibei-text);
  font-size: 12px;
  font-weight: 800;
  text-align: center;
}
.bibei-fixed-anchor a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 7px;
  overflow: hidden;
  color: #475569;
  font-size: 12px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
  background: #f8fafc;
  border: 1px solid transparent;
  border-radius: 999px;
}
.bibei-fixed-anchor a:hover {
  color: #fff;
  background: var(--bibei-primary);
  border-color: var(--bibei-primary);
}
.bibei-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 20px;
  align-items: start;
}
.bibei-main,
.bibei-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-width: 0;
}
.bibei-sidebar {
  gap: 20px;
}
.bibei-section,
.bibei-faq {
  margin-bottom: 0;
  padding: 22px;
}
.bibei-section-hd {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}
.bibei-section-hd h2 {
  margin: 0;
  color: var(--bibei-text);
  font-size: 22px;
  line-height: 1.35;
  font-weight: 800;
}
.bibei-section-hd p {
  margin: 6px 0 0;
  color: var(--bibei-muted);
  font-size: 14px;
  line-height: 1.7;
}
.bibei-more {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  padding: 0 16px;
  color: var(--bibei-primary-dark);
  font-size: 13px;
  font-weight: 700;
  border: 1px solid var(--bibei-border);
  border-radius: 999px;
}
.bibei-more:hover {
  color: #fff;
  background: var(--bibei-primary);
  border-color: var(--bibei-primary);
}
.bibei-priority-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.bibei-priority-section {
  padding: 18px;
}
.bibei-priority-section .bibei-section-hd {
  align-items: center;
  margin-bottom: 14px;
}
.bibei-priority-section .bibei-section-hd h2 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 20px;
}
.bibei-priority-section .bibei-section-hd h2 span {
  display: inline-flex;
  align-items: center;
  height: 20px;
  padding: 0 8px;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  background: var(--bibei-primary);
  border-radius: 999px;
}
.bibei-priority-section .bibei-section-hd p {
  display: inline;
  margin: 0 0 0 10px;
  font-size: 13px;
}
.bibei-priority-section .bibei-section-hd > div {
  display: flex;
  align-items: center;
  min-width: 0;
}
.bibei-priority-section .bibei-priority-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}
.bibei-priority-section .bibei-soft-card {
  display: flex;
  flex-direction: column;
  min-height: 190px;
  padding: 14px 10px 12px;
  text-align: center;
  align-items: center;
}
.bibei-priority-section .bibei-soft-card__icon {
  width: 64px;
  height: 64px;
  margin-bottom: 10px;
}
.bibei-priority-section .bibei-soft-card__icon img {
  width: 64px;
  height: 64px;
}
.bibei-priority-section .bibei-soft-card__body {
  width: 100%;
  align-items: center;
}
.bibei-priority-section .bibei-soft-card h3 {
  min-height: 38px;
  font-size: 14px;
  line-height: 1.35;
}
.bibei-priority-section .bibei-soft-card p {
  min-height: 38px;
  margin: 7px 0 0;
  font-size: 12px;
  line-height: 1.55;
}
.bibei-priority-section .bibei-soft-btn {
  min-width: 86px;
  height: 30px;
  margin-top: 10px;
  border-radius: 8px;
}
.bibei-soft-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.bibei-soft-card {
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr);
  gap: 14px;
  min-height: 150px;
  padding: 16px;
  background: #fff;
  border: 1px solid var(--bibei-border);
  border-radius: 14px;
  transition: transform .16s, border-color .16s, box-shadow .16s;
}
.bibei-soft-card:hover {
  transform: translateY(-2px);
  border-color: #86efac;
  box-shadow: 0 12px 28px rgba(22, 163, 74, .08);
}
.bibei-soft-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  overflow: hidden;
  background: #f8fafc;
  border: 1px solid #eef2f7;
  border-radius: 14px;
}
.bibei-soft-card__icon img {
  width: 58px;
  height: 58px;
  object-fit: cover;
}
.bibei-soft-card__body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.bibei-soft-card h3 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
  color: var(--bibei-text);
  font-size: 16px;
  line-height: 1.35;
  font-weight: 800;
}
.bibei-soft-card h3 a {
  color: inherit;
}
.bibei-soft-card h3 a:hover {
  color: var(--bibei-primary-dark);
}
.bibei-soft-card p {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 44px;
  margin: 8px 0 10px;
  color: #475569;
  font-size: 13px;
  line-height: 1.7;
}
.bibei-soft-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
}
.bibei-soft-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 8px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  border-radius: 999px;
}
.bibei-soft-tags .tag-size {
  color: #2563eb;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
}
.bibei-soft-tags .tag-lang {
  color: #d97706;
  background: #fffbeb;
  border: 1px solid #fde68a;
}
.bibei-soft-tags .tag-system {
  color: #15803d;
  background: #ecfdf5;
  border: 1px solid #bbf7d0;
}
.bibei-soft-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 90px;
  height: 34px;
  margin-top: 12px;
  color: var(--bibei-primary-dark);
  font-size: 13px;
  font-weight: 800;
  background: #ecfdf5;
  border: 1px solid #bbf7d0;
  border-radius: 9px;
}
.bibei-soft-btn:hover {
  color: #fff;
  background: var(--bibei-primary);
  border-color: var(--bibei-primary);
}
.bibei-side-card {
  padding: 20px;
}
.bibei-order-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.bibei-order-list li {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  color: #334155;
  font-size: 13px;
  line-height: 1.55;
}
.bibei-hot-list li {
  display: grid;
  grid-template-columns: 22px 34px minmax(0, 1fr) auto 42px;
  gap: 8px;
  align-items: center;
  min-height: 46px;
  border-bottom: 1px solid var(--bibei-border);
}
.bibei-hot-list li:last-child {
  border-bottom: 0;
}
.bibei-hot-list .num {
  color: var(--bibei-primary);
  font-size: 13px;
  font-weight: 900;
  text-align: center;
}
.bibei-hot-list img {
  width: 34px;
  height: 34px;
  object-fit: cover;
  border-radius: 8px;
}
.bibei-hot-list a:not(.down) {
  overflow: hidden;
  color: var(--bibei-text);
  font-size: 13px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.bibei-hot-list a:not(.down):hover {
  color: var(--bibei-primary-dark);
}
.bibei-hot-list small {
  color: var(--bibei-muted);
  font-size: 12px;
  white-space: nowrap;
}
.bibei-hot-list .down {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 26px;
  color: var(--bibei-primary-dark);
  font-size: 12px;
  font-weight: 800;
  background: #ecfdf5;
  border: 1px solid #bbf7d0;
  border-radius: 7px;
}
.bibei-person-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.bibei-person-tags a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  color: #334155;
  font-size: 13px;
  font-weight: 700;
  background: #f8fafc;
  border: 1px solid var(--bibei-border);
  border-radius: 999px;
}
.bibei-person-tags a:hover {
  color: #fff;
  background: var(--bibei-primary);
  border-color: var(--bibei-primary);
}
.bibei-faq {
  margin-top: 2px;
}
.bibei-faq-list {
  display: grid;
  gap: 10px;
}
.bibei-faq details {
  background: #fff;
  border: 1px solid var(--bibei-border);
  border-radius: 12px;
}
.bibei-faq summary {
  min-height: 44px;
  padding: 12px 16px;
  color: var(--bibei-text);
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}
.bibei-faq details[open] summary {
  color: var(--bibei-primary-dark);
}
.bibei-faq details p {
  margin: 0;
  padding: 0 16px 14px;
  color: #475569;
  font-size: 14px;
  line-height: 1.8;
}

@media (max-width: 1100px) {
  .bibei-fixed-anchor {
    display: none;
  }
  .bibei-hero-row,
  .bibei-layout {
    grid-template-columns: 1fr;
  }
  .bibei-sidebar {
    order: 2;
  }
  .bibei-priority-section .bibei-priority-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 860px) {
  #bibei-page .bibei-breadcrumb {
    padding: 12px 14px 12px;
    overflow-x: auto;
    font-size: 12px;
    white-space: nowrap;
    scrollbar-width: none;
  }
  #bibei-page .bibei-breadcrumb::-webkit-scrollbar {
    display: none;
  }
  .bibei-page {
    padding-bottom: 18px;
  }
  .bibei-hero-row {
    gap: 16px;
    margin-bottom: 18px;
  }
  .bibei-hero {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 28px 22px;
  }
  .bibei-hero-art {
    display: none;
  }
  .bibei-hero::after {
    display: none;
  }
  .bibei-hero h1 {
    font-size: 28px;
  }
  .bibei-hero p {
    font-size: 14px;
    line-height: 1.8;
  }
  .bibei-flow-card,
  .bibei-section,
  .bibei-side-card,
  .bibei-faq {
    border-radius: 14px;
  }
  .bibei-soft-grid {
    grid-template-columns: 1fr;
  }
  .bibei-priority-section .bibei-section-hd > div {
    display: block;
  }
  .bibei-priority-section .bibei-section-hd p {
    display: block;
    margin: 6px 0 0;
  }
  .bibei-priority-section .bibei-priority-grid {
    display: flex;
    grid-template-columns: none;
    gap: 10px;
    margin: 0 -18px;
    padding: 0 18px 4px;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .bibei-priority-section .bibei-priority-grid::-webkit-scrollbar {
    display: none;
  }
  .bibei-priority-section .bibei-soft-card {
    flex: 0 0 150px;
  }
  .bibei-section {
    padding: 18px;
  }
  .bibei-section-hd {
    align-items: flex-start;
  }
  .bibei-section-hd h2 {
    font-size: 20px;
  }
  .bibei-soft-card {
    grid-template-columns: 58px minmax(0, 1fr);
    min-height: 0;
    padding: 14px;
  }
  .bibei-soft-card h3 {
    font-size: 15px;
  }
  .bibei-soft-card p {
    min-height: 0;
    font-size: 13px;
  }
  .bibei-soft-btn {
    min-width: 104px;
    height: 38px;
  }
}
@media (max-width: 520px) {
  .bibei-benefits {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }
  .bibei-benefits span {
    min-width: 0;
  }
  .bibei-benefits span {
    min-height: 34px;
    padding: 0 10px;
  }
  .bibei-flow-card li {
    grid-template-columns: 28px minmax(0, 1fr);
  }
  .bibei-flow-card li em {
    grid-column: 2;
  }
  .bibei-section-hd {
    flex-direction: column;
    gap: 10px;
  }
  .bibei-more {
    height: 38px;
  }
  .bibei-hot-list li {
    grid-template-columns: 22px 34px minmax(0, 1fr) 42px;
  }
  .bibei-hot-list small {
    display: none;
  }
}

/* 2026 site pages */
#site-page {
  background: #f6f8f9;
  color: #0f172a;
}
.xz-page-crumb {
  display: flex;
  align-items: center;
  gap: 7px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 16px 20px 14px;
  color: #64748b;
  font-size: 13px;
  line-height: 1.6;
  white-space: nowrap;
  overflow-x: auto;
}
.xz-page-crumb a {
  color: #64748b;
}
.xz-page-crumb a:hover,
.xz-page-crumb span:last-child {
  color: #16a34a;
}
.xz-page-crumb em {
  color: #a8b1bd;
  font-style: normal;
}
.xz-page-wrap {
  padding-bottom: 28px;
}
.xz-page-hero,
.xz-page-side,
.xz-page-card,
.xz-sitemap-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, .04);
}
.xz-page-hero {
  margin-bottom: 24px;
  padding: 34px 42px;
  background:
    radial-gradient(circle at 86% 26%, rgba(22, 163, 74, .14), transparent 30%),
    linear-gradient(135deg, #fff 0%, #f2fff8 50%, #fff 100%);
}
.xz-page-kicker {
  display: inline-flex;
  align-items: center;
  height: 26px;
  padding: 0 10px;
  margin-bottom: 12px;
  color: #15803d;
  font-size: 13px;
  font-weight: 800;
  background: #dcfce7;
  border: 1px solid #bbf7d0;
  border-radius: 999px;
}
.xz-page-hero h1 {
  margin: 0;
  color: #0f172a;
  font-size: 34px;
  line-height: 1.25;
  font-weight: 800;
}
.xz-page-hero p {
  max-width: 820px;
  margin: 12px 0 0;
  color: #475569;
  font-size: 15px;
  line-height: 1.8;
}
.xz-page-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}
.xz-page-side {
  position: sticky;
  top: 88px;
  padding: 18px;
}
.xz-page-side h2 {
  margin: 0 0 14px;
  color: #0f172a;
  font-size: 20px;
  line-height: 1.35;
  font-weight: 800;
}
.xz-page-side nav {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.xz-page-side a {
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  color: #334155;
  font-size: 14px;
  font-weight: 700;
  background: #f8fafc;
  border: 1px solid #edf2f7;
  border-radius: 10px;
}
.xz-page-side a:hover,
.xz-page-side a.is-active {
  color: #15803d;
  background: #ecfdf5;
  border-color: #bbf7d0;
}
.xz-page-card {
  min-width: 0;
  padding: 24px;
}
.xz-page-card__head {
  padding-bottom: 16px;
  margin-bottom: 18px;
  border-bottom: 1px solid #e5e7eb;
}
.xz-page-card__head h2 {
  margin: 0;
  color: #0f172a;
  font-size: 24px;
  line-height: 1.35;
  font-weight: 800;
}
.xz-page-content {
  color: #334155;
  font-size: 15px;
  line-height: 1.9;
}
.xz-page-content p {
  margin: 0 0 16px;
}
.xz-page-content p:last-child {
  margin-bottom: 0;
}
.xz-page-content a {
  color: var(--link);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.xz-page-content a:hover {
  color: var(--link-hover);
}
.xz-page-content strong {
  color: #0f172a;
}
.xz-page-content h2,
.xz-page-content h3 {
  margin: 24px 0 12px;
  color: #0f172a;
  line-height: 1.4;
}
.xz-sitemap-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.xz-sitemap-card {
  padding: 18px;
  box-shadow: none;
}
.xz-sitemap-card h3 {
  margin: 0 0 12px;
  font-size: 17px;
  line-height: 1.35;
  font-weight: 800;
}
.xz-sitemap-card h3 a,
.xz-sitemap-card h3 span {
  color: #0f172a;
}
.xz-sitemap-card h3 a:hover {
  color: #16a34a;
}
.xz-sitemap-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.xz-sitemap-card li a {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 11px;
  color: #475569;
  font-size: 13px;
  font-weight: 700;
  background: #f8fafc;
  border: 1px solid #edf2f7;
  border-radius: 999px;
}
.xz-sitemap-card li a:hover {
  color: #15803d;
  background: #ecfdf5;
  border-color: #bbf7d0;
}
@media (max-width: 860px) {
  .xz-page-crumb {
    padding: 12px 14px;
    scrollbar-width: none;
  }
  .xz-page-crumb::-webkit-scrollbar {
    display: none;
  }
  .xz-page-wrap {
    padding-bottom: 18px;
  }
  .xz-page-hero {
    margin-bottom: 16px;
    padding: 26px 20px;
    border-radius: 14px;
  }
  .xz-page-hero h1 {
    font-size: 28px;
  }
  .xz-page-layout {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .xz-page-side {
    position: static;
    padding: 16px;
    border-radius: 14px;
  }
  .xz-page-side nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .xz-page-card {
    padding: 18px;
    border-radius: 14px;
  }
  .xz-sitemap-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 520px) {
  .xz-page-side nav {
    grid-template-columns: 1fr;
  }
  .xz-page-content {
    font-size: 14px;
    line-height: 1.85;
  }
}

/* 2026 about/contact/disclaimer/sitemap pages */
.xz-page-wrap--about,
.xz-page-wrap--contact,
.xz-page-wrap--disclaimer,
.xz-map-wrap {
  padding-bottom: 34px;
}
.xz-page-wrap--about .xz-page-card,
.xz-page-wrap--contact .xz-page-card,
.xz-page-wrap--disclaimer .xz-page-card,
.xz-side-card,
.xz-about-hero,
.xz-contact-hero,
.xz-disclaimer-hero,
.xz-map-main {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  box-shadow: 0 16px 36px rgba(15, 23, 42, .045);
}
.xz-about-hero,
.xz-contact-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  align-items: center;
  min-height: 260px;
  padding: 40px 46px;
  margin-bottom: 18px;
  overflow: hidden;
  background:
    radial-gradient(circle at 74% 26%, rgba(22, 163, 74, .16), transparent 32%),
    linear-gradient(135deg, #fff 0%, #f0fff7 48%, #fff 100%);
}
.xz-about-hero h1,
.xz-contact-hero h1,
.xz-disclaimer-hero h1,
.xz-map-head h1 {
  margin: 0;
  color: #0f172a;
  font-size: 34px;
  line-height: 1.25;
  font-weight: 800;
}
.xz-about-hero p,
.xz-contact-hero p,
.xz-disclaimer-hero p,
.xz-map-head p {
  max-width: 760px;
  margin: 14px 0 0;
  color: #475569;
  font-size: 15px;
  line-height: 1.85;
}
.xz-about-stats,
.xz-contact-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.xz-about-stats span,
.xz-contact-tags span,
.xz-value-row span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  color: #15803d;
  font-size: 13px;
  font-weight: 800;
  background: rgba(236, 253, 245, .9);
  border: 1px solid #bbf7d0;
  border-radius: 12px;
}
.xz-about-stats strong {
  margin-left: 8px;
  color: #16a34a;
  font-size: 18px;
}
.xz-page-visual,
.xz-contact-visual {
  position: relative;
  width: 300px;
  height: 220px;
  justify-self: center;
  border-radius: 36px;
  background: linear-gradient(145deg, #22c55e, #16a34a);
  box-shadow: 0 22px 45px rgba(22, 163, 74, .18);
}
.xz-page-visual::before,
.xz-contact-visual::before {
  content: "";
  position: absolute;
  inset: 28px;
  border: 2px solid rgba(255,255,255,.72);
  border-radius: 28px;
}
.xz-page-visual i,
.xz-contact-visual i {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 74px;
  height: 74px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(255,255,255,.92);
}
.xz-page-visual i::after {
  content: "↓";
  display: grid;
  place-items: center;
  height: 100%;
  color: #16a34a;
  font-size: 44px;
  font-weight: 900;
}
.xz-contact-visual i::after {
  content: "✉";
  display: grid;
  place-items: center;
  height: 100%;
  color: #16a34a;
  font-size: 34px;
  font-style: normal;
}
.xz-feature-grid,
.xz-page-four {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 18px;
}
.xz-feature-grid article {
  min-height: 150px;
  padding: 22px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(15, 23, 42, .035);
}
.xz-feature-grid i {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 12px;
  color: #16a34a;
  font-style: normal;
  font-weight: 800;
  background: #ecfdf5;
  border-radius: 50%;
}
.xz-feature-grid h2,
.xz-contact-card h2,
.xz-side-card h2,
.xz-disclaimer-list h2,
.xz-sitemap-card h2 {
  margin: 0;
  color: #0f172a;
  font-size: 20px;
  line-height: 1.35;
  font-weight: 800;
}
.xz-feature-grid p {
  margin: 10px 0 0;
  color: #64748b;
  font-size: 14px;
  line-height: 1.75;
}
.xz-page-four .xz-page-card:first-child {
  grid-column: span 2;
}
.xz-page-four--compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 0;
}
.xz-page-four--compact .xz-page-card:first-child {
  grid-column: auto;
}
.xz-value-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}
.xz-mini-list {
  display: grid;
  gap: 10px;
}
.xz-mini-list a,
.xz-mini-list span {
  display: block;
  padding: 13px 14px;
  color: #334155;
  background: #f8fafc;
  border: 1px solid #edf2f7;
  border-radius: 12px;
}
.xz-mini-list a:hover {
  color: #15803d;
  background: #ecfdf5;
  border-color: #bbf7d0;
}
.xz-mini-list strong {
  display: block;
  color: #0f172a;
  font-size: 15px;
  line-height: 1.35;
}
.xz-mini-list span span,
.xz-mini-list em,
.xz-mini-list a span {
  display: block;
  margin-top: 4px;
  color: #64748b;
  font-size: 13px;
  font-style: normal;
  line-height: 1.6;
  background: transparent;
  border: 0;
  padding: 0;
}
.xz-check-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.xz-check-list li {
  position: relative;
  padding-left: 22px;
  color: #475569;
  font-size: 14px;
  line-height: 1.7;
}
.xz-check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #16a34a;
  box-shadow: 0 0 0 4px #dcfce7;
}
.xz-page-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px 18px;
  align-items: center;
  padding: 20px 26px;
  color: #334155;
  background: linear-gradient(135deg, #fff, #f0fff7);
  border: 1px solid #bbf7d0;
  border-radius: 16px;
}
.xz-page-cta strong {
  display: block;
  color: #0f172a;
  font-size: 19px;
}
.xz-page-cta span {
  color: #64748b;
  font-size: 14px;
}
.xz-page-cta a,
.xz-contact-card a,
.xz-map-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 20px;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  background: #16a34a;
  border-radius: 10px;
}
.xz-page-cta a:hover,
.xz-contact-card a:hover,
.xz-map-actions a:hover {
  color: #fff;
  background: #15803d;
}
/* 关于页：去掉用户画像后，"我们的优势"主卡 + 快速导航侧栏的均衡布局 */
.xz-page-layout--right.xz-about-body {
  align-items: stretch;
  margin-bottom: 18px;
}
.xz-about-body > .xz-page-card {
  display: flex;
  flex-direction: column;
}
.xz-advantage-lead {
  margin: 14px 0 18px;
  color: #475569;
  font-size: 14px;
  line-height: 1.85;
}
.xz-check-list--cols {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px 28px;
}
/* CTA：文案合并为一块在左、按钮在右，修复 strong/span/button 错位 */
.xz-page-cta__text {
  display: grid;
  gap: 4px;
}
/* 联系页：两层全宽布局，取代"矮主栏+高侧栏"的失衡结构 */
.xz-page-wrap--contact .xz-contact-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  margin-bottom: 18px;
}
.xz-contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  align-items: stretch;
  margin-bottom: 18px;
}
.xz-contact-nav .xz-quick-list--inline {
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 2px 18px;
}
.xz-page-layout--right,
.xz-map-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 20px;
  align-items: start;
}
.xz-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.xz-contact-card {
  position: relative;
  min-height: 230px;
  padding: 28px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  box-shadow: 0 14px 34px rgba(15, 23, 42, .04);
}
.xz-contact-card > i,
.xz-disclaimer-icon,
.xz-mail-card > i {
  display: inline-grid;
  place-items: center;
  width: 70px;
  height: 70px;
  margin-bottom: 18px;
  color: #16a34a;
  font-size: 28px;
  font-style: normal;
  font-weight: 800;
  background: #ecfdf5;
  border-radius: 22px;
}
.xz-contact-card p {
  margin: 10px 0 16px;
  color: #64748b;
  font-size: 14px;
  line-height: 1.75;
}
.xz-contact-card strong {
  display: block;
  margin-bottom: 18px;
  color: #16a34a;
  font-size: 22px;
}
.xz-ribbon {
  position: absolute;
  left: 0;
  top: 0;
  padding: 6px 18px;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  background: #16a34a;
  border-radius: 18px 0 14px 0;
}
.xz-contact-card--warn > i { color: #f97316; background: #fff7ed; }
.xz-contact-card--warn a { background: #f97316; }
.xz-contact-card--warn a:hover { background: #ea580c; }
.xz-contact-card--coop > i { color: #7c3aed; background: #f5f3ff; }
.xz-contact-card--coop a { background: #7c3aed; }
.xz-contact-card--coop a:hover { background: #6d28d9; }
.xz-contact-content {
  grid-column: 1 / -1;
}
.xz-page-sidebar {
  display: grid;
  gap: 16px;
  position: sticky;
  top: 88px;
}
.xz-side-card {
  padding: 22px;
}
.xz-side-card p {
  margin: 10px 0 0;
  color: #64748b;
  font-size: 14px;
  line-height: 1.75;
}
.xz-icon-list {
  display: grid;
  gap: 14px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}
.xz-icon-list li {
  padding-left: 18px;
  border-left: 3px solid #bbf7d0;
}
.xz-icon-list strong,
.xz-icon-list span {
  display: block;
}
.xz-icon-list strong {
  color: #0f172a;
  font-size: 14px;
  line-height: 1.4;
}
.xz-icon-list span {
  margin-top: 4px;
  color: #64748b;
  font-size: 13px;
  line-height: 1.6;
}
.xz-disclaimer-main {
  display: grid;
  gap: 16px;
}
.xz-disclaimer-hero {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  min-height: 230px;
  padding: 38px;
  background:
    radial-gradient(circle at 88% 20%, rgba(22, 163, 74, .14), transparent 30%),
    linear-gradient(135deg, #fff, #f0fff7 58%, #fff);
}
.xz-disclaimer-icon {
  width: 110px;
  height: 110px;
  margin: 0;
  color: #fff;
  font-size: 54px;
  background: linear-gradient(145deg, #22c55e, #16a34a);
}
.xz-disclaimer-list {
  display: grid;
  gap: 12px;
}
.xz-disclaimer-list article {
  display: grid;
  grid-template-columns: 72px 54px minmax(0, 1fr);
  column-gap: 18px;
  row-gap: 6px;
  align-items: start;
  min-height: 92px;
  padding: 18px 22px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(15, 23, 42, .035);
}
.xz-disclaimer-list b {
  display: grid;
  grid-column: 1;
  grid-row: 1 / span 2;
  place-items: center;
  width: 56px;
  height: 56px;
  color: #16a34a;
  font-size: 24px;
  background: #ecfdf5;
  border-radius: 14px;
}
.xz-disclaimer-list i {
  display: grid;
  grid-column: 2;
  grid-row: 1 / span 2;
  place-items: center;
  width: 48px;
  height: 48px;
  color: #16a34a;
  font-style: normal;
  font-weight: 800;
  background: #dcfce7;
  border-radius: 50%;
}
.xz-disclaimer-list h2 {
  grid-column: 3;
  grid-row: 1;
  align-self: end;
}
.xz-disclaimer-list p {
  grid-column: 3;
  grid-row: 2;
  margin: 0;
  color: #64748b;
  font-size: 14px;
  line-height: 1.7;
}
.xz-page-note {
  margin: 0;
  padding: 14px 18px;
  color: #64748b;
  font-size: 13px;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
}
.xz-mail-card {
  text-align: center;
}
.xz-mail-card > i {
  margin: 18px auto 16px;
}
.xz-mail-card strong {
  display: block;
  color: #0f172a;
  font-size: 18px;
}
.xz-quick-list {
  display: grid;
  gap: 4px;
  margin-top: 12px;
}
.xz-quick-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 42px;
  padding: 0 10px;
  color: #334155;
  font-size: 14px;
  font-weight: 700;
  border-bottom: 1px solid #edf2f7;
}
.xz-quick-list a:hover,
.xz-quick-list a.is-active {
  color: #16a34a;
  background: #ecfdf5;
  border-radius: 9px;
}
.xz-map-main {
  padding: 28px;
}
.xz-map-head {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-bottom: 24px;
}
.xz-map-head i {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 72px;
  height: 72px;
  color: #16a34a;
  font-style: normal;
  font-size: 34px;
  background: #ecfdf5;
  border-radius: 18px;
}
.xz-map-wrap .xz-sitemap-grid {
  gap: 16px;
}
.xz-sitemap-card {
  border-radius: 14px;
}
.xz-sitemap-card h2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}
.xz-sitemap-card h2 > a:first-child {
  color: #0f172a;
}
.xz-sitemap-card h2 > a:first-child:hover {
  color: #16a34a;
}
.xz-sitemap-card .xz-more {
  flex: 0 0 auto;
  color: #16a34a;
  font-size: 13px;
  font-weight: 800;
}
.xz-map-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
}
.xz-map-actions a + a {
  color: #15803d;
  background: #fff;
  border: 1px solid #bbf7d0;
}
.xz-hot-cats {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: hotcat;
}
.xz-hot-cats li {
  counter-increment: hotcat;
}
.xz-hot-cats a {
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr) auto;
  gap: 9px;
  align-items: center;
  min-height: 34px;
  color: #334155;
  font-size: 14px;
}
.xz-hot-cats a::before {
  content: counter(hotcat);
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  background: #16a34a;
  border-radius: 50%;
}
.xz-hot-cats em {
  color: #64748b;
  font-size: 12px;
  font-style: normal;
}
.xz-side-date {
  padding-top: 12px;
  border-top: 1px solid #e5e7eb;
}
@media (max-width: 980px) {
  .xz-about-hero,
  .xz-contact-hero {
    grid-template-columns: 1fr;
  }
  .xz-page-visual,
  .xz-contact-visual {
    display: none;
  }
  .xz-feature-grid,
  .xz-page-four,
  .xz-contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .xz-page-layout--right,
  .xz-map-layout {
    grid-template-columns: 1fr;
  }
  .xz-page-sidebar {
    position: static;
  }
}
@media (max-width: 640px) {
  .xz-about-hero,
  .xz-contact-hero,
  .xz-disclaimer-hero,
  .xz-map-main {
    padding: 22px;
    border-radius: 14px;
  }
  .xz-about-hero h1,
  .xz-contact-hero h1,
  .xz-disclaimer-hero h1,
  .xz-map-head h1 {
    font-size: 28px;
  }
  .xz-about-stats,
  .xz-contact-tags {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .xz-about-stats span,
  .xz-contact-tags span,
  .xz-value-row span {
    justify-content: center;
    text-align: center;
  }
  .xz-feature-grid,
  .xz-page-four,
  .xz-contact-grid,
  .xz-map-actions {
    grid-template-columns: 1fr;
  }
  .xz-page-four .xz-page-card:first-child,
  .xz-contact-content {
    grid-column: auto;
  }
  .xz-page-cta {
    grid-template-columns: 1fr;
  }
  .xz-page-cta a {
    width: 100%;
  }
  .xz-disclaimer-hero {
    grid-template-columns: 1fr;
  }
  .xz-disclaimer-icon {
    width: 82px;
    height: 82px;
    font-size: 40px;
  }
  .xz-disclaimer-list article {
    grid-template-columns: 52px minmax(0, 1fr);
    column-gap: 12px;
    row-gap: 5px;
  }
  .xz-disclaimer-list b {
    grid-column: 1;
    grid-row: 1 / span 2;
    width: 46px;
    height: 46px;
    font-size: 20px;
  }
  .xz-disclaimer-list i {
    display: none;
  }
  .xz-disclaimer-list h2 {
    grid-column: 2;
  }
  .xz-disclaimer-list p {
    grid-column: 2;
  }
  .xz-map-head {
    align-items: flex-start;
  }
  .xz-map-head i {
    width: 56px;
    height: 56px;
    font-size: 28px;
  }
}

/* ===================================================================
   2026pc 文章频道 / 分类 / 详情页
   参考下载集 2026pc 新模板：绿色主题、轻卡片、横向文章列表、右侧栏与阅读正文。
   =================================================================== */
#art-channel-page,
#art-list-page,
#art-show-page {
  background:
    radial-gradient(circle at 12% 0, rgba(34, 197, 94, .06), transparent 28%),
    linear-gradient(180deg, #f8fafc 0, #f7fbf8 42%, #f8fafc 100%);
}
.xz-article-page { padding-bottom: 24px; }
.xz-article-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 160px;
  gap: 18px;
  align-items: center;
  min-height: 142px;
  margin: 14px 0;
  padding: 28px 34px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(220, 252, 231, .95), rgba(255, 255, 255, .88) 68%), #fff;
  border: 1px solid var(--soft-line);
  border-radius: var(--radius);
  box-shadow: 0 16px 34px rgba(22, 37, 29, .05);
}
.xz-article-hero h1 { margin: 0 0 10px; color: var(--ink); font-size: 32px; line-height: 1.2; }
.xz-article-hero p { max-width: 780px; margin: 0; color: var(--muted); font-size: 15px; line-height: 1.75; }
.xz-article-hero__mark {
  justify-self: end;
  width: 116px;
  height: 116px;
  position: relative;
  border-radius: 28px;
  background: rgba(34, 197, 94, .12);
}
.xz-article-hero__mark::before,
.xz-article-hero__mark::after,
.xz-article-hero__mark span {
  content: "";
  position: absolute;
  border-radius: 12px;
  border: 2px solid rgba(34, 197, 94, .35);
  background: rgba(255, 255, 255, .72);
}
.xz-article-hero__mark::before { inset: 20px 30px 24px 22px; }
.xz-article-hero__mark::after { inset: 32px 16px 12px 38px; }
.xz-article-hero__mark span {
  left: 45px;
  top: 42px;
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 18px solid var(--green);
  border-right: 0;
  background: transparent;
  border-radius: 3px;
}
.xz-article-tabs {
  display: flex;
  gap: 6px;
  align-items: center;
  margin-bottom: 16px;
  padding: 10px;
  overflow-x: auto;
  scrollbar-width: none;
}
.xz-article-tabs::-webkit-scrollbar { display: none; }
.xz-article-tabs a {
  flex: 0 0 auto;
  padding: 9px 18px;
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
  border-radius: 8px;
}
.xz-article-tabs a:hover,
.xz-article-tabs a.is-active {
  color: var(--green-dark);
  background: var(--green-soft);
}
.xz-article-tabs a.is-active { box-shadow: inset 0 -2px 0 var(--green); }
.xz-article-main { min-width: 0; }
.xz-article-column-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.xz-article-column__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--soft-line);
}
.xz-article-column__head h2 { margin: 0; font-size: 18px; line-height: 1.3; }
.xz-article-column__head h2 a { color: var(--ink); }
.xz-article-column__head h2 a:hover { color: var(--green-dark); }
.xz-news-list { display: flex; flex-direction: column; gap: 12px; }
.xz-news-row {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color .18s, box-shadow .18s, transform .18s;
}
.xz-news-row:hover {
  border-color: #bbf7d0;
  box-shadow: 0 12px 24px rgba(22, 163, 74, .08);
  transform: translateY(-1px);
}
.xz-news-row__thumb {
  display: block;
  width: 150px;
  aspect-ratio: 5 / 3;
  overflow: hidden;
  border-radius: 8px;
  background: #eef2f7;
}
.xz-news-row__thumb img { display: block; width: 100%; height: 100%; object-fit: cover; }
.xz-news-row__body { min-width: 0; }
.xz-news-row h2,
.xz-news-row h3 { margin: 0 0 8px; font-size: 18px; line-height: 1.35; }
.xz-news-row h3 { font-size: 15px; }
.xz-news-row h2 a,
.xz-news-row h3 a { color: var(--ink); }
.xz-news-row h2 a:hover,
.xz-news-row h3 a:hover { color: var(--green-dark); }
.xz-news-row p {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}
.xz-news-row__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-size: 12.5px;
}
.xz-news-row__meta span,
.xz-news-row__meta time {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 2px 9px;
  background: #f7faf8;
  border: 1px solid var(--soft-line);
  border-radius: 999px;
}
.xz-news-row__meta span:first-child {
  color: var(--green-dark);
  background: var(--green-soft);
  border-color: #bbf7d0;
  font-weight: 700;
}
.xz-news-list--compact { gap: 0; }
.xz-news-list--compact .xz-news-row {
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 12px;
  padding: 12px 0;
  border: 0;
  border-bottom: 1px solid var(--soft-line);
  border-radius: 0;
  box-shadow: none;
  transform: none;
}
.xz-news-list--compact .xz-news-row:last-child { border-bottom: 0; padding-bottom: 0; }
.xz-news-list--compact .xz-news-row__thumb { width: 96px; }
.xz-article-cat-list { display: grid; gap: 8px; }
.xz-article-cat-list a {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) auto;
  gap: 9px;
  align-items: center;
  min-height: 38px;
  padding: 7px 8px;
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
  border-radius: 8px;
}
.xz-article-cat-list a:hover,
.xz-article-cat-list a.is-active {
  color: var(--green-dark);
  background: var(--green-soft);
}
.xz-article-cat-list span {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  color: var(--green);
  background: #ecfdf5;
  border-radius: 7px;
}
.xz-article-cat-list svg { width: 16px; height: 16px; }
.xz-article-cat-list em { color: var(--muted); font-size: 12px; font-style: normal; font-weight: 500; }
.xz-side-news,
.xz-side-rank,
.xz-side-media {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}
.xz-side-news li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 9px 0;
  border-bottom: 1px solid var(--soft-line);
}
.xz-side-news li:last-child,
.xz-side-rank li:last-child,
.xz-side-media li:last-child { border-bottom: 0; }
.xz-side-news a {
  overflow: hidden;
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.xz-side-news a:hover { color: var(--green-dark); }
.xz-side-news time { color: var(--muted); font-size: 12px; }
.xz-side-copy { margin: 0 0 14px; color: var(--muted); font-size: 14px; line-height: 1.7; }
.xz-side-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 18px;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  background: var(--green);
  border-radius: 8px;
  box-shadow: 0 10px 22px rgba(22, 163, 74, .16);
}
.xz-side-btn:hover { color: #fff; background: var(--green-dark); }
.xz-side-rank li {
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr);
  gap: 9px;
  align-items: center;
  padding: 9px 0;
  border-bottom: 1px solid var(--soft-line);
}
.xz-side-rank span {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  background: #f1f5f9;
  border-radius: 6px;
}
.xz-side-rank li:nth-child(-n+3) span { color: #fff; background: var(--green); }
.xz-side-rank a {
  overflow: hidden;
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.xz-side-rank a:hover { color: var(--green-dark); }
.xz-article-detail .layout { grid-template-columns: minmax(0, 1fr) 300px; align-items: start; }
.xz-article-card {
  padding: 28px;
  box-shadow: 0 16px 34px rgba(22, 37, 29, .045);
}
.xz-article-head h1 { margin: 0 0 14px; color: var(--ink); font-size: 30px; line-height: 1.35; }
.xz-article-meta { display: flex; flex-wrap: wrap; gap: 10px 16px; color: var(--muted); font-size: 13px; }
.xz-article-meta span,
.xz-article-meta time { display: inline-flex; align-items: center; gap: 4px; }
.xz-article-meta em { font-style: normal; }
.xz-article-cover { margin: 22px 0 0; }
.xz-article-cover img {
  display: block;
  width: 100%;
  max-height: 440px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid var(--line);
}
.xz-article-summary {
  margin: 22px 0;
  padding: 16px 18px;
  color: #335244;
  background: #ecfdf5;
  border-left: 4px solid var(--green);
  border-radius: 0 10px 10px 0;
}
.xz-article-summary strong { display: block; margin-bottom: 6px; color: var(--green-dark); }
.xz-article-summary p { margin: 0; font-size: 14px; line-height: 1.8; }
.xz-article-content {
  color: #223127;
  font-size: 16px;
  line-height: 1.92;
  word-break: break-word;
}
.xz-article-content h2,
.xz-article-content h3,
.xz-article-content h4 {
  scroll-margin-top: 140px;
  color: var(--ink);
  line-height: 1.35;
}
.xz-article-content h2 {
  margin: 32px 0 14px;
  padding-left: 12px;
  font-size: 22px;
  border-left: 4px solid var(--green);
}
.xz-article-content h3 { margin: 24px 0 10px; font-size: 18px; }
.xz-article-content p,
.xz-article-content ul,
.xz-article-content ol { margin: 0 0 18px; }
.xz-article-content a {
  color: var(--green-dark);
  background: linear-gradient(transparent 62%, rgba(22, 163, 74, .16) 0);
  border-bottom: 1px solid rgba(22, 163, 74, .36);
  font-weight: 600;
  text-decoration: none;
  transition: color .18s ease, background .18s ease, border-color .18s ease;
}
.xz-article-content a:hover {
  color: #fff;
  background: var(--green);
  border-color: var(--green);
  border-radius: 3px;
}
/* 图片链接不加高亮底色，避免图片下出现色带 */
.xz-article-content a:has(img),
.xz-article-content a:has(img):hover {
  background: none;
  border-bottom: 0;
}
.xz-article-content img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 18px auto;
  border: 1px solid var(--line);
  border-radius: 10px;
}
.xz-article-content blockquote {
  margin: 18px 0;
  padding: 14px 18px;
  color: #425466;
  background: #f8fafc;
  border-left: 4px solid #bbf7d0;
  border-radius: 0 10px 10px 0;
}
.xz-article-pages {
  display: grid;
  gap: 8px;
  margin: 22px 0;
  padding: 14px;
  background: #f8fafc;
}
.xz-article-pages strong { color: var(--ink); }
.xz-article-pages a { color: var(--text); font-size: 14px; }
.xz-article-pages a:hover,
.xz-article-pages a.is-active { color: var(--green-dark); }
.xz-article-tags { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; margin: 22px 0; }
.xz-article-tags span { color: var(--muted); font-size: 13px; font-weight: 700; }
.xz-article-tags a {
  padding: 5px 11px;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 700;
  background: var(--green-soft);
  border: 1px solid #bbf7d0;
  border-radius: 999px;
}
.xz-article-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 24px;
  padding: 14px 0;
  border-top: 1px solid var(--soft-line);
  border-bottom: 1px solid var(--soft-line);
}
.xz-article-actions button {
  min-height: 36px;
  padding: 0 16px;
  color: var(--text);
  font-weight: 700;
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
}

.xz-article-actions button[data-report-open] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 20px;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  background: #ef4444;
  border-color: #ef4444;
  border-radius: 10px;
  box-shadow: 0 10px 22px rgba(239, 68, 68, .2);
  transition: background .18s, border-color .18s, box-shadow .18s, transform .18s;
}

.xz-article-actions button[data-report-open]::before {
  content: "!";
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  margin-right: 8px;
  color: #ef4444;
  font-size: 13px;
  line-height: 1;
  background: #fff;
  border-radius: 50%;
}

.xz-article-actions button[data-report-open]:hover {
  color: #fff;
  background: #dc2626;
  border-color: #dc2626;
  box-shadow: 0 14px 28px rgba(220, 38, 38, .26);
  transform: translateY(-1px);
}

.xz-article-actions button[data-report-open]:focus-visible {
  outline: 3px solid rgba(239, 68, 68, .28);
  outline-offset: 2px;
}
.xz-share-mini { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; color: var(--muted); font-size: 13px; }
.xz-share-mini a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  min-height: 28px;
  padding: 0 10px;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  background: var(--green);
  border-radius: 999px;
}
.xz-prev-next {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}
.xz-prev-next div {
  min-width: 0;
  padding: 12px 14px;
  background: #f8fafc;
  border: 1px solid var(--soft-line);
  border-radius: 10px;
}
.xz-prev-next span { display: block; margin-bottom: 4px; color: var(--muted); font-size: 12px; }
.xz-prev-next a {
  display: block;
  overflow: hidden;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.xz-prev-next a:hover { color: var(--green-dark); }
.xz-prev-next em { color: var(--muted); font-style: normal; }
.xz-related-news { margin-top: 26px; }
.xz-related-news .section-head { align-items: center; margin-bottom: 12px; }
.xz-related-news .section-title { font-size: 20px; }
.xz-related-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.xz-related-grid a {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  padding: 10px;
  color: var(--text);
  background: #f8fafc;
  border: 1px solid var(--soft-line);
  border-radius: 10px;
}
.xz-related-grid a:hover { color: var(--green-dark); border-color: #bbf7d0; background: var(--green-soft); }
.xz-related-grid img { width: 92px; height: 58px; object-fit: cover; border-radius: 8px; }
.xz-related-grid span { min-width: 0; font-size: 14px; font-weight: 700; line-height: 1.45; }
.xz-article-toc { display: grid; gap: 4px; }
.xz-article-toc a {
  display: block;
  padding: 7px 10px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
  border-radius: 8px;
}
.xz-article-toc a:hover,
.xz-article-toc a.is-active { color: var(--green-dark); background: var(--green-soft); }
.xz-article-toc a.is-h3 { padding-left: 22px; font-size: 12.5px; }
.xz-article-toc .is-empty { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.7; }
.xz-side-media li { padding: 9px 0; border-bottom: 1px solid var(--soft-line); }
.xz-side-media a {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  color: var(--text);
}
.xz-side-media a:hover { color: var(--green-dark); }
.xz-side-media img { width: 58px; height: 40px; object-fit: cover; border-radius: 7px; }
.xz-side-media span {
  min-width: 0;
  display: -webkit-box;
  overflow: hidden;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
@media (max-width: 1100px) {
  .xz-article-column-grid,
  .xz-related-grid { grid-template-columns: 1fr; }
}
@media (max-width: 980px) {
  .xz-article-page .layout,
  .xz-article-detail .layout { grid-template-columns: 1fr; }
  .xz-article-page .layout > aside { position: static; }
  .xz-article-hero { grid-template-columns: 1fr; }
  .xz-article-hero__mark { display: none; }
}
@media (max-width: 640px) {
  .xz-article-hero { min-height: 0; padding: 22px; }
  .xz-article-hero h1 { font-size: 26px; }
  .xz-article-tabs { padding: 8px; }
  .xz-article-tabs a { padding: 8px 12px; }
  .xz-news-row,
  .xz-news-list--compact .xz-news-row {
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 12px;
    padding: 12px;
  }
  .xz-news-row__thumb,
  .xz-news-list--compact .xz-news-row__thumb { width: 96px; }
  .xz-news-row h2 { font-size: 16px; }
  .xz-news-row p { display: none; }
  .xz-article-card { padding: 18px; }
  .xz-article-head h1 { font-size: 24px; }
  .xz-article-content { font-size: 15.5px; line-height: 1.85; }
  .xz-article-actions { display: grid; }
  .xz-prev-next { grid-template-columns: 1fr; }
}
@media (max-width: 420px) {
  .xz-news-row,
  .xz-news-list--compact .xz-news-row { grid-template-columns: 1fr; }
  .xz-news-row__thumb,
  .xz-news-list--compact .xz-news-row__thumb { width: 100%; }
  .xz-related-grid a { grid-template-columns: 76px minmax(0, 1fr); }
  .xz-related-grid img { width: 76px; height: 50px; }
}

/* 文章页布局与标题字重微调 */
.xz-article-page {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", "PingFang SC", "Hiragino Sans GB", Arial, sans-serif;
}

.xz-article-list-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.xz-article-list-head h2 {
  margin: 0;
  color: var(--ink);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
}

.xz-article-list-head p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.xz-article-hero h1,
.xz-article-column__head h2,
.xz-news-row h2,
.xz-news-row h3,
.xz-article-head h1,
.xz-article-content h2,
.xz-article-content h3,
.xz-related-news .section-title,
.xz-article-page .side-box h2 {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", "PingFang SC", "Hiragino Sans GB", Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0;
}

.xz-news-row h2,
.xz-news-row h3 {
  font-weight: 500;
}

.xz-news-row h2 a,
.xz-news-row h3 a {
  font-weight: inherit;
}

.xz-side-news a,
.xz-side-rank a,
.xz-side-media span,
.xz-article-cat-list a {
  font-weight: 500;
}

.xz-article-match {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  margin: 22px 0;
  padding: 18px 20px;
  background: linear-gradient(135deg, #f8fafc, #fff 58%);
  border-color: #dbe7df;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .55);
}

.xz-article-match__icon {
  display: block;
  width: 72px;
  height: 72px;
  overflow: hidden;
  border-radius: 16px;
  background: #fff;
}

.xz-article-match__icon img {
  display: block;
  width: 72px;
  height: 72px;
  object-fit: cover;
}

.xz-article-match__body {
  min-width: 0;
}

.xz-article-match__body h2 {
  margin: 0 0 6px;
  font-size: 20px;
  line-height: 1.3;
  font-weight: 600;
}

.xz-article-match__body h2 a {
  color: #0674ff;
}

.xz-article-match__body h2 a:hover {
  color: var(--green-dark);
}

.xz-article-match__body p {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.xz-article-match__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  color: #64748b;
  font-size: 13px;
}

.xz-article-match__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 22px;
  color: var(--green-dark);
  font-size: 15px;
  font-weight: 700;
  background: #fff;
  border: 1px solid #bbf7d0;
  border-radius: 8px;
  white-space: nowrap;
}

.xz-article-match__btn::before {
  content: "↓";
  margin-right: 8px;
  font-size: 18px;
  line-height: 1;
}

.xz-article-match__btn:hover {
  color: #fff;
  background: var(--green);
  border-color: var(--green);
}

@media (max-width: 640px) {
  .xz-article-match {
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 12px;
    padding: 14px;
  }
  .xz-article-match__icon,
  .xz-article-match__icon img {
    width: 58px;
    height: 58px;
    border-radius: 12px;
  }
  .xz-article-match__btn {
    grid-column: 1 / -1;
    width: 100%;
  }
}

/* 2026 文章正文需要占满主内容栏，覆盖旧 .art-content 阅读宽度限制。 */
.xz-article-content.art-content,
.xz-article-content.art-content p,
.xz-article-content.art-content li,
.xz-article-content.art-content blockquote,
.xz-article-content.art-content table,
.xz-article-content.art-content pre {
  max-width: none;
  width: 100%;
}

.xz-article-content.art-content img {
  max-width: 100%;
}
