/* 跨页导航过渡：新页就绪前保持旧页画面，避免白屏（Chrome 126+ / Edge） */
@view-transition {
  navigation: auto;
}

::view-transition-old(root),
::view-transition-new(root) {
  animation-duration: 0.18s;
  animation-timing-function: ease-out;
}

/* === include_head.template.html === */

:root {
  --site-canvas-width: 1920px;
  --site-canvas-half: calc(var(--site-canvas-width) / 2);
  --site-canvas-left: calc(50vw - var(--site-canvas-half));
  --site-canvas-right: calc(50vw - var(--site-canvas-half));

  /* 全站层级（数值越小越靠下） */
  --z-section: 2;
  --z-hero-ui: 10;
  --z-footer: 20;
  --z-sticky: 40;
  --z-nav: 50;
  --z-float: 60;
  --z-popup: 70;
  --z-modal: 100;
}

html {
  display: flex;
  justify-content: center;
  min-width: 100%;
  background: #ffffff;
  scrollbar-gutter: stable;
}

/* 视口 < 1920px：由 site-scale.js 对 html 做 zoom 等比缩小，避免横向裁切 */
html.site-scaled {
  display: block;
  overflow-x: hidden;
  width: 100%;
}

html.site-scaled body {
  margin: 0 auto;
  overflow-x: hidden;
}

/* 首屏：html 页面类导航（与 body 类规则并存） */
html.page-news .site-nav .site-nav-bg-white,
html.page-article .site-nav .site-nav-bg-white,
html.page-legal .site-nav .site-nav-bg-white,
html.page-catalog .site-nav .site-nav-bg-white {
  transform: translateY(0);
  visibility: visible;
}

html.page-news .site-nav .site-nav-logo-img,
html.page-article .site-nav .site-nav-logo-img,
html.page-legal .site-nav .site-nav-logo-img,
html.page-catalog .site-nav .site-nav-logo-img {
  filter: none;
}

html.page-news .site-nav .site-nav-link,
html.page-article .site-nav .site-nav-link,
html.page-legal .site-nav .site-nav-link,
html.page-catalog .site-nav .site-nav-link {
  color: #000000;
}

.banner-flow-spacer,
.service-hero-spacer,
.about-hero-spacer {
  width: 1920px;
  pointer-events: none;
}

.banner-flow-spacer {
  height: 1060px;
}

.service-hero-spacer,
.about-hero-spacer {
  height: 1080px;
}

html,
body {
  margin: 0;
  padding: 0;
  overflow-x: clip;
}

body {
  width: var(--site-canvas-width);
  min-width: var(--site-canvas-width);
  flex: 0 0 auto;
  font-family: "微软雅黑", "Microsoft YaHei", sans-serif;
}

/* 页面根容器：相对定位，宽度固定，由内部文档流撑开高度 */
#base {
  position: relative;
  width: var(--site-canvas-width);
  margin: 0;
}

/* 首页主内容区：盖住横幅层，板块纵向无缝拼接 */
.home-main {
  position: relative;
  width: 1920px;
  z-index: 2;
  isolation: isolate;
}

.home-main > section,
.home-main > .site-footer {
  position: relative;
  display: block;
  width: 1920px;
  margin: 0;
  padding: 0;
  border: 0;
  overflow: hidden;
  box-sizing: border-box;
}

/* 消除亚像素缝隙，避免底层横幅从模块接缝漏出 */
.home-main > section + section,
.home-main > section + .site-footer {
  margin-top: -1px;
}

.home-main .business-section {
  height: 900px;
  background-color: #f3f5f7;
}

.home-main .news-section {
  height: 900px;
  background-color: #ffffff;
}

.home-main .process-section {
  height: 900px;
  background-color: #1a1a1a;
}

.home-main .about-section {
  height: 900px;
  background-color: #ffffff;
}

.home-main .site-footer {
  height: 159px;
  background-color: #000000;
}

/* 服务页主内容区：纵向文档流拼接 */
.service-main {
  position: relative;
  width: 1920px;
  z-index: 2;
}

.service-main > section,
.service-main > .site-footer {
  position: relative;
  display: block;
  width: 1920px;
  margin: 0;
  padding: 0;
  border: 0;
  overflow: hidden;
  box-sizing: border-box;
}

.service-main > section + section,
.service-main > section + .site-footer {
  margin-top: -1px;
}

.service-main .site-footer {
  height: 159px;
  background-color: #000000;
  overflow: visible;
}

/* 关于页主内容区 */
.about-main {
  position: relative;
  width: var(--site-canvas-width);
  z-index: 2;
}

.about-main > section,
.about-main > .site-footer {
  position: relative;
  display: block;
  width: var(--site-canvas-width);
  margin: 0;
  padding: 0;
  border: 0;
  overflow: visible;
  box-sizing: border-box;
}

.about-main > section + .site-footer {
  margin-top: -1px;
}

.about-main .site-footer {
  height: 159px;
  background-color: #000000;
  overflow: visible;
}

/* 资讯页主内容区 */
.news-main {
  position: relative;
  width: var(--site-canvas-width);
  z-index: 2;
  padding-top: 60px;
}

.news-main > section,
.news-main > .site-footer {
  position: relative;
  display: block;
  width: var(--site-canvas-width);
  margin: 0;
  padding: 0;
  border: 0;
  overflow: visible;
  box-sizing: border-box;
}

.news-main > section + .site-footer {
  margin-top: -1px;
}

.news-main .site-footer {
  height: 159px;
  background-color: #000000;
  overflow: visible;
}

/* 资讯详情页主内容区 */
.article-main {
  position: relative;
  width: var(--site-canvas-width);
  z-index: 2;
  padding-top: 60px;
}

.article-main > section,
.article-main > .site-footer {
  position: relative;
  display: block;
  width: var(--site-canvas-width);
  margin: 0;
  padding: 0;
  border: 0;
  overflow: visible;
  box-sizing: border-box;
}

.article-main > section + .site-footer {
  margin-top: -1px;
}

.article-main .site-footer {
  height: 159px;
  background-color: #000000;
  overflow: visible;
}

.article-page {
  background: #ffffff;
}

.article-page-inner {
  display: grid;
  grid-template-columns: minmax(0, 970px) minmax(0, 480px);
  gap: 50px;
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  padding: 59px 0 80px;
  box-sizing: border-box;
}

.article-page-inner:not(:has(.article-page-aside)) {
  grid-template-columns: minmax(0, 970px);
  justify-content: center;
}

.article-page-back {
  min-height: 28px;
  margin: 0 0 16px;
  line-height: 28px;
}

.article-page-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #7f7f7f;
  text-decoration: none;
  transition: color 0.2s ease;
}

.article-page-back-link:hover {
  color: #1a45b3;
}

.article-page-back-icon {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  flex-shrink: 0;
  margin-right: 2px;
}

.article-page-title {
  margin: 0 0 30px;
  font-size: 26px;
  font-weight: 700;
  color: #000000;
  line-height: 1.45;
}

.article-page-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 36px;
  font-size: 14px;
  color: #7f7f7f;
  line-height: 1.4;
}

.article-page-body {
  font-size: 14px;
  color: #000000;
  line-height: 1.8;
  text-align: justify;
  text-justify: inter-word;
}

.article-page-body img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 24px 0;
}

.article-page-body p {
  margin: 0 0 1em;
}

.article-page-nav {
  flex: 1;
  min-width: 0;
  font-size: 14px;
  color: #666666;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.article-page-nav a:hover {
  color: #1a45b3;
}

.article-page-foot {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid #eeeeee;
}

.article-page-foot-back {
  flex-shrink: 0;
  padding-top: 2px;
}

.article-page-aside-title {
  margin: 0 0 24px;
  font-size: 28px;
  font-weight: 400;
  color: #000000;
  line-height: 1.3;
}

.article-page-aside {
  min-width: 0;
}

.article-page-hotlist {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.article-hot-card {
  display: block;
  border: 1px solid #e4e7ed;
  border-radius: 5px;
  overflow: hidden;
  background: #ffffff;
  transition: box-shadow 0.2s ease;
}

.article-hot-card:hover {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
}

.article-hot-cover {
  width: 100%;
  aspect-ratio: 480 / 288;
  overflow: hidden;
  background: #f5f5f5;
}

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

.article-hot-body {
  padding: 16px 20px 20px;
  box-sizing: border-box;
}

.article-hot-title {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 400;
  color: #000000;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-hot-date {
  display: block;
  font-size: 14px;
  color: #aaaaaa;
  line-height: 1.4;
}

/* 法务页（服务协议 / 隐私政策） */
.legal-main {
  position: relative;
  width: var(--site-canvas-width);
  z-index: 2;
  padding-top: 60px;
}

.legal-main > section,
.legal-main > .site-footer {
  position: relative;
  display: block;
  width: var(--site-canvas-width);
  margin: 0;
  padding: 0;
  border: 0;
  overflow: visible;
  box-sizing: border-box;
}

.legal-main > section + .site-footer {
  margin-top: -1px;
}

.legal-main .site-footer {
  height: 159px;
  background-color: #000000;
  overflow: visible;
}

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

p {
  margin: 0;
}

img {
  border: 0;
}

/* === include_nav_main.template.html === */

/* ===== 导航栏容器 ===== */
.site-nav {
  position: fixed;
  left: 50%;
  margin-left: calc(var(--site-canvas-width) / -2);
  top: 0;
  width: var(--site-canvas-width);
  height: 60px;
  z-index: var(--z-nav);
  overflow: visible;
}

/* 资讯/文章/法务等内页：首帧即白底导航，不做下滑过渡 */
.site-nav.nav-solid .site-nav-bg-white,
.site-nav.nav-solid .site-nav-logo-img,
.site-nav.nav-solid .site-nav-link,
.site-nav.nav-solid .site-nav-icon,
.site-nav.nav-solid .site-nav-login-icon,
.site-nav.nav-solid .site-nav-login-text {
  transition: none !important;
}

/* 背景层通用 */
.site-nav-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-bottom: 1px solid transparent;
}

