/* game9 Frontend UI v7 - generated production bundle */

/* ---- style.css ---- */
/* ==========================================================================
   game9 下载站模板 — 全局样式
   配色方案:靛蓝紫 (indigo/violet) 主色 + 青色点缀,替代原站的青绿色
   作者:Deep Copilot  |  纯手写,无任何外部 CDN 依赖
   ========================================================================== */

/* ---------- 1. 变量 ---------- */
:root {
  --primary: #5b4bf5;
  --primary-2: #7c6bff;
  --primary-dark: #4338ca;
  --accent: #22d3ee;
  --accent-dark: #06b6d4;

  --bg: #f4f5fb;
  --card: #ffffff;
  --text: #161b26;
  --text-2: #3b4252;
  --muted: #6b7280;
  --line: #e9eaf2;
  --line-2: #f1f2f8;

  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 22px;
  --wrap: 1200px;

  --shadow-xs: 0 1px 2px rgba(17, 24, 39, .05);
  --shadow-sm: 0 2px 10px rgba(23, 20, 60, .06);
  --shadow-md: 0 10px 30px rgba(60, 50, 180, .12);
  --shadow-lg: 0 22px 60px rgba(60, 50, 180, .22);

  --head-grad: linear-gradient(118deg, #5b4bf5 0%, #7c6bff 52%, #4f46e5 100%);
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- 2. 重置与基础 ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

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

body,
h1, h2, h3, h4, h5, h6,
p, ul, ol, li, figure, dl, dd, dt, fieldset { margin: 0; }

ul, ol { list-style: none; padding: 0; }

img { display: block; max-width: 100%; border: 0; }

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

button, input, select, textarea { font: inherit; color: inherit; }

button { cursor: pointer; border: 0; background: none; }

body {
  font-family: "Inter", "Segoe UI", "PingFang SC", "Microsoft YaHei", system-ui, -apple-system, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
}

.line1 { overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
.line2 {
  overflow: hidden; display: -webkit-box;
  -webkit-line-clamp: 2; -webkit-box-orient: vertical;
}
.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 18px; }
.fl { float: left; }
.fr { float: right; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------- 3. 按钮 ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 42px; padding: 0 22px; border-radius: 999px;
  font-size: 14px; font-weight: 700; white-space: nowrap;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), background .18s var(--ease);
}
.btn-primary {
  color: #fff;
  background: linear-gradient(120deg, var(--primary), var(--primary-2));
  box-shadow: 0 8px 20px rgba(91, 75, 245, .32);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(91, 75, 245, .42); }
.btn-accent { color: #062e34; background: linear-gradient(120deg, #67e8f9, var(--accent)); }
.btn-accent:hover { transform: translateY(-2px); }
.btn-ghost { color: var(--primary); background: rgba(91, 75, 245, .1); }
.btn-ghost:hover { background: rgba(91, 75, 245, .18); }
.btn-block { width: 100%; }

/* ---------- 4. 顶部头部 ---------- */
/* 不要给 .site-head 加 overflow:hidden —— 它会连带把 .lang-menu 下拉菜单裁掉,
   表现就是"菜单被挡住 / 点了没反应"。右上角装饰光晕改用 background 图层实现,
   由元素自身边界裁切,不需要 overflow。 */
.site-head {
  position: relative;
  z-index: 60;   /* 必须高于 .site-nav 的 40,否则语言下拉会被粘性导航条盖住 */
  background:
    radial-gradient(circle 210px at 92% -54px, rgba(255, 255, 255, .22), transparent 62%),
    var(--head-grad);
}
.head-inner {
  position: relative; z-index: 1;
  display: flex; align-items: center; gap: 26px;
  min-height: 92px; padding-top: 16px; padding-bottom: 16px;
}
.brand { display: flex; align-items: center; gap: 11px; flex: 0 0 auto; }
.brand-logo { width: 42px; height: 42px; border-radius: 12px; box-shadow: 0 6px 16px rgba(0, 0, 0, .18); }
.brand-name { font-size: 22px; font-weight: 800; letter-spacing: .3px; color: #fff; }

.search {
  flex: 1 1 auto; max-width: 560px; margin: 0 auto;
  display: flex; align-items: center;
  height: 50px; padding: 5px 5px 5px 20px;
  background: rgba(255, 255, 255, .95); border-radius: 999px;
  box-shadow: 0 10px 26px rgba(30, 20, 90, .18);
}
.search-input {
  flex: 1 1 auto; min-width: 0; height: 100%; border: 0; outline: none;
  background: transparent; font-size: 15px; color: var(--text);
}
.search-input::placeholder { color: #9aa1b1; }
.search-btn {
  flex: 0 0 auto; width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center; color: #fff;
  background: linear-gradient(120deg, var(--primary), var(--primary-2));
  transition: transform .18s var(--ease);
}
.search-btn:hover { transform: scale(1.06); }
.search-btn svg { width: 19px; height: 19px; }

.head-links { flex: 0 0 auto; display: flex; gap: 18px; }
.head-links a { color: rgba(255, 255, 255, .85); font-size: 13px; font-weight: 600; transition: color .18s; }
.head-links a:hover { color: #fff; }

/* ---------- 5. 主导航 ---------- */
.site-nav {
  position: sticky; top: 0; z-index: 40;
  background: #fff; border-bottom: 1px solid var(--line);
  box-shadow: 0 4px 18px rgba(23, 20, 60, .05);
}
.nav-inner { display: flex; align-items: center; gap: 14px; height: 56px; }
.nav-list { display: flex; align-items: center; gap: 4px; flex: 1 1 auto; }
.nav-list a {
  display: inline-flex; align-items: center; height: 38px; padding: 0 18px;
  border-radius: 999px; font-size: 15px; font-weight: 700; color: var(--text-2);
  transition: background .18s var(--ease), color .18s var(--ease);
}
.nav-list a:hover { color: var(--primary); background: rgba(91, 75, 245, .08); }
.nav-list li.on a { color: #fff; background: linear-gradient(120deg, var(--primary), var(--primary-2)); box-shadow: 0 8px 18px rgba(91, 75, 245, .3); }
.nav-cta { display: inline-flex; align-items: center; height: 38px; padding: 0 20px; border-radius: 999px; font-weight: 700; color: var(--primary); background: rgba(91, 75, 245, .1); }
.nav-cta:hover { background: rgba(91, 75, 245, .18); }
.nav-toggle { display: none; width: 40px; height: 40px; border-radius: 10px; font-size: 20px; color: var(--text); background: var(--line-2); }

/* ---------- 6. 通用区块 ---------- */
.section { margin-top: 26px; }
.sec-head {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 16px;
}
.sec-title {
  position: relative;
  font-size: 22px; font-weight: 800; color: var(--text);
  padding-left: 16px;
}
.sec-title::before {
  content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 5px; height: 22px; border-radius: 3px;
  background: linear-gradient(180deg, var(--primary), var(--accent));
}
.sec-title small { margin-left: 10px; font-size: 13px; font-weight: 600; color: var(--muted); }
.sec-more { margin-left: auto; font-size: 13px; font-weight: 700; color: var(--primary); }
.sec-more:hover { color: var(--primary-dark); }

/* ---------- 7. 首页 Hero(轮播 + 侧栏) ---------- */
.hero { display: grid; grid-template-columns: 1.55fr 1fr; gap: 18px; margin-top: 22px; }

.hero-slider { position: relative; border-radius: var(--radius-lg); overflow: hidden; background: #0f1220; box-shadow: var(--shadow-md); }
.slides { display: flex; transition: transform .55s var(--ease); }
.slide { position: relative; flex: 0 0 100%; aspect-ratio: 16 / 9; }
.slide img { width: 100%; height: 100%; object-fit: cover; }
.slide-cap {
  position: absolute; inset: auto 0 0 0; padding: 46px 26px 22px;
  background: linear-gradient(to top, rgba(9, 11, 22, .92), rgba(9, 11, 22, .35) 55%, transparent);
  color: #fff;
}
.slide-tag {
  display: inline-block; margin-bottom: 9px; padding: 3px 11px; border-radius: 999px;
  font-size: 12px; font-weight: 700; background: rgba(34, 211, 238, .9); color: #062e34;
}
.slide-name { font-size: 22px; font-weight: 800; }
.slide-desc { margin-top: 4px; font-size: 13px; color: rgba(255, 255, 255, .82); }
.slider-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center;
  color: #fff; background: rgba(15, 18, 32, .45); backdrop-filter: blur(4px);
  transition: background .18s;
}
.slider-nav:hover { background: rgba(15, 18, 32, .7); }
.slider-nav.prev { left: 14px; }
.slider-nav.next { right: 14px; }
.dots { position: absolute; left: 0; right: 0; bottom: 14px; display: flex; justify-content: center; gap: 8px; }
.dots button { width: 9px; height: 9px; border-radius: 999px; background: rgba(255, 255, 255, .5); transition: width .25s var(--ease), background .25s; }
.dots button.on { width: 26px; background: #fff; }

.hero-side {
  display: flex; flex-direction: column; gap: 12px;
  padding: 18px; background: var(--card); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm); border: 1px solid var(--line);
}
.hero-side h2 { display: flex; align-items: center; gap: 8px; font-size: 16px; font-weight: 800; }
.hero-side h2 .dot { width: 8px; height: 8px; border-radius: 50%; background: #f43f5e; box-shadow: 0 0 0 4px rgba(244, 63, 94, .15); }
.spot { display: flex; align-items: center; gap: 12px; padding: 8px; border-radius: var(--radius-sm); transition: background .18s; }
.spot:hover { background: var(--line-2); }
.spot-rank { flex: 0 0 auto; width: 26px; height: 26px; display: grid; place-items: center; border-radius: 8px; font-size: 13px; font-weight: 800; color: var(--muted); background: var(--line-2); }
.spot:nth-child(2) .spot-rank { color: #fff; background: #f43f5e; }
.spot:nth-child(3) .spot-rank { color: #fff; background: #f59e0b; }
.spot:nth-child(4) .spot-rank { color: #fff; background: #10b981; }
.spot img { flex: 0 0 auto; width: 48px; height: 48px; border-radius: 12px; object-fit: cover; }
.spot-info { min-width: 0; }
.spot-info b { display: block; font-size: 14px; font-weight: 700; }
.spot-info small { color: var(--muted); font-size: 12px; }

/* ---------- 8. 精选图标墙 ---------- */
.icon-grid {
  display: grid; grid-template-columns: repeat(10, 1fr); gap: 22px 14px;
  padding: 24px; background: var(--card);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); border: 1px solid var(--line);
}
.icon-card { text-align: center; }
.icon-card img { width: 100%; max-width: 84px; aspect-ratio: 1; margin: 0 auto; border-radius: 20px; box-shadow: var(--shadow-sm); transition: transform .2s var(--ease); }
.icon-card:hover img { transform: translateY(-4px) scale(1.04); }
.icon-card b { display: block; margin-top: 9px; font-size: 13px; font-weight: 600; color: var(--text-2); }
.icon-card:hover b { color: var(--primary); }

/* ---------- 9. 排行榜文字行 ---------- */
.rank-rows { background: var(--card); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); border: 1px solid var(--line); overflow: hidden; }
.rank-row { display: flex; align-items: center; gap: 14px; padding: 13px 20px; }
.rank-row + .rank-row { border-top: 1px solid var(--line-2); }
.rank-row .row-name { flex: 0 0 150px; display: flex; align-items: center; gap: 10px; font-size: 16px; font-weight: 800; }
.rank-row .row-name::before { content: "▮"; color: var(--primary); font-size: 12px; }
.row-links { display: flex; flex-wrap: wrap; gap: 6px 0; }
.row-links a {
  padding: 2px 16px; font-size: 13px; color: var(--text-2);
  border-left: 1px solid var(--line);
}
.row-links a:first-child { border-left: 0; padding-left: 4px; }
.row-links a:hover { color: var(--primary); }

/* ---------- 10. 三栏面板 ---------- */
.tri { display: grid; grid-template-columns: 1fr 1.15fr 1fr; gap: 18px; }
.panel { background: var(--card); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); border: 1px solid var(--line); padding: 18px; }
.panel-head { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.panel-head h3 { font-size: 17px; font-weight: 800; }
.panel-head .more { margin-left: auto; font-size: 13px; font-weight: 700; color: var(--primary); }

/* 资讯 tab */
.panel-tabs { display: flex; gap: 6px; margin-left: 6px; }
.panel-tabs button { padding: 3px 12px; border-radius: 999px; font-size: 13px; font-weight: 700; color: var(--muted); }
.panel-tabs button.on { color: #fff; background: linear-gradient(120deg, var(--primary), var(--primary-2)); }

.news-list li { display: flex; align-items: center; gap: 10px; padding: 11px 0; border-bottom: 1px solid var(--line-2); }
.news-list li:last-child { border-bottom: 0; }
.news-list .tag { flex: 0 0 auto; padding: 1px 9px; border-radius: 6px; font-size: 12px; font-weight: 700; color: var(--primary); background: rgba(91, 75, 245, .1); }
.news-list .t { flex: 1 1 auto; min-width: 0; font-size: 13px; color: var(--text-2); }
.news-list a:hover .t { color: var(--primary); }
.news-list .date { flex: 0 0 auto; font-size: 12px; color: var(--muted); }

/* 排行面板 */
.rank-list li { display: flex; align-items: center; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--line-2); }
.rank-list li:last-child { border-bottom: 0; }
.rank-list .num { flex: 0 0 24px; height: 24px; display: grid; place-items: center; border-radius: 8px; font-size: 12px; font-weight: 800; color: var(--muted); background: var(--line-2); }
.rank-list li:nth-child(-n+3) .num { color: #fff; background: linear-gradient(120deg, var(--primary), var(--primary-2)); }
.rank-list img { flex: 0 0 auto; width: 42px; height: 42px; border-radius: 11px; object-fit: cover; }
.rank-list .info { flex: 1 1 auto; min-width: 0; }
.rank-list .info b { display: block; font-size: 14px; font-weight: 700; }
.rank-list .info small { color: var(--muted); font-size: 12px; }
.rank-list .score { flex: 0 0 auto; font-size: 13px; font-weight: 800; color: #f59e0b; }

/* 专题卡 */
.topic-card { position: relative; border-radius: var(--radius); overflow: hidden; }
.topic-card img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; transition: transform .3s var(--ease); }
.topic-card:hover img { transform: scale(1.05); }
.topic-card .cap { position: absolute; inset: auto 0 0 0; padding: 34px 14px 12px; background: linear-gradient(to top, rgba(9, 11, 22, .9), transparent); color: #fff; font-weight: 700; font-size: 14px; }
.topic-links { margin-top: 12px; display: flex; flex-direction: column; gap: 9px; }
.topic-links a { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-2); }
.topic-links a span { flex: 0 0 auto; padding: 1px 8px; border-radius: 6px; font-size: 11px; font-weight: 700; background: rgba(34, 211, 238, .16); color: var(--accent-dark); }
.topic-links a:hover { color: var(--primary); }

/* ---------- 11. 卡片网格(游戏/应用) ---------- */
.card-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.game-card { background: var(--card); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-xs); transition: transform .2s var(--ease), box-shadow .2s var(--ease); }
.game-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.game-card .thumb { position: relative; aspect-ratio: 16 / 11; overflow: hidden; }
.game-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s var(--ease); }
.game-card:hover .thumb img { transform: scale(1.06); }
.game-card .badge { position: absolute; top: 10px; left: 10px; padding: 2px 10px; border-radius: 999px; font-size: 11px; font-weight: 700; color: #fff; background: rgba(15, 18, 32, .55); backdrop-filter: blur(4px); }
.game-card .body { padding: 12px 14px 14px; }
.game-card .name { font-size: 15px; font-weight: 700; }
.game-card:hover .name { color: var(--primary); }
.game-card .meta { margin-top: 6px; display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--muted); }
.game-card .meta .dl { margin-left: auto; padding: 2px 10px; border-radius: 8px; color: var(--primary); background: rgba(91, 75, 245, .1); font-weight: 700; }

/* ---------- 12. 面包屑 ---------- */
.crumb { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; padding: 16px 0 4px; font-size: 13px; color: var(--muted); }
.crumb a { color: var(--muted); }
.crumb a:hover { color: var(--primary); }
.crumb .sep { color: #c3c6d4; }
.crumb .cur { color: var(--text-2); font-weight: 600; }

/* ---------- 13. 分类筛选 ---------- */
.chips { display: flex; flex-wrap: wrap; gap: 10px; padding: 16px 0; }
.chips a {
  padding: 7px 18px; border-radius: 999px; font-size: 14px; font-weight: 600;
  color: var(--text-2); background: var(--card); border: 1px solid var(--line);
  transition: all .18s var(--ease);
}
.chips a:hover { color: var(--primary); border-color: var(--primary); }
.chips a.on { color: #fff; border-color: transparent; background: linear-gradient(120deg, var(--primary), var(--primary-2)); box-shadow: 0 8px 18px rgba(91, 75, 245, .3); }

/* ---------- 14. 列表项 ---------- */
.list-wrap { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.list-item { display: flex; gap: 16px; padding: 18px; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-xs); transition: box-shadow .2s var(--ease), transform .2s var(--ease); }
.list-item:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.list-item .li-icon { flex: 0 0 auto; width: 84px; height: 84px; border-radius: 18px; object-fit: cover; box-shadow: var(--shadow-sm); }
.list-item .li-main { flex: 1 1 auto; min-width: 0; }
.list-item h3 { font-size: 17px; font-weight: 800; }
.list-item:hover h3 { color: var(--primary); }
.list-item .li-meta { margin-top: 4px; display: flex; flex-wrap: wrap; gap: 6px 10px; font-size: 12px; color: var(--muted); }
.list-item .li-meta .tag { color: var(--primary); font-weight: 700; }
.list-item .li-desc { margin-top: 8px; font-size: 13px; color: var(--muted); }
.list-item .li-btn { align-self: flex-start; margin-top: 10px; height: 34px; padding: 0 18px; font-size: 13px; }

/* ---------- 15. 分页 ---------- */
.pager { display: flex; justify-content: center; gap: 8px; margin: 30px 0 10px; }
.pager a, .pager span {
  min-width: 40px; height: 40px; padding: 0 12px; display: grid; place-items: center;
  border-radius: 12px; font-size: 14px; font-weight: 700;
  color: var(--text-2); background: var(--card); border: 1px solid var(--line);
}
.pager a:hover { color: var(--primary); border-color: var(--primary); }
.pager .on { color: #fff; border-color: transparent; background: linear-gradient(120deg, var(--primary), var(--primary-2)); box-shadow: 0 8px 18px rgba(91, 75, 245, .3); }

/* ---------- 16. 详情页 ---------- */
.detail { display: grid; grid-template-columns: 1fr 320px; gap: 22px; align-items: start; }

.detail-hero { display: flex; gap: 22px; padding: 24px; background: var(--card); border-radius: var(--radius-lg); border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.detail-hero .dh-icon { flex: 0 0 auto; width: 120px; height: 120px; border-radius: 26px; object-fit: cover; box-shadow: var(--shadow-md); }
.detail-hero .dh-main { flex: 1 1 auto; min-width: 0; }
.detail-hero h1 { font-size: 26px; font-weight: 800; }
.detail-hero .dh-tags { margin: 10px 0; display: flex; flex-wrap: wrap; gap: 8px; }
.detail-hero .dh-tags span { padding: 3px 12px; border-radius: 999px; font-size: 12px; font-weight: 700; background: var(--line-2); color: var(--text-2); }
.detail-hero .dh-tags span.hot { color: #fff; background: linear-gradient(120deg, #f43f5e, #f97316); }
.detail-hero .dh-stats { display: flex; flex-wrap: wrap; gap: 18px; color: var(--muted); font-size: 13px; }
.detail-hero .dh-stats b { color: var(--text); font-size: 15px; }
.dh-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 16px; }
.dh-actions .btn { height: 50px; padding: 0 34px; font-size: 16px; }
.dh-actions .btn-primary { box-shadow: 0 12px 28px rgba(91, 75, 245, .4); }

.meta-table { margin-top: 20px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.meta-table div { padding: 13px 18px; background: var(--card); font-size: 13px; }
.meta-table div span { color: var(--muted); }
.meta-table div b { color: var(--text); font-weight: 700; word-break: break-all; }

.screens { display: flex; gap: 12px; overflow-x: auto; padding: 6px 2px 14px; scrollbar-width: thin; }
.screens img { flex: 0 0 auto; width: 210px; border-radius: 14px; box-shadow: var(--shadow-sm); }

.tabs { display: flex; gap: 6px; margin: 22px 0 0; border-bottom: 2px solid var(--line); }
.tabs button { padding: 11px 20px; font-size: 15px; font-weight: 700; color: var(--muted); border-bottom: 2px solid transparent; margin-bottom: -2px; }
.tabs button.on { color: var(--primary); border-bottom-color: var(--primary); }
.tab-pane { display: none; padding: 20px 24px; background: var(--card); border: 1px solid var(--line); border-top: 0; border-radius: 0 0 var(--radius) var(--radius); }
.tab-pane.on { display: block; }
.tab-pane h4 { margin: 18px 0 8px; font-size: 16px; font-weight: 800; }
.tab-pane h4:first-child { margin-top: 0; }
.tab-pane p { margin: 8px 0; color: var(--text-2); }
.tab-pane ul { margin: 8px 0 8px 4px; }
.tab-pane li { position: relative; padding-left: 18px; margin: 6px 0; color: var(--text-2); }
.tab-pane li::before { content: ""; position: absolute; left: 2px; top: 9px; width: 6px; height: 6px; border-radius: 50%; background: var(--primary-2); }

.detail-aside { display: flex; flex-direction: column; gap: 18px; position: sticky; top: 74px; }
.side-box { padding: 18px; background: var(--card); border-radius: var(--radius-lg); border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.side-box h3 { font-size: 16px; font-weight: 800; margin-bottom: 12px; }
.side-box .cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.side-box .cards a { text-align: center; }
.side-box .cards img { width: 100%; aspect-ratio: 1; border-radius: 13px; object-fit: cover; }
.side-box .cards small { display: block; margin-top: 5px; font-size: 11px; color: var(--muted); }

/* ---------- 17. 资讯 ---------- */
.news-item { display: flex; gap: 18px; padding: 18px; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); margin-bottom: 14px; transition: box-shadow .2s var(--ease); }
.news-item:hover { box-shadow: var(--shadow-md); }
.news-item .ni-thumb { flex: 0 0 auto; width: 180px; aspect-ratio: 16 / 10; border-radius: var(--radius-sm); object-fit: cover; }
.news-item .ni-main { flex: 1 1 auto; min-width: 0; }
.news-item h3 { font-size: 18px; font-weight: 800; }
.news-item:hover h3 { color: var(--primary); }
.news-item .ni-date { margin-top: 6px; font-size: 12px; color: var(--muted); }
.news-item .ni-desc { margin-top: 8px; font-size: 13px; color: var(--muted); }

/* ---------- 18. 专题 ---------- */
.topic-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.topic-tile { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .2s var(--ease), box-shadow .2s var(--ease); }
.topic-tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.topic-tile img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.topic-tile .tt-body { padding: 16px; }
.topic-tile h3 { font-size: 17px; font-weight: 800; }
.topic-tile:hover h3 { color: var(--primary); }
.topic-tile p { margin-top: 6px; font-size: 13px; color: var(--muted); }

/* ---------- 19. 页脚 ---------- */
.site-foot { margin-top: 40px; background: #14152b; color: rgba(255, 255, 255, .72); }
.foot-main { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 30px; padding: 44px 0 30px; }
.foot-brand { display: flex; align-items: center; gap: 11px; margin-bottom: 14px; }
.foot-brand img { width: 40px; height: 40px; }
.foot-brand b { color: #fff; font-size: 20px; font-weight: 800; }
.foot-about { font-size: 13px; line-height: 1.8; max-width: 320px; }
.foot-col h4 { color: #fff; font-size: 15px; font-weight: 800; margin-bottom: 14px; }
.foot-col a { display: block; padding: 5px 0; font-size: 13px; }
.foot-col a:hover { color: #fff; }
.foot-bottom { border-top: 1px solid rgba(255, 255, 255, .1); padding: 18px 0; text-align: center; font-size: 13px; color: rgba(255, 255, 255, .5); }

/* ---------- 20. 回到顶部 ---------- */
.to-top {
  position: fixed; right: 26px; bottom: 26px; z-index: 50;
  width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center;
  color: #fff; background: linear-gradient(120deg, var(--primary), var(--primary-2));
  box-shadow: 0 12px 26px rgba(91, 75, 245, .4);
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: opacity .25s var(--ease), visibility .25s, transform .25s var(--ease);
}
.to-top.show { opacity: 1; visibility: visible; transform: none; }
.to-top svg { width: 20px; height: 20px; }

/* ---------- 21. 响应式 ---------- */
@media (max-width: 1080px) {
  .icon-grid { grid-template-columns: repeat(6, 1fr); }
  .card-grid { grid-template-columns: repeat(4, 1fr); }
  .tri { grid-template-columns: 1fr 1fr; }
  .tri .panel:last-child { grid-column: 1 / -1; }
  .detail { grid-template-columns: 1fr; }
  .detail-aside { position: static; }
}
@media (max-width: 820px) {
  .head-inner { flex-wrap: wrap; gap: 14px; min-height: 0; }
  .brand { order: 1; }
  .head-links { order: 2; margin-left: auto; }
  .search { order: 3; flex-basis: 100%; max-width: none; }
  .nav-toggle { display: grid; place-items: center; order: 0; }
  .nav-cta { display: none; }
  .nav-list { display: none; position: absolute; left: 0; right: 0; top: 56px; flex-direction: column; align-items: stretch; gap: 0; padding: 10px 18px 16px; background: #fff; border-bottom: 1px solid var(--line); box-shadow: var(--shadow-md); }
  .site-nav.nav-open .nav-list { display: flex; }
  .nav-list a { height: 46px; }
  .hero { grid-template-columns: 1fr; }
  .tri { grid-template-columns: 1fr; }
  .tri .panel:last-child { grid-column: auto; }
  .card-grid { grid-template-columns: repeat(3, 1fr); }
  .list-wrap { grid-template-columns: 1fr; }
  .topic-grid { grid-template-columns: repeat(2, 1fr); }
  .foot-main { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .icon-grid { grid-template-columns: repeat(4, 1fr); gap: 16px 10px; padding: 18px 14px; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .topic-grid { grid-template-columns: 1fr; }
  .list-item { flex-direction: column; }
  .news-item { flex-direction: column; }
  .news-item .ni-thumb { width: 100%; }
  .detail-hero { flex-direction: column; }
  .detail-hero .dh-icon { width: 92px; height: 92px; }
  .meta-table { grid-template-columns: 1fr; }
  .rank-row { flex-direction: column; align-items: flex-start; gap: 8px; }
  .rank-row .row-name { flex-basis: auto; }
  .foot-main { grid-template-columns: 1fr; gap: 22px; }
  .sec-title { font-size: 19px; }
}

/* ---------- 22. 工具类 ---------- */
.mt-14 { margin-top: 14px; }
.meta-table.single { grid-template-columns: 1fr; margin-top: 0; }

/* ---------- 23. 资讯文章详情 ---------- */
.article-layout { display: grid; grid-template-columns: 1fr 300px; gap: 24px; align-items: start; }
.article {
  padding: 30px 34px;
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-sm);
}
.article-head h1 { font-size: 28px; font-weight: 800; line-height: 1.35; }
.article-meta { margin-top: 14px; display: flex; flex-wrap: wrap; gap: 8px 18px; font-size: 13px; color: var(--muted); }
.article-meta .tag { color: var(--primary); font-weight: 700; }
.article-hero { margin: 22px 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-xs); }
.article-hero img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.article-body { font-size: 15px; line-height: 1.95; color: var(--text-2); }
.article-body p { margin: 15px 0; }
.article-body h2 {
  margin: 28px 0 12px; font-size: 20px; font-weight: 800; color: var(--text);
  padding-left: 14px; border-left: 5px solid var(--primary);
}
.article-body h4 { margin: 22px 0 8px; font-size: 16px; font-weight: 800; color: var(--text); }
.article-body ul { margin: 12px 0; }
.article-body li { position: relative; padding-left: 20px; margin: 8px 0; }
.article-body li::before {
  content: ""; position: absolute; left: 3px; top: 12px;
  width: 7px; height: 7px; border-radius: 50%; background: var(--primary-2);
}
.article-body blockquote {
  margin: 18px 0; padding: 14px 20px;
  border-left: 4px solid var(--primary); background: var(--line-2);
  border-radius: 0 10px 10px 0; color: var(--text-2);
}
.article-tags { margin-top: 26px; display: flex; flex-wrap: wrap; gap: 10px; }
.article-tags a { padding: 5px 15px; border-radius: 999px; font-size: 13px; background: var(--line-2); color: var(--text-2); }
.article-tags a:hover { color: var(--primary); background: rgba(91, 75, 245, .1); }
@media (max-width: 1080px) {
  .article-layout { grid-template-columns: 1fr; }
  .article { padding: 22px 20px; }
  .article-head h1 { font-size: 23px; }
}

/* ---------- 24. 专题详情 ---------- */
.topic-hero { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); color: #fff; }
.topic-hero img { width: 100%; height: 320px; object-fit: cover; }
.topic-hero .th-cap {
  position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end;
  gap: 10px; padding: 34px;
  background: linear-gradient(to top, rgba(9, 11, 22, .92), rgba(9, 11, 22, .3) 58%, transparent);
}
.topic-hero h1 { font-size: 30px; font-weight: 800; }
.topic-hero p { max-width: 760px; color: rgba(255, 255, 255, .86); }
.topic-hero .th-meta { display: flex; flex-wrap: wrap; gap: 8px 16px; font-size: 13px; color: rgba(255, 255, 255, .8); }
.topic-hero .th-meta .tag { padding: 2px 11px; border-radius: 999px; background: rgba(34, 211, 238, .9); color: #062e34; font-weight: 700; }

/* 排行条目可点击 */
.rank-list li > a { display: flex; align-items: center; gap: 12px; width: 100%; }
.rank-list li > a:hover .info b { color: var(--primary); }

@media (max-width: 560px) {
  .topic-hero img { height: 220px; }
  .topic-hero h1 { font-size: 22px; }
  .topic-hero .th-cap { padding: 22px 18px; }
}

/* ---------- 25. 信息页(关于 / 帮助 / 条款 / 反馈) ---------- */
.article-body a { color: var(--primary); font-weight: 600; }
.article-body a:hover { text-decoration: underline; }
.article.narrow { max-width: 880px; margin: 0 auto; }

.form-field { margin-bottom: 16px; }
.form-field > label { display: block; margin-bottom: 6px; font-size: 13px; font-weight: 700; color: var(--text-2); }
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%; padding: 12px 14px; font-size: 14px; color: var(--text);
  background: #fff; border: 1px solid var(--line); border-radius: 10px;
  outline: none; transition: border-color .18s var(--ease), box-shadow .18s var(--ease);
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(91, 75, 245, .15); }
.form-field textarea { min-height: 150px; resize: vertical; }
.form-note { margin-top: 14px; font-size: 12px; color: var(--muted); }

.steps { counter-reset: step; }
.steps li { position: relative; padding-left: 40px; margin: 14px 0; }
.steps li::before {
  content: counter(step); counter-increment: step;
  position: absolute; left: 0; top: 1px; width: 26px; height: 26px;
  display: grid; place-items: center; border-radius: 8px;
  font-size: 13px; font-weight: 800; color: #fff;
  background: linear-gradient(120deg, var(--primary), var(--primary-2));
}

/* ---------- 26. 语言切换器 ---------- */
.lang { position: relative; flex: 0 0 auto; }
.lang > summary {
  list-style: none; cursor: pointer;
  display: inline-flex; align-items: center; gap: 7px;
  height: 38px; padding: 0 14px; border-radius: 999px;
  background: rgba(255, 255, 255, .16); color: #fff;
  font-size: 13px; font-weight: 700;
  border: 1px solid rgba(255, 255, 255, .28);
  transition: background .18s var(--ease);
}
.lang > summary::-webkit-details-marker { display: none; }
.lang > summary::before { content: "🌐"; font-size: 14px; }
.lang > summary::after { content: "▾"; font-size: 11px; opacity: .85; }
.lang > summary:hover { background: rgba(255, 255, 255, .26); }
.lang-menu {
  position: absolute; right: 0; top: calc(100% + 8px); z-index: 60;
  min-width: 168px; padding: 8px; border-radius: 14px;
  background: #fff; border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
}
.lang-menu a {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 12px; border-radius: 8px; font-size: 14px; color: var(--text-2);
}
.lang-menu a:hover { background: var(--line-2); color: var(--primary); }
.lang-menu a[aria-current="true"] { color: var(--primary); font-weight: 800; background: rgba(91, 75, 245, .1); }
.lang-menu a code { margin-left: auto; font-size: 11px; color: var(--muted); }


/* ---- dynamic.css ---- */
.front-empty{margin:35px 0;padding:60px 25px;text-align:center;background:var(--card);border:1px solid var(--line);border-radius:var(--radius-lg);box-shadow:var(--shadow-sm)}.front-empty>span{display:grid;place-items:center;width:60px;height:60px;margin:0 auto 18px;border-radius:18px;background:linear-gradient(135deg,var(--primary),var(--primary-2));color:#fff;font-size:30px}.front-empty h1{font-size:26px}.front-empty p{max-width:600px;margin:10px auto 22px;color:var(--muted)}.home-panels{grid-template-columns:1.4fr 1fr}.category-panel .topic-links{grid-template-columns:repeat(2,1fr)}.row-links small{color:var(--muted);font-weight:400}.list-summary{color:var(--muted);font-size:14px;margin-top:7px;max-width:660px}.list-item .li-main{min-width:0}.list-item h3{margin-bottom:4px}.list-item .li-description{color:var(--muted);font-size:13px;margin:3px 130px 7px 0}.rating{color:#f59e0b;font-weight:800}.screens img{background:var(--line-2)}.download-safe{font-size:13px;color:var(--muted);margin-top:12px}.related-list{display:grid;gap:12px}.related-list a{display:flex;align-items:center;gap:10px;padding-bottom:12px;border-bottom:1px solid var(--line-2)}.related-list img{width:46px;height:46px;border-radius:11px;object-fit:cover}.related-list b{display:block;font-size:13px}.related-list small{color:var(--muted)}@media(max-width:900px){.home-panels{grid-template-columns:1fr}}@media(max-width:680px){.list-item .li-description{margin-right:0}.category-panel .topic-links{grid-template-columns:1fr}}


/* ---- reference.css ---- */
:root{--xh:#00bfb1;--xh-soft:#9bece7;--xh-bg:#f3f3f3;--xh-text:#444;--xh-line:#e5e5e5}body{background:var(--xh-bg);color:var(--xh-text);font-family:Arial,"Microsoft YaHei",sans-serif}.site-head{height:100px;background:var(--xh);box-shadow:none}.site-head .head-inner{width:1200px;height:100px;margin:auto;display:flex;align-items:center;padding:0}.brand{width:260px;display:flex;gap:10px}.brand-logo{width:58px;height:58px}.brand-name{font-size:34px;font-weight:800;color:#fff}.site-head .search{width:587px;margin-left:105px;display:flex;gap:18px;background:none}.site-head .search-input{width:505px;height:45px;border:0;border-radius:30px;background:var(--xh-soft);padding:0 24px;color:#176e68}.site-head .search-input::placeholder{color:#529b96}.site-head .search-btn{width:64px;height:45px;border:0;border-radius:15px;background:var(--xh-soft);color:#008e84;font-weight:700}.site-nav{height:50px;background:#fff;box-shadow:none;border:0}.site-nav .nav-inner{width:1200px;height:50px;margin:auto}.nav-list{height:50px}.nav-list li{width:131px;height:50px;text-align:center}.nav-list a{display:block;line-height:50px;font-size:18px;font-weight:700;color:#555}.nav-list a:hover,.nav-list li.on a{color:var(--xh)}.nav-cta{display:none}.wrap{width:1200px;max-width:calc(100% - 24px)}.xh-top{background:#fff;margin-top:15px}.xh-icons{display:grid;grid-template-columns:repeat(10,1fr);gap:25px;padding:20px 14px 15px}.xh-icon{text-align:center;min-width:0}.xh-icon img{width:90px;height:90px;object-fit:cover;border-radius:15px}.xh-icon b{display:block;margin-top:9px;font-size:14px;font-weight:400;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.xh-pop-row{height:41px;display:flex;align-items:center;border-top:1px solid var(--xh-line);padding:0 14px;overflow:hidden}.xh-pop-row strong{width:158px;font-size:18px;color:#222}.xh-pop-row a{font-size:14px;padding:0 15px;border-left:1px solid var(--xh-line);white-space:nowrap}.xh-main{display:grid;grid-template-columns:390px 470px 270px;gap:20px;background:#fff;margin-top:15px;padding:20px 14px}.xh-feature{position:relative;height:300px;overflow:hidden}.xh-feature img{width:100%;height:100%;object-fit:cover}.xh-feature figcaption{position:absolute;left:0;right:0;bottom:0;background:#0009;color:#fff;padding:16px;font-size:17px}.xh-mini-grid{display:grid;grid-template-columns:1fr 1fr;gap:12px;margin-top:15px}.xh-mini{display:flex;align-items:center;gap:8px;min-width:0}.xh-mini img{width:68px;height:68px;border-radius:18px;object-fit:cover}.xh-mini b,.xh-mini small{display:block;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.xh-mini b{font-size:14px}.xh-mini small{color:#999;margin-top:4px}.xh-tabs{display:grid;grid-template-columns:repeat(3,1fr);border-bottom:2px solid var(--xh)}.xh-tabs span{text-align:center;padding:12px 0;font-size:16px;color:#111}.xh-news{padding-top:13px}.xh-news a{display:flex;align-items:center;height:34px;font-size:14px}.xh-news b{width:70px;color:#999;font-weight:400;border-right:1px solid #ddd;margin-right:10px}.xh-news em{flex:1;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;font-style:normal}.xh-news time{color:var(--xh);margin-left:10px}.xh-side-title,.xh-section-title{height:43px;display:flex;align-items:center;border-bottom:2px solid var(--xh);font-size:18px;color:#111;font-weight:700}.xh-side-title a,.xh-section-title a{margin-left:auto;color:#999;font-size:13px;font-weight:400}.xh-topic-banner{display:block;height:135px;margin-top:15px;overflow:hidden;background:var(--xh-soft)}.xh-topic-banner img{width:100%;height:100%;object-fit:cover}.xh-topic-links{margin-top:12px}.xh-topic-links a{display:block;background:#e5e5e5;margin-bottom:5px;height:28px;line-height:28px;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;font-size:14px}.xh-topic-links span{display:inline-block;width:48px;text-align:center;background:var(--xh);color:#fff;margin-right:6px}.xh-block{background:#fff;margin-top:15px;padding:20px 14px}.xh-resource-grid{display:grid;grid-template-columns:repeat(10,1fr);gap:30px;margin-top:20px}.xh-resource{text-align:center;min-width:0}.xh-resource img{width:80px;height:80px;border-radius:15px;object-fit:cover}.xh-resource b{display:block;margin-top:9px;font-size:14px;font-weight:400;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.section,.detail-hero,.side-box,.list-item,.panel{border-radius:0!important;box-shadow:none!important}.section{background:#fff;padding:20px 14px;margin-top:15px}.sec-title{border-bottom:2px solid var(--xh);padding-bottom:10px}.chips a.on,.btn-primary{background:var(--xh)!important}.list-wrap{border-top:1px solid var(--xh-line)}.list-item{border-bottom:1px solid var(--xh-line)}.list-item .li-icon{border-radius:15px}.detail-hero{border-top:3px solid var(--xh)}.tabs{border-bottom-color:var(--xh)}.tabs button.on{color:var(--xh);border-bottom-color:var(--xh)}.site-foot{background:#333;margin-top:30px}.front-empty.welcome{display:none}.to-top{background:var(--xh)}
.content-list,.topic-page,.article-detail,.download-confirm,.topic-hero{background:#fff;margin-top:15px;padding:22px}.content-list article{display:grid;grid-template-columns:220px 1fr;gap:22px;padding:20px 0;border-bottom:1px solid var(--xh-line)}.content-cover img{width:220px;height:125px;object-fit:cover}.content-list h2{font-size:21px;color:#222;margin:3px 0 12px}.content-list p,.topic-grid p{color:#777;line-height:1.8}.content-list time,.article-meta{color:#999;font-size:13px}.content-empty{padding:55px 20px;text-align:center;color:#999}.topic-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;margin-top:22px}.topic-grid>a{display:block;border:1px solid var(--xh-line);padding-bottom:15px}.topic-grid img{width:100%;height:175px;object-fit:cover}.topic-grid h2,.topic-grid p{padding:0 15px}.topic-grid h2{font-size:19px;margin:14px 0 6px;color:#222}.article-detail{max-width:900px;margin-left:auto;margin-right:auto}.article-detail>h1{font-size:30px;text-align:center;color:#222}.article-meta{text-align:center;margin:12px 0 22px}.article-cover{display:block;max-width:100%;max-height:500px;object-fit:cover;margin:0 auto 25px}.article-body{font-size:16px;line-height:2;white-space:normal;color:#444}.topic-hero{display:grid;grid-template-columns:45% 1fr;gap:28px;align-items:center}.topic-hero img{width:100%;max-height:300px;object-fit:cover}.topic-hero h1{font-size:30px;color:#222}.download-confirm{display:grid;grid-template-columns:180px 1fr;gap:30px;align-items:start}.download-confirm>img{width:180px;height:180px;border-radius:25px;object-fit:cover}.download-confirm h1{font-size:30px;color:#222}.download-confirm ul{padding-left:20px;line-height:2}.download-confirm .btn{display:inline-block;margin:10px 10px 0 0}
.site-head .lang{margin-left:auto}.site-head .lang>summary{white-space:nowrap}.site-foot{background:#303030}.site-foot .foot-main{grid-template-columns:1.45fr repeat(3,1fr);gap:55px;padding:48px 0 32px}.site-foot .foot-brand{display:block;margin:0}.site-foot .foot-brand img{display:inline-block;vertical-align:middle;margin-right:9px}.site-foot .foot-brand b{display:inline-block;vertical-align:middle}.site-foot .foot-brand p{max-width:330px;margin:18px 0 8px;font-size:13px;line-height:1.8;color:#aaa}.site-foot .foot-brand>a{font-size:13px;color:#bbb}.site-foot .foot-col h4{padding-bottom:10px;border-bottom:1px solid #4b4b4b}.site-foot .foot-col a{color:#aaa}.site-foot .foot-col a:hover{color:#fff}.foot-languages{display:flex;flex-wrap:wrap;gap:5px;margin-top:12px}.site-foot .foot-languages a{display:inline-block;padding:4px 7px;border:1px solid #555;border-radius:3px;font-size:11px}.site-foot .foot-languages a.active{color:#fff;border-color:var(--xh);background:#008f85}.foot-note{display:flex;gap:12px;border-top:1px solid #454545;padding:18px 0;color:#999;font-size:12px}.foot-note b{color:#ccc;white-space:nowrap}.site-foot .foot-bottom{margin:0;border-top:1px solid #454545;background:#292929}
.catalog-page{padding-bottom:10px}.catalog-page .crumb{margin:18px 0 10px}.catalog-hero{position:relative;overflow:hidden;display:flex;align-items:center;justify-content:space-between;min-height:152px;padding:30px 36px;border-radius:16px;background:linear-gradient(120deg,#04bdae 0%,#08cbbc 58%,#87e4dc 100%);color:#fff;box-shadow:0 12px 32px rgba(0,163,151,.16)}.catalog-hero:after{content:"";position:absolute;right:120px;top:-95px;width:280px;height:280px;border:55px solid rgba(255,255,255,.12);border-radius:50%}.catalog-hero>div{position:relative;z-index:1}.catalog-hero small{font-size:12px;font-weight:800;letter-spacing:2px;opacity:.75}.catalog-hero h1{margin:7px 0 8px;font-size:30px;color:#fff}.catalog-hero p{margin:0;font-size:14px;opacity:.9}.catalog-count{min-width:120px;text-align:center}.catalog-count strong{display:block;font-size:40px;line-height:1}.catalog-count span{display:block;margin-top:8px;font-size:13px}.catalog-filter{display:flex;align-items:flex-start;gap:24px;margin-top:14px;padding:18px 22px;background:#fff;border:1px solid #e8eaee;border-radius:12px}.filter-label{padding-top:8px;color:#888;font-size:13px;white-space:nowrap}.catalog-filter .chips{display:flex;flex-wrap:wrap;gap:8px}.catalog-filter .chips a{display:inline-flex;align-items:center;gap:7px;height:34px;padding:0 15px;border:1px solid #e1e5e9;border-radius:8px;background:#fff;font-size:13px;font-weight:600}.catalog-filter .chips a:hover{color:var(--xh);border-color:var(--xh)}.catalog-filter .chips a.on{color:#fff;border-color:var(--xh);box-shadow:0 7px 18px rgba(0,191,177,.2)}.catalog-filter .chips em{font-size:10px;font-style:normal;opacity:.7}.catalog-layout{display:grid;grid-template-columns:minmax(0,1fr) 245px;gap:18px;margin-top:18px}.catalog-results,.catalog-aside section{background:#fff;border:1px solid #e8eaee;border-radius:12px}.catalog-results{padding:22px}.catalog-results-head{display:flex;align-items:center;justify-content:space-between;padding-bottom:17px;border-bottom:1px solid #eceef1}.catalog-results-head>div{display:flex;align-items:baseline;gap:12px}.catalog-results-head b{font-size:19px;color:#20232a}.catalog-results-head span{font-size:12px;color:#999}.resource-card-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:14px;margin-top:18px}.resource-card{min-width:0;overflow:hidden;border:1px solid #e8eaee;border-radius:12px;background:#fff;transition:transform .2s,box-shadow .2s,border-color .2s}.resource-card:hover{transform:translateY(-3px);border-color:#b6e9e5;box-shadow:0 12px 28px rgba(21,45,55,.09)}.resource-icon{position:relative;display:block;height:150px;overflow:hidden;background:linear-gradient(145deg,#edfafa,#f4f6fb)}.resource-icon img{display:block;width:100%;height:100%;object-fit:cover}.resource-icon span{position:absolute;left:10px;top:10px;padding:4px 9px;border-radius:6px;background:rgba(0,0,0,.58);color:#fff;font-size:11px}.resource-card-body{padding:15px}.resource-card h2{overflow:hidden;margin:0;color:#20232a;font-size:17px;line-height:1.4;white-space:nowrap;text-overflow:ellipsis}.resource-card p{display:-webkit-box;overflow:hidden;height:42px;margin:9px 0 12px;color:#858b94;font-size:12px;line-height:1.75;-webkit-line-clamp:2;-webkit-box-orient:vertical}.resource-facts{display:flex;gap:6px;overflow:hidden}.resource-facts span{padding:4px 7px;border-radius:5px;background:#f3f5f7;color:#747b84;font-size:10px;white-space:nowrap}.resource-facts .rating{color:#e59600;background:#fff7e3}.resource-card-foot{display:flex;align-items:center;justify-content:space-between;margin-top:14px;padding-top:12px;border-top:1px solid #eff0f2;font-size:11px}.resource-card-foot>span{overflow:hidden;max-width:48%;color:#9298a0;white-space:nowrap;text-overflow:ellipsis}.resource-card-foot a{color:var(--xh);font-weight:700}.catalog-empty{display:flex;min-height:410px;flex-direction:column;align-items:center;justify-content:center;text-align:center}.empty-mark{display:grid;width:74px;height:74px;place-items:center;border-radius:20px;background:linear-gradient(135deg,#00c5b6,#62ddd3);color:#fff;font-size:31px;box-shadow:0 12px 25px rgba(0,191,177,.2)}.catalog-empty h2{margin:20px 0 8px;color:#252932;font-size:22px}.catalog-empty p{max-width:480px;margin:0 0 20px;color:#9297a0;font-size:14px;line-height:1.8}.catalog-empty .btn{display:inline-block;margin:0 4px}.catalog-results>.pager{margin-bottom:0}.catalog-aside{display:flex;flex-direction:column;gap:14px}.catalog-aside section{padding:18px}.catalog-aside h3{margin:0 0 12px;padding-bottom:11px;border-bottom:2px solid var(--xh);color:#242830;font-size:16px}.catalog-aside section>a{display:flex;align-items:center;justify-content:space-between;padding:9px 2px;border-bottom:1px dashed #e8eaee;font-size:13px}.catalog-aside section>a:hover{color:var(--xh)}.catalog-aside em{font-style:normal;color:#aaa;font-size:11px}.catalog-aside p{color:#8a9098;font-size:12px;line-height:1.8}.catalog-tip{background:linear-gradient(145deg,#f1fbfa,#fff)!important}.catalog-tip b{color:#168c83;font-size:14px}.catalog-tip>a{display:block!important;border:0!important;color:var(--xh);font-weight:700}
@media(max-width:1000px){.site-head .head-inner,.site-nav .nav-inner,.wrap{width:calc(100% - 24px)}.site-head .search{margin-left:auto;width:min(58%,587px)}.xh-icons,.xh-resource-grid{grid-template-columns:repeat(5,1fr)}.xh-main{grid-template-columns:1fr 1.2fr}.xh-right{display:none}}@media(max-width:680px){.site-head{height:auto}.site-head .head-inner{height:auto;padding:14px 0;display:block}.brand{width:auto}.brand-logo{width:44px;height:44px}.brand-name{font-size:26px}.site-head .search{width:100%;margin:12px 0 0}.site-head .search-input{width:calc(100% - 75px)}.nav-list li{width:auto;flex:1}.xh-icons,.xh-resource-grid{grid-template-columns:repeat(4,1fr);gap:16px}.xh-icon img{width:64px;height:64px}.xh-main{grid-template-columns:1fr}.xh-middle,.xh-right{display:none}.xh-pop-row a:nth-of-type(n+4){display:none}.xh-feature{height:240px}.content-list article,.download-confirm,.topic-hero{grid-template-columns:1fr}.content-cover img{width:100%;height:180px}.topic-grid{grid-template-columns:1fr}.download-confirm>img{width:120px;height:120px}.article-detail>h1,.topic-hero h1,.download-confirm h1{font-size:24px}}
@media(max-width:1000px){.site-foot .foot-main{grid-template-columns:1.4fr 1fr 1fr;gap:30px}.site-foot .foot-col:last-child{grid-column:2/4}.site-head .lang>summary{padding:0 10px;font-size:12px}}
@media(max-width:680px){.site-head .lang{position:absolute;right:0;top:16px}.site-head .lang>summary{height:34px}.site-foot .foot-main{grid-template-columns:1fr 1fr;gap:25px}.site-foot .foot-brand{grid-column:1/3}.site-foot .foot-col:last-child{grid-column:1/3}.foot-note{display:block}.foot-note b{display:block;margin-bottom:7px}}
@media(max-width:1000px){.catalog-layout{grid-template-columns:1fr}.catalog-aside{display:grid;grid-template-columns:1fr 1fr}.resource-card-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media(max-width:680px){.catalog-hero{min-height:130px;padding:23px 20px;border-radius:10px}.catalog-hero h1{font-size:24px}.catalog-hero p{max-width:75%;font-size:12px}.catalog-count{min-width:72px}.catalog-count strong{font-size:30px}.catalog-filter{display:block;padding:15px}.filter-label{padding:0 0 10px}.catalog-layout{margin-top:12px}.catalog-results{padding:14px}.catalog-results-head>span{display:none}.resource-card-grid{grid-template-columns:1fr}.resource-icon{height:180px}.catalog-empty{min-height:330px}.catalog-aside{grid-template-columns:1fr}}


/* ---- theme-v2.css ---- */
:root{
  --v2-bg:#f5f6fb;--v2-surface:#fff;--v2-navy:#10172f;--v2-navy-2:#192345;
  --v2-primary:#6757f5;--v2-primary-2:#8b5cf6;--v2-coral:#ff7557;--v2-mint:#21c7a8;
  --v2-text:#20243a;--v2-muted:#7b8299;--v2-line:#e7e9f2;
  --v2-shadow:0 16px 44px rgba(27,34,68,.09);--v2-shadow-sm:0 8px 24px rgba(27,34,68,.07)
}
*{box-sizing:border-box}body{background:var(--v2-bg);color:var(--v2-text);font-family:Inter,"Microsoft YaHei",system-ui,-apple-system,sans-serif}a{transition:color .18s,background .18s,border-color .18s,transform .18s,box-shadow .18s}.wrap{width:1240px;max-width:calc(100% - 40px)}
::selection{background:#dcd7ff;color:#211b55}html{scroll-behavior:smooth}body::-webkit-scrollbar{width:10px}body::-webkit-scrollbar-track{background:#eef0f6}body::-webkit-scrollbar-thumb{border:2px solid #eef0f6;border-radius:10px;background:#a5abc0}body::-webkit-scrollbar-thumb:hover{background:#777f9b}a:focus-visible,button:focus-visible,input:focus-visible,summary:focus-visible{outline:3px solid rgba(103,87,245,.35);outline-offset:3px}img{background-color:#eef0f6}.search-input,.form-field input,.form-field textarea{caret-color:var(--v2-primary)}
.site-head{height:112px;background:linear-gradient(120deg,var(--v2-navy) 0%,var(--v2-navy-2) 65%,#252a63 100%);box-shadow:none}.site-head .head-inner{width:1240px;height:112px;max-width:calc(100% - 40px);padding:0}.brand{width:auto;min-width:270px;gap:13px}.brand-logo{width:54px;height:54px;filter:drop-shadow(0 8px 16px rgba(0,0,0,.18))}.brand-name{font-size:31px;letter-spacing:-.7px}.site-head .search{position:relative;width:560px;margin-left:76px;gap:0}.site-head .search-input{width:100%;height:52px;padding:0 112px 0 23px;border:1px solid rgba(255,255,255,.12);border-radius:14px;background:rgba(255,255,255,.1);color:#fff;outline:none;backdrop-filter:blur(8px)}.site-head .search-input:focus{background:rgba(255,255,255,.15);border-color:rgba(255,255,255,.35);box-shadow:0 0 0 4px rgba(103,87,245,.24)}.site-head .search-input::placeholder{color:#aeb6d3}.site-head .search-btn{position:absolute;right:6px;top:6px;width:96px;height:40px;border-radius:10px;background:linear-gradient(135deg,var(--v2-primary),var(--v2-primary-2));color:#fff;box-shadow:0 7px 18px rgba(103,87,245,.35)}.site-head .search-btn:hover{transform:translateY(-1px)}.site-head .lang{margin-left:auto}.site-head .lang>summary{height:42px;border-color:rgba(255,255,255,.16);border-radius:12px;background:rgba(255,255,255,.08);color:#e8eaff}.site-head .lang>summary:hover{background:rgba(255,255,255,.14)}.lang-menu{border:0;border-radius:14px;box-shadow:var(--v2-shadow)}.lang-menu a[aria-current=true]{color:var(--v2-primary);background:#f0eeff}
.site-nav{height:64px;background:#fff;border:0;box-shadow:0 5px 22px rgba(18,25,55,.05)}.site-nav .nav-inner{width:1240px;max-width:calc(100% - 40px);height:64px}.nav-list{height:64px;gap:8px}.nav-list li{width:auto;height:64px}.nav-list a{position:relative;min-width:104px;padding:0 20px;line-height:64px;font-size:15px;color:#596076}.nav-list a:after{content:"";position:absolute;left:20px;right:20px;bottom:0;height:3px;border-radius:3px 3px 0 0;background:linear-gradient(90deg,var(--v2-primary),var(--v2-coral));transform:scaleX(0);transition:transform .2s}.nav-list a:hover,.nav-list li.on a{color:var(--v2-primary)}.nav-list a:hover:after,.nav-list li.on a:after{transform:scaleX(1)}
.nav-cta{display:inline-flex!important;align-items:center;height:38px;margin-left:auto;padding:0 17px;border-radius:10px;background:#f1efff;color:var(--v2-primary)!important;font-size:12px;font-weight:800}.nav-cta:before{content:"↓";display:grid;width:21px;height:21px;margin-right:7px;place-items:center;border-radius:6px;background:var(--v2-primary);color:#fff}.nav-cta:hover{background:var(--v2-primary);color:#fff!important;transform:translateY(-1px)}
.btn{border-radius:10px}.btn-primary,.chips a.on{background:linear-gradient(135deg,var(--v2-primary),var(--v2-primary-2))!important;color:#fff!important;box-shadow:0 8px 20px rgba(103,87,245,.22)}.btn-primary:hover{transform:translateY(-2px);box-shadow:0 12px 25px rgba(103,87,245,.3)}.btn-ghost{border-color:var(--v2-line);background:#fff;color:#525a70}.btn-ghost:hover{border-color:var(--v2-primary);color:var(--v2-primary)}.to-top{background:linear-gradient(135deg,var(--v2-primary),var(--v2-primary-2));box-shadow:0 10px 28px rgba(103,87,245,.34)}
/* 首页 */
.xh-top{overflow:hidden;margin-top:24px;border:1px solid var(--v2-line);border-radius:20px;background:var(--v2-surface);box-shadow:var(--v2-shadow-sm)}.xh-icons{gap:20px;padding:28px 25px 24px}.xh-icon{padding:4px;border-radius:14px}.xh-icon:hover{transform:translateY(-4px)}.xh-icon img{width:88px;height:88px;border-radius:20px;box-shadow:0 9px 20px rgba(26,32,61,.14)}.xh-icon b{margin-top:11px;color:#34394d;font-size:13px}.xh-icon:hover b{color:var(--v2-primary)}.xh-pop-row{height:48px;padding:0 24px;border-color:var(--v2-line);background:#fbfbfe}.xh-pop-row strong{width:145px;color:var(--v2-text);font-size:15px}.xh-pop-row strong:before{content:"";display:inline-block;width:7px;height:7px;margin-right:9px;border-radius:50%;background:var(--v2-coral);box-shadow:0 0 0 5px rgba(255,117,87,.12)}.xh-pop-row:nth-of-type(3) strong:before{background:var(--v2-primary);box-shadow:0 0 0 5px rgba(103,87,245,.12)}.xh-pop-row a{border-color:var(--v2-line);color:#697086}.xh-pop-row a:hover{color:var(--v2-primary)}
.xh-main{grid-template-columns:390px minmax(0,1fr) 270px;gap:24px;margin-top:24px;padding:24px;border:1px solid var(--v2-line);border-radius:20px;background:#fff;box-shadow:var(--v2-shadow-sm)}.xh-feature{height:308px;border-radius:16px;box-shadow:0 12px 28px rgba(25,30,58,.13)}.xh-feature img{transition:transform .35s}.xh-feature:hover img{transform:scale(1.035)}.xh-feature figcaption{padding:18px;background:linear-gradient(transparent,rgba(8,13,35,.88));font-size:18px;font-weight:700}.xh-mini-grid{gap:14px}.xh-mini{padding:8px;border:1px solid transparent;border-radius:12px;background:#f7f8fc}.xh-mini:hover{border-color:#ddd9ff;background:#f3f1ff}.xh-mini img{width:58px;height:58px;border-radius:14px}.xh-tabs{border-color:var(--v2-line)}.xh-tabs span{position:relative;color:#777f94;font-size:15px}.xh-tabs span:first-child{color:var(--v2-primary);font-weight:700}.xh-tabs span:first-child:after{content:"";position:absolute;left:25%;right:25%;bottom:-2px;height:3px;border-radius:3px;background:var(--v2-primary)}.xh-news{padding-top:10px}.xh-news a{height:35px;border-radius:7px}.xh-news a:hover{padding-left:7px;background:#f7f6ff}.xh-news b{color:#9aa0b1}.xh-news time{color:var(--v2-coral)}.xh-side-title,.xh-section-title{height:45px;border-color:var(--v2-line);font-size:17px}.xh-side-title:before,.xh-section-title:before{content:"";width:5px;height:19px;margin-right:10px;border-radius:4px;background:linear-gradient(var(--v2-primary),var(--v2-coral))}.xh-side-title a,.xh-section-title a{color:var(--v2-primary)}.xh-topic-banner{height:126px;border-radius:13px}.xh-topic-banner img{transition:transform .3s}.xh-topic-banner:hover img{transform:scale(1.035)}.xh-topic-links a{border-radius:7px;background:#f5f6fa}.xh-topic-links span{border-radius:7px;background:var(--v2-primary)}.xh-block{margin-top:24px;padding:22px 24px 26px;border:1px solid var(--v2-line);border-radius:20px;background:#fff;box-shadow:var(--v2-shadow-sm)}.xh-resource-grid{gap:26px}.xh-resource{padding:6px;border-radius:12px}.xh-resource:hover{transform:translateY(-4px);background:#f7f6ff}.xh-resource img{width:78px;height:78px;border-radius:18px;box-shadow:0 8px 18px rgba(29,35,67,.13)}.xh-resource b{color:#454b61}
/* 资源库、搜索 */
.crumb{color:#959bad}.crumb a:hover{color:var(--v2-primary)}.catalog-hero{border-radius:20px;background:linear-gradient(120deg,var(--v2-navy) 0%,#283269 58%,var(--v2-primary) 100%);box-shadow:0 16px 38px rgba(37,44,91,.18)}.catalog-hero:after{border-color:rgba(255,255,255,.08)}.catalog-filter,.catalog-results,.catalog-aside section{border-color:var(--v2-line);border-radius:16px;box-shadow:var(--v2-shadow-sm)}.catalog-filter .chips a{border-radius:9px}.catalog-filter .chips a:hover{color:var(--v2-primary);border-color:var(--v2-primary)}.catalog-filter .chips a.on{border-color:var(--v2-primary);box-shadow:0 7px 18px rgba(103,87,245,.2)}.catalog-results{padding:24px}.resource-card{border-color:var(--v2-line);border-radius:15px}.resource-card:hover{border-color:#cec8ff;box-shadow:0 15px 34px rgba(38,43,77,.12)}.resource-icon{background:linear-gradient(145deg,#f0efff,#f7f8fd)}.resource-icon span{background:var(--v2-navy)}.resource-card h2{color:var(--v2-text)}.resource-card-foot a,.catalog-tip>a{color:var(--v2-primary)}.resource-facts .rating{color:#dc7b00}.empty-mark{background:linear-gradient(135deg,var(--v2-primary),var(--v2-primary-2));box-shadow:0 12px 28px rgba(103,87,245,.28)}.catalog-aside h3{border-color:var(--v2-primary)}.catalog-aside section>a:hover{color:var(--v2-primary)}.catalog-tip{background:linear-gradient(145deg,#f2f0ff,#fff)!important}.catalog-tip b{color:var(--v2-primary)}
/* 详情 */
.detail{gap:22px}.detail-hero,.side-box,.tabs,.meta-table,.screens{border-color:var(--v2-line)!important;border-radius:18px!important;background:#fff;box-shadow:var(--v2-shadow-sm)!important}.detail-hero{position:relative;overflow:hidden;padding:28px;border-top:0}.detail-hero:before{content:"";position:absolute;left:0;top:0;bottom:0;width:5px;background:linear-gradient(var(--v2-primary),var(--v2-coral))}.dh-icon{border-radius:24px;box-shadow:0 12px 30px rgba(27,33,66,.17)}.dh-main h1{color:var(--v2-text)}.dh-tags span{border-radius:7px}.dh-tags .hot{background:#fff0ec;color:#e65d42}.dh-stats{border-color:var(--v2-line);background:#f8f8fc}.dh-stats b{color:var(--v2-primary)}.screens{padding:16px}.screens img{border-radius:12px}.tabs{padding:0 18px;border-bottom-color:var(--v2-line)}.tabs button.on{color:var(--v2-primary);border-bottom-color:var(--v2-primary)}.tab-pane{border-radius:0 0 18px 18px;background:#fff}.meta-table{overflow:hidden}.meta-table>div:nth-child(odd){background:#fafafe}.side-box h3{border-color:var(--v2-line)}.related-list a{border-radius:10px}.related-list a:hover{background:#f5f3ff}.related-list img{border-radius:12px}
/* 资讯、专题、下载 */
.content-list,.topic-page,.article-detail,.download-confirm,.topic-hero{border:1px solid var(--v2-line);border-radius:20px;background:#fff;box-shadow:var(--v2-shadow-sm)}.content-list,.topic-page{padding:26px}.content-list article{border-color:var(--v2-line);transition:background .18s,padding .18s}.content-list article:hover{margin:0 -10px;padding-left:10px;padding-right:10px;background:#faf9ff}.content-cover img{border-radius:14px}.content-list h2{color:var(--v2-text)}.content-list h2:hover{color:var(--v2-primary)}.topic-grid>a{overflow:hidden;border-color:var(--v2-line);border-radius:15px;background:#fff}.topic-grid>a:hover{transform:translateY(-4px);box-shadow:var(--v2-shadow)}.topic-grid img{transition:transform .3s}.topic-grid>a:hover img{transform:scale(1.03)}.article-detail{padding:38px 46px}.article-detail>h1{color:var(--v2-text)}.article-cover{border-radius:16px}.article-body{color:#4e556c}.topic-hero{overflow:hidden;padding:0}.topic-hero img{height:290px;max-height:none}.topic-hero>div{padding:28px}.download-confirm{padding:32px}.download-confirm>img{box-shadow:0 14px 32px rgba(29,35,67,.16)}
/* Footer */
.site-foot{margin-top:48px;background:var(--v2-navy)}.site-foot .foot-main{padding-top:52px}.site-foot .foot-col h4{border-color:rgba(255,255,255,.1)}.site-foot .foot-brand p,.site-foot .foot-col a{color:#9ea6c1}.site-foot .foot-col a:hover{color:#fff;transform:translateX(3px)}.site-foot .foot-languages a{border-color:#35405f}.site-foot .foot-languages a.active{border-color:var(--v2-primary);background:var(--v2-primary)}.foot-note{border-color:rgba(255,255,255,.1);color:#8e97b5}.site-foot .foot-bottom{border-color:rgba(255,255,255,.08);background:#0b1023}
@media(max-width:1100px){.site-head .search{width:46%;margin-left:35px}.xh-main{grid-template-columns:1fr 1.2fr}.xh-right{display:none}.xh-icons,.xh-resource-grid{grid-template-columns:repeat(5,1fr)}}
@media(max-width:700px){.wrap,.site-head .head-inner,.site-nav .nav-inner{max-width:calc(100% - 24px);width:100%}.site-head{height:auto}.site-head .head-inner{display:block;height:auto;padding:15px 0 17px}.brand{min-width:0}.brand-logo{width:43px;height:43px}.brand-name{font-size:25px}.site-head .search{width:100%;margin:13px 0 0}.site-head .search-input{height:46px}.site-head .search-btn{height:34px}.site-head .lang{top:18px}.site-head .lang>summary{height:36px;max-width:120px;overflow:hidden}.site-nav,.site-nav .nav-inner,.nav-list{height:54px}.nav-list{gap:0;width:100%}.nav-list li{height:54px;flex:1}.nav-list a{min-width:0;padding:0 5px;line-height:54px;font-size:13px}.nav-list a:after{left:15%;right:15%}.xh-top,.xh-main,.xh-block{margin-top:14px;border-radius:14px}.xh-icons{grid-template-columns:repeat(4,1fr);gap:13px;padding:18px 12px}.xh-icon:nth-child(n+9){display:none}.xh-icon img{width:62px;height:62px;border-radius:15px}.xh-pop-row{padding:0 13px}.xh-pop-row strong{width:105px}.xh-main{display:block;padding:14px}.xh-feature{height:235px}.xh-middle,.xh-right{display:none}.xh-resource-grid{grid-template-columns:repeat(4,1fr);gap:14px}.xh-resource img{width:62px;height:62px}.catalog-hero{border-radius:14px}.catalog-filter,.catalog-results,.catalog-aside section{border-radius:13px}.resource-card{border-radius:13px}.detail{display:block}.detail-aside{margin-top:16px}.detail-hero{display:block;padding:22px}.dh-icon{margin-bottom:18px}.article-detail{padding:25px 20px}.topic-hero{display:block}.topic-hero img{height:210px}.content-list,.topic-page,.download-confirm{padding:18px;border-radius:14px}.site-foot{margin-top:32px}}
@media(max-width:700px){.nav-cta{display:none!important}}
@media(prefers-reduced-motion:reduce){*,*:before,*:after{scroll-behavior:auto!important;transition-duration:.01ms!important;animation-duration:.01ms!important;animation-iteration-count:1!important}}


/* ---- home-v2.css ---- */
.nd-home{overflow:hidden}.nd-hero{position:relative;min-height:580px;background:radial-gradient(circle at 77% 20%,rgba(129,91,246,.32),transparent 30%),radial-gradient(circle at 10% 95%,rgba(255,117,87,.13),transparent 28%),linear-gradient(125deg,#0d142c 0%,#151d3b 55%,#222659 100%);color:#fff}.nd-hero:after{content:"";position:absolute;inset:0;background-image:linear-gradient(rgba(255,255,255,.025) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.025) 1px,transparent 1px);background-size:48px 48px;mask-image:linear-gradient(to bottom,#000,transparent 92%);pointer-events:none}.nd-hero-inner{position:relative;z-index:1;display:grid;grid-template-columns:1fr 540px;align-items:center;gap:60px;min-height:580px;padding-top:46px;padding-bottom:55px}.nd-eyebrow{display:flex;align-items:center;gap:11px;color:#c0c6e0;font-size:11px;font-weight:800;letter-spacing:2.4px}.nd-eyebrow span{width:28px;height:2px;background:var(--v2-coral)}.nd-hero-copy h1{margin:22px 0 20px;color:#fff;font-size:56px;line-height:1.1;letter-spacing:-2.5px}.nd-hero-copy h1 em{font-style:normal;background:linear-gradient(90deg,#a89cff,#ff9279);-webkit-background-clip:text;background-clip:text;color:transparent}.nd-hero-copy>p{max-width:540px;margin:0;color:#aeb5cf;font-size:16px;line-height:1.9}.nd-hero-actions{display:flex;gap:12px;margin-top:30px}.nd-button{display:inline-flex;align-items:center;justify-content:center;height:50px;padding:0 23px;border:1px solid transparent;border-radius:12px;font-size:14px;font-weight:800}.nd-button.primary{background:linear-gradient(135deg,var(--v2-primary),var(--v2-primary-2));color:#fff;box-shadow:0 13px 30px rgba(103,87,245,.32)}.nd-button.primary span{margin-left:16px;font-size:18px}.nd-button.primary:hover{transform:translateY(-2px);box-shadow:0 17px 35px rgba(103,87,245,.4)}.nd-button.glass{border-color:rgba(255,255,255,.15);background:rgba(255,255,255,.07);color:#dce0f1;backdrop-filter:blur(8px)}.nd-button.glass:hover{border-color:rgba(255,255,255,.32);background:rgba(255,255,255,.12)}.nd-trust{display:flex;align-items:center;gap:16px;margin-top:37px;color:#7f89a9;font-size:11px}.nd-trust b{display:block;margin-bottom:2px;color:#eef0f8;font-size:15px}.nd-trust i{width:1px;height:28px;background:rgba(255,255,255,.12)}
.nd-hero-showcase{position:relative;height:450px}.nd-orbit{position:absolute;border:1px solid rgba(255,255,255,.08);border-radius:50%}.nd-orbit.one{inset:5px 25px}.nd-orbit.two{inset:55px 75px}.nd-feature-card{position:absolute;left:82px;top:25px;width:350px;height:405px;overflow:hidden;border:1px solid rgba(255,255,255,.16);border-radius:28px;background:#222944;box-shadow:0 30px 70px rgba(0,0,0,.37);transform:rotate(2deg)}.nd-feature-card>img{width:100%;height:100%;object-fit:cover;transition:transform .5s}.nd-feature-card:hover>img{transform:scale(1.04)}.nd-feature-overlay{position:absolute;inset:auto 0 0;padding:90px 28px 27px;background:linear-gradient(transparent,rgba(8,12,30,.97))}.nd-feature-overlay>span{display:inline-block;padding:5px 8px;border-radius:6px;background:var(--v2-coral);color:#fff;font-size:9px;font-weight:900;letter-spacing:1px}.nd-feature-overlay h2{overflow:hidden;margin:10px 0 5px;color:#fff;font-size:24px;white-space:nowrap;text-overflow:ellipsis}.nd-feature-overlay p{overflow:hidden;margin:0;color:#aeb5ca;font-size:12px;white-space:nowrap;text-overflow:ellipsis}.nd-feature-overlay>b{display:block;margin-top:15px;color:#fff;font-size:12px}.nd-feature-overlay i{float:right;display:grid;width:27px;height:27px;margin-top:-7px;place-items:center;border-radius:50%;background:rgba(255,255,255,.15);font-style:normal}.nd-float-app{position:absolute;z-index:2;display:flex;align-items:center;gap:9px;max-width:160px;padding:9px 12px;border:1px solid rgba(255,255,255,.17);border-radius:14px;background:rgba(18,25,57,.86);color:#fff;box-shadow:0 14px 35px rgba(0,0,0,.26);backdrop-filter:blur(14px)}.nd-float-app:hover{transform:translateY(-4px);border-color:rgba(255,255,255,.32)}.nd-float-app img{width:40px;height:40px;border-radius:10px;object-fit:cover}.nd-float-app span{overflow:hidden;font-size:11px;font-weight:700;white-space:nowrap;text-overflow:ellipsis}.nd-float-app.app-1{left:12px;top:115px}.nd-float-app.app-2{right:0;top:85px}.nd-float-app.app-3{right:5px;bottom:70px}
.nd-category-bar{position:relative;z-index:3;display:grid;grid-template-columns:170px 1fr;gap:20px;margin-top:-28px;padding:17px 20px;border:1px solid var(--v2-line);border-radius:18px;background:#fff;box-shadow:0 18px 45px rgba(20,27,57,.13)}.nd-category-intro{display:flex;align-items:center;gap:12px;border-right:1px solid var(--v2-line)}.nd-category-intro>span{display:grid;width:40px;height:40px;place-items:center;border-radius:11px;background:#f0eeff;color:var(--v2-primary);font-size:20px}.nd-category-intro b,.nd-category-intro small{display:block}.nd-category-intro b{font-size:14px}.nd-category-intro small{margin-top:3px;color:var(--v2-muted);font-size:10px}.nd-category-links{display:grid;grid-template-columns:repeat(4,1fr);gap:6px}.nd-category-links>a{display:flex;align-items:center;gap:10px;padding:8px 10px;border-radius:11px}.nd-category-links>a:hover{background:#f7f6ff;transform:translateY(-2px)}.nd-category-links i{display:grid;width:34px;height:34px;flex:0 0 34px;place-items:center;border-radius:10px;font-style:normal}.nd-category-links .tone-1{background:#eeeaff;color:#6e5bf5}.nd-category-links .tone-2{background:#fff0ec;color:#f16b4d}.nd-category-links .tone-3{background:#e8faf6;color:#14aa8f}.nd-category-links .tone-4{background:#fff7df;color:#d99300}.nd-category-links b,.nd-category-links small{display:block}.nd-category-links b{font-size:12px}.nd-category-links small{margin-top:3px;color:#9aa0b1;font-size:9px}
.nd-section{padding-top:76px}.nd-section-head{display:flex;align-items:flex-end;justify-content:space-between;margin-bottom:24px}.nd-section-head>div>span,.nd-editorial header span{color:var(--v2-primary);font-size:10px;font-weight:900;letter-spacing:2px}.nd-section-head h2,.nd-editorial h2{margin:5px 0 3px;color:var(--v2-text);font-size:27px;letter-spacing:-.6px}.nd-section-head p{margin:0;color:var(--v2-muted);font-size:12px}.nd-section-head>a,.nd-editorial header>a{padding-bottom:4px;color:#697087;font-size:12px;font-weight:700}.nd-section-head>a b{margin-left:7px;color:var(--v2-primary);font-size:17px}.nd-section-head>a:hover,.nd-editorial header>a:hover{color:var(--v2-primary)}.nd-section-head.compact{align-items:center;margin-bottom:18px}.nd-section-head.compact h2{font-size:22px}
.nd-trending-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}.nd-resource-card{display:grid;grid-template-columns:104px 1fr;min-width:0;overflow:hidden;border:1px solid var(--v2-line);border-radius:16px;background:#fff;box-shadow:0 7px 22px rgba(28,35,69,.05);transition:transform .22s,border-color .22s,box-shadow .22s}.nd-resource-card:hover{transform:translateY(-4px);border-color:#d5d0ff;box-shadow:0 15px 35px rgba(36,42,77,.11)}.nd-resource-media{position:relative;display:block;height:128px;overflow:hidden;background:#f0eff8}.nd-resource-media img{width:100%;height:100%;object-fit:cover;transition:transform .3s}.nd-resource-card:hover img{transform:scale(1.05)}.nd-resource-media>span{position:absolute;left:8px;top:8px;padding:3px 7px;border-radius:5px;background:rgba(14,20,47,.74);color:#fff;font-size:9px;backdrop-filter:blur(5px)}.nd-resource-info{min-width:0;padding:16px 15px 13px}.nd-resource-info h3{overflow:hidden;margin:0;color:#252a40;font-size:15px;white-space:nowrap;text-overflow:ellipsis}.nd-resource-info h3:hover{color:var(--v2-primary)}.nd-resource-info p{display:-webkit-box;overflow:hidden;height:34px;margin:8px 0 12px;color:#8a90a3;font-size:10px;line-height:1.7;-webkit-line-clamp:2;-webkit-box-orient:vertical}.nd-resource-info>div{display:flex;align-items:center;justify-content:space-between;padding-top:9px;border-top:1px solid #f0f1f5}.nd-resource-info small{color:#9298aa;font-size:9px}.nd-resource-info b{color:#e49500;font-size:10px}
.nd-discover{display:grid;grid-template-columns:minmax(0,1.42fr) minmax(340px,.8fr);gap:20px;padding-top:76px}.nd-spotlight,.nd-editorial,.nd-library-column,.nd-topic-section{border:1px solid var(--v2-line);border-radius:20px;background:#fff;box-shadow:0 9px 28px rgba(28,35,69,.06)}.nd-spotlight{padding:24px}.nd-spotlight-body{display:grid;grid-template-columns:46% 1fr;gap:25px}.nd-spotlight-cover{position:relative;height:300px;overflow:hidden;border-radius:15px;background:#eee}.nd-spotlight-cover img{width:100%;height:100%;object-fit:cover;transition:transform .4s}.nd-spotlight-cover:hover img{transform:scale(1.04)}.nd-spotlight-cover>span{position:absolute;left:13px;top:13px;padding:5px 9px;border-radius:6px;background:var(--v2-coral);color:#fff;font-size:9px;font-weight:800}.nd-spotlight-copy{align-self:center}.nd-spotlight-copy>span{color:var(--v2-primary);font-size:10px;font-weight:800}.nd-spotlight-copy h2{overflow:hidden;margin:8px 0;color:var(--v2-text);font-size:25px;white-space:nowrap;text-overflow:ellipsis}.nd-spotlight-copy>p{display:-webkit-box;overflow:hidden;color:#858b9f;font-size:12px;line-height:1.8;-webkit-line-clamp:3;-webkit-box-orient:vertical}.nd-specs{display:grid;grid-template-columns:repeat(3,1fr);margin:20px 0;border:1px solid var(--v2-line);border-radius:11px;background:#fafafe}.nd-specs>span{padding:10px;border-right:1px solid var(--v2-line)}.nd-specs>span:last-child{border:0}.nd-specs small,.nd-specs b{display:block}.nd-specs small{color:#9aa0b1;font-size:8px}.nd-specs b{overflow:hidden;margin-top:4px;font-size:10px;white-space:nowrap;text-overflow:ellipsis}.nd-text-link{color:var(--v2-primary);font-size:11px;font-weight:800}.nd-text-link b{margin-left:7px}.nd-editorial{padding:24px}.nd-editorial header{display:flex;align-items:flex-end;justify-content:space-between;padding-bottom:16px;border-bottom:1px solid var(--v2-line)}.nd-editorial h2{font-size:22px}.nd-story-list>a{display:grid;grid-template-columns:30px 1fr 22px;align-items:center;gap:11px;padding:15px 3px;border-bottom:1px solid #eff0f4}.nd-story-list>a:last-child{border:0}.nd-story-list>a>span{color:#c2c6d2;font-size:10px;font-weight:800}.nd-story-list div{min-width:0}.nd-story-list b,.nd-story-list small{display:block}.nd-story-list b{overflow:hidden;color:#454b61;font-size:12px;white-space:nowrap;text-overflow:ellipsis}.nd-story-list small{margin-top:4px;color:#a1a6b5;font-size:9px}.nd-story-list i{display:grid;width:22px;height:22px;place-items:center;border-radius:50%;background:#f2f1ff;color:var(--v2-primary);font-size:10px;font-style:normal}.nd-story-list>a:hover b{color:var(--v2-primary)}.nd-story-list>a:hover i{background:var(--v2-primary);color:#fff}
.nd-library{display:grid;grid-template-columns:1fr 1fr;gap:20px;padding-top:20px}.nd-library-column{padding:24px}.nd-compact-list{display:grid;grid-template-columns:1fr 1fr;gap:8px 18px}.nd-compact-list>a{display:grid;grid-template-columns:50px 1fr 25px;align-items:center;gap:11px;padding:10px;border:1px solid transparent;border-radius:12px}.nd-compact-list>a:hover{border-color:#e4e1ff;background:#f8f7ff}.nd-compact-list img{width:50px;height:50px;border-radius:12px;object-fit:cover;box-shadow:0 5px 13px rgba(29,35,67,.12)}.nd-compact-list span{min-width:0}.nd-compact-list b,.nd-compact-list small{display:block;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.nd-compact-list b{color:#3a4055;font-size:12px}.nd-compact-list small{margin-top:5px;color:#999faf;font-size:9px}.nd-compact-list em{display:grid;width:24px;height:24px;place-items:center;border-radius:7px;background:#f2f1ff;color:var(--v2-primary);font-size:11px;font-style:normal}.nd-compact-list>a:hover em{background:var(--v2-primary);color:#fff}
.nd-topic-section{margin-top:20px;margin-bottom:70px;padding:25px}.nd-topic-grid{display:grid;grid-template-columns:1fr 1fr;gap:16px}.nd-topic-grid>a{position:relative;display:grid;grid-template-columns:44% 1fr;min-height:210px;overflow:hidden;border-radius:15px;background:var(--v2-navy)}.nd-topic-grid img{width:100%;height:100%;object-fit:cover;transition:transform .4s}.nd-topic-grid>a:hover img{transform:scale(1.045)}.nd-topic-grid>a>div{align-self:center;padding:24px}.nd-topic-grid span{color:#a99eff;font-size:9px;font-weight:800;letter-spacing:1px}.nd-topic-grid h3{margin:7px 0;color:#fff;font-size:19px}.nd-topic-grid p{display:-webkit-box;overflow:hidden;color:#9fa8c3;font-size:10px;line-height:1.7;-webkit-line-clamp:2;-webkit-box-orient:vertical}.nd-topic-grid b{display:block;margin-top:17px;color:#fff;font-size:10px}
@media(max-width:1080px){.nd-hero-inner{grid-template-columns:1fr 460px;gap:25px}.nd-hero-copy h1{font-size:47px}.nd-feature-card{left:60px;width:310px}.nd-category-links{grid-template-columns:repeat(3,1fr)}.nd-category-links>a:nth-child(n+7){display:none}.nd-trending-grid{grid-template-columns:repeat(2,1fr)}.nd-discover{grid-template-columns:1fr}.nd-compact-list{grid-template-columns:1fr}.nd-topic-grid>a{grid-template-columns:40% 1fr}}
@media(max-width:700px){.nd-hero{min-height:auto}.nd-hero-inner{display:block;min-height:0;padding-top:52px;padding-bottom:65px}.nd-hero-copy h1{font-size:38px;letter-spacing:-1.5px}.nd-hero-copy>p{font-size:13px}.nd-trust{gap:10px}.nd-trust i{height:22px}.nd-hero-showcase{height:390px;margin-top:35px}.nd-feature-card{left:50%;top:5px;width:276px;height:350px;transform:translateX(-50%) rotate(1deg)}.nd-float-app{max-width:130px;padding:7px}.nd-float-app img{width:34px;height:34px}.nd-float-app.app-1{left:0;top:88px}.nd-float-app.app-2{right:0;top:55px}.nd-float-app.app-3{right:0;bottom:38px}.nd-orbit.one{inset:0}.nd-orbit.two{inset:45px}.nd-category-bar{display:block;margin-top:-22px;padding:14px}.nd-category-intro{padding-bottom:12px;border-right:0;border-bottom:1px solid var(--v2-line)}.nd-category-links{grid-template-columns:1fr 1fr;padding-top:9px}.nd-category-links>a:nth-child(n+5){display:none}.nd-section{padding-top:50px}.nd-section-head h2{font-size:23px}.nd-trending-grid{grid-template-columns:1fr}.nd-resource-card{grid-template-columns:95px 1fr}.nd-resource-media{height:118px}.nd-discover{padding-top:50px}.nd-spotlight,.nd-editorial,.nd-library-column,.nd-topic-section{border-radius:15px}.nd-spotlight,.nd-editorial,.nd-library-column,.nd-topic-section{padding:16px}.nd-spotlight-body{display:block}.nd-spotlight-cover{height:220px}.nd-spotlight-copy{padding-top:19px}.nd-library{grid-template-columns:1fr;padding-top:14px}.nd-topic-section{margin-bottom:40px}.nd-topic-grid{grid-template-columns:1fr}.nd-topic-grid>a{grid-template-columns:40% 1fr;min-height:180px}.nd-topic-grid>a>div{padding:16px}.nd-topic-grid h3{font-size:16px}}


/* ---- polish-v4.css ---- */
/* Final isolated presentation layer. It intentionally restates layout-critical rules. */
.nav-list a,.nav-list li.on a{box-shadow:none!important}.nav-list a:hover{border-radius:10px;background:#f6f4ff!important;color:var(--v2-primary)!important}.nav-list li.on a{border-radius:0;background:transparent!important;color:var(--v2-primary)!important}.nav-list a:after{transform:scaleX(0)!important}.nav-list a:hover:after{transform:scaleX(0)!important}.nav-list li.on a:after,.nav-list li.on a:hover:after{transform:scaleX(1)!important}
.catalog-page{padding:0 0 34px}.catalog-page .crumb{display:flex;align-items:center;gap:8px;height:46px;margin:0;color:#9299ad;font-size:12px}.catalog-page .crumb .sep{color:#c5c9d4}
.catalog-hero{position:relative;isolation:isolate;display:flex;min-height:178px;align-items:center;justify-content:space-between;overflow:hidden;padding:34px 40px;border:0;border-radius:20px;background:linear-gradient(118deg,#111a39 0%,#26316b 58%,#7255f4 100%);color:#fff!important;box-shadow:0 18px 42px rgba(33,39,84,.18)}.catalog-hero:before{content:"";position:absolute;z-index:-1;right:8%;top:-150px;width:380px;height:380px;border:68px solid rgba(255,255,255,.055);border-radius:50%}.catalog-hero:after{content:"";position:absolute;z-index:-1;right:26%;bottom:-140px;width:230px;height:230px;border-radius:50%;background:rgba(255,117,87,.08);filter:blur(4px)}.catalog-hero>div{position:relative;z-index:1}.catalog-hero small{display:block;color:#aeb6dc!important;font-size:10px!important;font-weight:900;letter-spacing:2.2px;opacity:1!important}.catalog-hero h1{margin:9px 0 9px!important;color:#fff!important;font-size:34px!important;line-height:1.15}.catalog-hero p{margin:0!important;color:#c6cce2!important;font-size:13px!important;line-height:1.7;opacity:1!important}.catalog-count{min-width:135px;padding:17px 20px;border:1px solid rgba(255,255,255,.13);border-radius:15px;background:rgba(255,255,255,.08);text-align:center;backdrop-filter:blur(10px)}.catalog-count strong{display:block;color:#fff!important;font-size:37px;line-height:1}.catalog-count span{display:block;margin-top:7px;color:#bec5df!important;font-size:10px}
.catalog-filter{display:flex!important;min-height:0!important;align-items:flex-start;gap:22px;margin-top:14px!important;padding:17px 20px!important;border:1px solid var(--v2-line)!important;border-radius:15px!important;background:#fff!important;box-shadow:0 7px 23px rgba(29,36,70,.055)!important}.filter-label{flex:0 0 auto;padding:8px 2px 0;color:#9298aa;font-size:11px;font-weight:700}.catalog-filter .chips{display:flex!important;flex-wrap:wrap;gap:7px}.catalog-filter .chips a{display:inline-flex!important;width:auto!important;height:34px!important;align-items:center;gap:7px;padding:0 14px!important;border:1px solid #e4e6ee!important;border-radius:9px!important;background:#fff!important;color:#586076!important;font-size:11px!important;font-weight:800;line-height:32px!important;box-shadow:none!important}.catalog-filter .chips a:hover{border-color:#beb7ff!important;color:var(--v2-primary)!important}.catalog-filter .chips a.on{border-color:transparent!important;background:linear-gradient(135deg,var(--v2-primary),var(--v2-primary-2))!important;color:#fff!important;box-shadow:0 8px 18px rgba(103,87,245,.22)!important}.catalog-filter .chips em{font-size:9px;font-style:normal;opacity:.65}
.catalog-layout{display:grid!important;grid-template-columns:minmax(0,1fr) 250px!important;align-items:start;gap:17px;margin-top:17px!important}.catalog-results,.catalog-aside section{border:1px solid var(--v2-line)!important;border-radius:16px!important;background:#fff!important;box-shadow:0 8px 25px rgba(29,36,70,.055)!important}.catalog-results{min-width:0;padding:22px!important}.catalog-results-head{display:flex!important;align-items:center!important;justify-content:space-between!important;min-height:43px;padding:0 0 16px!important;border-bottom:1px solid #eceef4!important}.catalog-results-head>div{display:flex!important;align-items:baseline!important;gap:9px}.catalog-results-head b{color:#262b40!important;font-size:16px!important}.catalog-results-head span{color:#999fb0!important;font-size:10px!important}.resource-card-grid{display:grid!important;grid-template-columns:repeat(3,minmax(0,1fr))!important;gap:13px!important;margin-top:17px!important}.resource-card{display:block!important;min-width:0;overflow:hidden;border:1px solid var(--v2-line)!important;border-radius:14px!important;background:#fff!important;box-shadow:none!important}.resource-card:hover{transform:translateY(-3px);border-color:#d1ccff!important;box-shadow:0 14px 30px rgba(35,42,77,.11)!important}.resource-icon{position:relative;display:block!important;width:100%;height:148px!important;overflow:hidden;background:#f0eff8}.resource-icon img{display:block;width:100%!important;height:100%!important;border:0!important;border-radius:0!important;object-fit:cover}.resource-icon>span{position:absolute;left:9px;top:9px;width:auto!important;height:auto!important;padding:4px 8px;border-radius:6px;background:rgba(14,20,47,.77)!important;color:#fff!important;font-size:9px!important;line-height:1.2}.resource-card-body{display:block;padding:14px!important}.resource-card h2{overflow:hidden;margin:0!important;color:#282d42!important;font-size:15px!important;line-height:1.5;white-space:nowrap;text-overflow:ellipsis}.resource-card-body>p{display:-webkit-box;overflow:hidden;height:35px;margin:7px 0 11px!important;color:#8a90a2!important;font-size:10px!important;line-height:1.7;-webkit-line-clamp:2;-webkit-box-orient:vertical}.resource-facts{display:flex!important;gap:5px;overflow:hidden}.resource-facts span{display:inline-block!important;width:auto!important;height:auto!important;padding:4px 6px;border-radius:5px;background:#f3f4f8!important;color:#7a8193!important;font-size:8px!important;line-height:1.2;white-space:nowrap}.resource-facts .rating{background:#fff6df!important;color:#d98b00!important}.resource-card-foot{display:flex!important;align-items:center;justify-content:space-between;margin-top:12px;padding-top:10px;border-top:1px solid #eff0f4;font-size:9px}.resource-card-foot>span{overflow:hidden;max-width:52%;color:#979cad;white-space:nowrap;text-overflow:ellipsis}.resource-card-foot>a{color:var(--v2-primary)!important;font-weight:800}
.catalog-empty{display:flex!important;width:100%!important;min-height:380px!important;flex-direction:column!important;align-items:center!important;justify-content:center!important;padding:35px!important;text-align:center!important}.catalog-empty>.empty-mark{display:grid!important;width:68px!important;min-width:68px!important;max-width:68px!important;height:68px!important;min-height:68px!important;max-height:68px!important;margin:0 auto!important;padding:0!important;place-items:center;border:0!important;border-radius:19px!important;background:linear-gradient(135deg,var(--v2-primary),var(--v2-primary-2))!important;color:#fff!important;font-size:28px!important;line-height:1!important;box-shadow:0 13px 28px rgba(103,87,245,.27)!important}.catalog-empty h2{margin:19px 0 7px!important;color:#262b40!important;font-size:21px!important}.catalog-empty p{max-width:500px;margin:0 0 19px!important;color:#8c92a4!important;font-size:12px!important;line-height:1.8}.catalog-empty>div:last-child{display:flex!important;gap:8px}.catalog-empty .btn{display:inline-flex!important;width:auto!important;height:39px!important;align-items:center;padding:0 17px!important;margin:0!important;border-radius:9px!important;font-size:11px!important}.catalog-results>.pager{display:flex!important;justify-content:center;gap:7px;margin:22px 0 0!important}.catalog-results>.pager:empty{display:none!important}
.catalog-aside{display:flex!important;flex-direction:column;gap:13px}.catalog-aside section{padding:17px!important}.catalog-aside h3{margin:0 0 9px!important;padding:0 0 10px!important;border-bottom:2px solid var(--v2-primary)!important;color:#292e43!important;font-size:14px!important}.catalog-aside section>a{display:flex!important;align-items:center;justify-content:space-between;padding:8px 2px!important;border-bottom:1px dashed #e7e9ef!important;color:#62697d;font-size:11px!important}.catalog-aside section>a:last-child{border-bottom:0!important}.catalog-aside section>a:hover{color:var(--v2-primary)!important}.catalog-aside em{color:#a2a7b5;font-size:9px;font-style:normal}.catalog-aside p{margin:8px 0;color:#8b91a3;font-size:10px;line-height:1.8}.catalog-tip{background:linear-gradient(145deg,#f4f2ff,#fff)!important}.catalog-tip>b{color:var(--v2-primary);font-size:12px}
.site-foot .foot-main{display:grid!important;grid-template-columns:1.35fr .8fr .8fr 1.1fr!important;align-items:start;gap:54px!important;padding:48px 0 32px!important}.site-foot .foot-brand{display:grid!important;grid-template-columns:44px 1fr!important;align-items:center!important;gap:0 11px!important;margin:0!important}.site-foot .foot-brand img{grid-column:1;width:44px!important;height:44px!important;margin:0!important}.site-foot .foot-brand>b{grid-column:2;color:#fff;font-size:19px}.site-foot .foot-brand>p{grid-column:1/3;max-width:300px;margin:17px 0 8px!important;color:#9ea6c1;font-size:11px;line-height:1.8}.site-foot .foot-brand>a{grid-column:1/3;display:inline-block;width:max-content;color:#b7bfd6;font-size:10px}.site-foot .foot-col h4{margin:0 0 12px!important;padding:0 0 10px!important;border-bottom:1px solid rgba(255,255,255,.1)!important;color:#fff;font-size:13px}.site-foot .foot-col>a{display:block!important;width:auto!important;padding:5px 0!important;background:transparent!important;color:#9ea6c1!important;font-size:11px!important}.site-foot .foot-col>a:hover{color:#fff!important;transform:translateX(3px)}.foot-languages{display:flex!important;flex-wrap:wrap!important;gap:5px!important;margin-top:12px!important}.site-foot .foot-col .foot-languages>a{display:inline-flex!important;width:auto!important;align-items:center;padding:4px 7px!important;border:1px solid #35405f!important;border-radius:6px!important;background:transparent!important;color:#9ea6c1!important;font-size:9px!important;line-height:1.2!important}.site-foot .foot-col .foot-languages>a:hover{border-color:#6e63bd!important;color:#fff!important;transform:none}.site-foot .foot-col .foot-languages>a.active{border-color:var(--v2-primary)!important;background:var(--v2-primary)!important;color:#fff!important}.foot-note{display:flex!important;gap:8px!important;padding:15px 0!important;border-top:1px solid rgba(255,255,255,.1)!important;color:#8e97b5;font-size:10px}.foot-note b{margin:0!important;color:#c2c8da}.foot-bottom{padding:15px 0!important;font-size:10px!important}
@media(max-width:1000px){.catalog-layout{grid-template-columns:1fr!important}.catalog-aside{display:grid!important;grid-template-columns:1fr 1fr!important}.resource-card-grid{grid-template-columns:repeat(2,minmax(0,1fr))!important}.site-foot .foot-main{grid-template-columns:1.3fr 1fr 1fr!important}.site-foot .foot-col:last-child{grid-column:2/4}}
@media(max-width:700px){.catalog-page .crumb{height:38px}.catalog-hero{min-height:145px;padding:24px 20px;border-radius:14px}.catalog-hero h1{font-size:25px!important}.catalog-hero p{max-width:76%;font-size:10px!important}.catalog-count{min-width:75px;padding:12px 8px}.catalog-count strong{font-size:28px}.catalog-filter{display:block!important;padding:14px!important}.filter-label{padding:0 0 9px}.catalog-layout{margin-top:12px!important}.catalog-results{padding:14px!important}.catalog-results-head>span{display:none!important}.resource-card-grid{grid-template-columns:1fr!important}.resource-icon{height:185px!important}.catalog-empty{min-height:320px!important;padding:22px 10px!important}.catalog-aside{display:grid!important;grid-template-columns:1fr!important}.site-foot .foot-main{grid-template-columns:1fr 1fr!important;gap:26px!important}.site-foot .foot-brand{grid-column:1/3!important}.site-foot .foot-col:last-child{grid-column:1/3!important}.foot-note{display:block!important}.foot-note b{display:block;margin-bottom:6px!important}}


/* ---- audit-v6.css ---- */
/* Cross-page UI integrity rules */
html,body{max-width:100%;overflow-x:hidden}body{min-width:320px}main{display:block}img{max-width:100%}button,input,select,textarea{font:inherit}.wrap>*{min-width:0}
.site-head .head-inner{gap:0}.site-head .search{min-width:280px}.site-head .search-input{min-width:0}.site-nav .nav-inner{display:flex;align-items:center}.nav-list{min-width:0;height:64px!important;align-items:stretch!important}.nav-list li{position:relative;display:flex!important;height:64px!important;flex:0 0 auto;align-items:stretch!important}.nav-list a{position:relative!important;display:flex!important;height:64px!important;align-items:center!important;padding-top:0!important;padding-bottom:0!important;border-radius:0!important;line-height:1!important;white-space:nowrap}.nav-list a:after{left:20px!important;right:20px!important;top:auto!important;bottom:0!important;height:3px!important}.nav-list li.on a:after{transform:scaleX(1)!important}.nav-list li:not(.on) a:after,.nav-list li:not(.on) a:hover:after{transform:scaleX(0)!important}.nav-list li:not(.on) a:hover{border-radius:0!important;background:transparent!important;color:var(--v2-primary)!important}.lang-menu{overflow:hidden}.lang-menu a{transform:none!important}
.nd-home .wrap{position:relative}.nd-resource-card,.nd-library-column,.nd-editorial,.nd-spotlight,.nd-topic-section{min-width:0}.nd-resource-card a,.nd-compact-list a,.nd-story-list a{min-width:0}.nd-feature-overlay p,.nd-spotlight-copy p{word-break:break-word}
.detail{width:100%;min-width:0}.detail>main,.detail-aside{min-width:0}.detail-hero{min-width:0}.dh-main{min-width:0}.dh-main h1{overflow-wrap:anywhere}.dh-actions{display:flex;flex-wrap:wrap;gap:8px}.dh-actions .btn{margin:0}.dh-stats{display:grid;grid-template-columns:repeat(4,minmax(0,1fr))}.screens{max-width:100%;overflow-x:auto}.screens img{flex:0 0 auto}.tab-pane{overflow-wrap:anywhere}.meta-table>div{min-width:0}.meta-table b{overflow-wrap:anywhere}.related-list a{min-width:0}.related-list span{min-width:0}.related-list b,.related-list small{overflow:hidden;white-space:nowrap;text-overflow:ellipsis}
.content-list,.topic-page,.article-detail,.download-confirm,.topic-hero{width:100%;min-width:0}.content-list article{min-width:0}.content-list article>div{min-width:0}.content-list h2,.content-list p{overflow-wrap:anywhere}.topic-grid>a{min-width:0}.topic-grid h2,.topic-grid p{overflow-wrap:anywhere}.article-body{max-width:100%;overflow-wrap:anywhere}.article-body img,.article-body iframe,.article-body video{max-width:100%}.download-confirm>div{min-width:0}.download-confirm h1,.download-confirm p{overflow-wrap:anywhere}
.front-empty{width:100%;max-width:none}.front-empty>span{flex:0 0 auto}.pager{flex-wrap:wrap}.pager:empty{display:none}.chips{min-width:0}.chips a{white-space:nowrap}
.site-foot{clear:both}.site-foot .foot-main>*{min-width:0}.site-foot .foot-brand>p{overflow-wrap:anywhere}.foot-languages{align-items:center}.foot-note span{line-height:1.7}.to-top{right:max(18px,env(safe-area-inset-right));bottom:max(18px,env(safe-area-inset-bottom))}
@media(max-width:1000px){.site-head .search{min-width:230px}.dh-stats{grid-template-columns:repeat(2,minmax(0,1fr))}.detail{grid-template-columns:minmax(0,1fr) 280px}}
@media(max-width:720px){.site-head .head-inner{position:relative}.site-head .search{min-width:0}.site-nav .nav-inner{position:relative}.nav-list{overflow:visible}.nav-list li{width:100%;height:auto}.nav-list a{width:100%;min-width:0}.nav-list a:after{display:none}.nav-list li.on a{border-radius:8px!important;background:#f2efff!important}.detail{display:block}.dh-stats{grid-template-columns:1fr 1fr}.content-list article{display:block}.content-cover{display:block;margin-bottom:14px}.topic-grid{grid-template-columns:1fr}.download-confirm{display:block}.download-confirm>img{margin-bottom:20px}.site-foot .foot-main{grid-template-columns:1fr 1fr!important}.site-foot .foot-brand{grid-column:1/3}.site-foot .foot-col:last-child{grid-column:1/3}}
@media(max-width:430px){.wrap{max-width:calc(100% - 20px)}.site-head .head-inner,.site-nav .nav-inner{max-width:calc(100% - 20px)}.brand-name{font-size:22px}.site-head .lang>summary{max-width:105px}.dh-stats{grid-template-columns:1fr}.catalog-hero p{max-width:65%}.catalog-count{min-width:64px}.site-foot .foot-main{grid-template-columns:1fr!important}.site-foot .foot-brand,.site-foot .foot-col:last-child{grid-column:1}.foot-note{max-width:calc(100% - 20px)}}

/* game9 wordmark */
.site-head .brand{flex:0 1 auto;min-width:210px}.site-head .brand-name{white-space:nowrap;font-size:31px;letter-spacing:-.8px}.site-head .search{margin-left:36px}
@media(max-width:1100px){.site-head .brand{min-width:190px}.site-head .brand-name{font-size:27px}.site-head .search{margin-left:20px}}
@media(max-width:720px){.site-head .brand{min-width:0}.site-head .brand-name{font-size:22px}.site-head .search{margin-left:0}}
@media(max-width:430px){.site-head .brand-name{font-size:19px;letter-spacing:-.6px}.site-head .brand-logo{width:40px;height:40px}}

