/*
 * 关于我们 — design/pc/关于我们.jpg (1920×4359) + design/mobile/关于我们@2x.png
 *
 * PC：hero 490（UI banner）；公司简介右浮绕排（768 才叠成上文下图）+ 六格数字条；发展历程；荣誉资质；
 * 企业文化 01/02 并排 + 右侧 CONCARE 蓝块、03 通栏（不是三等分）。
 */

/* ---------------------------------------------------------------- hero */

.about-hero {
  --u: 0.05208333cqw;
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 1920 / 490;
  container-type: inline-size;
  overflow: hidden;
  background: #e9f2fb;
}

.about-hero__bg {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

/* ---------------------------------------------------------------- 公司简介 */

.about-profile {
  padding-bottom: 0;
  background: var(--bg-white);
}

/* PC：本块最小稿字 18。视觉下限 10，全部字号乘同一倍率，标题仍大于正文。
   内容到 10 时标题 36×10/18=20。 */
html:not([data-layout="mobile"]) .about-profile {
  --type-boost: max(1, calc(10 / 18 / var(--s)));
  --section-title-size: calc(36px * var(--type-boost));
}

.about-profile__inner {
  /* 图文跟荣誉外框（stage 1680，含箭头槽）同宽，不收成证书视口 1512。
     文:图 = 3:2。浮动包在 .about-profile__text 里，高出图的行铺满版心。 */
  --profile-photo-gap: 56px;
  width: min(var(--container-wide), calc(100% - var(--gutter) * 2));
  max-width: none;
  margin-inline: auto;
  padding-top: 48px;
  padding-bottom: 65px;
}

/* 停用 2026-09-01：双稿改造后不再有中间过渡档，见 docs/14。
   复活时把条件改回 (max-width: 1440px)。 */
@media not all {
  .about-profile__inner {
    --profile-photo-gap: 40px;
    padding-top: 32px;
    padding-bottom: 36px;
  }
}

.about-profile__text {
  /* 用 clearfix 而不是 flow-root：后者会让后续段落整块避让浮动，图下无法通栏。 */
  translate: none;
}

.about-profile__text::after {
  content: "";
  display: block;
  clear: both;
}

.about-profile__text p {
  /* 成稿 1920 实测：CJK 字距 18、14 行 ink 步距 36（y=724..1209）。
     流式正文钉 18，不跟 vw/--u 缩（docs/14 §3）。段间不加 margin，避免看起来像空一行。 */
  font-size: calc(18px * var(--type-boost));
  line-height: 2;
  color: var(--ink);
  text-align: justify;
}

.about-profile__photo {
  /* 必须盖掉 base.css 的 img display:block。指定 block 或 aspect-ratio 时后续段落会整块避让浮动。
     宽锁文:图 = 3:2 里的 2；高跟原图像素比，contain 避免 fill/cover 裁切或拉高去齐正文。 */
  display: inline;
  float: right;
  vertical-align: top;
  width: calc((100% - var(--profile-photo-gap)) * 2 / 5);
  max-width: calc((100% - var(--profile-photo-gap)) * 2 / 5);
  height: auto;
  object-fit: contain;
  object-position: top right;
  margin: 0 0 24px var(--profile-photo-gap);
  border-radius: var(--radius);
}

/* 769~1280 窄桌面：只收版心跟页头齐（服务页同界）。图文仍右浮绕排，
   上下结构跟历程/荣誉移动版式一起留到 768，避免数字条还是六格横排时简介已经叠栏。 */
/* 停用 2026-09-01：双稿改造后不再有中间过渡档，见 docs/14。
   复活时把条件改回 (min-width: 769px) and (max-width: 1280px)。 */
@media not all {
  .about-profile__inner.container--wide {
    width: calc(100% - 2 * var(--header-pad-x));
    max-width: none;
  }
}

/* 769~1040：页头实际是 20px 内边距，token 仍是 40。跟 layout.css / 服务页同界。 */
/* 停用 2026-09-01：双稿改造后不再有中间过渡档，见 docs/14。
   复活时把条件改回 (min-width: 769px) and (max-width: 1040px)。 */
@media not all {
  .about-profile__inner.container--wide {
    width: calc(100% - 40px);
  }

  .about-stats {
    padding-inline: 20px;
  }
}

.about-stats {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* 灰底通栏。数字跟公司简介 1680 版心对齐，两侧只留 40；六项按内容两端对齐，
     不要 1fr 把每格撑开再把数字居中（大屏格宽会把字夹在大块空白里）。 */
  width: 100%;
  height: 190px;
  max-width: none;
  margin: 0;
  padding: 0 max(40px, calc((100% - var(--container-wide)) / 2 + 40px));
  background: #f7f8fa;
  list-style: none;
}

.about-stats li {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 0 1 auto;
  min-width: 0;
  text-align: center;
}

.about-stats b {
  display: block;
  /* 成稿蓝 ink 高 46、2000+ 宽 112 ⇒ 40；800 在 PingFang 上比 700 更贴原型加粗。 */
  font-size: 40px;
  line-height: 1.2;
  color: var(--brand);
  font-weight: 800;
}

.about-stats span {
  display: block;
  margin-top: 10px;
  font-size: 14px;
  color: var(--ink-soft);
}

/* ---------------------------------------------------------------- 发展历程
   底图是用户替换的奖杯台阶（源 1024×409，1x 铺到 1920×767）。禁止再用
   min-height:768 + object-fit:cover：内容一旦比图画得高，cover 会按高度放大奖杯。
   舞台下限跟图走同一比例（容器上 container-type，::before 用 100cqi 定高；
   内容更高时盒子跟着长，禁止 cover 另算一套）。
   墨迹坐标仍按 design/pc/关于我们.jpg：
     标题「发展历程」y1605..1671（区块内 111；x 偏中线右 8.5，见 09 Q2，不跟）
     大年份 x348..742 / y1829..1944，色 #173a7c（不是品牌蓝），常规字重
     要点 16px/#666，行距 52，蓝点 8px/#0064b4，点心到文字 23
     轴线 y=2079，1px #ccc，横跨 x321..1602；两端 60px 白圆按钮，箭头 #999
     年份标签 y2109..2124，18px/#666；选中 #0064b4 + 30×16 下三角压在轴线上
   下面的字号/间距是按上面墨迹反推的（PingFang SC 与稿字不同，尺寸以对齐墨迹为准）。
   成稿画 9 年（2018–2026），实装只有真实的 4 年（09-设计稿存疑 Q5），列宽按条数均分。 */

.about-milestone {
  /* 容器自己不能查自己。::before 用 100cqi 把比例写成 min-height，
     内容（年份轴）比图高时盒子跟着长，overflow:hidden 只裁多余的图不是裁字。 */
  container-type: inline-size;
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
  /* 成稿数字条 #fafafa / 历程顶 #fff。不能跟数字条同灰，否则 190 高的条会看起来被拉长。 */
  background-color: var(--bg-white);
}

.about-milestone::before {
  content: "";
  float: left;
  width: 0;
  height: calc(100cqi * 409 / 1024);
  pointer-events: none;
}

/* 成稿标题墨迹在区块内 y=111，全局 .section-title 的 padding-top:77 只落到 87，
   差的 24 从 __inner 里扣回去，年份/轴线/背景三者的位置不动。 */
/* 停用 2026-09-01：双稿改造后不再有中间过渡档，见 docs/14。
   复活时把条件改回 (min-width: 1025px)。 */
@media not all {
  .about-milestone .section-title {
    padding-top: 101px;
  }
}

.about-milestone__inner {
  padding-top: 154px;
  padding-bottom: 72px;
}

.about-milestone__stage {
  padding-left: 80px;
}

.about-milestone__panel {
  display: none;
}

.about-milestone__panel.is-active {
  display: flex;
  align-items: center;
  gap: 85px;
  animation: about-milestone-in .55s cubic-bezier(.22, 1, .36, 1) both;
}

.about-milestone__year {
  flex: none;
  font-size: 126px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -.035em;
  color: #173a7c;
  white-space: nowrap;
}

.about-milestone__content ul {
  list-style: none;
}

.about-milestone__content li {
  position: relative;
  padding-left: 23px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-soft);
}

