.cms-page {
  min-height: 100vh;
  background: #fff;
  color: #101828;
  font-family: Arial, "Microsoft YaHei", sans-serif;
}

.cms-page-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px clamp(24px, 5vw, 72px);
  background: rgba(255,255,255,.94);
  border-bottom: 1px solid #eef1f5;
  backdrop-filter: blur(14px);
}

.cms-page-logo {
  font-size: 20px;
  letter-spacing: 10px;
  font-weight: 700;
  text-decoration: none;
  color: #101828;
}

.cms-page-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 42px);
  color: #475467;
  font-size: 14px;
  font-weight: 700;
}

.cms-page-nav a {
  color: inherit;
  text-decoration: none;
}

.cms-page-main {
  width: min(1380px, calc(100vw - 56px));
  margin: 0 auto;
  padding: clamp(72px, 9vw, 140px) 0;
}

.cms-page-title {
  text-align: center;
  margin-bottom: clamp(44px, 6vw, 88px);
}

.cms-page-title small {
  display: block;
  margin-bottom: 14px;
  color: #667085;
  font-size: 13px;
  letter-spacing: .48em;
  font-weight: 800;
}

.cms-page-title h1 {
  margin: 0;
  font-size: clamp(38px, 4.4vw, 72px);
  line-height: 1.08;
  font-weight: 500;
  letter-spacing: -.04em;
}

.cms-page-title p {
  margin: 18px auto 0;
  max-width: 760px;
  color: #667085;
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.9;
}

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

.cms-news-card {
  overflow: hidden;
  border: 1px solid #edf1f5;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 20px 52px rgba(16,24,40,.06);
}

.cms-news-card img,
.cms-news-card video {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
  background: #f3f4f6;
}

.cms-news-card-body {
  padding: 24px;
}

.cms-news-meta {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
  color: #667085;
  font-size: 12px;
  letter-spacing: .08em;
  font-weight: 800;
}

.cms-news-card h2 {
  margin: 0 0 14px;
  color: #101828;
  font-size: clamp(22px, 1.7vw, 30px);
  line-height: 1.28;
  font-weight: 700;
}

.cms-news-card p {
  margin: 0;
  color: #475467;
  font-size: 15px;
  line-height: 1.85;
}

.cms-news-content {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid #edf1f5;
  color: #344054;
  white-space: pre-line;
}

.cms-about-sections {
  display: grid;
  gap: 28px;
}

.cms-about-card {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(24px, 4vw, 52px);
  border: 1px solid #edf1f5;
  border-radius: 28px;
  background: #fff;
}

.cms-about-card:nth-child(even) {
  grid-template-columns: 1.2fr 1fr;
}

.cms-about-card:nth-child(even) .cms-about-media {
  order: 2;
}

.cms-about-media img,
.cms-about-media video {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 20px;
  background: #f3f4f6;
}

.cms-about-copy h2 {
  margin: 0 0 18px;
  font-size: clamp(30px, 3vw, 54px);
  line-height: 1.12;
}

.cms-about-copy p {
  margin: 0;
  color: #475467;
  font-size: clamp(16px, 1.2vw, 20px);
  line-height: 1.95;
  white-space: pre-line;
}

@media (max-width: 900px) {
  .cms-page-header,
  .cms-page-nav {
    flex-wrap: wrap;
  }
  .cms-news-grid,
  .cms-about-card,
  .cms-about-card:nth-child(even) {
    grid-template-columns: 1fr;
  }
  .cms-about-card:nth-child(even) .cms-about-media {
    order: 0;
  }
}

/* BIODEX About — editorial, immersive layout inspired by premium material brands */
.cms-about .cms-page-header {
  position: fixed;
  inset: 0 0 auto;
  color: #fff;
  background: linear-gradient(180deg, rgba(0, 15, 12, .72), transparent);
  border: 0;
  backdrop-filter: none;
  transition: background .3s ease;
  padding-left: 108px;
}

.cms-about .cms-page-logo,
.cms-about .cms-page-nav {
  color: #fff;
}

.about-gore-page {
  overflow: hidden;
  background: #f7f8f5;
  color: #10201b;
}

.about-gore-page small {
  display: block;
  color: #64746d;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .34em;
}

.about-gore-page h2 {
  margin: 16px 0 0;
  font-size: clamp(38px, 4.7vw, 76px);
  font-weight: 500;
  letter-spacing: -.055em;
  line-height: 1.06;
}

