:root {
  --bg: #ffffff;
  --surface: #ffffff;
  --surface2: #f0f9ff;
  --border: #e2e8f0;

  --brand: #229ED9;
  --brandHover: #1a8bc4;
  --brandSoft: rgba(34, 158, 217, 0.14);
  --accent: #2AABEE;

  --text: #1a1a1a;
  --muted: #475569;
  --subtle: #64748b;

  --shadow: 0 18px 55px rgba(2, 6, 23, 0.10);
  --shadowSm: 0 8px 22px rgba(2, 6, 23, 0.07);

  --radiusCard: 24px;
  --radiusBtn: 14px;
  --container: 1180px;
  --navH: 88px;
  --gap: 48px;
  --gradient: linear-gradient(118deg, #2AABEE 0%, #229ED9 52%, #1785c4 100%);
  --glow: 0 14px 34px rgba(34, 158, 217, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  padding-top: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a:hover {
  color: var(--brandHover);
}

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

.k9mz-wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

.k9mz-main {
  display: block;
}

.k9mz-skip {
  position: absolute;
  left: -9999px;
  top: 0;
  padding: 10px 12px;
  border-radius: var(--radiusBtn);
  background: #0f172a;
  color: #ffffff;
  z-index: 9999;
}

.k9mz-skip:focus {
  left: 16px;
  top: 16px;
}

.k9mz-top {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.04);
}

.k9mz-top__in {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.k9mz-brand {
  display: inline-flex;
  align-items: center;
}

.k9mz-brand__logo {
  height: 30px;
  width: auto;
}

.k9mz-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.k9mz-nav__a {
  font-size: 15px;
  font-weight: 600;
  color: var(--muted);
}

.k9mz-nav__a:hover {
  color: var(--brand);
}

.k9mz-top__act {
  display: flex;
  align-items: center;
  gap: 10px;
}

.k9mz-menubtn {
  display: none;
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: var(--radiusBtn);
  padding: 10px 10px;
  cursor: pointer;
  color: var(--text);
}

.k9mz-menubtn__ic {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.k9mz-hbtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: var(--radiusBtn);
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  user-select: none;
  white-space: nowrap;
}

.k9mz-hbtn--pri {
  border: none;
  background: var(--gradient);
  color: #ffffff;
  box-shadow: var(--glow);
}

.k9mz-hbtn--pri:hover {
  transform: none;
  background: var(--brandHover);
  box-shadow: 0 10px 26px rgba(34, 158, 217, 0.2);
}

/* 商业化下载按钮动效 */
.k9mz-hbtn--download-pulse {
  position: relative;
  overflow: hidden;
}

.k9mz-hbtn--download-pulse::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: 0.5s;
}

.k9mz-hbtn--download-pulse:hover::after {
  left: 100%;
  transition: 0.5s;
}

.k9mz-hbtn--ghost {
  background: transparent;
}

.k9mz-hbtn--block {
  width: 100%;
}

.ww-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--brandSoft);
  color: var(--brand);
  font-size: 13px;
  font-weight: 600;
  border: 1px solid rgba(34, 158, 217, 0.22);
}

.ww-h1 {
  margin: 0;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  font-weight: 800;
  color: var(--text);
}

.ww-h2 {
  margin: 0;
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1.2;
  letter-spacing: -0.3px;
}

.ww-h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.25;
  letter-spacing: -0.2px;
}

.ww-lead {
  margin: 0;
  font-size: 16px;
  color: var(--muted);
}

.ww-muted {
  color: var(--muted);
}

.ww-subtle {
  color: var(--subtle);
}

.ww-text-sm {
  font-size: 14px;
}

.ww-section {
  padding: 56px 0;
}

.ww-section--alt {
  background: var(--surface2);
}

.ww-hero {
  padding: 56px 0 40px;
  background:
    radial-gradient(860px 320px at 50% 0%, rgba(34, 158, 217, 0.14), transparent 60%),
    radial-gradient(520px 260px at 10% 85%, rgba(42, 171, 238, 0.10), transparent 55%),
    linear-gradient(180deg, var(--bg), var(--surface));
}

.ww-hero__inner {
  text-align: center;
}

.ww-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 26px;
  align-items: center;
}

.ww-hero__copy {
  text-align: left;
}

.ww-hero__meta {
  margin-top: 18px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  color: var(--subtle);
  font-size: 13px;
}

.ww-tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
}

