/**
 * 联欧希望官网 — 样式表
 * 设计基准：Figma 画板宽 1534px，采用 rem 换算（设计 px ÷ 100），
 * 在 1534px 视口下通过 clamp 使 1rem ≈ 100px。
 * 兼容：关键 flex/渐变等添加 -webkit- 前缀（等价于 autoprefixer 常见输出）。
 */

/* -------------------------------------------------------------------------- */
/* 全局 reset 与 rem 基准（移动端优先 + 大屏封顶）                              */
/* -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  /* 100vw/15.34 ≈ 在 1534px 宽时 1rem=100px；clamp 避免过小屏难读、过大屏失控 */
  font-size: clamp(48px, calc(100vw / 15.34), 100px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: "Inter", "PingFang SC", "Microsoft YaHei", sans-serif;
  color: #101828;
  background: #fff;
  line-height: 1.5;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

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

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

h1,
h2,
h3,
p {
  margin: 0;
}

/* 内容区：最大宽度 1250px 居中，水平内边距与首屏等区域一致 */
.u-container {
  width: 96%;
  max-width: 1250px;
  margin-left: auto;
  margin-right: auto;
  /* padding-left: clamp(0.4rem, 5vw, 1.59rem);
  padding-right: clamp(0.4rem, 5vw, 1.59rem); */
}

/* 顶栏为 sticky 时占文档流高度，无需为 fixed 预留 main 顶距 */
.main {
  padding-top: 0;
}

/* -------------------------------------------------------------------------- */
/* 顶栏：默认随页滚动；下滑后 sticky 吸附视口顶部（非首屏即 fixed）              */
/* -------------------------------------------------------------------------- */
.site-header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  height: 0.97rem;
  background: #fff;
  border-bottom: 1px solid #f3f4f6;
  -webkit-box-shadow: 0 0.01rem 0.03rem 0 rgba(0, 0, 0, 0.1),
    0 0.01rem 0.02rem 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 0.01rem 0.03rem 0 rgba(0, 0, 0, 0.1),
    0 0.01rem 0.02rem 0 rgba(0, 0, 0, 0.1);
}

.site-header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 0.12rem;
  height: 0.96rem;
}

@media (min-width: 768px) {
  .site-header {
    overflow: visible;
  }

  .site-header__inner {
    overflow: visible;
  }
  .site-nav {
    margin-left: auto;
    overflow: visible;
    -ms-flex-negative: 1;
    flex-shrink: 1;
    min-width: 0;
  }
  
  .site-nav__list {
    overflow: visible;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }

  .site-nav__list > li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }

  .site-nav__item--dropdown {
    position: relative;
  }

  .site-nav__item--dropdown > .site-nav__link--parent {
    height: 100%;
  }

  /* 悬停区延伸到下拉，避免鼠标移入菜单时 hover 断开 */
  .site-nav__item--dropdown::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 0.1rem;
  }

  .site-nav__item--dropdown:hover .site-nav__dropdown,
  .site-nav__item--dropdown:focus-within .site-nav__dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
  }

  .site-nav__item--dropdown:hover .site-nav__caret,
  .site-nav__item--dropdown:focus-within .site-nav__caret {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }

  .site-nav__item--dropdown .site-nav__link--parent.site-nav__link--active {
    background: transparent;
    color: #2962c5;
    min-width: 0;
  }

  .site-header__tools {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0.12rem;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-left: 0.12rem;
  }
}

