﻿/* =========================================================
   K704 新首页 index_new.css
   版心跟随站点 .common-wrapper：
   默认 1600 → 1700:1400 → 1500:1200 → 1240:99.8% → 1024:普通滚动+3vw → 768:手机头
   ========================================================= */

:root {
  --hn-navy: #002060;
  --hn-navy-2: #1e257b;
  --hn-navy-3: #1b4f9c;
  --hn-text: #1e257b;
  --hn-orange: #ff8a00;
  --hn-orange-h: #e47f12;
  --hn-teal: #1aa6a0;
  --hn-yellow: #f0b429;
  --hn-gray: #666666;
  --hn-muted: #8a93a6;
  --hn-bg: #f4f6f9;
  --hn-line: #e6ebf2;
  --hn-white: #ffffff;
  --hn-header-h: 144px;
}

/* ---------- 整屏框架 ---------- */
html:has(body.home-new) {
  overflow: hidden;
  height: 100%;
}

body.home-new {
  overflow: hidden;
  height: 100vh;
  background: var(--hn-white);
}

/* 页脚移入整屏前，先隐藏 body 下默认位置 */
body.home-new > footer.foot {
  display: none !important;
}

/* 首屏 header 也脱离文档流，避免与 fullpage 高度叠加出滚动条 */
body.home-new .head-top {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1003;
}

body.home-new header.head {
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1002;
}

body.home-new:not(.home-head-active) header.head {
  top: 44px;
  height: 100px;
}

body.home-new .home-fullpage {
  position: fixed;
  top: var(--hn-header-h);
  left: 0;
  right: 0;
  width: 100%;
  height: calc(100vh - var(--hn-header-h));
  overflow: hidden;
  background: var(--hn-white);
  z-index: 1;
}

body.home-new .home-fp-wrap {
  height: 100%;
  will-change: transform;
  transition: transform 0.9s cubic-bezier(0.77, 0, 0.175, 1);
}

/* JS 初始化前先用 CSS 撑满一屏，避免首屏内容挤在一起 */
body.home-new:not(.home-fp-ready) .home-fp-wrap {
  transition: none;
}

body.home-new .home-fp-section {
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  min-height: 0;
  flex-shrink: 0;
  height: var(--hn-vh, calc(100vh - var(--hn-header-h)));
  max-height: var(--hn-vh, calc(100vh - var(--hn-header-h)));
}

/* 页脚：整屏高度 + 背景图，内容区高度随内容 */
body.home-new .home_footer {
  display: block;
  height: var(--hn-vh, calc(100vh - var(--hn-header-h))) !important;
  min-height: var(--hn-vh, calc(100vh - var(--hn-header-h))) !important;
  max-height: var(--hn-vh, calc(100vh - var(--hn-header-h))) !important;
  overflow: hidden;
  position: relative;
  flex: none;
}

body.home-new .home_footer .foot.home-foot {
  display: flex !important;
  flex-direction: column;
  width: 100%;
  height: 100%;
  min-height: 100%;
  background: transparent;
  position: relative;
  overflow: hidden;
}

body.home-new .home_footer .home-foot__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url(../images/index_new/footer_bg.png) center / cover no-repeat;
}

body.home-new .home_footer .home-foot__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(12, 24, 58, 0.72);
}

body.home-new .home_footer .foot-list {
  position: relative;
  z-index: 1;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  box-sizing: border-box;
  padding-top: 0;
  padding-bottom: 50px;
  background: transparent !important;
}

body.home-new .home_footer .foot-list > .common-wrapper,
body.home-new .home_footer .foot-right > .common-wrapper {
  max-width: 100%;
  box-sizing: border-box;
}

body.home-new .home_footer .foot-right {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  background: rgba(0, 0, 0, 0.22) !important;
}

body.home-new .home_footer .foot-l,
body.home-new .home_footer .foot-item {
  height: auto;
}

/* 非首屏：与其他页一致使用 .head.active（height:70px） */
body.home-new.home-head-active .head-top {
  display: none;
}

body.home-new.home-head-active header.head {
  top: 0;
  height: 70px;
}