.about-milestone__content li::before {
  content: "";
  position: absolute;
  left: 0;
  top: calc((1.6em - 8px) / 2);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
}

.about-milestone__content li + li {
  margin-top: 26px;
}

@keyframes about-milestone-in {
  from { opacity: 0; translate: 0 22px; }
  to { opacity: 1; translate: 0 0; }
}

/* 轴线是区块几何基准：.about-milestone__axis 的顶边就是成稿那条 1px 线，
   左右圆按钮靠 translate 骑在线上，三角标也从 top:0 长出来。 */
.about-milestone__axis {
  position: relative;
  margin-top: 128px;
}

.about-milestone__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(0, 1fr);
  margin-inline: 60px;
  border-top: var(--hairline) solid #ccc;
}

.about-milestone__tab {
  position: relative;
  appearance: none;
  border: 0;
  background: transparent;
  padding: 30px 4px 0;
  font-size: 18px;
  line-height: 1;
  color: var(--ink-soft);
  cursor: pointer;
  transition: color .25s ease;
}

.about-milestone__tab:hover {
  color: var(--brand);
}

.about-milestone__tab.is-active {
  color: var(--brand);
}

.about-milestone__tab.is-active::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 16px solid var(--brand);
}

.about-milestone__tab:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}

.about-milestone__nav {
  position: absolute;
  top: 0;
  translate: 0 -50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: #999;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(0, 64, 128, .07);
  transition: color .25s ease, box-shadow .25s ease;
}