.site-header__tools {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.12rem;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

/* 语言切换（Google 翻译）：右上 */
.site-lang {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.06rem;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.site-lang__sep {
  color: #d1d5dc;
  font-size: 0.14rem;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.site-lang__btn {
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
  padding: 0.06rem 0.08rem;
  border: none;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
  font-weight: 500;
  font-size: 0.14rem;
  line-height: 1.3;
  color: #6a7282;
  border-radius: 0.06rem;
  -webkit-transition: color 0.2s ease, background 0.2s ease;
  transition: color 0.2s ease, background 0.2s ease;
}

.site-lang__btn:hover,
.site-lang__btn:focus-visible {
  color: #2962c5;
  background: rgba(41, 98, 197, 0.08);
}

.site-lang__btn:focus-visible {
  outline: 0.02rem solid #2962c5;
  outline-offset: 0.02rem;
}

.site-lang[data-active="zh"] .site-lang__btn[data-lang="zh"],
.site-lang[data-active="en"] .site-lang__btn[data-lang="en"] {
  color: #101828;
  font-weight: 600;
}

/* Google 翻译：隐藏顶部提示条（使用自定义「中文 | EN」切换） */
.goog-te-banner-frame {
  display: none !important;
}

body {
  top: 0 !important;
}

.site-header__logo {
  display: block;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 1.71016rem;
  max-width: 40vw;
  font-size: 0;
}

.site-header__logo img {
  width: 100%;
  height: 0.56rem;
  object-fit: contain;
}

/* 手机端：汉堡按钮（桌面端隐藏） */
.site-nav__toggle {
  display: none;
  position: relative;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 0.44rem;
  height: 0.44rem;
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: 0.08rem;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.site-nav__toggle:focus-visible {
  outline: 0.02rem solid #2962c5;
  outline-offset: 0.02rem;
}

.site-nav__toggle-bar {
  position: absolute;
  left: 50%;
  width: 0.22rem;
  height: 0.02rem;
  margin-left: -0.11rem;
  background: #364153;
  border-radius: 0.01rem;
  -webkit-transition: opacity 0.2s ease, -webkit-transform 0.2s ease, top 0.2s ease;
  transition: opacity 0.2s ease, transform 0.2s ease, top 0.2s ease;
}

.site-nav__toggle-bar:nth-child(1) {
  top: 0.14rem;
}

.site-nav__toggle-bar:nth-child(2) {
  top: 0.21rem;
}

.site-nav__toggle-bar:nth-child(3) {
  top: 0.28rem;
}

.site-header--menu-open .site-nav__toggle-bar:nth-child(1) {
  top: 0.21rem;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.site-header--menu-open .site-nav__toggle-bar:nth-child(2) {
  opacity: 0;
}

.site-header--menu-open .site-nav__toggle-bar:nth-child(3) {
  top: 0.21rem;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.site-nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  gap: 0;
  overflow: visible;
}

.site-nav__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0 0.24rem;
  min-height: 0.895rem;
  font-weight: 500;
  font-size: 0.17rem;
  line-height: 1.5;
  color: #364153;
  white-space: nowrap;
}

.site-nav__link--active {
  background: #2962c5;
  color: #fff;
  min-width: 0.82rem;
}

/* 成功案例：桌面端悬停下拉 */
.site-nav__item--dropdown {
  position: relative;
}

.site-nav__link--parent {
  gap: 0.06rem;
}

.site-nav__caret {
  display: inline-block;
  width: 0;
  height: 0;
  margin-top: 0.02rem;
  border-left: 0.04rem solid transparent;
  border-right: 0.04rem solid transparent;
  border-top: 0.05rem solid currentColor;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
}

.site-nav__dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 120;
  min-width: 1.44rem;
  margin: 0;
  padding: 0.08rem 0;
  list-style: none;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 0.08rem;
  -webkit-box-shadow: 0 0.12rem 0.24rem rgba(0, 0, 0, 0.1);
  box-shadow: 0 0.12rem 0.24rem rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transform: translate(-50%, 0.06rem);
  transform: translate(-50%, 0.06rem);
  -webkit-transition: opacity 0.2s ease, visibility 0.2s ease, -webkit-transform 0.2s ease;
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
}

.site-nav__sublink {
  display: block;
  padding: 0.12rem 0.2rem;
  font-weight: 500;
  font-size: 0.15rem;
  line-height: 1.4;
  color: #364153;
  white-space: nowrap;
  -webkit-transition: color 0.2s ease, background 0.2s ease;
  transition: color 0.2s ease, background 0.2s ease;
}

.site-nav__sublink:hover,
.site-nav__sublink:focus-visible {
  color: #2962c5;
  background: rgba(41, 98, 197, 0.08);
}

.site-nav__sublink--active {
  color: #2962c5;
  background: rgba(41, 98, 197, 0.1);
  font-weight: 600;
}

@media (min-width: 768px) {
  .site-nav__item--dropdown .site-nav__dropdown {
    top: calc(100% + 0.02rem);
  }
}

/* 平板/小屏：横向链接略收紧（仍为一行） */
@media (max-width: 900px) and (min-width: 768px) {
  .site-nav__list {
    gap: 0.08rem;
  }
  .site-nav__link {
    padding: 0 0.16rem;
    font-size: 0.14rem;
    min-height: 0.56rem;
  }
}

/* 手机端：仅 Logo + 菜单键；导航为下拉面板 */
@media (max-width: 767px) {
  .site-header__inner {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    row-gap: 0;
  }

  .site-header__logo {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }

  .site-header__tools {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    margin-left: auto;
  }

  .site-nav {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: max-height 0.35s ease, opacity 0.25s ease, visibility 0.25s;
    transition: max-height 0.35s ease, opacity 0.25s ease, visibility 0.25s;
    border-top: 1px solid transparent;
    margin-left: 0;
    margin-right: 0;
    max-width: none;
	background-color: #ffffff;
  }

  .site-nav__toggle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: 0;
  }

  .site-header--menu-open .site-nav {
    max-height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
    visibility: visible;
    opacity: 1;
    border-top-color: #f3f4f6;
    -webkit-box-shadow: 0 0.12rem 0.24rem rgba(0, 0, 0, 0.08);
    box-shadow: 0 0.12rem 0.24rem rgba(0, 0, 0, 0.08);
  }

  .site-nav__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    overflow-x: visible;
    gap: 0;
    padding: 0.08rem 0 0.16rem;
  }

  .site-nav__link {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    padding: 0.2rem 0.32rem;
    min-height: 0;
    white-space: normal;
    font-size: 0.16rem;
    border-bottom: 1px solid #f3f4f6;
  }

  .site-nav__link--active {
    min-width: 0;
  }

  .site-nav__item--dropdown .site-nav__link--parent {
    width: 100%;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border-bottom: 1px solid #f3f4f6;
  }
  
  .site-nav__item--dropdown.site-nav__item--open .site-nav__link--parent {
    border-bottom-color: #eef0f3;
  }

  .site-nav__item--dropdown .site-nav__dropdown {
    position: static;
    left: auto;
    min-width: 0;
    width: 100%;
    border: none;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    background: #f9fafb;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    -webkit-transform: none;
    transform: none;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    -webkit-transition: max-height 0.3s ease;
    transition: max-height 0.3s ease;
  }

  .site-nav__item--dropdown.site-nav__item--open .site-nav__dropdown {
    max-height: 8rem;
    padding: 0.04rem 0 0.08rem;
  }

  .site-nav__sublink {
    padding: 0.16rem 0.48rem;
    font-size: 0.15rem;
    border-bottom: 1px solid #eef0f3;
  }

  .site-nav__item--dropdown .site-nav__dropdown li:last-child .site-nav__sublink {
    border-bottom: none;
  }

  .site-nav__list > li:last-child > .site-nav__link:not(.site-nav__link--parent) {
    border-bottom: none;
  }
  
}

body.site-nav--menu-open {
  overflow: hidden;
  touch-action: none;
}

/* -------------------------------------------------------------------------- */
/* Hero：700px 高，左渐变遮罩，文案区 pl 159 与设计一致                           */
/* -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 5.8rem;
  overflow: hidden;
}

.hero__swiper {
  width: 100%;
  min-height: 5.8rem;
}

.hero .hero-slide {
  position: relative;
  min-height: 5.8rem;
  overflow: hidden;
}

.hero__pagination.swiper-pagination {
  bottom: 0.32rem;
  left: 50%;
  width: auto;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  text-align: center;
}

.hero__pagination .swiper-pagination-bullet {
  width: 0.12rem;
  height: 0.12rem;
  margin: 0 0.04rem !important;
  background: rgba(255, 255, 255, 0.35);
  opacity: 1;
}

.hero__pagination .swiper-pagination-bullet-active {
  background: #fff;
}

.hero__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 5.8rem;
}

.hero__img {
  width: 100%;
  height: 5.8rem;
  object-fit: cover;
  display: block;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: -webkit-linear-gradient(
    left,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.5) 50%,
    rgba(0, 0, 0, 0) 100%
  );
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.5) 50%,
    rgba(0, 0, 0, 0) 100%
  );
  pointer-events: none;
}

/* 外层与全站 u-container 一致，先留出版心边距；避免与 max-width 叠在同一层导致文字挤在窄带里贴边 */
.hero__inner {
  position: relative;
  z-index: 2;
  min-height: 5.8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  padding-top: 0.48rem;
  padding-bottom: 0.48rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.hero__content {
  width: 100%;
  max-width: 7.68rem;
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  flex-direction: column;
  gap: 0;
}

.hero__eyebrow {
  font-weight: 300;
  font-size: 0.24rem;
  line-height: 0.32rem;
  letter-spacing: 0.012rem;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 0;
}

.hero__title {
  margin-top: 0.16rem;
  font-weight: 700;
  font-size: 0.72rem;
  line-height: 0.72rem;
  color: #fff;
}

.hero__rule {
  width: 1.28rem;
  height: 0.04rem;
  margin-top: 0.16rem;
  background: #e23838;
}

.hero__subtitle {
  margin-top: 0.16rem;
  font-weight: 300;
  font-size: 0.3rem;
  line-height: 0.4875rem;
  color: #fff;
}

.hero__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 0.16rem;
  margin-top: 0.28rem;
}

.hero__dots {
  position: absolute;
  bottom: 0.4rem;
  left: clamp(0.4rem, 5vw, 1.59rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.1rem;
  z-index: 3;
}

.hero__dot {
  width: 0.2rem;
  height: 0.2rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
}

.hero__dot--active {
  background: #fff;
}

/* -------------------------------------------------------------------------- */
/* 按钮：主按钮 152×64，描边按钮 156×64，全圆角                                */
/* -------------------------------------------------------------------------- */
.btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 0.08rem;
  height: 0.64rem;
  padding: 0 0.24rem;
  font-size: 0.18rem;
  font-weight: 500;
  line-height: 0.28rem;
  border-radius: 624.9375rem;
  border: none;
  cursor: pointer;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.btn--primary {
  background: #2962c5;
  color: #fff;
  min-width: 1.52rem;
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  border: 2px solid #fff;
  min-width: 1.56rem;
}

.btn--wide {
  min-width: 2.52rem;
  padding-right: 0.4rem;
}

.btn--cases-more {
  min-width: 2.16rem;
  padding-right: 0.36rem;
}

.btn__chev {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 0.2rem;
  height: 0.2rem;
}

.btn__chev--about {
  width: 0.22rem;
  height: 0.22rem;
}

.btn--about {
  background: #fff;
  color: #003d82;
  min-width: 2.7rem;
  height: 0.68rem;
  font-weight: 500;
}

/* -------------------------------------------------------------------------- */
/* 通知条：72px 高，图标 20×20                                                  */
/* -------------------------------------------------------------------------- */
.ticker {
  background: #2962c5;
  padding: 0.1rem 0;
  /* min-height: 0.62rem; */
}

.ticker__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.16rem;
}

.ticker__icon {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 0.2rem;
  height: 0.2rem;
}

/* 垂直 Swiper：固定可视高度为一行，避免与下方区块留白过大 */
.ticker__swiper.swiper {
  margin-left: 0;
  margin-right: 0;
}

.ticker__swiper {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 0;
  width: 100%;
  height: 0.28rem;
  overflow: hidden;
}

.ticker__swiper .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 0.28rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.ticker__line {
  margin: 0;
  width: 100%;
  font-size: 0.16rem;
  line-height: 0.24rem;
  color: #fff;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* -------------------------------------------------------------------------- */
/* 通用区块标题：36 / 18，间距与设计一致                                         */
/* -------------------------------------------------------------------------- */
.section {
  padding-top: 0.52rem;
  padding-bottom: 0.52rem;
}

.section__head {
  text-align: center;
  margin-bottom: 0.32rem;
}

.section__title {
  font-weight: 500;
  font-size: 0.36rem;
  line-height: 0.4rem;
  color: #101828;
}

.section__desc {
  margin-top: 0.16rem;
  font-size: 0.18rem;
  line-height: 0.28rem;
  color: #4a5565;
}

.section__title--left,
.section__desc--left {
  text-align: left;
}

.section__cta-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 0.36rem;
}

.section--biz {
  padding-bottom: 0.6rem;
}

/* 业务网格：移动端 1 列 → 平板 2 → 桌面 4（仅布局变化） */
.biz-grid {
  display: grid;
  gap: 0.2rem;
  grid-template-columns: 1fr;
}

@media (min-width: 600px) {
  .biz-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .biz-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.biz-card {
  background: #fff;
  border: 1px solid #f3f4f6;
  border-radius: 0.14rem;
  -webkit-box-shadow: 0 0.04rem 0.06rem -0.01rem rgba(0, 0, 0, 0.1),
    0 0.02rem 0.04rem -0.02rem rgba(0, 0, 0, 0.1);
  box-shadow: 0 0.04rem 0.06rem -0.01rem rgba(0, 0, 0, 0.1),
    0 0.02rem 0.04rem -0.02rem rgba(0, 0, 0, 0.1);
  overflow: hidden;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.biz-card__visual {
  position: relative;
  height: 1.92rem;
  overflow: hidden;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.biz-card__photo {
  width: 100%;
  height: 1.92rem;
  object-fit: cover;
  display: block;
}

.biz-card__grad {
  position: absolute;
  inset: 0;
  background: -webkit-linear-gradient(
    bottom,
    rgba(0, 61, 130, 0.9) 0%,
    rgba(0, 61, 130, 0.5) 50%,
    rgba(0, 0, 0, 0) 100%
  );
  background: linear-gradient(
    0deg,
    rgba(0, 61, 130, 0.9) 0%,
    rgba(0, 61, 130, 0.5) 50%,
    rgba(0, 0, 0, 0) 100%
  );
  pointer-events: none;
}

.biz-card__icon-wrap {
  position: absolute;
  top: 0.16rem;
  right: 0.16rem;
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 624.9375rem;
  background: rgba(255, 255, 255, 0.2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.biz-card__icon-wrap img {
  width: 0.24rem;
  height: 0.24rem;
}

.biz-card__body {
  padding: 0.16rem 0.18rem 0.18rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0.06rem;
}

.biz-card__title {
  font-weight: 500;
  font-size: 0.18rem;
  line-height: 0.28rem;
  color: #101828;
}

.biz-card__meta {
  font-size: 0.14rem;
  line-height: 0.2rem;
  color: #4a5565;
}

a.biz-card--link {
  text-decoration: none;
  color: inherit;
  -webkit-transition: -webkit-box-shadow 0.2s ease, -webkit-transform 0.2s ease;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

a.biz-card--link:hover {
  -webkit-box-shadow: 0 0.06rem 0.12rem -0.02rem rgba(0, 61, 130, 0.18),
    0 0.04rem 0.08rem -0.04rem rgba(0, 0, 0, 0.12);
  box-shadow: 0 0.06rem 0.12rem -0.02rem rgba(0, 61, 130, 0.18),
    0 0.04rem 0.08rem -0.04rem rgba(0, 0, 0, 0.12);
}

a.biz-card--link:focus-visible {
  outline: 2px solid #2962c5;
  outline-offset: 2px;
}

/* -------------------------------------------------------------------------- */
/* 服务案例：flex 行布局，缩略图固定 384×224（用 rem），不用列表绝对定位          */
/* -------------------------------------------------------------------------- */
.section--cases {
  background: -webkit-linear-gradient(
    121.88deg,
    #f9fafb 0%,
    #eff6ff 100%
  );
  background: linear-gradient(121.88deg, #f9fafb 0%, #eff6ff 100%);
  padding-top: 0.52rem;
  padding-bottom: 0.64rem;
}

.case-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0.18rem;
}

.case-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background: #fff;
  border-radius: 0.14rem;
  -webkit-box-shadow: 0 0.04rem 0.06rem -0.01rem rgba(0, 0, 0, 0.1),
    0 0.02rem 0.04rem -0.02rem rgba(0, 0, 0, 0.1);
  box-shadow: 0 0.04rem 0.06rem -0.01rem rgba(0, 0, 0, 0.1),
    0 0.02rem 0.04rem -0.02rem rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

@media (min-width: 900px) {
  .case-card {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }
}

.case-card__media {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
  max-height: 2.24rem;
  overflow: hidden;
}

@media (min-width: 900px) {
  .case-card__media {
    width: 3.84rem;
    max-height: none;
    -ms-flex-item-align: stretch;
    align-self: stretch;
  }
}

.case-card__media img {
  width: 100%;
  height: 2.24rem;
  object-fit: cover;
  display: block;
}

.case-card__body {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0.12rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0.22rem 0.26rem;
}

.case-card__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.08rem;
}

.case-card__num {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 624.9375rem;
  background: #2962c5;
  color: #fff;
  font-weight: 700;
  font-size: 0.16rem;
  line-height: 0.24rem;
}

.case-card__tag {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 0.28rem;
  padding: 0 0.12rem;
  border-radius: 624.9375rem;
  background: #fef2f2;
  color: #e23838;
  font-weight: 500;
  font-size: 0.14rem;
  line-height: 0.2rem;
}

.case-card__title {
  font-weight: 500;
  font-size: 0.24rem;
  line-height: 0.32rem;
  color: #101828;
}

.case-card__text {
  font-size: 0.16rem;
  line-height: 0.26rem;
  color: #4a5565;
}

.case-card__more {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.08rem;
  font-weight: 500;
  font-size: 0.16rem;
  line-height: 0.24rem;
  color: #2962c5;
  margin-top: 0.04rem;
}

.case-card__more img {
  width: 0.2rem;
  height: 0.2rem;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

/* -------------------------------------------------------------------------- */
/* 新闻：标题行 flex；卡片 grid；正文 flex 列，无绝对定位                         */
/* -------------------------------------------------------------------------- */
.news-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 0.2rem;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 0.32rem;
}

.news-head__more {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.08rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
  color: #2962c5;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.news-head__more img {
  width: 0.2rem;
  height: 0.2rem;
}

.news-grid {
  display: grid;
  gap: 0.2rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .news-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.news-card {
  background: #fff;
  border: 1px solid #f3f4f6;
  border-radius: 0.14rem;
  -webkit-box-shadow: 0 0.04rem 0.06rem -0.01rem rgba(0, 0, 0, 0.1),
    0 0.02rem 0.04rem -0.02rem rgba(0, 0, 0, 0.1);
  box-shadow: 0 0.04rem 0.06rem -0.01rem rgba(0, 0, 0, 0.1),
    0 0.02rem 0.04rem -0.02rem rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
}

.news-card__visual {
  position: relative;
  height: 1.92rem;
  overflow: hidden;
}

.news-card__photo {
  width: 100%;
  height: 1.92rem;
  object-fit: cover;
  display: block;
}

.news-card__badge {
  position: absolute;
  top: 0.18rem;
  left: 0.16rem;
  height: 0.23rem;
  padding: 0.04rem 0.12rem;
  border-radius: 624.9375rem;
  background: #e23838;
  color: #fff;
  font-weight: 500;
  font-size: 0.12rem;
  line-height: 0.16rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.news-card__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0.06rem;
  padding: 0.16rem 0.18rem 0.18rem;
}

.news-card__body--short {
  padding-bottom: 0.16rem;
}

.news-card__date {
  font-size: 0.14rem;
  line-height: 0.2rem;
  color: #6a7282;
}

.news-card__title {
  font-weight: 500;
  font-size: 0.16rem;
  line-height: 0.24rem;
  color: #101828;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.news-card__title--single {
  min-height: 0.24rem;
}

.news-card__link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.08rem;
  font-size: 0.14rem;
  line-height: 0.2rem;
  color: #2962c5;
  margin-top: auto;
}

.news-card__link img {
  width: 0.16rem;
  height: 0.16rem;
}

/* -------------------------------------------------------------------------- */
/* 关于我们：Figma 渐变 + 三列特色 + 四列数据                                    */
/* -------------------------------------------------------------------------- */
.section--about {
  position: relative;
  overflow: hidden;
  padding-bottom: 0.64rem;
  background: -webkit-linear-gradient(
    141.83deg,
    #003d82 0%,
    #06468b 7.14%,
    #0d4795 14.29%,
    #134d9e 21.43%,
    #1952a8 28.57%,
    #1e57b1 35.71%,
    #245dbb 42.86%,
    #2962c5 50%,
    #245dbb 57.14%,
    #1e57b1 64.29%,
    #1952a8 71.43%,
    #134d9e 78.57%,
    #0d4795 85.71%,
    #06468b 92.86%,
    #003d82 100%
  );
  background: linear-gradient(
    141.83deg,
    #003d82 0%,
    #06468b 7.14%,
    #0d4795 14.29%,
    #134d9e 21.43%,
    #1952a8 28.57%,
    #1e57b1 35.71%,
    #245dbb 42.86%,
    #2962c5 50%,
    #245dbb 57.14%,
    #1e57b1 64.29%,
    #1952a8 71.43%,
    #134d9e 78.57%,
    #0d4795 85.71%,
    #06468b 92.86%,
    #003d82 100%
  );
  color: #fff;
}

.about__glow {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  pointer-events: none;
  background: radial-gradient(
      circle at 75% 0%,
      #fff 0%,
      transparent 45%
    ),
    radial-gradient(circle at 0% 85%, #e23838 0%, transparent 40%);
  -webkit-filter: blur(0.64rem);
  filter: blur(0.64rem);
}

.about__inner {
  position: relative;
  z-index: 1;
}

.about__head {
  text-align: center;
  margin-bottom: 0.4rem;
}

.about__title {
  font-weight: 500;
  font-size: 0.48rem;
  line-height: 0.48rem;
  color: #fff;
}

.about__rule {
  width: 0.96rem;
  height: 0.04rem;
  margin: 0.16rem auto 0;
  background: #e23838;
}

.about__subtitle {
  margin-top: 0.2rem;
  font-size: 0.2rem;
  line-height: 0.28rem;
  color: rgba(255, 255, 255, 0.9);
}

.about__intro {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.16rem;
  padding: 0.32rem clamp(0.2rem, 4vw, 0.64rem);
  margin-bottom: 0.44rem;
}

.about__text {
  font-size: 0.2rem;
  line-height: 0.4rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.95);
  max-width: 10.24rem;
  margin: 0 auto;
}

.about__hl {
  color: #e23838;
  font-weight: 500;
}

.about-features {
  display: grid;
  gap: 0.2rem;
  grid-template-columns: 1fr;
  margin-bottom: 0.44rem;
}

@media (min-width: 900px) {
  .about-features {
    grid-template-columns: repeat(3, 1fr);
  }
}

.about-feature {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.14rem;
  padding: 0.22rem 0.24rem;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.12rem;
}

.about-feature__icon {
  width: 0.64rem;
  height: 0.64rem;
  border-radius: 624.9375rem;
  background: #e23838;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.about-feature__icon img {
  width: 0.32rem;
  height: 0.32rem;
}

.about-feature__title {
  font-weight: 500;
  font-size: 0.24rem;
  line-height: 0.32rem;
  color: #fff;
}

.about-feature__desc {
  font-size: 0.16rem;
  line-height: 0.26rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 3.14rem;
}

.about-stats {
  display: grid;
  gap: 0.18rem;
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 0.36rem;
}

@media (min-width: 800px) {
  .about-stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

.about-stat {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.14rem;
  padding: 0.2rem 0.18rem;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0.12rem;
}

.about-stat__num {
  font-weight: 700;
  font-size: 0.48rem;
  line-height: 0.48rem;
  color: #e23838;
}

.about-stat__label {
  font-size: 0.18rem;
  line-height: 0.28rem;
  color: rgba(255, 255, 255, 0.9);
}

.section--about .section__cta-wrap {
  margin-top: 0.24rem;
}

/* -------------------------------------------------------------------------- */
/* 页脚：#003d82，链接列表用 flex/block，无绝对定位                               */
/* -------------------------------------------------------------------------- */
.site-footer {
  background: #003d82;
  color: #d1d5dc;
}

.site-footer__main {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 0.48rem;
  padding-bottom: 0.48rem;
}

.site-footer__cols {
      display: flex;
    align-items: flex-start;
    gap: 0.32rem;
    grid-template-columns: 1fr;
    justify-content: space-between;
}

@media (min-width: 768px) {
  .site-footer__cols {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  /* 四列等分，避免写死版心像素宽度，符合流式布局要求 */
  .site-footer__cols {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.site-footer__h {
  font-weight: 500;
  font-size: 0.18rem;
  line-height: 0.27rem;
  color: #fff;
  margin-bottom: 0.24rem;
}

.site-footer__col:first-child .site-footer__h {
  font-size: 0.2rem;
  line-height: 0.28rem;
}

.site-footer__intro {
  font-size: 0.14rem;
  line-height: 0.2275rem;
  margin-bottom: 0.24rem;
  max-width: 2.66rem;
}

.site-footer__contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0.12rem;
}

.site-footer__contact li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 0.08rem;
  font-size: 0.14rem;
  line-height: 0.2rem;
}

.site-footer__ci {
  color: #e23838;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.site-footer__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0.12rem;
  font-size: 0;
}

.site-footer__links a {
  font-size: 0.14rem;
  line-height: 0.2rem;
  color: #d1d5dc;
}
.dncode{
    display: flex;
    align-items: flex-end;
    flex-wrap: wrap;
}
.site-footer__qr-wrap{
    margin-right: 20px;
}
.site-footer__qr {
  margin-top: 0.08rem;
  width: 80px;
  height: 80px;
  border-radius: 0.1rem;
  display: block;
  object-fit: cover;
}

.site-footer__qr-cap {
  font-size: 0.12rem;
  line-height: 0.16rem;
  color: #d1d5dc;
}

.site-footer__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.12rem;
  margin-top: 0.16rem;
}

.site-footer__soc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 624.9375rem;
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.14rem;
  color: #d1d5dc;
}
.site-footer_d{
  background: #002456;
}
.site-footer__bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.16rem;
  min-height: 0.68rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-top: 0.16rem;
  padding-bottom: 0.16rem;
  font-size: 0;
}

@media (min-width: 900px) {
  .site-footer__bar {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 0.68rem;
    min-height: 0.68rem;
    padding-top: 0;
    padding-bottom: 0;
  }
}

.site-footer__legal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 0.16rem 0.24rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media (min-width: 900px) {
  .site-footer__legal {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
}

.site-footer__legal a {
  font-size: 0.14rem;
  line-height: 0.2rem;
  color: #99a1af;
}

.site-footer__copy {
  font-size: 0.14rem;
  line-height: 0.2rem;
  color: #99a1af;
  text-align: center;
}

@media (min-width: 900px) {
  .site-footer__copy {
    text-align: right;
  }
}

/* -------------------------------------------------------------------------- */
/* 关于我们页（Figma 1:629）— 与首页共用顶栏/页脚，版心 max 1250px 由 .u-container      */
/* -------------------------------------------------------------------------- */
.page-about-hero {
  position: relative;
  min-height: 5rem;
  overflow: hidden;
  background: #101828;
}

.page-about-hero__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 5rem;
}

.page-about-hero__img {
  width: 100%;
  height: 5rem;
  object-fit: cover;
  display: block;
}

.page-about-hero__overlay {
  position: absolute;
  inset: 0;
  background: -webkit-linear-gradient(
    left,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0.4) 50%,
    rgba(0, 0, 0, 0) 100%
  );
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0.4) 50%,
    rgba(0, 0, 0, 0) 100%
  );
  pointer-events: none;
}

.page-about-hero__inner {
  position: relative;
  z-index: 2;
  min-height: 5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-top: 0.48rem;
  padding-bottom: 0.48rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.page-about-hero__content {
  width: 100%;
  max-width: 7.68rem;
  text-align: left;
}

.page-about-hero__eyebrow {
  font-weight: 300;
  font-size: 0.2rem;
  line-height: 0.28rem;
  letter-spacing: 0.01rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.page-about-hero__title {
  margin-top: 0.16rem;
  font-weight: 700;
  font-size: 0.6rem;
  line-height: 0.6rem;
  color: #fff;
}

.page-about-hero__rule {
  width: 1.28rem;
  height: 0.04rem;
  margin-top: 0.16rem;
  background: #e23838;
}

.page-about-hero__subtitle {
  margin-top: 0.16rem;
  font-weight: 300;
  font-size: 0.24rem;
  line-height: 0.39rem;
  color: #fff;
}

.page-about-profile {
  background: #fff;
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
}

.page-about-profile__head {
  text-align: center;
  margin-bottom: 0.64rem;
}

.page-about-profile__title {
  font-weight: 500;
  font-size: 0.48rem;
  line-height: 0.48rem;
  color: #101828;
}

.page-about-profile__rule {
  width: 0.96rem;
  height: 0.04rem;
  margin: 0.16rem auto 0;
  background: #e23838;
}

.page-about-profile__en {
  margin-top: 0.2rem;
  font-size: 0.2rem;
  line-height: 0.28rem;
  color: #4a5565;
}

.page-about-profile__intro {
  display: grid;
  gap: 0.48rem;
  grid-template-columns: 1fr;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  margin-bottom: 0.64rem;
}

@media (min-width: 900px) {
  .page-about-profile__intro {
    grid-template-columns: 1fr 1fr;
    gap: 0.48rem;
  }
}

.page-about-profile__text {
  font-size: 0.2rem;
  line-height: 0.4rem;
  color: #1e2939;
  padding-top: 0.72rem;
}

@media (max-width: 899px) {
  .page-about-profile__text {
    padding-top: 0;
  }
}

.page-about-profile__hl {
  color: #2962c5;
  font-weight: 500;
}

.page-about-profile__figure {
  position: relative;
  width: 100%;
  max-width: 5.84rem;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 900px) {
  .page-about-profile__figure {
    margin-left: 0;
    margin-right: 0;
    max-width: none;
  }
}

.page-about-profile__glow {
  position: absolute;
  width: 1.28rem;
  height: 1.28rem;
  border-radius: 624.9375rem;
  pointer-events: none;
  z-index: 0;
}

.page-about-profile__glow--tl {
  top: -0.24rem;
  left: -0.24rem;
  background: #2962c5;
  opacity: 0.2;
  -webkit-filter: blur(0.4rem);
  filter: blur(0.4rem);
}

.page-about-profile__glow--br {
  bottom: -0.24rem;
  right: -0.24rem;
  background: #e23838;
  opacity: 0.2;
  -webkit-filter: blur(0.4rem);
  filter: blur(0.4rem);
}

.page-about-profile__photo-wrap {
  position: relative;
  z-index: 1;
  border-radius: 0.16rem;
  overflow: hidden;
  -webkit-box-shadow: 0 0.25rem 0.5rem -0.12rem rgba(0, 0, 0, 0.25);
  box-shadow: 0 0.25rem 0.5rem -0.12rem rgba(0, 0, 0, 0.25);
}

.page-about-profile__photo {
  width: 100%;
  height: auto;
  aspect-ratio: 584 / 384;
  object-fit: cover;
  display: block;
}

.page-about-profile__photo-grad {
  position: absolute;
  inset: 0;
  background: -webkit-linear-gradient(
    bottom,
    rgba(41, 98, 197, 0.2) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  background: linear-gradient(
    0deg,
    rgba(41, 98, 197, 0.2) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  pointer-events: none;
}

.page-about-features {
  display: grid;
  gap: 0.32rem;
  grid-template-columns: 1fr;
  margin-bottom: 0.64rem;
}

@media (min-width: 900px) {
  .page-about-features {
    grid-template-columns: repeat(3, 1fr);
  }
}

.page-about-feature {
  position: relative;
  border: 1px solid #dbeafe;
  border-radius: 0.14rem;
  padding: 0.32rem 0.24rem 0.28rem;
  text-align: center;
  background: -webkit-linear-gradient(
    146.52deg,
    #eff6ff 0%,
    #ffffff 100%
  );
  background: linear-gradient(146.52deg, #eff6ff 0%, #ffffff 100%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.16rem;
  min-height: 2.54rem;
}

.page-about-feature__icon-wrap {
  width: 0.64rem;
  height: 0.64rem;
  border-radius: 624.9375rem;
  background: #2962c5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.page-about-feature__icon {
  width: 0.32rem;
  height: 0.32rem;
  object-fit: contain;
}

.page-about-feature__title {
  font-weight: 500;
  font-size: 0.24rem;
  line-height: 0.32rem;
  color: #101828;
}

.page-about-feature__desc {
  font-size: 0.16rem;
  line-height: 0.26rem;
  color: #4a5565;
  max-width: 3.18rem;
}

.page-about-stats {
  display: grid;
  gap: 0.24rem;
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 800px) {
  .page-about-stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

.page-about-stat {
  text-align: center;
  border-radius: 0.14rem;
  padding: 0.32rem 0.24rem;
  -webkit-box-shadow: 0 0.1rem 0.15rem 0 rgba(0, 0, 0, 0.1),
    0 0.04rem 0.06rem 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 0.1rem 0.15rem 0 rgba(0, 0, 0, 0.1),
    0 0.04rem 0.06rem 0 rgba(0, 0, 0, 0.1);
  background: -webkit-linear-gradient(
    152deg,
    #2962c5 0%,
    #2a60c0 9.09%,
    #285ebb 18.18%,
    #265bb6 27.27%,
    #2559b1 36.36%,
    #2457ac 45.45%,
    #2355a7 54.55%,
    #2253a2 63.64%,
    #21509d 72.73%,
    #204e99 81.82%,
    #1f4c94 90.91%,
    #1e4a8f 100%
  );
  background: linear-gradient(
    152deg,
    #2962c5 0%,
    #2a60c0 9.09%,
    #285ebb 18.18%,
    #265bb6 27.27%,
    #2559b1 36.36%,
    #2457ac 45.45%,
    #2355a7 54.55%,
    #2253a2 63.64%,
    #21509d 72.73%,
    #204e99 81.82%,
    #1f4c94 90.91%,
    #1e4a8f 100%
  );
}

.page-about-stat__num {
  font-weight: 700;
  font-size: 0.48rem;
  line-height: 0.48rem;
  color: #fff;
}

.page-about-stat__label {
  margin-top: 0.12rem;
  font-size: 0.18rem;
  line-height: 0.28rem;
  color: rgba(255, 255, 255, 0.9);
}

.page-about-adv {
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
  background: -webkit-linear-gradient(
    138.23deg,
    #1e3a8a 0%,
    #204092 7.14%,
    #21459a 14.29%,
    #234ba3 21.43%,
    #2451ab 28.57%,
    #2656b4 35.71%,
    #275cbc 42.86%,
    #2962c5 50%,
    #275fbc 57.14%,
    #2559b1 64.29%,
    #2454a9 71.43%,
    #2250a1 78.57%,
    #214b99 85.71%,
    #1f4792 92.86%,
    #1e438a 100%
  );
  background: linear-gradient(
    138.23deg,
    #1e3a8a 0%,
    #204092 7.14%,
    #21459a 14.29%,
    #234ba3 21.43%,
    #2451ab 28.57%,
    #2656b4 35.71%,
    #275cbc 42.86%,
    #2962c5 50%,
    #275fbc 57.14%,
    #2559b1 64.29%,
    #2454a9 71.43%,
    #2250a1 78.57%,
    #214b99 85.71%,
    #1f4792 92.86%,
    #1e438a 100%
  );
  color: #fff;
}

.page-about-adv__head {
  text-align: center;
  margin-bottom: 0.64rem;
}

.page-about-adv__title {
  font-weight: 500;
  font-size: 0.48rem;
  line-height: 0.48rem;
  color: #fff;
}

.page-about-adv__rule {
  width: 0.96rem;
  height: 0.04rem;
  margin: 0.16rem auto 0;
  background: #e23838;
}

.page-about-adv__en {
  margin-top: 0.2rem;
  font-size: 0.2rem;
  line-height: 0.28rem;
  color: rgba(255, 255, 255, 0.8);
}

.page-about-adv__panels {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0.32rem;
}

.page-about-adv__panel {
  border-radius: 0.24rem;
  overflow: hidden;
  -webkit-box-shadow: 0 0.25rem 0.5rem -0.12rem rgba(0, 0, 0, 0.25);
  box-shadow: 0 0.25rem 0.5rem -0.12rem rgba(0, 0, 0, 0.25);
  background: rgba(255, 255, 255, 0);
}

.page-about-adv__panel img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: middle;
  object-fit: cover;
}

.page-about-adv__panel--large img {
  aspect-ratio: 1280 / 671;
  max-height: 80vh;
}

.page-about-adv__row {
  display: grid;
  gap: 0.32rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .page-about-adv__row {
    grid-template-columns: 1fr 1fr;
  }
}

.page-about-adv__row .page-about-adv__panel img {
  aspect-ratio: 600 / 323;
  min-height: 0;
}

/* -------------------------------------------------------------------------- */
/* 业务类型页 Figma 1:836 — 首屏 + 九大业务卡片                                    */
/* -------------------------------------------------------------------------- */
.page-business-hero {
  position: relative;
  min-height: 5rem;
  overflow: hidden;
  background: #101828;
}

.page-business-hero__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 5rem;
}

.page-business-hero__img {
  width: 100%;
  height: 5rem;
  object-fit: cover;
  display: block;
}

.page-business-hero__overlay {
  position: absolute;
  inset: 0;
  background: -webkit-linear-gradient(
    left,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.5) 50%,
    rgba(0, 0, 0, 0) 100%
  );
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.5) 50%,
    rgba(0, 0, 0, 0) 100%
  );
  pointer-events: none;
}

.page-business-hero__inner {
  position: relative;
  z-index: 2;
  min-height: 5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-top: 0.48rem;
  padding-bottom: 0.48rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.page-business-hero__content {
  width: 100%;
  max-width: 7.68rem;
  text-align: left;
}

.page-business-hero__eyebrow {
  font-weight: 300;
  font-size: 0.2rem;
  line-height: 0.28rem;
  letter-spacing: 0.01rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.page-business-hero__title {
  margin-top: 0.16rem;
  font-weight: 700;
  font-size: 0.6rem;
  line-height: 0.6rem;
  color: #fff;
}

.page-business-hero__rule {
  width: 1.28rem;
  height: 0.04rem;
  margin-top: 0.16rem;
  background: #e23838;
}

.page-business-hero__subtitle {
  margin-top: 0.16rem;
  font-weight: 300;
  font-size: 0.24rem;
  line-height: 0.39rem;
  color: #fff;
}

.page-business-section {
  background: #fff;
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
}

.page-business-head {
  text-align: center;
  margin-bottom: 0.64rem;
}

.page-business-head__title {
  font-weight: 500;
  font-size: 0.48rem;
  line-height: 0.48rem;
  color: #101828;
}

.page-business-head__rule {
  width: 0.96rem;
  height: 0.04rem;
  margin: 0.16rem auto 0;
  background: #e23838;
}

.page-business-head__en {
  margin-top: 0.2rem;
  font-size: 0.2rem;
  line-height: 0.28rem;
  color: #4a5565;
  letter-spacing: 0.02em;
}

.page-business-cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0.64rem;
}

.page-biz-card {
  border-radius: 0.24rem;
  -webkit-box-shadow: 0 0.1rem 0.15rem 0 rgba(0, 0, 0, 0.1),
    0 0.04rem 0.06rem 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 0.1rem 0.15rem 0 rgba(0, 0, 0, 0.1),
    0 0.04rem 0.06rem 0 rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

/* 奇数条 tone-a，偶数条 tone-b（与列表顺序一致） */
.page-business-cards > .page-biz-card:nth-child(odd) {
  background: -webkit-linear-gradient(158.74deg, #eff6ff 0%, #ffffff 100%);
  background: linear-gradient(158.74deg, #eff6ff 0%, #ffffff 100%);
}

.page-business-cards > .page-biz-card:nth-child(even) {
  background: -webkit-linear-gradient(159.73deg, #f9fafb 0%, #ffffff 100%);
  background: linear-gradient(159.73deg, #f9fafb 0%, #ffffff 100%);
}

.page-biz-card__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 0.48rem;
  padding: 0.48rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* 奇数条图在左（默认 row），偶数条图在右 */
.page-business-cards > .page-biz-card:nth-child(even) .page-biz-card__inner {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.page-biz-card__media {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
  max-width: 5.36rem;
}

.page-biz-card__figure {
  position: relative;
  border-radius: 0.16rem;
  overflow: hidden;
  -webkit-box-shadow: 0 0.2rem 0.25rem -0.05rem rgba(0, 0, 0, 0.1),
    0 0.08rem 0.1rem -0.06rem rgba(0, 0, 0, 0.1);
  box-shadow: 0 0.2rem 0.25rem -0.05rem rgba(0, 0, 0, 0.1),
    0 0.08rem 0.1rem -0.06rem rgba(0, 0, 0, 0.1);
}

.page-biz-card__photo {
  width: 100%;
  height: auto;
  aspect-ratio: 536 / 320;
  object-fit: cover;
  display: block;
  vertical-align: middle;
}

.page-biz-card__float {
  position: absolute;
  top: 0.24rem;
  right: 0.24rem;
  width: 0.64rem;
  height: 0.64rem;
  border-radius: 624.9375rem;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-shadow: 0 0.1rem 0.15rem 0 rgba(0, 0, 0, 0.1),
    0 0.04rem 0.06rem 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 0.1rem 0.15rem 0 rgba(0, 0, 0, 0.1),
    0 0.04rem 0.06rem 0 rgba(0, 0, 0, 0.1);
}

.page-biz-card__float img {
  width: 0.32rem;
  height: 0.32rem;
  object-fit: contain;
}

.page-biz-card__num {
  position: absolute;
  left: 0.24rem;
  bottom: 0.24rem;
  width: 0.64rem;
  height: 0.64rem;
  border-radius: 624.9375rem;
  background: #e23838;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-shadow: 0 0.1rem 0.15rem 0 rgba(0, 0, 0, 0.1),
    0 0.04rem 0.06rem 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 0.1rem 0.15rem 0 rgba(0, 0, 0, 0.1),
    0 0.04rem 0.06rem 0 rgba(0, 0, 0, 0.1);
}

.page-biz-card__num span {
  font-weight: 700;
  font-size: 0.24rem;
  line-height: 0.32rem;
  color: #fff;
}

.page-biz-card__body {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 0;
  flex: 1 1 0;
  min-width: 0;
}

.page-biz-card__title-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.12rem;
}

.page-biz-card__title-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 624.9375rem;
  background: #2962c5;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.page-biz-card__title-icon img {
  width: 0.24rem;
  height: 0.24rem;
  object-fit: contain;
}

.page-biz-card__title {
  font-weight: 500;
  font-size: 0.3rem;
  line-height: 0.36rem;
  color: #101828;
}

.page-biz-card__tagline {
  margin-top: 0.16rem;
  font-weight: 500;
  font-size: 0.18rem;
  line-height: 0.28rem;
  color: #e23838;
}

.page-biz-card__intro {
  margin-top: 0.16rem;
  font-weight: 400;
  font-size: 0.18rem;
  line-height: 0.2925rem;
  color: #364153;
}

.page-biz-card__bullets {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.12rem;
  margin-top: 0.24rem;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
}

.page-biz-card__bullets li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 0.08rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
  color: #364153;
}

.page-biz-card__bullets li img {
  width: 0.2rem;
  height: 0.2rem;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-top: 0.02rem;
  object-fit: contain;
}

.page-biz-card__bullets li span {
  min-width: 0;
}

.page-biz-card__cta {
  margin: 0.24rem 0 0;
  padding: 0;
  line-height: 1;
  font-size: 0;
}

.page-biz-card__link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.08rem;
  font-size: 0.16rem;
  font-weight: 500;
  line-height: 0.24rem;
  color: #2962c5;
  text-decoration: none;
  -webkit-transition: color 0.2s ease, gap 0.2s ease;
  transition: color 0.2s ease, gap 0.2s ease;
}

.page-biz-card__link img {
  width: 0.2rem;
  height: 0.2rem;
  -o-object-fit: contain;
  object-fit: contain;
}

.page-biz-card__link:hover,
.page-biz-card__link:focus-visible {
  color: #1e4fa8;
  gap: 0.1rem;
}

@media (max-width: 900px) {
  .page-biz-card__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 0.32rem;
    gap: 0.32rem;
  }

  .page-business-cards > .page-biz-card:nth-child(even) .page-biz-card__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .page-biz-card__media {
    max-width: none;
  }
}

@media (max-width: 560px) {
  .page-biz-card__bullets {
    grid-template-columns: 1fr;
  }

  .page-business-hero__title {
    font-size: 0.42rem;
    line-height: 0.48rem;
  }

  .page-business-hero__subtitle {
    font-size: 0.18rem;
    line-height: 0.3rem;
    white-space: normal;
  }
}

/* -------------------------------------------------------------------------- */
/* 成功案例页 Figma 1:1732 — 首屏 + 合作案例网格                                   */
/* -------------------------------------------------------------------------- */
.page-cases-hero {
  position: relative;
  min-height: 5rem;
  overflow: hidden;
  background: #101828;
}

.page-cases-hero__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 5rem;
}

.page-cases-hero__img {
  width: 100%;
  height: 5rem;
  object-fit: cover;
  display: block;
}

.page-cases-hero__overlay {
  position: absolute;
  inset: 0;
  background: -webkit-linear-gradient(
    left,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.5) 50%,
    rgba(0, 0, 0, 0) 100%
  );
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.5) 50%,
    rgba(0, 0, 0, 0) 100%
  );
  pointer-events: none;
}

.page-cases-hero__inner {
  position: relative;
  z-index: 2;
  min-height: 5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-top: 0.48rem;
  padding-bottom: 0.48rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.page-cases-hero__content {
  width: 100%;
  max-width: 7.68rem;
  text-align: left;
}

.page-cases-hero__eyebrow {
  font-weight: 300;
  font-size: 0.2rem;
  line-height: 0.28rem;
  letter-spacing: 0.01rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.page-cases-hero__title {
  margin-top: 0.16rem;
  font-weight: 700;
  font-size: 0.6rem;
  line-height: 0.6rem;
  color: #fff;
}

.page-cases-hero__rule {
  width: 1.28rem;
  height: 0.04rem;
  margin-top: 0.16rem;
  background: #e23838;
}

.page-cases-hero__subtitle {
  margin-top: 0.16rem;
  font-weight: 300;
  font-size: 0.24rem;
  line-height: 0.39rem;
  color: #fff;
}

.page-cases-list {
  background: #f9fafb;
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
}

/*.page-cases-list--follow {*/
/*  padding-top: 0.56rem;*/
/*  border-top: 0.01rem solid #e5e7eb;*/
/*}*/

.page-cases-list__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0.64rem;
}

.page-cases-list__inner--grid-only {
  gap: 0;
}


.page-cases-head {
  text-align: center;
}

.page-cases-head__title {
  font-weight: 500;
  font-size: 0.48rem;
  line-height: 0.48rem;
  color: #101828;
}

.page-cases-head__rule {
  width: 0.96rem;
  height: 0.04rem;
  margin: 0.16rem auto 0;
  background: #e23838;
}

.page-cases-head__en {
  margin-top: 0.2rem;
  font-size: 0.2rem;
  line-height: 0.28rem;
  color: #4a5565;
}

.page-cases-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.32rem;
}

.page-case-card {
  margin: 0;
}

.page-case-card__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
  background: #fff;
  border-radius: 0.16rem;
  overflow: hidden;
  -webkit-box-shadow: 0 0.1rem 0.15rem -0.03rem rgba(0, 0, 0, 0.1),
    0 0.04rem 0.06rem -0.04rem rgba(0, 0, 0, 0.1);
  box-shadow: 0 0.1rem 0.15rem -0.03rem rgba(0, 0, 0, 0.1),
    0 0.04rem 0.06rem -0.04rem rgba(0, 0, 0, 0.1);
  -webkit-transition: -webkit-box-shadow 0.2s ease, -webkit-transform 0.2s ease;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.page-case-card__link:hover,
.page-case-card__link:focus-visible {
  -webkit-box-shadow: 0 0.14rem 0.2rem -0.02rem rgba(0, 0, 0, 0.14),
    0 0.06rem 0.1rem -0.03rem rgba(0, 0, 0, 0.12);
  box-shadow: 0 0.14rem 0.2rem -0.02rem rgba(0, 0, 0, 0.14),
    0 0.06rem 0.1rem -0.03rem rgba(0, 0, 0, 0.12);
  -webkit-transform: translateY(-0.02rem);
  transform: translateY(-0.02rem);
}

.page-case-card__link:focus-visible {
  outline: 0.02rem solid #2962c5;
  outline-offset: 0.02rem;
}

.page-case-card__media {
  position: relative;
  height: 2.56rem;
  overflow: hidden;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.page-case-card__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-case-card__media-grad {
  position: absolute;
  inset: 0;
  background: -webkit-linear-gradient(
    bottom,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  pointer-events: none;
}

.page-case-card__date {
  position: absolute;
  left: 0.16rem;
  bottom: 0.16rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.08rem;
  font-size: 0.14rem;
  line-height: 0.2rem;
  color: #fff;
}

.page-case-card__date img {
  width: 0.16rem;
  height: 0.16rem;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.page-case-card__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 0.24rem;
  min-height: 2.28rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.page-case-card__body--short {
  min-height: 2.04rem;
}

.page-case-card__title {
  font-weight: 500;
  font-size: 0.2rem;
  line-height: 0.28rem;
  color: #101828;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 0.56rem;
}

.page-case-card__excerpt {
  margin-top: 0.12rem;
  font-weight: 400;
  font-size: 0.16rem;
  line-height: 0.24rem;
  color: #4a5565;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

.page-case-card__body--tall .page-case-card__excerpt {
  min-height: 0.72rem;
}

.page-case-card__body--short .page-case-card__excerpt {
  min-height: 0.48rem;
}

.page-case-card__more {
  margin-top: auto;
  padding-top: 0.16rem;
  font-weight: 500;
  font-size: 0.16rem;
  line-height: 0.24rem;
  color: #2962c5;
}

.page-case-card__arrow {
  font-weight: 500;
}

@media (max-width: 1024px) {
  .page-cases-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .page-cases-grid {
    grid-template-columns: 1fr;
  }

  .page-cases-hero__title {
    font-size: 0.42rem;
    line-height: 0.48rem;
  }

  .page-cases-hero__subtitle {
    font-size: 0.18rem;
    line-height: 0.3rem;
    white-space: normal;
  }
}

/* -------------------------------------------------------------------------- */
/* 成功案例详情 Figma 1:2037                                                       */
/* -------------------------------------------------------------------------- */
.page-case-detail .case-detail__toolbar {
  padding-top: 0.16rem;
  padding-bottom: 0.16rem;
  line-height: 1;
  font-size: 0;
}

.page-case-detail .case-detail__back {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.08rem;
  font-weight: 500;
  font-size: 0.16rem;
  line-height: 0.24rem;
  color: #2962c5;
}

.page-case-detail .case-detail__back img {
  width: 0.2rem;
  height: 0.2rem;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  object-fit: contain;
}

.case-detail-hero {
  position: relative;
  min-height: 5rem;
  overflow: hidden;
  background: #101828;
}

.case-detail-hero__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 5rem;
}

.case-detail-hero__img {
  width: 100%;
  height: 5rem;
  object-fit: cover;
  display: block;
}

.case-detail-hero__overlay {
  position: absolute;
  inset: 0;
  background: -webkit-linear-gradient(
    bottom,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.3) 50%,
    rgba(0, 0, 0, 0) 100%
  );
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.3) 50%,
    rgba(0, 0, 0, 0) 100%
  );
  pointer-events: none;
}

.case-detail-hero__inner {
  position: relative;
  z-index: 2;
  min-height: 5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  padding-bottom: 0.48rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.case-detail-hero__meta {
  max-width: 8.96rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0.24rem;
}

.case-detail-hero__date {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.08rem;
  padding: 0.08rem 0.16rem;
  border-radius: 624.9375rem;
  background: rgba(255, 255, 255, 0.2);
  font-size: 0.14rem;
  line-height: 0.2rem;
  color: #fff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.case-detail-hero__date img {
  width: 0.16rem;
  height: 0.16rem;
  object-fit: contain;
}

.case-detail-hero__title {
  margin: 0;
  font-weight: 700;
  font-size: 0.48rem;
  line-height: 0.6rem;
  color: #fff;
  max-width: 8.62rem;
}

.case-detail-article-wrap {
  background: #fff;
  padding-top: 0.8rem;
  padding-bottom: 0.48rem;
}

.case-detail-article {
  max-width: 8.96rem;
  margin-left: auto;
  margin-right: auto;
  font-size: 16px;
}

.case-detail__lead {
  margin: 0 0 0.48rem;
  font-weight: 400;
  font-size: 0.2rem;
  line-height: 0.325rem;
  color: #364153;
}

.case-detail__section {
  margin-top: 0.48rem;
}

.case-detail__section:first-of-type {
  margin-top: 0;
}

.case-detail__h2 {
  position: relative;
  margin: 0 0 0.24rem;
  padding-left: 0.16rem;
  font-weight: 500;
  font-size: 0.3rem;
  line-height: 0.36rem;
  color: #101828;
}

.case-detail__h2-bar {
  position: absolute;
  left: 0;
  top: 0.02rem;
  width: 0.04rem;
  height: 0.32rem;
  background: #2962c5;
}

.case-detail__p {
  margin: 0;
  font-weight: 400;
  font-size: 0.18rem;
  line-height: 0.2925rem;
  color: #364153;
}

.case-detail__richtext {
  font-weight: 400;
  font-size: 0.18rem;
  line-height: 0.2925rem;
  color: #364153;
}

.case-detail__richtext p {
  margin: 0;
}

.case-detail__richtext p + p {
  margin-top: 0.16rem;
}

.case-detail__richtext img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0.24rem 0;
  border-radius: 0.08rem;
}

.case-detail__richtext ul,
.case-detail__richtext ol {
  margin: 0.16rem 0;
  padding-left: 1.2em;
}

.case-detail__highlights {
  margin-top: 0.32rem;
  padding: 0.32rem;
  border-radius: 0.16rem;
  background: -webkit-linear-gradient(164.16deg, #eff6ff 0%, #f9fafb 100%);
  background: linear-gradient(164.16deg, #eff6ff 0%, #f9fafb 100%);
}

.case-detail__h3 {
  margin: 0 0 0.24rem;
  font-weight: 500;
  font-size: 0.24rem;
  line-height: 0.32rem;
  color: #101828;
}

.case-detail__highlight-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.16rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.case-detail__highlight-grid li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 0.12rem;
  font-size: 0.18rem;
  line-height: 0.28rem;
  color: #364153;
}

.case-detail__highlight-grid li img {
  width: 0.2rem;
  height: 0.2rem;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-top: 0.04rem;
  object-fit: contain;
}

.case-detail__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  margin-top: 0.48rem;
  padding-top: 0.33rem;
  border-top: 1px solid #e5e7eb;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.case-detail__btn {
  width: calc((100% - 16px)/2);
  min-height: 0.56rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 624.9375rem;
  font-weight: 500;
  font-size: 0.16rem;
  line-height: 0.24rem;
  text-align: center;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.case-detail__btn--ghost {
  background: #f3f4f6;
  color: #364153;
}

.case-detail__btn--primary {
  background: #2962c5;
  color: #fff;
}

.case-detail__btn--ghost:hover,
.case-detail__btn--ghost:focus-visible {
  background: #e5e7eb;
}

.case-detail__btn--primary:hover,
.case-detail__btn--primary:focus-visible {
  background: #1e4a8f;
}

.case-detail-more {
  background: #f9fafb;
  padding-top: 0.48rem;
  padding-bottom: 0.64rem;
}

.case-detail-more__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0.32rem;
}

.case-detail-more__title {
  margin: 0;
  font-weight: 500;
  font-size: 0.3rem;
  line-height: 0.36rem;
  color: #101828;
}

.case-detail-more__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.32rem;
}