/* 透明背景层 - 首屏覆盖在 Banner 上 */
.site-nav-bg-transparent {
  background-color: transparent;
  z-index: 1;
}

/* 白色背景层 - 初始向上偏移隐藏 */
.site-nav-bg-white {
  background-color: #ffffff;
  border-bottom-color: rgba(242, 242, 242, 1);
  z-index: 2;
  transform: translateY(-100%);
  visibility: hidden;
}

.site-nav.nav-anim-ready .site-nav-bg-white {
  transition:
    transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    visibility 0.6s;
}

.site-nav.nav-anim-ready .site-nav-logo-img,
.site-nav.nav-anim-ready .site-nav-link,
.site-nav.nav-anim-ready .site-nav-icon,
.site-nav.nav-anim-ready .site-nav-login-icon,
.site-nav.nav-anim-ready .site-nav-login-text {
  transition:
    filter 0.8s ease,
    color 0.8s ease,
    border-color 0.8s ease;
}

/* 滚动后 / 内页：白色背景 */
.site-nav.scrolled .site-nav-bg-white,
body.page-news .site-nav .site-nav-bg-white,
body.page-article .site-nav .site-nav-bg-white,
body.page-legal .site-nav .site-nav-bg-white,
body.page-catalog .site-nav .site-nav-bg-white {
  transform: translateY(0);
  visibility: visible;
}

/* Logo区域 - 初始可见 */
.site-nav-logo {
  position: absolute;
  left: 0;
  top: 0;
  width: 547px;
  height: 60px;
  z-index: 3;
}

.site-nav-logo-link {
  position: absolute;
  left: 40px;
  top: 16px;
  width: 88px;
  height: 28px;
  display: block;
}

.site-nav-logo-img {
  width: 88px;
  height: 28px;
}

/* 首屏透明导航（仅首页/带 Hero 的内页） */
body:not(.page-news):not(.page-article):not(.page-legal):not(.page-catalog)
  .site-nav:not(.scrolled)
  .site-nav-logo-img {
  filter: brightness(0) invert(1);
}

.site-nav.scrolled .site-nav-logo-img,
body.page-news .site-nav .site-nav-logo-img,
body.page-article .site-nav .site-nav-logo-img,
body.page-legal .site-nav .site-nav-logo-img,
body.page-catalog .site-nav .site-nav-logo-img {
  filter: none;
}

/* 居中导航链接 - 初始可见 */
.site-nav-links {
  position: absolute;
  left: 50%;
  margin-left: -139px;
  top: 0;
  width: 278px;
  height: 60px;
  z-index: 3;
}

/* 导航链接 - 绝对定位 82px 间隔 (u252:0, u253:82, u254:164, u255:246) */
.site-nav-link {
  position: absolute;
  top: 1px;
  width: auto;
  min-width: 32px;
  height: 58px;
  font-family: "微软雅黑", sans-serif;
  font-weight: 400;
  font-size: 14px;
  text-decoration: none;
  text-align: center;
  line-height: 58px;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  box-sizing: border-box;
}

body:not(.page-news):not(.page-article):not(.page-legal):not(.page-catalog)
  .site-nav:not(.scrolled)
  .site-nav-link {
  color: #ffffff;
}

body:not(.page-news):not(.page-article):not(.page-legal):not(.page-catalog)
  .site-nav:not(.scrolled)
  .site-nav-link:hover,
body:not(.page-news):not(.page-article):not(.page-legal):not(.page-catalog)
  .site-nav:not(.scrolled)
  .site-nav-link-active {
  border-bottom-color: #ffffff;
}

.site-nav.scrolled .site-nav-link,
body.page-news .site-nav .site-nav-link,
body.page-article .site-nav .site-nav-link,
body.page-legal .site-nav .site-nav-link,
body.page-catalog .site-nav .site-nav-link {
  color: #000000;
}

.site-nav.scrolled .site-nav-link:hover,
.site-nav.scrolled .site-nav-link-active,
body.page-news .site-nav .site-nav-link:hover,
body.page-news .site-nav .site-nav-link-active,
body.page-article .site-nav .site-nav-link:hover,
body.page-article .site-nav .site-nav-link-active,
body.page-legal .site-nav .site-nav-link:hover,
body.page-legal .site-nav .site-nav-link-active,
body.page-catalog .site-nav .site-nav-link:hover,
body.page-catalog .site-nav .site-nav-link-active {
  border-bottom-color: rgba(26, 69, 179, 1);
}

/* 右侧功能区 - 初始可见 */
.site-nav-right {
  position: absolute;
  right: 0;
  top: 0;
  width: 191px;
  height: 60px;
  z-index: 3;
}

.site-nav-right-item {
  position: absolute;
  cursor: pointer;
}

/* 热线图标位置（相对于group） */
.site-nav-hotline {
  left: 0;
  top: 21px;
  width: 17px;
  height: 18px;
}

/* 微信图标位置（相对于group） */
.site-nav-wechat {
  left: 0;
  top: 21px;
  width: 22px;
  height: 18px;
}

/* 登录 u290: left:76 top:1 75x58 */
.site-nav-login {
  left: 76px;
  top: 1px;
  width: 75px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

/* 图标通用 */
.site-nav-icon {
  display: block;
}

body:not(.page-news):not(.page-article):not(.page-legal):not(.page-catalog)
  .site-nav:not(.scrolled)
  .site-nav-icon,
body:not(.page-news):not(.page-article):not(.page-legal):not(.page-catalog)
  .site-nav:not(.scrolled)
  .site-nav-login-icon {
  filter: brightness(0) invert(1);
}

.site-nav.scrolled .site-nav-icon,
.site-nav.scrolled .site-nav-login-icon,
body.page-news .site-nav .site-nav-icon,
body.page-news .site-nav .site-nav-login-icon,
body.page-article .site-nav .site-nav-icon,
body.page-article .site-nav .site-nav-login-icon,
body.page-legal .site-nav .site-nav-icon,
body.page-legal .site-nav .site-nav-login-icon,
body.page-catalog .site-nav .site-nav-icon,
body.page-catalog .site-nav .site-nav-login-icon {
  filter: none;
}

.site-nav-hotline .site-nav-icon {
  width: 17px;
  height: 18px;
}

.site-nav-wechat .site-nav-icon {
  width: 22px;
  height: 18px;
}

/* 用户图标 u287: 16x18 */
.site-nav-login-icon {
  width: 16px;
  height: 18px;
}

/* 登录文字 */
.site-nav-login-text {
  font-family: "微软雅黑 Bold", "微软雅黑", sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
}

body:not(.page-news):not(.page-article):not(.page-legal):not(.page-catalog)
  .site-nav:not(.scrolled)
  .site-nav-login-text {
  color: #ffffff;
}

.site-nav.scrolled .site-nav-login-text,
body.page-news .site-nav .site-nav-login-text,
body.page-article .site-nav .site-nav-login-text,
body.page-legal .site-nav .site-nav-login-text,
body.page-catalog .site-nav .site-nav-login-text {
  color: #000000;
}

.site-nav-login-text:hover {
  border-bottom-color: rgba(26, 69, 179, 1);
}

/* ===== 弹出面板 ===== */
.site-nav-popup {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 60px;
  width: 199px;
  background: #ffffff;
  border: 1px solid #f2f2f2;
  border-radius: 0 0 5px 5px;
  padding: 20px;
  box-sizing: border-box;
  z-index: var(--z-popup);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  pointer-events: none;
  transition:
    opacity 0.15s ease,
    visibility 0.15s ease;
}

.site-nav-right-group:hover {
  z-index: 2;
}

.site-nav-right-group:hover .site-nav-popup {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

/* 各图标独立占位，避免两组 hover 区域重叠 */
.site-nav-group-hotline {
  position: absolute;
  left: 0;
  top: 0;
  width: 17px;
  height: 60px;
}

.site-nav-group-wechat {
  position: absolute;
  left: 36px;
  top: 0;
  width: 22px;
  height: 60px;
}

.site-nav-group-hotline .site-nav-hotline,
.site-nav-group-wechat .site-nav-wechat {
  left: 0;
  right: auto;
}

.popup-hotline {
  left: -141px;
}

.popup-wechat {
  left: -182px;
}

.site-nav-popup-title {
  font-family: "微软雅黑", sans-serif;
  font-size: 14px;
  color: #333333;
  margin-bottom: 15px;
}

.site-nav-popup-phone {
  font-family: "微软雅黑", sans-serif;
  font-size: 14px;
  color: #555555;
}

.site-nav-popup-qr {
  display: block;
  width: 119px;
  height: 119px;
  margin: 10px auto;
}

/* === include_sidebar.template.html === */

.site-sidebar {
  position: fixed;
  right: 0;
  bottom: 0;
  width: 0;
  height: 0;
  z-index: var(--z-float);
  pointer-events: none;
}

/* 纵向排列，间距与 Axure 一致：56px 按钮 + 7px 间距 */
.site-sidebar-stack {
  position: fixed;
  right: calc(50% - var(--site-canvas-half) + 40px);
  bottom: 169px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  pointer-events: auto;
  overflow: visible;
  z-index: var(--z-float);
}

.site-sidebar-group {
  position: relative;
  width: 56px;
  height: 56px;
  overflow: visible;
  flex: 0 0 auto;
}

/* 主按钮 */
.site-sidebar-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
  text-decoration: none;
  flex: 0 0 auto;
  overflow: visible;
}

.site-sidebar-btn-bg {
  position: absolute;
  left: 3px;
  top: 3px;
  width: 50px;
  height: 50px;
  background: #ffffff;
  border-radius: 50%;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  transition: box-shadow 0.2s;
}

.site-sidebar-btn:hover .site-sidebar-btn-bg,
.site-sidebar-group.is-open .site-sidebar-btn-bg {
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.28);
}