/* 荣誉钮相对 stage left:12；历程 inner 已收 84，探出 -72 才能和荣誉钮左右齐平。 */
.about-milestone__nav--prev { left: calc(-84px + 12px); }
.about-milestone__nav--next { right: calc(-84px + 12px); }

.about-milestone__nav:hover:not(:disabled) {
  color: var(--brand);
  box-shadow: 0 10px 26px rgba(0, 64, 128, .14);
}

.about-milestone__nav:disabled {
  color: #d8d8d8;
  cursor: default;
  box-shadow: 0 4px 12px rgba(0, 64, 128, .04);
}

.about-milestone__nav:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}

.about-milestone__progress {
  display: none;
}

/* ---------------------------------------------------------------- 荣誉资质 */

.about-honor {
  position: relative;
  min-height: 834px;
  padding-bottom: 80px;
  overflow: hidden;
 
}

/* 停用 2026-09-01：双稿改造后不再有中间过渡档，见 docs/14。
   复活时把条件改回 (max-width: 1440px)。 */
@media not all {
  .about-milestone__inner {
    padding-bottom: 40px;
  }

  .about-honor {
    min-height: 0;
    padding-bottom: 48px;
  }
}

/* 整页横向翻：桌面每页 4×2=8，移动每页 2×2=4。 */
.about-honor__stage {
  position: relative;
  width: min(var(--container-wide), calc(100% - var(--gutter) * 2));
  margin-inline: auto;
  padding-inline: 84px;
}

/* 历程 / 企业文化跟荣誉墙视口同宽（1680 − 两侧箭头槽 84）。
   1920 仍是 1512 @ x=204。图文另走荣誉 stage + 页头，见 .about-profile__inner。 */
.about-milestone__inner,
.about-culture__grid {
  width: min(calc(var(--container-wide) - 168px), calc(100% - var(--gutter) * 2 - 168px));
  margin-inline: auto;
}

.about-honor__viewport {
  /* 第十轮：下留白挂在图片容器上。全站 border-box 会把 padding 吃进滚动视口，
     证书底阴影仍被 overflow 裁成硬边；这里改 content-box，28px 加在格子下面。 */
  box-sizing: content-box;
  padding: 0 0 28px;
  margin-top: 0;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  container-type: inline-size;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.about-honor__viewport::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

.about-honor__viewport.is-paging {
  overflow: hidden;
}

.about-honor__viewport:focus-visible {
  outline-offset: 4px;
}

.about-honor__grid {
  display: grid;
  grid-template-rows: repeat(2, auto);
  grid-auto-flow: column;
  grid-auto-columns: calc((100cqi - 72px) / 4);
  gap: 24px;
  width: max-content;
  min-width: 100%;
  padding-top: 48px;
  list-style: none;
}

.about-honor__grid li {
  min-width: 0;
  scroll-snap-align: none;
  transition: translate .38s cubic-bezier(.22, 1, .36, 1), box-shadow .38s ease;
}

/* 桌面每页 8 张：第 8n+1 / 8n+2 是该页第一列 */
.about-honor__grid li:nth-child(8n + 1),
.about-honor__grid li:nth-child(8n + 2) {
  scroll-snap-align: start;
}

.about-honor__arrow {
  position: absolute;
  /* 相对 stage 垂直居中后再补偿 grid 上下 padding 差：(48 − 28) / 2 */
  top: calc(50% + 10px);
  z-index: 2;
  width: 60px;
  height: 60px;
  padding: 0;
  border: var(--hairline) solid #e3eaf1;
  border-radius: 50%;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 8px 22px rgba(10, 27, 57, .09);
  cursor: pointer;
  translate: 0 -50%;
}

.about-honor__arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-top: 2px solid #6e7d8c;
  border-right: 2px solid #6e7d8c;
}