.case-detail-more-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background: #fff;
  border-radius: 0.14rem;
  overflow: hidden;
  -webkit-box-shadow: 0 0.1rem 0.15rem -0.03rem rgba(0, 0, 0, 0.1),
    0 0.04rem 0.06rem -0.04rem rgba(0, 0, 0, 0.1);
  box-shadow: 0 0.1rem 0.15rem -0.03rem rgba(0, 0, 0, 0.1),
    0 0.04rem 0.06rem -0.04rem rgba(0, 0, 0, 0.1);
  -webkit-transition: -webkit-box-shadow 0.2s ease, -webkit-transform 0.2s ease;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.case-detail-more-card:hover,
.case-detail-more-card:focus-visible {
  -webkit-box-shadow: 0 0.14rem 0.2rem -0.02rem rgba(0, 0, 0, 0.14),
    0 0.06rem 0.1rem -0.03rem rgba(0, 0, 0, 0.12);
  box-shadow: 0 0.14rem 0.2rem -0.02rem rgba(0, 0, 0, 0.14),
    0 0.06rem 0.1rem -0.03rem rgba(0, 0, 0, 0.12);
  -webkit-transform: translateY(-0.02rem);
  transform: translateY(-0.02rem);
}

.case-detail-more-card:focus-visible {
  outline: 0.02rem solid #2962c5;
  outline-offset: 0.02rem;
}