/* 图标统一尺寸与颜色 */
.site-sidebar-btn-icon,
.site-sidebar-strip-icon {
  position: relative;
  z-index: 2;
  display: block;
  width: 20px;
  height: 20px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(33%) sepia(6%) saturate(0%)
    hue-rotate(174deg) brightness(94%) contrast(88%);
}

.site-sidebar-strip-icon {
  width: auto;
  height: 18px;
  max-width: 22px;
}

/* 返回顶部：滚动后显示，占位保留避免跳动 */
.site-sidebar-top {
  visibility: hidden;
  pointer-events: none;
}

.site-sidebar-top.is-visible {
  visibility: visible;
  pointer-events: auto;
}

/* 横向展开条：在按钮左侧 */
.site-sidebar-strip {
  position: absolute;
  right: 60px;
  top: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  height: 50px;
  padding: 0 18px;
  background: #ffffff;
  border-radius: 25px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.12);
  visibility: hidden;
  pointer-events: none;
  transform: translateX(8px);
  transition:
    visibility 0.2s ease,
    transform 0.2s ease;
  overflow: visible;
  z-index: var(--z-popup);
}

.site-sidebar-social-strip,
.site-sidebar-service-strip {
  width: auto;
}

.site-sidebar-service-strip {
  gap: 20px;
}

.site-sidebar-group:hover .site-sidebar-strip,
.site-sidebar-group.is-open .site-sidebar-strip {
  visibility: visible;
  pointer-events: auto;
  transform: translateX(0);
}

/* 条内每个图标：弹窗在上、图标在下 */
.site-sidebar-strip-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
}

/* 弹窗卡片：在图标正上方居中 */
.site-sidebar-card {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 14px);
  width: 199px;
  padding: 16px;
  box-sizing: border-box;
  background: #ffffff;
  border-radius: 4px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
  transform: translateX(-50%);
  visibility: hidden;
  pointer-events: none;
  transition: visibility 0.2s ease;
  z-index: var(--z-popup);
  text-align: center;
}

.site-sidebar-strip-item:hover .site-sidebar-card {
  visibility: visible;
  pointer-events: auto;
}

.site-sidebar-card strong {
  display: block;
  margin-top: 10px;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 400;
  color: #333333;
  line-height: 1.4;
}

.site-sidebar-card-qr {
  display: block;
  width: 119px;
  height: 119px;
  margin: 0 auto;
  object-fit: contain;
}

.site-sidebar-card-text {
  min-height: 82px;
  padding-top: 18px;
  padding-bottom: 18px;
}

.site-sidebar-card-text em {
  display: block;
  font-style: normal;
  font-size: 16px;
  font-weight: 700;
  color: #1a45b3;
  line-height: 1.4;
}

/* === include_footer.template.html === */

.site-footer {
  height: 159px;
  position: relative;
  z-index: var(--z-footer);
  overflow: visible;
}

/* 覆盖首页通用板块规则，footer 弹层需要向上溢出显示 */
.home-main > .site-footer {
  overflow: visible;
  z-index: var(--z-footer);
}

.site-footer-bar {
  position: relative;
  width: 1920px;
  height: 159px;
  background-color: #000000;
  overflow: visible;
  z-index: var(--z-footer);
}

.site-footer-nav {
  position: absolute;
  left: 40px;
  top: 30px;
  display: flex;
  gap: 44px;
}

.site-footer-link {
  font-family: "微软雅黑", sans-serif;
  font-size: 14px;
  color: #d7d7d7;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: color 0.2s;
  white-space: nowrap;
}

.site-footer-link:hover {
  color: #ffffff;
}

.site-footer-hotline {
  position: absolute;
  left: 1294px;
  top: 31px;
  font-size: 14px;
  white-space: nowrap;
}

.site-footer-hotline-label {
  color: #aaaaaa;
}

.site-footer-hotline-num {
  color: #ffffff;
}

.site-footer-socials {
  position: absolute;
  left: 1521px;
  top: 31px;
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 359px;
  height: 18px;
}

.site-footer-social {
  position: relative;
  flex: 0 0 auto;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}

.site-footer-social-icon {
  width: auto;
  height: 18px;
  max-width: 22px;
  display: block;
  cursor: pointer;
}

.site-footer-social:hover {
  z-index: 1;
}

.site-footer-popup {
  position: fixed;
  left: 0;
  bottom: auto;
  transform: translateX(-50%);
  background: #ffffff;
  border-radius: 4px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
  padding: 16px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.2s,
    visibility 0.2s;
  z-index: var(--z-popup);
}

.site-footer-popup.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.site-footer-popup-title {
  font-size: 14px;
  color: #333333;
  text-align: center;
  margin-bottom: 10px;
}

.site-footer-popup-text {
  font-size: 16px;
  color: #1a45b3;
  text-align: center;
  font-weight: 700;
}

.site-footer-popup-qr {
  width: 199px;
}

.site-footer-popup-qr-img {
  display: block;
  width: 119px;
  height: 119px;
  margin: 0 auto;
  object-fit: contain;
}

.site-footer-divider {
  position: absolute;
  left: 40px;
  top: 79px;
  width: 1840px;
  height: 1px;
}

.site-footer-bottom {
  position: absolute;
  left: 40px;
  top: 110px;
  width: 1840px;
  height: 19px;
  display: flex;
  align-items: center;
  gap: 30px;
}

.site-footer-copyright {
  position: absolute;
  left: 1393px;
  top: 0;
  margin: 0;
  width: 270px;
  font-size: 14px;
  color: #d7d7d7;
  white-space: nowrap;
}

.site-footer-icp {
  position: absolute;
  left: 1693px;
  top: 0;
  margin: 0;
  width: 147px;
  font-size: 14px;
  color: #d7d7d7;
  white-space: nowrap;
}

/* CMS 内页：底部改为文档流布局 */
.cms-page-footer .site-footer {
  position: relative;
  top: auto;
  left: 0;
  width: 100%;
  min-width: 1920px;
  margin-top: 60px;
}

.site-footer-modal {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  display: flex;
  align-items: center;
  justify-content: center;
}

#friendLinkModal {
  inset: auto auto 59px 40px;
  width: 304px;
  height: 473px;
  display: block;
  pointer-events: auto;
}

#friendLinkModal .site-footer-modal-mask {
  display: none;
}

#friendLinkModal[hidden] {
  display: none !important;
}

.site-footer-modal[hidden] {
  display: none !important;
}

.site-footer-modal-mask {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

#licenseModal {
  z-index: var(--z-modal);
  align-items: center;
  justify-content: center;
}

#licenseModal .site-footer-modal-mask {
  background: rgba(0, 0, 0, 0.65);
}

.site-footer-friendlink-panel {
  position: relative;
  width: 304px;
  height: 473px;
  max-height: 473px;
  overflow-y: auto;
  background: #ffffff;
  border-radius: 4px;
  padding: 20px 24px;
  box-sizing: border-box;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
  z-index: 1;
}

.site-footer-friendlink-title {
  font-size: 16px;
  color: #333333;
  margin: 0 0 16px;
  font-weight: 700;
}

.site-footer-friendlink-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer-friendlink-list li {
  margin-bottom: 12px;
}

.site-footer-friendlink-list a {
  font-size: 14px;
  color: #333333;
  line-height: 1.6;
}

.site-footer-friendlink-list a:hover {
  color: #1a45b3;
}

.site-footer-license-panel {
  position: relative;
  z-index: 1;
  width: 704px;
  height: 496px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.22);
}

.site-footer-license-img {
  display: block;
  width: 640px;
  height: auto;
  max-height: 440px;
  object-fit: contain;
}

.site-footer-license-close {
  position: fixed;
  right: 40px;
  top: 40px;
  width: 45px;
  height: 45px;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.45);
  cursor: pointer;
  padding: 0;
  z-index: 2;
  font-size: 0;
}

.site-footer-license-close::before,
.site-footer-license-close::after {
  content: "";
  position: absolute;
  left: 12px;
  top: 21px;
  width: 21px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
}

.site-footer-license-close::before {
  transform: rotate(45deg);
}

.site-footer-license-close::after {
  transform: rotate(-45deg);
}

.site-footer-license-close img {
  display: none;
}

/* === include_banner.template.html === */

/* 为 fixed 横幅预留文档流空间 */
.banner-flow-spacer {
  width: 1920px;
  height: 1060px;
  pointer-events: none;
}

/* ===== Banner Swiper 样式（absolute 随页滚动，避免 fixed 从模块缝隙漏出） ===== */
.banner-swiper-wrapper {
  position: absolute;
  left: 0;
  top: 0;
  width: 1920px;
  height: 1080px;
  z-index: 0;
}

.banner-swiper {
  width: 1920px;
  height: 1080px;
  overflow: hidden;
}

/* 幻灯片 */
.banner-slide {
  position: relative;
  width: 1920px;
  height: 1080px;
  overflow: hidden;
}

.banner-bg {
  position: absolute;
  left: 0;
  top: -99px;
  width: 1920px;
  height: auto;
  pointer-events: none;
}

.banner-content {
  position: absolute;
  left: 0;
  top: 0;
  width: 1920px;
  height: 1080px;
}