body.home-new .home-fp-dots {
  position: fixed;
  right: 18px;
  top: 50%;
  /* 下移，避免与右侧客服悬浮图标重叠 */
  transform: translateY(calc(-50% + 58px));
  z-index: 50;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

body.home-new .home-fp-dots li {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(0, 32, 96, 0.22);
  cursor: pointer;
  transition: 0.25s;
}

body.home-new .home-fp-dots li.on {
  background: var(--hn-orange);
  transform: scale(1.3);
}

/* ---------- 通用 ---------- */
.home-tag {
  display: inline-block;
  height: 40px;
  padding: 0 23px;
  width: max-content;
  display: flex;
  align-items: center;
  margin-bottom: 18px;
  border-radius: 20px;
  background: #e9eef4;
  color: var(--hn-navy-2);
  font-size: 20px;
}

.home-title {
  margin: 0 0 20px;
  color: #000;
  font-size: 45px;
  line-height: 1.2;
  font-weight: bold;
  text-transform: uppercase;
}
.home-title span {
  color: var(--hn-navy-2);
}
.home-desc {
  margin: 0;
  color: #000;
  font-size: 16px;
  line-height: 1.2em;
}

.home-sec-head {
  text-align: center;
  margin-bottom: 36px;
}

.home-sec-title {
  margin: 0 0 10px;
  color: var(--hn-navy-2);
  font-size: 42px;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1;
}

.home-sec-sub {
  margin: 0 auto;
  color: #333;
  font-size: 18px;
  line-height: 1.2em;
}

.home-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 225px;
  height: 66px;
  padding: 0 24px;
  border-radius: 10px;
  box-sizing: border-box;
  font-size: 28px;
  text-decoration: none;
  white-space: nowrap;
  transition: 0.25s;
}
.home-btn.home-btn2 {
  height: 47px;
  font-size: 26px;
  min-width: 246px;
}
.home-btn.home-btn--orange {
  background: var(--hn-orange);
  border: 2px solid var(--hn-orange);
  color: #fff;
}

.home-btn--orange:hover {
  background: var(--hn-orange-h);
  border-color: var(--hn-orange-h);
  color: #fff;
}

.home-btn.home-btn--ghost {
  background: transparent;
  border: 2px solid var(--hn-orange);
  color: var(--hn-orange);
}

.home-btn--ghost:hover {
  background: #fff;
  color: var(--hn-navy);
}

.home-btn--blue {
  min-width: 118px;
  height: 40px;
  background: var(--hn-navy);
  border: 2px solid var(--hn-navy);
  color: #fff;
}

.home-btn--blue:hover {
  background: var(--hn-navy-2);
  border-color: var(--hn-navy-2);
  color: #fff;
}

/* ---------- 1 Banner ---------- */
body.home-new .home_banner.home-fp-section {
  justify-content: center;
  align-items: center;
}

.home_banner {
  color: #fff;
  background: #04153a;
}

.home_banner__bg {
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
  background-position: right center;
  background-size: cover;
}

.home_banner__mask {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(4, 21, 58, 0.97) 0%,
    rgba(0, 32, 96, 0.9) 34%,
    rgba(0, 32, 96, 0.42) 62%,
    rgba(0, 32, 96, 0.08) 100%
  );
}

.home_banner__inner {
  position: relative;
  z-index: 2;
  /* 跟随站点 .common-wrapper 版心，勿覆盖 width/max-width */
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}

.home_banner__tag {
  display: inline-block;
  margin-bottom: 40px;
  padding: 0 30px;
  height: 50px;
  width: max-content;
  display: flex;
  align-items: center;
  border-radius: 25px;
  background: #485d66;
  color: #fff;
  font-size: 28px;
  border: 1px solid #ff8a00;
}

.home_banner__title {
  max-width: 900px;
  margin-bottom: 40px;
  color: #fff;
  font-size: 65px;
  line-height: 1.12;
  font-weight: bold;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  font-family: Arial, Helvetica, sans-serif;
}

.home_banner__desc {
  margin-bottom: 100px;
  max-width: 490px;
  color: rgb(255, 255, 255);
  font-size: 27px;
  line-height: 1.2em;
}