.case-detail-more-card__media {
  position: relative;
  height: 1.92rem;
  overflow: hidden;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.case-detail-more-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.case-detail-more-card__grad {
  position: absolute;
  inset: 0;
  background: -webkit-linear-gradient(
    bottom,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  pointer-events: none;
}

.case-detail-more-card__title {
  margin: 0;
  padding: 0.24rem;
  font-weight: 500;
  font-size: 0.18rem;
  line-height: 0.28rem;
  color: #101828;
  min-height: 1.04rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

@media (max-width: 1024px) {
  .case-detail-more__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .case-detail__highlight-grid {
    grid-template-columns: 1fr;
  }

  .case-detail-more__grid {
    grid-template-columns: 1fr;
  }

  .case-detail-hero__title {
    font-size: 0.36rem;
    line-height: 0.44rem;
  }

  .case-detail__actions {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .case-detail__btn {
    max-width: none;
  }
}

/* -------------------------------------------------------------------------- */
/* 新闻中心页 Figma 1:2263                                                        */
/* -------------------------------------------------------------------------- */
.u-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.page-news-hero {
  position: relative;
  min-height: 5rem;
  overflow: hidden;
  background: #101828;
}

.page-news-hero__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 5rem;
}

.page-news-hero__img {
  width: 100%;
  height: 5rem;
  object-fit: cover;
  display: block;
}

.page-news-hero__overlay {
  position: absolute;
  inset: 0;
  background: -webkit-linear-gradient(
    left,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.5) 50%,
    rgba(0, 0, 0, 0) 100%
  );
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.5) 50%,
    rgba(0, 0, 0, 0) 100%
  );
  pointer-events: none;
}

