:root {
  --brand: #0B6EFF;
  --brand-deep: #0055D6;
  --brand-soft: #E8F2FF;
  --ink: #0F172A;
  --ink-2: #1E293B;
  --mute: #5B6B7C;
  --placeholder: #94A3B8;
  --page: #F9F9F9;
  --side: 220px;
  --side-bg: #F0F2F4;
  --side-ink: #515C6B;
  --card: #FFFFFF;
  --line: #E6EBF2;
  --hot: #FF4D4F;
  --hot-2: #FF7A45;
  --hot-3: #FAAD14;
  --weather: #00A3FF;
  --glance: #7B61FF;
  --ok: #16A34A;
  --mask: rgba(15, 23, 42, 0.4);
  --radius-card: 12px;
  --radius-pill: 22px;
  --shadow-card: 0 1px 2px rgba(15, 23, 42, 0.04), 0 8px 24px rgba(15, 23, 42, 0.06);
  --content: 1200px;
  --gutter: 24px;
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-bot: env(safe-area-inset-bottom, 0px);
}
* { box-sizing: border-box; }
html { overflow-x: clip; }
html, body { margin: 0; background: var(--page); color: var(--ink); }
body {
  font-family: -apple-system, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  min-height: 100%;
  position: relative;
}
body:not(.is-paper)::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 550px;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 50% at 12% 18%, rgba(160, 210, 255, 0.55), transparent 70%),
    radial-gradient(ellipse 50% 46% at 88% 12%, rgba(255, 196, 176, 0.48), transparent 68%),
    radial-gradient(ellipse 42% 38% at 50% 0%, rgba(210, 200, 255, 0.32), transparent 70%);
}
body.lock { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
.hidden { display: none !important; }
#offline {
  display: none; background: #111827; color: #fff; font-size: 13px;
  text-align: center; padding: 8px 16px;
}
#offline.on { display: block; }
.atmo {
  position: absolute; top: 0; left: 0; right: 0; height: 420px;
  background: linear-gradient(135deg, #1B3A6B, #3D5A80 40%, #8B6B5A) center/cover no-repeat;
  pointer-events: none; z-index: 0; opacity: 0;
  transition: opacity 400ms ease;
}
body.is-home .atmo { opacity: 1; }
.atmo.has-img { background-color: #1B3A6B; }
.atmo.fade { opacity: 0.35; }
.atmo::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 120px;
  background: linear-gradient(180deg, transparent, var(--page));
}
.chrome {
  position: relative; z-index: 100;
  isolation: isolate; background: #fff; width: 100%;
}
#chromeSpacer {
  display: none; width: 100%; height: 0; flex: none; pointer-events: none;
}
/* 滚动到模块列表后出现的悬浮导航 */
.float-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 99;
  background: rgba(255, 255, 255, .92);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transform: translateY(-102%); transition: transform .28s ease;
}
.float-nav.on { transform: translateY(0); }
.float-nav-in {
  height: 48px; display: flex; align-items: center; justify-content: center; gap: 6px;
  max-width: var(--content); margin: 0 auto; padding: 0 16px;
}
.float-nav a {
  height: 32px; line-height: 32px; padding: 0 16px; border-radius: 16px;
  font-size: 14px; font-weight: 600; color: var(--ink); white-space: nowrap;
}
.float-nav a:hover { background: #F2F4F8; }
.float-nav a.on { color: #fff; background: var(--brand); }
body.is-paper .float-nav { background: rgba(12, 19, 34, .9); border-bottom-color: #1E2C48; }
body.is-paper .float-nav a { color: #E8F6FF; }
body.is-paper .float-nav a:hover { background: #15233F; }
@media (max-width: 767px) {
  .float-nav-in { justify-content: flex-start; overflow-x: auto; scrollbar-width: none; padding: 0 10px; }
  .float-nav-in::-webkit-scrollbar { display: none; }
  .float-nav a { padding: 0 12px; flex: none; font-size: 13px; }
}
body.is-home .chrome { background: transparent; }
.util {
  position: relative; z-index: 2;
  height: 32px; background: #fff; border-bottom: 1px solid var(--line);
  font-size: 12px; color: var(--mute);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 max(var(--gutter), calc((100% - var(--content)) / 2));
  gap: 16px;
}
body.is-home .util { background: transparent; border-bottom-color: transparent; color: rgba(255,255,255,.82); }
body.is-home.atmo-light .util { color: var(--mute); }
.util span { min-width: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.util b { color: var(--brand); font-weight: 600; cursor: pointer; }
body.is-home .util b { color: #fff; }
body.is-home.atmo-light .util b { color: var(--brand); }
.head {
  position: relative; z-index: 1;
  background: #fff; border-bottom: 1px solid var(--line);
  padding: 0 max(var(--gutter), calc((100% - var(--content)) / 2) ) 16px;
  overflow: visible;
}
body.is-home .head { background: transparent; border-bottom-color: transparent; padding-bottom: 8px; }
.head-bar {
  height: 56px; display: flex; align-items: center; gap: 24px; min-width: 0;
}
.head-extra { display: flex; align-items: center; gap: 10px; margin-left: auto; }
.search-row {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  padding: 8px 0 0;
}
.search-wrap { position: relative; width: 100%; max-width: 680px; }
.ask-btn { display: none; }
.search-modes {
  display: flex; flex: none; align-items: center;
  height: 32px; padding: 2px; margin: 0 6px 0 4px;
  border-radius: 16px; background: #F3F5F9; gap: 0;
}
.search-modes button {
  height: 28px; padding: 0 10px; border: 0; border-radius: 14px;
  background: transparent; color: var(--mute);
  font-size: 12px; font-weight: 600; line-height: 28px;
}
.search-modes button.on {
  background: #fff; color: var(--brand);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.08);
}
body.is-home .ask-btn {
  border-color: rgba(255,255,255,.55); background: rgba(255,255,255,.18); color: #fff;
}
body.is-home.atmo-light .ask-btn { border-color: var(--line); background: #fff; color: var(--ink); }
.atmo-swap {
  height: 28px; padding: 0 10px; border-radius: 14px; border: 1px solid rgba(255,255,255,.4);
  background: rgba(255,255,255,.16); color: #fff; font-size: 12px;
}
body.atmo-light .atmo-swap { border-color: var(--line); background: #fff; color: var(--ink-2); }
.dock { display: none; }
.logo { display: flex; align-items: center; gap: 10px; min-width: 0; cursor: pointer; }
.mark {
  width: 32px; height: 32px; border-radius: 0; background: transparent;
  color: transparent; font-size: 0; font-weight: 800;
  display: block; object-fit: contain; flex: none;
}
img.mark { display: block; }
.logo h1 { margin: 0; font-size: 20px; line-height: 1.1; }
.logo p { display: none; }
body.is-home .logo h1, body.is-home .logo p { color: #fff; }
body.is-home.atmo-light .logo h1 { color: var(--ink); }
body.is-home.atmo-light .logo p { color: var(--mute); }
.search {
  width: 100%; height: 56px; border-radius: 28px;
  border: 1px solid transparent; display: flex; align-items: center;
  padding: 6px 6px 6px 8px; background: #fff;
  box-shadow: 0 1px 3px rgba(32, 33, 36, 0.1), 0 2px 8px rgba(32, 33, 36, 0.12);
  transition: box-shadow .18s ease, border-color .18s ease;
}
.search:hover {
  box-shadow: 0 2px 6px rgba(32, 33, 36, 0.14), 0 4px 16px rgba(32, 33, 36, 0.14);
}
.search:focus-within {
  border-color: rgba(11, 110, 255, 0.28);
  box-shadow: 0 1px 3px rgba(32, 33, 36, 0.08), 0 0 0 4px rgba(11, 110, 255, 0.12);
}
.eng-btn {
  width: 40px; height: 40px; padding: 0; border: 0; border-radius: 50%;
  background: transparent; color: var(--ink-2); flex: none;
  display: flex; align-items: center; justify-content: center;
}
.eng-btn:hover, .eng-btn[aria-expanded="true"] { background: var(--page); }
.ask-ico {
  display: none; width: 40px; height: 40px; flex: none;
  border-radius: 50%; align-items: center; justify-content: center;
  background: #F3F7FF center/22px no-repeat;
}
.search.is-ask .eng-btn { display: none !important; }
.search.is-ask .ask-ico { display: flex; }
.eng-ico {
  width: 24px; height: 24px; border-radius: 6px; overflow: hidden; flex: none;
  background: #fff; display: flex; align-items: center; justify-content: center;
  font-size: 8px; font-weight: 800; color: #fff;
  box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.06);
}
.eng-ico img { width: 100%; height: 100%; object-fit: contain; background: #fff; }
.eng-name {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); border: 0;
}
.eng-pop {
  position: absolute; left: 0; top: 60px; z-index: 14; width: min(320px, 100%);
  background: #fff; border-radius: 16px;
  box-shadow: 0 8px 28px rgba(32, 33, 36, 0.16), 0 1px 2px rgba(32, 33, 36, 0.08);
  padding: 8px; max-height: 360px; overflow: auto;
}
.eng-pop button {
  display: flex; align-items: center; gap: 10px; width: 100%;
  height: 42px; padding: 0 10px; border: 0; border-radius: 10px;
  background: none; font-size: 14px; color: var(--ink-2); text-align: left;
}
.eng-pop button:hover, .eng-pop button.on { background: var(--brand-soft); color: var(--brand); }
.eng-pop .ico { width: 24px; height: 24px; border-radius: 6px; margin: 0; }
.search input {
  flex: 1; border: 0; outline: 0; font-size: 16px; background: transparent; color: var(--ink);
  min-width: 0; height: 40px; padding: 0 8px;
}
.search input::placeholder { color: var(--placeholder); }
.search input::-webkit-search-decoration,
.search input::-webkit-search-cancel-button { -webkit-appearance: none; }
.search #go {
  width: 40px; height: 40px; border: 0; border-radius: 50%;
  background: var(--brand); color: #fff; flex: none;
  display: flex; align-items: center; justify-content: center;
}
.search #go svg { width: 20px; height: 20px; display: block; }
.search #go:hover { background: var(--brand-deep); }
.search #go:active { transform: scale(0.96); }
.search.shake { animation: shake 180ms ease; }
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-4px); }
  75% { transform: translateX(4px); }
}
.eng {
  height: 22px; padding: 0 8px; border-radius: 11px; font-size: 11px;
  color: var(--mute); border: 1px solid var(--line); background: #fff; line-height: 20px;
}
.eng.on { background: var(--brand-soft); color: var(--brand); border-color: transparent; }
.eng:focus-visible, .search button:focus-visible, .ghost:focus-visible, .chip:focus-visible {
  outline: 2px solid var(--brand); outline-offset: 2px;
}
.suggest {
  position: absolute; left: 0; right: 0; top: 60px; background: #fff;
  border-radius: 12px; box-shadow: var(--shadow-card); padding: 8px 0; z-index: 12;
  display: none;
}
.suggest.on { display: block; }
.suggest a, .suggest button {
  display: block; width: 100%; text-align: left; border: 0; background: none;
  padding: 10px 16px; font-size: 14px; color: var(--ink-2);
}
.suggest a:hover, .suggest button:hover, .suggest button.on { background: var(--brand-soft); color: var(--brand); }
.suggest .lab { padding: 6px 16px; font-size: 12px; color: var(--mute); }
.svcs { display: none; }
.tabs {
  display: flex; align-items: center; gap: 28px;
  font-size: 14px; font-weight: 500; color: var(--ink-2);
}
.tabs a { padding: 8px 0; white-space: nowrap; }
.tabs a.on { color: var(--brand); box-shadow: inset 0 -2px 0 var(--brand); }
body.is-home .tabs a { color: rgba(255,255,255,.82); }
body.is-home .tabs a.on { color: #fff; box-shadow: inset 0 -2px 0 #fff; }
body.is-home.atmo-light .tabs a { color: var(--ink-2); }
body.is-home.atmo-light .tabs a.on { color: var(--brand); box-shadow: inset 0 -2px 0 var(--brand); }
.wrap { width: min(var(--content), calc(100% - 32px)); margin: 16px auto 0; position: relative; z-index: 1; }
.do {
  display: grid; grid-template-columns: repeat(8, 1fr); gap: 10px;
  margin: 4px 0 8px;
}
.do-tile {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 6px; height: 72px; border-radius: 16px;
  background: rgba(255,255,255,.22); color: #fff; font-size: 12px; font-weight: 500;
  transition: transform 160ms ease, box-shadow 160ms ease;
}
body:not(.is-home) .do-tile { background: #fff; color: var(--ink); box-shadow: var(--shadow-card); }
body.is-home.atmo-light .do-tile { background: rgba(255,255,255,.72); color: var(--ink); }
.do-tile:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(15,23,42,.16); }
.do-tile i {
  width: 28px; height: 28px; border-radius: 8px;
  background: rgba(255,255,255,.35);
}
body:not(.is-home) .do-tile i, body.is-home.atmo-light .do-tile i { background: var(--brand-soft); }
.do-images { background: linear-gradient(135deg,#5B8CFF,#0B6EFF) !important; }
.do-videos { background: linear-gradient(135deg,#FF7A8A,#E11D48) !important; }
.do-news { background: linear-gradient(135deg,#FFB020,#FAAD14) !important; }
.do-map { background: linear-gradient(135deg,#34D399,#059669) !important; }
.do-walls { background: linear-gradient(135deg,#A78BFA,#7B61FF) !important; }
.do-translate { background: linear-gradient(135deg,#38BDF8,#0284C7) !important; }
.do-weather { background: linear-gradient(135deg,#67E8F9,#00A3FF) !important; }
.do-hot { background: linear-gradient(135deg,#FB7185,#FF4D4F) !important; }
.home-block { margin-top: 20px; animation: rise 240ms ease both; }
.home-block:nth-of-type(2) { animation-delay: 80ms; }
@keyframes rise {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}
.home-block > .eyebrow { margin-bottom: 10px; }
.today { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; }
.today .card { border-radius: 16px; min-height: 160px; }
.ai8 { grid-template-columns: repeat(8, 1fr); }
.ai8-card { border-radius: 16px; }
.dir-layout { display: flex; gap: 20px; align-items: flex-start; }
.dir-side {
  width: 168px; flex: none; background: #fff; border-radius: 16px;
  box-shadow: var(--shadow-card); padding: 8px 0 12px;
  position: sticky; top: 12px; max-height: calc(100vh - 24px); overflow: auto;
}
.dir-side a {
  display: block; height: 36px; line-height: 36px; padding: 0 16px;
  font-size: 13px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.dir-side a:hover { background: #F3F7FF; }
.dir-side a.on { background: var(--brand-soft); color: var(--brand); font-weight: 600; }
.gl-ico {
  width: 56px; height: 56px; border-radius: 14px; flex: none;
  background: #F4F0FF; display: inline-flex; align-items: center; justify-content: center;
  font-size: 26px; line-height: 1;
}
.gl-read { min-height: 280px; padding: 28px 32px; }
.gl-read .quote, .gl-read .qa-q { font-size: 20px; line-height: 1.7; }
.dir-ask { color: var(--brand); font-weight: 600; }
.dir-main { flex: 1; min-width: 0; }
.dir-main.card, .dir-main .card { border-radius: 16px; }
.tool-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.tool-card {
  display: block; min-height: 120px; border-radius: 16px; padding: 20px;
  background: #fff; box-shadow: var(--shadow-card);
  transition: transform 160ms ease, box-shadow 160ms ease;
}
.tool-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(15,23,42,.1); }
.tool-card b { display: block; font-size: 16px; margin-bottom: 6px; }
.tool-card span { font-size: 12px; color: var(--mute); }
.dis-tabs { margin-bottom: 12px; }
.main { display: flex; gap: 20px; align-items: flex-start; }
.left { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 16px; }
.right { width: 320px; flex: none; display: flex; flex-direction: column; gap: 16px; }
.card {
  background: var(--card); border-radius: var(--radius-card);
  box-shadow: var(--shadow-card); padding: 16px 20px;
  transition: box-shadow 120ms ease;
}
.card:hover { box-shadow: 0 2px 8px rgba(15, 23, 42, .08), 0 12px 28px rgba(15, 23, 42, .08); }
.eyebrow {
  font-size: 13px; font-weight: 600; margin-bottom: 12px;
  display: flex; justify-content: space-between; align-items: center;
}
.eyebrow a { color: var(--brand); font-weight: 400; font-size: 12px; }
.grid {
  display: grid; grid-template-columns: repeat(10, 1fr); gap: 16px;
}
.cell { text-align: center; cursor: pointer; }
.ico {
  width: 56px; height: 56px; border-radius: 12px; margin: 0 auto 6px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 13px; font-weight: 700; overflow: hidden;
  background: #fff; border: 1px solid #EEF2F6; padding: 0;
}
.ico img { width: 100%; height: 100%; object-fit: contain; background: transparent; }
.ico-img { background: #fff; }
.cell span { font-size: 12px; font-weight: 500; display: block; color: var(--ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ghead {
  display: flex; align-items: center; justify-content: space-between;
  height: 36px; font-size: 14px; font-weight: 700;
  scroll-margin-top: 120px;
}
.ghead i {
  display: inline-block; width: 3px; height: 16px; background: var(--brand);
  border-radius: 2px; margin-right: 8px; vertical-align: -2px;
}
.ghead a { font-size: 12px; font-weight: 400; color: var(--brand); }
.links { display: flex; flex-wrap: wrap; }
.links a {
  width: 12.5%; height: 36px; line-height: 36px; font-size: 14px; color: var(--ink-2);
  border-radius: 6px; padding: 0 4px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.links a:hover { color: var(--brand); background: var(--brand-soft); }
.links.clip-1 { max-height: 36px; overflow: hidden; }
.wgrid {
  display: grid; grid-template-columns: repeat(8, 1fr); gap: 12px 8px;
  padding: 4px 0 16px;
}
.wgrid.clip-1 { max-height: 70px; overflow: hidden; }
.wgrid-card {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  padding: 4px 0 28px;
}
.wgrid-card.clip-1 { max-height: 240px; }
.wcell { text-align: center; min-width: 0; }
.wcell .ico { width: 56px; height: 56px; border-radius: 12px; margin: 0 auto 6px; padding: 0; }
.wcell span {
  display: block; font-size: 12px; color: var(--ink-2);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.wcell:hover span { color: var(--brand); }
.tool-item {
  display: flex; align-items: center; gap: 10px; min-width: 0;
  min-height: 0; padding: 10px 12px; text-align: left;
  background: #fff; border: 1px solid #EEF2F6; border-radius: 12px;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}
.tool-item:hover {
  transform: translateY(-2px);
  border-color: #B9D2FF;
  box-shadow: 0 8px 24px rgba(15, 23, 42, .08);
}
.tool-item .ico {
  width: 56px; height: 56px; border-radius: 12px; margin: 0; flex: none;
  padding: 0; box-sizing: border-box;
  background: #fff; border: 1px solid #EEF2F6;
}
.tool-item.is-sk, .cell.is-sk { pointer-events: none; }
.tool-item.is-sk .ico, .cell.is-sk .ico, .sk-box {
  background: linear-gradient(90deg, #E6EBF2 25%, #F3F6FA 37%, #E6EBF2 63%);
  background-size: 400% 100%;
  animation: sk 1.2s ease infinite;
  border-color: transparent;
}
.tool-item.is-sk b.sk { width: 56%; height: 14px; margin: 4px 0; }
.tool-item.is-sk small.sk { width: 80%; height: 12px; }
.tool-item .ico img {
  width: 100%; height: 100%; object-fit: contain; background: transparent;
}
.tool-txt { min-width: 0; flex: 1; }
.tool-txt b {
  display: block; font-size: 14px; font-weight: 650; line-height: 1.3;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.tool-new {
  display: inline-block; margin-left: 6px; padding: 0 5px; height: 16px; line-height: 16px;
  border-radius: 4px; background: #FFF1F0; color: #CF1322; font-size: 10px; font-style: normal;
  font-weight: 700; vertical-align: 1px;
}
.gcount {
  margin-left: 8px; font-size: 12px; font-weight: 500; font-style: normal; color: var(--mute);
}
.foot-cats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px 28px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.foot-col h4 {
  margin: 0 0 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--brand);
  letter-spacing: 0.02em;
}
.foot-col a {
  display: block;
  color: var(--mute);
  font-size: 13px;
  line-height: 1.95;
}
.foot-col a:hover { color: var(--brand); }
@media (max-width: 720px) {
  .foot-cats { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px 18px; }
}
@media (max-width: 420px) {
  .foot-cats { grid-template-columns: 1fr 1fr; }
}
.tool-txt small {
  display: block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  margin-top: 2px; font-size: 12px; line-height: 1.35; color: var(--mute);
}
.dir-main .ghead { height: 44px; font-size: 16px; margin-top: 4px; }
.ghead .ttl { cursor: pointer; }
.ghead .exp { font-size: 12px; font-weight: 400; color: var(--brand); cursor: pointer; margin-right: 8px; }
/* 展开入口：贴合目录卡片的通栏虚线底栏，不是独立 CTA 胶囊 */
.wgrid-card { padding-bottom: 10px; }
.wgrid-card[data-more="1"] { padding-bottom: 8px; }
.gfoot {
  display: flex; justify-content: stretch; align-items: center;
  padding: 0 0 20px; margin-top: 2px;
}
.gfoot .exp {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; box-sizing: border-box;
  min-height: 40px; padding: 0 14px;
  border: 1px dashed #D8E2F0; border-radius: 12px;
  background: linear-gradient(180deg, #FAFCFF 0%, #F3F7FC 100%);
  font-size: 13px; font-weight: 500; letter-spacing: 0.01em;
  color: #5B6B86; cursor: pointer; text-decoration: none;
  transition: border-color .15s ease, color .15s ease, background .15s ease, box-shadow .15s ease;
}
.gfoot .exp::after {
  content: ""; width: 6px; height: 6px; flex: none;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg); margin-top: -3px;
  opacity: .75;
}
.gfoot .exp:hover {
  border-color: #B9D2FF; color: var(--brand);
  background: #fff;
  box-shadow: 0 4px 14px rgba(15, 23, 42, .06);
}
.gfoot .exp:active { transform: scale(0.995); }
.gfoot.is-open .exp {
  border-style: solid; border-color: #E2E8F0;
  background: #F8FAFC; color: #64748B;
}
.gfoot.is-open .exp::after {
  transform: rotate(-135deg); margin-top: 2px;
}
.ghost[disabled] { opacity: .45; pointer-events: none; }
.btn-purple[disabled] { opacity: .45; pointer-events: none; }
.hot-row:hover u, .news-row:hover h3 { color: var(--brand); }
.nc.text-only .ph { display: none; }
.grabber {
  display: none; width: 36px; height: 4px; border-radius: 2px;
  background: #D0D5DD; margin: 0 auto 12px;
}
.sheet {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 21;
  background: #fff; border-radius: 16px 16px 0 0; padding: 8px 16px calc(16px + var(--safe-bot));
  box-shadow: 0 -8px 24px rgba(15, 23, 42, .12); display: none;
}
.sheet.on { display: block; }
.sheet-mask {
  position: fixed; inset: 0; background: var(--mask); z-index: 20;
  display: none;
}
.sheet-mask.on { display: block; }
.pop {
  position: fixed; width: 280px; background: #fff; border-radius: 12px;
  box-shadow: var(--shadow-card), 0 12px 32px rgba(15, 23, 42, .12);
  padding: 16px; z-index: 16; display: none;
}
.pop.on { display: block; }
.pop-hd { display: flex; gap: 12px; margin-bottom: 10px; align-items: flex-start; }
.pop-hd .ico { margin: 0; flex: none; }
.pop h3 { margin: 0 0 4px; font-size: 16px; font-weight: 600; }
.pop p { margin: 0; font-size: 12px; color: var(--mute); line-height: 1.4; }
.pop-url { font-size: 11px; color: var(--placeholder); margin: 0 0 12px; word-break: break-all; }
.pop-open {
  display: block; width: 100%; height: 36px; border: 0; border-radius: 18px;
  background: var(--brand); color: #fff; font-size: 14px; font-weight: 700;
}
.pop-open:active { background: var(--brand-deep); }
.pop-copy {
  display: block; width: 100%; height: 36px; margin-top: 8px;
  border: 1px solid var(--line); border-radius: 18px; background: #fff;
  font-size: 13px; color: var(--ink-2);
}
.sheet h3 { margin: 0 0 12px; font-size: 16px; }
.sheet a { display: block; height: 44px; line-height: 44px; font-size: 15px; border-bottom: 1px solid var(--line); }
.end-line { text-align: center; font-size: 12px; color: var(--placeholder); padding: 12px 0 4px; }
.wx-big { font-size: 36px; font-weight: 700; color: var(--weather); line-height: 1; }
.wx-meta { font-size: 13px; color: var(--mute); margin-top: 6px; }
.days { display: flex; justify-content: space-between; margin-top: 12px; font-size: 11px; color: var(--mute); }
.quote { font-size: 16px; font-weight: 500; line-height: 1.45; }
.qa-q { font-size: 16px; font-weight: 600; line-height: 1.4; margin-bottom: 8px; }
.qa-q::before { content: "问 "; color: var(--glance); font-weight: 700; }
.qa-a { font-size: 14px; color: var(--ink-2); line-height: 1.5; }
.aqi-ok { color: var(--ok); }
.aqi-mid { color: var(--hot-3); }
.aqi-bad { color: var(--hot); }
.recent-row {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  margin-top: 12px; font-size: 12px;
}
.recent-row .lab { color: var(--mute); flex: none; }
.recent-row a {
  height: 24px; line-height: 24px; padding: 0 10px; border-radius: 12px;
  background: var(--page); color: var(--ink-2);
}
.qact { margin-top: 12px; display: flex; gap: 8px; }
.ghost {
  height: 28px; padding: 0 10px; border-radius: 14px; border: 1px solid var(--line);
  background: #fff; font-size: 12px; color: var(--ink-2);
}
.hot-tabs { display: flex; flex-wrap: wrap; gap: 8px 12px; font-size: 12px; color: var(--mute); margin-bottom: 8px; }
.hot-tabs span { cursor: pointer; }
.hot-tabs .on { color: var(--brand); font-weight: 600; }
.eyebrow a.muted, .hot-pager .mute { color: var(--placeholder); pointer-events: none; cursor: default; }
.hot-pager {
  display: flex; align-items: center; justify-content: flex-end; gap: 12px;
  margin-top: 10px; font-size: 12px; color: var(--mute);
}
.hot-pager a { color: var(--brand); }
.hot-row, .news-row {
  display: flex; align-items: center; min-height: 36px; font-size: 14px; gap: 8px; cursor: pointer;
}
.n {
  min-width: 16px; height: 16px; padding: 0 3px; border-radius: 4px; font-size: 11px; color: #fff;
  display: flex; align-items: center; justify-content: center; font-weight: 700; flex: none;
}
.n.a { background: var(--hot); } .n.b { background: var(--hot-2); } .n.c { background: var(--hot-3); }
.n.g { background: transparent; color: var(--placeholder); }
.hot-row u, .news-row u { flex: 1; text-decoration: none; color: var(--ink-2); overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
.hv { font-size: 12px; color: var(--placeholder); flex: none; }
.feed { margin-top: 16px; }
.news { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.nc { cursor: pointer; }
.ph {
  height: 80px; border-radius: 8px; background: #dbe7f5; margin-bottom: 8px;
  background-size: cover; background-position: center;
}
.nc p { margin: 0; font-size: 15px; font-weight: 600; line-height: 1.35; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.nc small { color: var(--mute); font-size: 12px; }
.foot {
  width: min(var(--content), calc(100% - 32px));
  margin: 24px auto 0; padding: 20px 0 calc(16px + var(--safe-bot));
  font-size: 12px; color: var(--mute);
}
.apps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
  margin-bottom: 16px;
}
.apps.hidden { display: none; }
.app-dl {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  padding: 14px 8px; background: #fff; border-radius: 12px;
  box-shadow: var(--shadow-card); text-align: center;
}
.app-dl img { width: 40px; height: 40px; border-radius: 10px; object-fit: cover; }
.app-dl b { font-size: 12px; color: var(--ink); font-weight: 600; }
.app-dl span { font-size: 11px; color: var(--brand); }
.foot-legal { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.foot a:hover { color: var(--brand); }
.page-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; gap: 12px; flex-wrap: wrap; }
.crumb { font-size: 13px; color: var(--mute); }
.crumb b { color: var(--ink); font-weight: 600; }
.chips { display: flex; gap: 8px; flex-wrap: wrap; }
.chip {
  height: 32px; padding: 0 12px; border-radius: 16px; background: #fff;
  font-size: 13px; line-height: 32px; color: var(--ink-2); border: 1px solid var(--line);
}
.chip.on { background: var(--brand); color: #fff; border-color: transparent; }
.site-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.site-card {
  background: #fff; border-radius: 12px; padding: 12px; box-shadow: var(--shadow-card);
  display: flex; align-items: center; gap: 12px; cursor: pointer; min-height: 96px;
  transition: box-shadow 120ms ease;
}
.site-card:hover { box-shadow: 0 2px 8px rgba(15, 23, 42, .08), 0 12px 28px rgba(15, 23, 42, .08); }
.site-card .ico { margin: 0; }
.site-card h3 { margin: 0 0 4px; font-size: 15px; font-weight: 600; }
.site-card .tag { display: inline-block; height: 20px; line-height: 20px; padding: 0 8px; border-radius: 10px; background: var(--brand-soft); color: var(--brand); font-size: 11px; }
.site-card p { margin: 6px 0 0; font-size: 12px; color: var(--mute); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.count { font-size: 13px; color: var(--mute); }
.empty { text-align: center; padding: 48px 16px; color: var(--mute); }
.empty button { margin-top: 12px; height: 40px; padding: 0 20px; border: 0; border-radius: 20px; background: var(--brand); color: #fff; font-weight: 600; }
.mask {
  position: fixed; inset: 0; background: var(--mask); z-index: 20;
  display: flex; align-items: center; justify-content: center; padding: 24px;
}
.dialog {
  width: 480px; max-width: 100%; background: #fff; border-radius: 16px; padding: 20px;
}
.dialog h2 { margin: 0 0 12px; font-size: 18px; }
.dialog input {
  width: 100%; height: 40px; border: 1px solid var(--line); border-radius: 12px;
  padding: 0 12px; font-size: 14px;
}
.hot-cities { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.toast {
  position: fixed; left: 50%; bottom: 80px; transform: translateX(-50%);
  background: rgba(17, 24, 39, .8); color: #fff; font-size: 13px;
  padding: 8px 14px; border-radius: 8px; z-index: 30; pointer-events: none;
}
.combo { display: none; }
.m-wx { display: none; }
.combo { cursor: pointer; }
.sk {
  height: 14px; border-radius: 6px; margin: 8px 0;
  background: linear-gradient(90deg, #E6EBF2 25%, #F3F6FA 37%, #E6EBF2 63%);
  background-size: 400% 100%;
  animation: sk 1.2s ease infinite;
}
@keyframes sk {
  0% { background-position: 100% 0; }
  100% { background-position: 0 0; }
}
.page-pending { padding: 28px 0 48px; }
.page-pending .sk { max-width: 680px; height: 16px; }
.page-pending .sk-lg { height: 28px; width: 38%; }
.page-pending .sk-mid { width: 56%; }
.paper-row.is-sk { pointer-events: none; }
.list-page .hot-row, .list-page .news-row { min-height: 48px; }
.news-row { padding: 8px 0; }
.news-row.news-text { min-height: 72px; align-items: flex-start; }
.news-row.news-lr { align-items: flex-start; }
.news-row.news-lr img { width: 120px; height: 80px; margin-left: 12px; }
.news-row.news-hero { flex-direction: column; align-items: stretch; gap: 10px; padding: 16px 0; }
.news-row .hero {
  width: 100%; height: 200px; border-radius: 12px;
  background: #dbe7f5 center/cover no-repeat;
}
.news-row img { width: 96px; height: 64px; border-radius: 8px; object-fit: cover; flex: none; background: #dbe7f5; }
.news-row .meta { flex: 1; min-width: 0; }
.news-row h3 { margin: 0 0 6px; font-size: 15px; font-weight: 600; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.stale {
  font-size: 12px; color: var(--hot-2); background: #FFF7E6;
  padding: 6px 10px; border-radius: 8px; margin-bottom: 8px;
}
.gl-layout { display: flex; gap: 20px; }
.gl-side { width: 220px; flex: none; background: #fff; border-radius: 12px; box-shadow: var(--shadow-card); padding: 8px 0 16px; }
.gl-side a { display: block; height: 36px; line-height: 36px; padding: 0 16px; font-size: 13px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.gl-side a.on { background: var(--brand-soft); color: var(--glance); box-shadow: inset 3px 0 0 var(--glance); }
.gl-cat {
  font-size: 12px; font-weight: 600; color: var(--mute);
  margin: 12px 0 6px; padding: 0 2px;
}
#glMods .eyebrow + .gl-cat { margin-top: 4px; }
.gl-side .gl-cat { margin: 12px 0 4px; padding: 0 16px; }
.gl-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.gl-tile {
  display: flex; align-items: center; gap: 6px; min-width: 0;
  height: 36px; padding: 0 8px; border-radius: 8px;
  background: var(--page); font-size: 12px; color: var(--ink-2);
}
.gl-tile:hover { background: #EFE8FF; color: var(--glance); }
.gl-tile i { font-style: normal; flex: none; font-size: 14px; }
.gl-tile span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
/* ---- 今日瞥目录页 ---- */
.glh-hero {
  margin: 12px 0 0; border-radius: 18px; overflow: hidden;
  background: linear-gradient(120deg, #6D5DF6 0%, #8B5CF6 45%, #C084FC 100%);
  color: #fff; box-shadow: 0 12px 32px rgba(109, 93, 246, .28);
}
.glh-hero-in { padding: 34px 36px 30px; }
.glh-eyebrow { font-size: 11px; letter-spacing: 4px; opacity: .75; font-weight: 600; }
.glh-hero h2 { font-size: 34px; margin: 6px 0 8px; letter-spacing: 2px; }
.glh-hero p { margin: 0; font-size: 13px; opacity: .85; }
.glh-chips {
  display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0 4px;
  position: sticky; top: 0; z-index: 20;
  background: rgba(246, 247, 251, .92); backdrop-filter: blur(8px);
  padding: 10px 0;
}
.glh-chip {
  height: 32px; line-height: 30px; padding: 0 14px; border-radius: 16px;
  background: #fff; border: 1px solid var(--line); font-size: 13px; color: var(--ink-2);
}
.glh-chip:hover { border-color: var(--glance); color: var(--glance); }
.glh-sec { scroll-margin-top: 120px; }
.glh-cat {
  display: flex; align-items: baseline; gap: 10px;
  font-size: 17px; font-weight: 700; margin: 26px 0 12px;
}
.glh-cat em { font-style: normal; font-size: 12px; font-weight: 400; color: var(--placeholder); }
.glh-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
}
.glh-card {
  display: block; background: #fff; border-radius: 14px; overflow: hidden;
  box-shadow: var(--shadow-card); transition: transform .18s ease, box-shadow .18s ease;
}
.glh-card:hover { transform: translateY(-3px); box-shadow: 0 10px 24px rgba(31, 36, 56, .12); }
.glh-cover { display: block; aspect-ratio: 3 / 2; overflow: hidden; background: #F0EDFB; }
.glh-cover img { width: 100%; height: 100%; object-fit: cover; display: block; }
.glh-meta { display: block; padding: 10px 12px 12px; text-align: center; }
.glh-meta b { display: block; font-size: 13px; color: var(--ink); }
.glh-meta small { display: block; font-size: 11px; color: var(--placeholder); margin-top: 2px; }
.glh-card.is-sk { pointer-events: none; }
.glh-body { padding-bottom: 24px; }
/* ---- 今日瞥阅读页（场景化主题） ---- */
.glr { --glr-a: #6D5DF6; --glr-a2: #8B5CF6; --glr-sheet: #fff; padding-bottom: 24px; }
.glr[data-glcat="hot"] { --glr-a: #FF5A3D; --glr-a2: #FF8A3D; --glr-sheet: #FFF8F4; }
.glr[data-glcat="mood"] { --glr-a: #7B61FF; --glr-a2: #A78BFA; --glr-sheet: #F7F4FF; }
.glr[data-glcat="poetry"] { --glr-a: #3F6C51; --glr-a2: #6B9E7E; --glr-sheet: #F8F5EC; }
.glr[data-glcat="life"] { --glr-a: #1FA96B; --glr-a2: #5ED49A; --glr-sheet: #F2FBF6; }
.glr[data-glcat="english"] { --glr-a: #3B5BF6; --glr-a2: #6EA8FF; --glr-sheet: #F3F6FF; }
.glr[data-glcat="quiz"] { --glr-a: #E8930C; --glr-a2: #FFC53D; --glr-sheet: #FFFAEE; }
.glr[data-glcat="fun"] { --glr-a: #F044A6; --glr-a2: #FF8AC2; --glr-sheet: #FFF3FA; }
.glr[data-glcat="quote"] { --glr-a: #A87B0F; --glr-a2: #D4A017; --glr-sheet: #FBF6EA; }
.glr[data-glcat="culture"] { --glr-a: #C93A3A; --glr-a2: #E06666; --glr-sheet: #FBF3EF; }
.glr-hero {
  margin-top: 12px; border-radius: 18px; overflow: hidden; color: #fff;
  background: linear-gradient(120deg, var(--glr-a), var(--glr-a2));
  box-shadow: 0 12px 30px rgba(31, 36, 56, .18);
}
.glr-top { display: flex; align-items: center; justify-content: space-between; padding: 14px 18px 0; }
.glr-back {
  color: rgba(255, 255, 255, .92); font-size: 13px; padding: 5px 12px;
  border: 1px solid rgba(255, 255, 255, .4); border-radius: 999px;
}
.glr-back:hover { background: rgba(255, 255, 255, .16); }
.glr-catname { font-size: 12px; color: rgba(255, 255, 255, .85); letter-spacing: 1px; }
.glr-hero-in { display: flex; align-items: center; gap: 18px; padding: 16px 22px 24px; }
.glr-cover {
  width: 108px; height: 72px; object-fit: cover; border-radius: 12px; flex: none;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .25); border: 2px solid rgba(255, 255, 255, .5);
}
.glr-titles h2 { margin: 0 0 6px; font-size: 26px; letter-spacing: 1px; }
.glr-titles p { margin: 0; font-size: 12px; opacity: .85; }
.glr-sheet {
  margin-top: 14px; border-radius: 18px; background: var(--glr-sheet);
  border: 1px solid var(--line); padding: 34px 30px 26px; min-height: 220px;
  display: flex; flex-direction: column; justify-content: center;
}
.glr-body .quote {
  font-size: 24px; line-height: 1.75; color: var(--ink); text-align: center;
  font-family: "Iowan Old Style", "Songti SC", serif;
}
.glr-body .qa-q {
  font-size: 21px; line-height: 1.7; color: var(--ink); text-align: center; font-weight: 600;
}
.glr-body .qa-a {
  margin-top: 16px; padding: 14px 18px; border-radius: 12px;
  background: #fff; border: 1px dashed var(--glr-a);
  font-size: 16px; line-height: 1.7; color: var(--ink-2); text-align: center;
}
.glr-author { margin-top: 18px; text-align: center; font-size: 13px; color: var(--placeholder); }
.glr-acts { display: flex; justify-content: center; gap: 12px; margin-top: 26px; }
.glr-btn-pri, .glr-btn {
  height: 40px; padding: 0 26px; border-radius: 999px; font-size: 14px; font-weight: 600;
}
.glr-btn-pri { border: 0; background: var(--glr-a); color: #fff; box-shadow: 0 6px 16px rgba(31, 36, 56, .18); }
.glr-btn-pri:disabled { opacity: .45; }
.glr-btn { border: 1px solid var(--line); background: #fff; color: var(--ink-2); }
.glr-btn:hover { border-color: var(--glr-a); color: var(--glr-a); }
.glr-sibs-t { margin: 22px 0 10px; font-size: 13px; color: var(--placeholder); }
.glr-sibs-row { display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; }
.glr-sib {
  display: block; border-radius: 12px; overflow: hidden; background: #fff;
  border: 1px solid var(--line); transition: transform .15s ease;
}
.glr-sib:hover { transform: translateY(-2px); border-color: var(--glr-a); }
.glr-sib img { display: block; width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.glr-sib span {
  display: block; padding: 6px 4px; font-size: 12px; text-align: center;
  color: var(--ink-2); overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
@media (max-width: 860px) { .glr-sibs-row { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) {
  .glr-hero-in { gap: 12px; padding: 12px 16px 18px; }
  .glr-cover { width: 84px; height: 56px; }
  .glr-titles h2 { font-size: 20px; }
  .glr-sheet { padding: 24px 18px 20px; }
  .glr-body .quote { font-size: 19px; }
  .glr-body .qa-q { font-size: 17px; }
}
@media (max-width: 860px) {
  .glh-grid { grid-template-columns: repeat(3, 1fr); }
  .glh-hero h2 { font-size: 26px; }
  .glh-hero-in { padding: 24px; }
}
@media (max-width: 560px) {
  .glh-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .glh-chips { top: 56px; }
}
.gl-main { flex: 1; background: #fff; border-radius: 12px; box-shadow: var(--shadow-card); padding: 32px; }
.gl-main .quote { font-size: 22px; }
.gl-main .author { margin-top: 12px; font-size: 13px; color: var(--mute); }
.btn-purple {
  height: 44px; padding: 0 20px; border: 0; border-radius: 22px;
  background: var(--glance); color: #fff; font-weight: 600; margin-right: 8px;
}
.wx-hero .wx-big { font-size: 64px; }
.hours { display: flex; gap: 8px; overflow-x: auto; padding: 8px 0; scrollbar-width: none; }
.hours::-webkit-scrollbar { display: none; }
.hours > div { width: 56px; flex: none; text-align: center; font-size: 12px; color: var(--mute); }

@media (max-width: 1199px) {
  .right { width: 100%; flex-direction: row; flex-wrap: wrap; }
  .right .card { flex: 1; min-width: 240px; }
  #glMods { flex: 1 1 100%; }
  .grid { grid-template-columns: repeat(5, 1fr); }
  .links a { width: 25%; }
  .wgrid { grid-template-columns: repeat(5, 1fr); }
  .wgrid-card { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .news { grid-template-columns: repeat(2, 1fr); }
  .site-grid { grid-template-columns: repeat(3, 1fr); }
  .search-wrap { max-width: 100%; }
  .today { grid-template-columns: 1fr; }
  .ai8 { grid-template-columns: repeat(4, 1fr); }
  .do { grid-template-columns: repeat(4, 1fr); }
  .tool-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px) {
  .atmo { height: 360px; }
  .util {
    display: flex !important;
    justify-content: flex-start;
    height: 28px;
    padding: 0 16px;
  }
  .m-wx { display: none !important; }
  .dir-layout { flex-direction: column; }
  .prod-hero-row { flex-direction: column; align-items: stretch; }
  .dir-side {
    width: 100%; position: sticky; top: 0; z-index: 6;
    max-height: none; overflow-x: auto; overflow-y: hidden;
    display: flex; flex-wrap: nowrap; padding: 8px;
    -webkit-overflow-scrolling: touch; scrollbar-width: none;
  }
  .dir-side::-webkit-scrollbar { display: none; }
  .dir-side a {
    display: inline-flex; align-items: center; width: auto; flex: none;
    height: 36px; line-height: 36px; padding: 0 14px; border-radius: 10px;
  }
  .head {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 6px 16px 0;
  }
  .head-bar {
    display: flex;
    height: 52px;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex: none;
  }
  .head-bar .logo {
    display: flex !important;
    min-width: 0;
    flex: none;
  }
  .head-bar .head-extra { margin-left: auto; }
  body.is-home .head-bar .logo { display: none !important; }
  body.is-home .head-bar { justify-content: flex-end; height: 44px; }
  body.has-side .head-bar .logo { display: flex !important; }
  /* 纸页仍可能用 tabs 放返回；独立一行 */
  body.is-paper .head-bar {
    display: flex !important;
    height: 48px;
    gap: 4px;
  }
  body.is-paper .head-bar .logo { display: none !important; }
  body.is-paper .head-bar .head-extra { margin-left: 0; }
  body.is-paper .tabs-desk {
    display: flex !important;
    flex: 1;
    min-width: 0;
    height: 48px;
    margin: 0;
    width: auto;
    padding: 0;
    border-top: 0;
    gap: 4px;
    overflow: hidden;
    flex-wrap: nowrap !important;
  }
  .side-chips {
    width: calc(100% + 32px);
    margin: 0 -16px;
    padding: 8px 16px 10px;
    border-top: 1px solid #F3F5F9;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .side-chips::-webkit-scrollbar { display: none; }
  .side-chips a { height: 32px; line-height: 32px; padding: 0 12px; font-size: 13px; }
  .search-row { flex-wrap: wrap; justify-content: stretch; }
  .ask-btn { height: 36px; padding: 0 14px; font-size: 13px; }
  .do { grid-template-columns: repeat(4, 1fr); gap: 8px; }
  .do-tile { height: 56px; border-radius: 12px; font-size: 11px; }
  .today { grid-template-columns: 1fr; }
  .dock { display: none !important; }
  body { padding-bottom: var(--safe-bot); }
  .logo { min-width: 0; flex: 1; }
  .logo h1 { font-size: 17px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .logo p { display: none; }
  .search-wrap { max-width: 100%; margin: 0; flex: none; }
  .search { height: 48px; border-radius: 24px; }
  .eng-btn, .search #go { width: 36px; height: 36px; }
  .eng-pop { width: 100%; }
  .pop { display: none !important; }
  .svcs { display: none; }
  .wrap { width: auto; margin: 12px 16px 0; }
  .main { flex-direction: column; }
  .right { flex-direction: column; }
  .grid { grid-template-columns: repeat(4, 1fr); gap: 16px 12px; }
  .cell span { font-size: 11px; }
  .links a { width: 33.33%; }
  .wgrid { grid-template-columns: repeat(4, 1fr); }
  .wgrid-card { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .wgrid-card.clip-1 { max-height: 300px; }
  .tool-item {
    flex-direction: row; align-items: center;
    min-height: 0; padding: 10px; gap: 8px;
  }
  .tool-item .ico { width: 56px; height: 56px; border-radius: 12px; padding: 0; }
  .tool-txt { min-width: 0; flex: 1; }
  .tool-txt b {
    font-size: 13px; white-space: nowrap;
    overflow: hidden; text-overflow: ellipsis;
  }
  .tool-txt small {
    -webkit-line-clamp: 2; font-size: 11px; line-height: 1.4;
  }
  .news { grid-template-columns: 1fr; }
  .site-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .site-card { flex-direction: row; align-items: center; min-height: 0; padding: 10px; gap: 8px; }
  .site-card h3 {
    font-size: 13px; white-space: nowrap;
    overflow: hidden; text-overflow: ellipsis; max-width: 100%;
  }
  .site-card p {
    white-space: normal;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  }
  .m-wx {
    display: flex; height: 28px; padding: 0 10px; border-radius: 14px;
    background: var(--page); font-size: 12px; align-items: center;
    flex: none; color: var(--ink-2); max-width: 34%;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  }
  .acct-lab { display: none; }
  .acct-login, .acct-chip { height: 28px; padding: 0 10px; }
  .combo { display: flex; align-items: stretch; height: 88px; padding-top: 14px; padding-bottom: 14px; }
  .combo > div { flex: 1; min-width: 0; }
  .combo .split { width: 1px; background: var(--line); margin: 0 12px; flex: none; }
  .combo .wx-big { font-size: 28px; }
  .combo .quote, .combo .qa-q {
    font-size: 14px;
    display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
  }
  .combo .qa-a { display: none; }
  .desk-side { display: none; }
  .gl-layout { flex-direction: column; }
  .gl-side { width: 100%; display: block; overflow: visible; padding: 12px 16px 16px; }
  .gl-side .gl-cat { padding: 8px 0 4px; }
  .gl-side a {
    display: inline-flex; align-items: center; flex: none;
    height: 32px; line-height: 32px; padding: 0 10px; margin: 0 6px 6px 0;
    border-radius: 16px; background: var(--page); box-shadow: none;
  }
  .gl-side a.on { background: #EFE8FF; }
  .dialog { border-radius: 16px 16px 0 0; align-self: flex-end; width: 100%; padding-top: 10px; }
  .mask { align-items: flex-end; padding: 0; }
  .grabber { display: block; }
  .ph { height: 64px; }
  .news .nc:nth-child(n+4) { display: none; }
  .apps { grid-template-columns: repeat(2, 1fr); }
  .foot { width: auto; margin: 16px 16px 0; }
  .news-row.news-lr img { width: 96px; height: 64px; }
  .cell:active, .chip:active, .ghost:active, .site-card:active { transform: scale(0.98); }
}
@media (max-width: 767px) and (orientation: landscape) {
  .grid { grid-template-columns: repeat(6, 1fr); }
  .wrap { margin: 12px 16px 0; }
}
body.is-ask {
  overflow: hidden;
  display: flex; flex-direction: column; height: 100dvh;
}
body.is-ask .search-row { display: none; }
body.is-lean .search-row { display: none !important; }
body.is-lean .logo p { display: none; }
body.is-lean .util { display: none !important; }
body.is-lean .head { padding-bottom: 0; }
body.is-lean[data-page="glance"] .prod-hero:not(.prod-hero-row) { display: none; }
body.is-ask .head { padding-bottom: 0; flex: none; }
body.is-ask .head-bar { height: 56px; }
body.is-ask .wrap { width: auto; max-width: none; margin: 0; flex: 1; min-height: 0; }
body.is-ask .foot { display: none; }
.ask { display: flex; height: 100%; background: var(--page); }
.ask-side {
  width: 260px; flex: none; background: #fff; border-right: 1px solid var(--line);
  padding: 16px 12px; display: flex; flex-direction: column; min-height: 0;
}
.ask-new {
  height: 40px; border-radius: 12px; border: 0;
  background: var(--brand); color: #fff; font-weight: 600; width: 100%; font-size: 14px;
}
.ask-new:hover { background: var(--brand-deep); }
.ask-hist-lab { margin: 20px 8px 6px; font-size: 12px; font-weight: 600; color: var(--mute); }
.ask-hist { flex: 1; overflow: auto; min-height: 0; }
.ask-hist-empty { padding: 8px; font-size: 13px; color: var(--placeholder); }
.ask-hist-item {
  display: flex; align-items: center; gap: 8px; width: 100%;
  height: 40px; padding: 0 10px; border: 0; border-radius: 10px;
  background: transparent; color: var(--ink-2); font-size: 13px; text-align: left;
}
.ask-hist-item span { flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.ask-hist-item i { display: none; color: var(--mute); font-style: normal; }
.ask-hist-item:hover, .ask-hist-item.on { background: #F3F5F7; }
.ask-hist-item:hover i { display: inline; }
.ask-main { flex: 1; min-width: 0; display: flex; flex-direction: column; background: var(--page); }
.ask-toolbar { display: none; padding: 8px 16px 0; gap: 8px; }
.ask-thread { flex: 1; overflow: auto; padding: 32px 20px 12px; }
.ask-thread, .ask-dock { width: min(800px, 100%); margin: 0 auto; }
.ask-empty { text-align: center; padding: 88px 16px 40px; }
.ask-logo {
  width: 48px; height: 48px; border-radius: 14px; background: var(--brand);
  color: #fff; font-weight: 800; display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 20px rgba(11,110,255,.22);
}
.ask-empty h2 { margin: 18px 0 8px; font-size: 32px; font-weight: 500; letter-spacing: -.02em; }
.ask-empty p { margin: 0; color: var(--mute); font-size: 14px; }
.ask-chips {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
  max-width: 560px; margin: 28px auto 0; text-align: left;
}
.ask-chip {
  min-height: 52px; padding: 12px 14px; border-radius: 14px; border: 1px solid var(--line);
  background: #fff; font-size: 13px; color: var(--ink-2); line-height: 1.45;
  box-shadow: 0 1px 2px rgba(15,23,42,.04);
}
.ask-chip:hover { border-color: #C9D7EE; background: #F8FBFF; color: var(--ink); }
.ask-row { display: flex; margin: 20px 0; }
.ask-row.user { justify-content: flex-end; }
.ask-bubble {
  max-width: 70%; background: #EDF3FA; color: var(--ink);
  padding: 12px 16px; border-radius: 18px 18px 6px 18px; line-height: 1.65; white-space: pre-wrap;
}
.ask-row.ai { align-items: flex-start; }
.ask-ai-body { flex: 1; min-width: 0; }
.ask-md { font-size: 16px; line-height: 1.75; color: var(--ink); }
.ask-md p { margin: 0 0 12px; }
.ask-md p:last-child { margin-bottom: 0; }
.ask-md h3, .ask-md h4 { margin: 16px 0 8px; font-size: 17px; }
.ask-md ul { margin: 8px 0; padding-left: 22px; }
.ask-md pre {
  margin: 12px 0; padding: 14px 16px; border-radius: 12px;
  background: #111827; color: #E5E7EB; overflow: auto; font-size: 13px; line-height: 1.55;
}
.ask-md code { font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; font-size: 13px; }
.ask-md p code { background: #EEF2F6; padding: 1px 6px; border-radius: 5px; }
.ask-think {
  margin-bottom: 12px; font-size: 13px; color: var(--mute);
  background: #EEF1F5; border-radius: 12px; padding: 8px 12px;
}
.ask-think summary { cursor: pointer; font-weight: 600; color: #5B6B7C; }
.ask-think > div { margin-top: 8px; line-height: 1.65; color: #64748B; }
.ask-acts { display: flex; gap: 4px; margin-top: 12px; }
.ask-act {
  height: 28px; padding: 0 10px; border: 0; border-radius: 8px;
  background: transparent; font-size: 12px; color: var(--mute);
}
.ask-act:hover { background: #EEF2F6; color: var(--ink-2); }
.ask-caret {
  display: inline-block; width: 2px; height: 1em; background: var(--brand);
  margin-left: 2px; vertical-align: text-bottom; animation: askBlink 1s step-end infinite;
}
@keyframes askBlink { 50% { opacity: 0; } }
.ask-dock { padding: 0 16px calc(16px + var(--safe-bot)); }
.ask-composer {
  background: #fff; border: 1px solid #E5EAF1; border-radius: 24px;
  padding: 14px 14px 10px; box-shadow: 0 8px 28px rgba(15,23,42,.08);
}
.ask-composer textarea {
  width: 100%; border: 0; resize: none; outline: none; background: transparent;
  font: inherit; font-size: 15px; line-height: 1.55; min-height: 28px; max-height: 180px;
  color: var(--ink);
}
.ask-bar { display: flex; align-items: center; justify-content: space-between; margin-top: 8px; }
.ask-think-btn {
  height: 32px; padding: 0 12px; border-radius: 16px; border: 1px solid var(--line);
  background: #fff; font-size: 13px; color: var(--ink-2);
}
.ask-think-btn.on { border-color: var(--brand); color: var(--brand); background: var(--brand-soft); }
.ask-send {
  width: 36px; height: 36px; border: 0; border-radius: 50%;
  background: var(--brand); color: #fff; font-size: 18px; line-height: 36px;
}
.ask-send:hover { background: var(--brand-deep); }
.ask-note { text-align: center; font-size: 11px; color: var(--placeholder); margin-top: 10px; }

@media (max-width: 767px) {
  .prod-hero h2 { font-size: 26px; }
  body.is-ask .head { display: flex; }
  .ask-side {
    display: none; position: fixed; inset: 0 auto 0 0; z-index: 20;
    box-shadow: var(--shadow-card);
  }
  .ask-side.open { display: flex; }
  .ask-toolbar { display: flex; }
  .ask-empty { padding-top: 48px; }
  .ask-empty h2 { font-size: 24px; }
  .ask-chips { grid-template-columns: 1fr; }
  .ask-bubble { max-width: 86%; }
}

.svc-tip { margin: 8px 0 0; font-size: 12px; color: var(--mute); }
.tr-box {
  width: 100%; min-height: 96px; margin-top: 12px; padding: 12px 14px;
  border: 1px solid var(--line); border-radius: 12px; resize: vertical;
  font: inherit; font-size: 15px; color: var(--ink); background: var(--page);
}
.wall-grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px;
}
.wall-grid-4 { grid-template-columns: repeat(4, 1fr); }
.wall-cell {
  border: 0; padding: 0; background: none; text-align: left; cursor: pointer;
}
.wall-ph {
  display: block; width: 100%; aspect-ratio: 0.45; border-radius: 10px;
  background: #E6EBF2 center/cover no-repeat;
}
.wall-cell span:last-child {
  display: block; margin-top: 6px; font-size: 12px; font-weight: 500;
  color: var(--ink-2); white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.wall-more { display: flex; justify-content: center; margin-top: 16px; }
.img-hero {
  margin: 12px 0 4px; padding: 30px 24px 22px; border-radius: 18px;
  background: linear-gradient(135deg, #EEF4FF 0%, #F8F5FF 55%, #FFF5F0 100%);
  border: 1px solid var(--line); text-align: center;
}
.img-title { font-size: 26px; margin: 0 0 16px; letter-spacing: 6px; }
.img-search {
  display: flex; align-items: center; max-width: 560px; margin: 0 auto;
  background: #fff; border: 2px solid var(--brand); border-radius: 999px;
  overflow: hidden; box-shadow: 0 8px 24px rgba(59, 91, 246, .12);
}
.img-search input {
  flex: 1; border: 0; outline: 0; height: 46px; padding: 0 20px;
  font-size: 15px; background: transparent; min-width: 0;
}
.img-search button {
  flex: none; height: 46px; padding: 0 28px; border: 0;
  background: var(--brand); color: #fff; font-size: 15px; font-weight: 600;
}
.img-hot {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: 8px; margin: 14px auto 0; max-width: 640px;
  color: var(--placeholder); font-size: 12px;
}
.img-hot a {
  padding: 5px 14px; border-radius: 999px; background: #fff;
  border: 1px solid var(--line); font-size: 13px; color: var(--ink-2);
}
.img-hot a:hover { border-color: var(--brand); color: var(--brand); }
.img-hero .svc-eng { justify-content: center; margin-top: 12px; }
.img-sites .site-grid { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1020px) { .img-sites .site-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .img-sites .site-grid { grid-template-columns: repeat(2, 1fr); } }
/* ---- 地图页 ---- */
.map-hero {
  margin: 12px 0 4px; padding: 30px 24px 22px; border-radius: 18px;
  background: linear-gradient(135deg, #E8F9F0 0%, #EAF3FF 60%, #F0FAFF 100%);
  border: 1px solid var(--line); text-align: center;
}
.map-title { font-size: 26px; margin: 0 0 16px; letter-spacing: 6px; }
.map-search {
  display: flex; align-items: center; max-width: 560px; margin: 0 auto;
  background: #fff; border: 2px solid #1FA96B; border-radius: 999px;
  overflow: hidden; box-shadow: 0 8px 24px rgba(31, 169, 107, .14);
}
.map-search input {
  flex: 1; border: 0; outline: 0; height: 46px; padding: 0 20px;
  font-size: 15px; background: transparent; min-width: 0;
}
.map-search button {
  flex: none; height: 46px; padding: 0 28px; border: 0;
  background: #1FA96B; color: #fff; font-size: 15px; font-weight: 600;
}
.map-hero .svc-eng { justify-content: center; margin-top: 12px; }
.map-quick { display: grid; grid-template-columns: repeat(8, 1fr); gap: 10px; }
.map-quick button {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  padding: 14px 4px; border: 1px solid var(--line); border-radius: 14px;
  background: #fff; font-size: 13px; color: var(--ink-2);
}
.map-quick button i { font-style: normal; font-size: 22px; }
.map-quick button:hover { border-color: #1FA96B; color: #1FA96B; }
.map-sites .site-grid { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1020px) {
  .map-quick { grid-template-columns: repeat(4, 1fr); }
  .map-sites .site-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .map-sites .site-grid { grid-template-columns: repeat(2, 1fr); }
}
.img-group { color: var(--placeholder); font-size: 13px; font-weight: 400; margin: 16px 0 8px; }
.img-note { font-size: 13px; color: var(--mute); margin: 2px 0 12px; }
.img-note b { color: var(--brand); }
.img-note a { color: var(--brand); margin-right: 12px; }
.img-none { padding: 40px 0; text-align: center; color: var(--placeholder); font-size: 14px; }
.wall-mask {
  position: fixed; inset: 0; z-index: 30; background: var(--mask);
}
.wall-pop {
  position: fixed; z-index: 31; inset: 8vh 8vw auto; max-height: 84vh;
  display: flex; gap: 20px; background: #fff; border-radius: 16px;
  box-shadow: var(--shadow-card); padding: 16px; overflow: auto;
}
.wall-pop.hidden, .wall-mask.hidden { display: none !important; }
.wall-pop img {
  max-height: 76vh; max-width: min(420px, 48vw); border-radius: 12px;
  object-fit: contain; background: #111;
}
.wall-meta { flex: 1; min-width: 220px; }
.wall-meta h3 { margin: 0 0 8px; font-size: 18px; }
.wall-meta p { margin: 0 0 16px; color: var(--mute); font-size: 13px; }
.wall-acts { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 12px; }
.wall-meta small { color: var(--mute); font-size: 12px; line-height: 1.5; }
.img-news {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
}
.img-news-cell span {
  display: block; height: 96px; border-radius: 8px; background: #EEF2F6 center/cover;
}
.img-news-cell b {
  display: block; margin-top: 6px; font-size: 13px; font-weight: 500;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}

@media (max-width: 1199px) {
  .wall-grid { grid-template-columns: repeat(4, 1fr); }
  .img-news { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 767px) {
  .wall-grid, .wall-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .img-news { grid-template-columns: repeat(2, 1fr); }
  .wall-pop {
    inset: auto 0 0; max-height: 88vh; flex-direction: column;
    border-radius: 16px 16px 0 0;
  }
  .wall-pop img { max-width: 100%; max-height: 52vh; }
}

.acct-slot { display: flex; align-items: center; }
.acct-login, .acct-chip {
  height: 32px; padding: 0 12px; border-radius: 16px;
  border: 1px solid var(--line); background: #fff; color: var(--ink);
  font-size: 13px; font-weight: 600; display: inline-flex; align-items: center; gap: 6px;
  text-decoration: none; cursor: pointer;
}
body.is-home .acct-login, body.is-home .acct-chip {
  border-color: rgba(255,255,255,.5); background: rgba(255,255,255,.18); color: #fff;
}
body.is-home.atmo-light .acct-login, body.is-home.atmo-light .acct-chip {
  border-color: var(--line); background: #fff; color: var(--ink);
}
.acct-av {
  width: 22px; height: 22px; border-radius: 50%; background: var(--brand);
  color: #fff; font-size: 11px; font-weight: 700;
  display: inline-flex; align-items: center; justify-content: center;
}
.acct-av.lg { width: 48px; height: 48px; font-size: 18px; }
.acct-lab { font-size: 13px; }
body.is-home .acct-av { box-shadow: 0 0 0 1px rgba(255,255,255,.35); }
.login-dlg { width: 400px; }
.login-dlg .dlg-sub { margin: -4px 0 16px; color: var(--mute); font-size: 13px; }
.login-dlg .dlg-tip { margin: 12px 0 0; color: var(--mute); font-size: 12px; }
.acct-lab2 { display: block; margin: 12px 0 6px; font-size: 13px; color: var(--ink-2); font-weight: 600; }
.code-row { display: flex; gap: 8px; }
.code-row input { flex: 1; }
.code-row button {
  height: 40px; padding: 0 12px; border-radius: 12px; flex: none;
  border: 1px solid var(--line); background: #fff; color: var(--brand); font-weight: 600;
}
.code-row button[disabled] { color: var(--mute); }
.login-go {
  width: 100%; height: 44px; margin-top: 16px; border: 0; border-radius: 12px;
  background: var(--brand); color: #fff; font-size: 15px; font-weight: 700; cursor: pointer;
}
.login-go[disabled] { opacity: .5; }
.acct-card { max-width: 560px; padding: 24px; }
.acct-card h2 { margin: 0 0 8px; font-size: 20px; }
.acct-card p { margin: 0 0 12px; color: var(--mute); font-size: 14px; line-height: 1.6; }
.acct-card textarea {
  width: 100%; border: 1px solid var(--line); border-radius: 12px;
  padding: 10px 12px; font-size: 14px; resize: vertical; min-height: 140px;
}
.acct-who { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.acct-who h2 { margin: 0; }
.acct-who p { margin: 4px 0 0; }
.acct-dev { margin: 0 0 16px; padding: 0; list-style: none; }
.acct-dev li { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--line); font-size: 14px; }
.acct-dev span { color: var(--mute); }
.acct-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.acct-links { margin-top: 16px; }

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
}

/* V3 像素还原 */
.atmo, .atmo-swap { display: none !important; }
.util {
  display: flex !important;
  justify-content: flex-start;
  gap: 12px;
}
body.is-home .util { display: none !important; }
body.has-side .head-bar .logo { display: none; }
body.is-home .head { border-bottom: 0; }
body.is-home .m-wx {
  display: inline-flex !important;
  height: 28px; padding: 0 12px; border-radius: 14px;
  background: var(--page); font-size: 12px; align-items: center;
  color: var(--ink-2); max-width: min(72vw, 420px); cursor: pointer;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
#utilWx { flex: none; overflow: visible; max-width: none; }

.dir-side { position: sticky; top: 8px; }
body { background: var(--page); }
.chrome, .head { background: #fff; }
body.is-home .chrome, body.is-home .head {
  background: transparent; color: inherit; border-bottom-color: transparent;
}
body.is-home.chrome-solid .chrome, body.is-home.chrome-solid .head {
  background: rgba(255, 255, 255, .92);
  border-bottom-color: #EEF0F3;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.chrome, .head { transition: background .2s ease; }
body.is-home .head-bar .logo { display: none; }
body.is-home .head-bar { gap: 16px; }
body.is-home .head { padding-bottom: 0; }
body.is-home .logo h1 { color: var(--ink); }
body.is-home .logo p { color: var(--mute); }
body.is-home .tabs a { color: var(--ink-2); }
body.is-home .tabs a.on { color: var(--brand); box-shadow: inset 0 -2px 0 var(--brand); }
.ask-btn { display: none !important; }
body.is-home .acct-login, body.is-home .acct-chip {
  border-color: #C9DBFF; background: #F3F7FF; color: var(--brand);
}
body.is-home .acct-av { box-shadow: none; }
body.is-home .wrap { margin-top: 0; width: min(1200px, calc(100% - 48px)); }
.ico-more { background: #F3F5F9; color: var(--mute); border: 1px dashed var(--line); font-size: 22px; font-weight: 400; }
.home-entries {
  display: grid; grid-template-columns: repeat(10, 1fr); gap: 6px;
  margin: 0 0 16px; padding: 16px 14px 12px;
}
.home-entry {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  padding: 10px 4px; border-radius: 12px; font-size: 12px; color: var(--ink-2);
}
.home-entry:hover { background: var(--brand-soft); color: var(--brand); }
.home-entry i {
  font-style: normal; font-size: 22px; width: 46px; height: 46px;
  display: flex; align-items: center; justify-content: center;
  background: var(--page); border-radius: 14px; box-shadow: var(--shadow-card);
}
@media (max-width: 860px) {
  .home-entries { grid-template-columns: repeat(5, 1fr); gap: 4px; padding: 12px 8px 8px; }
  .home-entry i { width: 42px; height: 42px; }
}
.home-block { margin: 0 0 16px; padding: 18px 20px 16px; }
.home-board { display: grid; grid-template-columns: 1fr 360px; gap: 16px; margin-bottom: 32px; align-items: start; }
.home-side { display: flex; flex-direction: column; gap: 16px; }
.home-hot-list .hot-row {
  display: flex; align-items: center; gap: 10px;
  height: auto; min-height: 40px; font-size: 15px; line-height: 1.4; padding: 2px 0;
}
.home-hot-list .hot-row u { font-size: 15px; }
.home-hot-list .n {
  width: 22px; height: 22px; border-radius: 50%; color: #fff; font-size: 12px; font-weight: 800;
  display: inline-flex; align-items: center; justify-content: center; background: #94A3B8; flex: none;
}
.home-hot-list .n1 { background: #FF4D4F; }
.home-hot-list .n2 { background: #FF7A45; }
.home-hot-list .n3 { background: #FAAD14; }
.home-news-row { display: flex; gap: 12px; align-items: center; min-height: 64px; padding: 10px 0; border-bottom: 1px solid var(--line); }
.home-news-row:last-child { border-bottom: 0; }
.home-news-row .ph { width: 96px; height: 64px; border-radius: 8px; background: #EEF1F6 center/cover; flex: none; }
.home-news-row b { display: block; font-size: 15px; line-height: 1.4; }
.home-news-row small { color: var(--mute); font-size: 12px; }
body.is-home .search-row,
body.is-search .search-row { padding: 0; justify-content: center; }
body.is-home .search-wrap,
body.is-search .search-wrap { max-width: 680px; margin: 0 auto; }
body.is-home .eng-btn,
body.is-search .eng-btn { display: flex; }
body.is-home .search::before,
body.is-search .search::before { display: none; }
body.is-search .head { padding-bottom: 0; }
.hero-search-only { padding: 20px 0 8px; }
body:not(.is-home):not(.is-search) .search-row { display: none !important; }
body:not(.is-home):not(.is-search) .head { padding-bottom: 0; }
.ask-pill {
  display: flex; align-items: center; gap: 8px;
  width: 420px; max-width: 72%; height: 44px;
  margin: 14px auto 0; padding: 0 14px 0 8px;
  border-radius: 22px; background: #E8F2FF;
  border: 1px solid #8BB8F0;
  box-shadow: 0 6px 16px rgba(11, 110, 255, .14);
  color: var(--ink); text-align: left;
}
.ask-pill:hover { background: #D6E8FF; border-color: #0B6EFF; }
.ask-pill-ico {
  width: 26px; height: 26px; border-radius: 50%;
  background: #0B6EFF; object-fit: cover; flex: none;
}
.ask-pill b { color: #0B6EFF; font-size: 14px; flex: none; }
.ask-pill span {
  flex: 1; min-width: 0; font-size: 13px; color: #334155;
  overflow: hidden; white-space: nowrap; text-overflow: ellipsis;
}
.ask-pill em {
  flex: none; color: #94A3B8; font-style: normal; font-size: 20px; font-weight: 300; line-height: 1;
}
.hero-home { text-align: center; padding: 36px 0 28px; }
.hero-title-img { height: 72px; width: auto; display: inline-block; }
.hero-logo {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  margin: 0 0 24px;
}
.hero-logo .mark { width: 56px; height: 56px; border-radius: 0; font-size: 0; background: transparent; }
.hero-logo h2 { margin: 0; font-size: 40px; letter-spacing: -0.6px; font-weight: 800; }
.hero-title, .hero-sub { display: none; }
.ai-cats {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 8px;
  max-width: 760px; margin: 18px auto 0;
}
.ai-cats a {
  height: 34px; padding: 0 12px; border-radius: 17px; background: #fff;
  font-size: 13px; line-height: 34px; color: var(--ink);
  box-shadow: 0 1px 2px rgba(15,23,42,.04);
}
.ai-cats a:hover { color: var(--brand); }
.ai-cats small { margin-left: 4px; color: var(--mute); font-size: 11px; }
.mode-pills { display: inline-flex; gap: 8px; margin-bottom: 16px; }
.mode-pills button {
  height: 34px; padding: 0 18px; border: 0; border-radius: 17px;
  background: #fff; color: var(--mute); font-size: 14px; font-weight: 600;
  box-shadow: 0 1px 2px rgba(15,23,42,.04);
}
.mode-pills button.on { background: var(--brand); color: #fff; }
.hot-words { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 16px; margin-top: 16px; align-items: center; }
.hot-words .hot-lab { display: none; }
.hot-words button {
  height: auto; padding: 0; border: 0; border-radius: 0;
  background: transparent; color: var(--ink-2); font-size: 13px;
}
.hot-words button:hover { color: var(--brand); background: transparent; }
.home-doors { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 8px 0 20px; }
.home-card {
  background: #fff; border-radius: 16px; padding: 18px 18px 16px;
  box-shadow: var(--shadow-card); min-width: 0;
}
.home-card-hd { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 14px; }
.home-card-hd b { display: block; font-size: 16px; }
.home-card-hd p { margin: 4px 0 0; font-size: 12px; color: var(--mute); line-height: 1.4; }
.home-card-hd a { margin-left: auto; color: var(--brand); font-size: 13px; flex: none; }
.hd-ico { width: 28px; height: 28px; border-radius: 8px; flex: none; background: var(--brand-soft) center/16px no-repeat; }
.hd-ai { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230B6EFF' stroke-width='2'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M12 7v10M8 10h8'/%3E%3C/svg%3E"); }
.hd-web { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230B6EFF' stroke-width='2'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M3 12h18M12 3a14 14 0 010 18M12 3a14 14 0 000 18'/%3E%3C/svg%3E"); }
.hd-dis { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%230B6EFF'%3E%3Cpath d='M13 2L4 14h7l-1 8 10-14h-7l0-6z'/%3E%3C/svg%3E"); }
.mini-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px 6px; }
.mini-cell { display: flex; flex-direction: column; align-items: center; gap: 6px; font-size: 12px; color: var(--ink-2); }
.mini-cell .ico { width: 56px; height: 56px; border-radius: 12px; }
.mini-cell span { max-width: 100%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.cat-ico {
  width: 40px; height: 40px; border-radius: 50%; display: inline-block;
  background: #E8F2FF center/20px no-repeat;
}
.cat-chat { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%230B6EFF'%3E%3Cpath d='M4 5h16v10H8l-4 4V5z'/%3E%3C/svg%3E"); }
.cat-image { background-color: #F0EDFF; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%237B61FF'%3E%3Ccircle cx='8' cy='8' r='3'/%3E%3Cpath d='M4 20l5-6 3 3 4-5 4 8H4z'/%3E%3C/svg%3E"); }
.cat-video { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%230B6EFF'%3E%3Cpath d='M8 6l12 6-12 6V6z'/%3E%3C/svg%3E"); }
.cat-write { background-color: #E5F7EE; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2316A34A'%3E%3Cpath d='M4 20l4-1 11-11-3-3L5 16l-1 4z'/%3E%3C/svg%3E"); }
.cat-code { background-color: #FFF4E0; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23F59E0B' stroke-width='2'%3E%3Cpath d='M8 8l-4 4 4 4M16 8l4 4-4 4'/%3E%3C/svg%3E"); }
.cat-work { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%230B6EFF'%3E%3Cpath d='M8 7V5h8v2h4v12H4V7h4zm2-2v2h4V5h-4z'/%3E%3C/svg%3E"); }
.cat-search { background-color: #E5F7EE; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2316A34A' stroke-width='2'%3E%3Ccircle cx='11' cy='11' r='6'/%3E%3Cpath d='M16 16l4 4'/%3E%3C/svg%3E"); }
.cat-agent { background-color: #F0EDFF; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%237B61FF'%3E%3Crect x='6' y='8' width='12' height='10' rx='3'/%3E%3Ccircle cx='10' cy='13' r='1.2' fill='white'/%3E%3Ccircle cx='14' cy='13' r='1.2' fill='white'/%3E%3C/svg%3E"); }
.cat-audio { background-color: #FDE8F3; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23EC4899'%3E%3Crect x='5' y='10' width='2' height='6' rx='1'/%3E%3Crect x='9' y='6' width='2' height='14' rx='1'/%3E%3Crect x='13' y='8' width='2' height='10' rx='1'/%3E%3Crect x='17' y='11' width='2' height='5' rx='1'/%3E%3C/svg%3E"); }
.cat-learn { background-color: #FFF4E0; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23F59E0B'%3E%3Cpath d='M3 10l9-5 9 5-9 5-9-5zm2 4v4l7 3 7-3v-4l-7 3-7-3z'/%3E%3C/svg%3E"); }
.mod-slot { min-height: 320px; }
.home-ai-slot { min-height: 280px; }
#disHot, #disNews, #newsList, #hotList, #imgWalls, #vidHot, #wallGrid { min-height: 360px; }
#disGlance { min-height: 160px; }
.home-news { display: flex; flex-direction: column; min-height: 640px; }
.home-news-row { display: flex; gap: 12px; align-items: center; min-height: 64px; padding: 10px 0; }
.home-news-row .ph { width: 96px; height: 64px; border-radius: 8px; background: #EEF1F6 center/cover; flex: none; }
.home-news-row b { display: block; font-size: 15px; line-height: 1.4; }
.home-news-row small { color: var(--mute); font-size: 12px; }
.home-news-row.is-sk { pointer-events: none; }
.home-news-row.is-sk b.sk { width: 88%; height: 14px; margin: 6px 0; }
.home-news-row.is-sk small.sk { width: 32%; height: 12px; margin: 0; }
.home-hot-list { min-height: 800px; }
.home-hot-list .hot-row.is-sk { pointer-events: none; }
.home-hot-list .hot-row.is-sk .sk { flex: 1; height: 14px; margin: 0; }
.today-row { display: grid; grid-template-columns: 280px 1fr; gap: 16px; margin-bottom: 32px; }
.wx-chip, .hot-chip {
  display: flex; align-items: center; gap: 12px; background: #fff;
  border-radius: 16px; padding: 16px 18px; box-shadow: var(--shadow-card); min-width: 0;
}
.wx-sun { width: 36px; height: 36px; flex: none; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='10' cy='10' r='4' fill='%23FBBF24'/%3E%3Cpath d='M6 16a6 6 0 0012 1 5 5 0 10-12-1z' fill='%23E2E8F0'/%3E%3C/svg%3E") center/36px no-repeat; }
.wx-chip b { display: block; font-size: 14px; }
.wx-chip em { font-style: normal; font-size: 28px; font-weight: 800; color: var(--weather); }
.wx-chip small { display: block; color: var(--mute); font-size: 12px; }
.hot-chip { flex-wrap: wrap; gap: 8px 14px; }
.hot-chip .lab { color: #FF7A45; font-weight: 800; margin-right: 4px; }
.hot-chip .hot-item { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; max-width: 160px; }
.hot-chip .hot-item span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.hot-chip .n {
  width: 18px; height: 18px; border-radius: 50%; color: #fff; font-size: 11px; font-weight: 800;
  display: inline-flex; align-items: center; justify-content: center; background: #94A3B8; flex: none;
}
.hot-chip .n1 { background: #FF4D4F; }
.hot-chip .n2 { background: #FF7A45; }
.hot-chip .n3 { background: #FAAD14; }

.ai-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; margin: 8px 0 32px; }
.ai-cat {
  background: #fff; border-radius: 16px; padding: 24px 18px 20px; text-align: center;
  box-shadow: var(--shadow-card); position: relative; min-height: 196px;
}
.ai-cat .cat-ico { width: 56px; height: 56px; background-size: 28px; margin-bottom: 12px; }
.ai-cat h3 { margin: 0 0 8px; font-size: 18px; }
.ai-cat p { margin: 0; color: var(--mute); font-size: 13px; line-height: 1.5; }
.ai-go { position: absolute; right: 16px; bottom: 14px; color: var(--brand); font-size: 20px; }

.sites-hero { text-align: center; padding: 8px 0 20px; }
.sites-hero h2 { margin: 0 0 8px; font-size: 28px; }
.sites-hero p { margin: 0; color: var(--mute); }
.site-hub { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 32px; }
.site-hub-card {
  background: #fff; border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-card);
  padding-bottom: 16px; text-align: center;
}
.site-hub-card img { width: 100%; height: 140px; object-fit: cover; background: #F8FAFC; display: block; }
.site-hub-card h3 { margin: 12px 0 6px; font-size: 18px; }
.site-hub-card p { margin: 0 16px; color: var(--mute); font-size: 13px; line-height: 1.5; }

.dis-chips {
  display: flex; flex-wrap: wrap; gap: 8px; margin: 4px 0 16px;
}
.dis-chip {
  height: 34px; padding: 0 14px; border-radius: 17px;
  background: #fff; border: 1px solid #EEF2F6; color: var(--ink-2);
  font-size: 13px; font-weight: 600; display: inline-flex; align-items: center;
}
.dis-chip:hover { border-color: #B9D2FF; color: var(--brand); }
.dis-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.dis-col, .dis-block { padding: 16px 18px; }
.dis-hot .hot-row { display: flex; align-items: center; gap: 8px; height: 36px; font-size: 14px; }
.dis-hot .n {
  width: 18px; height: 18px; border-radius: 50%; color: #fff; font-size: 11px; font-weight: 800;
  display: inline-flex; align-items: center; justify-content: center; background: #94A3B8; flex: none;
}
.dis-hot .n1 { background: #FF4D4F; }
.dis-hot .n2 { background: #FF7A45; }
.dis-hot .n3 { background: #FAAD14; }
.dis-hot .hot-row.is-sk { pointer-events: none; }
.dis-hot .hot-row.is-sk .sk { flex: 1; height: 12px; margin: 0; }
.dis-news .home-news-row { min-height: 56px; padding: 8px 0; }
.dis-news .home-news-row .ph { width: 84px; height: 56px; }
.dis-tools { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.dis-tool {
  display: block; min-height: 108px; padding: 14px;
  background: #F7F9FC; border-radius: 14px;
}
.dis-tool:hover { background: #EEF4FF; }
.dis-tool-ico {
  width: 36px; height: 36px; border-radius: 10px; margin-bottom: 10px;
  color: #fff; font-size: 13px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
.dis-tool b { display: block; font-size: 14px; font-weight: 700; }
.dis-tool span { color: var(--mute); font-size: 12px; line-height: 1.4; }
.dis-hero { display: none; }
.dis-doors, .dis-visual, .dis-ov, .dis-foot { display: none; }
.prod-hero { padding: 8px 0 20px; }
.prod-hero h2 { margin: 0 0 8px; font-size: 32px; letter-spacing: -0.4px; }
.prod-hero p { margin: 0; color: var(--mute); font-size: 14px; }
.prod-hero-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 12px; }
.dis-doors { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 32px; }
.dis-door { background: #fff; border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-card); }
.dis-visual { height: 260px; background: #E8EEF6 center/cover no-repeat; position: relative; }
.dis-ov { position: absolute; inset: 16px; color: #fff; font-size: 12px; text-shadow: 0 1px 4px rgba(0,0,0,.35); }
.dis-ov i { display: inline-block; width: 16px; margin-right: 4px; font-style: normal; font-weight: 800; }
.tone-glance .dis-ov { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.tone-glance .dis-ov b { font-size: 28px; margin: 8px 0; }
.ov-card { background: rgba(255,255,255,.88); color: var(--ink); border-radius: 12px; padding: 12px; text-shadow: none; }
.ov-card p { margin: 8px 0 0; font-size: 12px; color: var(--ink-2); }
.ov-tools { background: rgba(255,255,255,.9); color: var(--ink); border-radius: 12px; padding: 12px; text-shadow: none; }
.ov-tools div { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; margin-top: 8px; }
.ov-tools span { background: #F3F5F9; border-radius: 8px; padding: 6px 4px; text-align: center; font-size: 11px; }
.dis-foot { display: flex; align-items: center; gap: 10px; padding: 14px 16px; }
.dis-foot i { width: 32px; height: 32px; border-radius: 50%; flex: none; }
.tone-hot .dis-foot i { background: #FF7A45; }
.tone-news .dis-foot i { background: #0B6EFF; }
.tone-glance .dis-foot i { background: #16A34A; }
.tone-tools .dis-foot i { background: #7B61FF; }
.dis-foot b { display: block; font-size: 16px; }
.dis-foot span { color: var(--mute); font-size: 12px; }

.sr-layout { display: grid; grid-template-columns: 1fr 280px; gap: 20px; align-items: start; margin-bottom: 32px; }
.sr-head h2 { margin: 0 0 4px; font-size: 24px; }
.sr-head p { margin: 0 0 16px; color: var(--mute); font-size: 13px; }
.sr-ai {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  background: linear-gradient(90deg, #0B6EFF, #4C8DFF); color: #fff;
  border-radius: 16px; padding: 22px 24px; margin-bottom: 16px; min-height: 140px;
}
.sr-ai-lab { display: inline-block; font-size: 13px; opacity: .9; margin-bottom: 8px; font-weight: 700; }
.sr-ai p { margin: 0 0 14px; line-height: 1.6; max-width: 520px; }
.sr-ai-btn { display: inline-block; background: #fff; color: var(--brand); height: 36px; line-height: 36px; padding: 0 16px; border-radius: 18px; font-weight: 700; }
.sr-ai img { width: 120px; height: 120px; object-fit: contain; flex: none; }
.sr-card {
  display: flex; gap: 14px; background: #fff; border-radius: 12px; padding: 16px;
  box-shadow: var(--shadow-card); margin-bottom: 12px; cursor: pointer;
}
.sr-card h3 { margin: 0 0 6px; font-size: 18px; }
.sr-card h3 i { font-style: normal; font-size: 11px; color: var(--brand); background: var(--brand-soft); border-radius: 4px; padding: 1px 6px; margin-left: 8px; font-weight: 600; }
.sr-card p { margin: 0 0 8px; color: var(--ink-2); font-size: 14px; }
.sr-tags em { font-style: normal; background: #E8F2FF; color: var(--brand); border-radius: 10px; padding: 2px 8px; font-size: 12px; margin-right: 6px; }
.sr-card small { color: #16A34A; }
.sr-ext { background: #fff; border-radius: 12px; padding: 16px; box-shadow: var(--shadow-card); }
.sr-ext h3 { margin: 0 0 4px; }
.sr-ext p { margin: 0 0 12px; color: var(--mute); font-size: 12px; }
.sr-ext button {
  display: flex; align-items: center; gap: 10px; width: 100%; height: 44px;
  border: 0; background: none; border-bottom: 1px solid var(--line); font-size: 14px;
}
.sr-ext button:last-child { border-bottom: 0; }
.sr-ext i { margin-left: auto; color: var(--mute); font-style: normal; }

.tool-card { display: block; background: #fff; border-radius: 16px; padding: 20px; box-shadow: var(--shadow-card); }
.tool-card b { display: block; font-size: 16px; margin-bottom: 6px; }
.tool-card span { color: var(--mute); font-size: 13px; }

.ask-robot { width: 72px; height: 72px; border-radius: 50%; object-fit: cover; }
.ask-prompts { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; max-width: 720px; margin: 28px auto 0; text-align: left; }
.ask-prompt {
  display: flex; gap: 12px; align-items: flex-start; background: #fff; border: 0;
  border-radius: 12px; padding: 16px; box-shadow: var(--shadow-card); text-align: left;
}
.ask-prompt b { display: block; font-size: 15px; margin-bottom: 4px; }
.ask-prompt span { color: var(--mute); font-size: 12px; line-height: 1.4; }
.ask-p-ico { width: 36px; height: 36px; border-radius: 10px; background: var(--brand-soft) center/20px no-repeat; flex: none; }
.p-write { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%230B6EFF'%3E%3Cpath d='M6 4h9l3 3v13H6V4z'/%3E%3C/svg%3E"); }
.p-learn { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%230B6EFF'%3E%3Cpath d='M3 10l9-5 9 5-9 5-9-5z'/%3E%3C/svg%3E"); }
.p-idea { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%230B6EFF'%3E%3Cpath d='M12 3a7 7 0 00-3 13v3h6v-3a7 7 0 00-3-13z'/%3E%3C/svg%3E"); }
.p-lang { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230B6EFF' stroke-width='2'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M3 12h18M12 3a14 14 0 010 18'/%3E%3C/svg%3E"); }
.ask-clear { margin: 12px 8px 0; border: 0; background: none; color: var(--mute); font-size: 13px; text-align: left; }
.ask-new { background: var(--brand); }

@media (max-width: 1199px) {
  .home-doors, .ai-grid { grid-template-columns: repeat(2, 1fr); }
  .site-hub { grid-template-columns: repeat(2, 1fr); }
  .today-row, .sr-layout, .home-board, .dis-cols { grid-template-columns: 1fr; }
  .dis-tools { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 767px) {
  .hero-home { padding: 8px 0 16px; }
  .hero-logo { margin-bottom: 16px; gap: 10px; }
  .hero-title-img { height: 48px; }
  .hero-logo .mark { width: 44px; height: 44px; border-radius: 12px; font-size: 15px; }
  .hero-logo h2 { font-size: 28px; }
  body.is-home .head-bar { height: auto; justify-content: flex-end; }
  .search-modes { height: 32px; }
  .search-modes button { height: 28px; padding: 0 8px; font-size: 12px; line-height: 28px; }
  .ask-pill { display: flex; width: 420px; max-width: 78%; height: 44px; }
  body.is-home .wrap { width: auto; margin: 0 16px; }
  .ai-cats {
    flex-wrap: nowrap; justify-content: flex-start;
    overflow-x: auto; -webkit-overflow-scrolling: touch;
    max-width: none; scrollbar-width: none; padding-bottom: 2px;
  }
  .ai-cats::-webkit-scrollbar { display: none; }
  .ai-cats a { flex: none; }
  .hot-words {
    flex-wrap: wrap; justify-content: center;
    overflow: visible;
  }
  .hot-words button { flex: none; }
  .home-news { min-height: 480px; }
  .home-hot-list { min-height: 600px; }
  .mod-slot, .home-ai-slot { min-height: 220px; }
  #disHot, #disNews, #newsList, #hotList { min-height: 280px; }
  .home-hot-tabs {
    flex-wrap: nowrap; overflow-x: auto; scrollbar-width: none;
  }
  .home-hot-tabs::-webkit-scrollbar { display: none; }
  .home-hot-tabs button { flex: none; padding: 0 12px; }
  .dir-side {
    flex-wrap: nowrap !important; overflow-x: auto !important;
    -webkit-overflow-scrolling: touch; scrollbar-width: none;
  }
  .dir-side::-webkit-scrollbar { display: none; }
  .dir-side a { font-size: 13px; }
  .gl-side {
    display: flex; flex-wrap: nowrap; overflow-x: auto;
    -webkit-overflow-scrolling: touch; scrollbar-width: none; white-space: nowrap;
  }
  .gl-side::-webkit-scrollbar { display: none; }
  .gl-side a { margin-bottom: 0; }
  .prod-hero { padding: 8px 0 16px; }
  .prod-hero h2 { font-size: 26px; }
  .home-doors, .ai-grid, .site-hub, .mini-grid, .ask-prompts { grid-template-columns: 1fr 1fr; }
  .dis-chips {
    flex-wrap: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch;
    scrollbar-width: none; margin-bottom: 12px;
  }
  .dis-chips::-webkit-scrollbar { display: none; }
  .dis-chip { flex: none; }
  .dis-tools { grid-template-columns: 1fr 1fr; }
  .dis-col, .dis-block { padding: 16px 18px; }
  .dis-chip { height: 34px; font-size: 13px; }
  .home-block { padding: 18px 16px 16px; }
}

.home-hot-tabs {
  display: flex; gap: 4px; margin: 0 0 12px; padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.home-hot-tabs button {
  flex: 1; min-width: 0; height: 30px; border: 0; border-radius: 15px;
  background: #F3F5F9; color: var(--ink-2); font-size: 12px; font-weight: 600;
  cursor: pointer;
}
.home-hot-tabs button.on { background: #FFF1F0; color: #E11D48; }
body[data-page="hot"] .wrap {
  width: min(920px, calc(100% - 40px));
  margin: 0 auto;
}
.hot-page { margin-bottom: 32px; }
.hot-hero {
  color: #fff;
  padding: 36px 0 28px;
  background: linear-gradient(135deg, #FF4D4F, #FF8A3D);
}
.hot-hero.is-live { background: linear-gradient(135deg, #FF4D4F, #FF8A3D); }
.hot-hero.is-weibo { background: linear-gradient(135deg, #FF7A45, #FFB347); }
.hot-hero.is-toutiao { background: linear-gradient(135deg, #E11D48, #FB7185); }
.hot-hero.is-brief { background: linear-gradient(135deg, #2563EB, #60A5FA); }
.hot-hero.is-qq { background: linear-gradient(135deg, #0D9488, #2DD4BF); }
.hot-hero-copy, .hot-hero-tabs {
  width: min(1200px, calc(100% - 48px));
  margin-left: auto; margin-right: auto;
}
.hot-hero-copy h2 { margin: 0 0 8px; font-size: 32px; letter-spacing: -0.4px; }
.hot-hero-copy p { margin: 0 0 20px; font-size: 14px; opacity: .9; }
.hot-hero-tabs { display: flex; flex-wrap: wrap; gap: 8px; }
.hot-hero-tabs button {
  height: 32px; padding: 0 14px; border: 0; border-radius: 16px;
  background: rgba(255,255,255,.22); color: #fff; font-size: 13px; cursor: pointer;
}
.hot-hero-tabs button.on { background: #fff; color: #E11D48; font-weight: 700; }
.hot-full {
  width: min(1200px, calc(100% - 48px));
  margin: -16px auto 0;
  position: relative; z-index: 1;
}
.hot-full .hot-row { min-height: 48px; }
.hot-full .hot-row.is-sk { pointer-events: none; }
.hot-full .hot-row.is-sk .sk { flex: 1; height: 14px; margin: 0; }
@media (max-width: 767px) {
  body[data-page="hot"] .wrap { width: auto; margin: 0 16px; }
  .hot-hero { padding: 24px 0 20px; }
  .hot-hero-copy h2 { font-size: 24px; }
  .hot-hero-copy, .hot-hero-tabs, .hot-full { width: auto; margin-left: 16px; margin-right: 16px; }
  .hot-full { margin-top: -12px; }
  .home-hot-tabs { flex-wrap: nowrap; }
}

/* V4 纸页：发现/热榜/资讯/瞥/天气/工作台/账号。首页与 AI 目录不走这套。 */
body.is-paper {
  --paper: #F3F5F9;
  --sheet: #FFFFFF;
  --ink: #0F172A;
  --mist: #5B6B7C;
  --paper-line: #E6EBF2;
  --pine: #0B6EFF;
  --persimmon: #0B6EFF;
  background: #F3F5F9;
  color: var(--ink);
  font-family: -apple-system, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
}
body.is-paper .atmo { display: none; }
body.is-paper .chrome, body.is-paper .head, body.is-paper .util {
  background: #fff;
  border-bottom-color: #E6EBF2;
}
/* 模块页统一单顶栏：← + 标题 + 分享 */
body.is-paper .logo { display: none !important; }
body.is-paper.is-paper-sub .head-extra { display: flex !important; align-items: center; gap: 10px; margin-left: 0; }
body.is-paper .head-bar {
  display: flex; align-items: center;
  height: 48px; gap: 4px;
}
body.is-paper .tabs {
  display: flex; align-items: center; gap: 4px;
  font-size: 15px; flex: 1; min-width: 0;
}
body.is-paper .tabs a { color: var(--mist); padding: 0; box-shadow: none; }
body.is-paper .tabs a.on { color: #0B6EFF; box-shadow: none; background: transparent; }
body.is-paper .tabs .paper-back {
  flex: none; width: 40px; height: 48px;
  display: grid; place-items: center;
  color: var(--ink); font-size: 22px; line-height: 1;
  text-decoration: none;
}
body.is-paper .tabs .paper-title {
  flex: 1; margin: 0; min-width: 0;
  display: flex; align-items: center;
  font-size: 17px; font-weight: 650; color: var(--ink);
  height: 48px; white-space: nowrap;
  overflow: hidden; text-overflow: ellipsis;
  font-family: "PingFang SC", -apple-system, sans-serif;
  cursor: default;
}
body.is-paper .tabs .paper-title-img {
  height: 28px; width: auto; max-width: min(220px, 62vw);
  display: block; object-fit: contain; object-position: left center;
  pointer-events: none;
}
body.is-paper #paperCity { cursor: pointer; }
body.is-ask.is-paper .head-bar { height: 48px; }
body.is-ask.is-paper .tabs {
  display: flex !important; align-items: center; flex: 1; min-width: 0;
}
body.is-paper .tabs .paper-r { display: none; }
body.is-paper .paper-lead-solo {
  margin: 8px 0 14px; color: var(--mist); font-size: 13px; line-height: 1.5;
}
body.is-paper .news-mag-head { display: none !important; }
body.is-paper .m-wx, body.is-paper .acct-login, body.is-paper .acct-chip {
  border: 0; background: transparent; color: var(--mist);
  box-shadow: none; height: auto; padding: 0;
  font-size: 13px; font-family: "PingFang SC", sans-serif;
}
body.is-paper .acct-av { display: none; }
body.is-paper .acct-lab { display: inline; }
body.is-paper .wrap {
  width: min(720px, calc(100% - 40px));
  margin: 0 auto; padding-bottom: 40px;
}
body.is-paper .foot { background: transparent; border-top: 1px solid var(--paper-line); color: var(--mist); }
body.is-paper .foot-cats { display: none; }
body.is-paper .card, body.is-paper .list-page { background: transparent; box-shadow: none; border: 0; padding: 0; }
body.is-paper .dock {
  display: none; height: 64px; border-top: 1px solid var(--paper-line);
  background: var(--paper); font-family: "PingFang SC", sans-serif; font-size: 12px;
}
body.is-paper .dock a { color: var(--mist); line-height: 64px; text-align: center; flex: 1; }
body.is-paper .dock a.on { color: var(--ink); font-weight: 700; background: transparent; }
.paper-stage { padding: 16px 0 8px; }
.paper-brand {
  font-size: 32px; line-height: 1.05; margin: 0 0 8px;
  letter-spacing: -.02em;
}
.paper-lead { margin: 0 0 8px; color: var(--mist); font-size: 14px; font-family: "PingFang SC", sans-serif; }
.paper-big { font-size: 64px; line-height: 1; margin: 0; letter-spacing: -.03em; }
.paper-av { font-size: 72px; }
.paper-phone { margin: 8px 0 0; font-family: "PingFang SC", sans-serif; }
.paper-sec { margin: 28px 0 0; }
.paper-sec h3 {
  margin: 0 0 8px; font-size: 13px; letter-spacing: .18em;
  font-weight: 600; color: var(--mist);
}
.paper-sec h3 a { color: inherit; }
.paper-row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 14px 0; border-bottom: 1px solid var(--paper-line);
  font-family: "PingFang SC", sans-serif; color: var(--ink); cursor: pointer;
}
.paper-row b { display: block; font-size: 16px; font-weight: 600; }
.paper-row small { color: var(--mist); font-size: 12px; }
.paper-row em { font-style: normal; color: var(--pine); font-size: 13px; }
.paper-row span { font-size: 16px; }
.paper-rail {
  display: flex; gap: 16px; overflow-x: auto; -webkit-overflow-scrolling: touch;
  font-size: 14px; color: var(--mist); padding: 8px 0 8px;
  font-family: "PingFang SC", sans-serif;
}
.paper-rail::-webkit-scrollbar { display: none; }
.paper-rail .on, .paper-rail button.on, .paper-rail span.on {
  color: var(--ink); box-shadow: inset 0 -2px 0 var(--ink); background: transparent;
}
.paper-rail button, .paper-rail span, .paper-rail a,
body.is-paper .paper-rail .chip {
  border: 0; background: transparent; color: inherit; padding: 0 0 6px;
  font: inherit; white-space: nowrap; cursor: pointer; height: auto; line-height: inherit; border-radius: 0;
}
body.is-paper .paper-rail .chip.on { background: transparent; color: var(--ink); }
.paper-sheet { background: var(--sheet); padding: 20px; margin: 12px 0 0; }
.paper-sheet .paper-note, .paper-note { font-size: 12px; color: var(--mist); font-family: "PingFang SC", sans-serif; margin: 0 0 8px; }
.paper-quote { margin: 0; font-size: 20px; line-height: 1.5; }
.paper-quote-lg { font-size: 28px; line-height: 1.45; margin: 24px 0; }
.paper-words {
  display: flex; gap: 14px; flex-wrap: wrap; margin: 0;
  font-size: 13px; color: var(--mist); font-family: "PingFang SC", sans-serif;
}
.paper-words a { color: inherit; }
.paper-halls { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.paper-poster {
  position: relative; isolation: isolate; overflow: hidden;
  min-height: 148px; padding: 14px; color: #F6F1E8;
  display: flex; flex-direction: column; justify-content: flex-end;
  font-size: 22px; letter-spacing: .04em; text-decoration: none;
  background-color: #1E2A3A;
  background-size: cover; background-position: center;
}
.paper-poster.a { background-color: #2C4A3E; }
.paper-poster.b { background-color: #5C2E22; }
.paper-poster.c { background-color: #1E2A3A; }
.paper-poster.d { background-color: #3A3428; }
.paper-poster.has-bg::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(12,14,18,.18) 0%, rgba(12,14,18,.28) 42%, rgba(8,10,14,.82) 100%);
}
.paper-poster-txt {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; justify-content: flex-end; gap: 4px;
  text-shadow: 0 1px 10px rgba(0,0,0,.45);
}
.paper-poster small { font-size: 11px; opacity: .78; font-family: "PingFang SC", sans-serif; letter-spacing: 0; }
.paper-poster.sm { min-height: 110px; }
.paper-bar {
  display: flex; align-items: stretch; border-bottom: 2px solid var(--ink); margin-top: 12px;
}
.paper-bar input, .paper-bar textarea {
  flex: 1; border: 0; background: transparent; height: 48px;
  font-size: 16px; color: var(--ink); outline: 0;
  font-family: "PingFang SC", sans-serif;
}
.paper-bar textarea { height: auto; min-height: 160px; resize: vertical; padding: 12px 0; }
.paper-ask, .paper-submit {
  border: 0; background: transparent; color: var(--persimmon);
  font-size: 16px; padding: 0 4px 0 12px;
  font-family: "Iowan Old Style", "Songti SC", serif;
}
.paper-submit { color: var(--pine); padding: 0; }
.paper-hours {
  display: flex; justify-content: space-between; gap: 8px;
  font-family: "PingFang SC", sans-serif; font-size: 13px; color: var(--mist);
}
.paper-hours b { display: block; color: var(--ink); margin-top: 4px; font-size: 15px; }
.paper-wx-meta { margin: 8px 0 0; font-family: "PingFang SC", sans-serif; font-size: 16px; }
.paper-acts { margin-top: 32px; font-family: "PingFang SC", sans-serif; color: var(--pine); display: flex; gap: 24px; }
.paper-acts button { border: 0; background: transparent; color: var(--pine); font-size: 15px; padding: 0; }
body.is-paper .gl-read { min-height: 280px; padding: 20px; background: var(--sheet); }
body.is-paper .gl-read .quote, body.is-paper .gl-read .qa-q { font-size: 28px; line-height: 1.45; }
body.is-paper .author { font-family: "PingFang SC", sans-serif; color: var(--mist); font-size: 12px; margin-top: 8px; }
body.is-paper .dialog {
  background: var(--sheet); color: var(--ink); border-radius: 0;
  box-shadow: none; width: min(400px, calc(100% - 40px));
}
body.is-paper .dialog h2 {
  font-size: 28px; font-family: "Iowan Old Style", "Songti SC", serif; font-weight: 600;
}
body.is-paper .dialog input {
  border: 0; border-bottom: 2px solid var(--ink); border-radius: 0; background: transparent;
}
body.is-paper .hot-cities .chip, body.is-paper .chips .chip {
  border: 0; background: transparent; color: var(--mist); border-radius: 0; height: auto; padding: 0 12px 0 0;
}
body.is-paper .hot-cities .chip.on, body.is-paper .chips .chip.on { color: var(--ink); box-shadow: none; background: transparent; }
body.is-paper .login-go {
  background: transparent; color: var(--pine); height: auto; border-radius: 0; padding: 0; font-size: 16px;
}
body.is-paper .code-row button { background: transparent; color: var(--persimmon); border: 0; }
body.is-paper .page-head, body.is-paper .crumb { display: none; }
body.is-paper .svc-tip { color: var(--mist); font-size: 12px; font-family: "PingFang SC", sans-serif; }
body.is-paper .site-card {
  background: transparent; box-shadow: none; border-bottom: 1px solid var(--paper-line);
  border-radius: 0; padding: 14px 0;
}
body.is-paper .wall-cell span { color: var(--mist); }
body.is-paper[data-page="games"]:not(.is-games-play),
body.is-paper[data-page="school"]:not(.is-games-play) {
  background: var(--paper); color: var(--ink);
}
body.is-paper[data-page="games"]:not(.is-games-play) .chrome,
body.is-paper[data-page="school"]:not(.is-games-play) .chrome,
body.is-paper[data-page="games"]:not(.is-games-play) .head,
body.is-paper[data-page="school"]:not(.is-games-play) .head {
  background: var(--paper); border-bottom-color: transparent;
}
body.is-paper[data-page="games"]:not(.is-games-play) .logo h1,
body.is-paper[data-page="school"]:not(.is-games-play) .logo h1 { color: var(--ink); }
body.is-paper[data-page="games"]:not(.is-games-play) .foot,
body.is-paper[data-page="school"]:not(.is-games-play) .foot { color: var(--mist); }
body.is-paper.is-games-play {
  background: #070B14; color: #E8F6FF; padding-bottom: 0;
}
@media (max-width: 767px) {
  body.is-paper .dock { display: flex; }
  body.is-paper { padding-bottom: calc(64px + var(--safe-bot)); }
  body.is-paper .wrap {
    width: auto;
    margin: 0 16px;
    max-width: 100%;
    box-sizing: border-box;
  }
  body.is-paper[data-page="games"] .paper-lead-solo.moyu-lead, body.is-paper[data-page="school"] .paper-lead-solo.moyu-lead {
    font-size: 13px; line-height: 1.45; margin: 2px 0 10px;
  }
}

/* V5 left rail */
.side-nav {
  display: none;
}
body.has-side .side-nav {
  display: block;
  position: fixed;
  left: 0; top: 0; bottom: 0;
  width: var(--side);
  background: var(--side-bg);
  border-right: 0;
  z-index: 20;
  padding: 0 0 28px;
  overflow: auto;
}
.side-nav .side-logo {
  display: flex; align-items: center; gap: 10px;
  height: 74px; padding: 0 16px; margin: 0 0 8px;
  background: var(--side-bg);
  font-size: 16px; font-weight: 800;
}
.side-nav a {
  display: flex; align-items: center; gap: 10px;
  height: auto; padding: 12px 10px; margin: 1.5px 8px; border-radius: 5px;
  font-size: 14px; font-weight: 500; color: var(--side-ink);
}
.side-nav a .si {
  width: 22px; height: 22px; border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; flex: none;
}
.side-nav a.on, .side-nav a:hover {
  background: rgba(89, 97, 249, 0.08); color: #5961F9; font-weight: 650;
}
.side-chips {
  display: none;
  gap: 8px; overflow: auto; padding: 0 0 10px;
}
.side-chips a {
  flex: none; height: 36px; line-height: 36px;
  padding: 0 14px; border-radius: 999px;
  background: #EEF1F5; font-size: 14px; color: #2B323B;
}
.side-chips a.on { background: #E8F2FF; color: var(--brand); font-weight: 650; }

/* AI 导航页：不复用首页顶栏 */
body.has-side .util { display: none !important; }
body.has-side .head-bar { display: none !important; }
body.has-side .search-row { display: none !important; }
/* 首页 / 搜索页：搜框挂在 hero，必须可见 */
body.has-side.is-home .search-row,
body.has-side.is-search .search-row {
  display: flex !important;
}
body.has-side .head {
  padding: 8px 16px 0;
  border-bottom: 1px solid #EEF0F3;
  background: #fff;
}
body.has-side .side-chips {
  margin: 0;
  padding: 4px 0 10px;
  border-top: 0;
  width: auto;
}

@media (min-width: 1100px) {
  body.has-side .wrap,
  body.has-side .foot { margin-left: var(--side); width: auto; }
  body.has-side .chrome,
  body.has-side #chromeSpacer { display: none !important; height: 0 !important; }
  body.has-side .wrap { width: min(var(--content), calc(100% - var(--side) - 48px)); }
  body.has-side .dir-side { display: none; }
  body.has-side.is-home .chrome,
  body.has-side.is-home .head,
  body.has-side.is-home .util {
    background: transparent;
    color: inherit;
    border-bottom-color: transparent;
  }
  body.has-side.is-home .util { color: var(--mute); }
  body.has-side.is-home .util b { color: var(--brand); }
  body.has-side.is-home .atmo { display: none; }
  body.has-side.chrome-solid .chrome,
  body.has-side.chrome-solid .head,
  body.has-side.chrome-solid .util {
    background: rgba(255, 255, 255, 0.92);
    border-bottom-color: #EEF0F3;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
  }
}
/* AI 导航 · 手机主流顶栏 + 全宽 */
.ai-mnav { display: none; }
@media (max-width: 1099px) {
  body.has-side .side-nav { display: none; }
  body.has-side .side-chips { display: none !important; }
  body.has-side .chrome,
  body.has-side #chromeSpacer { display: none !important; height: 0 !important; }
  body.has-side .wrap {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0 12px 24px;
    box-sizing: border-box;
  }
  body.has-side .foot { margin: 0; padding: 16px 12px 28px; }
  body.has-side .ai-hero { display: none !important; }
  body.has-side .ai-mnav {
    display: flex;
    align-items: center;
    height: 48px;
    margin: 0 -12px;
    padding: 0 4px 0 0;
    background: #fff;
    border-bottom: 1px solid #EEF0F3;
    position: sticky;
    top: 0;
    z-index: 50;
  }
  body.has-side .ai-mnav .ai-back {
    width: 44px; height: 48px; display: grid; place-items: center;
    font-size: 28px; line-height: 1; color: #1A1F2E; text-decoration: none;
    flex: none;
  }
  body.has-side .ai-mnav h1 {
    flex: 1; margin: 0; text-align: center;
    font-size: 17px; font-weight: 650; color: #1A1F2E;
  }
  body.has-side .ai-mnav .ai-home {
    flex: none; padding: 0 12px; font-size: 14px; color: #0B6EFF; text-decoration: none;
  }
  body.has-side .dir-side.ai-tabs,
  body.has-side .dir-side {
    display: flex;
    flex-wrap: nowrap;
    gap: 0;
    width: auto;
    max-height: none;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    position: sticky;
    top: 48px;
    z-index: 40;
    margin: 0 -12px 12px;
    padding: 0 8px;
    background: #fff;
    border: 0;
    border-bottom: 1px solid #EEF0F3;
    border-radius: 0;
    box-shadow: none;
  }
  body.has-side .dir-side::-webkit-scrollbar { display: none; }
  body.has-side .dir-side a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: none;
    height: 44px;
    line-height: 44px;
    padding: 0 14px;
    margin: 0;
    border-radius: 0;
    background: transparent !important;
    font-size: 15px;
    color: #5B6575;
    box-shadow: none;
    position: relative;
  }
  body.has-side .dir-side a.on {
    color: #0B6EFF;
    font-weight: 650;
    background: transparent !important;
  }
  body.has-side .dir-side a.on::after {
    content: "";
    position: absolute;
    left: 12px; right: 12px; bottom: 0;
    height: 2px;
    background: #0B6EFF;
    border-radius: 1px;
  }
  body.has-side .dir-side a:hover { background: transparent !important; }
  body.has-side .wgrid-card { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  body.has-side .tool-item { padding: 10px; gap: 8px; }
  body.has-side .ghead { margin-top: 8px; }
}

@media (min-width: 1100px) {
  body.has-side .ai-mnav { display: none !important; }
}
.tabs.tabs-desk { flex-wrap: wrap; gap: 4px 14px; }
/* 主导航迁到首页十宫格；非纸页隐藏顶栏 tabs */
body:not(.is-paper) .tabs { display: none !important; }

@media (max-width: 767px) {
  .tabs.tabs-desk { flex-wrap: nowrap; gap: 18px; }
}
body.is-article .search-row { display: none !important; }
body.is-article .head { padding-bottom: 0; }
body.is-article .head-bar { height: 56px; }
.site-page { padding: 8px 0 48px; }
.site-hero-row {
  display: flex; align-items: flex-start; gap: 30px;
  padding: 32px 0 28px;
}
.site-preview { flex: none; }
.site-preview-box {
  width: 360px; height: 220px; background: linear-gradient(145deg, #1B2A4A, #3D5A99);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.site-preview-box.is-cover { background: #1B2A4A; }
.site-preview-box .site-cover {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.site-preview-box.is-logo .ico,
.site-preview-box.is-logo .site-mark {
  width: 88px; height: 88px; border-radius: 20px; margin: 0;
  font-size: 28px; border: none; box-shadow: 0 10px 28px rgba(0,0,0,.22);
}
.site-preview-box .ico,
.site-preview-box .site-mark {
  width: 120px; height: 120px; border-radius: 22px; margin: 0;
  font-size: 36px; border: none;
}
.site-badge {
  position: absolute; right: 10px; top: 10px;
  background: rgba(255,255,255,.92); color: #444;
  font-size: 11px; font-style: normal; font-weight: 650;
  padding: 2px 7px; border-radius: 4px;
}
.site-hero-mid { flex: 1; min-width: 0; padding-top: 4px; }
.site-cat {
  display: inline-block; background: #5961F9; color: #fff !important;
  font-size: 12px; font-weight: 650; padding: 3px 10px; border-radius: 4px;
}
.site-hero-mid h1 {
  margin: 14px 0 10px; font-size: 24px; line-height: 1.3; font-weight: 550;
}
.site-hero-mid p { margin: 0 0 10px; font-size: 15px; line-height: 1.7; color: #282A2D; }
.site-tagline { font-size: 13px; color: #555; }
.site-tagline a { color: #282A2D; }
.site-tagline a:hover { color: #5961F9; }
.site-go-row { display: flex; align-items: center; gap: 10px; margin-top: 18px; }
.site-go {
  display: inline-flex; align-items: center; justify-content: center;
  height: 40px; padding: 0 18px; border-radius: 10px;
  background: var(--brand); color: #fff !important; font-weight: 650;
  margin-top: 14px;
}
.site-go:hover { background: var(--brand-deep); }
.site-page .site-go {
  height: 37px; padding: 0 16px; border-radius: 6px; margin-top: 0;
  background: rgba(138, 138, 138, 0.15); color: #444 !important; font-weight: 500;
}
.site-page .site-go:hover { background: rgba(138, 138, 138, 0.24); }
.site-fb {
  display: inline-flex; align-items: center; justify-content: center;
  height: 37px; padding: 0 12px; border-radius: 6px;
  background: rgba(136, 136, 136, 0.1); color: #666; font-size: 13px;
}
.site-hero-aside {
  flex: none; width: 300px; min-height: 255px;
  background: #fff; border-radius: 8px; padding: 16px 16px 10px;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}
.site-hero-aside > b { display: block; font-size: 14px; margin-bottom: 12px; }
.site-hero-aside a {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 0; border-top: 1px solid #F0F2F4;
}
.site-hero-aside .ico { width: 36px; height: 36px; margin: 0; border-radius: 50%; }
.site-hero-aside span { min-width: 0; }
.site-hero-aside b { font-size: 13px; display: block; }
.site-hero-aside small {
  display: block; color: var(--mute); font-size: 12px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.site-article { max-width: 1110px; padding-bottom: 16px; }
.site-article h2 {
  margin: 36px 0 16px; padding: 4px 0 4px 20px;
  font-size: 20px; font-weight: 500; color: #282A2D;
  border-left: 3px solid #5961F9;
}
.site-article h2.site-similar-h {
  border-left: 0; padding-left: 0; color: #555; font-size: 18px;
}
.site-article p { margin: 0 0 8px; font-size: 16px; line-height: 32px; color: #1D232B; }
.site-article ul { margin: 0 0 8px; padding-left: 22px; }
.site-article li { font-size: 16px; line-height: 32px; color: #1D232B; }
.site-article li b { font-weight: 650; }
.site-similar {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px 20px;
  margin-top: 8px;
}
.site-like {
  display: flex; align-items: center; gap: 12px;
  background: #fff; border-radius: 4px; padding: 14px 16px; min-height: 70px;
}
.site-like:hover { box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06); }
.site-like .ico { width: 40px; height: 40px; margin: 0; border-radius: 50%; }
.site-like span { min-width: 0; }
.site-like b { display: block; font-size: 14px; font-weight: 650; }
.site-like small {
  display: block; color: var(--mute); font-size: 12px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.site-go-ghost {
  background: #F3F5F8; color: var(--ink) !important; font-weight: 600;
}
.site-go-ghost:hover { background: #E8EDF3; }
.site-sec {
  background: #fff; border-radius: 16px; padding: 22px 24px; margin-top: 16px;
  border: 1px solid #EEF0F3;
}
.site-sec h3 { margin: 0 0 10px; font-size: 17px; }
.site-sec p, .site-sec li { color: #3D4450; line-height: 1.8; font-size: 15px; }
.site-sec ol, .site-sec ul { margin: 0; padding-left: 20px; }
.site-sec li + li { margin-top: 8px; }
.site-sec p + p { margin-top: 10px; }
.site-sec p b { color: var(--ink); }
.crumb { font-size: 13px; color: var(--mute); margin: 8px 0 16px; }
.crumb a { color: var(--brand); }
.page-card { background: #fff; border-radius: 16px; padding: 28px 32px; border: 1px solid #EEF0F3; line-height: 1.75; }
.page-card h2 { margin: 0 0 12px; }
.page-pro { padding: 8px 0 32px; }
.page-pro > h1 { margin: 8px 0 12px; font-size: 32px; line-height: 1.25; }
.page-lead { font-size: 16px; line-height: 1.75; color: #3D4450; margin: 0 0 8px; }
.page-pro-narrow { max-width: 800px; }
.page-pro-hero {
  background: #fff; border: 1px solid #EEF0F3; border-radius: 16px;
  padding: 28px 32px; margin-bottom: 8px;
}
.page-pro-hero h1 { margin: 0 0 10px; font-size: 32px; }
.page-pro-hero p { margin: 0; font-size: 16px; line-height: 1.75; color: #3D4450; }
.pro-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin: 16px 0 8px; }
.pro-grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.pro-card {
  display: block; background: #fff; border: 1px solid #EEF0F3; border-radius: 16px;
  padding: 20px 20px 18px; color: inherit; min-height: 180px;
}
.pro-card:hover { border-color: #B9D2FF; box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06); }
.pro-card em {
  display: inline-block; font-style: normal; font-size: 12px; font-weight: 700;
  color: #6D28D9; background: #F3E8FF; border-radius: 999px; padding: 2px 8px; margin-bottom: 10px;
}
.pro-card b { display: block; font-size: 17px; margin: 8px 0 8px; }
.pro-card p { margin: 0; font-size: 14px; line-height: 1.7; color: var(--mute); }
.pro-card span { display: inline-block; margin-top: 14px; font-size: 13px; font-weight: 650; color: var(--brand); }
.forum-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 18px; }
.forum-grid a {
  display: block; background: #fff; border: 1px solid #EEF0F3; border-radius: 14px; padding: 18px;
}
.forum-grid a:hover { border-color: #B9D2FF; }
.forum-grid b { display: block; margin-bottom: 6px; }
.forum-grid span { font-size: 13px; color: var(--mute); }
@media (max-width: 1099px) {
  .site-hero-row { flex-wrap: wrap; }
  .site-hero-aside { width: 100%; min-height: 0; }
  .site-similar { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 767px) {
  .forum-grid, .pro-grid, .site-similar { grid-template-columns: 1fr; }
  .site-hero-row { flex-direction: column; gap: 16px; padding: 12px 0 20px; }
  .site-preview-box { width: 100%; height: 200px; }
  .site-hero-mid h1, .page-pro > h1, .page-pro-hero h1 { font-size: 22px; }
  .site-sec, .page-pro-hero { padding: 18px; }
}

.wx-switch {
  margin-left: 8px; color: var(--mute); font-weight: 500; cursor: pointer;
}
.wx-switch:hover { color: var(--brand); }
.wx-facts {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px;
  margin: 22px 0 0; text-align: left;
}
.wx-facts div {
  background: #fff; border-radius: 12px; padding: 12px;
}
.wx-facts small { display: block; color: var(--mist); font-size: 12px; margin-bottom: 4px; }
.wx-facts b { font-size: 15px; font-weight: 650; }
.wx-tip { text-align: left; color: var(--mist); font-size: 13px; line-height: 1.65; margin: 16px 0 0; }
.wx-scene {
  height: 140px; margin: 0 -4px 8px; border-radius: 16px;
  background: #c5d4e8 center/cover no-repeat;
}
body[data-page="news"] .wrap { width: min(920px, calc(100% - 40px)); }
.news-mag { padding: 8px 0 32px; }
.news-mag-head { display: flex; align-items: baseline; justify-content: space-between; margin: 8px 0 16px; }
.news-mag-head h1 { margin: 0; font-size: 36px; letter-spacing: -.03em; }
.news-mag-head p { margin: 0; color: var(--mist); font-size: 13px; }
.news-mag-tabs {
  display: flex; flex-wrap: nowrap; align-items: stretch;
  gap: 2px; overflow-x: auto; -webkit-overflow-scrolling: touch;
  scrollbar-width: none; margin: 0 -4px; padding: 0 4px;
  border-bottom: 1px solid var(--paper-line);
  color: #5B6570; font-size: 17px;
}
.news-mag-tabs::-webkit-scrollbar { display: none; }
.news-mag-tabs button {
  position: relative; flex: none; border: 0; background: transparent;
  color: inherit; height: 44px; padding: 0 14px;
  font-size: 17px; font-weight: 500; line-height: 44px;
  white-space: nowrap; cursor: pointer;
}
.news-mag-tabs button.on {
  color: #111827; font-weight: 700;
  box-shadow: none;
}
.news-mag-tabs button.on::after {
  content: ""; position: absolute; left: 50%; bottom: 0;
  transform: translateX(-50%);
  width: 22px; height: 3px; border-radius: 2px;
  background: #FF4D4F;
}
.news-mag-tabs button:active { opacity: .72; }
.news-feat {
  display: block; margin: 18px 0 10px; background: #fff; border-radius: 16px;
  overflow: hidden; box-shadow: 0 8px 28px rgba(16,24,40,.06); color: inherit;
}
.news-feat-img { height: 220px; background: #C5D4E8 center/cover no-repeat; }
.news-feat-img.empty { background: linear-gradient(135deg, #1B3A5F, #3D7EDB); }
.news-feat-copy { padding: 16px 18px 18px; }
.news-feat-copy h2 { margin: 0 0 8px; font-size: 22px; line-height: 1.35; }
.news-feat-copy small { color: var(--mist); }
.news-layout { display: grid; grid-template-columns: 1fr 320px; gap: 20px; align-items: start; }
.news-row {
  display: flex; gap: 14px; align-items: center; padding: 14px 0;
  border-bottom: 1px solid var(--line); color: inherit;
}
.news-row-copy { flex: 1; min-width: 0; }
.news-row-copy b {
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden; font-size: 16px; line-height: 1.45; margin: 0 0 8px;
}
.news-row-copy small { color: var(--mist); font-size: 12px; }
.news-row-img {
  width: 150px; height: 100px; border-radius: 10px; flex: none;
  background: #DDE5F0 center/cover no-repeat; display: block;
}
.news-row-img.empty { background: linear-gradient(135deg, #C5D4E8, #E8EEF6); }
.news-rail { position: sticky; top: 8px; }
.news-rail-box {
  background: #fff; border: 1px solid #EBEDF0; border-radius: 12px;
  padding: 14px 14px 8px; box-shadow: 0 1px 4px rgba(0,0,0,.04);
}
.news-rail-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0 2px 10px;
}
.news-rail-title {
  font-size: 18px; font-weight: 700; color: #1a1a1a; text-decoration: none;
  display: inline-flex; align-items: center; gap: 2px;
}
.news-rail-title i { font-style: normal; font-weight: 400; color: #9195A3; font-size: 16px; }
.news-rail-title:hover { color: #4E6EF2; }
.news-rail-swap {
  border: 0; background: transparent; color: #9195A3; font-size: 13px;
  cursor: pointer; display: inline-flex; align-items: center; gap: 4px; padding: 4px 0;
}
.news-rail-swap::before { content: "↻"; font-size: 14px; }
.news-rail-swap:hover { color: #4E6EF2; }
.news-rail-tabs {
  display: flex; gap: 6px; overflow-x: auto; -webkit-overflow-scrolling: touch;
  padding: 6px; margin: 0 0 6px; background: #F5F6F8; border-radius: 8px;
  scrollbar-width: none;
}
.news-rail-tabs::-webkit-scrollbar { display: none; }
.news-rail-tabs button {
  flex: none; height: 28px; padding: 0 12px; border: 0; border-radius: 999px;
  background: transparent; font-size: 13px; color: #1a1a1a; font-weight: 500; white-space: nowrap;
}
.news-rail-tabs button.on {
  background: #fff; color: #4E6EF2; font-weight: 600;
  box-shadow: 0 1px 2px rgba(0,0,0,.06);
}
.news-rail-tabs button:not(.on):hover { color: #4E6EF2; }
.news-rail-list { padding: 2px 0 4px; }
.bd-hot {
  display: flex; align-items: center; gap: 10px;
  min-height: 36px; padding: 0 2px; color: inherit; text-decoration: none;
}
.bd-hot:hover b { color: #4E6EF2; }
.bd-hot .rk {
  width: 20px; flex: none; text-align: center; font-style: normal;
  font-size: 15px; font-weight: 700; color: #9195A3;
  font-variant-numeric: tabular-nums;
}
.bd-hot.r1 .rk { color: #FE2D19; }
.bd-hot.r2 .rk { color: #FF6600; }
.bd-hot.r3 .rk { color: #FAAD14; }
.bd-hot b {
  flex: 1; min-width: 0; font-size: 14px; font-weight: 400; color: #2440B3;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.bd-tag {
  flex: none; font-size: 11px; line-height: 16px; padding: 0 4px;
  border-radius: 3px; color: #fff; font-style: normal; font-weight: 600;
}
.bd-tag.hot { background: #FF6600; }
.bd-tag.new { background: #F73131; }
.bd-tag.boom { background: #FE2D19; }
.bd-tag.rec { background: #4E6EF2; }
.bd-hot.is-sk { pointer-events: none; }
.bd-hot.is-sk b.sk {
  display: block; height: 12px; width: 70%;
  background: linear-gradient(90deg, #E6EBF2 25%, #F3F6FA 37%, #E6EBF2 63%);
  background-size: 400% 100%; animation: sk 1.2s ease infinite;
}
.news-rail-empty { padding: 24px 0; text-align: center; color: var(--mist); font-size: 13px; }
.news-mag-end { text-align: center; color: var(--mist); padding: 20px 0 8px; font-size: 13px; }
.hot-board { padding: 8px 0 32px; }
.hot-hero {
  margin-top: 8px; border-radius: 20px; color: #fff;
  background: url(hot-banner.webp?v=20260828v66) center/cover;
  padding: 22px 20px 12px;
  box-shadow: 0 10px 30px rgba(255, 77, 79, .25);
}
.hot-hero .news-mag-head { margin: 0 0 14px; }
.hot-hero .news-mag-head h1 { color: #fff; }
.hot-hero .news-mag-head p { color: rgba(255, 255, 255, .85); }
.hot-hero .news-mag-tabs { border-bottom: 0; color: rgba(255, 255, 255, .82); }
.hot-hero .news-mag-tabs button.on { color: #fff; }
.hot-hero .news-mag-tabs button.on::after { background: #fff; }
.hot-table {
  background: #fff; border-radius: 16px; overflow: hidden;
  box-shadow: 0 8px 28px rgba(16, 24, 40, .06); margin-top: 18px;
}
.hot-item {
  display: flex; align-items: center; gap: 12px;
  height: 44px; padding: 0 16px; color: inherit;
  border-top: 1px solid #F4F6F8;
}
.hot-item:first-child { border-top: 0; }
.hot-item:hover { background: #F7F9FC; }
.hot-item .rk {
  width: 24px; flex: none; font-size: 15px; font-weight: 800;
  color: #94A3B8; font-style: normal; font-variant-numeric: tabular-nums;
}
.hot-item.r1 .rk { color: #FF4D4F; }
.hot-item.r2 .rk { color: #FF7A45; }
.hot-item.r3 .rk { color: #FAAD14; }
.hot-item b {
  flex: 1; min-width: 0; font-size: 15px; font-weight: 500;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.hot-item small { flex: none; color: #94A3B8; font-size: 12px; }
.hot-item.is-sk { pointer-events: none; }
.hot-item.is-sk b.sk {
  display: block; height: 14px; width: 72%;
  background: linear-gradient(90deg, #E6EBF2 25%, #F3F6FA 37%, #E6EBF2 63%);
  background-size: 400% 100%; animation: sk 1.2s ease infinite;
}
@media (max-width: 767px) {
  .news-mag-head h1 { font-size: 28px; }
  .news-mag-tabs { font-size: 16px; }
  .news-mag-tabs button { font-size: 16px; height: 42px; line-height: 42px; padding: 0 12px; }
  .news-layout { grid-template-columns: 1fr; }
  .news-rail { position: static; }
  .news-row-img { width: 110px; height: 76px; }
  .news-feat-img { height: 168px; }
  .wx-facts { grid-template-columns: 1fr 1fr; }
  .site-preview-box { width: 100%; height: 200px; }
}

/* === ainav share (align browser download page) === */
.share-wrap { position: relative; display: flex; align-items: center; }
.share-btn {
  height: 32px; padding: 0 12px; border-radius: 16px;
  border: 1px solid var(--line); background: #fff; color: var(--ink);
  font-size: 13px; font-weight: 600; cursor: pointer;
}
body.is-home .share-btn {
  border-color: rgba(255,255,255,.5); background: rgba(255,255,255,.18); color: #fff;
}
body.is-home.atmo-light .share-btn {
  border-color: var(--line); background: #fff; color: var(--ink);
}
body.is-paper .share-btn {
  height: 28px; padding: 0 10px; font-size: 12px;
}
.share-panel {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 268px;
  min-width: 268px;
  padding: 8px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(11, 110, 255, 0.12);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  z-index: 40;
}
.share-preview {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin: 0 0 6px;
  padding: 10px;
  border-radius: 12px;
  background: #F4F7FB;
}
.share-preview-img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  border-radius: 12px;
  object-fit: cover;
  background: #fff;
}
.share-preview-title {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.4;
}
.share-panel-item {
  display: block;
  width: 100%;
  padding: 10px 12px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--ink);
  font-size: 14px;
  text-align: left;
  cursor: pointer;
}
.share-panel-item:hover {
  background: var(--brand-soft);
}
@media (max-width: 767px) {
  .share-btn { height: 28px; padding: 0 10px; font-size: 12px; }
  .share-panel { width: 240px; min-width: 240px; }
}

/* === brand title (logo-title.webp, match home) === */
.logo .brand-title,
.brand-title {
  display: block;
  height: 36px;
  width: auto;
  max-width: min(220px, 46vw);
  object-fit: contain;
  object-position: left center;
}
.side-nav .side-logo {
  gap: 0;
  font-size: 0;
  color: transparent;
}
.side-nav .side-logo img,
.side-nav .side-logo .brand-title {
  width: auto;
  height: 40px;
  max-width: calc(var(--side) - 28px);
  border-radius: 0;
  object-fit: contain;
  object-position: left center;
}
body.is-paper .logo {
  display: flex;
}
@media (max-width: 767px) {
  .logo .brand-title,
  .brand-title { height: 28px; max-width: min(168px, 42vw); }
  .side-nav .side-logo img,
  .side-nav .side-logo .brand-title { height: 32px; }
}

/* === home glance shelf === */
.home-glance .eyebrow { color: #7B61FF; }
.home-gl-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.home-gl-card, .home-gm-card {
  display: block;
  min-width: 0;
  text-decoration: none;
  color: var(--ink);
}
.home-gl-cover, .home-gm-cover {
  display: block;
  aspect-ratio: 3 / 2;
  border-radius: 10px;
  overflow: hidden;
  background: #F0EDFB;
  margin-bottom: 8px;
}
.home-gm-cover { background: #142033; }
.home-gl-cover img, .home-gm-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.home-gl-card b, .home-gm-card b {
  display: block;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.home-gl-card:hover b { color: #7B61FF; }
.home-gm-card:hover b { color: #0B6EFF; }
/* 桌面 5×2：只露 10 个 */
.home-gl-card:nth-child(n+11) { display: none; }
.home-gm-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
/* 桌面 4×2：只露 8 个 */
.home-gm-card:nth-child(n+9) { display: none; }
.home-more-row {
  display: flex;
  justify-content: center;
  margin-top: 16px;
}
.home-more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  padding: 0 22px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink-2);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}
.home-more-btn:hover {
  border-color: #0B6EFF;
  color: #0B6EFF;
  background: #F3F7FF;
}
.home-glance .home-more-btn:hover {
  border-color: #7B61FF;
  color: #7B61FF;
  background: #F5F2FF;
}
@media (max-width: 1199px) {
  .home-gl-grid { grid-template-columns: repeat(4, 1fr); }
  .home-gl-card:nth-child(n+9) { display: none; } /* 4×2 */
  .home-gm-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 767px) {
  .home-gl-grid { grid-template-columns: repeat(4, 1fr); gap: 8px; }
  .home-gl-card { display: block; } /* 覆盖桌面/平板截断 */
  .home-gl-card:nth-child(n+9) { display: none; } /* 4×2 = 8 */
  .home-gl-card b, .home-gm-card b { font-size: 11px; }
  .home-gm-grid { grid-template-columns: repeat(4, 1fr); gap: 8px; }
  .home-gm-card { display: block; }
  .home-gm-card:nth-child(n+9) { display: none; } /* 4×2 = 8 */
  .home-more-btn { height: 40px; padding: 0 28px; width: 100%; max-width: 220px; }
}


/* === site pages: feedback / forum / ads === */
.fb-page { max-width: 720px; padding: 8px 0 40px; }
.fb-page > h1 { margin: 8px 0 8px; font-size: 32px; }
.fb-lead { color: #3D4450; font-size: 15px; line-height: 1.7; margin: 0 0 18px; }
.fb-link {
  border: 0; background: transparent; color: var(--brand); font: inherit;
  font-weight: 650; padding: 0; cursor: pointer; text-decoration: underline;
}
.fb-sec {
  background: #fff; border: 1px solid #EEF0F3; border-radius: 16px;
  padding: 18px 20px; margin: 0 0 12px;
}
.fb-sec h3 { margin: 0 0 12px; font-size: 15px; }
.fb-types { display: flex; flex-wrap: wrap; gap: 8px; }
.fb-type {
  height: 34px; padding: 0 14px; border-radius: 17px; border: 1px solid #E6EBF2;
  background: #F7F9FC; color: #334155; font-size: 13px; font-weight: 600; cursor: pointer;
}
.fb-type.on { background: #E8F2FF; border-color: #8BB8F0; color: var(--brand); }
.fb-input, .fb-area {
  width: 100%; box-sizing: border-box; border: 1px solid #E6EBF2; border-radius: 12px;
  background: #fff; color: var(--ink); font: inherit; padding: 12px 14px; outline: 0;
}
.fb-input:focus, .fb-area:focus { border-color: rgba(11,110,255,.45); box-shadow: 0 0 0 3px rgba(11,110,255,.12); }
.fb-area { resize: vertical; min-height: 140px; line-height: 1.6; }
.fb-hint { margin: 8px 0 0; font-size: 12px; color: var(--mute); }
.fb-meta { margin-top: 8px; text-align: right; font-size: 12px; color: var(--mute); }
.fb-acts { display: flex; flex-wrap: wrap; gap: 10px; margin: 8px 0 16px; align-items: center; }
.fb-tips ul { margin: 0; padding-left: 18px; color: #3D4450; font-size: 14px; line-height: 1.8; }
.fb-ok {
  background: #fff; border: 1px solid #EEF0F3; border-radius: 16px;
  padding: 36px 28px; text-align: center;
}
.fb-ok.compact { padding: 24px; text-align: left; }
.fb-ok h1, .fb-ok h2 { margin: 0 0 10px; }
.fb-ok p { margin: 0 0 20px; color: #3D4450; line-height: 1.7; }
.fb-ok-acts { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.page-pro-acts { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.forum-pick {
  padding: 14px 0; border-top: 1px solid #EEF0F3;
}
.forum-pick:first-of-type { border-top: 0; padding-top: 0; }
.forum-pick b { display: inline; margin-right: 8px; }
.forum-pick span {
  display: inline-block; font-size: 12px; color: #6D28D9; background: #F3E8FF;
  border-radius: 999px; padding: 2px 8px; vertical-align: middle;
}
.forum-pick p { margin: 8px 0 0; color: #3D4450; font-size: 14px; line-height: 1.7; }
.ads-table-wrap { overflow-x: auto; margin: 8px 0 12px; }
.ads-table {
  width: 100%; border-collapse: collapse; font-size: 14px;
}
.ads-table th, .ads-table td {
  border: 1px solid #EEF0F3; padding: 10px 12px; text-align: left; vertical-align: top;
}
.ads-table th { background: #F7F9FC; font-weight: 650; }
.ads-form {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px 14px; margin-top: 8px;
}
.ads-form label {
  display: flex; flex-direction: column; gap: 6px; font-size: 13px; font-weight: 600; color: #334155;
}
.ads-form label.full { grid-column: 1 / -1; }
.ads-form .fb-acts { grid-column: 1 / -1; margin: 4px 0 0; }
@media (max-width: 767px) {
  .fb-page > h1 { font-size: 24px; }
  .ads-form { grid-template-columns: 1fr; }
  .pro-grid-4 { grid-template-columns: 1fr; }
}

/* ---- 今日瞥阅读 · 按 style 分场景 ---- */
.glr[data-glstyle="quote"] { --glr-sheet: #FFF8FB; }
.glr[data-glstyle="poem"] { --glr-a: #3F6C51; --glr-a2: #6B9E7E; --glr-sheet: #F8F5EC; }
.glr[data-glstyle="term"] { --glr-a: #C93A3A; --glr-a2: #E06666; --glr-sheet: #FBF3EF; }
.glr[data-glstyle="bilingual"] { --glr-a: #3B5BF6; --glr-a2: #6EA8FF; --glr-sheet: #F3F6FF; }
.glr[data-glstyle="qa"], .glr[data-glstyle="choice"] { --glr-a: #E8930C; --glr-a2: #FFC53D; --glr-sheet: #FFFAEE; }

.glr-quote-t {
  text-align: center; font-size: 15px; font-weight: 700; color: var(--glr-a);
  margin-bottom: 12px; letter-spacing: .5px;
}
.glr-quote .quote { white-space: pre-wrap; }
.glr-poem { text-align: center; }
.glr-poem-t {
  font-size: 18px; font-weight: 700; color: #3F6C51; margin-bottom: 14px;
  font-family: "Iowan Old Style", "Songti SC", "Noto Serif SC", serif;
}
.glr-poem-b {
  font-size: 18px; line-height: 2; color: var(--ink);
  font-family: "Iowan Old Style", "Songti SC", "Noto Serif SC", serif;
  white-space: pre-wrap;
}
.glr-term-t {
  font-size: 26px; font-weight: 800; color: #C93A3A; text-align: center; margin-bottom: 14px;
  letter-spacing: 1px;
}
.glr-term-b {
  font-size: 16px; line-height: 1.75; color: var(--ink-2); text-align: center; white-space: pre-wrap;
}
.glr-bi { text-align: center; }
.glr-bi-en {
  font-size: 22px; font-weight: 700; line-height: 1.5; color: #1F2438;
  font-family: Georgia, "Times New Roman", serif; margin-bottom: 28px;
}
.glr-bi-zh { font-size: 16px; line-height: 1.7; color: #4A5568; }
.glr-qa { text-align: center; }
.glr-opts {
  margin: 14px auto 0; max-width: 420px; text-align: left;
  font-size: 14px; line-height: 1.9; color: var(--ink-2);
  background: rgba(255,255,255,.7); border-radius: 12px; padding: 12px 16px;
}
.glr-opts b { color: var(--glr-a); margin-right: 6px; }
.glr-ans-wrap { position: relative; margin-top: 16px; }
.glr-ans-wrap .qa-a.is-hide { visibility: hidden; }
.glr-ans-mask {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(180deg, #2A3148, #1a1f2e); color: rgba(255,255,255,.35);
  border-radius: 12px; font-size: 14px; letter-spacing: 2px; line-height: 1.6;
  padding: 14px 18px; text-align: center;
}
.glr-progress {
  text-align: center; margin-top: 18px; font-size: 12px; color: var(--placeholder);
  font-variant-numeric: tabular-nums;
}
@media (max-width: 560px) {
  .glr-bi-en { font-size: 18px; margin-bottom: 20px; }
  .glr-term-t { font-size: 22px; }
  .glr-poem-b { font-size: 16px; }
}


body.is-paper .news-mag-tabs,
body.is-paper .hot-hero .news-mag-tabs {
  margin-top: 0;
}
body.is-paper[data-page="games"] .paper-lead-solo.moyu-lead, body.is-paper[data-page="school"] .paper-lead-solo.moyu-lead {
  color: #5B6575; margin: 4px 0 12px; padding: 0 2px;
}
/* 浅色纸页顶栏：字标/返回保持墨色，禁止被深色模块规则洗白 */
body.is-paper:not(.is-games-play) .tabs .paper-title-img {
  filter: none;
}
body.is-paper:not(.is-games-play) .tabs .paper-back {
  color: var(--ink);
}



/* === v128 home entrance + search glow === */
body.is-home .hero-home .hero-logo,
body.is-home .hero-home #heroSearch,
body.is-home .hero-home .ask-entry,
body.is-home .home-entries {
  animation: homeUp .42s ease both;
}
body.is-home .hero-home #heroSearch { animation-delay: .05s; }
body.is-home .hero-home .ask-entry { animation-delay: .1s; }
body.is-home .home-entries { animation-delay: .16s; }
body.is-home .search:focus-within {
  box-shadow: 0 0 0 3px rgba(11,110,255,.18), 0 10px 28px rgba(11,110,255,.12);
}
body.is-home .home-entry {
  transition: transform .18s ease, box-shadow .18s ease;
}
body.is-home .home-entry:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(15,23,42,.08);
}
@keyframes homeUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  body.is-home .hero-home .hero-logo,
  body.is-home .hero-home #heroSearch,
  body.is-home .hero-home .ask-entry,
  body.is-home .home-entries { animation: none; }
}


/* 导航目录加载失败 / 等待 */
.catalog-error {
  display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  margin: 10px 0 14px; padding: 12px 14px; border-radius: 12px;
  background: rgba(255, 77, 79, .12); border: 1px solid rgba(255, 77, 79, .35);
  color: #FFD0D0; font-size: 14px;
}
.catalog-retry {
  border: 0; border-radius: 10px; height: 36px; padding: 0 14px; cursor: pointer;
  background: #5CE1FF; color: #071018; font-weight: 700;
}
.catalog-pending-tip {
  margin: 12px 0 0; color: #7F93B0; font-size: 13px; text-align: center;
}
.catalog-pending { padding: 12px 4px 24px; }


/* === AI学堂 === */
.home-learn-lead { margin: -4px 0 12px; font-size: 13px; color: var(--mute); }
.home-learn-grid {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px;
}
.learn-path-card {
  display: flex; flex-direction: column; gap: 4px;
  padding: 14px 12px; border-radius: 14px;
  background: linear-gradient(180deg, #FAFCFF, #F3F7FC);
  border: 1px solid #E8EEF6; text-decoration: none; color: inherit;
  min-height: 96px; transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease;
}
.learn-path-card i { font-style: normal; font-size: 22px; line-height: 1; }
.learn-path-card b { font-size: 14px; font-weight: 700; }
.learn-path-card span { font-size: 12px; color: var(--mute); line-height: 1.4; }
.learn-path-card em { margin-top: auto; font-style: normal; font-size: 11px; color: #94A3B8; }
.learn-path-card:hover, .learn-path-card.on {
  border-color: #B9D2FF; box-shadow: 0 6px 16px rgba(15,23,42,.06); transform: translateY(-1px);
}
.learn-hub { padding: 8px 0 40px; }
.learn-hero { padding: 20px 4px 18px; }
.learn-eyebrow {
  font-size: 11px; letter-spacing: .18em; color: #94A3B8; font-weight: 600; margin-bottom: 6px;
}
.learn-hero h2 { margin: 0 0 6px; font-size: 26px; }
.learn-hero p { margin: 0; color: var(--mute); font-size: 14px; }
.learn-paths {
  display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 10px; margin-bottom: 18px;
}
.learn-panel {
  background: #fff; border-radius: 16px; padding: 14px 16px 8px;
  box-shadow: var(--shadow-card); margin-bottom: 14px;
}
.learn-list { display: flex; flex-direction: column; }
.learn-item {
  display: block; padding: 14px 0; border-bottom: 1px solid var(--line);
  text-decoration: none; color: inherit;
}
.learn-item:last-child { border-bottom: 0; }
.learn-item b { display: block; font-size: 15px; margin-bottom: 4px; }
.learn-item small { color: var(--mute); font-size: 12px; line-height: 1.45; }
.learn-sites p { font-size: 13px; color: var(--mute); margin: 0 0 12px; line-height: 1.5; }
.learn-cta {
  display: inline-flex; align-items: center; height: 36px; padding: 0 14px;
  border-radius: 18px; background: var(--brand-soft); color: var(--brand);
  font-size: 13px; font-weight: 600; text-decoration: none; margin-bottom: 8px;
}
.learn-read { max-width: 720px; margin: 0 auto; padding: 12px 4px 48px; }
.learn-back { display: inline-block; font-size: 13px; color: var(--brand); text-decoration: none; margin-bottom: 12px; }
.learn-path-tag { font-size: 12px; color: #64748B; margin-bottom: 8px; }
.learn-read h1 { font-size: 24px; margin: 0 0 8px; line-height: 1.35; }
.learn-sum { color: var(--mute); font-size: 14px; margin: 0 0 18px; }
.learn-body p { font-size: 15px; line-height: 1.85; color: #1A1F2E; margin: 0 0 14px; }
.learn-nav {
  display: flex; justify-content: space-between; gap: 12px;
  margin: 24px 0 16px; padding-top: 16px; border-top: 1px solid var(--line);
}
.learn-nav a { font-size: 13px; color: var(--brand); text-decoration: none; max-width: 46%; }
.learn-more { display: flex; flex-wrap: wrap; gap: 14px; }
.learn-more a { font-size: 13px; color: #64748B; }
@media (max-width: 900px) {
  .home-learn-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .learn-paths { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}


/* 首页摸鱼工具（游戏模块上方，展示 8 个） */
.home-toy-cover { background: #1A1428; }
.home-toy-grid .home-gm-card { display: block; }
.home-toy-grid .home-gm-card:nth-child(n+9) { display: none; }

/* ---- 天气页主流改版 P-NAV-WEATHER-V2 ---- */
.wxm { padding: 0 0 28px; max-width: 560px; margin: 0 auto; }
.wxm-hero {
  position: relative; text-align: center; color: #fff;
  padding: 28px 20px 30px; margin: 0 -4px 0;
  border-radius: 0 0 22px 22px; overflow: hidden;
  background:
    linear-gradient(180deg, rgba(18,32,58,.28) 0%, rgba(18,32,58,.55) 50%, rgba(18,32,58,.88) 100%),
    linear-gradient(155deg, #6F97BF, #3F638C 55%, #2A4566);
}
.wxm-hero.has-scene {
  background-image:
    linear-gradient(180deg, rgba(18,32,58,.32) 0%, rgba(18,32,58,.58) 48%, rgba(18,32,58,.9) 100%),
    var(--wxm-scene);
  background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
}
.wxm-hero-sk { min-height: 220px; display: flex; flex-direction: column; justify-content: center; }
.wxm-city {
  display: inline-flex; align-items: center; gap: 8px;
  border: 0; background: rgba(255,255,255,.14); color: #fff;
  font-size: 17px; font-weight: 650; padding: 6px 14px; border-radius: 99px;
  cursor: pointer; backdrop-filter: blur(8px);
}
.wxm-city span {
  font-size: 12px; font-weight: 500; opacity: .8;
  padding-left: 8px; border-left: 1px solid rgba(255,255,255,.28);
}
.wxm-aqi {
  display: inline-flex; margin-top: 12px; padding: 4px 12px; border-radius: 99px;
  font-size: 12px; font-weight: 650; background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.22); color: #E8FFF0;
}
.wxm-aqi.aqi-ok { background: rgba(46,196,110,.22); border-color: rgba(46,196,110,.4); color: #C8FFD8; }
.wxm-aqi.aqi-mid { background: rgba(255,193,7,.22); border-color: rgba(255,193,7,.4); color: #FFE9A8; }
.wxm-aqi.aqi-bad { background: rgba(255,77,79,.22); border-color: rgba(255,77,79,.45); color: #FFC8C8; }
.wxm-temp {
  margin: 10px 0 2px; font-size: 86px; font-weight: 200; letter-spacing: -3px;
  line-height: 1; text-shadow: 0 2px 18px rgba(0,0,0,.25);
}
.wxm-cond { margin: 0; font-size: 18px; font-weight: 550; display: flex; align-items: center; justify-content: center; gap: 6px; }
.wxm-hl { margin: 8px 0 0; font-size: 15px; opacity: .88; }
.wxm-hero-tip { margin: 14px auto 0; max-width: 340px; font-size: 13px; line-height: 1.55; opacity: .78; }
.wxm-stack { display: flex; flex-direction: column; gap: 12px; padding: 12px 4px 0; }
.wxm-card {
  background: rgba(255,255,255,.94); border-radius: 18px; padding: 14px 14px 12px;
  box-shadow: 0 8px 24px rgba(20,36,64,.06);
}
.wxm-card h3 {
  margin: 0 0 12px; font-size: 13px; font-weight: 700; color: #6B7580;
  letter-spacing: .04em;
}
.wxm-ico { font-style: normal; font-size: 20px; line-height: 1; }
.wxm-hours {
  display: flex; gap: 2px; overflow-x: auto; -webkit-overflow-scrolling: touch;
  scrollbar-width: none; margin: 0 -4px; padding: 0 4px 4px;
}
.wxm-hours::-webkit-scrollbar { display: none; }
.wxm-hours span {
  flex: 0 0 54px; display: flex; flex-direction: column; align-items: center; gap: 6px;
  font-size: 12px; color: #7A8490; text-align: center;
}
.wxm-hours em { font-style: normal; }
.wxm-hours b { font-size: 15px; color: var(--ink); font-weight: 700; }
.wxm-day {
  display: grid; grid-template-columns: 48px 28px minmax(0,1fr) 78px;
  align-items: center; gap: 8px; padding: 9px 0;
  border-top: 1px solid #EEF1F5; font-size: 14px;
}
.wxm-day:first-child { border-top: 0; }
.wxm-day > b { font-weight: 650; }
.wxm-bar {
  position: relative; height: 5px; border-radius: 99px; background: #E6EBF1; overflow: hidden;
}
.wxm-bar i {
  position: absolute; top: 0; bottom: 0; border-radius: 99px;
  background: linear-gradient(90deg, #5CE1FF, #FFD166 55%, #FF8A3D);
}
.wxm-tr {
  text-align: right; font-variant-numeric: tabular-nums; color: #8A94A0; font-size: 13px;
}
.wxm-tr strong { color: var(--ink); font-weight: 700; margin-left: 4px; }
.wxm-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.wxm-facts div { background: #F4F6F9; border-radius: 14px; padding: 12px; }
.wxm-facts small { display: block; color: #7A8490; font-size: 12px; margin-bottom: 6px; }
.wxm-facts b { font-size: 16px; font-weight: 700; }
.wxm-life { margin: 0; font-size: 14px; line-height: 1.65; color: #3A4550; }
body[data-page="weather"] .wrap { width: min(600px, calc(100% - 24px)); }
body[data-page="weather"] .paper-stage, body[data-page="weather"] .wx-scene { display: none; }
@media (max-width: 767px) {
  .wxm-temp { font-size: 72px; letter-spacing: -2px; }
  .wxm-hero { padding: 22px 16px 26px; border-radius: 0 0 18px 18px; }
  .wxm-day { grid-template-columns: 44px 26px minmax(0,1fr) 70px; gap: 6px; }
}
@media (min-width: 900px) {
  .wxm-temp { font-size: 92px; }
  .wxm-facts { grid-template-columns: repeat(3, 1fr); }
}

/* 首页 · 星座运势模块 */
.home-astro {
  background: linear-gradient(160deg, #FBF7FF, #FFF8FB) !important;
  border: 1.5px solid rgba(123,92,255,.18);
}
.home-astro .eyebrow { color: #7B5CFF !important; }
.home-astro .eyebrow a { color: #7B5CFF; text-decoration: none; font-weight: 650; }
.home-astro-sub { font-size: 12px; color: #8B8299; margin: -4px 0 10px; }
.home-astro-quick {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; margin-bottom: 10px;
}
.home-astro-quick a {
  text-align: center; font-size: 12px; padding: 10px 4px; border-radius: 12px;
  background: #fff; text-decoration: none; color: #334155; font-weight: 600;
  box-shadow: 0 2px 8px rgba(80,60,120,.05);
}
.home-astro-signs {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 4px;
}
.home-astro-signs a {
  display: block; text-align: center; text-decoration: none; color: #1A1523;
  font-size: 16px; padding: 10px 0 6px; background: #fff; border-radius: 10px;
}
.home-astro-signs a small {
  display: block; font-size: 10px; color: #8B8299; margin-top: 2px; font-weight: 600;
}
@media (max-width: 420px) {
  .home-astro-quick { grid-template-columns: repeat(2, 1fr); }
  .home-astro-signs { grid-template-columns: repeat(4, 1fr); }
}

.home-astro { position: relative; overflow: hidden; }
.home-astro::before {
  content: ""; position: absolute; right: -40px; top: -40px; width: 140px; height: 140px;
  border-radius: 50%; background: radial-gradient(circle, rgba(123,92,255,.12), transparent 70%);
  pointer-events: none;
}
.home-astro-quick a { transition: transform .15s, box-shadow .15s, color .15s; }
.home-astro-quick a:hover {
  transform: translateY(-2px); color: #7B5CFF;
  box-shadow: 0 6px 14px rgba(123,92,255,.12);
}
.home-astro-signs a { transition: transform .15s, background .15s; }
.home-astro-signs a:hover { transform: scale(1.06); background: #F5F1FA; }
.home-astro-signs a.on-mine {
  outline: 2px solid rgba(123,92,255,.4); background: #F7F3FF;
}

.home-entry .home-entry-ico {
  width: 28px; height: 28px; display: block; object-fit: contain;
}
.home-astro-signs a img {
  width: 28px; height: 28px; display: block; margin: 0 auto 2px; object-fit: contain;
}


/* 模块开关：隐藏 AI对话 / 摸鱼吧入口（见 app.js FEATURE） */
body.feat-off-ask [data-smode="ask"],
body.feat-off-ask #askBtn,
body.feat-off-ask .ask-pill.ask-entry { display: none !important; }
body.feat-off-ask .search-modes { display: none !important; }