.banner-title {
  position: absolute;
  font-family: "微软雅黑 Bold", "微软雅黑", sans-serif;
  font-weight: 700;
  font-size: 46px;
  color: #ffffff;
  margin: 0;
  white-space: nowrap;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.banner-subtitle {
  position: absolute;
  font-family: "微软雅黑", sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #ffffff;
  text-align: center;
  line-height: 50px;
  margin: 0;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

/* 分页指示器 - 80px轨道 + 40px滑动指示器 */
.banner-pagination {
  position: absolute;
  left: 920px;
  top: 860px;
  z-index: 10;
}

.banner-pagination-track {
  position: relative;
  width: 80px;
  height: 5px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.298);
  overflow: hidden;
}

.banner-pagination-indicator {
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 5px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 1);
  transition: left 0.5s ease;
}

/* 左右导航箭头 */
.banner-nav-btn {
  position: absolute;
  top: 400px;
  width: 50px;
  height: 50px;
  z-index: 10;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s;
}

.banner-swiper:hover .banner-nav-btn {
  opacity: 1;
}

.banner-nav-prev {
  left: 60px;
}

.banner-nav-next {
  left: 1810px;
}

.nav-btn-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 50px;
  height: 50px;
}

.nav-btn-icon {
  position: absolute;
  left: 12px;
  top: 15px;
  width: 26px;
  height: 20px;
}

/* u10.svg 原始方向是左箭头，右箭头需要 rotate(180deg) */
.nav-icon-right {
  transform: rotate(180deg);
}

/* 向下滚动按钮（定位在横幅底部，随页滚动） */
.banner-scroll-down {
  position: absolute;
  left: 50%;
  margin-left: -25px;
  top: 1000px;
  width: 50px;
  height: 50px;
  z-index: 10;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s;
}

.banner-swiper-wrapper:hover ~ .banner-scroll-down,
.banner-scroll-down:hover {
  opacity: 1;
}

/* u10.svg 是左箭头，rotate(270deg) 变成向下箭头 */
.nav-icon-down {
  transform: rotate(270deg);
}

/* === include_service_hero.template.html === */

.service-hero {
  position: absolute;
  left: 0;
  top: 0;
  width: 1920px;
  height: 1080px;
  overflow: hidden;
  z-index: 0;
}

.service-hero-spacer {
  width: 1920px;
  height: 1080px;
  pointer-events: none;
}

.service-hero-bg {
  position: absolute;
  left: -300px;
  top: 0;
  width: 2520px;
  height: 1080px;
  object-fit: cover;
}

.service-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.098);
}

.service-hero-content {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.service-hero-title {
  position: absolute;
  left: 188px;
  top: 187px;
  width: 828px;
  margin: 0;
  font-size: 46px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
}

.service-hero-desc {
  position: absolute;
  left: 188px;
  top: 328px;
  width: 522px;
  font-size: 18px;
  color: #ffffff;
  line-height: 50px;
}

.service-hero-icons {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* 入场动画：从底部滑上来 */
.service-hero-animate {
  opacity: 0;
  transform: translateY(72px);
}

.service-hero.is-ready .service-hero-animate {
  transition:
    opacity 1.1s ease,
    transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-hero.is-animated .service-hero-animate {
  opacity: 1;
  transform: translateY(0);
}

.service-hero.is-animated .service-hero-animate-1 {
  transition-delay: 0.15s;
}

.service-hero.is-animated .service-hero-animate-2 {
  transition-delay: 0.35s;
}

.service-hero.is-animated .service-hero-animate-3 {
  transition-delay: 0.55s;
}

.service-hero.is-animated .service-hero-animate-4 {
  transition-delay: 0.78s;
}

@media (prefers-reduced-motion: reduce) {
  .service-hero-animate {
    opacity: 1;
    transform: none;
  }

  .service-hero.is-ready .service-hero-animate {
    transition: none;
  }
}

.service-hero-icon-item {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 21px;
}

.service-hero-icon-item-1 {
  left: 188px;
  top: 588px;
  width: 72px;
}

.service-hero-icon-item-1 img {
  width: 45px;
  height: 40px;
  margin-left: 13px;
}

.service-hero-icon-item-2 {
  left: 320px;
  top: 588px;
  width: 72px;
}

.service-hero-icon-item-2 img {
  width: 40px;
  height: 40px;
  margin-left: 16px;
}

.service-hero-icon-item-3 {
  left: 452px;
  top: 588px;
  width: 90px;
}

.service-hero-icon-item-3 img {
  width: 41px;
  height: 40px;
  margin-left: 25px;
}

.service-hero-icon-item-4 {
  left: 602px;
  top: 588px;
  width: 90px;
}

.service-hero-icon-item-4 img {
  width: 45px;
  height: 40px;
  margin-left: 23px;
}

.service-hero-icon-item span {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  white-space: nowrap;
  line-height: 24px;
}

.service-hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 30px;
  width: 50px;
  height: 50px;
  margin-left: -25px;
  border: none;
  padding: 0;
  background: transparent;
  cursor: pointer;
  z-index: 5;
}

.service-hero-scroll-bg,
.service-hero-scroll-icon {
  position: absolute;
  left: 0;
  top: 0;
  width: 50px;
  height: 50px;
}

.service-hero-scroll-icon {
  transform: rotate(270deg);
}

/* === include_about_hero.template.html === */

.about-hero {
  position: absolute;
  left: 0;
  top: 0;
  width: 1920px;
  height: 1080px;
  overflow: hidden;
  z-index: 0;
}

.about-hero-spacer {
  width: 1920px;
  height: 1080px;
  pointer-events: none;
}

.about-hero-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 1920px;
  height: 1080px;
  object-fit: cover;
}

.about-hero-rays {
  position: absolute;
  left: 186px;
  top: 616px;
  width: 1514px;
  height: 180px;
  object-fit: contain;
  pointer-events: none;
}

.about-hero-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 200px;
  box-sizing: border-box;
}

.about-hero-title {
  margin: 0 0 49px;
  font-size: 46px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
  text-align: center;
  white-space: nowrap;
}

.about-hero-desc {
  width: 846px;
  font-size: 18px;
  font-weight: 400;
  color: #ffffff;
  line-height: 50px;
  text-align: center;
}

.about-hero-desc p {
  margin: 0;
}

.about-hero-animate {
  opacity: 0;
  transform: translateY(72px);
}

.about-hero.is-ready .about-hero-animate {
  transition:
    opacity 1.1s ease,
    transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}

.about-hero.is-animated .about-hero-animate {
  opacity: 1;
  transform: translateY(0);
}

.about-hero.is-animated .about-hero-animate-1 {
  transition-delay: 0.15s;
}

.about-hero.is-animated .about-hero-animate-2 {
  transition-delay: 0.35s;
}

.about-hero.is-animated .about-hero-animate-3 {
  transition-delay: 0.55s;
}

@media (prefers-reduced-motion: reduce) {
  .about-hero-animate {
    opacity: 1;
    transform: none;
  }

  .about-hero.is-ready .about-hero-animate {
    transition: none;
  }
}

.about-hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 30px;
  width: 50px;
  height: 50px;
  margin-left: -25px;
  border: none;
  padding: 0;
  background: transparent;
  cursor: pointer;
  z-index: 5;
}

.about-hero-scroll-bg,
.about-hero-scroll-icon {
  position: absolute;
  left: 0;
  top: 0;
  width: 50px;
  height: 50px;
}

.about-hero-scroll-icon {
  transform: rotate(270deg);
}

/* === include_business.template.html === */

/* ========== 业务范围板块样式 - 精确还原Axure ========== */
.business-section {
  height: 900px;
  overflow: hidden;
}

/* 背景层 - 对应Axure u32 (1920x900) */
.business-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 1920px;
  height: 900px;
  background-color: rgba(243, 245, 247, 1);
  z-index: 1;
}

/* ===== 标题区 - 精确还原Axure坐标 ===== */
.business-header {
  position: absolute;
  left: 892px;
  top: 155px;
  width: 136px;
  height: 95px;
  z-index: 1;
}

/* "业务范围"标题 - Axure u34: left:892px, top:155px, width:136px, height:45px, font-size:34px */
.business-title-cn {
  position: absolute;
  left: 0;
  top: 0;
  width: 136px;
  height: 45px;
  font-family: "微软雅黑", sans-serif;
  font-weight: 400;
  font-size: 34px;
  color: #333333;
  text-align: center;
  margin: 0;
  line-height: 45px;
}

/* 装饰线左 - Axure u37: left:898px, top:216px, width:50px, height:2px */
.business-decoration-line-left {
  position: absolute;
  left: 6px;
  top: 61px;
  width: 50px;
  height: 2px;
  background-color: rgba(127, 127, 127, 1);
  border-radius: 5px;
}

/* 装饰星星图标 - Axure u36: left:898px, top:210px, width:15px, height:14px */
.business-decoration-star {
  position: absolute;
  left: 61px;
  top: 55px;
  width: 15px;
  height: 14px;
  display: block;
}

/* 装饰线右 - Axure u38: left:973px, top:216px, width:50px, height:2px */
.business-decoration-line-right {
  position: absolute;
  left: 81px;
  top: 61px;
  width: 50px;
  height: 2px;
  background-color: rgba(127, 127, 127, 1);
  border-radius: 5px;
}

/* "Business Scope" - Axure u39: left:916px, top:234px, width:88px, height:16px, font-size:12px, color:#7F7F7F */
.business-title-en {
  position: absolute;
  left: 24px;
  top: 79px;
  width: 88px;
  height: 16px;
  font-family: "微软雅黑", sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: #7f7f7f;
  text-align: center;
  margin: 0;
  line-height: 16px;
}