.about-gore-page p {
  color: #53635d;
  font-size: clamp(16px, 1.15vw, 19px);
  line-height: 1.9;
}

.about-hero {
  position: relative;
  display: flex;
  min-height: 100svh;
  align-items: flex-end;
  padding: clamp(120px, 15vw, 230px) max(48px, calc((100vw - 1440px) / 2 + 48px)) 9vh;
  background-image: linear-gradient(90deg, rgba(3, 18, 15, .82) 0%, rgba(3, 18, 15, .42) 44%, rgba(3, 18, 15, .08) 75%), var(--about-hero);
  background-position: center;
  background-size: cover;
  color: #fff;
}

.about-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 860px;
}

.about-hero-copy small {
  color: rgba(255, 255, 255, .75);
}

.about-hero h1 {
  margin: 22px 0 28px;
  font-size: clamp(54px, 7.6vw, 126px);
  font-weight: 500;
  letter-spacing: -.07em;
  line-height: .94;
}

.about-hero p {
  max-width: 680px;
  color: rgba(255, 255, 255, .86);
  font-size: clamp(17px, 1.35vw, 22px);
}

.about-hero a {
  display: inline-flex;
  gap: 48px;
  align-items: center;
  margin-top: 38px;
  padding: 15px 20px;
  border: 1px solid rgba(255, 255, 255, .55);
  color: #fff;
  text-decoration: none;
  transition: .25s ease;
}

.about-hero a:hover {
  background: #fff;
  color: #173b2e;
}

.about-hero-mark {
  position: absolute;
  right: 4vw;
  bottom: 5vh;
  color: rgba(255, 255, 255, .58);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .24em;
  writing-mode: vertical-rl;
}

.about-manifesto {
  width: min(1120px, calc(100vw - 64px));
  margin: 0 auto;
  padding: clamp(110px, 14vw, 220px) 0;
  text-align: center;
}

.about-manifesto p {
  max-width: 980px;
  margin: 42px auto 0;
  color: #273b34;
  font-size: clamp(21px, 2.05vw, 34px);
  line-height: 1.7;
}

.about-position,
.about-platform,
.about-network,
.about-proof {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
  align-items: stretch;
}

.about-position figure,
.about-platform figure,
.about-network figure,
.about-proof figure {
  min-height: 650px;
  margin: 0;
}

.about-position img,
.about-platform img,
.about-network img,
.about-proof img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-position > div,
.about-platform-copy,
.about-network > div,
.about-proof-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(64px, 8vw, 140px);
  background: #fff;
}

.about-position p,
.about-network p,
.about-proof p {
  margin: 32px 0 0;
}

.about-position p + p {
  margin-top: 20px;
}

.about-values,
.about-history {
  padding: clamp(100px, 12vw, 190px) max(32px, calc((100vw - 1440px) / 2 + 48px));
}

.about-values header,
.about-history header {
  max-width: 900px;
  margin-bottom: clamp(54px, 7vw, 100px);
}

.about-value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #bdc8c2;
}

.about-value-grid article {
  position: relative;
  min-height: 440px;
  padding: 40px 32px 54px;
  border-right: 1px solid #bdc8c2;
  transition: color .35s ease, background .35s ease, transform .35s ease;
}

.about-value-grid article:first-child {
  border-left: 1px solid #bdc8c2;
}

.about-value-grid article:hover {
  z-index: 2;
  background: #153f31;
  color: #fff;
  transform: translateY(-14px);
}

.about-value-grid article > span {
  display: block;
  margin-bottom: 86px;
  color: #8aa99c;
  font-size: 13px;
}

.about-value-grid h3 {
  margin: 14px 0 20px;
  font-size: clamp(32px, 3vw, 52px);
  font-weight: 500;
  letter-spacing: -.04em;
}

.about-value-grid article:hover small,
.about-value-grid article:hover p {
  color: rgba(255, 255, 255, .72);
}

.about-platform {
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  background: #102d24;
  color: #fff;
}

.about-platform-copy {
  background: #102d24;
}

.about-platform-copy small,
.about-platform-copy p {
  color: rgba(255, 255, 255, .66);
}

.about-platform-copy p {
  margin: 30px 0 40px;
}

.about-platform ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-platform li {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 20px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, .2);
}

.about-platform li span {
  color: rgba(255, 255, 255, .65);
}

.about-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #9cafaa;
}