.about-honor__arrow--prev { left: 12px; }
.about-honor__arrow--next { right: 12px; }
.about-honor__arrow--prev::before { transform: translate(-35%, -50%) rotate(-135deg); }
.about-honor__arrow--next::before { transform: translate(-65%, -50%) rotate(45deg); }

.about-honor__arrow:disabled {
  opacity: .42;
  cursor: default;
}

.about-honor__arrow:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
}

.about-honor__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 0;
  background: none;
}

.about-honor__controls[hidden] {
  display: none;
}

.about-honor__arrow[hidden] {
  display: none;
}

.about-honor__dot {
  display: block;
  flex: 0 0 32px;
  width: 32px;
  height: 8px;
  min-width: 32px;
  min-height: 8px;
  padding: 0;
  border: 0;
  appearance: none;
  -webkit-appearance: none;
  line-height: 0;
  overflow: hidden;
  background: #ddd;
  cursor: pointer;
}

.about-honor__dot[aria-current="true"] {
  background: #0064b4;
}

.about-honor__frame {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 3 / 2;
  padding: 16px;
  overflow: hidden;
  border: 0;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 0 20px rgba(0, 64, 128, .10);
}

.about-honor__grid img {
  position: absolute;
  top: 16px;
  left: 16px;
  width: calc(100% - 32px);
  height: calc(100% - 32px);
  object-fit: contain;
  transition: scale .38s cubic-bezier(.22, 1, .36, 1);
}

.about-honor__frame.is-missing img {
  display: none;
}

.about-honor__frame.is-missing::after {
  content: attr(data-missing-label);
  color: #8a96a3;
  font-size: 14px;
  letter-spacing: .04em;
}

.about-honor__empty {
  padding: 40px 0;
  text-align: center;
  font-size: 14px;
  color: var(--ink-mute);
}

/* ---------------------------------------------------------------- 企业文化 · 01/02 并排，03 通栏 */

.about-culture {
  position: relative;
  min-height: 879px;
  padding-bottom: 96px;
  background-color: var(--bg-page);
}

/* 历程底图按宽度铺开、高度跟 1024/409 走，钉在区块底（台阶贴着年份轴）。
   内容比图高时多出来的是白底（跟 PNG 顶沿 ~#fbfbfd 接上），不要 cover 去吃高度（docs/14 NEVER）。 */
.about-milestone__bg {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: auto;
  z-index: 0;
  pointer-events: none;
}

/* 第九轮：底图必须铺满整段荣誉资质（标题 + 证书 + 分页条 + 底部留白）。
   源图波浪集中在上半段，55% 以下接近纯白；若按 1920×834 原样铺满，分页条正好落在白底上，
   看起来就像「图到证书底下就没了」。把图画到区块高的 230% 再让 overflow 裁掉下面的白边，
   分页条才能压在纹路上。 */
.about-honor__bg {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 230%;
  max-width: none;
  max-height: none;
  object-fit: fill;
  z-index: 0;
  pointer-events: none;
}

/* 企业文化是最后一个区块，下面直接是深色页脚，露白和溢出都会被看见（溢出时 52% 半透明的图
   会把页脚顶部洗成灰色）。图是抽象山形，横向裁切无损语义，所以铺满区块并把山脚钉在区块底
   （= 页脚上沿）；1920 处容器与图同尺寸，cover 不产生任何缩放裁切，成稿基线不动。 */
.about-culture__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  z-index: 0;
  pointer-events: none;
}

.about-milestone > *:not(.about-milestone__bg),
.about-honor > *:not(.about-honor__bg),
.about-culture > *:not(.about-culture__bg) {
  position: relative;
  z-index: 1;
}

.about-culture__grid {
  display: grid;
  /* 版心见上方与荣誉视口共用的那条。右列 174×258 竖条只占第一行；VALUE 通栏，右缘与蓝块齐。 */
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) 174px;
  align-items: start;
  gap: 24px;
  padding-top: 48px;
  list-style: none;
}