.page-news-hero__inner {
  position: relative;
  z-index: 2;
  min-height: 5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-top: 0.48rem;
  padding-bottom: 0.48rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.page-news-hero__content {
  width: 100%;
  max-width: 7.68rem;
  text-align: left;
}

.page-news-hero__eyebrow {
  font-weight: 300;
  font-size: 0.2rem;
  line-height: 0.28rem;
  letter-spacing: 0.01rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.page-news-hero__title {
  margin-top: 0.16rem;
  font-weight: 700;
  font-size: 0.6rem;
  line-height: 0.6rem;
  color: #fff;
}

.page-news-hero__rule {
  width: 1.28rem;
  height: 0.04rem;
  margin-top: 0.24rem;
  background: #e23838;
}

.page-news-hero__subtitle {
  margin-top: 0.24rem;
  font-weight: 300;
  font-size: 0.24rem;
  line-height: 0.39rem;
  color: #fff;
}

.page-news-list-wrap {
  margin-top: 0.64rem;
  /* background: #f9fafb; */
  padding-bottom: 0.48rem;
}

.page-news-list-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0.48rem;
  padding-top: 0;
}

.page-news-filters {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 0.16rem;
}

.page-news-filter__btn {
  -webkit-appearance: none;
  appearance: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 0.48rem;
  min-width: 1.28rem;
  padding: 0 0.24rem;
  border-radius: 624.9375rem;
  background: #fff;
  -webkit-box-shadow: 0 0.01rem 0.03rem 0 rgba(0, 0, 0, 0.1),
    0 0.01rem 0.02rem 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 0.01rem 0.03rem 0 rgba(0, 0, 0, 0.1),
    0 0.01rem 0.02rem 0 rgba(0, 0, 0, 0.1);
  font-family: inherit;
  font-weight: 500;
  font-size: 0.16rem;
  line-height: 0.24rem;
  color: #364153;
  -webkit-transition: background 0.2s ease, color 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.page-news-filter__btn:hover,
.page-news-filter__btn:focus-visible {
  background: #f3f4f6;
}

.page-news-filter__btn:focus-visible {
  outline: 0.02rem solid #2962c5;
  outline-offset: 0.02rem;
}

.page-news-filter__btn--primary,
.page-news-filter__btn.is-active {
  height: 0.504rem;
  min-width: 1.008rem;
  background: #2962c5;
  color: #fff;
  -webkit-box-shadow: 0 0.1rem 0.15rem 0 rgba(0, 0, 0, 0.1),
    0 0.04rem 0.06rem 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 0.1rem 0.15rem 0 rgba(0, 0, 0, 0.1),
    0 0.04rem 0.06rem 0 rgba(0, 0, 0, 0.1);
}

.page-news-filter__btn--primary:hover,
.page-news-filter__btn--primary:focus-visible,
.page-news-filter__btn.is-active:hover,
.page-news-filter__btn.is-active:focus-visible {
  background: #1e4a8f;
  color: #fff;
}

.page-news-cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0.24rem;
}

.page-news-card {
  border-radius: 0.16rem;
  background: #fff;
  overflow: hidden;
  -webkit-box-shadow: 0 0.04rem 0.06rem -0.01rem rgba(0, 0, 0, 0.1),
    0 0.02rem 0.04rem -0.02rem rgba(0, 0, 0, 0.1);
  box-shadow: 0 0.04rem 0.06rem -0.01rem rgba(0, 0, 0, 0.1),
    0 0.02rem 0.04rem -0.02rem rgba(0, 0, 0, 0.1);
  -webkit-transition: -webkit-box-shadow 0.2s ease, -webkit-transform 0.2s ease;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.page-news-card:hover {
  -webkit-box-shadow: 0 0.1rem 0.18rem -0.04rem rgba(0, 0, 0, 0.14),
    0 0.04rem 0.08rem -0.04rem rgba(0, 0, 0, 0.1);
  box-shadow: 0 0.1rem 0.18rem -0.04rem rgba(0, 0, 0, 0.14),
    0 0.04rem 0.08rem -0.04rem rgba(0, 0, 0, 0.1);
  -webkit-transform: translateY(-0.02rem);
  -ms-transform: translateY(-0.02rem);
  transform: translateY(-0.02rem);
}

.page-news-card__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  min-height: 2.26rem;
  color: inherit;
}

.page-news-card--tall .page-news-card__link {
  min-height: 2.34953rem;
}

.page-news-card__media {
  position: relative;
  width: 3.2rem;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  overflow: hidden;
  background: #e5e7eb;
}

.page-news-card__media img {
  width: 100%;
  height: 100%;
  min-height: 2.26rem;
  object-fit: cover;
  display: block;
}

.page-news-card--tall .page-news-card__media img {
  min-height: 2.34953rem;
}

.page-news-card__body {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0.32rem;
  min-width: 0;
}

.page-news-card__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.16rem;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.page-news-card__tag {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-width: 0.88rem;
  min-height: 0.28rem;
  padding: 0.04rem 0.16rem;
  border-radius: 624.9375rem;
  background: #2962c5;
  font-weight: 500;
  font-size: 0.14rem;
  line-height: 0.2rem;
  color: #fff;
  white-space: nowrap;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.page-news-card__date {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.08rem;
  font-weight: 400;
  font-size: 0.14rem;
  line-height: 0.2rem;
  color: #6a7282;
}

.page-news-card__date img {
  width: 0.16rem;
  height: 0.16rem;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  object-fit: contain;
}

.page-news-card__title {
  margin-top: 0.16rem;
  font-weight: 500;
  font-size: 0.24rem;
  line-height: 0.32rem;
  color: #101828;
}

.page-news-card__excerpt {
  margin-top: 0.12rem;
  font-weight: 400;
  font-size: 0.16rem;
  line-height: 0.26rem;
  color: #4a5565;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.page-news-card__more {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.08rem;
  margin-top: 0.16rem;
}

.page-news-card__more-text {
  font-weight: 500;
  font-size: 0.16rem;
  line-height: 0.24rem;
  color: #2962c5;
}

.page-news-card__more img {
  width: 0.2rem;
  height: 0.2rem;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  object-fit: contain;
}

@media (max-width: 900px) {
  .page-news-card__link {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    min-height: 0;
  }

  .page-news-card__media {
    width: 100%;
    aspect-ratio: 320 / 226;
    max-height: none;
  }

  .page-news-card__media img {
    min-height: 0;
    aspect-ratio: 320 / 226;
    object-fit: cover;
  }

  .page-news-card--tall .page-news-card__media {
    aspect-ratio: 320 / 235;
  }

  .page-news-card--tall .page-news-card__media img {
    aspect-ratio: 320 / 235;
    min-height: 0;
  }

  .page-news-hero__title {
    font-size: 0.44rem;
    line-height: 0.52rem;
  }
}

@media (max-width: 640px) {
  .page-news-filters {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.04rem;
    margin-left: -0.04rem;
    margin-right: -0.04rem;
    padding-left: 0.04rem;
    padding-right: 0.04rem;
  }

  .page-news-filter__btn {
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }

  .page-news-hero__title {
    font-size: 0.36rem;
    line-height: 0.44rem;
  }

  .page-news-hero__subtitle {
    font-size: 0.2rem;
    line-height: 0.32rem;
  }

  .page-news-card__title {
    font-size: 0.2rem;
    line-height: 0.28rem;
  }
}

/* -------------------------------------------------------------------------- */
/* 新闻详情 Figma 1:2655（与 case-detail 共用类名，仅通过结构选择器补充样式）           */
/* -------------------------------------------------------------------------- */
.case-detail-hero__meta > div:first-child:has(.case-detail-hero__date + .case-detail-hero__date) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 0.16rem;
}

.case-detail-hero__meta .case-detail-hero__date:first-of-type:not(:last-of-type) {
  background: #2962c5;
  color: #fff;
  font-weight: 500;
  font-size: 0.14rem;
  line-height: 0.2rem;
  padding: 0.08rem 0.16rem;
  min-height: 0.36rem;
}

.case-detail-article > .case-detail__highlights:first-child {
  margin-top: 0;
  margin-bottom: 0;
  background: #eff6ff;
  background-image: none;
  border-left: 0.04rem solid #2962c5;
  border-radius: 0 0.1rem 0.1rem 0;
  margin-bottom: 20px;
}

.case-detail-article > .case-detail__highlights:first-child .case-detail__lead {
  margin: 0;
  font-weight: 500;
  font-size: 0.2rem;
  line-height: 0.325rem;
  color: #364153;
}

.case-detail-article > .case-detail__highlights:first-child + .case-detail__section {
  margin-top: 0.48rem;
}

.case-detail-article
  > .case-detail__highlights:first-child
  + .case-detail__section
  .case-detail__p
  + .case-detail__p {
  margin-top: 0.24rem;
}

.case-detail-article > .case-detail__section + .case-detail__highlights {
  margin-top: 0.48rem;
}

.case-detail-article > .case-detail__section + .case-detail__highlights .case-detail__p {
  margin: 0;
  font-weight: 500;
  font-size: 0.18rem;
  line-height: 0.2925rem;
  color: #364153;
}

/* .case-detail-more__inner:has(.case-detail-more__grid > .case-detail-more-card:nth-child(2):last-child)
  .case-detail-more__grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 8.96rem;
  margin-left: auto;
  margin-right: auto;
} */

.case-detail-more-card__media > span {
  position: absolute;
  left: 0.16rem;
  bottom: 0.16rem;
  z-index: 2;
  min-height: 0.26rem;
  padding: 0.04rem 0.12rem;
  border-radius: 624.9375rem;
  background: #2962c5;
  font-size: 0.14rem;
  line-height: 0.2rem;
  color: #fff;
  font-weight: 400;
}

.case-detail-more-card .case-detail-hero__date {
  position: relative;
  z-index: 1;
  background: transparent;
  color: #6a7282;
  font-weight: 400;
  font-size: 0.14rem;
  line-height: 0.2rem;
  padding: 0.24rem 0.24rem 0;
  padding-bottom: 0;
  width: 100%;
  max-width: none;
  border-radius: 0;
  align-self: stretch;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 0.08rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.case-detail-more-card .case-detail-hero__date img {
  width: 0.14rem;
  height: 0.14rem;
}

.case-detail-more-card .case-detail-hero__date + .case-detail-more-card__title {
  padding-top: 0.12rem;
  min-height: 0;
}

/* -------------------------------------------------------------------------- */
/* 联系我们页 Figma 1:2858                                                        */
/* -------------------------------------------------------------------------- */
.page-contact-hero {
  position: relative;
  min-height: 5rem;
  overflow: hidden;
  background: #101828;
}

.page-contact-hero__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 5rem;
}

.page-contact-hero__img {
  width: 100%;
  height: 5rem;
  object-fit: cover;
  display: block;
}

.page-contact-hero__overlay {
  position: absolute;
  inset: 0;
  background: -webkit-linear-gradient(
    left,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.5) 50%,
    rgba(0, 0, 0, 0) 100%
  );
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.5) 50%,
    rgba(0, 0, 0, 0) 100%
  );
  pointer-events: none;
}