.ww-hero__actions {
  margin-top: 18px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.ww-actions {
  display: flex;
  justify-content: flex-start;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.ww-mt-10 {
  margin-top: 10px;
}

.ww-mt-12 {
  margin-top: 12px;
}

.ww-mt-16 {
  margin-top: 16px;
}

.ww-mt-28 {
  margin-top: 28px;
}

.ww-hero__shot {
  margin: 34px auto 0;
  max-width: 980px;
  border-radius: 16px;
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--surface);
}

.ww-hero__shot img {
  width: 100%;
  height: auto;
}

.ww-phone {
  border-radius: 24px;
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--surface);
}

.ww-phone__inner {
  padding: 10px;
  background: linear-gradient(180deg, var(--surface), var(--surface2));
}

.ww-phone__inner img {
  border-radius: 18px;
  border: 1px solid var(--border);
}

.ww-grid3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.ww-grid4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.ww-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radiusCard);
}

.ww-card__inner {
  padding: 18px 18px;
}

.ww-product {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.ww-product__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--brandSoft);
  color: var(--brandHover);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex: 0 0 auto;
}

.ww-product__body {
  flex: 1 1 auto;
  min-width: 0;
}

.ww-product__name {
  font-weight: 750;
  margin: 0;
}

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

.ww-product__actions {
  margin-top: 12px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.ww-feature {
  display: grid;
  gap: 10px;
}

.ww-feature__emoji {
  font-size: 22px;
}

.ww-feature__t {
  font-weight: 750;
}

.ww-feature__d {
  color: var(--muted);
  font-size: 14px;
}

.ww-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  font-size: 13px;
  color: var(--subtle);
}

.ww-breadcrumb a {
  color: var(--muted);
}

.ww-breadcrumb a:hover {
  color: var(--brandHover);
}

.ww-breadcrumb__sep {
  opacity: 0.6;
}

.ww-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 18px;
  align-items: start;
}

.ww-disabled {
  opacity: 0.55;
  pointer-events: none;
}

.ww-pn {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.ww-sideLinks {
  margin-top: 12px;
  display: grid;
  gap: 10px;
}

.ww-sideLink {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 12px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--surface);
}

.ww-sideLink:hover {
  border-color: rgba(34, 158, 217, 0.28);
  background: rgba(34, 158, 217, 0.07);
}

.ww-sideLink__t {
  color: var(--text);
  font-weight: 650;
}

.ww-sideLink__d {
  color: var(--subtle);
  white-space: nowrap;
}

.ww-aside {
  position: sticky;
  top: calc(var(--navH) + 18px);
}

.k9mz-prose {
  color: var(--text);
}

.k9mz-prose h2,
.k9mz-prose h3 {
  margin: 18px 0 10px;
  line-height: 1.25;
  letter-spacing: -0.2px;
}

.k9mz-prose p {
  margin: 10px 0;
}

.k9mz-prose a {
  color: var(--brandHover);
  text-decoration: underline;
  text-decoration-color: rgba(34, 158, 217, 0.42);
  text-underline-offset: 3px;
}

.k9mz-prose ul,
.k9mz-prose ol {
  margin: 10px 0;
  padding-left: 18px;
}

.ww-news {
  display: grid;
  gap: 12px;
}

.ww-newsItem {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
}

.ww-newsItem__img {
  width: 120px;
  height: 84px;
  border-radius: 12px;
  border: 1px solid var(--border);
  overflow: hidden;
  background: var(--surface);
}

.ww-newsItem__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ww-newsItem__t {
  font-weight: 750;
  color: var(--text);
}

.ww-newsItem__t a:hover {
  color: var(--brandHover);
}

.ww-newsItem__meta {
  margin-top: 6px;
  color: var(--subtle);
  font-size: 12px;
}

.ww-newsItem__d {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
}

.k9mz-page {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  padding: 12px 0;
}

.k9mz-page a,
.k9mz-page span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 10px;
  margin: 0 4px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--muted);
}

.k9mz-page .current,
.k9mz-page .active {
  border-color: rgba(34, 158, 217, 0.32);
  background: var(--brandSoft);
  color: var(--brandHover);
}

.ww-footer {
  border-top: 1px solid var(--border);
  background: var(--surface);
}

.ww-footer__top {
  padding: 40px 0;
}

.ww-footer__grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1.6fr repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.ww-footer__title {
  font-weight: 800;
  letter-spacing: -0.2px;
  margin-bottom: 10px;
}

.ww-footer__list {
  margin: 0;
  padding-left: 16px;
  color: var(--muted);
}

.ww-footer__list a {
  color: var(--muted);
}

.ww-footer__list a:hover {
  color: var(--brandHover);
}

.ww-subfooter {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  color: var(--subtle);
}

.tg-hero {
  padding: 64px 0;
  background: var(--bg);
  text-align: center;
}