.about-culture__grid li {
  position: relative;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px 36px 36px;
  min-height: 200px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 64, 128, .06);
  transition: translate .38s cubic-bezier(.22, 1, .36, 1), box-shadow .38s ease;
}

@media (hover: hover) and (pointer: fine) {
  .about-honor__grid li:hover {
    translate: 0 -8px;
  }

  .about-honor__grid li:hover .about-honor__frame {
    box-shadow: 0 0 28px rgba(0, 64, 128, .14);
  }

  .about-culture__grid li:not(.about-culture__mark):hover {
    translate: 0 -8px;
    box-shadow: 0 18px 34px rgba(0, 64, 128, .13);
  }

  .about-honor__grid li:hover img { scale: 1.025; }
}

@media (prefers-reduced-motion: no-preference) {
  html.motion-ready .about-culture__grid > [data-reveal-soft]:nth-child(2) { transition-delay: 100ms; }
  html.motion-ready .about-culture__grid > .about-culture__mark[data-reveal-soft] { transition-delay: 100ms; }
}

.about-culture__item--wide {
  grid-column: 1 / -1;
  min-height: 213px;
}

/* 成稿：右列竖条，高与 01/02 齐（258），字贴右侧顺时针 90° */
.about-culture__grid li.about-culture__mark {
  grid-column: 3;
  grid-row: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 174px;
  height: 258px;
  min-height: 258px;
  padding: 0 18px 0 0;
  overflow: hidden;
  background: #0077ff;
  box-shadow: none;
}

.about-culture__mark span {
  color: #fff;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1;
  white-space: nowrap;
  transform: rotate(90deg);
}

.about-culture__grid > li:not(.about-culture__item--wide):not(.about-culture__mark) {
  min-height: 258px;
}

.about-culture__no {
  position: absolute;
  right: 24px;
  top: 8px;
  font-size: 96px;
  line-height: 1;
  font-weight: 700;
  color: rgba(0, 100, 180, .12);
  pointer-events: none;
}

.about-culture__grid h3 {
  position: relative;
  font-size: 28px;
  color: var(--brand);
  letter-spacing: 0.04em;
}

.about-culture__cn {
  position: relative;
  margin-top: 8px;
  font-size: 16px;
  color: var(--ink);
}

.about-culture__body {
  position: relative;
  margin-top: 20px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-soft);
}

.about-culture__body p { margin: 0; }
.about-culture__body p + p { margin-top: 0.8em; }

/* 停用 2026-09-01：双稿改造后不再有中间过渡档，见 docs/14。
   复活时把条件改回 (max-width: 1024px)。 */
@media not all {
  .about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    height: auto;
    padding-block: 56px;
  }

  .about-milestone__inner { padding-top: 120px; }
  .about-milestone__stage { padding-left: 40px; }
  .about-milestone__panel.is-active { gap: 48px; }
  .about-milestone__year { font-size: 92px; }
  .about-milestone__axis { margin-top: 92px; }

  .about-honor__grid { gap: 22px; }
}