.page-contact-hero__inner {
  position: relative;
  z-index: 2;
  min-height: 5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-top: 0.48rem;
  padding-bottom: 0.48rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.page-contact-hero__content {
  width: 100%;
  max-width: 7.68rem;
  text-align: left;
}

.page-contact-hero__eyebrow {
  font-weight: 300;
  font-size: 0.2rem;
  line-height: 0.28rem;
  letter-spacing: 0.01rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.page-contact-hero__title {
  margin-top: 0.16rem;
  font-weight: 700;
  font-size: 0.6rem;
  line-height: 0.6rem;
  color: #fff;
}

.page-contact-hero__rule {
  width: 1.28rem;
  height: 0.04rem;
  margin-top: 0.24rem;
  background: #e23838;
}

.page-contact-hero__subtitle {
  margin-top: 0.24rem;
  font-weight: 300;
  font-size: 0.24rem;
  line-height: 0.39rem;
  color: #fff;
}

.page-contact-wrap {
  margin-top: 0.8rem;
  /* background: #f9fafb; */
  padding-bottom: 0.64rem;
}

.page-contact-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0.64rem;
}

.page-contact-intro {
  text-align: center;
}

.page-contact-intro__title {
  margin: 0;
  font-weight: 500;
  font-size: 0.36rem;
  line-height: 0.4rem;
  color: #101828;
}

.page-contact-intro__desc {
  margin: 0.16rem 0 0;
  font-weight: 400;
  font-size: 0.2rem;
  line-height: 0.28rem;
  color: #4a5565;
}

.page-contact-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.32rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-contact-card {
  background: #fff;
  border-radius: 0.16rem;
  padding: 0.32rem;
  -webkit-box-shadow: 0 0.1rem 0.15rem 0 rgba(0, 0, 0, 0.1),
    0 0.04rem 0.06rem 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 0.1rem 0.15rem 0 rgba(0, 0, 0, 0.1),
    0 0.04rem 0.06rem 0 rgba(0, 0, 0, 0.1);
  min-height: 2.44rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.page-contact-card__icon-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 0.64rem;
  height: 0.64rem;
  border-radius: 624.9375rem;
  background: #eff6ff;
  margin-bottom: 0.24rem;
}

.page-contact-card__icon {
  width: 0.32rem;
  height: 0.32rem;
  object-fit: contain;
}

.page-contact-card__title {
  margin: 0 0 0.12rem;
  font-weight: 500;
  font-size: 0.2rem;
  line-height: 0.28rem;
  color: #101828;
}

.page-contact-card__text {
  margin: 0;
  font-weight: 400;
  font-size: 0.16rem;
  line-height: 0.26rem;
  color: #4a5565;
}

.page-contact-map {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  background: #fff;
  border-radius: 0.24rem;
  overflow: hidden;
  -webkit-box-shadow: 0 0.2rem 0.25rem -0.05rem rgba(0, 0, 0, 0.1),
    0 0.08rem 0.1rem -0.06rem rgba(0, 0, 0, 0.1);
  box-shadow: 0 0.2rem 0.25rem -0.05rem rgba(0, 0, 0, 0.1),
    0 0.08rem 0.1rem -0.06rem rgba(0, 0, 0, 0.1);
  min-height: 5rem;
}

.page-contact-map__panel {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 38%;
  flex: 0 0 38%;
  max-width: 4.86391rem;
  min-width: 0;
  padding: 0.4rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: -webkit-linear-gradient(
    134.21deg,
    #2962c5 0%,
    #285fc0 9.09%,
    #275cbb 18.18%,
    #2659b6 27.27%,
    #2557b1 36.36%,
    #2455ac 45.45%,
    #2353a7 54.55%,
    #2251a2 63.64%,
    #21509d 72.73%,
    #204e99 81.82%,
    #1f4c94 90.91%,
    #1e4a8f 100%
  );
  background: linear-gradient(
    134.21deg,
    #2962c5 0%,
    #285fc0 9.09%,
    #275cbb 18.18%,
    #2659b6 27.27%,
    #2557b1 36.36%,
    #2455ac 45.45%,
    #2353a7 54.55%,
    #2251a2 63.64%,
    #21509d 72.73%,
    #204e99 81.82%,
    #1f4c94 90.91%,
    #1e4a8f 100%
  );
  color: #fff;
}

.page-contact-map__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.12rem;
  margin-bottom: 0.24rem;
}

.page-contact-map__head-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 624.9375rem;
  background: rgba(255, 255, 255, 0.2);
}

.page-contact-map__head-icon img {
  width: 0.24rem;
  height: 0.24rem;
  object-fit: contain;
}

.page-contact-map__head-title {
  margin: 0;
  font-weight: 500;
  font-size: 0.24rem;
  line-height: 0.32rem;
  color: #fff;
}

.page-contact-map__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0.24rem;
}

.page-contact-map__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0.08rem;
}

.page-contact-map__h4 {
  margin: 0;
  font-weight: 500;
  font-size: 0.18rem;
  line-height: 0.28rem;
  color: rgba(255, 255, 255, 0.9);
}

.page-contact-map__p {
  margin: 0;
  font-weight: 400;
  font-size: 0.16rem;
  line-height: 0.26rem;
  color: rgba(255, 255, 255, 0.9);
}

.page-contact-map__p--single {
  line-height: 0.24rem;
}

.page-contact-map__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0.08rem;
}

.page-contact-map__list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 0.08rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
  color: rgba(255, 255, 255, 0.9);
}

