:root {
  --header-blue: #1B335E;
  --header-blue-deep: #17345e;
  --header-text: #ffffff;
  --header-muted: rgba(255, 255, 255, 0.72);
}

* {
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans SC", Arial, sans-serif;
  color: #1d2733;
  background: #F1F2F4;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  width: 100%;
  background: var(--header-blue);
  color: var(--header-text);
  box-shadow: 0 8px 24px rgba(42, 36, 32, 0.12);
}

.header-inner {
  width: min(1160px, calc(100% - 64px));
  height: 112px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 300px;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
  white-space: nowrap;
}

.brand-name {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0;
}

.brand-domain {
  font-size: 15px;
  line-height: 1.2;
  color: var(--header-muted);
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  flex: 1;
  max-width: 780px;
  margin-left: auto;
  font-size: 18px;
  font-weight: 400;
}

.desktop-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 42px;
  white-space: nowrap;
}

.desktop-nav a::after {
  position: absolute;
  left: 50%;
  bottom: 2px;
  width: 0;
  height: 2px;
  content: "";
  border-radius: 2px;
  background: #ffffff;
  transform: translateX(-50%);
  transition: width 180ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  width: 100%;
}

.desktop-nav a:focus-visible,
.menu-toggle:focus-visible,
.mobile-nav a:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.85);
  outline-offset: 4px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--header-text);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  border-radius: 2px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  display: none;
}

.home-main {
  min-height: calc(100vh - 112px);
}

.service-overview {
  background: #F1F2F4;
  padding: 20px 0 28px;
}

.service-layout {
  width: min(1160px, calc(100% - 64px));
  height: 458px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 205px minmax(0, 1fr) 224px;
  gap: 10px;
  align-items: stretch;
}

.service-overview.is-ready .service-layout,
.service-overview.is-ready .service-menu,
.service-overview.is-ready .hero-carousel,
.service-overview.is-ready .service-card,
.info-panel-section.is-ready .info-panel,
.knowledge-section.is-ready .knowledge-panel {
  opacity: 0;
  transform: translateY(16px);
}