.about-timeline article {
  position: relative;
  padding: 42px 34px 20px 0;
}

.about-timeline article::before {
  position: absolute;
  top: -6px;
  left: 0;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #2c785d;
  content: "";
}

.about-timeline time {
  color: #2c785d;
  font-size: 15px;
  font-weight: 800;
}

.about-timeline h3 {
  margin: 38px 0 18px;
  font-size: 26px;
}

.about-timeline p {
  font-size: 15px;
}

.about-network {
  background: #fff;
}

.about-location-list {
  margin-top: 36px;
}

.about-location-list div {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 20px;
  padding: 17px 0;
  border-top: 1px solid #dbe1dd;
}

.about-location-list span {
  color: #687770;
}

.about-proof {
  grid-template-columns: 1fr 1fr;
  background: #071d17;
  color: #fff;
}

.about-proof-copy {
  background: #071d17;
}

.about-proof-copy small,
.about-proof-copy p {
  color: rgba(255, 255, 255, .68);
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 52px;
}

.about-stats div {
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .24);
}

.about-stats strong {
  display: block;
  font-size: clamp(38px, 4vw, 66px);
  font-weight: 400;
}

.about-stats span {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, .6);
  font-size: 12px;
  line-height: 1.6;
}

.about-contact {
  padding: clamp(110px, 14vw, 220px) 32px;
  text-align: center;
  background: #e9efe9;
}

.about-contact p {
  max-width: 680px;
  margin: 30px auto 0;
}

.about-contact > div {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 42px;
}

.about-contact a {
  padding: 16px 26px;
  background: #143e30;
  border: 1px solid #143e30;
  color: #fff;
  text-decoration: none;
}

.about-contact a.secondary {
  background: transparent;
  color: #143e30;
}

.about-footer {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 40px;
  padding: 70px max(32px, calc((100vw - 1440px) / 2 + 48px));
  background: #071611;
  color: #fff;
}

.about-footer strong {
  font-size: 20px;
  letter-spacing: .5em;
}

.about-footer p,
.about-footer span,
.about-footer a {
  color: rgba(255, 255, 255, .58);
  font-size: 13px;
  text-decoration: none;
}