.page-contact-map__bullet {
  color: rgba(255, 255, 255, 0.7);
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.page-contact-map__map {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  min-width: 0;
  background: #f3f4f6;
}

.page-contact-map__map img {
  width: 100%;
  height: 100%;
  min-height: 5rem;
  object-fit: cover;
  display: block;
}

.page-contact-wechat {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 0.48rem;
  padding: 0.48rem;
  border-radius: 0.24rem;
  -webkit-box-shadow: 0 0.2rem 0.25rem 0 rgba(0, 0, 0, 0.1),
    0 0.08rem 0.1rem 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 0.2rem 0.25rem 0 rgba(0, 0, 0, 0.1),
    0 0.08rem 0.1rem 0 rgba(0, 0, 0, 0.1);
  background: -webkit-linear-gradient(159.11deg, #eff6ff 0%, #fff 100%);
  background: linear-gradient(159.11deg, #eff6ff 0%, #fff 100%);
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.page-contact-wechat__left {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 5.36rem;
  flex: 1 1 5.36rem;
  max-width: 5.36rem;
  min-width: 0;
}

.page-contact-wechat__title-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.12rem;
  margin-bottom: 0.24rem;
}

.page-contact-wechat__title-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 624.9375rem;
  background: #2962c5;
}

.page-contact-wechat__title-icon img {
  width: 0.24rem;
  height: 0.24rem;
  object-fit: contain;
}

.page-contact-wechat__title {
  margin: 0;
  font-weight: 500;
  font-size: 0.3rem;
  line-height: 0.36rem;
  color: #101828;
}

.page-contact-wechat__lead {
  margin: 0 0 0.24rem;
  font-weight: 400;
  font-size: 0.2rem;
  line-height: 0.325rem;
  color: #364153;
}

.page-contact-wechat__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0.12rem;
}

.page-contact-wechat__list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.12rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
  color: #364153;
}

.page-contact-wechat__check {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 0.24rem;
  height: 0.24rem;
  border-radius: 624.9375rem;
  background: #2962c5;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding: 0.04rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.page-contact-wechat__check img {
  width: 0.16rem;
  height: 0.16rem;
  object-fit: contain;
}

.page-contact-wechat__right {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.24rem;
  margin-left: auto;
  margin-right: auto;
}

.page-contact-wechat__qr-wrap {
  background: #fff;
  border-radius: 0.24rem;
  padding: 0.32rem;
  -webkit-box-shadow: 0 0.25rem 0.5rem 0 rgba(0, 0, 0, 0.25);
  box-shadow: 0 0.25rem 0.5rem 0 rgba(0, 0, 0, 0.25);
}

.page-contact-wechat__qr {
  display: block;
  width: 2.56rem;
  height: 2.56rem;
  max-width: 100%;
  object-fit: cover;
  border-radius: 0.16rem;
}

.page-contact-wechat__cap {
  margin: 0;
  font-weight: 500;
  font-size: 0.16rem;
  line-height: 0.24rem;
  color: #4a5565;
  text-align: center;
}

.page-contact-form-wrap {
  background: #fff;
  border-radius: 0.24rem;
  padding: 0.48rem;
  -webkit-box-shadow: 0 0.2rem 0.25rem 0 rgba(0, 0, 0, 0.1),
    0 0.08rem 0.1rem 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 0.2rem 0.25rem 0 rgba(0, 0, 0, 0.1),
    0 0.08rem 0.1rem 0 rgba(0, 0, 0, 0.1);
}

.page-contact-form-head {
  text-align: center;
  margin-bottom: 0.4rem;
}

.page-contact-form-head__icon {
  width: 0.28rem;
  height: 0.28rem;
  object-fit: contain;
}

.page-contact-form-head__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 0.12rem;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 0 0.16rem;
  font-weight: 500;
  font-size: 0.3rem;
  line-height: 0.36rem;
  color: #101828;
}

.page-contact-sent {
  margin: 0 0 0.32rem;
  padding: 0.16rem 0.24rem;
  text-align: center;
  font-size: 0.18rem;
  line-height: 0.28rem;
  color: #166534;
  background: #dcfce7;
  border-radius: 0.08rem;
}

.page-contact-form-head__desc {
  margin: 0;
  font-weight: 400;
  font-size: 0.18rem;
  line-height: 0.28rem;
  color: #4a5565;
}

.page-contact-form {
  max-width: 7.68rem;
  margin-left: auto;
  margin-right: auto;
}

.page-contact-form__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.24rem;
  margin-bottom: 0.24rem;
}

.page-contact-form__field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0.08rem;
}

.page-contact-form__field--full {
  margin-bottom: 0.24rem;
}

.page-contact-form__label {
  font-weight: 500;
  font-size: 0.16rem;
  line-height: 0.24rem;
  color: #364153;
}

.page-contact-form__req {
  color: #e23838;
  text-decoration: none;
}

.page-contact-form__input,
.page-contact-form__textarea {
  width: 100%;
  font-family: inherit;
  font-size: 0.16rem;
  line-height: 1.5;
  color: #101828;
  border: 1px solid #d1d5dc;
  border-radius: 0.14rem;
  padding: 0.12rem 0.16rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: border-color 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.page-contact-form__input {
  min-height: 0.5rem;
}

.page-contact-form__input::-webkit-input-placeholder,
.page-contact-form__textarea::-webkit-input-placeholder {
  color: rgba(10, 10, 10, 0.5);
}

.page-contact-form__input::-moz-placeholder,
.page-contact-form__textarea::-moz-placeholder {
  color: rgba(10, 10, 10, 0.5);
}

.page-contact-form__input:-ms-input-placeholder,
.page-contact-form__textarea:-ms-input-placeholder {
  color: rgba(10, 10, 10, 0.5);
}

.page-contact-form__input::placeholder,
.page-contact-form__textarea::placeholder {
  color: rgba(10, 10, 10, 0.5);
}

.page-contact-form__input:hover,
.page-contact-form__textarea:hover {
  border-color: #99a1af;
}

.page-contact-form__input:focus,
.page-contact-form__textarea:focus {
  outline: none;
  border-color: #2962c5;
  -webkit-box-shadow: 0 0 0 0.02rem rgba(41, 98, 197, 0.25);
  box-shadow: 0 0 0 0.02rem rgba(41, 98, 197, 0.25);
}

.page-contact-form__textarea {
  min-height: 1.7rem;
  resize: vertical;
}

.page-contact-form__submit-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-top: 0.16rem;
}

.page-contact-form__submit {
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  border: none;
  min-width: 1.68rem;
  min-height: 0.6rem;
  padding: 0 0.32rem;
  border-radius: 624.9375rem;
  background: #2962c5;
  color: #fff;
  font-family: inherit;
  font-weight: 500;
  font-size: 0.18rem;
  line-height: 0.28rem;
  -webkit-box-shadow: 0 0.1rem 0.15rem 0 rgba(0, 0, 0, 0.1),
    0 0.04rem 0.06rem 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 0.1rem 0.15rem 0 rgba(0, 0, 0, 0.1),
    0 0.04rem 0.06rem 0 rgba(0, 0, 0, 0.1);
  -webkit-transition: background 0.2s ease;
  transition: background 0.2s ease;
}

.page-contact-form__submit:hover,
.page-contact-form__submit:focus-visible {
  background: #1e4a8f;
}

.page-contact-form__submit:focus-visible {
  outline: 0.02rem solid #2962c5;
  outline-offset: 0.02rem;
}