/* ===== 卡片容器 - 精确还原Axure坐标 ===== */
.business-cards {
  position: absolute;
  left: 210px;
  top: 325px;
  width: 1500px;
  height: 435px;
  z-index: 1;
}

/* 单个卡片 - Axure: 375x435 */
.business-card {
  position: absolute;
  width: 375px;
  height: 435px;
  cursor: pointer;
}

/* 卡片位置 - 精确还原Axure */
.business-card[data-index="0"] {
  left: 0px;
}

/* u40: left:210 */
.business-card[data-index="1"] {
  left: 375px;
}

/* u48: left:585 = 210+375 */
.business-card[data-index="2"] {
  left: 750px;
}

/* u56: left:960 = 210+750 */
.business-card[data-index="3"] {
  left: 1125px;
}

/* u64: left:1335 = 210+1125 */

/* 卡片背景 - Axure u41/u49/u57/u65: 375x435, bg:#F3F5F7, hover:bg:#FFF, border-radius:5px */
.business-card-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 375px;
  height: 435px;
  background-color: rgba(243, 245, 247, 1);
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

/* hover效果：背景变白 */
.business-card:hover .business-card-bg {
  background-color: rgba(255, 255, 255, 1);
}

/* SVG图标 - Axure u47/u55/u63/u71: 约50-57x50px */
.business-card-icon {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 60px;
  width: 57px;
  height: 50px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* 默认显示第一个图标 */
.business-card-icon-default {
  opacity: 1;
}

/* hover时切换图标 */
.business-card:hover .business-card-icon-default {
  opacity: 0;
}

.business-card:hover .business-card-icon-hover {
  opacity: 1;
}

/* 卡片标题 - Axure u43/u51/u59/u67: font-size:16px, font-weight:700，居中 */
.business-card-title {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 120px;
  width: auto;
  font-family: "微软雅黑 Bold", "微软雅黑", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #333333;
  margin: 0;
  line-height: 21px;
  text-align: center;
}

/* 卡片描述 - Axure u44/u52/u60/u68: width:310px, height:90px, line-height:30px, color:#7F7F7F, text-align:justify */
.business-card-desc {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 150px;
  width: 310px;
  height: 90px;
  font-family: "微软雅黑", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #7f7f7f;
  margin: 0;
  line-height: 30px;
  text-align: justify;
  text-justify: inter-word;
}

/* 详情按钮 - Axure u45/u53/u61/u69: left:128/503/878/1253 (相对卡片), top:325, width:119px, height:40px */
.business-card-link {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 285px;
  width: 119px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 1);
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 3px;
  text-decoration: none;
  transition:
    background-color 0.3s ease,
    border-color 0.3s ease;
}

.business-card-link span {
  font-family: "微软雅黑", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #333333;
}

/* hover效果：按钮变蓝色 */
.business-card:hover .business-card-link {
  background-color: rgba(26, 69, 179, 1);
  border-color: rgba(26, 69, 179, 1);
}

.business-card:hover .business-card-link span {
  color: #ffffff;
}

/* === include_news.template.html === */

.news-section {
  height: 900px;
  overflow: hidden;
}

.news-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 1920px;
  height: 900px;
  background-color: #ffffff;
  z-index: 0;
}

.news-panel {
  position: absolute;
  left: 210px;
  top: 173px;
  width: 1500px;
  height: 555px;
  border-radius: 5px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  background-color: #ffffff;
  z-index: 1;
}

.news-left-panel {
  position: absolute;
  left: 0;
  top: 0;
  width: 287px;
  height: 555px;
  z-index: 1;
}

.news-left-image,
.news-left-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 287px;
  height: 555px;
  object-fit: cover;
  border-radius: 5px;
}

.news-left-image {
  z-index: 0;
}

.news-left-bg {
  z-index: 1;
}

.news-title-cn {
  position: absolute;
  left: 30px;
  top: 40px;
  font-family: "微软雅黑", sans-serif;
  font-weight: 400;
  font-size: 34px;
  color: #ffffff;
  margin: 0;
  z-index: 2;
}

.news-title-en {
  position: absolute;
  left: 98px;
  top: 100px;
  font-family: "微软雅黑", sans-serif;
  font-weight: 400;
  font-size: 20px;
  color: #ffffff;
  margin: 0;
  z-index: 2;
}