.about-footer > div {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

body:has(.cms-about) footer:not(.about-footer),
body:has(.cms-about) [role="contentinfo"]:not(.about-footer),
body:has(.cms-news) footer:not(.about-footer),
body:has(.cms-news) [role="contentinfo"]:not(.about-footer) {
  display: none !important;
}

.cms-news .cms-page-header {
  position: fixed;
  inset: 0 0 auto;
  padding-left: 108px;
  color: #fff;
  background: linear-gradient(180deg, rgba(3, 18, 15, .75), transparent);
  border: 0;
  backdrop-filter: none;
}
.cms-news .cms-page-logo,.cms-news .cms-page-nav{color:#fff}
.sustain-page{overflow:hidden;background:#f4f7f3;color:#10201b}
.sustain-page small{display:block;color:#688077;font-size:12px;font-weight:800;letter-spacing:.32em}
.sustain-page h2{margin:16px 0 0;font-size:clamp(40px,5vw,78px);font-weight:500;letter-spacing:-.055em;line-height:1.06}
.sustain-page p{color:#53635d;font-size:clamp(16px,1.15vw,19px);line-height:1.9}
.sustain-hero{display:flex;min-height:100svh;align-items:flex-end;padding:160px max(48px,calc((100vw - 1440px)/2 + 48px)) 10vh;background:linear-gradient(90deg,rgba(2,18,13,.84),rgba(2,18,13,.18)),url("/images/about/materials-lab.png") center/cover;color:#fff}
.sustain-hero>div{max-width:900px}.sustain-hero small{color:#c9d7d0}.sustain-hero h1{margin:24px 0 30px;font-size:clamp(58px,8vw,128px);font-weight:500;letter-spacing:-.075em;line-height:.94}.sustain-hero p{max-width:720px;color:rgba(255,255,255,.82);font-size:clamp(18px,1.4vw,23px)}.sustain-hero a{display:inline-flex;gap:44px;margin-top:38px;padding:16px 22px;border:1px solid rgba(255,255,255,.55);color:#fff;text-decoration:none}
.sustain-intro{width:min(1120px,calc(100vw - 64px));margin:auto;padding:clamp(110px,14vw,210px) 0;text-align:center}.sustain-intro p{max-width:900px;margin:40px auto 0;color:#263c34;font-size:clamp(20px,2vw,32px);line-height:1.75}
.sustain-pillars{display:grid;grid-template-columns:repeat(4,1fr);padding:0 max(32px,calc((100vw - 1440px)/2 + 48px)) clamp(110px,12vw,180px)}.sustain-pillars article{min-height:440px;padding:35px 28px;border:1px solid #bdc9c2;border-right:0;transition:.3s}.sustain-pillars article:last-child{border-right:1px solid #bdc9c2}.sustain-pillars article:hover{background:#123d2e;color:#fff;transform:translateY(-12px)}.sustain-pillars span{display:block;margin-bottom:80px;color:#6f9d8b}.sustain-pillars h3{margin:16px 0 22px;font-size:clamp(28px,2.7vw,46px);font-weight:500}.sustain-pillars article:hover small,.sustain-pillars article:hover p{color:rgba(255,255,255,.68)}
.sustain-data,.sustain-trace{display:grid;grid-template-columns:1fr 1fr;min-height:760px;background:#fff}.sustain-data figure,.sustain-trace figure{margin:0}.sustain-data img,.sustain-trace img{display:block;width:100%;height:100%;object-fit:cover}.sustain-data>div,.sustain-trace>div{display:flex;flex-direction:column;justify-content:center;padding:clamp(60px,8vw,130px)}.sustain-data>div>p,.sustain-trace>div>p{margin-top:30px}
.sustain-stat-grid{display:grid;grid-template-columns:1fr 1fr;gap:30px;margin-top:42px}.sustain-stat-grid div{padding-top:20px;border-top:1px solid #cdd6d1}.sustain-stat-grid strong{display:block;color:#17684c;font-size:clamp(42px,4.5vw,70px);font-weight:400}.sustain-stat-grid span{font-size:13px;color:#63736d;line-height:1.6}
.sustain-trace{grid-template-columns:.9fr 1.1fr;background:#09251c;color:#fff}.sustain-trace>div{background:#09251c}.sustain-trace small,.sustain-trace p{color:rgba(255,255,255,.68)}.sustain-trace ol{margin:40px 0 0;padding:0;list-style:none}.sustain-trace li{display:grid;grid-template-columns:150px 1fr;gap:20px;padding:18px 0;border-top:1px solid rgba(255,255,255,.2)}.sustain-trace li span{color:rgba(255,255,255,.62)}
.sustain-proof{padding:clamp(100px,12vw,180px) max(32px,calc((100vw - 1440px)/2 + 48px))}.sustain-proof header{max-width:900px;margin-bottom:70px}.sustain-proof>div{display:grid;grid-template-columns:repeat(3,1fr);border-top:1px solid #b8c5be}.sustain-proof article{padding:36px 34px 60px 0}.sustain-proof article+article{padding-left:34px;border-left:1px solid #b8c5be}.sustain-proof article span{color:#398269}.sustain-proof h3{margin:65px 0 18px;font-size:34px}
.sustain-cta{padding:clamp(110px,14vw,210px) 32px;text-align:center;background:#dce9e1}.sustain-cta p{max-width:700px;margin:30px auto}.sustain-cta>div{display:flex;justify-content:center;gap:14px;margin-top:40px}.sustain-cta a{padding:16px 26px;background:#123d2e;border:1px solid #123d2e;color:#fff;text-decoration:none}.sustain-cta a.secondary{background:transparent;color:#123d2e}
@media(max-width:960px){.cms-news .cms-page-header{position:absolute;padding-left:92px}.cms-news .cms-page-nav{display:none}.sustain-pillars{grid-template-columns:1fr}.sustain-pillars article{min-height:300px;border-right:1px solid #bdc9c2;border-bottom:0}.sustain-pillars article:last-child{border-bottom:1px solid #bdc9c2}.sustain-data,.sustain-trace{grid-template-columns:1fr}.sustain-data figure,.sustain-trace figure{min-height:60vw}.sustain-proof>div{grid-template-columns:1fr}.sustain-proof article+article{padding-left:0;border-left:0;border-top:1px solid #b8c5be}}

/* Kvadrat-inspired BIODEX corporate news system */
.cms-news .cms-page-header {
  position: sticky;
  padding: 22px clamp(24px, 5vw, 72px);
  color: #111;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid #d9d9d9;
  backdrop-filter: blur(12px);
}
.cms-news .cms-page-logo,.cms-news .cms-page-nav{color:#111}
.corporate-news-page,.news-detail-page{background:#fff;color:#111}
.corporate-news-page{padding:clamp(70px,8vw,130px) max(28px,calc((100vw - 1440px)/2 + 48px))}
.corporate-news-title{display:grid;grid-template-columns:1fr 1fr;gap:40px;align-items:end;padding-bottom:clamp(60px,8vw,120px)}
.corporate-news-title small,.news-detail-head small,.news-related small,.corporate-news-card small,.corporate-news-feature small{font-size:12px;font-weight:700;letter-spacing:.12em;text-transform:uppercase}
.corporate-news-title h1{grid-row:2;margin:0;font-size:clamp(58px,8vw,132px);font-weight:400;letter-spacing:-.07em;line-height:.9}
.corporate-news-title p{grid-column:2;grid-row:2;max-width:550px;margin:0 0 8px;color:#555;font-size:18px;line-height:1.7}

/* 最终新闻页标题：与首页其他板块统一居中 */
.corporate-news-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  text-align: center;
  padding: clamp(90px, 10vw, 140px) 0 clamp(55px, 6vw, 90px);
}
.corporate-news-title h1 {
  margin: 16px 0 18px;
  font-size: clamp(44px, 5vw, 72px);
  letter-spacing: -.045em;
  line-height: 1;
}
.corporate-news-title p {
  grid-column: auto;
  grid-row: auto;
  max-width: 680px;
  margin: 0;
  color: #667085;
  font-size: 16px;
}
.corporate-news-feature{display:grid;grid-template-columns:1.25fr .75fr;min-height:650px;background:#e9e4dc;color:#111;text-decoration:none}
.corporate-news-feature img{width:100%;height:100%;object-fit:cover}
.corporate-news-feature>div{display:flex;flex-direction:column;justify-content:center;padding:clamp(45px,6vw,95px)}
.corporate-news-feature h2{margin:22px 0;font-size:clamp(38px,4.4vw,68px);font-weight:400;letter-spacing:-.05em;line-height:1.05}
.corporate-news-feature p{color:#444;font-size:17px;line-height:1.8}
.corporate-news-feature span,.corporate-news-card>span{margin-top:30px;font-size:13px;font-weight:700}
.corporate-news-filters{display:flex;gap:24px;align-items:center;margin:90px 0 38px;padding:18px 0;border-top:1px solid #bbb;border-bottom:1px solid #bbb;overflow:auto}
.corporate-news-filters button{flex:none;padding:4px 0;background:none;border:0;color:#777;font-size:14px;cursor:pointer}
.corporate-news-filters button.active{color:#111;text-decoration:underline;text-underline-offset:6px}
.corporate-news-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:70px 24px}
.corporate-news-card{display:flex;flex-direction:column;color:#111;text-decoration:none}
.corporate-news-card[hidden]{display:none}
.corporate-news-card:empty,.corporate-news-card[href*="tag.biodexsg.com"]{display:none!important}
.corporate-news-card>div{aspect-ratio:4/3;overflow:hidden;background:#eee}
.corporate-news-card img{width:100%;height:100%;object-fit:cover;transition:transform .55s cubic-bezier(.2,.7,.2,1)}
.corporate-news-card:hover img{transform:scale(1.035)}
.corporate-news-card small{margin-top:22px;color:#666}
.corporate-news-card h2{margin:16px 0 14px;font-size:clamp(25px,2.2vw,38px);font-weight:400;letter-spacing:-.035em;line-height:1.15}
.corporate-news-card p{margin:0;color:#666;font-size:15px;line-height:1.7}
.corporate-news-source{display:flex;justify-content:space-between;gap:30px;margin-top:120px;padding:28px 0;border-top:1px solid #bbb}.corporate-news-source p{margin:0;color:#666}.corporate-news-source a{flex:none;color:#111}
.news-detail-page{padding-top:50px}.news-detail-back,.news-detail-head,.news-detail-body,.news-related{width:min(1180px,calc(100vw - 64px));margin-left:auto;margin-right:auto}.news-detail-back{padding:20px 0 70px}.news-detail-back a{color:#111;text-decoration:none}
.news-detail-head{max-width:1100px;text-align:center}.news-detail-head h1{margin:30px auto;font-size:clamp(48px,7vw,108px);font-weight:400;letter-spacing:-.065em;line-height:1}.news-detail-head p{max-width:780px;margin:0 auto 70px;color:#555;font-size:20px;line-height:1.75}
.news-detail-hero{width:min(1440px,calc(100vw - 64px));margin:0 auto}.news-detail-hero img{display:block;width:100%;max-height:900px;object-fit:cover}
.news-detail-body{max-width:800px;padding:90px 0 130px}.news-detail-body p{margin:0 0 28px;color:#252525;font-size:19px;line-height:1.95}
.news-related{padding:90px 0 130px;border-top:1px solid #bbb}.news-related header{margin-bottom:50px}.news-related h2{margin:12px 0 0;font-size:clamp(40px,5vw,72px);font-weight:400;letter-spacing:-.05em}.news-related>div{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}.news-related a{color:#111;text-decoration:none}.news-related img{width:100%;aspect-ratio:4/3;object-fit:cover}.news-related a small{display:block;margin-top:18px;color:#666}.news-related h3{margin:12px 0 0;font-size:25px;font-weight:400;line-height:1.2}
.home-news-editorial{width:min(1440px,calc(100vw - 64px));margin:auto;padding:clamp(90px,10vw,160px) 0;background:#fff;color:#111}.home-news-editorial header{display:grid;grid-template-columns:1fr auto;align-items:end;margin-bottom:50px}.home-news-editorial header small{grid-column:1;letter-spacing:.2em}.home-news-editorial header h2{margin:12px 0 0;font-size:clamp(42px,5vw,78px);font-weight:400;letter-spacing:-.05em}.home-news-editorial header a{grid-column:2;grid-row:1/3;color:#111;text-decoration:none}
.home-news-feature{display:grid;grid-template-columns:1.25fr .75fr;background:#ece8e1;color:#111;text-decoration:none}.home-news-feature img{width:100%;height:100%;min-height:520px;object-fit:cover}.home-news-feature>div{display:flex;flex-direction:column;justify-content:center;padding:clamp(40px,5vw,80px)}.home-news-feature h3{margin:20px 0;font-size:clamp(32px,3.6vw,58px);font-weight:400;letter-spacing:-.045em;line-height:1.08}.home-news-feature p{color:#555;line-height:1.75}.home-news-list{display:grid;grid-template-columns:repeat(3,1fr);border-bottom:1px solid #bbb}.home-news-list a{min-height:240px;padding:34px 28px 28px 0;border-right:1px solid #bbb;color:#111;text-decoration:none}.home-news-list a+a{padding-left:28px}.home-news-list h3{margin:30px 0;font-size:23px;font-weight:400;line-height:1.25}
@media(max-width:900px){.cms-news .cms-page-header{position:sticky;padding-left:92px}.corporate-news-title,.corporate-news-feature,.home-news-feature{grid-template-columns:1fr}.corporate-news-title p{grid-column:1;grid-row:auto}.corporate-news-feature{min-height:0}.corporate-news-feature img,.home-news-feature img{min-height:0;aspect-ratio:4/3}.corporate-news-grid{grid-template-columns:1fr 1fr}.news-related>div,.home-news-list{grid-template-columns:1fr}.home-news-list a{border-right:0;border-top:1px solid #bbb}.home-news-list a+a{padding-left:0}.news-related>div{gap:50px}}
@media(max-width:600px){.corporate-news-grid{grid-template-columns:1fr}.corporate-news-source{flex-direction:column}.news-detail-head h1{font-size:42px}.news-detail-head p{font-size:17px}}

/* 2026-06-25 首页企业新闻：与全站主板块统一版心，类别卡片可由后台自由配置 */
.home-news-editorial {
  width: min(var(--home-news-max-width, 1760px), calc(100vw - clamp(48px, 8vw, 180px)));
  max-width: var(--home-news-max-width, 1760px);
  padding: var(--home-news-top-space, 70px) 0 var(--home-news-bottom-space, 110px);
}
.home-news-feature {
  height: var(--home-news-feature-height, clamp(430px, 32vw, 560px));
  overflow: hidden;
}
.home-news-feature img {
  min-height: 0;
  height: 100%;
}
.home-news-feature > div {
  min-height: 0;
  padding: clamp(32px, 4vw, 64px);
}
.home-news-feature h3 {
  font-size: clamp(28px, 2.7vw, 46px);
}
.home-news-heading {
  position: relative;
  display: flex !important;
  flex-direction: column;
  align-items: center !important;
  justify-content: center;
  margin-bottom: 42px !important;
  text-align: center;
}
.home-news-heading small {
  grid-column: auto !important;
}
.home-news-heading h2 {
  margin: 12px 0 10px !important;
  font-size: clamp(38px, 4vw, 58px) !important;
}
.home-news-heading p {
  max-width: 620px;
  margin: 0;
  color: #667085;
  font-size: 15px;
  line-height: 1.7;
}
.home-news-heading > a {
  position: absolute;
  right: 0;
  bottom: 4px;
  grid-column: auto !important;
  grid-row: auto !important;
}
.home-news-rotation {
  display: flex;
  justify-content: center;
  gap: 9px;
  padding: 20px 0 24px;
}
.home-news-rotation button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 99px;
  background: #c9c9c5;
  cursor: pointer;
  transition: width .25s ease, background .25s ease;
}
.home-news-rotation button.active {
  width: 30px;
  background: #17231c;
}
.home-news-category-grid {
  display: grid;
  grid-template-columns: repeat(var(--home-news-category-count, 5), minmax(0, 1fr));
  border-top: 1px solid #c9c9c5;
  border-bottom: 1px solid #c9c9c5;
}
.home-news-category-card {
  min-width: 0;
  padding: 0 22px 30px;
  border-right: 1px solid #c9c9c5;
  color: #111;
  text-decoration: none;
}
.home-news-category-card:first-child {
  padding-left: 0;
}
.home-news-category-card:last-child {
  padding-right: 0;
  border-right: 0;
}
.home-news-category-card > div {
  aspect-ratio: 4 / 3;
  margin: 0 -22px 24px;
  overflow: hidden;
  background: #ecece8;
}
.home-news-category-card:first-child > div {
  margin-left: 0;
}
.home-news-category-card:last-child > div {
  margin-right: 0;
}
.home-news-category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}
.home-news-category-card:hover img {
  transform: scale(1.035);
}
.home-news-category-card small {
  color: #667067;
  font-size: 12px;
  letter-spacing: .08em;
}
.home-news-category-card h3 {
  min-height: 3.2em;
  margin: 16px 0 28px;
  font-size: clamp(18px, 1.35vw, 25px);
  font-weight: 400;
  line-height: 1.35;
}
.home-news-category-card span {
  font-size: 13px;
  font-weight: 700;
}
@media(max-width:1100px) {
  .home-news-category-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .home-news-category-card { border-bottom: 1px solid #c9c9c5; }
}
@media(max-width:700px) {
  .home-news-editorial {
    width: calc(100vw - 32px);
    padding-top: min(var(--home-news-top-space, 70px), 56px);
    padding-bottom: min(var(--home-news-bottom-space, 110px), 72px);
  }
  .home-news-feature { height: auto; }
  .home-news-heading > a { position: static; margin-top: 18px; }
  .home-news-category-grid { grid-template-columns: 1fr 1fr; }
  .home-news-category-card,
  .home-news-category-card:first-child,
  .home-news-category-card:last-child { padding: 0 12px 24px; }
  .home-news-category-card > div,
  .home-news-category-card:first-child > div,
  .home-news-category-card:last-child > div { margin: 0 -12px 18px; }
}

@media (max-width: 960px) {
  .cms-about .cms-page-header {
    position: absolute;
  }
  .cms-about .cms-page-nav {
    display: none;
  }
  .cms-about .cms-page-header {
    padding-left: 92px;
  }
  .about-position,
  .about-platform,
  .about-network,
  .about-proof {
    grid-template-columns: 1fr;
  }
  .about-position figure,
  .about-platform figure,
  .about-network figure,
  .about-proof figure {
    min-height: 55vw;
  }
  .about-position > div,
  .about-platform-copy,
  .about-network > div,
  .about-proof-copy {
    padding: 70px 32px;
  }
  .about-value-grid,
  .about-timeline {
    grid-template-columns: 1fr;
  }
  .about-value-grid article {
    min-height: 320px;
    border-left: 1px solid #bdc8c2;
    border-bottom: 1px solid #bdc8c2;
  }
  .about-timeline article {
    padding-left: 30px;
    border-left: 1px solid #9cafaa;
  }
  .about-timeline article::before {
    top: 48px;
    left: -6px;
  }
  .about-stats,
  .about-footer {
    grid-template-columns: 1fr;
  }
}