.home_banner__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* ---------- 2 About ---------- */
/* 两段结构一致：.home_about__block > .common-wrapper > .home_about__row */
.home_about {
  background: var(--hn-white);
  justify-content: stretch !important;
  padding: 0;
  box-sizing: border-box;
}

.home_about__block {
  flex: 1 1 50%;
  width: 100%;
  min-height: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  padding: 48px 0;
}

.home_about__block--band {
  padding: 48px 0;
  background: var(--hn-bg);
}

/* 不覆盖 .common-wrapper 的版心 width，保持与全站一致 */
.home_about__block > .common-wrapper {
  flex-shrink: 0;
}

.home_about__row {
  display: flex;
  align-items: center;
  gap: 30px;
  width: 100%;
}

.home_about__row--a .home_about__text {
  flex: 1;
  padding-right: 100px;
}

.home_about__row--a .home_about__media {
  width: 50%;
  min-width: 0;
}

.home_about__row--b .home_about__media {
  width: 50%;
  flex-shrink: 0;
}

.home_about__row--b .home_about__text {
  flex: 1;
  min-width: 0;
}

.home_about__media {
  position: relative;

  border-radius: 10px;
  background: var(--hn-bg);
  height: 28vh;
  max-height: 320px;
  min-height: 180px;
}

.home_about__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.home_about__badge {
  position: absolute;
  left: -10px;
  top: -10px;
  min-width: 132px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  height: 70px;
  background: var(--hn-orange);
  color: #fff;
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  border-radius: 10px;
}

.home_about__list {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
}

.home_about__list li {
  position: relative;
  margin-bottom: 5px;
  padding-left: 50px;
  color: #000;
  font-size: 16px;
  line-height: 1.6;
}

.home_about__list li:last-child {
  margin-bottom: 0;
}

.home_about__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 26px;
  height: 26px;
  border-radius: 6px;
  background: var(--hn-navy-2);
}

/* ---------- 3 Product Featured ---------- */
body.home-new .home_pro.home-fp-section {
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: var(--hn-white);
  gap: 0;
  padding: 0;
}

.home_pro {
  background: var(--hn-white);
  gap: 0;
  padding: 0;
}

.home_pro__main {
  flex: 0 0 auto;
  width: 100%;
  padding: 0;
  box-sizing: border-box;
}

.home_pro__main > .common-wrapper {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  box-sizing: border-box;
}

.home_pro__main .common-wrapper {
  width: 100%;
  max-width: 1400px;
}

.home_pro .home-sec-head {
  margin-bottom: 20px;
}

.home_pro__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
}

.home_pro__card {
  display: flex;
  flex-direction: column;
  background: transparent;
  border: 0;
  box-shadow: none;
  overflow: visible;
}

/* 梯形由图片本身提供，不做 clip-path / skew */
.home_pro__img {
  width: 100%;
  line-height: 0;
  overflow: hidden;
}

.home_pro__img img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.45s ease;
}

.home_pro__card:hover .home_pro__img img {
  transform: scale(1.06);
}

/* 标题、简介、按钮同一行：左文右按钮 */
.home_pro__info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 15px;
}

.home_pro__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
  flex: 1;
}

.home_pro__meta h3 {
  flex-shrink: 0;
  margin: 0;
  color: var(--hn-navy);
  font-size: 32px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.2;
}

.home_pro__meta p {
  margin: 0;
  color: #333;
  font-size: 14px;
  line-height: 1.4;
}

.home_pro__info .home-btn--pill {
  flex-shrink: 0;
  border-radius: 20px;
  min-width: 132px;
  height: 40px;
  margin-top: 0;
  font-size: 18px;
  color: #fff;
}

/* 底部小图：无背景条，与上方内容整组居中 */
.home_pro__thumbs-bar {
  --hn-thumb-gap: 20px;
  flex: 0 0 auto;
  width: 100%;
  padding: 0;
  margin-top: 20px;
  background: transparent;
  box-sizing: border-box;
}

.home_pro__thumbs {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: var(--hn-thumb-gap);
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
}

.home_pro__thumb {
  flex: 1 1 0;
  max-width: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
  background: #fff;
  border-radius: 10px;
  box-sizing: border-box;
  text-decoration: none;
  transition: box-shadow 0.25s;
  overflow: hidden;
}

