:root {
  --blue: #237af2;
  --deep: #123c70;
  --muted: #637ea3;
  --line: #d8e9ff;
  --shadow: 0 18px 34px rgba(120, 174, 235, 0.24);
  --page-bg:
    radial-gradient(circle at 84% 0, rgba(211, 234, 255, 0.72), transparent 28%),
    linear-gradient(120deg, #f8fcff 0%, #eff8ff 58%, #fff 100%);
}

* { box-sizing: border-box; }
html, body {
  margin: 0;
  min-height: 100%;
  background: var(--page-bg);
}
html { scroll-behavior: smooth; }
body {
  font-family: Inter, "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
  color: var(--deep);
  overflow-x: hidden;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { text-decoration: none; color: inherit; }

#page-shell {
  width: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  background: var(--page-bg);
}

.page-root {
  position: relative;
  width: 1792px;
  height: 5146.53125px;
  overflow: visible;
  background: var(--page-bg);
  transform-origin: top center;
  box-shadow: none;
  --canvas-scale: 1;
  --viewport-width: 1792px;
  --section-inner-scale: 0.78125;
}

.section {
  position: relative;
  width: 1792px;
  overflow: hidden;
  background: linear-gradient(120deg, #f8fcff 0%, #eff8ff 55%, #fff 100%);
}

.force-animate {
  --animate-duration: 900ms;
  --animate-delay: 0s;
  --animate-repeat: 1;
  -webkit-animation-duration: var(--animate-duration) !important;
  animation-duration: var(--animate-duration) !important;
  -webkit-animation-delay: var(--animate-delay) !important;
  animation-delay: var(--animate-delay) !important;
  -webkit-animation-iteration-count: var(--animate-repeat) !important;
  animation-iteration-count: var(--animate-repeat) !important;
  -webkit-animation-fill-mode: both !important;
  animation-fill-mode: both !important;
}

.anim-item {
  opacity: 0;
}

.anim-item.anim-in {
  opacity: 1;
}

.engines-section { --animate-delay: 120ms; }
.brand-section { --animate-delay: 180ms; }
.faq-section { --animate-delay: 240ms; }
.news-section { --animate-delay: 300ms; }

.anchor-point {
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

.footer-anchor {
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

.hero-section {
  width: calc(var(--viewport-width) / var(--canvas-scale));
  margin-left: calc((1792px - (var(--viewport-width) / var(--canvas-scale))) / 2);
  height: 992px;
  overflow: visible;
  background:
    radial-gradient(circle at 82% 0, rgba(207, 233, 255, 0.95), transparent 30%),
    linear-gradient(120deg, #f8fcff 0%, #eff8ff 55%, #fff 100%);
}

.hero-section::before {
  content: none;
}

.hero-section > * {
  z-index: 1;
}

.section-inner,
.footer-inner {
  position: relative;
  width: 1792px;
  margin: 0 auto;
  zoom: var(--section-inner-scale);
  transform: none;
  transform-origin: top center;
}

.engines-section { height: 1139.0625px; }
.brand-section { height: 1125px; }
.faq-section { height: 867.1875px; }
.news-section { height: 1023.28125px; }

.engines-section > .section-inner { height: 1458px; }
.brand-section > .section-inner { height: 1440px; }
.faq-section > .section-inner { height: 1110px; }
.news-section > .section-inner { height: 845px; }
.footer-inner { height: 385px; }

.topbar {
  position: absolute;
  left: 196px;
  top: 34px;
  width: 1400px;
  height: 64px;
  display: flex;
  align-items: center;
  z-index: 30;
  transition: background 180ms ease, box-shadow 180ms ease, border-color 180ms ease, top 180ms ease;
}
.topbar.is-sticky {
  position: fixed;
  left: 196px;
  top: 14px;
  width: 1400px;
  height: 72px;
  padding: 0;
  border-radius: 36px;
  z-index: 100;
  background: rgba(248, 252, 255, 0.92);
  border: 1px solid rgba(216, 233, 255, 0.9);
  box-shadow: 0 16px 34px rgba(68, 132, 212, 0.18);
  backdrop-filter: blur(18px);
}

.brand-mark {
  width: 205px;
  height: 64px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.brand-mark img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}
.nav {
  margin-left: 36px;
  display: flex;
  gap: 26px;
  align-items: center;
  font-size: 16px;
  font-weight: 700;
  color: #143e74;
  white-space: nowrap;
}

.mobile-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 14px;
  place-items: center;
  gap: 5px;
  padding: 10px;
  color: #237af2;
  background: #eff7ff;
  box-shadow: inset 0 0 0 1px #d8e9ff, 0 8px 18px rgba(68, 132, 212, .12);
  cursor: pointer;
}
.mobile-menu-toggle span {
  width: 21px;
  height: 2px;
  border-radius: 2px;
  display: block;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}
.menu-open .mobile-menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.menu-open .mobile-menu-toggle span:nth-child(2) {
  opacity: 0;
}
.menu-open .mobile-menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.phone-btn {
  margin-left: auto;
  width: 218px;
  height: 48px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  background: linear-gradient(90deg, #4b95ff, #1d6fea);
  box-shadow: 0 12px 22px rgba(27, 110, 235, 0.26), inset 0 0 0 1px #7cbaff;
}
.wechat-btn {
  letter-spacing: 0;
}
.wechat-icon {
  width: 23px;
  height: 23px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
}
.wechat-icon svg {
  width: 100%;
  height: 100%;
  display: block;
  fill: currentColor;
}

.floating-tools {
  position: fixed;
  right: 24px;
  top: 60%;
  z-index: 80;
  display: grid;
  gap: 14px;
  justify-items: end;
  transform: translateY(-50%);
}
.float-wechat-card {
  position: relative;
  width: 168px;
  padding: 16px 14px 14px;
  border-radius: 18px;
  color: #123c70;
  text-align: center;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid #d8e9ff;
  box-shadow: 0 18px 36px rgba(64, 128, 210, 0.22);
  backdrop-filter: blur(16px);
  overflow: hidden;
  transition: width 240ms ease, padding 240ms ease, border-radius 240ms ease;
}
.float-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: #17804a;
  font-size: 16px;
  font-weight: 900;
}
.float-title-text {
  white-space: nowrap;
}
.wechat-toggle {
  width: 26px;
  height: 26px;
  margin-left: auto;
  border: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #237af2;
  cursor: pointer;
  background: #eff7ff;
  box-shadow: inset 0 0 0 1px #d8e9ff;
  transition: transform 200ms ease, background 200ms ease;
}
.wechat-toggle svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}
.wechat-panel {
  opacity: 1;
  max-height: 180px;
  transition: opacity 180ms ease, max-height 240ms ease;
}
.float-wechat-card.is-collapsed {
  width: 54px;
  padding: 12px;
  border-radius: 27px;
}
.float-wechat-card.is-collapsed .float-title {
  justify-content: center;
}
.float-wechat-card.is-collapsed .float-title-text,
.float-wechat-card.is-collapsed .wechat-panel {
  opacity: 0;
  max-width: 0;
  max-height: 0;
  overflow: hidden;
  pointer-events: none;
}
.float-wechat-card.is-collapsed .wechat-toggle {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  color: transparent;
  background: transparent;
  box-shadow: none;
}
.float-wechat-card.is-collapsed .wechat-toggle svg {
  display: none;
}
.qr-code {
  position: relative;
  width: 116px;
  height: 116px;
  margin: 13px auto 10px;
  padding: 7px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid #c8ddf7;
  box-shadow: inset 0 0 0 7px #fff;
}
.qr-code img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 6px;
}
.float-wechat-card p {
  margin: 0 0 5px;
  color: #637ea3;
  font-size: 14px;
  font-weight: 700;
}
.float-wechat-card strong {
  color: #237af2;
  font-size: 16px;
  font-weight: 900;
}
.back-top-btn {
  width: 52px;
  height: 52px;
  margin-left: auto;
  border: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  cursor: pointer;
  background: linear-gradient(160deg, #2f95ff, #116dee);
  box-shadow: 0 14px 24px rgba(31, 117, 234, 0.32);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease, filter 180ms ease;
}
.back-top-btn.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.back-top-btn svg {
  width: 27px;
  height: 27px;
  fill: currentColor;
}
.back-top-btn:hover {
  filter: brightness(1.06);
}

.hero-glow {
  position: absolute;
  left: 1060px;
  top: 0;
  width: 720px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, #cfe9ff 0%, rgba(244, 250, 255, 0) 70%);
}
.hero-wave {
  position: absolute;
  left: 1110px;
  top: 465px;
  width: 675px;
  height: 225px;
  opacity: .9;
  background: linear-gradient(65deg, #d9efff 0%, rgba(255,255,255,0) 72%);
  clip-path: polygon(0 70%, 18% 35%, 38% 58%, 56% 23%, 74% 52%, 100% 18%, 100% 100%, 0 100%);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  height: 44px;
  border-radius: 22px;
  padding: 0 20px;
  font-size: 20px;
  font-weight: 800;
  color: #2e72c9;
  background: linear-gradient(90deg, #f7fcff, #e4f3ff);
  border: 1px solid #d8ebff;
  box-shadow: 0 10px 22px rgba(125,183,247,.20);
}
.badge span { color: #3a86f7; }
.hero-badge { position: absolute; left: 97px; top: 168px; }

.hero-section .hero-glow { left: calc(50% - 836px + 1060px); }
.hero-section .hero-wave { left: calc(50% - 836px + 1110px); }
.hero-section .hero-badge { left: calc(50% - 836px + 97px); }
.hero-section .hero-title { left: calc(50% - 836px + 96px); }
.hero-section .hero-subtitle { left: calc(50% - 836px + 98px); }
.hero-section .hero-pills { left: calc(50% - 836px + 97px); }
.hero-section .hero-actions { left: calc(50% - 836px + 97px); }
.hero-section .seo-illustration { left: calc(50% - 836px + 902px); }
.hero-section .hero-stats { left: calc(50% - 836px + 96px); }

.hero-title {
  position: absolute;
  left: 96px;
  top: 225px;
  margin: 0;
  line-height: 1.22;
  font-size: 48px;
  font-weight: 800;
  letter-spacing: 0;
  color: #143765;
}
.hero-title span { display: block; }
.hero-title em { font-style: normal; color: #2e7cf2; font-size: 64px; }
.hero-title b { padding: 0 44px; font-weight: 800; }
.hero-subtitle {
  position: absolute;
  left: 98px;
  top: 408px;
  margin: 0;
  font-size: 30px;
  color: #1f4e82;
}

.hero-pills {
  position: absolute;
  left: 97px;
  top: 474px;
  display: flex;
  gap: 10px;
}
.hero-pills span {
  height: 39px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 12px 0 9px;
  border-radius: 20px;
  color: #2d5f9f;
  font-size: 15px;
  font-weight: 800;
  background: #eff7ff;
  border: 1px solid #dceeff;
  box-shadow: 0 6px 14px rgba(181,216,255,.35);
}
.hero-pills .platform-icon {
  width: 23px;
  height: 24px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  color: #fff;
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
  line-height: 1;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.34), 0 5px 10px rgba(35,122,242,.18);
}
.hero-pills .platform-logo {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  display: block;
  object-fit: contain;
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 5px 10px rgba(35,122,242,.14), inset 0 0 0 1px rgba(216,233,255,.9);
}
.hero-pills .more { background: linear-gradient(135deg, #5d789d, #29496f); letter-spacing: -2px; }
.hero-pills .more-platform {
  color: #42638e;
  background: rgba(255, 255, 255, .74);
  border-style: dashed;
}

.hero-actions {
  position: absolute;
  left: 97px;
  top: 555px;
  display: flex;
  gap: 20px;
}
.primary-btn, .secondary-btn {
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  border-radius: 14px;
  font-size: 18px;
  font-weight: 800;
}
.primary-btn {
  width: 260px;
  color: #fff;
  background: linear-gradient(90deg, #4a95ff, #1f73ee);
  box-shadow: 0 14px 24px rgba(29,112,234,.27), inset 0 0 0 1px #79b9ff;
}
.secondary-btn {
  width: 227px;
  color: #2877ee;
  background: linear-gradient(180deg, #fff, #f5faff);
  border: 1.5px solid #b1d2ff;
  box-shadow: 0 10px 20px rgba(135,183,244,.18);
}

.seo-illustration {
  position: absolute;
  left: 902px;
  top: 148px;
  width: 750px;
  height: 500px;
}
.seo-illustration::before {
  content: "";
  position: absolute;
  inset: 18px 34px 34px 28px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 78% 10%, rgba(113, 188, 255, 0.38), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,.64), rgba(221,240,255,.34));
  filter: blur(.2px);
  box-shadow: 0 22px 44px rgba(80, 148, 226, .18);
}
.seo-illustration::after {
  content: "";
  position: absolute;
  left: 84px;
  bottom: 14px;
  width: 560px;
  height: 88px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59,139,244,.25), rgba(139,197,255,.11) 48%, transparent 74%);
}
.hero-main-image {
  position: absolute;
  left: 52px;
  top: 8px;
  width: 646px;
  height: 440px;
  object-fit: contain;
  display: block;
  z-index: 1;
  filter: drop-shadow(0 22px 28px rgba(42, 120, 220, .18));
}
.float-chip,
.float-metric {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  border: 1px solid rgba(201, 225, 251, .92);
  background: rgba(255,255,255,.9);
  box-shadow: 0 16px 30px rgba(69, 139, 224, .18);
  backdrop-filter: blur(12px);
}
.float-chip {
  min-width: 190px;
  height: 56px;
  gap: 10px;
  padding: 0 18px 0 12px;
  border-radius: 28px;
  color: #214d83;
  font-size: 18px;
  font-weight: 900;
}
.float-chip i {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-style: normal;
  font-size: 15px;
  background: linear-gradient(135deg, #4da0ff, #126dee);
}
.chip-search {
  left: 0;
  top: 16px;
}
.chip-ai {
  right: 0;
  top: 24px;
}
.chip-ai i {
  background: linear-gradient(135deg, #111f3d, #2e7af2);
}
.float-metric {
  left: 0;
  bottom: 26px;
  width: 190px;
  height: 92px;
  border-radius: 24px;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}
.float-metric strong {
  color: #237af2;
  font-size: 34px;
  line-height: 1;
}
.float-metric span {
  color: #637ea3;
  font-size: 17px;
  font-weight: 800;
}
.fish-shape,
.lens,
.handle,
.arrow-rise,
.mini-card,
.base-ring {
  display: none;
}
.mini-card i {
  position: absolute;
}

.stats-strip {
  position: absolute;
  left: 96px;
  width: 1600px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-radius: 24px;
  color: #fff;
  background: linear-gradient(90deg, #56a4ff, #126fea);
  border: 1px solid #66b1ff;
  box-shadow: 0 20px 36px rgba(29,111,234,.27);
}
.hero-stats { top: 756px; height: 180px; }
.engine-stats { top: 1275px; height: 180px; }
.stats-strip div {
  position: relative;
  padding-left: 142px;
  padding-top: 39px;
}
.stats-strip div + div { border-left: 1px solid rgba(255,255,255,.18); }
.stats-strip i {
  position: absolute;
  left: 52px;
  top: 45px;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-style: normal;
  font-size: 17px;
  font-weight: 900;
  background: linear-gradient(135deg, rgba(255,255,255,.33), rgba(255,255,255,.12));
  border: 1px solid rgba(255,255,255,.45);
}
.stats-strip strong { display: block; font-size: 28px; line-height: 1; margin-bottom: 18px; }
.stats-strip span, .stats-strip small { display: block; color: #ddeeff; font-size: 17px; font-weight: 800; line-height: 1.9; }

.engines-section h2 {
  position: absolute;
  left: 96px;
  top: 122px;
  margin: 0;
  width: 940px;
  font-size: 54px;
  line-height: 1.25;
  color: #173e6b;
}
.section-label {
  position: absolute;
  left: 96px;
  top: 76px;
  color: #357be4;
  font-size: 20px;
  font-weight: 900;
}
.section-label i {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-right: 14px;
  border-radius: 50%;
  background: radial-gradient(circle, #75b5ff, #2a78f2);
  box-shadow: 0 0 8px rgba(42,128,240,.5);
}
.section-desc {
  position: absolute;
  left: 96px;
  top: 268px;
  margin: 0;
  width: 820px;
  color: #6f86a6;
  font-size: 22px;
  line-height: 1.6;
}
.engine-orbit {
  position: absolute;
  left: 1048px;
  top: 66px;
  width: 600px;
  height: 360px;
}
.engine-core {
  position: absolute;
  left: 170px;
  top: 88px;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #2677f2;
  font-size: 58px;
  font-weight: 900;
  background: radial-gradient(circle, #fff, #dcecff);
  border: 10px solid #9fc5ff;
  box-shadow: 0 18px 32px rgba(33,110,219,.25);
}
.engine-orbit::before {
  content: "";
  position: absolute;
  left: 40px;
  top: 55px;
  width: 500px;
  height: 260px;
  border-radius: 50%;
  border: 2px solid rgba(183,213,249,.75);
  transform: rotate(-14deg);
}
.float {
  position: absolute;
  display: grid;
  place-items: center;
  min-width: 76px;
  height: 60px;
  padding: 0 16px;
  border-radius: 16px;
  background: #f7fbff;
  color: #526f98;
  font-size: 18px;
  font-weight: 900;
  box-shadow: 0 10px 18px rgba(121,174,235,.20);
  border: 1px solid #d6e7f8;
}
.baidu { left: 58px; top: 176px; color: #1e72e8; }
.bing { left: 188px; top: 18px; color: #178a79; }
.google { left: 358px; top: 64px; color: #dd6c34; }
.so { left: 438px; top: 224px; color: #19a759; }
.sm { left: 92px; top: 286px; color: #455f8c; }
.sg { left: 496px; top: 170px; }
.business-bg {
  position: absolute;
  left: 0;
  top: 486px;
  width: 1792px;
  height: 972px;
  background: linear-gradient(180deg, #f3faff, #fff);
}
.business-label { top: 548px; }
.engines-section h3 {
  position: absolute;
  left: 96px;
  top: 594px;
  margin: 0;
  font-size: 41px;
  color: #173e6b;
}
.business-desc {
  position: absolute;
  left: 96px;
  top: 676px;
  margin: 0;
  color: #6f86a6;
  font-size: 20px;
}
.business-grid {
  position: absolute;
  left: 96px;
  top: 732px;
  width: 1600px;
  display: grid;
  grid-template-columns: 784px 778px;
  gap: 32px 38px;
}
.biz-card {
  position: relative;
  height: 230px;
  border-radius: 22px;
  background: linear-gradient(120deg, #fff, #eef8ff);
  border: 1px solid #d8eafb;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.biz-card:nth-child(n+3) { height: 240px; }
.biz-card::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 12px;
  width: calc(100% - 44px);
  height: 28px;
  border-radius: 16px;
  background: rgba(255,255,255,.55);
}
.biz-icon {
  position: absolute;
  left: 32px;
  top: 38px;
  width: 82px;
  height: 82px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 34px;
  font-weight: 900;
  background: linear-gradient(135deg, #72aeff, #1f70eb);
  box-shadow: 0 10px 18px rgba(35,111,234,.25);
}
.biz-card h4 {
  position: absolute;
  left: 142px;
  top: 54px;
  margin: 0;
  color: #1266d8;
  font-size: 29px;
}
.biz-card b {
  position: absolute;
  left: 142px;
  top: 105px;
  width: 39px;
  height: 4px;
  border-radius: 2px;
  background: #1a7bf2;
}
.biz-card p {
  position: absolute;
  left: 142px;
  top: 120px;
  width: 390px;
  color: #6c85a6;
  font-size: 18px;
  line-height: 1.55;
}
.teal { background: linear-gradient(120deg, #f8fdff, #ebf8ff); }
.teal .biz-icon { background: linear-gradient(135deg, #42c6e4, #0786b6); }
.teal h4 { color: #096dad; }
.teal b { background: #14a5d3; }
.gold { background: linear-gradient(120deg, #fff, #fff7e9); border-color: #f3deba; }
.gold .biz-icon { background: linear-gradient(135deg, #ffd76d, #ff9d1e); }
.gold h4 { color: #174a7a; }
.site-ill, .bar-ill, .crown-ill, .search-ill {
  position: absolute;
  right: 44px;
  top: 54px;
  width: 190px;
  height: 130px;
  border-radius: 14px;
  background: linear-gradient(180deg, #e9f4ff, rgba(255,255,255,.55));
  border: 1px solid #c9e1ff;
}
.site-ill span { position: absolute; left: 22px; right: 22px; height: 15px; border-radius: 9px; background: #bdd8fb; }
.site-ill span:nth-child(1) { top: 26px; }
.site-ill span:nth-child(2) { top: 58px; width: 90px; }
.site-ill span:nth-child(3) { top: 90px; width: 130px; }
.bar-ill { border: 0; background: transparent; }
.bar-ill i { position: absolute; bottom: 0; width: 28px; border-radius: 4px; background: #51a9f6; }
.bar-ill i:nth-child(1) { left: 20px; height: 38px; background: #44c4eb; }
.bar-ill i:nth-child(2) { left: 60px; height: 61px; }
.bar-ill i:nth-child(3) { left: 100px; height: 92px; background: #2e80f2; }
.bar-ill i:nth-child(4) { left: 140px; height: 120px; background: #6ab8ff; }
.crown-ill { display: grid; place-items: center; color: #ffad2b; font-size: 86px; background: transparent; border: 0; }
.search-ill { width: 145px; height: 145px; right: 70px; top: 48px; border-radius: 50%; border: 28px solid #e2efff; background: #237af0; box-shadow: 0 0 0 1px #c8ddf9 inset; }

.brand-section { background: linear-gradient(120deg, #f8fcff, #eff8ff 55%, #fff); }
.brand-label { top: 83px; left: 100px; font-size: 27px; }
.brand-section h2 {
  position: absolute;
  left: 100px;
  top: 132px;
  margin: 0;
  font-size: 57px;
  line-height: 1.28;
  color: #173d69;
}
.brand-desc {
  position: absolute;
  left: 100px;
  top: 312px;
  margin: 0;
  color: #6d86a6;
  font-size: 22px;
  line-height: 1.9;
}
.rank-ill {
  position: absolute;
  left: 1220px;
  top: 95px;
  width: 500px;
  height: 315px;
}
.rank-ill div {
  position: absolute;
  left: 34px;
  top: 0;
  width: 338px;
  height: 230px;
  border-radius: 16px;
  background: linear-gradient(180deg, #fff, #ecf8ff);
  border: 1px solid #bbd9ff;
  box-shadow: 0 18px 30px rgba(40,120,234,.25);
}
.rank-ill i { position: absolute; bottom: 30px; width: 58px; border-radius: 8px; background: linear-gradient(180deg, #7fc9ff, #1971ef); box-shadow: 0 12px 18px rgba(29,111,234,.27); }
.rank-ill i:nth-of-type(1) { left: 242px; height: 90px; }
.rank-ill i:nth-of-type(2) { left: 314px; height: 117px; }
.rank-ill i:nth-of-type(3) { left: 386px; height: 163px; }
.rank-ill b {
  position: absolute;
  left: 214px;
  top: 25px;
  width: 260px;
  height: 190px;
  clip-path: polygon(0 72%, 22% 55%, 38% 68%, 58% 38%, 73% 48%, 92% 10%, 100% 24%, 75% 80%, 55% 70%, 35% 92%, 16% 78%);
  background: linear-gradient(35deg, #83d7ff, #287af1);
}
.brand-grid {
  position: absolute;
  left: 100px;
  top: 470px;
  width: 638px;
  display: grid;
  gap: 44px;
}
.brand-card {
  position: relative;
  height: 238px;
  border-radius: 22px;
  background: linear-gradient(120deg, #fff, #f4faff);
  border: 1px solid #e0edf9;
  box-shadow: var(--shadow);
  padding-left: 170px;
  padding-top: 56px;
}
.brand-card:nth-child(3) { height: 250px; }
.brand-card::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 12px;
  width: 590px;
  height: 26px;
  border-radius: 16px;
  background: rgba(255,255,255,.55);
}
.brand-card i {
  position: absolute;
  left: 56px;
  top: 74px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-style: normal;
  font-weight: 900;
  background: linear-gradient(135deg, #70b8ff, #1e75eb);
  box-shadow: 0 9px 16px rgba(31,117,234,.27);
}
.brand-card i::before {
  content: "";
  position: absolute;
  width: 106px;
  height: 106px;
  border-radius: 50%;
  left: -22px;
  top: -22px;
  background: #ddf0ff;
  z-index: -1;
}
.brand-card h3 { margin: 0 0 20px; font-size: 30px; color: #173e6b; }
.brand-card p { margin: 0; width: 420px; color: #5f789b; font-size: 21px; line-height: 1.5; }
.serp-card {
  position: absolute;
  left: 780px;
  top: 470px;
  width: 938px;
  height: 870px;
  border-radius: 22px;
  background: linear-gradient(120deg, #e7f5ff, #ddf0ff);
  border: 1px solid #d5e9fa;
  box-shadow: 0 18px 34px rgba(120,173,235,.21);
  padding: 32px;
}
.search-row {
  height: 90px;
  border-radius: 45px;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 0 26px;
  background: #fff;
  border: 1px solid #cfe3fa;
  box-shadow: 0 10px 20px rgba(117,174,235,.15);
}
.search-row span { width: 190px; height: 12px; border-radius: 8px; background: #cfe4ff; }
.search-row b { flex: 1; color: #245080; font-size: 22px; }
.search-row em { width: 100px; height: 46px; border-radius: 23px; display: grid; place-items: center; font-style: normal; color: #fff; background: #237af2; }
.result {
  height: 72px;
  margin-top: 30px;
  border-radius: 18px;
  background: rgba(255,255,255,.86);
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 0 18px;
}
.result i { width: 44px; height: 44px; border-radius: 50%; background: #237af2; }
.result strong { display: block; font-size: 21px; color: #173e6b; }
.result span { color: #6d86a6; font-size: 17px; }
.meeting-img {
  margin-top: 27px;
  height: 230px;
  border-radius: 18px;
  background: linear-gradient(rgba(24,96,172,.25), rgba(24,96,172,.25)), url("/images/rl.webp") center/cover;
  box-shadow: 0 10px 20px rgba(109,157,205,.21);
}

.faq-section { background: linear-gradient(120deg, #f8fcff, #eff8ff 58%, #fff); }
.small-title, .news-title {
  position: absolute;
  left: 120px;
  top: 58px;
  color: var(--blue);
  font-size: 26px;
  font-weight: 900;
}
.small-title::after {
  content: "";
  position: absolute;
  left: 0;
  top: 42px;
  width: 162px;
  height: 3px;
  border-radius: 2px;
  background: var(--blue);
}
.faq-section h2 {
  position: absolute;
  left: 120px;
  top: 116px;
  margin: 0;
  color: #123c70;
  font-size: 56px;
  line-height: 1.35;
}
.faq-section h2 span { color: #227cf2; margin-left: 18px; }
.faq-section .section-inner > p {
  position: absolute;
  left: 120px;
  top: 302px;
  margin: 0;
  color: #637ea3;
  font-size: 24px;
  line-height: 2.05;
}
.search-art {
  position: absolute;
  left: 1128px;
  top: 70px;
  width: 500px;
  height: 260px;
}
.search-art .window {
  position: absolute;
  width: 430px;
  height: 250px;
  border-radius: 14px;
  background: linear-gradient(180deg, #fff, #eaf6ff);
  border: 1px solid #bbd9ff;
  box-shadow: 0 20px 32px rgba(42,128,240,.21);
}
.search-art .window::before {
  content: "";
  display: block;
  height: 34px;
  border-radius: 14px 14px 0 0;
  background: linear-gradient(180deg, #80bfff, #2a7ef1);
}
.search-art b {
  position: absolute;
  left: 50px;
  top: 60px;
  width: 276px;
  height: 44px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 9px 20px rgba(79,145,232,.23);
}
.search-art span {
  position: absolute;
  left: 48px;
  top: 150px;
  width: 230px;
  height: 78px;
  border-bottom: 5px solid #2b80f2;
  transform: skewY(-18deg);
}
.search-art i {
  position: absolute;
  left: 250px;
  top: 120px;
  width: 130px;
  height: 92px;
  background: repeating-linear-gradient(90deg, #dcecff 0 28px, transparent 28px 43px);
}
.search-art em {
  position: absolute;
  left: 268px;
  top: 135px;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  border: 18px solid #2b80f2;
  font-style: normal;
}
.search-art strong {
  position: absolute;
  left: 330px;
  top: 210px;
  width: 78px;
  height: 22px;
  border-radius: 11px;
  transform: rotate(45deg);
  background: #207af0;
}
.faq-list {
  position: absolute;
  left: 120px;
  top: 430px;
  width: 1000px;
  display: grid;
  gap: 28px;
}
.faq-list article {
  position: relative;
  height: 178px;
  border-radius: 18px;
  padding: 32px 30px 0 250px;
  background: linear-gradient(120deg, #fff, #f7fbff);
  border: 1px solid #d8e9ff;
  box-shadow: 0 14px 28px rgba(120,174,235,.15);
}
.faq-list article:nth-child(3) { height: 182px; }
.faq-list article::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 195px;
  border-radius: 18px 0 0 18px;
  background: #f0f8ff;
}
.faq-list i {
  position: absolute;
  left: 42px;
  top: 34px;
  width: 116px;
  height: 116px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-style: normal;
  font-size: 34px;
  background: linear-gradient(140deg, #5bb1ff, #1975f0);
  box-shadow: 0 12px 18px rgba(31,117,234,.27);
}
.faq-list h3 { margin: 0 0 18px; font-size: 28px; color: #123c70; }
.faq-list p { margin: 0; color: #244c82; font-size: 22px; line-height: 1.6; }
.reserve-card {
  position: absolute;
  left: 1154px;
  top: 430px;
  width: 520px;
  height: 592px;
  border-radius: 28px;
  padding: 48px 42px;
  background: linear-gradient(135deg, #eef8ff, #ddefff);
  box-shadow: 0 18px 34px rgba(120,174,235,.16);
}
.reserve-card h3 { margin: 0 0 28px; color: var(--blue); font-size: 31px; }
.reserve-card p { margin: 0 0 42px; color: #637ea3; font-size: 21px; line-height: 1.8; }
.reserve-card ul { margin: 0; padding: 0; list-style: none; }
.reserve-card li { position: relative; margin: 0 0 28px; padding-left: 38px; color: #234d82; font-size: 22px; }
.reserve-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 14px;
  background: var(--blue);
}
.reserve-card a {
  position: absolute;
  left: 42px;
  bottom: 50px;
  width: 250px;
  height: 74px;
  border-radius: 37px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 22px;
  font-weight: 900;
  background: linear-gradient(160deg, #2f95ff, #116dee);
  box-shadow: 0 14px 22px rgba(31,117,234,.29);
}

.news-section { background: linear-gradient(120deg, #f8fcff, #eff8ff 58%, #fff); }
.news-title { left: 124px; top: 70px; font-size: 24px; }
.news-section h2 {
  position: absolute;
  left: 124px;
  top: 106px;
  margin: 0;
  font-size: 54px;
  color: #123c70;
}
.news-section h2 span { color: #237af2; }
.news-section .section-inner > p {
  position: absolute;
  left: 124px;
  top: 210px;
  margin: 0;
  color: #637ea3;
  font-size: 23px;
}
.news-art {
  position: absolute;
  right: 110px;
  top: 38px;
  width: 360px;
  height: 205px;
}
.news-art::before {
  content: "";
  position: absolute;
  left: 110px;
  top: 22px;
  width: 220px;
  height: 145px;
  border-radius: 24px;
  background: linear-gradient(125deg, #fff, #dcecff);
  border: 1px solid #cae1fb;
  box-shadow: 0 16px 28px rgba(110,168,237,.25);
}
.news-art b {
  position: absolute;
  left: 98px;
  top: 10px;
  width: 120px;
  height: 48px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 26px;
  font-style: italic;
  background: linear-gradient(180deg, #3e9aff, #126dee);
  transform: rotate(-2deg);
  z-index: 2;
}
.news-art i {
  position: absolute;
  right: 16px;
  top: 18px;
  width: 58px;
  height: 150px;
  border-radius: 50%;
  background: linear-gradient(180deg, #eaf5ff, #bbd8fa);
}
.news-art span {
  position: absolute;
  left: 40px;
  top: 108px;
  width: 78px;
  height: 56px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #dcefff;
  font-size: 28px;
  letter-spacing: 4px;
  background: linear-gradient(160deg, #3294ff, #106dee);
}
.news-grid {
  position: absolute;
  left: 124px;
  top: 282px;
  display: grid;
  grid-template-columns: repeat(3, 492px);
  gap: 34px;
}
.news-card {
  position: relative;
  height: 520px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid #e0edf9;
  box-shadow: 0 16px 30px rgba(120,174,235,.16);
  overflow: hidden;
}
.news-img {
  position: absolute;
  left: 16px;
  top: 16px;
  width: 460px;
  height: 226px;
  border-radius: 16px 16px 0 0;
  background-size: cover;
  background-position: center;
}
.img-a { background-image: linear-gradient(rgba(36,117,220,.15), rgba(36,117,220,.15)), url("https://images.unsplash.com/photo-1551288049-bebda4e38f71?auto=format&fit=crop&w=900&q=80"); }
.img-b { background-image: linear-gradient(rgba(7,44,94,.25), rgba(7,44,94,.25)), url("https://images.unsplash.com/photo-1551288049-bebda4e38f71?auto=format&fit=crop&w=900&q=80"); filter: hue-rotate(20deg) saturate(.9) brightness(.72); }
.img-c { background-image: linear-gradient(rgba(36,117,220,.10), rgba(36,117,220,.10)), url("https://images.unsplash.com/photo-1516321318423-f06f85e504b3?auto=format&fit=crop&w=900&q=80"); }
.news-card > i {
  position: absolute;
  left: 58px;
  top: 196px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-style: normal;
  font-size: 27px;
  background: linear-gradient(140deg, #5bb1ff, #1975f0);
  box-shadow: 0 10px 18px rgba(31,117,234,.29);
}
.news-card small {
  position: absolute;
  left: 34px;
  top: 282px;
  color: #6d86a6;
  font-size: 18px;
}
.news-card h3 {
  position: absolute;
  left: 34px;
  top: 316px;
  width: 420px;
  margin: 0;
  color: #123c70;
  font-size: 23px;
  line-height: 1.42;
}
.news-card p {
  position: absolute;
  left: 34px;
  top: 404px;
  width: 420px;
  margin: 0;
  color: #637ea3;
  font-size: 18px;
  line-height: 1.55;
}
.news-card > b {
  position: absolute;
  right: 28px;
  bottom: 25px;
  color: #237af2;
  font-size: 34px;
}

.footer {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 1792px;
  height: 285px;
  background: linear-gradient(100deg, #0754a8, #03245c 58%, #021946);
  color: #ddebfa;
  overflow: hidden;
}
.footer-wave {
  position: absolute;
  right: 0;
  bottom: -10px;
  width: 560px;
  height: 220px;
  background: linear-gradient(115deg, rgba(13,123,255,.62), rgba(6,73,176,.25));
  clip-path: polygon(0 70%, 20% 55%, 38% 58%, 56% 38%, 72% 18%, 100% 0, 100% 100%, 0 100%);
}
.f-brand { position: absolute; left: 150px; top: 48px; width: 640px; }
.f-brand img {
  width: 210px;
  height: 66px;
  display: block;
  object-fit: contain;
  filter: brightness(0) invert(1) drop-shadow(0 8px 14px rgba(0, 0, 0, .18));
}
.f-brand p { width: 560px; margin: 20px 0 24px; font-size: 18px; line-height: 1.7; color: #ddebfa; }
.f-brand small { display: block; color: #a9c4e4; font-size: 15px; }
.f-service { position: absolute; left: 835px; top: 70px; width: 360px; padding-left: 36px; border-left: 1px solid rgba(255,255,255,.15); }
.f-contact { position: absolute; left: 1280px; top: 54px; width: 360px; padding-left: 36px; border-left: 1px solid rgba(255,255,255,.10); }
.footer h4 { margin: 0 0 22px; color: #fff; font-size: 25px; }
.footer p { margin: 0 0 18px; font-size: 19px; line-height: 1.5; }
.footer-qr {
  width: 118px;
  height: 118px;
  display: block;
  margin: -4px 0 16px;
  padding: 7px;
  border-radius: 14px;
  object-fit: cover;
  background: #fff;
  box-shadow: 0 14px 24px rgba(0, 0, 0, .18);
}

@media (max-width: 768px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    background: var(--page-bg);
  }

  #page-shell {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    display: block;
    min-height: 100vh;
    background: var(--page-bg);
  }

  .page-root.is-mobile-layout {
    width: 100%;
    max-width: 100%;
    height: auto;
    overflow: hidden;
    background: var(--page-bg);
    transform: none !important;
  }

  .is-mobile-layout .section {
    width: 100%;
    max-width: 100%;
    height: auto;
    min-height: 0;
    padding: 38px 18px;
    overflow: hidden;
    background: var(--page-bg);
  }

  .is-mobile-layout .section-inner,
  .is-mobile-layout .footer-inner {
    width: 100%;
    height: auto;
    margin: 0;
    zoom: 1;
    transform: none;
  }

  .is-mobile-layout .hero-section::before {
    display: none;
  }

  .is-mobile-layout .hero-section {
    width: 100%;
    margin-left: 0;
  }

  .is-mobile-layout .topbar,
  .is-mobile-layout .hero-badge,
  .is-mobile-layout .hero-title,
  .is-mobile-layout .hero-subtitle,
  .is-mobile-layout .hero-pills,
  .is-mobile-layout .hero-actions,
  .is-mobile-layout .stats-strip,
  .is-mobile-layout .section-label,
  .is-mobile-layout .engines-section h2,
  .is-mobile-layout .section-desc,
  .is-mobile-layout .business-label,
  .is-mobile-layout .engines-section h3,
  .is-mobile-layout .business-desc,
  .is-mobile-layout .business-grid,
  .is-mobile-layout .brand-label,
  .is-mobile-layout .brand-section h2,
  .is-mobile-layout .brand-desc,
  .is-mobile-layout .brand-grid,
  .is-mobile-layout .serp-card,
  .is-mobile-layout .small-title,
  .is-mobile-layout .faq-section h2,
  .is-mobile-layout .faq-section .section-inner > p,
  .is-mobile-layout .faq-list,
  .is-mobile-layout .reserve-card,
  .is-mobile-layout .news-title,
  .is-mobile-layout .news-section h2,
  .is-mobile-layout .news-section .section-inner > p,
  .is-mobile-layout .news-grid,
  .is-mobile-layout .footer {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: 100%;
  }

  .is-mobile-layout .hero-glow,
  .is-mobile-layout .hero-wave,
  .is-mobile-layout .seo-illustration,
  .is-mobile-layout .engine-hero-bg,
  .is-mobile-layout .engine-orbit,
  .is-mobile-layout .business-bg,
  .is-mobile-layout .rank-ill,
  .is-mobile-layout .search-art,
  .is-mobile-layout .news-art,
  .is-mobile-layout .footer-wave {
    display: none;
  }

  .is-mobile-layout .topbar {
    position: sticky;
    top: 0;
    left: 0;
    z-index: 100;
    width: calc(100% + 36px);
    max-width: calc(100% + 36px);
    height: auto;
    display: grid;
    grid-template-columns: 160px 44px;
    justify-content: space-between;
    gap: 8px 12px;
    align-items: center;
    padding: 12px 18px 18px;
    margin: -38px -18px 26px;
    background: rgba(248, 252, 255, 0.94);
    border-bottom: 1px solid rgba(216, 233, 255, 0.85);
    box-shadow: 0 10px 24px rgba(68, 132, 212, 0.12);
    backdrop-filter: blur(16px);
  }

  .is-mobile-layout .topbar.is-sticky {
    left: auto;
    width: calc(100% + 36px);
    height: auto;
    border-radius: 0;
  }

  .is-mobile-layout .brand-mark {
    width: 160px;
    height: 52px;
  }

  .is-mobile-layout .mobile-menu-toggle {
    display: grid;
    justify-self: end;
    align-self: center;
  }

  .is-mobile-layout .nav {
    grid-column: 1 / -1;
    width: 100%;
    margin-left: 0;
    display: none;
    grid-template-columns: 1fr;
    gap: 8px;
    overflow: visible;
    padding: 12px 0 0;
    font-size: 14px;
    scrollbar-width: none;
  }

  .is-mobile-layout .topbar.menu-open .nav {
    display: grid;
  }

  .is-mobile-layout .nav::-webkit-scrollbar {
    display: none;
  }

  .is-mobile-layout .nav a {
    width: 100%;
    display: block;
    padding: 12px 14px;
    border-radius: 14px;
    background: #eff7ff;
    border: 1px solid #dceeff;
    color: #2d5f9f;
  }

  .is-mobile-layout .phone-btn {
    grid-column: 1 / -1;
    margin-left: 0;
    width: 100%;
    display: none;
  }

  .is-mobile-layout .topbar.menu-open .phone-btn {
    display: flex;
  }

  .floating-tools {
    right: 12px;
    top: auto;
    bottom: 14px;
    gap: 10px;
    transform: none;
  }

  .float-wechat-card,
  .float-wechat-card.is-collapsed {
    display: flex;
    align-items: center;
    width: auto;
    max-width: calc(100vw - 24px);
    padding: 10px 14px;
    border-radius: 999px;
  }

  .float-title,
  .float-wechat-card.is-collapsed .float-title {
    justify-content: flex-start;
    gap: 8px;
  }

  .float-title .wechat-icon {
    width: 18px;
    height: 18px;
  }

  .float-title-text,
  .wechat-toggle,
  .qr-code,
  .float-wechat-card p,
  .float-wechat-card.is-collapsed .float-title-text,
  .float-wechat-card.is-collapsed .wechat-toggle {
    display: none !important;
  }

  .wechat-panel,
  .float-wechat-card.is-collapsed .wechat-panel {
    opacity: 1;
    max-width: none;
    max-height: none;
    overflow: visible;
    pointer-events: auto;
  }

  .float-wechat-card.is-collapsed .wechat-toggle {
    position: static;
    inset: auto;
    width: auto;
    height: auto;
    margin: 0;
  }

  .float-wechat-card strong,
  .float-wechat-card.is-collapsed .wechat-panel strong {
    display: block;
    color: #237af2;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.2;
    white-space: nowrap;
  }

  .float-wechat-card strong::before {
    content: "微信：";
  }

  .back-top-btn {
    width: 44px;
    height: 44px;
  }

  .is-mobile-layout .hero-badge {
    display: inline-flex;
    width: auto;
    max-width: 100%;
    height: auto;
    min-height: 40px;
    margin-bottom: 18px;
    font-size: 15px;
    line-height: 1.4;
    white-space: normal;
  }

  .is-mobile-layout .hero-title {
    margin: 0;
    font-size: 34px;
    line-height: 1.22;
  }

  .is-mobile-layout .hero-title em,
  .is-mobile-layout .hero-title b,
  .is-mobile-layout .hero-title span {
    font-size: inherit;
  }

  .is-mobile-layout .hero-title b {
    padding: 0 10px;
  }

  .is-mobile-layout .hero-subtitle {
    margin: 18px 0 0;
    font-size: 19px;
    line-height: 1.6;
  }

  .is-mobile-layout .hero-pills {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  .is-mobile-layout .hero-pills span {
    height: auto;
    min-height: 36px;
    font-size: 14px;
  }

  .is-mobile-layout .hero-pills .platform-icon {
    width: 22px;
    height: 22px;
    font-size: 11px;
  }

  .is-mobile-layout .hero-pills .platform-logo {
    width: 22px;
    height: 22px;
  }

  .is-mobile-layout .hero-actions {
    margin-top: 22px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .is-mobile-layout .primary-btn,
  .is-mobile-layout .secondary-btn {
    width: 100%;
    height: 56px;
  }

  .is-mobile-layout .stats-strip {
    margin-top: 26px;
    height: auto;
    display: grid;
    grid-template-columns: 1fr;
    border-radius: 20px;
  }

  .is-mobile-layout .stats-strip div {
    min-height: 118px;
    padding: 24px 20px 22px 104px;
  }

  .is-mobile-layout .stats-strip div + div {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }

  .is-mobile-layout .stats-strip i {
    left: 24px;
    top: 24px;
    width: 58px;
    height: 58px;
  }

  .is-mobile-layout .section-label,
  .is-mobile-layout .small-title,
  .is-mobile-layout .news-title {
    margin-bottom: 16px;
    font-size: 18px;
  }

  .is-mobile-layout .engines-section h2,
  .is-mobile-layout .brand-section h2,
  .is-mobile-layout .faq-section h2,
  .is-mobile-layout .news-section h2 {
    margin: 0;
    font-size: 30px;
    line-height: 1.35;
  }

  .is-mobile-layout .engines-section h3 {
    margin: 40px 0 0;
    font-size: 28px;
    line-height: 1.35;
  }

  .is-mobile-layout .section-desc,
  .is-mobile-layout .business-desc,
  .is-mobile-layout .brand-desc,
  .is-mobile-layout .faq-section .section-inner > p,
  .is-mobile-layout .news-section .section-inner > p {
    margin: 16px 0 0;
    font-size: 16px;
    line-height: 1.75;
  }

  .is-mobile-layout .business-grid,
  .is-mobile-layout .brand-grid,
  .is-mobile-layout .faq-list,
  .is-mobile-layout .news-grid {
    margin-top: 24px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .is-mobile-layout .biz-card,
  .is-mobile-layout .biz-card:nth-child(n+3),
  .is-mobile-layout .brand-card,
  .is-mobile-layout .brand-card:nth-child(3),
  .is-mobile-layout .faq-list article,
  .is-mobile-layout .faq-list article:nth-child(3),
  .is-mobile-layout .news-card,
  .is-mobile-layout .reserve-card,
  .is-mobile-layout .serp-card {
    height: auto;
    min-height: 0;
  }

  .is-mobile-layout .biz-card {
    padding: 118px 22px 24px;
  }

  .is-mobile-layout .biz-card h4,
  .is-mobile-layout .biz-card b,
  .is-mobile-layout .biz-card p {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
  }

  .is-mobile-layout .biz-card h4 {
    margin: 0 0 14px;
    font-size: 24px;
  }

  .is-mobile-layout .biz-card p {
    margin: 16px 0 0;
    font-size: 16px;
  }

  .is-mobile-layout .site-ill,
  .is-mobile-layout .bar-ill,
  .is-mobile-layout .crown-ill,
  .is-mobile-layout .search-ill {
    display: none;
  }

  .is-mobile-layout .brand-card {
    padding: 112px 22px 24px;
  }

  .is-mobile-layout .brand-card h3 {
    font-size: 24px;
  }

  .is-mobile-layout .brand-card p {
    width: auto;
    font-size: 16px;
  }

  .is-mobile-layout .serp-card {
    margin-top: 22px;
    padding: 18px;
  }

  .is-mobile-layout .search-row {
    height: auto;
    min-height: 64px;
    border-radius: 18px;
    gap: 12px;
  }

  .is-mobile-layout .search-row span,
  .is-mobile-layout .search-row em {
    display: none;
  }

  .is-mobile-layout .result {
    height: auto;
    min-height: 68px;
    margin-top: 14px;
  }

  .is-mobile-layout .meeting-img {
    height: 180px;
  }

  .is-mobile-layout .faq-list article {
    padding: 74px 22px 24px;
  }

  .is-mobile-layout .faq-list article::before {
    width: 82px;
    height: 82px;
    border-radius: 18px 0 24px 0;
  }

  .is-mobile-layout .faq-list i {
    left: 22px;
    top: 20px;
    width: 46px;
    height: 46px;
    font-size: 18px;
    box-shadow: 0 8px 14px rgba(31,117,234,.22);
  }

  .is-mobile-layout .faq-list h3 {
    font-size: 23px;
  }

  .is-mobile-layout .faq-list p {
    font-size: 16px;
  }

  .is-mobile-layout .reserve-card {
    margin-top: 22px;
    padding: 28px 22px 104px;
  }

  .is-mobile-layout .reserve-card h3 {
    font-size: 25px;
  }

  .is-mobile-layout .reserve-card p,
  .is-mobile-layout .reserve-card li {
    font-size: 16px;
  }

  .is-mobile-layout .reserve-card a {
    left: 22px;
    right: 22px;
    bottom: 24px;
    width: auto;
    height: 58px;
    font-size: 18px;
  }

  .is-mobile-layout .news-card {
    padding-bottom: 24px;
  }

  .is-mobile-layout .news-img,
  .is-mobile-layout .news-card > i,
  .is-mobile-layout .news-card small,
  .is-mobile-layout .news-card h3,
  .is-mobile-layout .news-card p,
  .is-mobile-layout .news-card > b {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: auto;
  }

  .is-mobile-layout .news-img {
    width: calc(100% - 32px);
    height: 190px;
    margin: 16px;
  }

  .is-mobile-layout .news-card > i {
    width: 58px;
    height: 58px;
    margin: -44px 0 16px 34px;
  }

  .is-mobile-layout .news-card small,
  .is-mobile-layout .news-card h3,
  .is-mobile-layout .news-card p {
    display: block;
    margin: 0 24px 14px;
  }

  .is-mobile-layout .news-card h3 {
    font-size: 22px;
  }

  .is-mobile-layout .news-card p {
    font-size: 16px;
  }

  .is-mobile-layout .news-card > b {
    display: block;
    margin: 0 24px;
  }

  .is-mobile-layout .footer {
    margin: 34px -18px -38px;
    width: calc(100% + 36px);
    height: auto;
    min-height: 0;
    padding: 36px 24px;
  }

  .is-mobile-layout .f-brand,
  .is-mobile-layout .f-service,
  .is-mobile-layout .f-contact {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
  }

  .is-mobile-layout .f-brand {
    margin-bottom: 30px;
  }

  .is-mobile-layout .f-brand img {
    width: 170px;
    height: 54px;
  }

  .is-mobile-layout .f-brand p {
    width: auto;
    font-size: 15px;
  }

  .is-mobile-layout .f-brand small {
    font-size: 12px;
    line-height: 1.6;
  }

  .is-mobile-layout .footer-qr {
    width: 108px;
    height: 108px;
    margin: 0 0 16px;
  }

  .is-mobile-layout .f-service,
  .is-mobile-layout .f-contact {
    margin-top: 26px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
  }
}

/* Sub pages: article list, article detail, contact */
.subpage {
  background:
    radial-gradient(circle at 82% 0, rgba(211, 234, 255, 0.72), transparent 30%),
    linear-gradient(120deg, #f8fcff 0%, #eff8ff 58%, #fff 100%);
  color: #123c70;
}

.sub-container {
  width: min(1460px, calc(100% - 64px));
  margin: 0 auto;
}

.sub-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(248, 252, 255, 0.94);
  border-bottom: 1px solid rgba(216, 233, 255, 0.88);
  box-shadow: 0 10px 24px rgba(68, 132, 212, 0.1);
  backdrop-filter: blur(18px);
}

.sub-header-inner {
  height: 92px;
  display: flex;
  align-items: center;
  gap: 34px;
}

.sub-brand {
  width: 205px;
  height: 64px;
  display: flex;
  align-items: center;
}

.sub-brand img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.sub-nav {
  flex: 1;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 22px;
  color: #143e74;
  font-size: 15px;
  font-weight: 800;
}

.sub-nav a {
  position: relative;
  padding: 8px 0;
  white-space: nowrap;
}

.sub-nav a.active,
.sub-nav a:hover {
  color: #237af2;
}

.sub-nav a.active::after,
.sub-nav a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  border-radius: 3px;
  background: #237af2;
}

.sub-search {
  display: none;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  place-items: center;
  color: #334155;
  border-radius: 50%;
}

.sub-search svg {
  width: 20px;
  height: 20px;
}

.sub-phone {
  width: 172px;
  height: 48px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  background: linear-gradient(90deg, #4b95ff, #1d6fea);
  box-shadow: 0 12px 22px rgba(27, 110, 235, 0.26), inset 0 0 0 1px #7cbaff;
}

.sub-hero {
  position: relative;
  min-height: 360px;
  padding: 70px 0 78px;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 34%, rgba(207, 233, 255, 0.95), transparent 22%),
    linear-gradient(120deg, #f8fcff 0%, #eff8ff 58%, #fff 100%);
}

.sub-hero::before {
  content: "";
  position: absolute;
  right: 90px;
  top: -80px;
  width: 560px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, #d3eaff 0%, rgba(255, 255, 255, 0) 70%);
}

.sub-eyebrow {
  margin: 0 0 18px;
  color: #237af2;
  font-size: 22px;
  font-weight: 900;
}

.sub-eyebrow::after {
  content: "";
  display: block;
  width: 150px;
  height: 3px;
  margin-top: 12px;
  border-radius: 3px;
  background: #237af2;
}

.sub-hero h1 {
  position: relative;
  z-index: 1;
  margin: 0;
  max-width: 1050px;
  color: #123c70;
  font-size: 58px;
  line-height: 1.22;
  font-weight: 900;
}

.sub-hero p:not(.sub-eyebrow) {
  position: relative;
  z-index: 1;
  max-width: 980px;
  margin: 26px 0 0;
  color: #637ea3;
  font-size: 22px;
  line-height: 1.8;
}

.news-art-mini {
  position: absolute;
  right: 160px;
  top: 72px;
  width: 300px;
  height: 180px;
}

.news-art-mini::before {
  content: "";
  position: absolute;
  right: 0;
  top: 25px;
  width: 180px;
  height: 122px;
  border-radius: 24px;
  background: linear-gradient(125deg, #fff, #dcecff);
  border: 1px solid #cae1fb;
  box-shadow: 0 16px 28px rgba(110, 168, 237, 0.25);
}

.news-art-mini b {
  position: absolute;
  left: 70px;
  top: 0;
  width: 118px;
  height: 46px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 25px;
  font-style: italic;
  background: linear-gradient(180deg, #3e9aff, #126dee);
  transform: rotate(-2deg);
  z-index: 2;
}

.news-art-mini i {
  position: absolute;
  right: -18px;
  top: 20px;
  width: 56px;
  height: 134px;
  border-radius: 50%;
  background: linear-gradient(180deg, #eaf5ff, #bbd8fa);
}

.news-art-mini span {
  position: absolute;
  left: 20px;
  top: 96px;
  width: 78px;
  height: 56px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #dcefff;
  font-size: 26px;
  letter-spacing: 4px;
  background: linear-gradient(160deg, #3294ff, #106dee);
}

.sub-section {
  padding: 72px 0 92px;
  background: linear-gradient(180deg, #f8fcff, #fff);
}

.sub-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 34px;
  align-items: start;
}

.article-stack {
  display: grid;
  gap: 24px;
}

.list-card {
  display: grid;
  grid-template-columns: 310px 1fr;
  gap: 28px;
  min-height: 230px;
  padding: 18px;
  border-radius: 22px;
  background: linear-gradient(120deg, #fff, #f7fbff);
  border: 1px solid #d8e9ff;
  box-shadow: 0 16px 30px rgba(120, 174, 235, 0.16);
}

.list-thumb {
  min-height: 194px;
  border-radius: 18px;
  background-position: center;
  background-size: cover;
}

.soft-thumb {
  display: grid;
  place-items: center;
  color: #237af2;
  font-size: 54px;
  font-weight: 900;
  background:
    radial-gradient(circle at 70% 20%, #d3eaff, transparent 38%),
    linear-gradient(140deg, #eef8ff, #fff);
  border: 1px solid #d8e9ff;
}

.list-content {
  padding: 16px 14px 10px 0;
}

.list-content small,
.detail-card small {
  color: #6d86a6;
  font-size: 16px;
  font-weight: 700;
}

.list-content h2 {
  margin: 14px 0 14px;
  color: #123c70;
  font-size: 28px;
  line-height: 1.45;
}

.list-content p {
  margin: 0;
  color: #637ea3;
  font-size: 18px;
  line-height: 1.75;
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: #237af2;
  font-size: 18px;
  font-weight: 900;
}

.sub-sidebar {
  display: grid;
  gap: 22px;
}

.side-card,
.side-cta,
.detail-card,
.mini-news-grid article,
.contact-panels-new article,
.contact-info-new section,
.contact-form-new {
  border-radius: 24px;
  background: linear-gradient(120deg, #fff, #f7fbff);
  border: 1px solid #d8e9ff;
  box-shadow: 0 16px 30px rgba(120, 174, 235, 0.16);
}

.side-card,
.side-cta {
  padding: 28px;
}

.side-card h3,
.side-cta h3 {
  margin: 0 0 18px;
  color: #123c70;
  font-size: 24px;
}

.side-card ol {
  margin: 0;
  padding-left: 22px;
  color: #637ea3;
  font-size: 17px;
  line-height: 1.95;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tag-cloud span {
  padding: 9px 14px;
  border-radius: 999px;
  color: #2d5f9f;
  font-size: 15px;
  font-weight: 800;
  background: #eff7ff;
  border: 1px solid #dceeff;
}

.side-cta {
  background: linear-gradient(135deg, #eef8ff, #ddefff);
}

.side-cta p {
  margin: 0 0 22px;
  color: #637ea3;
  font-size: 17px;
  line-height: 1.8;
}

.side-cta a,
.contact-form-new button {
  height: 56px;
  padding: 0 26px;
  border: 0;
  border-radius: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  background: linear-gradient(160deg, #2f95ff, #116dee);
  box-shadow: 0 14px 22px rgba(31, 117, 234, 0.29);
  cursor: pointer;
}

.detail-card {
  padding: 42px 48px;
}

.detail-card p,
.detail-card blockquote {
  margin: 0 0 26px;
  color: #355a84;
  font-size: 21px;
  line-height: 1.95;
}

.detail-card h2 {
  margin: 42px 0 18px;
  color: #123c70;
  font-size: 30px;
  line-height: 1.5;
}

.detail-card blockquote {
  padding: 26px 30px;
  border-left: 6px solid #237af2;
  border-radius: 18px;
  background: #eef8ff;
  color: #234d82;
  font-weight: 800;
}

.sticky-card {
  position: sticky;
  top: 122px;
}

.read-section {
  padding-top: 0;
}

.sub-section-title p {
  margin: 0 0 10px;
  color: #237af2;
  font-size: 18px;
  font-weight: 900;
}

.sub-section-title h2 {
  margin: 0 0 26px;
  color: #123c70;
  font-size: 42px;
}

.mini-news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.mini-news-grid article {
  padding: 28px;
}

.mini-news-grid h3 {
  margin: 0 0 16px;
  color: #123c70;
  font-size: 23px;
  line-height: 1.5;
}

.mini-news-grid p {
  margin: 0;
  color: #637ea3;
  font-size: 17px;
  line-height: 1.8;
}

.contact-visual {
  position: absolute;
  right: 190px;
  top: 82px;
  width: 280px;
  height: 220px;
}

.contact-visual b {
  position: absolute;
  left: 40px;
  top: 18px;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #237af2;
  font-size: 46px;
  font-weight: 900;
  background: radial-gradient(circle, #fff, #d9ecff);
  border: 9px solid #9fc5ff;
  box-shadow: 0 18px 28px rgba(33, 110, 219, 0.22);
}

.contact-visual span {
  position: absolute;
  right: 30px;
  bottom: 26px;
  width: 96px;
  height: 24px;
  border-radius: 14px;
  transform: rotate(45deg);
  background: #207af0;
}

.contact-visual i {
  position: absolute;
  left: 0;
  bottom: 8px;
  width: 250px;
  height: 58px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59,139,244,.25), transparent 70%);
}

.contact-panels-new {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.contact-panels-new article {
  position: relative;
  min-height: 206px;
  padding: 30px 30px 28px 118px;
}

.contact-panels-new i {
  position: absolute;
  left: 30px;
  top: 34px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-style: normal;
  font-size: 22px;
  font-weight: 900;
  background: linear-gradient(140deg, #5bb1ff, #1975f0);
  box-shadow: 0 12px 18px rgba(31, 117, 234, 0.27);
}

.contact-panels-new h3 {
  margin: 0 0 14px;
  color: #123c70;
  font-size: 27px;
}

.contact-panels-new p {
  margin: 0;
  color: #637ea3;
  font-size: 18px;
  line-height: 1.85;
}

.contact-grid-new {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr 500px;
  gap: 30px;
}

.contact-info-new {
  display: grid;
  gap: 24px;
}

.contact-info-new section {
  padding: 34px;
}

.contact-info-new h3,
.contact-form-new h3 {
  margin: 0 0 18px;
  color: #123c70;
  font-size: 29px;
}

.contact-info-new p,
.contact-form-new p {
  margin: 0;
  color: #637ea3;
  font-size: 19px;
  line-height: 1.9;
}

.contact-form-new {
  padding: 34px;
  background: linear-gradient(135deg, #eef8ff, #ddefff);
}

.contact-form-new form {
  margin-top: 24px;
  display: grid;
  gap: 16px;
}

.contact-form-new input,
.contact-form-new textarea {
  width: 100%;
  border: 1px solid #cfe3fa;
  border-radius: 16px;
  padding: 16px 18px;
  color: #123c70;
  font: 600 17px/1.4 Inter, "Microsoft YaHei", sans-serif;
  background: rgba(255, 255, 255, 0.86);
  outline: none;
}

.contact-form-new textarea {
  min-height: 136px;
  resize: vertical;
}

.contact-form-new input:focus,
.contact-form-new textarea:focus {
  border-color: #237af2;
  box-shadow: 0 0 0 4px rgba(35, 122, 242, 0.12);
}

.sub-footer {
  position: relative;
  overflow: hidden;
  padding: 58px 0 34px;
  color: #ddebfa;
  background: linear-gradient(100deg, #0754a8, #03245c 58%, #021946);
}

.sub-footer::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -20px;
  width: 560px;
  height: 220px;
  background: linear-gradient(115deg, rgba(13, 123, 255, 0.62), rgba(6, 73, 176, 0.25));
  clip-path: polygon(0 70%, 20% 55%, 38% 58%, 56% 38%, 72% 18%, 100% 0, 100% 100%, 0 100%);
}

.sub-footer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 330px 300px;
  gap: 48px;
}

.sub-footer-logo {
  width: 210px;
  height: 66px;
  display: block;
  object-fit: contain;
  margin-bottom: 20px;
  filter: brightness(0) invert(1) drop-shadow(0 8px 14px rgba(0, 0, 0, .18));
}

.sub-footer h3 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 25px;
}

.sub-footer p {
  margin: 0;
  color: #c9ddf6;
  font-size: 17px;
  line-height: 1.9;
}

.sub-footer-qr {
  width: 96px;
  height: 96px;
  display: block;
  margin-top: 14px;
  padding: 6px;
  border-radius: 12px;
  object-fit: cover;
  background: #fff;
  box-shadow: 0 12px 20px rgba(0, 0, 0, .18);
}

.sub-copy {
  position: relative;
  z-index: 1;
  margin-top: 34px;
  color: #b8cde7;
  font-size: 15px;
}

@media (max-width: 1100px) {
  .sub-header-inner {
    height: auto;
    padding: 18px 0;
    flex-wrap: wrap;
  }

  .sub-nav {
    order: 3;
    flex-basis: 100%;
    flex-wrap: wrap;
  }

  .sub-layout,
  .contact-grid-new,
  .sub-footer-grid {
    grid-template-columns: 1fr;
  }

  .news-art-mini,
  .contact-visual {
    display: none;
  }

  .list-card {
    grid-template-columns: 1fr;
  }

  .contact-panels-new,
  .mini-news-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .subpage {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .subpage img,
  .subpage video,
  .subpage svg {
    max-width: 100%;
  }

  .sub-container {
    width: min(100% - 28px, 1460px);
    max-width: calc(100% - 28px);
  }

  .sub-header-inner {
    width: 100%;
    max-width: 100%;
    display: grid;
    grid-template-columns: 160px 44px;
    gap: 10px 12px;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
  }

  .sub-brand {
    width: 160px;
    height: 52px;
  }

  .sub-header-inner .mobile-menu-toggle {
    display: grid;
    justify-self: end;
  }

  .sub-nav {
    grid-column: 1 / -1;
    width: 100%;
    order: initial;
    flex-basis: auto;
    display: none;
    grid-template-columns: 1fr;
    justify-content: initial;
    gap: 8px;
    font-size: 14px;
  }

  .sub-header-inner.menu-open .sub-nav {
    display: grid;
  }

  .sub-nav a {
    width: 100%;
    display: block;
    padding: 12px 14px;
    border-radius: 14px;
    background: #eff7ff;
    border: 1px solid #dceeff;
  }

  .sub-phone {
    grid-column: 1 / -1;
    display: none;
    width: 100%;
  }

  .sub-header-inner.menu-open .sub-phone {
    display: flex;
  }

  .sub-hero h1 {
    font-size: 38px;
  }

  .sub-hero p:not(.sub-eyebrow) {
    font-size: 18px;
  }

  .sub-section {
    padding: 48px 0 64px;
  }

  .list-content h2,
  .detail-card h2,
  .contact-info-new h3,
  .contact-form-new h3 {
    font-size: 24px;
  }

  .detail-card {
    padding: 28px;
  }

  .detail-card p,
  .detail-card blockquote {
    font-size: 18px;
  }

  .contact-panels-new article {
    padding-left: 28px;
    padding-top: 110px;
  }
}

.news-card { display:block; color:inherit; text-decoration:none; }
.news-more { text-align:center; margin: 28px 0 8px; }
.news-more a { color:#1d6fd8; font-size:16px; font-weight:700; text-decoration:none; }
.cms-pager { margin: 28px 0 8px; }
.cms-pager ul, .cms-pager { display:flex; flex-wrap:wrap; gap:8px; list-style:none; padding:0; }
.cms-pager a, .cms-pager span, .cms-pager li a, .cms-pager li span {
  display:inline-block; min-width:36px; text-align:center; padding:8px 12px;
  border:1px solid #d6e4f5; border-radius:8px; color:#07406e; text-decoration:none; background:#fff;
}
.cms-pager .active, .cms-pager .current, .cms-pager li.active a { background:#1d6fd8; color:#fff; border-color:#1d6fd8; }
.cms-article h2 { margin: 28px 0 12px; font-size: 28px; }
.cms-article p { margin: 0 0 18px; }
.side-card ol a { color:inherit; text-decoration:none; }
.mini-news-grid a { color:inherit; text-decoration:none; }
.tag-cloud a { margin: 0 8px 8px 0; display:inline-block; }

/* News list cards — share detail-page chrome via .page-news */
.page-newslist .news-desc {
  max-width: 640px;
  margin: 12px 0 0;
  color: #5c6573;
  font-size: 14px;
  line-height: 1.7;
}

.page-newslist .news-desc:empty {
  display: none;
}

.page-newslist .news-list {
  display: grid;
  gap: 14px;
}

.page-newslist .news-list-card {
  display: grid;
  grid-template-columns: 196px minmax(0, 1fr);
  gap: 18px;
  padding: 14px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #e8eef6;
  box-shadow: 0 8px 24px rgba(31, 64, 112, 0.04);
  text-decoration: none;
}

.page-newslist .news-list-card:hover {
  border-color: #d5e4f5;
  box-shadow: 0 10px 26px rgba(31, 64, 112, 0.08);
}

.page-newslist .news-list-thumb {
  height: 124px;
  border-radius: 10px;
  background-size: cover;
  background-position: center;
  filter: none;
}
.news-list-thumb img{max-width: 100%;}

.page-newslist .news-list-body {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 2px 4px 2px 0;
}

.page-newslist .news-list-body small {
  color: #8a94a3;
  font-size: 12px;
}

.page-newslist .news-list-body strong {
  margin-top: 6px;
  color: #0f1b33;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 800;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.page-newslist .news-list-card:hover .news-list-body strong {
  color: #2f7bff;
}

.page-newslist .news-list-body em {
  margin-top: 8px;
  color: #5c6573;
  font-size: 13px;
  font-style: normal;
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.page-newslist .news-list-body b {
  margin-top: auto;
  padding-top: 10px;
  color: #2f7bff;
  font-size: 13px;
  font-weight: 700;
}

.page-newslist .cms-pager {
  margin: 6px 0 8px;
}

.page-newslist .cms-pager a,
.page-newslist .cms-pager span,
.page-newslist .cms-pager li a,
.page-newslist .cms-pager li span {
  min-width: 34px;
  padding: 6px 11px;
  color: #3a4a60;
  font-size: 13px;
  border: 1px solid #e8eef6;
  border-radius: 8px;
  background: #fff;
}

.page-newslist .cms-pager .active,
.page-newslist .cms-pager .current,
.page-newslist .cms-pager li.active a {
  color: #fff;
  background: #3b82f6;
  border-color: #3b82f6;
}

@media (max-width: 1100px) {
  .page-newslist .news-list-card {
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 14px;
  }

  .page-newslist .news-list-thumb {
    height: 100px;
  }
}

@media (max-width: 720px) {
  .page-newslist .news-list-card {
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 10px;
    padding: 10px;
  }

  .page-newslist .news-list-thumb {
    height: 76px;
    border-radius: 8px;
  }

  .page-newslist .news-list-body strong {
    margin-top: 4px;
    font-size: 15px;
  }

  .page-newslist .news-list-body em,
  .page-newslist .news-list-body b {
    display: none;
  }
}

/* News detail — match design */
.page-news {
  background: #f3f6fb;
  color: #1d2b3e;
}

.page-news .sub-header {
  background: #fff;
  border-bottom: 1px solid #eef2f7;
  box-shadow: none;
  backdrop-filter: none;
}

.page-news .sub-header-inner {
  height: 72px;
  gap: 20px;
}

.page-news .sub-brand {
  width: 168px;
  height: 52px;
}

.page-news .sub-nav {
  gap: 8px 22px;
  color: #3a4a60;
  font-size: 14px;
  font-weight: 600;
}

.page-news .sub-nav a {
  padding: 6px 0;
}

.page-news .sub-nav a.active,
.page-news .sub-nav a:hover {
  color: #2f7bff;
}

.page-news .sub-nav a.active::after,
.page-news .sub-nav a:hover::after {
  height: 2px;
  background: #2f7bff;
}

.page-news .sub-search {
  display: grid;
}

.page-news .sub-search:hover {
  color: #2f7bff;
  background: #f3f7ff;
}

.page-news .sub-phone {
  width: auto;
  height: 40px;
  padding: 0 18px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 700;
  background: #3b82f6;
  box-shadow: none;
}

.page-news .news-banner {
  position: relative;
  overflow: hidden;
  min-height: 196px;
  background: linear-gradient(90deg, #e7f3ff 0%, #d4e9fb 42%, #c5e1f6 100%);
}

.page-news .news-banner-visual {
  position: absolute;
  right: 0;
  top: 0;
  width: 46%;
  height: 100%;
  background:
    linear-gradient(90deg, #d4e9fb 0%, rgba(212, 233, 251, 0.18) 28%, transparent 46%),
    url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1400&q=80") right center / cover no-repeat;
}

.page-news .news-banner-inner {
  position: relative;
  z-index: 1;
  padding: 36px 0 32px;
}

.page-news .news-crumb {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #2f7bff;
  font-size: 13px;
}

.page-news .news-crumb a,
.page-news .news-crumb em {
  color: inherit;
  font-style: normal;
  text-decoration: none;
}

.page-news .news-crumb a:hover {
  color: #2f7bff;
}

.page-news .news-banner h1 {
  max-width: 760px;
  margin: 14px 0 0;
  color: #0f1b33;
  font-size: 32px;
  line-height: 1.32;
  font-weight: 800;
}

.page-news .news-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 0;
  max-width: 760px;
  margin: 14px 0 0;
  color: #000;
  font-size: 13px;
}

.page-news .news-meta span:empty,
.page-news .news-meta span:empty + i {
  display: none;
}

.page-news .news-meta i {
  width: 1px;
  height: 12px;
  margin: 0 12px;
  background: #c9d4e0;
}

.page-news .news-main {
  padding: 22px 0 12px;
}

.page-news .news-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 20px;
  align-items: start;
}

.page-news .news-article {
  padding: 28px 32px 24px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #e8eef6;
  box-shadow: 0 8px 24px rgba(31, 64, 112, 0.04);
  color: #000;
  font-size: 15px;
  line-height: 1.85;
}

.page-news .news-article > p:first-child {
  margin: 0 0 22px;
  padding: 16px 20px;
  border-radius: 0 12px 12px 0;
  background: #eaf3ff;
  border-left: 4px solid #3b82f6;
  color: #4b5b70;
}

.page-news .news-article h2,
.page-news .news-article h3 {
  margin: 26px 0 10px;
  color: #0f1b33;
  font-size: 20px;
  line-height: 1.45;
  font-weight: 800;
}

.page-news .news-article h3 {
  font-size: 17px;
}

.page-news .news-article p {
  margin: 0 0 14px;
}

.page-news .news-article img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 16px 0;
  border-radius: 8px;
}

.page-news .news-article a {
  color: #2f7bff;
}

.page-news .news-article ul,
.page-news .news-article ol {
  margin: 0 0 14px;
  padding-left: 22px;
}

.page-news .news-article blockquote {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 18px 0 8px;
  padding: 12px 16px;
  border: 0;
  border-radius: 10px;
  background: #f3f7fd;
  color: #5c6573;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.75;
}

.page-news .news-article blockquote::before {
  content: "";
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  margin-top: 1px;
  border-radius: 8px;
  background: #e8f1ff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%233b82f6' d='M12 3c4.4 0 8 2.9 8 6.5S16.4 16 12 16c-.7 0-1.4-.1-2-.2L6 18l.8-3.2C5.1 13.5 4 11.6 4 9.5 4 5.9 7.6 3 12 3z'/%3E%3C/svg%3E") center / 16px 16px no-repeat;
}

.page-news .news-aside {
  display: grid;
  gap: 16px;
}

.page-news .news-hot,
.page-news .news-diag {
  padding: 18px 18px 14px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #e8eef6;
  box-shadow: 0 8px 24px rgba(31, 64, 112, 0.04);
}

.page-news .news-hot-head,
.page-news .news-related-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.page-news .news-hot h3 {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  color: #0f1b33;
  font-size: 16px;
  font-weight: 800;
}

.page-news .news-hot h3 svg {
  width: 18px;
  height: 18px;
  fill: #ff7a45;
}

.page-news .hot-refresh {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 0;
  border: 0;
  color: #7b8798;
  font-size: 12px;
  background: none;
  cursor: pointer;
}

.page-news .hot-refresh svg {
  width: 14px;
  height: 14px;
  color: #3b82f6;
}

.page-news .hot-refresh:hover {
  color: #2f7bff;
}

.page-news .news-hot ol {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: hot;
}

.page-news .news-hot li {
  counter-increment: hot;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 9px 0;
}

.page-news .news-hot li[hidden] {
  display: none;
}

.page-news .news-hot li::before {
  content: counter(hot);
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  border-radius: 6px;
  display: grid;
  place-items: center;
  color: #8a94a3;
  font-size: 12px;
  font-weight: 800;
  background: #eef2f7;
}

.page-news .news-hot li:nth-child(1)::before {
  color: #fff;
  background: #ff5a52;
}

.page-news .news-hot li:nth-child(2)::before {
  color: #fff;
  background: #ff9f43;
}

.page-news .news-hot li:nth-child(3)::before {
  color: #fff;
  background: #3b82f6;
}

.page-news .news-hot a {
  color: #3a4a60;
  font-size: 13px;
  line-height: 1.55;
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.page-news .news-hot a:hover {
  color: #2f7bff;
}

.page-news .news-diag-copy {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.page-news .diag-ico {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: #3b82f6;
  background: #eaf3ff;
}

.page-news .diag-ico svg {
  width: 20px;
  height: 20px;
}

.page-news .news-diag h3 {
  margin: 0 0 6px;
  color: #0f1b33;
  font-size: 16px;
  font-weight: 800;
}

.page-news .news-diag p {
  margin: 0;
  color: #8a94a3;
  font-size: 13px;
  line-height: 1.6;
}

.page-news .news-diag > a {
  width: 100%;
  height: 42px;
  margin-top: 16px;
  border-radius: 21px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  background: #3b82f6;
}

.page-news .news-diag > a:hover {
  background: #2f73ea;
}

.page-news .news-promo {
  position: relative;
  overflow: hidden;
  min-height: 108px;
  padding: 22px 20px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  text-decoration: none;
  background:
    radial-gradient(circle at 88% 20%, rgba(255, 255, 255, 0.7), transparent 28%),
    linear-gradient(135deg, #d7ecff 0%, #c3e0fb 55%, #b7d8f7 100%);
}

.page-news .news-promo::before,
.page-news .news-promo::after {
  content: "";
  position: absolute;
  right: 54px;
  bottom: 0;
  width: 70px;
  height: 64px;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(180deg, rgba(91, 160, 246, 0.18), rgba(91, 160, 246, 0.5));
}

.page-news .news-promo::after {
  right: 92px;
  height: 42px;
  width: 54px;
  background: linear-gradient(180deg, rgba(59, 130, 246, 0.12), rgba(59, 130, 246, 0.38));
}

.page-news .news-promo-copy {
  position: relative;
  z-index: 1;
}

.page-news .news-promo-copy strong {
  display: block;
  color: #163a63;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 800;
}

.page-news .news-promo-copy em {
  display: block;
  margin-top: 8px;
  color: #5b7390;
  font-size: 13px;
  font-style: normal;
}

.page-news .news-promo-go {
  position: relative;
  z-index: 1;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: #3b82f6;
  box-shadow: 0 8px 16px rgba(47, 123, 255, 0.28);
}

.page-news .news-promo-go svg {
  width: 18px;
  height: 18px;
}

.page-news .news-related {
  padding: 8px 0 48px;
}

.page-news .news-related-head {
  margin-bottom: 14px;
}

.page-news .news-related-head h2 {
  margin: 0;
  padding-left: 10px;
  color: #0f1b33;
  font-size: 18px;
  font-weight: 800;
  border-left: 3px solid #3b82f6;
  line-height: 1.2;
}

.page-news .news-related-head a {
  color: #8a94a3;
  font-size: 13px;
  text-decoration: none;
}

.page-news .news-related-head a:hover {
  color: #2f7bff;
}

.page-news .news-related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.page-news .related-card {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 12px;
  padding: 12px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #e8eef6;
  box-shadow: 0 8px 24px rgba(31, 64, 112, 0.04);
  text-decoration: none;
}

.page-news .related-thumb {
  width: 92px;
  height: 92px;
  border-radius: 10px;
  background-size: cover;
  background-position: center;
  filter: none;
}

.page-news .related-body {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.page-news .related-body strong {
  color: #000;
  font-size: 15px;
  line-height: 1.45;
  font-weight: 800;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.page-news .related-card:hover .related-body strong {
  color: #2f7bff;
}

.page-news .related-body em {
  margin-top: 6px;
  color: #666;
  font-size: 12px;
  font-style: normal;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.page-news .related-body small {
  margin-top: auto;
  padding-top: 8px;
  color: #9aa4b2;
  font-size: 12px;
}

.page-news .news-footer {
  padding: 42px 0 22px;
  color: #fff;
  background: #116dee;
}

.page-news .news-footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.2fr 220px;
  gap: 40px;
  align-items: start;
}

.page-news .news-footer-brand img {
  width: 168px;
  height: auto;
  display: block;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.page-news .news-footer-brand p,
.page-news .news-footer-contact p {
  margin: 0;
  color: #fff;
  font-size: 14px;
  line-height: 1.8;
}

.page-news .news-footer h3 {
  margin: 0 0 14px;
  color: #fff;
  font-size:16px;
  font-weight: 800;
}

.page-news .news-footer-nav > div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 28px;
}

.page-news .news-footer-nav a {
  color: #fff;
  font-size: 14px;
  text-decoration: none;
}

.page-news .news-footer-nav a:hover {
  color: #fff;
}

.page-news .news-footer-contact {
  text-align: right;
}

.page-news .news-footer-contact img {
  width: 92px;
  height: 92px;
  display: block;
  margin: 12px 0 6px auto;
  padding: 4px;
  border-radius: 6px;
  object-fit: cover;
  background: #fff;
}

.page-news .news-footer-contact small {
  display: block;
  color: #fff;
  font-size: 12px;
}

.page-news .news-footer-copy {
  margin-top: 28px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 14px;
}

.page-news .news-footer-copy a {
  color: #fff;
  text-decoration: none;
}

@media (max-width: 1100px) {
  .page-news .news-banner-visual {
    width: 38%;
    opacity: 0.7;
  }

  .page-news .news-layout,
  .page-news .news-related-grid,
  .page-news .news-footer-grid {
    grid-template-columns: 1fr;
  }

  .page-news .news-footer-contact {
    text-align: left;
  }

  .page-news .news-footer-contact img {
    margin-left: 0;
  }
}

@media (max-width: 720px) {
  .page-news .sub-search {
    display: none;
  }

  .page-news .news-banner {
    min-height: 0;
  }

  .page-news .news-banner-visual {
    display: none;
  }

  .page-news .news-banner-inner {
    padding: 22px 0 20px;
  }

  .page-news .news-banner h1 {
    font-size: 22px;
  }

  .page-news .news-article {
    padding: 18px 16px 16px;
  }

  .page-news .news-article h2 {
    font-size: 18px;
  }

  .page-news .related-card {
    grid-template-columns: 76px minmax(0, 1fr);
  }

  .page-news .related-thumb {
    width: 76px;
    height: 76px;
  }
}