@media (max-width: 1024px) {
  .page-contact-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-contact-map {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .page-contact-map__panel {
    max-width: none;
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 100%;
  }

  .page-contact-map__map img {
    min-height: 3.2rem;
  }
}

@media (max-width: 900px) {
  .page-contact-hero__title {
    font-size: 0.44rem;
    line-height: 0.52rem;
  }
}

@media (max-width: 640px) {
  .page-contact-cards {
    grid-template-columns: 1fr;
  }

  .page-contact-wechat {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }

  .page-contact-wechat__left {
    max-width: none;
  }

  .page-contact-form__row {
    grid-template-columns: 1fr;
  }

  .page-contact-hero__title {
    font-size: 0.36rem;
    line-height: 0.44rem;
  }

  .page-contact-hero__subtitle {
    font-size: 0.2rem;
    line-height: 0.32rem;
  }

  .page-contact-form-wrap {
    padding: 0.32rem 0.24rem;
  }
}

/* -------------------------------------------------------------------------- */
/* 新闻中心 - 分页（ThinkPHP Bootstrap 分页结构，与 page-news 同比例 rem） */
/* -------------------------------------------------------------------------- */

.page-news-pagination {
  margin-top: 0.4rem;
  padding-bottom: 0.48rem;
  text-align: center;
  font-size: 0;
  line-height: 1;
}

.page-news-pagination .pagination {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 0.08rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  list-style: none;
}

.page-news-pagination .pagination li {
  display: inline-block;
}

.page-news-pagination .pagination a,
.page-news-pagination .pagination span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-width: 0.36rem;
  height: 0.36rem;
  padding: 0 0.12rem;
  border: 0.01rem solid #e5e7eb;
  border-radius: 0.06rem;
  font-family: inherit;
  font-size: 0.14rem;
  line-height: 1;
  color: #364153;
  text-decoration: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.page-news-pagination .pagination a:hover {
  border-color: #2962c5;
  color: #2962c5;
}

.page-news-pagination .pagination .active span {
  border-color: #2962c5;
  background: rgba(41, 98, 197, 0.08);
  color: #2962c5;
  font-weight: 500;
}

.page-news-pagination .pagination .disabled span {
  opacity: 0.45;
  cursor: not-allowed;
}

.page-news-empty {
  text-align: center;
  padding: 0.48rem 0.24rem;
  font-size: 0.16rem;
  color: #6b7280;
}

/* -------------------------------------------------------------------------- */
/* 列表卡片：仅悬浮增强（不改变排版）                                            */
/* -------------------------------------------------------------------------- */

.page-case-card__media {
  overflow: hidden;
}

.page-case-card__photo {
  -webkit-transition: -webkit-transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.page-case-card__link:hover .page-case-card__photo,
.page-case-card__link:focus-visible .page-case-card__photo {
  -webkit-transform: scale(1.04);
  -ms-transform: scale(1.04);
  transform: scale(1.04);
}

.page-news-card__media {
  overflow: hidden;
}

.page-news-card__media img {
  -webkit-transition: -webkit-transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.page-news-card:hover .page-news-card__media img,
.page-news-card__link:hover .page-news-card__media img,
.page-news-card__link:focus-visible .page-news-card__media img {
  -webkit-transform: scale(1.04);
  -ms-transform: scale(1.04);
  transform: scale(1.04);
}

.biz-card__visual {
  overflow: hidden;
}

.biz-card__photo {
  -webkit-transition: -webkit-transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

a.biz-card--link:hover .biz-card__photo,
a.biz-card--link:focus-visible .biz-card__photo {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}

.case-card__media {
  overflow: hidden;
}

.case-card__media img {
  -webkit-transition: -webkit-transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.case-card:hover .case-card__media img {
  -webkit-transform: scale(1.04);
  -ms-transform: scale(1.04);
  transform: scale(1.04);
}

.case-card {
  -webkit-transition: -webkit-box-shadow 0.25s ease, -webkit-transform 0.25s ease;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.case-card:hover {
  -webkit-box-shadow: 0 0.1rem 0.2rem -0.04rem rgba(0, 0, 0, 0.12),
    0 0.04rem 0.1rem -0.04rem rgba(0, 0, 0, 0.1);
  box-shadow: 0 0.1rem 0.2rem -0.04rem rgba(0, 0, 0, 0.12),
    0 0.04rem 0.1rem -0.04rem rgba(0, 0, 0, 0.1);
  -webkit-transform: translateY(-0.02rem);
  -ms-transform: translateY(-0.02rem);
  transform: translateY(-0.02rem);
}

.news-card__visual {
  overflow: hidden;
}

.news-card__photo {
  -webkit-transition: -webkit-transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.news-card:hover .news-card__photo {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}

.news-card {
  -webkit-transition: -webkit-box-shadow 0.25s ease, -webkit-transform 0.25s ease;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.news-card:hover {
  -webkit-box-shadow: 0 0.08rem 0.16rem -0.04rem rgba(0, 0, 0, 0.12),
    0 0.04rem 0.08rem -0.04rem rgba(0, 0, 0, 0.08);
  box-shadow: 0 0.08rem 0.16rem -0.04rem rgba(0, 0, 0, 0.12),
    0 0.04rem 0.08rem -0.04rem rgba(0, 0, 0, 0.08);
  -webkit-transform: translateY(-0.02rem);
  -ms-transform: translateY(-0.02rem);
  transform: translateY(-0.02rem);
}

.page-biz-card__figure {
  overflow: hidden;
}

.page-biz-card__photo {
  -webkit-transition: -webkit-transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.page-biz-card:hover .page-biz-card__photo {
  -webkit-transform: scale(1.03);
  -ms-transform: scale(1.03);
  transform: scale(1.03);
}

.page-biz-card {
  -webkit-transition: -webkit-box-shadow 0.25s ease, -webkit-transform 0.25s ease;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.page-biz-card:hover {
  -webkit-box-shadow: 0 0.12rem 0.22rem -0.04rem rgba(0, 0, 0, 0.14),
    0 0.05rem 0.1rem -0.04rem rgba(0, 0, 0, 0.1);
  box-shadow: 0 0.12rem 0.22rem -0.04rem rgba(0, 0, 0, 0.14),
    0 0.05rem 0.1rem -0.04rem rgba(0, 0, 0, 0.1);
  -webkit-transform: translateY(-0.02rem);
  -ms-transform: translateY(-0.02rem);
  transform: translateY(-0.02rem);
}

@media (prefers-reduced-motion: reduce) {
  .page-case-card__photo,
  .page-news-card__media img,
  .biz-card__photo,
  .case-card__media img,
  .news-card__photo,
  .page-biz-card__photo {
    -webkit-transition: none;
    transition: none;
  }

  .page-case-card__link:hover .page-case-card__photo,
  .page-news-card:hover .page-news-card__media img,
  .page-news-card__link:hover .page-news-card__media img,
  a.biz-card--link:hover .biz-card__photo,
  .case-card:hover .case-card__media img,
  .news-card:hover .news-card__photo,
  .page-biz-card:hover .page-biz-card__photo {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }

  .case-card:hover,
  .news-card:hover,
  .page-biz-card:hover,
  .page-news-card:hover {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}

/* -------------------------------------------------------------------------- */
/* 全站：页面加载层 + 区块入场 + 轻交互（page-ui.js）                            */
/* -------------------------------------------------------------------------- */

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 0.2rem;
  background: -webkit-linear-gradient(145deg, #0a2d5c 0%, #153a6b 45%, #1a4080 100%);
  background: linear-gradient(145deg, #0a2d5c 0%, #153a6b 45%, #1a4080 100%);
  -webkit-transition: opacity 0.45s ease, visibility 0.45s ease;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.page-loader.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.page-loader__spinner {
  width: 0.44rem;
  height: 0.44rem;
  border: 0.04rem solid rgba(255, 255, 255, 0.2);
  border-top-color: #fff;
  border-radius: 50%;
  -webkit-animation: pageLoaderSpin 0.75s linear infinite;
  animation: pageLoaderSpin 0.75s linear infinite;
}

.page-loader__hint {
  margin: 0;
  font-size: 0.14rem;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.02rem;
}

@-webkit-keyframes pageLoaderSpin {
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes pageLoaderSpin {
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.js-reveal {
  opacity: 0;
  -webkit-transform: translate3d(0, 0.28rem, 0);
  transform: translate3d(0, 0.28rem, 0);
  -webkit-transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    -webkit-transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.js-reveal.is-visible {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  will-change: auto;
}

.site-nav__link {
  -webkit-transition: color 0.2s ease, opacity 0.2s ease;
  transition: color 0.2s ease, opacity 0.2s ease;
}

a.site-header__logo img {
  -webkit-transition: opacity 0.25s ease, -webkit-transform 0.25s ease;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

a.site-header__logo:hover img {
  opacity: 0.92;
  -webkit-transform: scale(1.02);
  -ms-transform: scale(1.02);
  transform: scale(1.02);
}

.main .btn,
.main .biz-card--link,
.main .case-card__more,
.main .news-card__link,
.site-footer a {
  -webkit-transition: opacity 0.2s ease, -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease, box-shadow 0.2s ease;
  transition: opacity 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.main .btn:hover,
.main .biz-card--link:hover,
.main .case-card__more:hover,
.main .news-card__link:hover {
  -webkit-transform: translateY(-0.02rem);
  -ms-transform: translateY(-0.02rem);
  transform: translateY(-0.02rem);
}

.site-footer__links a:hover {
  opacity: 0.9;
}

/* -------------------------------------------------------------------------- */
/* 申请指南：首页入口、子导航、政策/流程/资格/福利                                  */
/* -------------------------------------------------------------------------- */
.page-guide-hub-section {
  padding: 0.8rem 0 1.2rem;
  background: #f8fafc;
}

.page-guide-head {
  text-align: center;
  margin-bottom: 0.56rem;
}

.page-guide-head__title {
  font-size: 0.36rem;
  font-weight: 600;
  color: #101828;
}

.page-guide-head__rule {
  width: 0.48rem;
  height: 0.04rem;
  margin: 0.16rem auto;
  background: #2962c5;
  border-radius: 0.02rem;
}

.page-guide-head__en {
  font-size: 0.16rem;
  letter-spacing: 0.08em;
  color: #98a2b3;
}

.page-guide-hub-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.32rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.page-guide-hub-card {
  display: block;
  background: #fff;
  border-radius: 0.16rem;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 0.08rem 0.24rem rgba(16, 24, 40, 0.08);
  -webkit-transition: box-shadow 0.2s ease, -webkit-transform 0.2s ease;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.page-guide-hub-card:hover,
.page-guide-hub-card:focus-visible {
  box-shadow: 0 0.16rem 0.4rem rgba(16, 24, 40, 0.12);
  -webkit-transform: translateY(-0.04rem);
  -ms-transform: translateY(-0.04rem);
  transform: translateY(-0.04rem);
}

.page-guide-hub-card__media {
  position: relative;
  aspect-ratio: 389 / 240;
  overflow: hidden;
}

.page-guide-hub-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-guide-hub-card__grad {
  position: absolute;
  inset: 0;
  background: -webkit-linear-gradient(top, transparent 40%, rgba(16, 24, 40, 0.35));
  background: linear-gradient(180deg, transparent 40%, rgba(16, 24, 40, 0.35));
  pointer-events: none;
}

.page-guide-hub-card__body {
  padding: 0.28rem 0.32rem 0.32rem;
}

.page-guide-hub-card__title {
  font-size: 0.28rem;
  font-weight: 600;
  color: #1e3a5f;
}

.page-guide-hub-card__desc {
  margin-top: 0.08rem;
  font-size: 0.16rem;
  line-height: 0.26rem;
  color: #667085;
}

.page-guide-hub-card__more {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.06rem;
  margin-top: 0.16rem;
  font-size: 0.16rem;
  font-weight: 500;
  color: #2962c5;
}

.page-guide-hub-card__more img {
  width: 0.18rem;
  height: 0.18rem;
}

.page-guide-subnav {
  background: #fff;
  border-bottom: 1px solid #e4e7ec;
  position: sticky;
  top: 0;
  z-index: 20;
}

.page-guide-subnav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 0.08rem 0.32rem;
  list-style: none;
  margin: 0;
  padding: 0.2rem 0;
  font-size: 0;
  line-height: 1;
}

.page-guide-subnav__link {
  font-size: 0.18rem;
  line-height: 0.28rem;
  color: #475467;
  text-decoration: none;
  padding: 0.08rem 0;
  border-bottom: 2px solid transparent;
}

.page-guide-subnav__link--active,
.page-guide-subnav__link:hover,
.page-guide-subnav__link:focus-visible {
  color: #2962c5;
  border-bottom-color: #2962c5;
}

.page-guide-panel {
  padding: 0.64rem 0 1rem;
  background: -webkit-linear-gradient(180deg, #f0f6fc 0%, #f8fafc 40%, #fff 100%);
  background: linear-gradient(180deg, #f0f6fc 0%, #f8fafc 40%, #fff 100%);
}

.page-guide-panel__inner--narrow {
  max-width: 9.6rem;
}

.page-guide-section-head__title {
  font-size: 0.48rem;
  font-weight: 600;
  line-height: 1.2;
  color: #1e3a5f;
}

.page-guide-section-head__en {
  margin-top: 0.08rem;
  font-size: 0.16rem;
  letter-spacing: 0.06em;
  color: #98a2b3;
  text-transform: uppercase;
}

.page-guide-section-head--center {
  text-align: center;
  margin-bottom: 0.48rem;
}

.page-guide-panel__grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 0.48rem;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
}

.page-guide-panel__intro {
  margin-top: 0.24rem;
  font-size: 0.18rem;
  line-height: 0.32rem;
  color: #364153;
}

.page-guide-panel__visual img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-guide-panel__visual--rounded-left img {
  border-radius: 0.24rem 0 0 0.24rem;
  min-height: 5.6rem;
  object-fit: cover;
}

/* 政策保护手风琴 */
.guide-accordion {
  margin-top: 0.4rem;
  border-top: 1px solid #e4e7ec;
}

.guide-accordion__item {
  border-bottom: 1px solid #e4e7ec;
}

.guide-accordion__trigger {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.16rem;
  width: 100%;
  padding: 0.24rem 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
  font-size: 0.2rem;
  font-weight: 500;
  color: #1e3a5f;
}

.guide-accordion__icon {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 0.32rem;
  height: 0.32rem;
  border-radius: 50%;
  background: #2962c5;
  position: relative;
}

.guide-accordion__icon::before,
.guide-accordion__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: #fff;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.guide-accordion__icon::before {
  width: 0.12rem;
  height: 0.02rem;
}

.guide-accordion__icon::after {
  width: 0.02rem;
  height: 0.12rem;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}

.guide-accordion__item--open .guide-accordion__icon::after {
  opacity: 0;
}

.guide-accordion__panel {
  display: none;
  padding: 0 0 0.24rem 0.48rem;
}

.guide-accordion__item--open .guide-accordion__panel {
  display: block;
}

.guide-accordion__panel p {
  font-size: 0.16rem;
  line-height: 0.28rem;
  color: #667085;
}

/* 赴德流程（平铺列表） */
.page-guide-process-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.32rem;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  margin-bottom: 0.48rem;
}

.page-guide-process-top__notice {
  font-size: 0.16rem;
  line-height: 0.28rem;
  color: #667085;
  text-align: right;
}

.guide-process-flat {
  list-style: none;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0;
}

.guide-process-flat__item {
  display: grid;
  grid-template-columns: 0.72rem 1fr;
  gap: 0.24rem;
  padding-bottom: 0.4rem;
  position: relative;
}

.guide-process-flat__item:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 0.35rem;
  top: 0.56rem;
  bottom: 0;
  width: 2px;
  background: #d0d5dd;
}

.guide-process-flat__marker {
  position: relative;
  z-index: 1;
}

.guide-process-flat__num {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 0.56rem;
  height: 0.56rem;
  border-radius: 50%;
  background: #2962c5;
  color: #fff;
  font-size: 0.18rem;
  font-weight: 600;
  line-height: 1;
}

.guide-process-flat__body {
  background: #fff;
  border-radius: 0.12rem;
  padding: 0.28rem 0.32rem;
  box-shadow: 0 0.04rem 0.16rem rgba(16, 24, 40, 0.06);
  border: 1px solid #e4e7ec;
}

.guide-process-flat__title {
  font-size: 0.24rem;
  font-weight: 600;
  line-height: 1.35;
  color: #1e3a5f;
}

.guide-process-flat__text {
  margin-top: 0.12rem;
  font-size: 0.16rem;
  line-height: 0.28rem;
  color: #475467;
}

.guide-process-flat__media {
  margin-top: 0.2rem;
  border-radius: 0.1rem;
  overflow: hidden;
  background: #eef2f6;
}

.guide-process-flat__media img {
  width: 100%;
  max-width: 4.8rem;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 3 / 2;
}

/* 申请资格 */
.guide-eligibility-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0.48rem;
}

.guide-eligibility-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.32rem;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.guide-eligibility-block__media img {
  width: 100%;
  height: 100%;
  min-height: 3.2rem;
  object-fit: cover;
  border-radius: 0.16rem;
  display: block;
}

.guide-eligibility-block__card {
  padding: 0.4rem 0.48rem;
  border-radius: 0.16rem;
  background-color: #f0f2f5;
  background-image: -webkit-repeating-linear-gradient(
    -12deg,
    transparent,
    transparent 0.12rem,
    rgba(41, 98, 197, 0.04) 0.12rem,
    rgba(41, 98, 197, 0.04) 0.13rem
  );
  background-image: repeating-linear-gradient(
    -12deg,
    transparent,
    transparent 0.12rem,
    rgba(41, 98, 197, 0.04) 0.12rem,
    rgba(41, 98, 197, 0.04) 0.13rem
  );
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.guide-eligibility-block__title {
  font-size: 0.28rem;
  font-weight: 600;
  color: #344054;
}

.guide-eligibility-block__bullets {
  margin: 0.24rem 0 0;
  padding: 0;
  list-style: none;
}

.guide-eligibility-block__bullets li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.12rem;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  font-size: 0.16rem;
  line-height: 0.28rem;
  color: #475467;
  margin-top: 0.1rem;
}

.guide-eligibility-block__bullet {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 0.08rem;
  height: 0.08rem;
  margin-top: 0.1rem;
  background: #2962c5;
}

.guide-eligibility-block__cta {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 0.28rem;
  padding: 0.12rem 0.32rem;
  font-size: 0.16rem;
  font-weight: 500;
  color: #fff;
  background: #1e3a5f;
  border-radius: 0.06rem;
  text-decoration: none;
  -ms-flex-item-align: start;
  align-self: flex-start;
}

.guide-eligibility-block__cta:hover,
.guide-eligibility-block__cta:focus-visible {
  background: #2962c5;
}

/* 公民福利 */
.guide-benefits-hero {
  margin: 0.32rem 0 0.48rem;
  border-radius: 0.12rem;
  overflow: hidden;
}

.guide-benefits-hero img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 4.8rem;
}

.guide-benefits-section + .guide-benefits-section {
  margin-top: 0.4rem;
}

.guide-benefits-section__title {
  font-size: 0.22rem;
  font-weight: 600;
  color: #101828;
  margin-bottom: 0.16rem;
}

.guide-benefits-section__p {
  font-size: 0.16rem;
  line-height: 0.3rem;
  color: #475467;
  margin-top: 0.12rem;
}

@media (max-width: 900px) {
  .page-guide-hub-grid {
    grid-template-columns: 1fr;
  }

  .page-guide-panel__grid,
  .page-guide-process-top,
  .guide-eligibility-block {
    grid-template-columns: 1fr;
  }

  .page-guide-process-top__notice {
    text-align: left;
  }

  .page-guide-panel__visual--rounded-left img {
    border-radius: 0.16rem;
    min-height: 0;
  }

  .guide-process-flat__item {
    grid-template-columns: 0.56rem 1fr;
    gap: 0.16rem;
  }

  .guide-process-flat__item:not(:last-child)::before {
    left: 0.27rem;
  }

  .guide-process-flat__num {
    width: 0.48rem;
    height: 0.48rem;
    font-size: 0.16rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-loader {
    display: none !important;
  }

  .js-reveal {
    opacity: 1;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    -webkit-transition: none;
    transition: none;
  }
}