.home_pro__thumb:hover {
  box-shadow: 0 6px 18px rgba(0, 32, 96, 0.12);
}

.home_pro__thumb img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.home_pro__thumb:hover img {
  transform: scale(1.08);
}

/* ---------- 4 Product Grid ---------- */
body.home-new .home_proList.home-fp-section {
  background: var(--hn-bg);
  justify-content: flex-start !important;
  align-items: center;
  padding: 36px 0 28px;
  box-sizing: border-box;
}

.home_proList > .common-wrapper {
  display: flex;
  flex-direction: column;
  flex: 1 1 0;
  min-height: 0;
  max-height: 100%;
  box-sizing: border-box;
}

.home_proList .home-sec-head {
  margin-bottom: 20px;
  flex-shrink: 0;
}

.home_proList__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, minmax(0, 1fr));
  gap: 16px 24px;
  flex: 1 1 0;
  min-height: 0;
  height: auto;
  align-content: stretch;
}

/* 整卡透明：白底只包图片，标题+购物车在下方 */
.home_proList__item {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  text-decoration: none;
  transition: box-shadow 0.25s;
  box-sizing: border-box;
}

.home_proList__item:hover {
  box-shadow: none;
}

.home_proList__img {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  min-height: 0;
  width: 100%;
  padding: 14px;
  margin-bottom: 0;
  background: #fff;
  border-radius: 10px;
  box-sizing: border-box;
  overflow: hidden;
}

.home_proList__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.45s ease;
}

.home_proList__item:hover .home_proList__img img {
  transform: scale(1.08);
}

.home_proList__info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 10px;
  flex-shrink: 0;
}

.home_proList__info h3 {
  margin: 0;
  color: #333;
  font-size: 22px;
  font-weight: 600;
  text-align: left;
  line-height: 1.35;
}

.home_proList__cart {
  flex-shrink: 0;
  width: 44px;
}

.home_proList__cart img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

/* ---------- 5 Case ---------- */
body.home-new .home_case.home-fp-section {
  background: var(--hn-white);
  justify-content: flex-start !important;
  align-items: center;
  padding: 36px 0 28px;
  box-sizing: border-box;
}

.home_case > .common-wrapper {
  display: flex;
  flex-direction: column;
  flex: 1 1 0;
  min-height: 0;
  max-height: 100%;
  box-sizing: border-box;
}

.home_case .home-sec-head {
  margin-bottom: 20px;
  flex-shrink: 0;
}

.home_case__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 16px;
  flex: 1 1 0;
  min-height: 0;
  height: auto;
  align-content: stretch;
}

.home_case__item {
  position: relative;
  display: block;
  height: 100%;
  min-height: 0;
  overflow: hidden;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(0, 32, 96, 0.1);
}

.home_case__item > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s;
}

.home_case__item:hover > img {
  transform: scale(1.06);
}

.home_case__num {
  position: absolute;
  left: 16px;
  top: 16px;
  z-index: 2;
  min-width: 60px;
  height: 38px;
  padding: 0 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 19px;
  background: #fff;
  color: var(--hn-text);
  font-size: 24px;
  font-weight: 800;
}

.home_case__body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  padding: 48px 18px 18px;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.55) 55%,
    rgba(0, 0, 0, 0.72) 100%
  );
  color: #fff;
  box-sizing: border-box;
}

.home_case__text {
  min-width: 0;
  flex: 1;
}

.home_case__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 10px;
}

.home_case__tags span {
  display: inline-block;
  width: auto;
  max-width: 100%;
  height: auto;
  padding: 2px 10px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.28);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
  white-space: nowrap;
  box-sizing: border-box;
}

.home_case__text h3 {
  margin: 0 0 6px;
  color: #fff;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.25;
}

.home_case__text p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  line-height: 1.45;
}

.home_case__btn {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--hn-orange);
  font-style: normal;
}

.home_case__btn .iconfont {
  color: #fff;
  font-size: 14px;
}

/* ---------- 6 Contact（整块在版心内） ---------- */
body.home-new .home_contact.home-fp-section {
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0;
  background: var(--hn-white);
  box-sizing: border-box;
}