html[data-layout="mobile"] {
  /* 成稿 hero 就是 PC 那张 1920×490 banner 铺满 375 —— 96 高、cover 不裁；
     文案随切图等比缩放，不再 HTML 叠字。 */

  /* 移动成稿 design/mobile/关于我们@2x.png（750×4444，与 Axure u144 同图）：
     文 12px/#666 左对齐；图 686×374 @2x、左右各 32、圆角 24@2x=12；
     数字条通栏 #fafafa、3×2。PC 六格顺序与移动稿不同，用 order 换位，不改库。 */
  /* 公司简介标题在移动稿里不是全局那款居中 24px + 蓝绿双线，而是左对齐 22px +
     一条绿短线；本页另外三个区块（发展历程 / 荣誉资质 / 企业文化）仍是全局款。
     实测（÷2）：hero 底 144 → ink 顶 175.5（22px 的半行距 5.05 ⇒ padding-top 26）；
     ink 底 193.5 → 线顶 204（⇒ 线距 5）；线 27..58.5 × 粗 2，只有绿段。 */
  .about-profile .section-title {
    padding: 26px 0 0 26px;
    text-align: left;
  }

  .about-profile .section-title__text {
    font-size: var(--section-title-size);
  }

  .about-profile .section-title__rule {
    justify-content: flex-start;
    margin-top: 5px;
  }

  .about-profile .section-title__rule::before { display: none; }
  .about-profile .section-title__rule::after { width: 32px; height: 2px; }

  /* 线底 205.5 → 正文首行 ink 顶 222.5，12px/22 的半行距 5.75 ⇒ 盒顶 216.75 ⇒ 缝 11。
     桌面那条 168 箭头槽是荣誉墙专属，移动端没有箭头，简介/历程回到 gutter。 */
  .about-profile__inner,
  .about-milestone__inner {
    width: min(var(--container-wide), calc(100% - var(--gutter) * 2));
  }

  .about-profile__inner {
    padding-top: 11px;
    padding-bottom: 24px;
  }

  /* 正文左缘 25.5（照片左缘是 16 = --gutter），成稿两者本就不齐，按稿还原不拉平。
     行距 22 由三行 ink 顶 222.5 / 244.5 / 266.5 的步距直接读出（原 1.7 ⇒ 20.4 偏挤）。 */
  .about-profile__text {
    display: flex;
    flex-direction: column;
  }

  .about-profile__text::after {
    content: none;
  }

  .about-profile__text p {
    padding-inline: 9px;
    font-size: 12px;
    line-height: 22px;
    color: var(--ink-soft);
    text-align: left;
  }

  .about-profile__photo {
    display: block;
    float: none;
    width: 100%;
    max-width: none;
    height: auto;
    margin: 20px 0 0;
    order: 2;
    object-fit: contain;
    object-position: center top;
    border-radius: 12px;
  }

  .about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px 4px;
    height: auto;
    max-width: none;
    padding: 18px 8px 22px;
    background: #fafafa;
  }

  .about-stats b {
    font-size: 24px;
  }

  .about-stats span {
    margin-top: 4px;
    font-size: 12px;
    line-height: 1.4;
  }

  /* 成稿 3×2：8万m² / 120+ / 1000+ ；34+ / 90% / 2000+
     库序仍是 PC 的 8万m² / 2000+ / 1000+ / 34+ / 120+ / 90% */
  .about-stats li:nth-child(1) { order: 1; }
  .about-stats li:nth-child(2) { order: 6; }
  .about-stats li:nth-child(3) { order: 3; }
  .about-stats li:nth-child(4) { order: 4; }
  .about-stats li:nth-child(5) { order: 2; }
  .about-stats li:nth-child(6) { order: 5; }

  /* 移动成稿该段接近白底。Q5：与 PC 同一张奖杯台阶图，同一套按宽缩放，不要再写 46% contain。 */

  /* 移动成稿（design/mobile/关于我们@2x.png）不是 tab 切换，而是多列横滑：
     列宽 156 + 1px 竖分隔 + 13 间距，年份 30px，要点 12px（成稿实测约 11px，
     低于可读下限，收口到 12），底部 2px 滚动进度条代替年份轴。 */
  .about-milestone__inner {
    padding-top: 22px;
    padding-bottom: 40px;
  }

  .about-milestone__stage {
    display: flex;
    margin-inline: calc(var(--gutter) * -1);
    padding-inline: 24px;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    scroll-padding-inline: 24px;   /* 不加这句首列会被吸到 padding 里，左边被裁 */
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    cursor: grab;                  /* 配合 site.js 的指针拖拽：鼠标下要看得出能拖 */
    touch-action: pan-x pan-y;
  }

  .about-milestone__stage:active {
    cursor: grabbing;
  }

  .about-milestone__stage::-webkit-scrollbar {
    display: none;
  }

  .about-milestone__panel,
  .about-milestone__panel.is-active {
    display: block;
    flex: 0 0 156px;
    min-height: 160px;
    padding-top: 12px;
    scroll-snap-align: start;
    animation: none;
  }

  .about-milestone__panel:not(:last-child) {
    border-right: var(--hairline) solid #ccc;
    margin-right: 13px;
  }

  .about-milestone__year {
    font-size: 30px;
    letter-spacing: -.01em;
  }

  .about-milestone__content {
    margin-top: 10px;
  }

  .about-milestone__content li {
    padding-left: 18px;
    font-size: 12px;
    line-height: 1.7;
  }

  .about-milestone__content li::before {
    top: calc((1.7em - 6px) / 2);
    width: 6px;
    height: 6px;
  }

  .about-milestone__content li + li {
    margin-top: 4px;
  }

  .about-milestone__axis {
    display: none;
  }

  .about-milestone__progress {
    display: block;
    position: relative;
    height: 2px;
    margin-top: 14px;
    margin-inline: 8px;
    background: #ccc;
  }

  .about-milestone__progress span {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 30%;
    background: var(--brand);
    transition: translate .18s linear;
  }

  /* 成稿三张卡各 117 高、缝 12（实测白底段 3306..3539 / 3564..3797 / 3822..4055 @2x），
     实装是 208~235 高、缝 24 —— 主因是 min-height:879 + 桌面那套 40/36 内边距和 28/16/16 字号。
     卡内实测（÷2，卡顶 1653）：VISION ink 1681.5..1691.5（cap 10.5 ⇒ 14px）、
     企业愿景 ink 1715.5..1728（⇒ 15px）、正文 ink 1737.5..1748.5 且 12 字宽 144（⇒ 12px）；
     文字左缘 72（= 卡左 16 + 56），水印数字挪到左侧 45..64.6、高约 33（⇒ 47px）。
     区块：双线底 1636.5 → 卡顶 1653（缝 16）；末卡底 2027.5 → 页脚 2060（下留 32）。 */
  .about-culture {
    min-height: 0;
    padding-bottom: 32px;
  }

  .about-culture__grid {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 16px var(--gutter) 0;
  }

  .about-culture__item--wide { grid-column: auto; }

  /* 移动成稿只有三张纵排卡，蓝块是 PC 成稿专属 */
  .about-culture__grid li.about-culture__mark { display: none; }

  .about-culture__grid li,
  .about-culture__grid > li:not(.about-culture__item--wide):not(.about-culture__mark) {
    min-height: 0;
    padding: 22px 20px 20px 56px;
    border-radius: 8px;
  }

  .about-culture__no {
    right: auto;
    left: 29px;
    top: 14px;
    font-size: 47px;
  }

  .about-culture__grid h3 { font-size: 14px; }

  .about-culture__cn {
    margin-top: 12px;
    font-size: 15px;
  }

  .about-culture__body {
    margin-top: 3px;
    font-size: 12px;
    line-height: 1.5;
  }

  /* 纵向按成稿实测（÷2）：双线底 1368.5 → 卡顶 1385（16.5）；两行卡各 72 高、缝 10.5；
     卡底 1538.5 → 分页点 1551（12.5）；点底 1554.5 → 企业文化区顶 1578.5（下留 24）。
     原值 30 / 12 / 20 / 64 一共多出 62。 */
  .about-honor {
    min-height: 0;
    padding-bottom: 24px;
  }

  .about-honor__stage {
    width: 100%;
    padding-inline: var(--gutter);
  }

  /* 移动稿是 3 列 × 2 行 = 每页 6 张（原实现 2×2=4）。
     栅格是 grid-auto-flow:column + 两行，所以每页第一列是第 6n+1 / 6n+2 张。 */
  .about-honor__viewport {
    padding-bottom: 12px;
  }

  .about-honor__grid {
    grid-auto-columns: calc((100cqi - 20px) / 3);
    gap: 10px;
    padding-top: 16px;
  }

  /* 覆盖桌面那份 8n 吸附 */
  .about-honor__grid li:nth-child(8n + 1),
  .about-honor__grid li:nth-child(8n + 2) {
    scroll-snap-align: none;
  }

  .about-honor__grid li:nth-child(6n + 1),
  .about-honor__grid li:nth-child(6n + 2) {
    scroll-snap-align: start;
  }

  .about-honor__controls {
    margin-top: 0;
    pointer-events: none;
  }

  .about-honor__dot {
    cursor: default;
    pointer-events: none;
  }

  .about-honor__arrow {
    display: none;
  }

  .about-honor__frame {
    padding: 10px;
    border-radius: 8px;
  }

  .about-honor__grid img {
    top: 10px;
    left: 10px;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-milestone__panel.is-active {
    animation: none;
  }

  .about-milestone__tab,
  .about-milestone__nav,
  .about-milestone__progress span,
  .about-honor__grid li,
  .about-honor__grid img,
  .about-honor__viewport,
  .about-culture__grid li {
    transition: none;
  }
}