.service-overview.is-ready.is-visible .service-layout,
.service-overview.is-ready.is-visible .service-menu,
.service-overview.is-ready.is-visible .hero-carousel,
.service-overview.is-ready.is-visible .service-card,
.info-panel-section.is-ready.is-visible .info-panel,
.knowledge-section.is-ready.is-visible .knowledge-panel {
  animation: section-rise 620ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.service-overview.is-ready.is-visible .service-menu {
  animation-delay: 60ms;
}

.service-overview.is-ready.is-visible .hero-carousel {
  animation-delay: 120ms;
}

.service-overview.is-ready.is-visible .service-card:nth-child(1) {
  animation-delay: 180ms;
}

.service-overview.is-ready.is-visible .service-card:nth-child(2) {
  animation-delay: 240ms;
}

.info-panel-section.is-ready.is-visible .info-panel {
  animation-delay: 120ms;
}

.knowledge-section.is-ready.is-visible .knowledge-panel {
  animation-delay: 160ms;
}

.service-menu,
.hero-carousel,
.service-side {
  min-height: 0;
}

.service-menu,
.service-side {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-menu {
  background: #ffffff;
  gap: 0;
  padding: 5px 0;
  border: 1px solid rgba(226, 218, 207, 0.72);
  box-shadow: 0 12px 30px rgba(42, 36, 32, 0.05);
}

.service-menu-item {
  position: relative;
  display: grid;
  grid-template-columns: 30px 1fr auto;
  align-items: center;
  gap: 12px;
  min-height: 56px;
  padding: 0 20px;
  color: #1B335E;
  font-size: 15px;
  font-weight: 400;
  overflow: hidden;
  transition: background 220ms ease, color 220ms ease, padding-left 220ms ease;
}

.service-menu-item::before {
  position: absolute;
  left: 0;
  top: 50%;
  width: 3px;
  height: 0;
  content: "";
  border-radius: 0 3px 3px 0;
  background: #2f74f0;
  transform: translateY(-50%);
  transition: height 220ms ease;
}

.service-menu-item:hover,
.service-menu-item:focus-visible {
  background: #f4f7fc;
  color: #2f74f0;
  padding-left: 24px;
}

.service-menu-item:hover::before,
.service-menu-item:focus-visible::before {
  height: 24px;
}

.service-icon,
.card-icon {
  display: inline-grid;
  place-items: center;
  color: #2f74f0;
  transition: color 220ms ease, transform 220ms ease, background 220ms ease;
}

.service-icon svg,
.card-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-menu-item:nth-child(odd) .service-icon {
  color: #2f74f0;
}

.service-menu-item:nth-child(even) .service-icon {
  color: #302b27;
}

.service-arrow {
  position: relative;
  width: 22px;
  height: 22px;
  display: inline-grid;
  place-items: center;
  color: #1B335E;
  font-size: 0;
  font-weight: 400;
  transition: color 220ms ease, transform 220ms ease;
}

.service-arrow::before {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 7px;
  height: 7px;
  content: "";
  border-top: 1.7px solid currentColor;
  border-right: 1.7px solid currentColor;
  transform: translate(-60%, -50%) rotate(45deg);
}

.service-menu-item:hover .service-icon,
.service-menu-item:focus-visible .service-icon {
  color: #2f74f0;
  transform: translateX(2px);
}

.service-menu-item:hover .service-arrow,
.service-menu-item:focus-visible .service-arrow {
  color: #2f74f0;
  transform: translateX(3px);
}

.hero-carousel {
  position: relative;
  height: auto;
  overflow: hidden;
  color: #ffffff;
  background: #1B335E;
  border: 1px solid rgba(226, 218, 207, 0.58);
  box-shadow: 0 16px 36px rgba(42, 36, 32, 0.1);
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}

.hero-carousel.is-dragging {
  cursor: grabbing;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.018);
  transition: opacity 720ms ease, transform 2400ms ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slide[data-slide-panel="0"] {
  background: linear-gradient(135deg, #142844 0%, #2d5b92 48%, #91aed2 100%);
}

.hero-slide[data-slide-panel="1"] {
  background: linear-gradient(135deg, #142844 0%, #1f7daf 52%, #b0d7e8 100%);
}

.hero-slide[data-slide-panel="2"] {
  background: linear-gradient(135deg, #1b335e 0%, #5267a8 50%, #d2d9ee 100%);
}

.hero-slide[data-slide-panel="3"] {
  background: linear-gradient(135deg, #122f4f 0%, #277a99 48%, #bddadd 100%);
}

.hero-slide[data-slide-panel="4"] {
  background: linear-gradient(135deg, #102a63 0%, #1d73dc 46%, #b9c9f7 100%);
}

.hero-slide[data-slide-panel="5"] {
  background: linear-gradient(135deg, #122f4f 0%, #3f83c5 52%, #c0e0f4 100%);
}

.carousel-pills {
  position: absolute;
  left: 50%;
  bottom: 20px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 126px;
  height: 28px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 22px rgba(42, 36, 32, 0.16);
  transform: translateX(-50%);
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.carousel-pills:hover {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 26px rgba(42, 36, 32, 0.2);
}

.carousel-pill {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.58);
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease;
}

.carousel-pill.is-active {
  background: #ffffff;
  transform: scale(1.18);
}

.service-card {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(226, 218, 207, 0.72);
  box-shadow: 0 12px 30px rgba(42, 36, 32, 0.05);
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.service-card::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  background:
    linear-gradient(135deg, rgba(47, 116, 240, 0.09), rgba(47, 116, 240, 0) 42%),
    radial-gradient(circle at 92% 14%, rgba(47, 116, 240, 0.14), rgba(47, 116, 240, 0) 38%);
  opacity: 0.92;
  pointer-events: none;
}

.service-card::after {
  position: absolute;
  left: 0;
  top: 22px;
  bottom: 22px;
  width: 3px;
  content: "";
  border-radius: 0 3px 3px 0;
  background: #2f74f0;
  opacity: 0.72;
  transform: scaleY(0.72);
  transform-origin: center;
  transition: opacity 220ms ease, transform 220ms ease;
}

.service-card:hover,
.service-card:focus-visible {
  border-color: rgba(47, 116, 240, 0.22);
  box-shadow: 0 18px 38px rgba(42, 36, 32, 0.1);
  transform: translateY(-1px);
}

.service-card:hover::after,
.service-card:focus-visible::after {
  opacity: 1;
  transform: scaleY(1);
}

.service-card {
  flex: 1;
  min-height: 92px;
  display: block;
  padding: 20px 20px 18px;
}

.card-icon {
  position: absolute;
  top: 20px;
  right: 18px;
  z-index: 1;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, #eef5ff, rgba(47, 116, 240, 0.08));
  box-shadow: inset 0 0 0 1px rgba(47, 116, 240, 0.08);
}

.service-card:hover .card-icon,
.service-card:focus-visible .card-icon {
  background: linear-gradient(135deg, rgba(47, 116, 240, 0.16), rgba(47, 116, 240, 0.05));
  transform: translateY(-1px);
}

.card-icon svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: none;
  transition: transform 220ms ease;
}

.service-card:hover .card-icon svg,
.service-card:focus-visible .card-icon svg {
  transform: scale(1.04);
}

.card-icon-home svg {
  width: 44px;
  height: 44px;
}

.icon-fill-main {
  fill: #2f74f0;
}

.icon-fill-light {
  fill: #dce9ff;
}

.icon-badge {
  fill: #edf4ff;
  stroke: #c8dcff;
  stroke-width: 0.8;
}

.icon-check {
  fill: none;
  stroke: #2f74f0;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-avatar {
  fill: #ffffff;
}

.service-card-content {
  position: relative;
  z-index: 1;
  height: 100%;
  min-height: 0;
  display: flex;
  flex-direction: column;
}

.card-kicker {
  width: fit-content;
  margin-bottom: 9px;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(47, 116, 240, 0.08);
  color: #2f74f0;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 500;
}

.service-card strong {
  display: block;
  max-width: calc(100% - 60px);
  margin-bottom: 8px;
  color: #1B335E;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
}

.service-card em {
  display: block;
  color: #655c55;
  font-size: 13px;
  line-height: 1.65;
  font-style: normal;
  font-weight: 400;
}

.card-action {
  min-height: 28px;
  margin-top: auto;
  padding-top: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid rgba(226, 218, 207, 0.88);
  color: #2f74f0;
  font-size: 13px;
  font-weight: 500;
}

.card-action b {
  position: relative;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #2f74f0;
  color: #ffffff;
  font-size: 0;
  font-weight: 400;
  line-height: 1;
  transition: transform 220ms ease, background 220ms ease;
}

.card-action b::before,
.article-more b::before,
.wiki-more b::before {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 7px;
  height: 7px;
  content: "";
  border-top: 1.6px solid currentColor;
  border-right: 1.6px solid currentColor;
  transform: translate(-60%, -50%) rotate(45deg);
}

.service-card:hover .card-action b,
.service-card:focus-visible .card-action b {
  background: #1b5fdb;
  transform: translateX(2px);
}

.info-panel-section {
  background: #F1F2F4;
  padding: 0 0 34px;
}

.info-panel {
  width: min(1160px, calc(100% - 64px));
  height: 246px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 304px minmax(0, 1fr) 248px;
  gap: 12px;
}

.country-panel,
.article-panel,
.topic-panel {
  min-height: 0;
}

.country-panel,
.article-panel {
  background: #ffffff;
  border: 1px solid rgba(226, 218, 207, 0.72);
  border-radius: 4px;
  box-shadow: 0 12px 30px rgba(42, 36, 32, 0.05);
}

.country-panel {
  position: relative;
  overflow: hidden;
  padding: 18px 20px 18px;
}

.country-panel::before,
.article-panel::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(135deg, rgba(47, 116, 240, 0.06), rgba(47, 116, 240, 0) 42%);
}

.panel-heading {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
}

.panel-heading h2 {
  margin: 0;
  color: #1f1c1a;
  font-size: 19px;
  line-height: 1.2;
  font-weight: 600;
}

.panel-heading a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #645b54;
  font-size: 13px;
  font-weight: 500;
  transition: color 180ms ease, transform 180ms ease;
}

.panel-heading a::after,
.download-heading a::after {
  width: 6px;
  height: 6px;
  content: "";
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  transform: rotate(45deg);
}

.panel-heading a:hover,
.panel-heading a:focus-visible {
  color: #2f74f0;
  transform: translateX(2px);
}

.country-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, 76px);
  gap: 10px;
}

.country-grid a {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
  place-items: center;
  gap: 6px;
  padding: 9px 8px;
  border: 1px solid #edf1f7;
  border-radius: 6px;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  color: #1f1c1a;
  text-align: center;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.country-grid a::after {
  position: absolute;
  right: 10px;
  top: 10px;
  width: 6px;
  height: 6px;
  content: "";
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  color: #9c9188;
  opacity: 0;
  transform: translateX(-3px) rotate(45deg);
  transition: opacity 180ms ease, transform 180ms ease, color 180ms ease;
}

.country-grid a:hover,
.country-grid a:focus-visible {
  border-color: rgba(47, 116, 240, 0.28);
  background: #ffffff;
  box-shadow: 0 10px 22px rgba(42, 36, 32, 0.08);
  transform: translateY(-1px);
}

.country-grid a:hover::after,
.country-grid a:focus-visible::after {
  color: #2f74f0;
  opacity: 1;
  transform: translateX(0) rotate(45deg);
}

.country-grid strong {
  font-size: 13px;
  line-height: 1.2;
  font-weight: 500;
}

.flag-img {
  width: 54px;
  height: 32px;
  display: block;
  object-fit: cover;
  border-radius: 3px;
  border: 1px solid rgba(42, 36, 32, 0.1);
  box-shadow: 0 6px 14px rgba(42, 36, 32, 0.1);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.country-grid a:hover .flag-img,
.country-grid a:focus-visible .flag-img {
  box-shadow: 0 8px 18px rgba(42, 36, 32, 0.14);
  transform: translateY(-2px);
}

.article-panel {
  position: relative;
  overflow: hidden;
  padding: 0 28px 16px;
}

.article-tabs {
  position: relative;
  z-index: 1;
  height: 56px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid #e3e7ee;
}

.article-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  min-width: 86px;
  padding: 0 14px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  color: #1f1c1a;
  cursor: pointer;
  font-family: inherit;
  font-size: 17px;
  line-height: 1;
  font-weight: 500;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.article-tab.is-active {
  border-color: rgba(47, 116, 240, 0.2);
  background: linear-gradient(135deg, #eef5ff 0%, #f7fbff 100%);
  color: #2f74f0;
  box-shadow: 0 8px 18px rgba(47, 116, 240, 0.1);
}

.article-tab:hover,
.article-tab:focus-visible {
  border-color: rgba(47, 116, 240, 0.18);
  background: #f5f8fd;
  color: #2f74f0;
  outline: none;
}

.article-list {
  position: relative;
  z-index: 1;
  display: none;
  padding-top: 15px;
}

.article-list.is-active {
  display: block;
  animation: content-fade 220ms ease both;
}

.article-list a {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 58px;
  align-items: center;
  min-height: 31px;
  padding: 0 10px 0 22px;
  border-radius: 6px;
  color: #1f1c1a;
  font-size: 14px;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.article-list a::before {
  position: absolute;
  left: 8px;
  top: 50%;
  width: 5px;
  height: 5px;
  content: "";
  border-radius: 50%;
  background: #d8cbc0;
  transform: translateY(-50%);
  transition: background 180ms ease, transform 180ms ease;
}

.article-list a:hover,
.article-list a:focus-visible {
  background: #f5f8fd;
  color: #2f74f0;
  transform: translateX(2px);
}

.article-list a:hover::before,
.article-list a:focus-visible::before {
  background: #2f74f0;
  transform: translateY(-50%) scale(1.25);
}

.article-list span {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.article-list time {
  min-width: 48px;
  padding: 3px 0;
  border-radius: 999px;
  background: rgba(47, 116, 240, 0.06);
  color: #615850;
  font-size: 12px;
  text-align: right;
}

.article-list a.article-more {
  min-height: 38px;
  margin-top: 12px;
  padding: 0 10px 0 14px;
  grid-template-columns: minmax(0, 1fr) 24px;
  border-top: 1px solid rgba(226, 218, 207, 0.88);
  border-radius: 0;
  color: #2f74f0;
  font-weight: 500;
}

.article-list a.article-more::before {
  content: none;
}

.article-more b {
  position: relative;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(47, 116, 240, 0.1);
  color: #2f74f0;
  font-size: 0;
  font-weight: 400;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.article-more:hover b,
.article-more:focus-visible b {
  background: #2f74f0;
  color: #ffffff;
  transform: translateX(2px);
}

.topic-panel {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
}

.topic-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 66px 1fr;
  align-items: center;
  gap: 14px;
  padding: 0 20px;
  border: 1px solid rgba(47, 116, 240, 0.22);
  border-radius: 4px;
  background: #ffffff;
  color: #1f1c1a;
  box-shadow: 0 12px 30px rgba(42, 36, 32, 0.05);
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.topic-card::after {
  position: absolute;
  right: 18px;
  bottom: 16px;
  width: 8px;
  height: 8px;
  display: grid;
  place-items: center;
  content: "";
  border-top: 1.7px solid currentColor;
  border-right: 1.7px solid currentColor;
  color: #2f74f0;
  transform: translate(-4px, -4px) rotate(45deg);
  transition: color 220ms ease, transform 220ms ease;
}

.topic-card:hover,
.topic-card:focus-visible {
  border-color: #2f74f0;
  box-shadow: 0 18px 38px rgba(42, 36, 32, 0.1);
  transform: translateY(-1px);
}

.topic-card:hover::after,
.topic-card:focus-visible::after {
  color: #2f74f0;
  transform: translate(-2px, -4px) rotate(45deg);
}

.topic-card-primary {
  border-color: #1260c6;
  background: linear-gradient(135deg, #1260c6 0%, #1d73dc 55%, #2a87f0 100%);
  color: #ffffff;
}

.topic-card-primary::before {
  position: absolute;
  inset: 0;
  content: "";
  background: radial-gradient(circle at 86% 18%, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0) 36%);
  pointer-events: none;
}

.topic-card-primary::after {
  color: #ffffff;
}

.topic-card-primary:hover::after,
.topic-card-primary:focus-visible::after {
  color: #ffffff;
}

.topic-card:not(.topic-card-primary) {
  background: linear-gradient(135deg, #ffffff 0%, #f7fbff 100%);
}

.topic-card > img,
.topic-card > span {
  position: relative;
  z-index: 1;
}

.topic-card strong {
  display: block;
  margin-bottom: 7px;
  padding-right: 28px;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 600;
}

.topic-card em {
  display: block;
  padding-right: 18px;
  color: #6b625c;
  font-size: 12px;
  line-height: 1.45;
  font-style: normal;
}

.topic-card-primary em {
  color: rgba(255, 255, 255, 0.78);
}

.topic-icon-img {
  width: 58px;
  height: 58px;
  display: block;
  object-fit: contain;
}

.knowledge-section {
  background: #F1F2F4;
  padding: 0 0 38px;
}

.knowledge-panel {
  width: min(1160px, calc(100% - 64px));
  height: 396px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 12px;
}

.wiki-panel,
.download-panel {
  min-height: 0;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(226, 218, 207, 0.72);
  border-radius: 4px;
  box-shadow: 0 12px 30px rgba(42, 36, 32, 0.05);
}

.wiki-tabs,
.download-heading {
  height: 56px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #e3e7ee;
}

.wiki-tabs {
  padding: 0 18px;
  gap: 6px;
}

.wiki-tab {
  height: 32px;
  padding: 0 14px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  color: #1f1c1a;
  cursor: pointer;
  font-family: inherit;
  font-size: 17px;
  font-weight: 600;
}

.wiki-tab.is-active {
  border-color: rgba(47, 116, 240, 0.2);
  background: linear-gradient(135deg, #eef5ff 0%, #f7fbff 100%);
  color: #2f74f0;
}

.wiki-panel {
  position: relative;
  padding: 0 32px 18px;
}

.wiki-panel::before,
.download-panel::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(135deg, rgba(47, 116, 240, 0.06), rgba(47, 116, 240, 0) 44%);
}

.wiki-tabs {
  position: relative;
  z-index: 1;
  padding: 0;
}

.wiki-feature {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  align-items: center;
  gap: 28px;
  padding: 18px 0 16px;
  border-bottom: 1px solid #edf1f7;
}

.wiki-image {
  width: 230px;
  height: 126px;
  display: block;
  object-fit: cover;
  border-radius: 5px;
  border: 1px solid rgba(226, 218, 207, 0.72);
  box-shadow: 0 10px 24px rgba(42, 36, 32, 0.08);
}

.wiki-feature h2 {
  margin: 0 0 7px;
  color: #1f1c1a;
  font-size: 21px;
  font-weight: 600;
}

.wiki-feature p {
  margin: 0;
  color: #655c55;
  font-size: 14px;
  line-height: 1.58;
}

.wiki-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  margin-top: 12px;
}

.wiki-tags span {
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(47, 116, 240, 0.08);
  color: #2f74f0;
  font-size: 12px;
  line-height: 1;
  font-weight: 500;
}

.wiki-more {
  min-height: 24px;
  margin-left: 3px;
  padding: 0 4px 0 9px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(47, 116, 240, 0.14);
  border-radius: 999px;
  background: #ffffff;
  color: #2f74f0;
  font-size: 12px;
  font-weight: 500;
  box-shadow: 0 6px 14px rgba(47, 116, 240, 0.07);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.wiki-more b {
  position: relative;
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(47, 116, 240, 0.1);
  font-size: 0;
  font-weight: 400;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.wiki-more b::before {
  width: 5px;
  height: 5px;
  border-width: 1.4px;
}

.wiki-more:hover b,
.wiki-more:focus-visible b {
  background: #2f74f0;
  color: #ffffff;
  transform: translateX(2px);
}

.wiki-more:hover,
.wiki-more:focus-visible {
  border-color: rgba(47, 116, 240, 0.26);
  box-shadow: 0 8px 18px rgba(47, 116, 240, 0.12);
  transform: translateY(-1px);
}

.wiki-content {
  display: none;
}

.wiki-content.is-active {
  display: block;
  animation: content-fade 220ms ease both;
}

.wiki-list {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2px 20px;
  padding-top: 12px;
}

.wiki-list a {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 52px;
  align-items: center;
  min-height: 32px;
  padding: 0 8px;
  border-radius: 6px;
  color: #3b3632;
  font-size: 14px;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.wiki-list a:hover,
.wiki-list a:focus-visible {
  background: #f5f8fd;
  color: #2f74f0;
  transform: translateX(2px);
}

.wiki-list span {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.wiki-list time {
  color: #6f665f;
  text-align: right;
}

.download-panel {
  position: relative;
  padding: 0 22px 16px;
}

.download-heading {
  position: relative;
  z-index: 1;
  justify-content: space-between;
}

.download-heading h2 {
  margin: 0;
  color: #1f1c1a;
  font-size: 19px;
  font-weight: 600;
}

.download-heading a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #645b54;
  font-size: 13px;
  font-weight: 500;
  transition: color 180ms ease, transform 180ms ease;
}

.download-heading a:hover,
.download-heading a:focus-visible {
  color: #2f74f0;
  transform: translateX(2px);
}

.download-list {
  position: relative;
  z-index: 1;
  padding-top: 10px;
}

.download-list a {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  align-items: center;
  gap: 11px;
  min-height: 55px;
  padding: 0 12px 0 6px;
  border: 1px solid transparent;
  border-radius: 8px;
  color: #3b3632;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.download-list a::after {
  align-self: center;
  justify-self: center;
  width: 7px;
  height: 7px;
  content: "";
  border-top: 1.6px solid currentColor;
  border-right: 1.6px solid currentColor;
  color: #9c9188;
  transform: translateX(-1px) rotate(45deg);
  transition: color 180ms ease, transform 180ms ease;
}

.download-list a:hover,
.download-list a:focus-visible {
  background: #f5f8fd;
  border-color: rgba(47, 116, 240, 0.12);
  transform: translateX(2px);
}

.download-list a:hover::after,
.download-list a:focus-visible::after {
  color: #2f74f0;
  transform: translateX(1px) rotate(45deg);
}

.file-icon {
  width: 40px;
  height: 40px;
  display: block;
  border-radius: 8px;
  box-shadow: 0 8px 16px rgba(42, 36, 32, 0.12);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.download-list a:hover .file-icon,
.download-list a:focus-visible .file-icon {
  box-shadow: 0 10px 20px rgba(42, 36, 32, 0.16);
  transform: scale(1.03);
}

.file-icon.pdf {
  background: linear-gradient(135deg, #dce9ff 0%, #72a8ff 48%, #2f74f0 100%);
}

.file-icon.word {
  background: linear-gradient(135deg, #1b335e 0%, #2f74f0 58%, #8ec5ff 100%);
}

.download-list strong {
  display: block;
  margin-bottom: 3px;
  overflow: hidden;
  color: #3b3632;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.35;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.download-list em {
  display: block;
  overflow: hidden;
  margin-bottom: 3px;
  color: #746a62;
  font-size: 12px;
  line-height: 1.25;
  font-style: normal;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.download-list time {
  color: #746a62;
  font-size: 12px;
  font-weight: 500;
}

.site-footer {
  display: block;
  flex-shrink: 0;
  border-top: 5px solid #2f74f0;
  background: #272929;
  color: #d9dee7;
}

.footer-main {
  width: min(980px, calc(100% - 64px));
  min-height: 190px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 360px;
  align-items: center;
  gap: 70px;
}

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

.footer-link-group h2 {
  position: relative;
  margin: 0 0 22px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
}

.footer-link-group h2::before {
  position: absolute;
  left: -14px;
  top: 3px;
  width: 3px;
  height: 15px;
  content: "";
  border-radius: 3px;
  background: #2f74f0;
}

.footer-link-group a {
  display: block;
  margin-top: 14px;
  color: #b8b0a8;
  font-size: 13px;
  transition: color 180ms ease;
}

.footer-link-group a:hover,
.footer-link-group a:focus-visible,
.friend-links a:hover,
.friend-links a:focus-visible {
  color: #ffffff;
}

.footer-qrcodes {
  min-height: 118px;
  display: flex;
  justify-content: center;
  gap: 48px;
  padding-left: 54px;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-qr {
  display: grid;
  justify-items: center;
  gap: 12px;
}

.footer-qr span {
  width: 86px;
  height: 86px;
  display: block;
  border-radius: 4px;
  background:
    linear-gradient(135deg, rgba(47, 116, 240, 0.08), transparent 44%),
    #f8fafc;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.18);
}

.footer-qr span img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

.footer-qr strong {
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
}

.footer-bottom {
  display: block;
  min-height: 100px;
  padding: 24px 20px 20px;
  background: #202222;
  color: #b5ada4;
  text-align: center;
  font-size: 12px;
  line-height: 1.8;
}

.footer-bottom p {
  margin: 0;
}

.friend-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}

.friend-links a {
  color: #b5ada4;
}

.friend-links a + a::before {
  content: "|";
  margin: 0 10px;
  color: #5f666f;
}

@keyframes section-rise {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes content-fade {
  from {
    opacity: 0;
    transform: translateY(5px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .service-overview.is-ready .service-layout,
  .service-overview.is-ready .service-menu,
  .service-overview.is-ready .hero-carousel,
  .service-overview.is-ready .service-card,
  .info-panel-section.is-ready .info-panel,
  .knowledge-section.is-ready .knowledge-panel {
    opacity: 1;
    transform: none;
  }

  .service-overview.is-ready.is-visible .service-layout,
  .service-overview.is-ready.is-visible .service-menu,
  .service-overview.is-ready.is-visible .hero-carousel,
  .service-overview.is-ready.is-visible .service-card,
  .info-panel-section.is-ready.is-visible .info-panel,
  .knowledge-section.is-ready.is-visible .knowledge-panel,
  .hero-slide,
  .article-list.is-active,
  .wiki-content.is-active,
  .service-menu-item,
  .service-card,
  .article-list a,
  .wiki-list a,
  .download-list a,
  .topic-card {
    animation: none;
    transition: none;
  }
}

@media (max-width: 900px) {
  .header-inner {
    width: min(100% - 32px, 720px);
    height: 66px;
    gap: 18px;
  }

  .brand {
    min-width: 0;
  }

  .brand-name {
    font-size: 20px;
    font-weight: 600;
  }

  .brand-domain {
    font-size: 13px;
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
    flex: 0 0 auto;
  }

  .mobile-nav {
    width: min(100% - 32px, 720px);
    margin: 0 auto;
    padding: 0;
    display: block;
    max-height: 0;
    overflow: hidden;
    transition: max-height 220ms ease, padding 200ms ease;
  }

  .mobile-nav.is-open {
    max-height: 280px;
    padding: 0 0 18px;
  }

  .mobile-nav a {
    display: block;
    min-height: 44px;
    padding: 12px 4px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 17px;
    font-weight: 400;
  }

  .home-main {
    min-height: calc(100vh - 66px);
  }

  .service-overview {
    padding: 0 0 22px;
  }

  .service-layout {
    width: 100%;
    height: auto;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero-carousel {
    order: 1;
    height: clamp(220px, 58vw, 320px);
    border-top: 0;
    border-right: 0;
    border-left: 0;
    box-shadow: none;
  }

  .service-menu {
    order: 2;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    padding: 6px 0;
    border-right: 0;
    border-left: 0;
    box-shadow: none;
  }

  .service-side {
    order: 3;
    gap: 0;
  }

  .service-menu-item {
    grid-template-columns: 28px 1fr auto;
    min-height: 52px;
    padding: 0 18px;
    gap: 10px;
    border-bottom: 1px solid #edf1f7;
    font-size: 16px;
  }

  .service-menu-item:nth-child(odd) {
    border-right: 1px solid #edf1f7;
  }

  .service-menu-item:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .service-icon svg {
    width: 25px;
    height: 25px;
  }

  .service-arrow {
    width: 22px;
    height: 22px;
    font-size: 0;
  }

  .carousel-pills {
    bottom: 18px;
    min-width: 116px;
    height: 26px;
    gap: 9px;
  }

  .carousel-pill {
    width: 7px;
    height: 7px;
  }

  .service-card {
    min-height: 118px;
    display: grid;
    grid-template-columns: 58px 1fr;
    grid-template-rows: auto;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    border-right: 0;
    border-left: 0;
    box-shadow: none;
  }

  .service-card + .service-card {
    border-top: 0;
  }

  .service-card::after {
    top: 18px;
    bottom: 18px;
  }

  .card-icon {
    position: relative;
    top: auto;
    right: auto;
    width: 56px;
    height: 56px;
  }

  .card-icon svg,
  .card-icon-home svg {
    width: 46px;
    height: 46px;
  }

  .service-card strong {
    max-width: none;
    font-size: 18px;
    margin-bottom: 5px;
  }

  .service-card em {
    font-size: 14px;
    font-weight: 400;
  }

  .card-kicker {
    margin-bottom: 7px;
  }

  .card-action {
    min-height: 28px;
    margin-top: 12px;
    padding-top: 10px;
  }

  .info-panel-section {
    padding: 0 0 22px;
  }

  .info-panel {
    width: 100%;
    height: auto;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .country-panel {
    padding: 18px 20px;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .country-grid {
    gap: 18px;
  }

  .article-panel {
    padding: 0 20px 14px;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .article-tabs {
    height: 54px;
    gap: 6px;
  }

  .article-tab {
    min-width: 0;
    padding: 0 12px;
    font-size: 16px;
  }

  .article-list a {
    min-height: 36px;
    grid-template-columns: minmax(0, 1fr) 52px;
    font-size: 15px;
  }

  .article-list time {
    font-size: 13px;
  }

  .topic-panel {
    grid-template-rows: none;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .topic-card {
    min-height: 92px;
    grid-template-columns: 58px 1fr;
    padding: 0 22px;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .topic-card + .topic-card {
    border-top: 0;
  }

  .topic-card strong {
    font-size: 18px;
  }

  .topic-icon-img {
    width: 52px;
    height: 52px;
  }

  .knowledge-section {
    padding: 0 0 16px;
  }

  .knowledge-panel {
    width: 100%;
    height: auto;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .wiki-panel,
  .download-panel {
    min-height: 0;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .wiki-panel {
    padding: 0 16px 10px;
  }

  .wiki-tabs {
    height: 44px;
  }

  .wiki-tab {
    height: 28px;
    padding: 0 12px;
    font-size: 15px;
  }

  .wiki-feature {
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
    padding: 12px 0;
  }

  .wiki-feature h2 {
    margin-bottom: 4px;
    font-size: 17px;
  }

  .wiki-feature p {
    display: -webkit-box;
    overflow: hidden;
    font-size: 13px;
    line-height: 1.45;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }

  .wiki-tags {
    gap: 5px;
    margin-top: 8px;
  }

  .wiki-tags span {
    padding: 3px 7px;
    font-size: 11px;
  }

  .wiki-more {
    min-height: 22px;
    padding-left: 8px;
    gap: 5px;
    font-size: 11px;
  }

  .wiki-more b {
    width: 16px;
    height: 16px;
  }

  .wiki-list {
    grid-template-columns: 1fr;
    gap: 0;
    padding-top: 6px;
  }

  .wiki-list a {
    min-height: 28px;
    padding: 0 4px;
    font-size: 13px;
  }

  .wiki-image {
    width: 112px;
    height: 78px;
  }

  .download-panel {
    padding: 0 20px 16px;
  }

  .footer-main {
    display: none;
  }

  .footer-bottom {
    display: block;
    min-height: 0;
    padding: 18px 18px;
    font-size: 12px;
    line-height: 1.8;
  }
}

@media (hover: none) and (pointer: coarse) {
  .footer-main {
    display: none;
  }

  .footer-bottom {
    display: block;
    min-height: 0;
    padding: 18px 18px;
    font-size: 12px;
    line-height: 1.8;
  }
}

@media (max-width: 420px) {
  .header-inner {
    width: min(100% - 24px, 420px);
  }

  .brand-name {
    font-size: 19px;
  }

  .brand-domain {
    font-size: 12px;
  }

  .service-menu {
    grid-template-columns: 1fr;
  }

  .service-menu-item:nth-child(odd) {
    border-right: 0;
  }

  .service-menu-item:nth-last-child(-n + 2) {
    border-bottom: 1px solid #edf1f7;
  }

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

  .country-grid {
    grid-template-columns: 1fr;
  }

  .panel-heading h2 {
    font-size: 19px;
  }

  .article-tabs {
    gap: 4px;
  }

  .article-tab {
    flex: 1;
    padding: 0 6px;
    font-size: 15px;
  }

  .wiki-tabs {
    padding: 0;
  }

  .wiki-tab {
    padding: 0 10px;
    font-size: 14px;
  }

}

/* ==================== 新闻列表页 & 详情页 ==================== */

.page-banner {
  background: var(--header-blue);
  padding: 28px 0 26px;
  color: #ffffff;
}

.page-banner-inner {
  width: min(1160px, calc(100% - 64px));
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  margin-bottom: 14px;
  color: var(--header-muted);
  font-size: 13px;
}

.breadcrumb a {
  color: var(--header-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumb a:hover {
  color: #ffffff;
}

.breadcrumb .separator {
  margin: 0 8px;
  color: rgba(255, 255, 255, 0.36);
}

.breadcrumb .current {
  color: #ffffff;
}

.page-banner h1 {
  margin: 0 0 8px;
  color: #ffffff;
  font-size: 26px;
  font-weight: 600;
}

.page-banner-desc {
  margin: 0;
  color: var(--header-muted);
  font-size: 14px;
  line-height: 1.6;
}

.news-page {
  background: #F1F2F4;
  padding: 30px 0 60px;
}

.news-page-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 16px;
  width: min(1160px, calc(100% - 64px));
  margin: 0 auto;
  align-items: start;
}

.news-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
  padding: 14px 20px;
  background: #ffffff;
  border: 1px solid rgba(226, 218, 207, 0.72);
  border-radius: 4px;
  box-shadow: 0 8px 20px rgba(42, 36, 32, 0.04);
}

.news-filter button {
  display: inline-flex;
  align-items: center;
  height: 34px;
  padding: 0 16px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  color: #1f1c1a;
  font-family: inherit;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.news-filter button:hover {
  background: #f5f8fd;
  color: #2f74f0;
}

.news-filter button.is-active {
  border-color: rgba(47, 116, 240, 0.2);
  background: linear-gradient(135deg, #eef5ff 0%, #f7fbff 100%);
  color: #2f74f0;
  box-shadow: 0 6px 14px rgba(47, 116, 240, 0.1);
}

.article-list-page {
  display: grid;
  gap: 12px;
}

.article-item {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  background: #ffffff;
  border: 1px solid rgba(226, 218, 207, 0.72);
  border-radius: 4px;
  box-shadow: 0 8px 20px rgba(42, 36, 32, 0.04);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.article-item:hover {
  border-color: rgba(47, 116, 240, 0.22);
  box-shadow: 0 12px 28px rgba(42, 36, 32, 0.08);
  transform: translateY(-1px);
}

.article-item-icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 8px;
  background: linear-gradient(135deg, #eef5ff, rgba(47, 116, 240, 0.08));
}

.article-item-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: #2f74f0;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.article-item-body {
  min-width: 0;
}

.article-item-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.article-item-cat {
  display: inline-flex;
  align-items: center;
  height: 22px;
  padding: 0 8px;
  border-radius: 999px;
  background: rgba(47, 116, 240, 0.08);
  color: #2f74f0;
  font-size: 12px;
  font-weight: 500;
}

.article-item-cat.cat-notary,
.article-detail-cat.cat-notary,
.related-card-meta .cat-notary {
  background: rgba(47, 116, 240, 0.1);
  color: #2f74f0;
}

.article-item-cat.cat-auth,
.article-detail-cat.cat-auth,
.related-card-meta .cat-auth {
  background: rgba(232, 155, 35, 0.1);
  color: #c8841c;
}

.article-item-cat.cat-policy,
.article-detail-cat.cat-policy,
.related-card-meta .cat-policy {
  background: rgba(220, 38, 38, 0.08);
  color: #dc2626;
}

.related-card-meta .cat-notary,
.related-card-meta .cat-auth,
.related-card-meta .cat-policy {
  display: inline-flex;
  align-items: center;
  height: 20px;
  padding: 0 7px;
  border-radius: 999px;
  font-size: 11px;
}

.article-item-date {
  color: #9c9188;
  font-size: 13px;
}

.article-item h3 {
  margin: 0;
  overflow: hidden;
  color: #1f1c1a;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.article-item:hover h3 {
  color: #2f74f0;
}

.article-item-arrow {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(47, 116, 240, 0.06);
  color: #9c9188;
  flex-shrink: 0;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.article-item-arrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  transform: rotate(45deg) translate(-1px, 1px);
}

.article-item:hover .article-item-arrow {
  background: #2f74f0;
  color: #ffffff;
  transform: translateX(2px);
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-top: 28px;
}

.pagination a,
.pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  border: 1px solid rgba(226, 218, 207, 0.72);
  border-radius: 4px;
  background: #ffffff;
  color: #3b3632;
  font-size: 14px;
  text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.pagination a:hover {
  border-color: rgba(47, 116, 240, 0.22);
  color: #2f74f0;
}

.pagination .is-active {
  border-color: #2f74f0;
  background: #2f74f0;
  color: #ffffff;
}

.pagination .is-disabled {
  color: #c5beb7;
  pointer-events: none;
}

.sidebar {
  display: grid;
  gap: 12px;
  position: sticky;
  top: 132px;
}

.sidebar-widget {
  padding: 18px 20px;
  background: #ffffff;
  border: 1px solid rgba(226, 218, 207, 0.72);
  border-radius: 4px;
  box-shadow: 0 8px 20px rgba(42, 36, 32, 0.04);
}

.sidebar-widget h3 {
  position: relative;
  margin: 0 0 14px;
  padding-left: 14px;
  color: #1f1c1a;
  font-size: 17px;
  font-weight: 600;
}

.sidebar-widget h3::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 0;
  width: 3px;
  height: 15px;
  border-radius: 3px;
  background: #2f74f0;
}

.sidebar-hot-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.sidebar-hot-list li {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  min-height: 38px;
  border-top: 1px solid #edf1f7;
}

.sidebar-hot-list li:first-child {
  border-top: 0;
}

.sidebar-hot-num {
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 4px;
  background: #edf1f7;
  color: #9c9188;
  font-size: 12px;
  font-weight: 600;
}

.sidebar-hot-list li:nth-child(1) .sidebar-hot-num,
.sidebar-hot-list li:nth-child(2) .sidebar-hot-num,
.sidebar-hot-list li:nth-child(3) .sidebar-hot-num {
  background: #2f74f0;
  color: #ffffff;
}

.sidebar-hot-list a {
  overflow: hidden;
  color: #3b3632;
  font-size: 13px;
  line-height: 1.4;
  text-decoration: none;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.sidebar-hot-list a:hover {
  color: #2f74f0;
}

.sidebar-cat-list {
  display: grid;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.sidebar-cat-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 38px;
  padding: 0 12px;
  border-radius: 4px;
  background: #f7f8fa;
  color: #3b3632;
  font-size: 14px;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.sidebar-cat-list a:hover {
  background: #f5f8fd;
  color: #2f74f0;
}

.sidebar-cat-list span {
  color: #9c9188;
  font-size: 13px;
}

.sidebar-contact {
  padding: 22px 20px;
  border: 0;
  border-radius: 4px;
  background: linear-gradient(135deg, #1B335E 0%, #2f74f0 100%);
  color: #ffffff;
  text-align: center;
}

.sidebar-contact h3 {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: 17px;
  font-weight: 600;
}

.sidebar-contact h3::before {
  display: none;
}

.sidebar-contact p {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  line-height: 1.55;
}

.sidebar-contact-phone {
  display: block;
  margin-bottom: 14px;
  color: #ffffff;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.sidebar-contact .contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  padding: 0 24px;
  border-radius: 999px;
  background: #ffffff;
  color: #2f74f0;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.sidebar-contact .contact-btn:hover {
  transform: scale(1.03);
}

/* ---- 详情页 ---- */

.article-detail {
  width: min(820px, 100%);
  margin: 0 auto;
  padding: 36px 0 60px;
}

.article-detail-header {
  margin-bottom: 28px;
  padding-bottom: 22px;
  border-bottom: 1px solid #e3e7ee;
}

.article-detail-cat {
  display: inline-flex;
  align-items: center;
  height: 26px;
  padding: 0 12px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: rgba(47, 116, 240, 0.08);
  color: #2f74f0;
  font-size: 13px;
  font-weight: 500;
}

.article-detail-header h1 {
  margin: 0 0 16px;
  color: #1d2733;
  font-size: 26px;
  font-weight: 600;
  line-height: 1.4;
}

.article-detail-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  color: #6f665f;
  font-size: 14px;
}

.article-detail-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.article-detail-content {
  color: #3b3632;
  font-size: 16px;
  line-height: 1.85;
}

.article-detail-content h2 {
  margin: 32px 0 14px;
  padding-left: 14px;
  color: #1d2733;
  font-size: 20px;
  font-weight: 600;
  border-left: 3px solid #2f74f0;
}

.article-detail-content h3 {
  margin: 24px 0 10px;
  color: #1f1c1a;
  font-size: 17px;
  font-weight: 600;
}

.article-detail-content p {
  margin: 0 0 16px;
}

.article-detail-content ul,
.article-detail-content ol {
  margin: 0 0 18px;
  padding-left: 22px;
}

.article-detail-content li {
  margin-bottom: 8px;
  line-height: 1.75;
}

.article-detail-content blockquote {
  margin: 20px 0;
  padding: 16px 20px;
  border-left: 3px solid #2f74f0;
  border-radius: 0 4px 4px 0;
  background: rgba(47, 116, 240, 0.04);
  color: #4b4640;
  font-size: 15px;
  line-height: 1.7;
}

.article-detail-content strong {
  color: #1d2733;
  font-weight: 600;
}

.article-detail-content table {
  width: 100%;
  margin: 18px 0;
  border-collapse: collapse;
  font-size: 14px;
}

.article-detail-content th,
.article-detail-content td {
  padding: 10px 14px;
  border: 1px solid #e3e7ee;
  text-align: left;
}

.article-detail-content th {
  background: #f5f8fd;
  color: #1d2733;
  font-weight: 600;
}

.article-detail-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 32px;
  padding-top: 22px;
  border-top: 1px solid #e3e7ee;
}

.article-detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.article-detail-tags a {
  display: inline-flex;
  align-items: center;
  height: 28px;
  padding: 0 10px;
  border-radius: 4px;
  background: #f7f8fa;
  color: #6f665f;
  font-size: 13px;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.article-detail-tags a:hover {
  background: rgba(47, 116, 240, 0.08);
  color: #2f74f0;
}

.article-share {
  display: flex;
  align-items: center;
  gap: 8px;
}

.article-share span {
  color: #6f665f;
  font-size: 13px;
}

.article-share a {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f7f8fa;
  color: #6f665f;
  font-size: 13px;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.article-share a:hover {
  background: #2f74f0;
  color: #ffffff;
}

.article-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 32px;
}

.article-nav a {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px 20px;
  background: #ffffff;
  border: 1px solid rgba(226, 218, 207, 0.72);
  border-radius: 4px;
  text-decoration: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.article-nav a:hover {
  border-color: rgba(47, 116, 240, 0.22);
  box-shadow: 0 8px 18px rgba(42, 36, 32, 0.06);
}

.article-nav a:last-child {
  text-align: right;
}

.article-nav-label {
  color: #9c9188;
  font-size: 13px;
}

.article-nav-title {
  overflow: hidden;
  color: #1f1c1a;
  font-size: 14px;
  font-weight: 500;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.related-section {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid #e3e7ee;
}

.related-section h2 {
  margin: 0 0 20px;
  color: #1d2733;
  font-size: 20px;
  font-weight: 600;
}

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

.related-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px;
  background: #ffffff;
  border: 1px solid rgba(226, 218, 207, 0.72);
  border-radius: 4px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.related-card:hover {
  border-color: rgba(47, 116, 240, 0.22);
  box-shadow: 0 10px 24px rgba(42, 36, 32, 0.07);
  transform: translateY(-1px);
}

.related-card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #9c9188;
  font-size: 12px;
}

.related-card-meta span {
  color: #2f74f0;
  font-weight: 500;
}

.related-card h3 {
  margin: 0;
  color: #1f1c1a;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.45;
  transition: color 0.2s ease;
}

.related-card:hover h3 {
  color: #2f74f0;
}

.related-card p {
  margin: 0;
  color: #6f665f;
  font-size: 13px;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

/* ---- 响应式 ---- */

@media (max-width: 900px) {
  .page-banner {
    padding: 22px 0 20px;
  }

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

  .news-page {
    padding: 20px 0 40px;
  }

  .news-page-layout {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .sidebar {
    position: static;
  }

  .article-item {
    grid-template-columns: 44px minmax(0, 1fr) auto;
    gap: 12px;
    padding: 14px 16px;
  }

  .article-item-icon {
    width: 44px;
    height: 44px;
  }

  .article-item-icon svg {
    width: 22px;
    height: 22px;
  }

  .article-item h3 {
    font-size: 15px;
  }

  .article-detail {
    padding: 24px 0 40px;
  }

  .article-detail-header h1 {
    font-size: 20px;
  }

  .article-detail-content {
    font-size: 15px;
  }

  .article-detail-content h2 {
    font-size: 18px;
  }

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

  .related-grid {
    grid-template-columns: 1fr;
  }
}