.home_contact {
  padding: 0;
  background: var(--hn-white);
  box-sizing: border-box;
}

.home_contact__inner {
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-sizing: border-box;
}

.home_contact .home-sec-head {
  margin-bottom: 8px;
  flex-shrink: 0;
}

.home_contact__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  width: 100%;
}

.home_contact__stat {
  position: relative;
  min-height: 300px;
  padding: 26px 22px;
  padding-top: 15px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  color: #fff;
  border-radius: 12px;
  overflow: hidden;
}

/* 右侧点阵装饰 */
.home_contact__stat::after {
  content: "";
  position: absolute;
  right: -8px;
  top: 0;
  bottom: 0;
  width: 48%;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.28) 1.4px,
    transparent 1.4px
  );
  background-size: 11px 11px;
  pointer-events: none;
}

.home_contact__stat img {
  position: relative;
  z-index: 1;
  width: 44px;
  height: 44px;
  margin-bottom: 30px;
  object-fit: contain;
}

.home_contact__stat strong {
  position: relative;
  z-index: 1;
  margin-bottom: 10px;
  font-size: 70px;
  line-height: 1;
  font-weight: 800;
}

.home_contact__stat b {
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: 6px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.04em;
  width: 150px;
  line-height: 1.2em;
}

.home_contact__stat span {
  position: relative;
  z-index: 1;
  font-size: 18px;
  font-weight: 400;
}

.home_contact__stat--1 {
  background: #004282;
}
.home_contact__stat--2 {
  background: #0e9e8f;
}
.home_contact__stat--3 {
  background: #ef620f;
}
.home_contact__stat--4 {
  background: #dfb942;
}

.home_contact__cta {
  width: 100%;
  padding: 22px 24px;
  border-radius: 10px;
  box-sizing: border-box;
}

.home_contact__cta--blue {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: #1e257b;
  color: #fff;
}

.home_contact__cta--dark {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 20px;
  background: #000;
  color: #fff;
  padding: 28px 30px;
}

.home_contact__cta-text {
  min-width: 0;
  flex: 1;
}

.home_contact__cta-text h3 {
  margin: 0;
  color: #ff8a00;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-transform: uppercase;
}

.home_contact__cta-text p {
  margin: 0;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

/* 蓝条：胶囊按钮，深色字 */
.home_contact__view {
  flex-shrink: 0;
  min-width: 132px;
  height: 40px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  color: var(--hn-navy) !important;
}

/* 黑条：方角按钮，白字 */
.home_contact__view-lg {
  flex-shrink: 0;
  align-self: stretch;
  min-width: 220px;
  height: auto;
  min-height: 56px;
  padding: 0 22px;
  border-radius: 8px;
  font-size: 26px;

  color: #fff !important;
}

.home_contact__certs {
  display: flex;
  align-items: stretch;
  gap: 12px;
  margin-top: 50px;
}

.home_contact__cert {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  padding: 18px 12px;
  background: #3a4251;
  border-radius: 10px;
  box-sizing: border-box;
}

.home_contact__cert img {
  width: 35px;
  display: block;
  flex-shrink: 0;
}

.home_contact__cert-text {
  min-width: 0;
}

.home_contact__cert-text strong {
  display: block;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
}

.home_contact__cert-text span {
  display: block;
  margin-top: 4px;
  color: rgb(255, 255, 255);
  font-size: 7px;
  line-height: 1.3;
}

/* ---------- 7 News（左右等高；图文紧贴无间距） ---------- */
body.home-new .home_news.home-fp-section {
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0;
  background: var(--hn-white);
  box-sizing: border-box;
}

.home_news {
  background: var(--hn-white);
  padding: 0;
  box-sizing: border-box;
}

.home_news > .common-wrapper {
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

.home_news .home-sec-head {
  margin-bottom: 28px;
  flex-shrink: 0;
}

/* 左右两列等高，中间细缝 */
.home_news__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  align-items: stretch;
  background: #fff;
  margin-top: 40px;
}

.home_news__featured,
.home_news__item {
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  background: #f5f5f5;
}

/* 左栏：上图下文，零间距 */
.home_news__featured {
  display: flex;
  flex-direction: column;
  height: 615px;
  gap: 0;
}

.home_news__featured .home_news__img {
  height: 300px;
}

.home_news__featured .home_news__body {
  padding: 20px;
  flex: 1;
}

/* 右栏：两项上下排列，项间细缝；项内图文零间距 */
.home_news__side {
  display: flex;
  flex-direction: column;
  gap: 15px;
  min-height: 0;
  height: 100%;
}

.home_news__item {
  flex: 1 1 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  height: auto;
}

.home_news__img {
  height: 300px;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: #d9e0ea;
  line-height: 0;
}

.home_news__img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  vertical-align: top;
  transition: transform 0.45s ease;
}