.news-more-btn {
  position: absolute;
  left: 138px;
  top: 485px;
  width: 119px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  border: 1px solid #fff;
  border-radius: 3px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.news-more-btn span {
  font-family: "微软雅黑", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #ffffff;
}

.news-more-btn:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.news-content-wrapper {
  position: absolute;
  left: 317px;
  top: 0;
  width: 1183px;
  height: 555px;
  background-color: transparent;
  border-radius: 0;
  z-index: 1;
  padding: 30px 0 0 0;
  box-sizing: border-box;
}

.news-tabs {
  position: relative;
  width: 100%;
  height: 40px;
  display: flex;
  gap: 60px;
  padding-left: 30px;
  box-sizing: border-box;
  flex-shrink: 0;
}

.news-tab {
  font-family: "微软雅黑", sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #000000;
  text-decoration: none;
  position: relative;
  height: 24px;
  line-height: 24px;
  transition: color 0.3s ease;
}

.news-tab:hover {
  color: #1a45b3;
}

.news-tab.active {
  font-weight: 700;
  color: #000000;
}

.news-tab.active::after {
  content: "";
  position: absolute;
  left: 22px;
  top: 40px;
  width: 0;
  height: 0;
  border-left: 14.5px solid transparent;
  border-right: 14.5px solid transparent;
  border-bottom: 16px solid #1a45b3;
}

.news-tab-content {
  position: relative;
  width: 100%;
  height: calc(100% - 70px);
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.news-tab-content.is-active {
  opacity: 1;
}

/* 蓝色 863px + 图片 320px 并排，与 Axure u81/u87 一致 */
.news-featured {
  position: absolute;
  left: 0;
  top: 14px;
  width: 1183px;
  height: 216px;
  padding: 0;
  background: transparent;
  border-radius: 0;
  box-sizing: border-box;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: block;
}

.news-featured::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 863px;
  height: 100%;
  background-color: #1a45b3;
  border-radius: 5px 0 0 5px;
  z-index: 0;
}

.news-tab-content--compact {
  height: calc(100% - 70px);
}

.news-tab-content--compact .news-featured {
  top: 14px;
  bottom: 0;
  height: auto;
  min-height: calc(100% - 14px);
}

/* 0/1 篇：整块 1183px 全蓝，图片仅盖住右上角 */
.news-featured--stack::before {
  width: 100%;
  border-radius: 5px;
}

.news-featured-date {
  position: absolute;
  left: 30px;
  top: 30px;
  width: 60px;
  text-align: center;
  z-index: 2;
}

.news-featured-date .news-date-day {
  display: block;
  font-family: "微软雅黑 Bold", "微软雅黑", sans-serif;
  font-weight: 700;
  font-size: 36px;
  color: #ffffff;
  line-height: 1;
}

.news-featured-date .news-date-month {
  display: block;
  font-family: "微软雅黑", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 5px;
}

.news-featured-divider {
  position: absolute;
  left: 115px;
  top: 30px;
  width: 1px;
  height: 75px;
  background-color: rgba(255, 255, 255, 0.6);
  z-index: 2;
}

.news-featured-content {
  position: absolute;
  left: 145px;
  top: 53px;
  width: 648px;
  max-width: calc(863px - 145px);
  z-index: 2;
}

.news-featured-title {
  font-family: "微软雅黑 Bold", "微软雅黑", sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #ffffff;
  margin: 0 0 15px 0;
  line-height: 29px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.news-featured-desc {
  font-family: "微软雅黑", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  line-height: 30px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-featured-image {
  position: absolute;
  left: 863px;
  top: 0;
  width: 320px;
  height: 216px;
  margin: 0;
  padding: 0;
  border: none;
  display: block;
  object-fit: cover;
  border-radius: 0 5px 5px 0;
  z-index: 1;
}

.news-featured--stack .news-featured-image {
  border-radius: 0 5px 0 0;
  z-index: 3;
}

/* 0/1 篇：标题在竖线右，正文从左侧 30px 起；图片高度内让出右侧 320px */
.news-featured--stack .news-featured-content {
  left: 145px;
  top: 53px;
  right: 350px;
  bottom: auto;
  width: auto;
  max-width: none;
  height: auto;
  overflow: visible;
}

.news-featured--stack .news-featured-title {
  font-size: 22px;
  line-height: 1.45;
  margin: 0;
}

.news-featured-desc--stack {
  position: absolute;
  left: 30px;
  right: 30px;
  top: 126px;
  bottom: 30px;
  z-index: 1;
  margin: 0;
  font-size: 16px;
  line-height: 1.85;
  overflow: hidden;
  text-align: justify;
}

/* 图片区 216px 高，正文从 126px 起，右上 320×90 留白不压图；以下可铺满全宽 */
.news-featured-desc--stack::before {
  content: "";
  float: right;
  width: 320px;
  height: 90px;
}

.news-list {
  position: absolute;
  left: 0;
  top: 260px;
  width: 1183px;
  height: 249px;
  display: flex;
  gap: 29px;
}

/* 1 条：撑满宽高；2/3 条：横向平分（flex + gap 自动算宽） */
.news-list--fill {
  top: 260px;
  bottom: 0;
  height: auto;
  align-items: stretch;
}

.news-item {
  flex: 1 1 0;
  min-width: 0;
  position: relative;
  width: auto;
  height: 100%;
  text-decoration: none;
  color: inherit;
  display: block;
}

.news-list--fill .news-item {
  flex: 1 1 100%;
  height: auto;
}

.news-item-header {
  position: relative;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.news-item-date {
  text-align: left;
}

.news-item-date .news-date-day {
  display: block;
  font-family: "微软雅黑 Bold", "微软雅黑", sans-serif;
  font-weight: 700;
  font-size: 32px;
  color: #333333;
  line-height: 1;
}

.news-item-date .news-date-month {
  display: block;
  font-family: "微软雅黑", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #666666;
  margin-top: 5px;
}

.news-item-arrow {
  width: 33px;
  height: 16px;
  object-fit: contain;
}

.news-item-divider {
  width: 100%;
  height: 1px;
  background-color: #e5e5e5;
  margin: 10px 0;
}

.news-item-title {
  font-family: "微软雅黑", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #333333;
  margin: 0 0 10px 0;
  line-height: 1.5;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.news-item-desc {
  font-family: "微软雅黑", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #666666;
  margin: 0;
  line-height: 25px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* === include_process.template.html === */

/* ========== 操作流程板块样式 - 精确还原Axure ========== */
.process-section {
  height: 900px;
  overflow: hidden;
}

/* 背景层 - Axure u157/u158/u159 */
.process-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 1920px;
  height: 900px;
  z-index: 0;
}

.process-bg-img {
  position: absolute;
  left: 0;
  top: 0;
  width: 1919px;
  height: 900px;
  object-fit: cover;
  display: block;
}

.process-overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 1920px;
  height: 900px;
  background-color: rgba(0, 0, 0, 1);
  opacity: 0.6;
}

/* ===== 标题区 - Axure u196: left:892px, top:140px ===== */
.process-header {
  position: absolute;
  left: 892px;
  top: 140px;
  width: 136px;
  height: 95px;
  z-index: 2;
}

/* "操作流程" - Axure u197 */
.process-title-cn {
  position: absolute;
  left: 0;
  top: 0;
  width: 136px;
  height: 45px;
  font-family: "微软雅黑", sans-serif;
  font-weight: 400;
  font-size: 34px;
  color: #ffffff;
  text-align: center;
  margin: 0;
  line-height: 45px;
  white-space: nowrap;
}

/* 装饰线左 - Axure u200: left:898px, top:201px */
.process-decoration-line-left {
  position: absolute;
  left: 6px;
  top: 61px;
  width: 50px;
  height: 2px;
  background-color: #ffffff;
  border-radius: 5px;
}

/* 装饰星星 - Axure u199: left:953px, top:195px */
.process-decoration-star {
  position: absolute;
  left: 61px;
  top: 55px;
  width: 15px;
  height: 14px;
  display: block;
}

/* 装饰线右 - Axure u201: left:973px, top:201px */
.process-decoration-line-right {
  position: absolute;
  left: 81px;
  top: 61px;
  width: 50px;
  height: 2px;
  background-color: #ffffff;
  border-radius: 5px;
}

/* "Operation Process" - Axure u202 */
.process-title-en {
  position: absolute;
  left: 15px;
  top: 79px;
  width: 106px;
  height: 16px;
  font-family: "微软雅黑", sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: #ffffff;
  text-align: center;
  margin: 0;
  line-height: 16px;
  white-space: nowrap;
}

/* ===== 流程步骤区 ===== */
.process-steps {
  position: absolute;
  left: 0;
  top: 0;
  width: 1920px;
  height: 900px;
  z-index: 2;
}

/* 步骤箭头 - Axure u191~u195: 32x30 */
.process-arrow {
  position: absolute;
  width: 32px;
  height: 30px;
  display: block;
  top: 406px;
}

.process-arrow-1 {
  left: 363px;
}
.process-arrow-2 {
  left: 634px;
}
.process-arrow-3 {
  left: 930px;
}
.process-arrow-4 {
  left: 1278px;
}
.process-arrow-5 {
  left: 1525px;
}

/* 步骤通用样式 */
.process-step {
  position: absolute;
  top: 376px;
  cursor: default;
}

.process-circle {
  position: absolute;
  left: 0;
  top: 0;
  width: 90px;
  height: 90px;
  display: block;
  transition: opacity 0.2s ease;
}

.process-circle-hover {
  opacity: 0;
}

.process-step:hover .process-circle-default {
  opacity: 0;
}

.process-step:hover .process-circle-hover {
  opacity: 1;
}

.process-icon {
  position: absolute;
  display: block;
}

.process-label-cn {
  position: absolute;
  font-family: "微软雅黑", sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #ffffff;
  margin: 0;
  line-height: 24px;
  white-space: nowrap;
}

.process-label-en {
  position: absolute;
  font-family: "微软雅黑", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #aaaaaa;
  margin: 0;
  line-height: 19px;
  white-space: nowrap;
}

/* 步骤1：注册 - Axure u161 */
.process-step-1 {
  left: 210px;
  width: 90px;
  height: 153px;
}

.process-step-1 .process-icon {
  left: 21px;
  top: 21px;
  width: 48px;
  height: 48px;
}

.process-step-1 .process-label-cn {
  left: 27px;
  top: 100px;
  width: 36px;
}

.process-step-1 .process-label-en {
  left: 4px;
  top: 134px;
  width: 82px;
}

/* 步骤2：下单 - Axure u166 */
.process-step-2 {
  left: 469px;
  width: 114px;
  height: 153px;
}

.process-step-2 .process-icon {
  left: 23px;
  top: 21px;
  width: 44px;
  height: 48px;
}

.process-step-2 .process-label-cn {
  left: 27px;
  top: 100px;
  width: 36px;
}

.process-step-2 .process-label-en {
  left: -12px;
  top: 134px;
  width: 114px;
}

/* 步骤3：报关 - Axure u171 */
.process-step-3 {
  left: 752px;
  width: 139px;
  height: 153px;
}

.process-step-3 .process-icon {
  left: 22px;
  top: 21px;
  width: 47px;
  height: 48px;
}

.process-step-3 .process-label-cn {
  left: 27px;
  top: 100px;
  width: 36px;
}

.process-step-3 .process-label-en {
  left: -24px;
  top: 134px;
  width: 139px;
}

/* 步骤4：收汇 - Axure u176 */
.process-step-4 {
  left: 1075px;
  width: 191px;
  height: 153px;
}

.process-step-4 .process-icon {
  left: 18px;
  top: 21px;
  width: 55px;
  height: 48px;
}

.process-step-4 .process-label-cn {
  left: 27px;
  top: 100px;
  width: 36px;
}

.process-step-4 .process-label-en {
  left: -50px;
  top: 134px;
  width: 191px;
}

/* 步骤5：结算 - Axure u181 */
.process-step-5 {
  left: 1373px;
  width: 90px;
  height: 153px;
}

.process-step-5 .process-icon {
  left: 21px;
  top: 21px;
  width: 48px;
  height: 48px;
}

.process-step-5 .process-label-cn {
  left: 27px;
  top: 100px;
  width: 36px;
}

.process-step-5 .process-label-en {
  left: 8px;
  top: 134px;
  width: 74px;
}

/* 步骤6：退税 - Axure u186 */
.process-step-6 {
  left: 1620px;
  width: 90px;
  height: 153px;
}

.process-step-6 .process-icon {
  left: 23px;
  top: 21px;
  width: 45px;
  height: 48px;
}

.process-step-6 .process-label-cn {
  left: 27px;
  top: 100px;
  width: 36px;
}

.process-step-6 .process-label-en {
  left: 7px;
  top: 134px;
  width: 76px;
}

/* 详情按钮 - Axure u203: left:900px, top:670px, 119x40 */
.process-detail-btn {
  position: absolute;
  left: 900px;
  top: 670px;
  width: 119px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  border: 1px solid #ffffff;
  border-radius: 5px;
  background-color: transparent;
  font-family: "微软雅黑", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #ffffff;
  text-decoration: none;
  z-index: 2;
  transition: background-color 0.2s ease;
}

.process-detail-btn:hover {
  background-color: rgba(26, 69, 179, 1);
}

.process-detail-btn span {
  line-height: 1;
}

/* 滚动到流程模块时，步骤从左到右依次滑入 */
.process-section.process-ready .process-step,
.process-section.process-ready .process-arrow,
.process-section.process-ready .process-detail-btn {
  opacity: 0;
  transform: translateX(-90px);
}

.process-section.process-ready .process-step,
.process-section.process-ready .process-arrow {
  transition:
    opacity 0.55s ease,
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.process-section.process-ready .process-detail-btn {
  transition:
    opacity 0.55s ease,
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    background-color 0.2s ease;
}

.process-section.process-animated .process-step,
.process-section.process-animated .process-arrow,
.process-section.process-animated .process-detail-btn {
  opacity: 1;
  transform: translateX(0);
}

.process-section.process-animated .process-step-1 {
  transition-delay: 0.05s;
}
.process-section.process-animated .process-arrow-1 {
  transition-delay: 0.18s;
}
.process-section.process-animated .process-step-2 {
  transition-delay: 0.31s;
}
.process-section.process-animated .process-arrow-2 {
  transition-delay: 0.44s;
}
.process-section.process-animated .process-step-3 {
  transition-delay: 0.57s;
}
.process-section.process-animated .process-arrow-3 {
  transition-delay: 0.7s;
}
.process-section.process-animated .process-step-4 {
  transition-delay: 0.83s;
}
.process-section.process-animated .process-arrow-4 {
  transition-delay: 0.96s;
}
.process-section.process-animated .process-step-5 {
  transition-delay: 1.09s;
}
.process-section.process-animated .process-arrow-5 {
  transition-delay: 1.22s;
}
.process-section.process-animated .process-step-6 {
  transition-delay: 1.35s;
}
.process-section.process-animated .process-detail-btn {
  transition-delay: 1.5s;
}

/* === include_about.template.html === */

.about-section {
  height: 900px;
  overflow: hidden;
}

.about-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 1920px;
  height: 900px;
  background-color: #ffffff;
}

.about-header {
  position: absolute;
  left: 210px;
  top: 225px;
  width: 136px;
  height: 95px;
}

.about-title-cn {
  position: absolute;
  left: 0;
  top: 0;
  width: 136px;
  height: 45px;
  font-family: "微软雅黑", sans-serif;
  font-weight: 400;
  font-size: 34px;
  color: #333333;
  text-align: center;
  margin: 0;
  line-height: 45px;
}

.about-decoration-line-left {
  position: absolute;
  left: 6px;
  top: 61px;
  width: 50px;
  height: 2px;
  background-color: #7f7f7f;
  border-radius: 5px;
}

.about-decoration-star {
  position: absolute;
  left: 61px;
  top: 55px;
  width: 15px;
  height: 14px;
}

.about-decoration-line-right {
  position: absolute;
  left: 81px;
  top: 61px;
  width: 50px;
  height: 2px;
  background-color: #7f7f7f;
  border-radius: 5px;
}

.about-title-en {
  position: absolute;
  left: 41px;
  top: 79px;
  width: 54px;
  height: 16px;
  font-family: "微软雅黑", sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: #7f7f7f;
  text-align: center;
  margin: 0;
  line-height: 16px;
}

.about-content {
  position: absolute;
  left: 210px;
  top: 370px;
  width: 684px;
  height: 140px;
  font-family: "微软雅黑", sans-serif;
  font-size: 14px;
  line-height: 1.8;
  color: #333333;
  text-align: justify;
}

.about-text-normal {
  font-weight: 400;
}
.about-text-bold {
  font-weight: 700;
}

.about-detail-btn {
  position: absolute;
  left: 210px;
  top: 585px;
  width: 119px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  border: 1px solid #333333;
  border-radius: 5px;
  background-color: #ffffff;
  font-family: "微软雅黑", sans-serif;
  font-size: 14px;
  color: #333333;
  text-decoration: none;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.about-detail-btn:hover {
  background-color: #1a45b3;
  border-color: #1a45b3;
  color: #ffffff;
}

.about-image {
  position: absolute;
  left: 959px;
  top: 175px;
  width: 751px;
  height: 500px;
  object-fit: cover;
  display: block;
}

/* === include_service.template.html === */

.service-page {
  position: relative;
  width: 1920px;
}

.service-block {
  position: relative;
  width: 1920px;
  height: 900px;
  overflow: hidden;
}

.service-block-white {
  background: #ffffff;
}
.service-block-gray {
  background: #f6f7fa;
}

.service-block-title {
  position: absolute;
  margin: 0;
  font-size: 34px;
  font-weight: 400;
  color: #333333;
  line-height: 45px;
}

.service-block-title-left {
  left: 210px;
  top: 244px;
}
.service-block-title-right {
  left: 1188px;
  top: 250px;
}
.service-block-title-3 {
  left: 211px;
  top: 270px;
}

.service-block-text {
  position: absolute;
  margin: 0;
  font-size: 14px;
  color: #333333;
  line-height: 1.8;
}

.service-block-text strong {
  font-weight: 700;
}

.service-block-text-1 {
  left: 210px;
  top: 339px;
  width: 577px;
}
.service-block-text-2 {
  left: 210px;
  top: 390px;
  width: 473px;
}
.service-block-text-3 {
  left: 210px;
  top: 441px;
  width: 574px;
}

.service-block-text-right-1 {
  left: 1188px;
  top: 345px;
  width: 523px;
}
.service-block-text-right-2 {
  left: 1188px;
  top: 396px;
  width: 482px;
}
.service-block-text-right-3 {
  left: 1188px;
  top: 447px;
  width: 473px;
}

.service-block-text-3-1 {
  left: 211px;
  top: 365px;
  width: 616px;
}
.service-block-text-3-2 {
  left: 211px;
  top: 416px;
  width: 616px;
}

.service-block-text-right-4-1 {
  left: 1151px;
  top: 345px;
  width: 561px;
}
.service-block-text-right-4-2 {
  left: 1151px;
  top: 396px;
  width: 532px;
}

.service-block-btn {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 163px;
  height: 50px;
  background: #1a45b3;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  transition: background-color 0.2s;
}

.service-block-btn:hover {
  background: #11327f;
}

.service-block-btn-left {
  left: 210px;
  top: 540px;
}
.service-block-btn-right {
  left: 1188px;
  top: 548px;
}
.service-block-btn-3 {
  left: 211px;
  top: 515px;
}
.service-block-btn-4 {
  left: 1151px;
  top: 495px;
}

.service-block-shot {
  position: absolute;
  display: block;
}

.service-block-shot-right-1 {
  left: 875px;
  top: 183px;
  width: 835px;
  height: auto;
}
.service-block-shot-left-2 {
  left: 210px;
  top: 204px;
  width: 772px;
  height: auto;
}
.service-block-shot-left-4 {
  left: 210px;
  top: 204px;
  width: 772px;
  height: auto;
}

.service-block-deco {
  position: absolute;
  display: block;
  pointer-events: none;
}

.service-block-deco-1 {
  left: 944px;
  top: 462px;
  width: 696px;
  height: auto;
}
.service-block-deco-2 {
  left: 352px;
  top: 470px;
  width: 488px;
  height: auto;
}
.service-block-deco-4 {
  left: 321px;
  top: 426px;
  width: 550px;
  height: auto;
}

.service-finance-panel {
  position: absolute;
  left: 875px;
  top: 215px;
  width: 835px;
  height: 470px;
  border: 3px solid #000000;
  border-radius: 30px;
  background: #ffffff;
  box-sizing: border-box;
}

.service-finance-item {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.service-finance-item img {
  display: block;
  width: 170px;
  height: 170px;
}

.service-finance-item span {
  font-size: 22px;
  font-weight: 700;
  color: #000000;
  line-height: 29px;
  white-space: nowrap;
}

.service-finance-item-1 {
  left: 72px;
  top: 121px;
  width: 88px;
}
.service-finance-item-2 {
  left: 332px;
  top: 121px;
  width: 44px;
}
.service-finance-item-3 {
  left: 593px;
  top: 121px;
  width: 88px;
}

/* === include_about_page.template.html === */

.about-page-body {
  position: relative;

  width: 100%;

  background: #ffffff;
}

.about-page-subnav {
  position: sticky;

  top: 60px;

  z-index: var(--z-sticky);

  height: 60px;

  background: #ffffff;

  border-bottom: 1px solid #f2f2f2;
}

.about-page-subnav-inner {
  display: flex;

  align-items: center;

  justify-content: center;

  gap: 50px;

  width: 500px;

  height: 60px;

  margin: 0 auto;
}

.about-page-subtab {
  display: flex;

  align-items: center;

  justify-content: center;

  height: 58px;

  padding: 0 2px;

  border-bottom: 2px solid transparent;

  font-size: 14px;

  color: #000000;

  white-space: nowrap;

  transition: border-color 0.2s ease;
}

.about-page-subtab:hover,
.about-page-subtab.is-active {
  border-bottom-color: #1a45b3;
}

.about-page-panels {
  display: grid;

  grid-template-columns: minmax(0, 1fr);
}

.about-page-panel {
  grid-area: 1 / 1;

  display: none;

  min-height: 1080px;

  padding: 60px 210px 80px;

  box-sizing: border-box;
}

.about-page-panel.is-active {
  display: block;
}

.about-page-wrap {
  display: grid;

  grid-template-columns: 313px minmax(0, 1fr);

  gap: 59px;

  width: 100%;

  max-width: 1500px;

  margin: 0 auto;

  align-items: start;
}

.about-page-head {
  width: 136px;

  text-align: center;
}

.about-page-head-cn {
  margin: 0;

  font-size: 34px;

  font-weight: 400;

  color: #333333;

  line-height: 45px;
}

.about-page-head-deco {
  display: flex;

  align-items: center;

  justify-content: center;

  gap: 5px;

  margin-top: 16px;
}

.about-page-head-line {
  width: 50px;

  height: 2px;

  background: #7f7f7f;

  border-radius: 5px;
}

.about-page-head-star {
  width: 15px;

  height: 14px;
}

.about-page-head-en {
  margin: 8px 0 0;

  font-size: 12px;

  color: #555555;

  line-height: 16px;
}

.about-page-aside-line {
  display: block;

  width: 313px;

  height: 1px;

  margin-top: 54px;
}

.about-page-aside-logo {
  display: block;

  width: 136px;

  height: auto;

  margin-top: 20px;
}

.about-page-aside-note,
.about-page-aside-slogan {
  margin: 54px 0 0;

  font-size: 16px;

  font-weight: 400;

  color: #000000;

  line-height: 60px;
}

.about-page-aside-slogan p {
  margin: 0;
}

.about-page-main {
  min-width: 0;
}

.about-page-copy {
  font-size: 14px;

  color: #000000;

  text-align: justify;

  text-justify: inter-word;
}

.about-page-main.has-cover > .about-page-copy img {
  display: none;
}

.about-page-copy img {
  display: block;
  width: 100%;
  height: auto;
  margin-top: 30px;
  border-radius: 5px;
}

.about-page-copy p {
  margin: 0;
}

.about-page-copy-loose {
  line-height: 60px;
}

.about-page-copy-loose p + p {
  margin-top: 0;
}

.about-page-copy strong {
  font-weight: 700;
}

.about-page-main > .about-page-copy-loose + .about-page-figure {
  margin-top: 30px;
}

.about-page-main > .about-page-figure + .about-page-copy-loose {
  margin-top: 30px;
}

.about-page-figure {
  display: block;

  width: 100%;

  height: auto;

  border-radius: 5px;
}

.about-page-main-contact {
  display: flex;

  flex-direction: column;

  gap: 30px;
}

.about-page-map-wrap {
  position: relative;

  width: 100%;

  border-radius: 5px;

  overflow: hidden;
}

.about-page-map {
  display: block;

  width: 100%;

  height: auto;

  border-radius: 5px;
}

.about-page-amap {
  width: 100%;
  height: 380px;
  border-radius: 5px;
  background: #f2f2f2;
}

.about-amap-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  pointer-events: none;
}

.about-amap-marker-label {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 75px;
  height: 41px;
  padding: 0 12px;
  margin-bottom: 7px;
  background: #ffffff;
  border-radius: 5px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.35);
  font-size: 14px;
  line-height: 1;
  color: #000000;
  white-space: nowrap;
}

.about-amap-marker-pin {
  display: block;
  width: 14px;
  height: 18px;
  flex: 0 0 auto;
  object-fit: contain;
  filter: hue-rotate(-18deg) saturate(2.2) brightness(0.95);
}

.about-page-map-marker {
  position: absolute;

  left: 46%;

  top: 45%;

  display: flex;

  align-items: flex-end;

  gap: 7px;

  pointer-events: none;
}

.about-page-map-label {
  display: flex;

  align-items: center;

  justify-content: center;

  min-width: 75px;

  height: 41px;

  padding: 0 12px;

  background: #ffffff;

  border-radius: 5px;

  box-shadow: 0 0 5px rgba(0, 0, 0, 0.35);

  font-size: 14px;

  color: #000000;

  line-height: 1;

  white-space: nowrap;
}

.about-page-map-pin {
  width: 12px;

  height: 15px;

  flex: 0 0 auto;
}

.about-page-map-expand {
  position: absolute;

  right: 12px;

  bottom: 12px;

  display: flex;

  align-items: center;

  justify-content: center;

  width: 38px;

  height: 38px;

  border-radius: 50%;

  background: #333333;

  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.28);

  text-decoration: none;

  z-index: 10;

  transition:
    background-color 0.2s ease,
    transform 0.2s ease;
}

.about-page-map-expand:hover {
  background: #1a45b3;
  transform: scale(1.05);
}

.about-page-map-expand-icon {
  display: block;

  width: 18px;

  height: 18px;

  filter: brightness(0) invert(1);
}

.about-page-contact-cards {
  display: grid;

  grid-template-columns: repeat(3, minmax(0, 1fr));

  gap: 30px;
}

.about-page-contact-card {
  position: relative;

  display: flex;

  align-items: flex-start;

  gap: 10px;

  min-height: 125px;

  padding: 30px 30px 24px;

  border: none;

  border-radius: 5px;

  box-sizing: border-box;

  background: url("${Prefix}images/关于/u2566.svg") no-repeat center / 100% 100%;
}

.about-page-contact-icon {
  width: 12px;

  height: 17px;

  flex: 0 0 auto;

  margin-top: 2px;

  object-fit: contain;
}

.about-page-contact-body strong {
  display: block;

  margin-bottom: 8px;

  font-size: 16px;

  font-weight: 700;

  color: #000000;

  line-height: 1.4;
}

.about-page-contact-body p {
  margin: 0;

  font-size: 14px;

  color: #000000;

  line-height: 1.6;
}

.about-page-contact-qr {
  position: absolute;

  right: 24px;

  top: 50%;

  transform: translateY(-50%);

  width: 66px;

  height: 66px;

  object-fit: cover;
}

/* === include_news_page.template.html === */

.news-page {
  position: relative;
  width: 100%;
  padding: 49px 210px 140px;
  box-sizing: border-box;
  background: #ffffff;
}

.news-page-inner {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
}

.news-page-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 50px;
}

.news-page-title {
  margin: 0;
  font-size: 28px;
  font-weight: 400;
  color: #000000;
  line-height: 37px;
}

.news-page-tabs {
  display: flex;
  align-items: center;
  gap: 30px;
  padding-bottom: 6px;
}

.news-page-tab {
  font-size: 16px;
  color: #000000;
  line-height: 25px;
  white-space: nowrap;
  transition: color 0.2s;
}

.news-page-tab:hover,
.news-page-tab.is-active {
  color: #1a45b3;
}

.news-page-panels {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
}

.news-page-panel {
  grid-area: 1 / 1;
  display: none;
  min-height: 0;
}

.news-page-panel.is-active {
  display: block;
}

.news-page-featured {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  margin-bottom: 0;
}

.news-page-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  margin-top: 30px;
  margin-bottom: 48px;
}

.news-page-grid:empty {
  display: none;
  margin-top: 0;
  margin-bottom: 0;
}

.news-page-panel:has(.news-page-grid:empty) .news-page-featured {
  margin-bottom: 48px;
}

.news-card {
  display: block;
  background: #ffffff;
  border: 1px solid #e4e7ed;
  border-radius: 5px;
  overflow: hidden;
  transition:
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.news-card:hover {
  border-color: #d5dae2;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
}

.news-card-cover {
  overflow: hidden;
  background: #f4f6f8;
}

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

.news-card-lg .news-card-cover {
  height: 440px;
}

.news-card-sm .news-card-cover {
  height: 288px;
}

.news-card.is-hidden {
  display: none;
}

.news-card-title {
  margin: 0;
  padding: 16px 20px 0;
  font-size: 18px;
  font-weight: 400;
  color: #000000;
  line-height: 35px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.news-card-date {
  display: block;
  padding: 6px 20px 18px;
  font-size: 14px;
  font-style: normal;
  color: #aaaaaa;
  line-height: 35px;
}

.news-page-more {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 119px;
  height: 40px;
  margin: 48px auto 60px;
  border: 1px solid #333333;
  border-radius: 5px;
  font-size: 14px;
  color: #333333;
  transition:
    background-color 0.2s,
    border-color 0.2s,
    color 0.2s;
}

.news-page-more.is-hidden {
  display: none;
}

.news-page-more:hover {
  background: #1a45b3;
  border-color: #1a45b3;
  color: #ffffff;
}

/* === include_legal_page.template.html === */

.legal-page {
  background: #ffffff;
  min-height: 600px;
}

.legal-page-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 0;
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  padding: 36px 210px 100px;
  box-sizing: border-box;
}

.legal-page-aside {
  position: sticky;
  top: 100px;
  align-self: start;
}

.legal-page-nav {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  list-style: none;
}

.legal-page-nav a {
  display: block;
  min-height: 40px;
  padding: 8px 12px 8px 16px;
  border-left: 1px solid #e4e7ed;
  font-size: 16px;
  line-height: 24px;
  color: #000000;
  box-sizing: border-box;
  transition:
    color 0.2s,
    border-color 0.2s;
}

.legal-page-nav a:hover,
.legal-page-nav a.is-active {
  color: #1a45b3;
  border-left-color: #1a45b3;
}

.legal-page-content {
  padding-left: 100px;
  box-sizing: border-box;
}

.legal-page-back {
  min-height: 28px;
  margin: 0 0 16px;
  line-height: 28px;
}

.legal-page-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #7f7f7f;
  text-decoration: none;
  transition: color 0.2s ease;
  cursor: pointer;
}

.legal-page-back-link:hover {
  color: #1a45b3;
}

.legal-page-back-icon {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  flex-shrink: 0;
  margin-right: 2px;
}

.legal-page-title {
  margin: 0 0 8px;
  font-size: 22px;
  font-weight: 700;
  color: #000000;
  line-height: 1.45;
}

.legal-page-date {
  margin: 0 0 32px;
  font-size: 14px;
  color: #000000;
  line-height: 1.6;
}

.legal-page-body {
  font-size: 14px;
  color: #000000;
  line-height: 2;
  text-align: justify;
  text-justify: inter-word;
}

.legal-page-body h2,
.legal-page-body h3,
.legal-page-body h4 {
  margin: 1.2em 0 0.6em;
  font-size: 14px;
  font-weight: 700;
  line-height: 2;
  color: #000000;
}

.legal-page-body p {
  margin: 0 0 0.5em;
}

.legal-page-body img {
  display: block;
  max-width: 100%;
  height: auto;
}

.legal-page-body strong {
  font-weight: 700;
}

.legal-page-body [id^="legal-section-"] {
  scroll-margin-top: 100px;
}

/* === catalog.template.html === */

body.page-catalog #base {
  position: relative;
  min-height: 100vh;
  padding-top: 60px;
  padding-bottom: 200px;
  width: auto;
  max-width: 1200px;
  margin: 0 auto;
}

body.page-catalog {
  min-width: auto;
  background: #f6f7fa;
}

.cms-catalog-page {
  padding: 40px 20px;
}

.cms-catalog-title {
  font-size: 32px;
  color: #333333;
  margin: 0 0 20px;
}

.cms-catalog-desc {
  font-size: 16px;
  color: #666666;
  margin-bottom: 40px;
  line-height: 1.6;
}

.cms-article-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cms-article-item {
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  padding: 20px 24px;
  transition: box-shadow 0.2s;
}

.cms-article-item:hover {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.cms-article-item h3 {
  font-size: 18px;
  color: #333333;
  margin: 0 0 10px;
}

.cms-article-item p {
  font-size: 14px;
  color: #999999;
  line-height: 1.6;
}

.cms-article-meta {
  font-size: 12px;
  color: #aaaaaa;
  margin-top: 10px;
}

.cms-pagination {
  margin-top: 40px;
  text-align: center;
  font-size: 14px;
  color: #666666;
}