.tg-hero__grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.tg-hero__copy {
  max-width: 800px;
  text-align: center;
}

.tg-hero__meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.tg-shelf {
  padding: 40px 0;
  background: var(--surface2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.tg-shelf__item {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 32px;
  border-radius: var(--radiusCard);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.tg-shelf__item:hover {
  border-color: var(--brand);
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.tg-shelf__item strong {
  color: var(--text);
}

.tg-shelf__item span {
  color: var(--subtle);
  font-size: 12px;
}

.tg-platforms {
  padding: 40px 0;
}

.k9mz-h1 {
  margin: 0;
  font-size: clamp(34px, 4.5vw, 54px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  font-weight: 800;
  text-align: center;
}

.k9mz-sub {
  margin: 14px auto 0;
  max-width: 860px;
  color: var(--muted);
  font-size: 18px;
  text-align: center;
}

.k9mz-hero {
  padding: 56px 0 48px;
  background:
    radial-gradient(980px 380px at 50% -40%, rgba(42, 171, 238, 0.28), transparent 58%),
    radial-gradient(560px 300px at 12% 100%, rgba(34, 158, 217, 0.1), transparent 52%),
    linear-gradient(180deg, #eef8ff 0%, #ffffff 65%);
}

.k9mz-hero__mid {
  text-align: center;
}

.k9mz-hero__btns {
  margin-top: 26px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.k9mz-dl {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  padding: 0 18px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  font-weight: 700;
}

.k9mz-dl:hover {
  border-color: var(--brand);
  color: var(--brand);
}

.k9mz-dl--pri {
  border-color: var(--brand);
  background: var(--gradient);
  color: #ffffff;
  box-shadow: var(--glow);
}

.k9mz-dl--pri:hover {
  background: var(--brandHover);
  border-color: var(--brandHover);
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(34, 158, 217, 0.22);
}

.k9mz-hero__shots {
  margin: 38px auto 0;
  max-width: 860px;
}

.k9mz-hero__pic {
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--surface);
}

.k9mz-secTitle {
  margin: 0;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 800;
  text-align: center;
}

.k9mz-points {
  padding: 52px 0 72px;
  background: linear-gradient(180deg, #ffffff 0%, var(--surface2) 100%);
  border-top: 1px solid var(--border);
}

.k9mz-points__grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.k9mz-point {
  padding: 22px 22px 20px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--surface);
}

.k9mz-point__gif {
  width: 64px;
  height: 64px;
  margin: 0 0 10px;
}

.k9mz-point__t {
  font-weight: 800;
  color: var(--text);
}

.k9mz-point__d {
  margin-top: 10px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.k9mz-phead {
  padding: 54px 0 32px;
}

.k9mz-phead__btns {
  margin-top: 22px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.k9mz-phead__anchors {
  margin-top: 14px;
  display: flex;
  justify-content: center;
  gap: 16px;
  font-weight: 600;
}

.k9mz-phead__anchors a {
  color: var(--brand);
}

.k9mz-dlzone {
  padding: 28px 0 40px;
  background: var(--surface2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.k9mz-dlzone__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.k9mz-plat {
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--surface);
  overflow: hidden;
}

.k9mz-plat__shot img {
  width: 100%;
  height: auto;
  display: block;
}

.k9mz-plat__bd {
  padding: 18px 18px 20px;
}

.k9mz-plat__t {
  font-weight: 800;
  font-size: 16px;
}

.k9mz-plat__d {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
}

.k9mz-plat__act {
  margin-top: 14px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.k9mz-read {
  padding: 44px 0 70px;
}

.k9mz-read__paper {
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--surface);
}

.k9mz-read__body {
  padding: 26px 22px;
}

.k9mz-faq {
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--surface2);
  padding: 12px 14px;
  margin: 0 0 12px;
}

.k9mz-faq__q {
  width: 100%;
  border: none;
  background: transparent;
  padding: 4px 2px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 15px;
  font-weight: 800;
  color: var(--text);
  cursor: pointer;
}

.k9mz-faq__a {
  padding: 10px 2px 2px;
  color: var(--muted);
  font-size: 14px;
}

.k9mz-foot {
  border-top: 1px solid var(--border);
  background: var(--bg);
  padding: 34px 0;
}

.k9mz-foot__cta {
  text-align: center;
  padding-bottom: 24px;
}

.k9mz-foot__ctaT {
  margin: 0;
  font-size: 20px;
  font-weight: 800;
}

.k9mz-foot__ctaBtns {
  margin-top: 14px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.k9mz-foot__row {
  border-top: 1px solid var(--border);
  padding-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.k9mz-foot__note {
  color: var(--muted);
  font-size: 14px;
}

.k9mz-foot__links {
  display: flex;
  gap: 14px;
  font-weight: 700;
}

.k9mz-foot__links a {
  color: var(--brand);
}

.k9mz-foot__copy {
  margin-top: 16px;
  color: var(--subtle);
  font-size: 13px;
}

.k9mz-tiles {
  padding: 26px 0 70px;
}

.k9mz-tiles__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.k9mz-tile {
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--surface);
  padding: 18px 18px 16px;
}

.k9mz-tile:hover {
  border-color: var(--brand);
}

.k9mz-tile__t {
  font-weight: 800;
  color: var(--text);
}

.k9mz-tile__d {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.k9mz-news {
  padding: 44px 0 70px;
}

.k9mz-news__hd {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}

.k9mz-news__hd .k9mz-secTitle {
  text-align: left;
  flex: 1;
  min-width: 0;
}

.k9mz-news__more {
  color: var(--brand);
  font-weight: 800;
}

.k9mz-news__grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.k9mz-card {
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  background: var(--surface);
  display: flex;
  flex-direction: column;
  transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
}

.k9mz-card:hover {
  border-color: rgba(34, 158, 217, 0.45);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.k9mz-card__thumb {
  display: block;
  background: var(--surface2);
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.k9mz-card__thumb img {
  width: 100%;
  object-fit: cover;
  height: 100%;
}

.k9mz-card__bd {
  padding: 14px 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.k9mz-card__t {
  font-weight: 800;
  line-height: 1.35;
}

.k9mz-card__t a:hover {
  color: var(--brandHover);
}

.k9mz-card__meta {
  color: var(--subtle);
  font-size: 13px;
}

.k9mz-card__d {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.k9mz-card--sm .k9mz-card__bd {
  gap: 8px;
  padding: 12px 12px 14px;
}

.k9mz-card--sm .k9mz-card__d {
  display: none;
}

.k9mz-more {
  margin-top: 26px;
}

.k9mz-more__pn {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.k9mz-more__pn .k9mz-dl {
  justify-content: flex-start;
}

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

.tg-platform {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 24px;
  border-radius: var(--radiusCard);
  transition: all 0.3s ease;
}

.tg-platform:hover {
  background: var(--surface2);
  border-color: var(--brand);
  box-shadow: var(--glow);
}

.tg-platform__icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--brandSoft);
  color: var(--brandHover);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.tg-platform__t {
  font-weight: 750;
}

.tg-platform__d {
  color: var(--subtle);
  font-size: 12px;
}

.tg-features {
  padding: 40px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.tg-feature {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 40px;
  border-radius: var(--radiusCard);
  transition: all 0.3s ease;
}

.tg-feature:hover {
  background: var(--surface2);
  border-color: var(--brand);
  box-shadow: var(--shadow);
}

.tg-feature__emoji {
  font-size: 22px;
}

.tg-feature__t {
  margin-top: 8px;
  font-weight: 750;
}

.tg-feature__d {
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
}

.tg-news {
  padding: 40px 0;
}

.tg-news__list {
  display: grid;
  gap: 12px;
}

.tg-newsItem {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 12px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radiusCard);
  background: var(--surface);
}

.tg-newsItem__img {
  width: 120px;
  height: 84px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
}

.tg-newsItem__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tg-newsItem__t {
  font-weight: 750;
  color: var(--text);
}

.tg-newsItem__t a:hover {
  color: var(--brandHover);
}

.tg-newsItem__meta {
  margin-top: 6px;
  color: var(--subtle);
  font-size: 12px;
}

.tg-newsItem__d {
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
}

.tg-testimonials {
  padding: 56px 0;
  background: var(--bg);
}

.tg-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.tg-testimonial {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 32px;
  border-radius: var(--radiusCard);
}

.tg-testimonial__body {
  font-style: italic;
  color: var(--text);
  line-height: 1.6;
  position: relative;
}

.tg-testimonial__body::before {
  content: "“";
  font-size: 40px;
  color: var(--brandSoft);
  position: absolute;
  top: -20px;
  left: -10px;
  z-index: -1;
}

.tg-testimonial__meta {
  margin-top: 16px;
  font-weight: 700;
  color: var(--brandHover);
  font-size: 14px;
  text-align: right;
}

.tg-article {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 18px;
  align-items: start;
}

@media (max-width: 980px) {
  .tg-testimonials__grid {
    grid-template-columns: 1fr;
  }
}

.tg-article__main {
  min-width: 0;
}

.tg-article__aside {
  position: sticky;
  top: calc(var(--navH) + 18px);
}

.tg-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radiusCard);
}

.tg-panel__inner {
  padding: 18px 18px;
}

@media (max-width: 980px) {
  :root {
    --navH: 66px;
  }

  body {
    padding-top: 0;
  }

  .k9mz-menubtn {
    display: inline-flex;
  }

  .k9mz-nav {
    position: absolute;
    top: 66px;
    left: 14px;
    right: 14px;
    display: grid;
    gap: 8px;
    padding: 12px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 10px;
    box-shadow: var(--shadow);
    z-index: 50;
  }

  .k9mz-nav[aria-hidden="true"] {
    display: none;
  }

  .k9mz-nav__a {
    padding: 10px 10px;
    border-radius: 8px;
  }

  .k9mz-nav__a:hover {
    background: var(--brandSoft);
  }

  .k9mz-top__in {
    height: 66px;
  }

  .k9mz-brand__logo {
    height: 28px;
  }

  .k9mz-points__grid {
    grid-template-columns: 1fr;
  }

  .k9mz-news__grid {
    grid-template-columns: 1fr;
  }

  .k9mz-dlzone__grid {
    grid-template-columns: 1fr;
  }

  .k9mz-hero__duo {
    grid-template-columns: 1fr;
  }

  .k9mz-tiles__grid {
    grid-template-columns: 1fr;
  }

  .k9mz-more__pn {
    grid-template-columns: 1fr;
  }

  .ww-hero__actions {
    justify-content: stretch;
  }

  .ww-hero__actions .k9mz-hbtn {
    flex: 1 1 auto;
  }

  .ww-grid3 {
    grid-template-columns: 1fr;
  }

  .ww-grid4 {
    grid-template-columns: 1fr;
  }

  .ww-hero__grid {
    grid-template-columns: 1fr;
  }

  .ww-hero__copy {
    text-align: center;
  }

  .ww-hero__copy .ww-actions {
    justify-content: center;
  }

  .ww-hero__meta {
    justify-content: center;
  }

  .ww-layout {
    grid-template-columns: 1fr;
  }

  .ww-aside {
    position: static;
    top: auto;
  }

  .ww-pn {
    grid-template-columns: 1fr;
  }

  .ww-newsItem {
    grid-template-columns: 120px minmax(0, 1fr);
  }

  .ww-newsItem__img {
    width: 120px;
    height: 84px;
  }

  .ww-footer__grid {
    grid-template-columns: 1fr;
  }

  .tg-hero__grid {
    grid-template-columns: 1fr;
  }

  .tg-hero__copy {
    text-align: center;
  }

  .tg-hero__meta {
    justify-content: center;
  }

  .tg-shelf__row {
    grid-template-columns: 1fr;
  }

  .tg-platforms__row {
    grid-template-columns: 1fr;
  }

  .tg-features__grid {
    grid-template-columns: 1fr;
  }

  .tg-article {
    grid-template-columns: 1fr;
  }

  .tg-article__aside {
    position: static;
    top: auto;
  }
}

/* 品牌字、双端预览、404、外链说明 */
.k9mz-brand__name {
  color: var(--brand);
  font-weight: 800;
  margin-left: 10px;
  letter-spacing: 0.02em;
}

.k9mz-hero__duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  max-width: 960px;
  margin: 36px auto 0;
  align-items: end;
}

.k9mz-hero__duo .k9mz-hero__shots {
  margin: 0;
}

.k9mz-dl--disabled {
  opacity: 0.55;
  pointer-events: none;
  cursor: not-allowed;
}

.k9mz-miss {
  padding: 120px 0 100px;
  text-align: center;
  background: linear-gradient(180deg, var(--surface2), var(--bg));
}

.k9mz-miss__box {
  max-width: 640px;
  margin: 0 auto;
}

.k9mz-miss__badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--brandSoft);
  color: var(--brand);
  font-size: 14px;
  font-weight: 700;
  border: 1px solid rgba(0, 136, 203, 0.22);
  margin-bottom: 20px;
}

.k9mz-miss__h {
  margin: 0;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
}

.k9mz-miss__txt {
  margin: 20px 0 0;
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.75;
}

.k9mz-miss__act {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.k9mz-hbtn--line {
  border: 2px solid var(--brand);
  background: transparent;
  color: var(--brand);
}

.k9mz-hbtn--line:hover {
  background: var(--brandSoft);
  color: var(--brandHover);
}

.k9mz-srcurl {
  margin-top: 16px;
  font-size: 13px;
  color: var(--subtle);
}

.k9mz-srcurl a {
  color: var(--brand);
  word-break: break-all;
}

.k9mz-plat__t {
  margin: 0;
}