.home_news__featured:hover .home_news__img img,
.home_news__item:hover .home_news__img img {
  transform: scale(1.06);
}

.home_news__body {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-width: 0;
  min-height: 0;
  margin: 0;
  padding: 28px 28px 56px;
  box-sizing: border-box;
  background: #f5f5f5;
}

.home_news__body time {
  display: block;
  margin-bottom: 14px;
  color: #666;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.2;
}

.home_news__body h3 {
  margin: 0 0 15px;
  color: #000;
  font-size: 24px;
  line-height: 1.2em;
  font-weight: 700;
}

.home_news__featured .home_news__body h3 {
  font-size: 22px;
}

.home_news__body p {
  margin: 0;
  color: #000;
  font-size: 18px;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.home_news__body2 p {
  -webkit-line-clamp: 2;
}
.home_news__featured .home_news__body p {
  -webkit-line-clamp: 4;
}

/* 左下角橙色圆点 */
.home_news__more {
  position: absolute;
  left: 20px;
  bottom: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--hn-orange);
}

.home_news__featured .home_news__more {
  left: 20px;
  bottom: 25px;
}

/* ---------- 入场：对齐老站 ScrollReveal ---------- */
.hn-sr {
  will-change: opacity, transform;
}

body.home-new .home_footer .hn-sr {
  opacity: 0;
}

body.home-new .home_footer .foot-right {
  opacity: 1;
}

/* 首页专用页脚样式：改内容 foot_home.html，改样式用 .home-foot 选择器 */
body.home-new .home-foot-intro {
  margin: 16px 0 20px;
}

body.home-new .home-foot-intro__sub {
  margin: 0;
  color: #fff;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 400;
}

body.home-new .home-foot-intro__title {
  margin: 10px 0;
  color: #fff;
  font-size: 30px;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

body.home-new .home-foot-intro__title span {
  color: #e60012;
}

/* =========================================================
   响应式：与站点 common-wrapper 断点对齐
   ========================================================= */

@media (max-width: 1700px) {
  .home_about__row {
    gap: 48px;
  }
}

@media (max-width: 1500px) {
  .home_about__row {
    gap: 36px;
  }

  .home_about__badge {
    min-width: 110px;
    padding: 14px 16px;
  }

  .home_pro__cards {
    gap: 30px;
  }

  .home_pro__thumbs {
    gap: 18px;
  }

  .home_contact__stat {
    min-height: 286px;
  }
}

@media (max-width: 1240px) {
  .home_about__row {
    gap: 28px;
  }

  .home_about__row--a .home_about__text,
  .home_about__row--b .home_about__media {
    width: 42%;
  }

  .home_pro__cards,
  .home_pro__thumbs {
    gap: 16px;
  }

  .home_proList__grid,
  .home_case__grid {
    gap: 16px;
  }

  .home_contact__certs {
    flex-wrap: wrap;
  }

  .home_contact__cert {
    flex: 1 1 calc(50% - 8px);
    min-width: 200px;
  }

  .home_contact__view-lg {
    width: 100%;
    max-width: 220px;
    min-height: 48px;
  }

  .home_news__body {
    padding: 22px 20px 48px;
  }

  .home_news__featured .home_news__body {
    padding: 28px 28px 56px;
  }

  .home_news__more {
    left: 20px;
  }

  .home_news__featured .home_news__more {
    left: 28px;
  }
}

/* 平板及以下：取消整屏，普通纵向滚动 + 布局重排 */
@media (max-width: 1024px) {
  html:has(body.home-new),
  html:has(body.home-new-mobile) {
    overflow: auto;
    height: auto;
  }

  body.home-new,
  body.home-new-mobile {
    overflow: auto;
    height: auto;
  }

  body.home-new .head-top,
  body.home-new header.head,
  body.home-new:not(.home-head-active) header.head,
  body.home-new.home-head-active header.head {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    width: 100%;
    height: auto;
    max-width: none;
    margin: 0;
    box-shadow: none;
  }

  body.home-new .head-top {
    z-index: 1003;
  }

  body.home-new header.head {
    z-index: 1002;
    background: #fff;
    overflow: visible;
  }

  body.home-new.home-head-active .head-top {
    display: block !important;
  }

  body.home-new.home-head-active header.head {
    top: auto !important;
    height: auto !important;
  }

  body.home-new .head-nav.active {
    overflow: visible;
    z-index: 1010;
  }

  body.home-new .head-nav.active > ul {
    z-index: 1011;
  }

  body.home-new .home-fullpage {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    width: auto !important;
    height: auto !important;
    overflow: visible !important;
    z-index: auto;
    padding-top: 0;
    box-sizing: border-box;
  }

  body.home-new .home-fp-wrap {
    height: auto;
    transform: none !important;
    transition: none;
  }

  body.home-new .home-fp-section {
    height: auto !important;
    max-height: none !important;
    min-height: 0;
    overflow: visible;
    padding: 48px 0;
    justify-content: flex-start;
  }

  body.home-new .home_banner.home-fp-section {
    padding-top: 0;
    padding-bottom: 48px;
  }

  body.home-new .home_footer {
    min-height: 100vh;
    height: auto !important;
    max-height: none !important;
    overflow: visible;
    padding: 0;
  }

  body.home-new .home_footer .foot.home-foot {
    min-height: 100vh;
    height: auto;
  }

  body.home-new .home_footer .foot-list {
    justify-content: flex-end;
    padding-top: 0;
    padding-bottom: 50px;
  }

  body.home-new .home_footer .foot {
    height: auto;
  }

  body.home-new .home-fp-dots {
    display: none !important;
  }

  body.home-new .hn-sr {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  /* 1024 下全站 common-wrapper 仅 99.8%，首页补 3vw 左右留白恢复版心 */
  body.home-new .home_banner__inner,
  body.home-new .home_about__block > .common-wrapper,
  body.home-new .home_pro__main > .common-wrapper,
  body.home-new .home_proList > .common-wrapper,
  body.home-new .home_case > .common-wrapper,
  body.home-new .home_contact__inner,
  body.home-new .home_news > .common-wrapper,
  body.home-new .home_footer .foot-list > .common-wrapper,
  body.home-new .home_footer .foot-right > .common-wrapper {
    width: 100%;
    max-width: 100%;
    padding-left: 3vw;
    padding-right: 3vw;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
  }

  body.home-new .head-top .common-wrapper,
  body.home-new header.head .head-wrapper {
    width: 100%;
    max-width: 100%;
    padding-left: 3vw;
    padding-right: 3vw;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
  }

  body.home-new .home_banner {
    padding: 0;
    justify-content: center;
  }

  body.home-new .home_banner.home-fp-section {
    align-items: center;
  }

  body.home-new .home_contact.home-fp-section {
    display: block !important;
    padding: 48px 0;
  }

  body.home-new .home_contact__inner {
    gap: 16px;
  }

  body.home-new .home_news.home-fp-section {
    display: block !important;
    padding: 48px 0;
  }

  body.home-new .home_news > .common-wrapper {
    height: auto;
    max-height: none;
  }

  body.home-new .home_pro.home-fp-section {
    display: flex !important;
    flex-direction: column;
    justify-content: flex-start;
    grid-template-rows: none;
    padding: 48px 0 0;
  }

  body.home-new .home_pro {
    gap: 0;
    padding-bottom: 0;
  }

  .home_pro__main {
    display: block;
    padding: 0 0 24px;
  }

  .home_pro__thumbs-bar {
    grid-row: auto;
  }

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

  .home_pro__info {
    flex-wrap: wrap;
  }

  .home_pro__meta {
    flex-wrap: wrap;
  }

  .home_pro__thumbs {
    flex-wrap: wrap;
  }

  .home_pro__thumb {
    flex: 1 1 calc(33.333% - 14px);
    max-width: calc(33.333% - 14px);
  }

  .home_about__block {
    flex: none;
    padding: 40px 0;
  }

  .home_about__media {
    max-height: none;
    min-height: 0;
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .home_about__row,
  .home_about__row--b {
    flex-direction: column;
    gap: 24px;
  }

  .home_about__row--a .home_about__text,
  .home_about__row--a .home_about__media,
  .home_about__row--b .home_about__text,
  .home_about__row--b .home_about__media {
    width: 100%;
  }

  .home_about__row--b .home_about__media {
    order: -1;
  }

  .home_proList__grid,
  .home_case__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .home_case__grid {
    grid-template-rows: none;
    height: auto;
    flex: none;
  }

  .home_case__item {
    height: auto;
    min-height: 240px;
  }

  .home_contact__stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .home_contact__cta--blue {
    flex-direction: column;
    align-items: flex-start;
  }

  .home_news__layout {
    grid-template-columns: 1fr;
    height: auto;
    flex: none;
    gap: 2px;
  }

  .home_news__featured {
    min-height: 480px;
  }

  .home_news__side {
    height: auto;
  }

  .home_news__item {
    min-height: 220px;
  }
}

/* 手机：进一步适配 */
@media (max-width: 768px) {
  /* 手机端头部与全站 style.css 保持一致 */
  body.home-new .head-top {
    display: none !important;
  }

  body.home-new header.head,
  body.home-new:not(.home-head-active) header.head,
  body.home-new.home-head-active header.head {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: none;
    margin: 0;
    height: 50px;
    box-shadow: none;
    z-index: 999;
  }

  body.home-new.home-head-active .head-top {
    display: none !important;
  }

  body.home-new .home-fullpage {
    padding-top: 50px;
  }

  body.home-new .home_banner {
    min-height: 60vh;
    padding: 64px 0;
  }

  body.home-new .home_banner.home-fp-section {
    align-items: center;
  }

  .home_banner__title {
    font-size: 42px;
  }

  .home_banner__desc {
    font-size: 20px;
  }

  .home-sec-title {
    font-size: 32px;
  }

  .home_banner__desc {
    margin-bottom: 28px;
  }

  .home_banner__tag {
    margin-bottom: 16px;
    padding: 0 12px;
    height: 28px;
    border-radius: 14px;
    font-size: 13px;
  }

  .home_banner__btns {
    gap: 8px;
  }

  .home_banner__btns .home-btn {
    min-width: 0;
    width: auto;
    height: 40px;
    padding: 0 18px;
    font-size: 15px;
    border-radius: 8px;
  }

  .home-sec-head {
    margin-bottom: 24px;
  }

  .home_pro__thumbs {
    flex-wrap: wrap;
    gap: 12px;
    --hn-thumb-gap: 12px;
    padding: 12px;
  }

  .home_pro__thumb {
    flex: 1 1 calc(50% - 6px);
    max-width: calc(50% - 6px);
  }

  .home_proList__grid,
  .home_case__grid {
    grid-template-columns: 1fr;
  }

  .home_case__grid {
    grid-template-rows: none;
  }

  .home_case__item {
    min-height: 220px;
    height: auto;
  }

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

  .home_contact__stat {
    min-height: 160px;
    padding: 22px 16px;
  }

  .home_contact__stat img {
    width: 40px;
    height: 40px;
  }

  .home_contact__certs {
    flex-direction: column;
  }

  .home_contact__cert {
    width: 100%;
    flex: none;
  }

  .home_contact__view-lg {
    width: 100%;
    max-width: none;
    height: 52px;
  }

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

  .home_news__item .home_news__img {
    min-height: 180px;
  }

  .home_news__featured {
    min-height: 420px;
  }
}

@media (max-width: 480px) {
  .home_banner__btns {
    flex-direction: column;
    align-items: flex-start;
  }

  .home_banner__btns .home-btn {
    min-width: 148px;
    max-width: 100%;
  }

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