/* 全局基础 */
body {
  margin: 0;
  font-family: Inter, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  position: relative;
}

/* ===== base ===== */
.site-header,
.site-header *{
  box-sizing: border-box;
}

.geo-visually-hidden{
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.site-header{
  position: sticky;
  top: 0;
  z-index: 2000;
  background: #fff;
  border-bottom: 1px solid #eaeaea;
}

.header-container{
  width: min(1360px, 94vw);
  margin: 0 auto;
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  overflow: visible;
  position: relative; /* 新增：给 mega menu 一个真正稳定的定位参考 */
}

.logo{
  flex: 0 0 auto;
}

.logo img{
  width: 140px;
  height: auto;
  display: block;
}

/* ===== desktop nav ===== */

.main-nav{
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  overflow: visible;
  position: static; /* 新增 */
}

.main-nav > a,
.nav-item > a{
  font-size: 16px;
  color: #333;
  line-height: 88px;
  display: inline-block;
  white-space: nowrap;
  text-decoration: none;
}

.nav-item.has-dropdown{
  position: relative;
}

.nav-item.has-dropdown > a{
  cursor: pointer;
}

/* 只把第一个带 mega-menu 的 Products 改成相对 header-container 定位 */
.main-nav > .nav-item.has-dropdown:first-child{
  position: static;
}
/* ===== dropdown ===== */
.dropdown-menu{
  position: absolute;
  top: calc(100% - 8px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 260px;
  width: max-content;
  max-width: min(92vw, 340px);
  background: #fff;
  box-shadow: 0 12px 30px rgba(0,0,0,.08);
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: .2s ease;
  z-index: 1200;
}

.dropdown-menu a{
  display: block;
  padding: 14px 22px;
  font-size: 16px;
  color: #444;
  line-height: 1.45;
  white-space: normal;
  word-break: break-word;
  text-decoration: none;
}

.dropdown-menu a:hover{
  background: #f7f7f7;
}

.nav-item.has-dropdown:hover .dropdown-menu{
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* ===== mega menu ===== */
.mega-menu{
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: min(1280px, calc(100vw - 32px));
  max-width: calc(100vw - 32px);
  background: #fff;
  box-shadow: 0 12px 30px rgba(0,0,0,.08);
  padding: 28px 26px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: .2s ease;
  z-index: 1300;
  overflow: hidden;
}

.has-dropdown:hover .mega-menu{
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mega-inner{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 24px;
  width: 100%;
}

.mega-col{
  min-width: 0;
}

.mega-title{
  font-size: 15px;
  font-weight: 600;
  color: #1e88ff;
  margin-bottom: 12px;
  line-height: 1.4;
  word-break: break-word;
}

.mega-title-gap{
  margin-top: 18px;
}

.mega-col a{
  display: block;
  font-size: 14px;
  color: #555;
  line-height: 1.55;
  margin-bottom: 10px;
  text-decoration: none;
  white-space: normal;
  word-break: break-word;
}

.mega-col a:hover{
  color: #1677ff;
}

.site-header,
.header-container,
.main-nav,
.nav-item.has-dropdown{
  overflow: visible;
}
/* ===== header actions ===== */
.header-actions{
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
}

.search-btn{
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  background: #fff;
  cursor: pointer;
}

.search-btn img{
  width: 24px;
  height: 24px;
}

.lang-btn{
  height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1.5px solid #1e88ff;
  color: #1e88ff;
  background: #fff;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  cursor: pointer;
}

.icon-wrapper{
  position: relative;
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.icon{
  width: 20px;
  height: 20px;
  display: block;
}

.icon-white{
  display: none;
}

.lang-btn:hover{
  background: #1e88ff;
  color: #fff;
}

.lang-btn:hover .icon-blue{
  display: none;
}

.lang-btn:hover .icon-white{
  display: block;
}

.lang-btn-text{
  font-size: 15px;
  line-height: 1;
}

/* ===== menu button ===== */
.menu-btn{
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid #1e88ff;
  border-radius: 50%;
  background: #fff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  padding: 0;
  cursor: pointer;
  flex-shrink: 0;
}

.menu-btn span{
  display: block;
  width: 18px;
  height: 2.5px;
  background: #1e88ff;
  border-radius: 2px;
}

/* ===== mobile menu ===== */
.mobile-menu-overlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.35);
  z-index: 3000;
  display: none;
}

.mobile-menu-overlay.is-open{
  display: block;
}

.mobile-menu-panel{
  position: absolute;
  top: 0;
  right: 0;
  width: min(88vw, 360px);
  height: 100%;
  background: #fff;
  box-shadow: -8px 0 30px rgba(0,0,0,.12);
  overflow-y: auto;
  padding: 20px 18px 28px;
}

.mobile-menu-top{
  display: flex;
  justify-content: flex-end;
  margin-bottom: 10px;
}

.mobile-menu-close{
  border: none;
  background: none;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  color: #333;
}

.mobile-nav{
  display: flex;
  flex-direction: column;
}

.mobile-nav > a,
.mobile-nav summary{
  display: block;
  padding: 15px 0;
  font-size: 17px;
  color: #222;
  text-decoration: none;
  border-bottom: 1px solid #eee;
  cursor: pointer;
  list-style: none;
}

.mobile-nav details{
  border-bottom: 1px solid #eee;
}

.mobile-nav details summary{
  border-bottom: none;
}

.mobile-nav summary::-webkit-details-marker{
  display: none;
}

.mobile-submenu{
  padding: 0 0 10px 0;
}

.mobile-submenu a{
  display: block;
  padding: 10px 0 10px 14px;
  font-size: 15px;
  color: #555;
  text-decoration: none;
}

/* ===== search overlay ===== */
.search-overlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.35);
  z-index: 2600;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding-top: 110px;
}

.search-overlay.is-open{
  display: flex;
}

.search-bar{
  width: min(720px, 92vw);
  min-height: 64px;
  background: #fff;
  border-radius: 999px;
  display: flex;
  align-items: center;
  padding: 0 18px;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,.12);
}

.search-bar-icon img{
  width: 22px;
  height: 22px;
}

.search-bar input{
  flex: 1 1 auto;
  border: none;
  outline: none;
  font-size: 16px;
  background: transparent;
}

.search-close{
  font-size: 22px;
  color: #666;
  background: none;
  border: none;
  cursor: pointer;
}

/* ===== region modal ===== */
.modal-overlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.35);
  z-index: 2800;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal-overlay.is-open{
  display: flex;
}

.modal-panel{
  position: relative;
  width: min(980px, 96vw);
  max-height: 88vh;
  overflow-y: auto;
  background: #fff;
  border-radius: 20px;
  padding: 32px 28px;
  box-shadow: 0 16px 40px rgba(0,0,0,.12);
}

.modal-close{
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 28px;
  color: #666;
  background: none;
  border: none;
  cursor: pointer;
}

.modal-title{
  font-size: 28px;
  font-weight: 700;
  color: #111;
  margin-bottom: 24px;
}

.region-section + .region-section{
  margin-top: 24px;
}

.region-title{
  font-size: 18px;
  font-weight: 700;
  color: #222;
  margin-bottom: 14px;
}

.region-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.region-item{
  min-height: 62px;
  padding: 14px 16px;
  border: 1px solid #e8e8e8;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: #333;
  text-decoration: none;
}

.region-item:hover{
  border-color: #1e88ff;
  color: #1e88ff;
}

.region-lang{
  color: #888;
  font-size: 14px;
}

/* ===== responsive ===== */

/* 1600 以下：轻微收紧 header 间距 */
@media (max-width: 1600px){
  .header-container{
    width: min(1360px, 96vw);
  }

  .main-nav{
    gap: 32px;
  }

  .mega-menu{
    width: min(1240px, calc(100vw - 24px));
    max-width: calc(100vw - 24px);
    padding: 26px 22px;
  }

  .mega-inner{
    grid-template-columns: repeat(auto-fit, minmax(145px, 1fr));
    gap: 22px;
  }
}

/* 1440 以下：继续收紧，避免大面板顶边 */
@media (max-width: 1440px){
  .main-nav{
    gap: 28px;
  }

  .main-nav > a,
  .nav-item > a{
    font-size: 15px;
  }

  .mega-menu{
    width: min(1180px, calc(100vw - 20px));
    max-width: calc(100vw - 20px);
    padding: 24px 20px;
  }

  .mega-inner{
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 20px;
  }

  .mega-title{
    font-size: 14px;
  }

  .mega-col a{
    font-size: 13px;
    line-height: 1.5;
  }
}

/* 1366 以下：常见笔记本宽度重点优化 */
@media (max-width: 1366px){
  .header-container{
    width: min(1320px, 96vw);
    gap: 18px;
  }

  .main-nav{
    gap: 24px;
  }

  .lang-btn{
    padding: 0 16px;
  }

  .mega-menu{
    width: calc(100vw - 18px);
    max-width: calc(100vw - 18px);
    padding: 22px 18px;
  }

  .mega-inner{
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 18px;
  }
}

/* 1280 以下：列数开始减少，防止横向爆开 */
@media (max-width: 1280px){
  .main-nav{
    gap: 20px;
  }

  .main-nav > a,
  .nav-item > a{
    font-size: 15px;
  }

  .mega-menu{
    width: calc(100vw - 16px);
    max-width: calc(100vw - 16px);
    padding: 20px 16px;
  }

  .mega-inner{
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
  }

  .mega-title{
    font-size: 14px;
    line-height: 1.35;
  }

  .mega-col a{
    font-size: 13px;
    line-height: 1.45;
    margin-bottom: 8px;
  }
}

/* 1180 以下：再减列数，桌面版最后安全区 */
@media (max-width: 1180px){
  .header-container{
    gap: 14px;
  }

  .main-nav{
    gap: 16px;
  }

  .lang-btn{
    max-width: 220px;
    padding: 0 14px;
  }

  .lang-btn-text{
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mega-menu{
    width: calc(100vw - 14px);
    max-width: calc(100vw - 14px);
    padding: 18px 14px;
  }

  .mega-inner{
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
  }
}

/* 1024 以下：进入平板/移动逻辑，隐藏桌面导航 */
@media (max-width: 1024px){
  .main-nav{
    display: none;
  }

  .menu-btn{
    display: inline-flex;
  }

  .header-container{
    min-height: 78px;
    gap: 14px;
  }

  .logo img{
    width: 120px;
  }

  .lang-btn{
    max-width: 240px;
    padding: 0 14px;
  }

  .lang-btn-text{
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mega-menu,
  .dropdown-menu{
    display: none !important;
  }
}

/* 768 以下：手机 */
@media (max-width: 768px){
  .header-container{
    width: min(94vw, 100%);
  }

  .logo img{
    width: 112px;
  }

  .header-actions{
    gap: 8px;
  }

  .lang-btn{
    width: 42px;
    height: 42px;
    border-radius: 50%;
    padding: 0;
    justify-content: center;
    gap: 0;
  }

  .lang-btn-text{
    display: none;
  }

  .search-btn,
  .menu-btn{
    width: 42px;
    height: 42px;
  }

  .search-overlay{
    padding-top: 90px;
  }

  .search-bar{
    min-height: 56px;
  }

  .modal-panel{
    border-radius: 16px;
    padding: 24px 18px;
  }

  .modal-title{
    font-size: 24px;
    padding-right: 30px;
  }

  .region-grid{
    grid-template-columns: 1fr;
  }
}


/* =========================
   ✅ Hero：视频首屏（响应式增强版）
   ========================= */

/* ========== HERO 基础层 ========== */
.hero.hero--feature-blog {
  position: relative;
  min-height: 90svh;
  color: #fff;
  overflow: hidden;
}

.hero-media,
.hero-video,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      rgba(7, 12, 22, 0.58) 0%,
      rgba(7, 12, 22, 0.30) 42%,
      rgba(7, 12, 22, 0.52) 100%
    );
}

/* ========== CONTENT SHELL ========== */
.hero-shell {
  position: relative;
  z-index: 2;
  width: min(1740px, calc(100% - 48px));
  margin: 0 auto;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(620px, 1.1fr);
  align-items: stretch;
  gap: clamp(20px, 2vw, 40px);
  box-sizing: border-box;
}

/* ========== 左侧文案 ========== */
.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding:
    clamp(0px, 12vh, 5px)
    0
    clamp(72px, 10vh, 120px)
    clamp(8px, 1vw, 12px);
  min-width: 0;
  transform: translateY(-80px);
}

.hero-copy h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(14px, 3vw, 54px);
  line-height: 1.02;
  font-weight: 700;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.hero-copy p {
  margin: 22px 0 0;
  max-width: 680px;
  font-size: clamp(15px, 1.1vw, 20px);
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.92);
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  margin-top: 26px;
  min-width: 116px;
  height: 44px;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  backdrop-filter: blur(2px);
  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
  box-sizing: border-box;
}

.hero-cta:hover {
  background: rgba(255,255,255,0.96);
  color: #111;
  transform: translateY(-1px);
}

/* ========== 右侧精选文章 ========== */
.hero-featured {
  position: relative;
  align-self: stretch;
  min-height: 100%;
  height: calc(100svh - 8px);
  max-height: calc(100svh - 8px);
  margin-left: 0;
  padding: 18px 18px 16px;
  display: flex;
  flex-direction: column;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(
      180deg,
      rgba(17, 24, 36, 0.36) 0%,
      rgba(13, 19, 30, 0.28) 42%,
      rgba(10, 16, 26, 0.40) 100%
    );
  backdrop-filter: blur(12px);
  overflow: hidden;
  box-sizing: border-box;
}

.hero-featured__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
  flex: 0 0 auto;
}

.hero-featured__eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.60);
}

.hero-featured__head h2 {
  margin: 0;
  font-size: clamp(26px, 2vw, 36px);
  line-height: 1.08;
  font-weight: 600;
  color: #fff;
}

/* 核心修正：不再用 margin-right:210px */
.hero-featured__all {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  align-self: flex-start;
  margin: 0;
  padding-top: 4px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.25s ease, transform 0.25s ease, opacity 0.25s ease;
}

.hero-featured__all:hover {
  color: #fff;
  transform: translateX(2px);
}

/* ========== 列表 ========== */
.hero-featured {
  height: 100svh;
  max-height: 100svh;
}

.hero-featured__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  width: 100%;
  min-width: 0;
  padding-top: 0;

  height: calc(100svh - 120px);
  min-height: 0;
  overflow-y: auto;
  overflow-x: hidden;

  padding-right: 10px;
  padding-bottom: 140px;
  box-sizing: border-box;
  scrollbar-gutter: stable;
}

.hero-featured__list {
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.35) rgba(255,255,255,0.08);
}

.hero-featured__list::-webkit-scrollbar {
  width: 8px;
}

.hero-featured__list::-webkit-scrollbar-track {
  background: rgba(255,255,255,0.08);
  border-radius: 999px;
}

.hero-featured__list::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.28);
  border-radius: 999px;
}

.hero-featured__list::-webkit-scrollbar-thumb:hover {
  background: rgba(255,255,255,0.42);
}
/* ========== 卡片 ========== */
.hero-article-card {
  display: block;
  padding: 22px 20px;
  border-radius: 18px;
  text-decoration: none;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(17, 25, 37, 0.78), rgba(17, 25, 37, 0.66));
  border: 1px solid rgba(255,255,255,0.08);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    background-color 0.25s ease,
    box-shadow 0.25s ease;
  box-sizing: border-box;
}

.hero-article-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255,255,255,0.18);
  box-shadow: 0 10px 26px rgba(0,0,0,0.20);
  background:
    linear-gradient(180deg, rgba(17, 25, 37, 0.78), rgba(17, 25, 37, 0.66));
}

.hero-article-card__tag {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 12px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.58);
}

.hero-article-card h3 {
  margin: 0;
  font-size: clamp(18px, 1.2vw, 24px);
  line-height: 1.38;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

.hero-article-card p {
  margin: 12px 0 0;
  font-size: clamp(13px, 0.95vw, 15px);
  line-height: 1.75;
  color: rgba(255,255,255,0.82);
}

.hero-article-card__more {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  padding-bottom: 10px;
  font-size: 14px;
  color: #fff;
}

.hero-article-card__more::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 52px;
  height: 3px;
  border-radius: 999px;
  background: #1ea7ff;
}

/* ========== 大屏双列 ========== */
@media (min-width: 1500px) {
  .hero-featured__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }
}

/* ========== 中大桌面 ========== */
@media (min-width: 1200px) and (max-width: 1499px) {
  .hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding:
    clamp(0px, 12vh, 5px)
    0
    clamp(72px, 10vh, 120px)
    clamp(8px, 1vw, 12px);
  min-width: 0;
  transform: translateY(-210px);
}
  
  .hero-shell {
    grid-template-columns: minmax(0, 1fr) minmax(380px, 0.95fr);
  }

  .hero-featured__list {
    grid-template-columns: 1fr;
  }
}

/* ========== 小桌面 / 平板横屏 ========== */
@media (min-width: 768px) and (max-width: 1199px) {
  
  .hero.hero--feature-blog {
  position: relative;
  min-height: 92svh;
  color: #fff;
  overflow: hidden;
}
  .hero-shell {
    width: min(1380px, calc(100% - 30px));
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 0;
    margin-top: 160px;
  }

  .hero-copy {
    padding: 120px 32px 0;
    justify-content: flex-start;
  }

  .hero-copy h1 {
    max-width: 760px;
    font-size: clamp(34px, 5vw, 48px);
  }

  .hero-copy p {
    max-width: 760px;
    font-size: 16px;
  }

  .hero-featured {
    min-height: 200px;
    height: 400px;
    max-height: 700px;
    margin-top: 20px;
    padding: 0 24px 0;
    border-left: none;
    background:
      linear-gradient(
        180deg,
        rgba(17, 24, 36, 0.18) 0%,
        rgba(13, 19, 30, 0.18) 42%,
        rgba(10, 16, 26, 0.28) 100%
      );
  }

  .hero-featured__head {
    margin-bottom: 14px;
  }

  .hero-featured__eyebrow {
    margin-bottom: 6px;
    font-size: 11px;
  }

  .hero-featured__head h2 {
    font-size: 24px;
    line-height: 1.1;
  }

  .hero-featured__all {
    font-size: 14px;
  }

  .hero-featured__list {
    display: flex;
    flex-wrap: nowrap;
    gap: 16px;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 10px;
    padding-right: 6px;
    box-sizing: border-box;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .hero-article-card {
    flex: 0 0 420px;
    min-width: 420px;
    padding: 18px 18px 16px;
    border-radius: 18px;
    min-height: 290px;
    box-sizing: border-box;
    scroll-snap-align: start;
  }

  .hero-article-card__tag {
    margin-bottom: 10px;
    font-size: 11px;
  }

  .hero-article-card h3 {
    font-size: 18px;
    line-height: 1.35;
    margin: 0 0 10px;
  }

  .hero-article-card p {
    font-size: 14px;
    line-height: 1.7;
    margin: 0 0 12px;
  }

  .hero-article-card__more {
    font-size: 14px;
    margin-top: 0;
  }

  .hero-featured__list::-webkit-scrollbar {
    height: 8px;
  }

  .hero-featured__list::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.08);
    border-radius: 999px;
  }

  .hero-featured__list::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.28);
    border-radius: 999px;
  }

  .hero-featured__list::-webkit-scrollbar-thumb:hover {
    background: rgba(255,255,255,0.42);
  }
}




@media (max-width: 767px) {
  .hero.hero--feature-blog {
    position: relative;
    min-height: 103svh;
    color: #fff;
    overflow: visible;
  }

  .hero-shell {
    width: calc(100% - 24px);
    display: grid;
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 0;
    margin-top: 80px;
  }

  .hero-copy {
    padding: 72px 4px 0;
    justify-content: flex-start;
  }

  .hero-copy h1 {
    max-width: 100%;
    font-size: clamp(16px, 10vw, 27px);
    line-height: 1.2;
    margin: 0 0 14px;
  }

  .hero-copy p {
    max-width: 100%;
    font-size: 14px;
    line-height: 1.8;
    margin: 0 0 20px;
  }

  .hero-featured {
    min-height: auto;
    height: auto;
    max-height: none;
    margin-top: -26px;
    padding: 0;
    border-left: none;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .hero-featured__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
    padding: 0 4px;
  }

  .hero-featured__eyebrow {
    margin-bottom: 6px;
    font-size: 11px;
  }

  .hero-featured__head h2 {
    font-size: 18px;
    line-height: 1.1;
    margin: 0;
  }

  .hero-featured__all {
    font-size: 14px;
    flex-shrink: 0;
  }

  .hero-featured__list {
    display: flex;
    flex-wrap: nowrap;
    gap: 14px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0px 4px 12px;
    box-sizing: border-box;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,0.45) rgba(255,255,255,0.12);

    height: auto !important;
    max-height: none !important;
    min-height: 0;
    align-items: flex-start; /* 关键：不要默认 stretch */
    padding-bottom: 8px;
  }

  .hero-article-card {
    flex: 0 0 88%;
    min-width: 88%;
    padding: 5px 18px 22px;
    border-radius: 20px;
    min-height: 270px;
    max-height: 270px;
    overflow: hidden;
    box-sizing: border-box;
    scroll-snap-align: start;
    overflow-y: auto;  /* Enable vertical scrolling */
  }

  .hero-article-card__tag {
    margin-bottom: 10px;
    font-size: 11px;
  }

  .hero-article-card h3 {
    font-size: 18px;
    line-height: 1.35;
    margin: 0 0 12px;
  }

  .hero-article-card p {
    font-size: 14px;
    line-height: 1.75;
    margin: 0 0 16px;
  }

  .hero-article-card__more {
    font-size: 14px;
    margin-top: 0;
  }

  .hero-featured__list::-webkit-scrollbar {
    height: 6px;
  }

  .hero-featured__list::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.12);
    border-radius: 999px;
  }

  .hero-featured__list::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.42);
    border-radius: 999px;
  }

  .hero-featured__list::-webkit-scrollbar-thumb:hover {
    background: rgba(255,255,255,0.58);
  }
}



/* =========================
   ✅ Cover Section（保持你“盖住 hero”逻辑）
   + 移动端兼容
   ========================= */

.cover-section{
  position: relative;
  z-index: 2;
  background: #F7F7F7;

  margin-top: 10px;
  padding-top: 0px;

  padding-bottom: 140px;
}

.cover-head{
  text-align:center;
  padding: 68px 20px 28px;
}

.cover-title{
  margin:0;
  font-size: clamp(22px, 2.6vw, 40px);
  font-weight: 600;
  color:#222;
  letter-spacing: 0px;
}

.cover-underline{
  width: 48px;
  height: 3px;
  background: #1e88ff;
  margin: 14px auto 0;
  border-radius: 2px;
}


/* =========================
   ✅ 响应式断点（重点）
   ========================= */

/* 1200 以下：收紧内容，不要固定右侧留白 */
@media (max-width: 1200px){
  :root{ --hero-pad-x: 22px; }
  .hero-content p{ max-width: 680px; }
}

/* 992 以下：文字更集中一点，行距略增 */
@media (max-width: 992px){
  :root{ --hero-pad-x: 20px; }
  .hero-overlay{ background: rgba(0,0,0,.32); }
  .hero-content p{ max-width: 620px; }
}

/* 768 以下：移动端核心策略：居中 + 文字区域变窄 */
@media (max-width: 768px){
  :root{ --header-height: 72px; --hero-pad-x: 18px; }

  .hero{
    min-height: 560px;
  }

  .hero-content{
    align-items: left;
    text-align: left;
  }

  .hero-content p{
    max-width: 50ch; /* ✅ 控制中文/英文混排时的舒适行宽 */
  }

  .hero-content h1{
    font-size: clamp(24px, 6.5vw, 34px);
    line-height: 1.15;
  }

  .hero-cta{
    margin-top: 0px;
    padding: 12px 26px;
    display: inline-flex; /* 使元素成为一个内联弹性容器 */
    justify-content: center; /* 水平居中 */
    align-items: center; /* 垂直居中 */
    text-align: center; /* 文字居中 */
  }

  .cover-section{
    padding-bottom: 96px;
  }

  .cover-head{
    padding: 46px 16px 18px;
  }
}

/* 480 以下：小屏更紧凑 */
@media (max-width: 480px){
  :root{ --header-height: 64px; --hero-pad-x: 14px; }

  .hero{
    min-height: 810px;
  }

  .hero-content h1{
    font-size: clamp(28px, 8.2vw, 20px);
    line-height: 1.10;
    text-align: left;
  }

  .hero-content p{
    font-size: 14px;
    line-height: 1.8;
    max-width: 100ch;
    text-align: left;
  }

  .hero-cta{
    width: 100%;
    max-width: 260px;
    text-align: center;
  }
}


/* ===============================
   Vision Section - Rebuilt
   保留：色号 / 字号 / 左右双栏结构
   重写：容器、间距、对齐、响应式过渡
   =============================== */
/* ===============================
   Vision Section - Fixed Version
   保留：原有色号 / 字号 / 左右双栏
   重写：容器、比例、间距、响应式过渡
   =============================== */

/* ===== 基础 ===== */
.vision-section{
  width: 100%;
  background: #F7F7F7;
  padding: 74px 0 72px;
  box-sizing: border-box;
}

.vision-inner{
  width: min(1720px, calc(100% - 80px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.68fr) minmax(300px, 0.92fr);
  column-gap: 96px;
  align-items: start;
  box-sizing: border-box;
}

/* ===== 左侧 ===== */
.vision-left{
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  column-gap: 20px;
  align-items: start;
  min-width: 0;
}

.vision-mark{
  width: 26px;
  height: 26px;
  margin-top: 10px;
  background: linear-gradient(135deg, #008BD5, #008BD5);
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
  flex-shrink: 0;
}

.vision-title{
  margin: 0;
  font-size: 32px;
  line-height: 1.42;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #008BD5;
  word-break: break-word;
}

.vision-title span{
  display: block;
  margin-top: 12px;
  color: #7CC040;
}

/* ===== 右侧 ===== */
.vision-right{
  width: 100%;
  min-width: 0;
  align-self: start;
  justify-self: start;
  padding-top: 10px;
}

.vision-right p{
  margin: 0;
  max-width: 26em;
  font-size: 18px;
  line-height: 1.9;
  color: #333;
  word-break: break-word;
}

/* ===============================
   1600 - 1800 大桌面
   =============================== */
@media (max-width: 1800px){
  .vision-section{
    padding: 70px 0 68px;
  }

  .vision-inner{
    width: min(1660px, calc(100% - 72px));
    grid-template-columns: minmax(0, 1.64fr) minmax(300px, 0.94fr);
    column-gap: 84px;
  }

  .vision-left{
    grid-template-columns: 32px minmax(0, 1fr);
    column-gap: 18px;
  }

  .vision-mark{
    width: 24px;
    height: 24px;
    margin-top: 10px;
  }
}

/* ===============================
   1441 - 1600 常规大屏
   =============================== */
@media (max-width: 1600px){
  .vision-section{
    padding: 64px 0 62px;
  }

  .vision-inner{
    width: min(1500px, calc(100% - 64px));
    grid-template-columns: minmax(0, 1.58fr) minmax(290px, 0.96fr);
    column-gap: 70px;
  }

  .vision-left{
    grid-template-columns: 30px minmax(0, 1fr);
    column-gap: 17px;
  }

  .vision-mark{
    width: 22px;
    height: 22px;
    margin-top: 9px;
  }

  .vision-title{
    font-size: 32px;
    line-height: 1.4;
  }

  .vision-title span{
    margin-top: 10px;
  }

  .vision-right{
    padding-top: 8px;
  }

  .vision-right p{
    font-size: 18px;
    line-height: 1.86;
    max-width: 25em;
  }
}

/* ===============================
   1281 - 1440
   =============================== */
@media (max-width: 1440px){
  .vision-section{
    padding: 58px 0 56px;
  }

  .vision-inner{
    width: min(1360px, calc(100% - 56px));
    grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.98fr);
    column-gap: 56px;
  }

  .vision-left{
    grid-template-columns: 28px minmax(0, 1fr);
    column-gap: 15px;
  }

  .vision-mark{
    width: 20px;
    height: 20px;
    margin-top: 8px;
  }

  .vision-title{
    font-size: 30px;
    line-height: 1.4;
  }

  .vision-title span{
    margin-top: 10px;
  }

  .vision-right{
    padding-top: 6px;
  }

  .vision-right p{
    font-size: 17px;
    line-height: 1.84;
    max-width: 25em;
  }
}

/* ===============================
   1201 - 1280
   =============================== */
@media (max-width: 1280px){
  .vision-section{
    padding: 54px 0 52px;
  }

  .vision-inner{
    width: min(1220px, calc(100% - 48px));
    grid-template-columns: minmax(0, 1.42fr) minmax(270px, 1fr);
    column-gap: 42px;
  }

  .vision-left{
    grid-template-columns: 26px minmax(0, 1fr);
    column-gap: 14px;
  }

  .vision-mark{
    width: 18px;
    height: 18px;
    margin-top: 8px;
  }

  .vision-title{
    font-size: 28px;
    line-height: 1.4;
  }

  .vision-title span{
    margin-top: 8px;
  }

  .vision-right{
    padding-top: 2px;
  }

  .vision-right p{
    font-size: 16px;
    line-height: 1.82;
    max-width: 24em;
  }
}

/* ===============================
   993 - 1200 小桌面
   =============================== */
@media (max-width: 1200px){
  .vision-section{
    padding: 48px 0;
  }

  .vision-inner{
    width: min(1120px, calc(100% - 40px));
    grid-template-columns: minmax(0, 1.3fr) minmax(250px, 1fr);
    column-gap: 34px;
  }

  .vision-left{
    grid-template-columns: 24px minmax(0, 1fr);
    column-gap: 12px;
  }

  .vision-mark{
    width: 18px;
    height: 18px;
    margin-top: 8px;
  }

  .vision-title{
    font-size: 32px;
    line-height: 1.35;
  }

  .vision-title span{
    margin-top: 8px;
  }

  .vision-right{
    padding-top: 0;
  }

  .vision-right p{
    font-size: 18px;
    line-height: 1.8;
    max-width: 23em;
  }
}

/* ===============================
   769 - 992 平板横屏
   =============================== */
@media (max-width: 992px){
  .vision-section{
    padding: 42px 0;
  }

  .vision-inner{
    width: min(920px, calc(100% - 32px));
    grid-template-columns: minmax(0, 1.18fr) minmax(220px, 1fr);
    column-gap: 24px;
  }

  .vision-left{
    grid-template-columns: 22px minmax(0, 1fr);
    column-gap: 10px;
  }

  .vision-mark{
    width: 16px;
    height: 16px;
    margin-top: 8px;
  }

  .vision-title{
    font-size: 28px;
    line-height: 1.36;
  }

  .vision-title span{
    margin-top: 8px;
  }

  .vision-right p{
    font-size: 16px;
    line-height: 1.78;
    max-width: 22em;
  }
}

/* ===============================
   <= 768 移动端
   =============================== */
@media (max-width: 768px){
  .vision-section{
    padding: 34px 0;
  }

  .vision-inner{
    width: min(100%, 430px);
    padding: 0 16px;
    grid-template-columns: 1fr;
    row-gap: 18px;
    column-gap: 0;
  }

  .vision-left{
    grid-template-columns: 18px minmax(0, 1fr);
    column-gap: 10px;
  }

  .vision-mark{
    width: 14px;
    height: 14px;
    margin-top: 7px;
  }

  .vision-title{
    font-size: 22px;
    line-height: 1.38;
    letter-spacing: 0.01em;
  }

  .vision-title span{
    display: block;
    margin-top: 8px;
  }

  .vision-right{
    padding-top: 0;
  }

  .vision-right p{
    max-width: none;
    font-size: 13px;
    line-height: 1.9;
  }
}

/* ===============================
   <= 480 小屏手机
   =============================== */
@media (max-width: 480px){
  .vision-section{
    padding: 28px 0;
  }

  .vision-inner{
    padding: 0 14px;
  }

  .vision-left{
    grid-template-columns: 16px minmax(0, 1fr);
    column-gap: 8px;
  }

  .vision-mark{
    width: 12px;
    height: 12px;
    margin-top: 6px;
  }

  .vision-title{
    font-size: 17px;
    line-height: 1.42;
  }

  .vision-title span{
    margin-top: 6px;
  }

  .vision-right p{
    font-size: 13px;
    line-height: 1.65;
  }
}


/* ===== ✅ 5图轮播（全屏铺满视窗高度的一部分） ===== */
.scene-slider{
  position: relative;
  left: 50px;
  width: 1200px;
  height: auto;
  margin: 0 auto;
  overflow: visible;
}

.scene-viewport{
  /* ✅ 高度在区间内自适应：小屏不挤，大屏不无限变大 */
  height: 920px;

  border-radius: 5px;
  overflow: hidden;       /* ✅ 圆角永远生效 */
  position: relative;
}


.scene-track{
  display:flex;
  height: 100%;
  transition: transform .5s ease;
}

.scene-slide{
  width: 100%;
  height: 100%;
  flex: 0 0 100%;             /* 👈 用 flex 居中图片 */
  align-items: center;
  justify-content: center;
}

.scene-slide img{
  width:100%;
  height:100%;
  object-position:center;
  display:block;
}

/* 左右箭头 */
.scene-arrow{
  position:absolute;
  top: 103%;
  transform: translateY(-50%);
  z-index: 10;

  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.18);
  background: rgba(255,255,255,.55);
  color:#111;

  font-size: 30px;
  line-height: 46px;
  cursor:pointer;

  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.scene-arrow.left{ left: 180px; }
.scene-arrow.right{ right: -18px; }

.scene-arrow:hover{
  background: rgba(255,255,255,.75);
}

/* ✅ ICON定位 */
.scene-slide{
  position: relative;
}

.scene-slider{
  margin-top: 90px;   /* 上下留白 */
  margin-bottom: 140px;   /* 上下留白 */
}
/* 背景图 */
.scene-bg{
  width: 100%;
  height: 100%;
  object-fit: contain; /* 你要完整显示就用 contain */
  display: block;
}

.scene-viewport{ position: relative; }

/* 左图 + 右侧 icon 栏 */
.scene-wrapper{
  display: flex;
  align-items: center;
  gap: 32px;              /* 图和右侧栏之间的距离，想更宽就加 */
  width: 150%;
  max-width: none;      /* ✅ 这里决定“绿框”有多宽：想更宽改 1600/1800 或直接 none */
  margin: 0 auto;         /* 居中 */
  padding: 0 4px;        /* 两侧留白 */
}

.scene-wrapper{
  transform: translateX(-200px); /* 👉 往右挪，数值自己微调 */
}
.scene-viewport{
  flex: 1;        /* ✅ 左侧自动变宽 */
  min-width: 0;   /* ✅ 防止内容把布局撑爆 */
}

/* ✅ 右侧竖排 icon 栏 */
.scene-hotspots-fixed{
  position: relative;     /* ✅ 关键：回到文档流 */
  width: 120px;           /* 右侧栏宽度，你想更宽就改 140/160 */
  flex: 0 0 120px;        /* 固定宽 */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  pointer-events: auto;

  /* ✅ 新增 */
  background: rgba(139, 140, 142, 0.95); /* 浅灰背景 */
  border-radius: 16px;                  /* 可选：圆角 */
  padding: 20px 0;                      /* 上下留白 */

  /* 可选高级质感 */
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}


.scene-hotspots-fixed .hs{
  position: relative;     /* ✅ 不要 absolute */
  width: 110px;
  height: 110px;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.scene-hotspots-fixed .hs img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.scene-hotspots-fixed .icon-b{ opacity: 0; transition: opacity .12s ease; }
.scene-hotspots-fixed .icon-a{ opacity: 1; transition: opacity .12s ease; }

.scene-hotspots-fixed .hs:hover .icon-b{ opacity: 1; }
.scene-hotspots-fixed .hs:hover .icon-a{ opacity: 0; }


.scene-hotspots-fixed .hs.is-active .icon-b{ opacity: 1; }
.scene-hotspots-fixed .hs.is-active .icon-a{ opacity: 0; }


/* 五大场景产品点位 */
/* 点位层 */
.pins{ position:absolute; inset:0; z-index:6; pointer-events:none; }
.pin{ position:absolute; transform:translate(-50%,-50%); width:44px; height:44px; background:transparent; border:0; cursor:pointer; pointer-events:auto; }

/* 圈点 */
.pin-dot{
  position:absolute; inset:0;
  border-radius:999px;
  border:2px solid rgba(0,140,255,.95);
  box-shadow:0 0 0 6px rgba(0,140,255,.18);
}
.pin-dot::after{
  content:"";
  position:absolute; inset:-10px;
  border-radius:999px;
  border:2px solid rgba(0,140,255,.45);
  animation: pinPulse 1.6s infinite ease-out;
}
@keyframes pinPulse{ 0%{transform:scale(.6);opacity:.85;} 100%{transform:scale(1.25);opacity:0;} }

/* ✅ 悬浮信息卡：固定在页面上，跟随鼠标 */
.pin-float{
  position: fixed;
  left: 0; top: 0;
  z-index: 9999;
  display: none;
  pointer-events: none;   /* ✅ 关键：不抢鼠标，不会抖动 */
}
.pin-float.is-open{ display:block; }

.pin-float-card{
  width: min(360px, 80vw);
  background: rgba(255,255,255,.98);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 18px 60px rgba(0,0,0,.22);
  backdrop-filter: blur(6px);
}

.pin-float-media{
  background: #f6f7f9;
  aspect-ratio: 16 / 9;
}
.pin-float-media img{
  width:100%; height:100%;
  object-fit: contain;
  display:block;
}

.pin-float-info{ padding: 12px 14px 14px; }
.pin-float-info h4{ margin:0 0 6px; font-size: 15px; }
.pin-float-info p{ margin:0; font-size: 13px; color: rgba(0,0,0,.65); line-height:1.5; }

.pins{
  position:absolute;
  inset:0;
  z-index:50;
  pointer-events:none; /* 不影响底部其他内容 */
}

.pin{
  position:absolute;
  transform:translate(-50%,-50%);
  width:56px;
  height:56px;
  background:transparent;
  border:0;
  padding:0;
  cursor:pointer;
  pointer-events:auto; /* 只有点位可交互 */
  z-index:99999;
}

/* 蓝色圆环点位（你现在的圈圈效果） */
.pin-dot{
  position:absolute;
  inset:0;
  border-radius:999px;
  border:3px solid #e9ff1e;
  background:rgba(226, 237, 4, 0.671);
  box-shadow:0 10px 24px rgba(242, 255, 0, 0.637);
}

/* 悬停弹窗（默认隐藏） */
.pin-tip{
  position:absolute;
  left:calc(100% + 65px);
  top:50%;
  transform:translateY(-50%);
  width:250px;
  background:rgba(255,255,255,.96);
  border-radius:14px;
  padding:12px;
  box-shadow:0 18px 40px rgba(0,0,0,.18);
  display:flex;
  gap:12px;

  opacity:0;
  visibility:hidden;
  transform:translate(8px,-50%);
  transition:.18s ease;
  pointer-events:none; /* 避免移到卡片上导致抖动 */
}



/* 文案 */
.pin-tip-title{
  font-weight:800;
  font-size:18px;
  color:#0b5ed7;
  margin-bottom:4px;
}
.pin-tip-desc{
  font-size:16px;
  line-height:1.5;
  color:#333;
  text-align: left;     /* 左对齐 */
}

/* ✅ 悬停显示 */
.pin:hover .pin-tip{
  opacity:1;
  visibility:visible;
  transform:translate(0,-50%);
}

/* ===== 透视浮现图（默认隐藏） ===== */
.pin-pop{
  position:absolute;
  left:50%;
  top:90px;
  transform:
    translate(-50%, -100%)
    rotateX(12deg)
    rotateY(-12deg)
    scale(.85);
  transform-origin: bottom center;

  opacity:0;
  visibility:hidden;

  transition:
    opacity .25s ease,
    transform .35s cubic-bezier(.2,.8,.2,1);

  z-index:3;
  pointer-events:none;
}

/* 图片样式 */
.pin-pop img{
  width:180px;              /* 👈 你可以改大小 */
  height:auto;
  display:block;
}

/* 鼠标悬停点位 → 透视图浮现 */
.pin:hover .pin-pop{
  opacity:1;
  visibility:visible;
  transform:
    translate(-50%, -120%)
    rotateX(0deg)
    rotateY(0deg)
    scale(1);
}

/* 悬停弹窗（默认隐藏） */
.pin-tip-home{
  position:absolute;
  left:calc(100% + 63px);
  top:120%;
  transform:translateY(-50%);
  width:250px;
  background:rgba(255,255,255,.96);
  border-radius:14px;
  padding:12px;
  box-shadow:0 18px 40px rgba(0,0,0,.18);
  display:flex;
  gap:12px;

  opacity:0;
  visibility:hidden;
  transform:translate(8px,-50%);
  transition:.18s ease;
  pointer-events:none; /* 避免移到卡片上导致抖动 */
}

/* 文案 */
.pin-tip-title-home{
  font-weight:800;
  font-size:18px;
  color:#0b5ed7;
  margin-bottom:4px;
}
.pin-tip-desc-home{
  font-size:16px;
  line-height:1.5;
  color:#333;
  text-align: left;     /* 左对齐 */
}

/* ✅ 悬停显示 */
.pin:hover .pin-tip-home{
  opacity:1;
  visibility:visible;
  transform:translate(0,-50%);
}

/* 悬停弹窗（默认隐藏） */
.pin-tip-home1{
  position:absolute;
  left:calc(100% - 360px);
  top:120%;
  transform:translateY(-50%);
  width:200px;
  background:rgba(255,255,255,.96);
  border-radius:14px;
  padding:12px;
  box-shadow:0 18px 40px rgba(0,0,0,.18);
  display:flex;
  gap:12px;
  z-index: 9999;
  
  opacity:0;
  visibility:hidden;
  transform:translate(8px,-50%);
  transition:.18s ease;
  pointer-events:none; /* 避免移到卡片上导致抖动 */
}

/* 文案 */
.pin-tip-title-home1{
  font-weight:800;
  font-size:18px;
  color:#0b5ed7;
  margin-bottom:4px;
}
.pin-tip-desc-home1{
  font-size:16px;
  line-height:1.5;
  color:#333;
  text-align: left;     /* 左对齐 */
}

/* ✅ 悬停显示 */
.pin:hover .pin-tip-home1{
  opacity:1;
  visibility:visible;
  transform:translate(0,-50%);
}

/* 悬停弹窗（默认隐藏） */
.pin-tip-top{
  position:absolute;
  left:calc(100% - 390px);
  top:120%;
  transform:translateY(-50%);
  width:250px;
  background:rgba(255,255,255,.96);
  border-radius:14px;
  padding:12px;
  box-shadow:0 18px 40px rgba(0,0,0,.18);
  display:flex;
  gap:12px;
  z-index: 9999;
  
  opacity:0;
  visibility:hidden;
  transform:translate(8px,-50%);
  transition:.18s ease;
  pointer-events:none; /* 避免移到卡片上导致抖动 */
}

/* 文案 */
.pin-tip-title-top{
  font-weight:800;
  font-size:18px;
  color:#0b5ed7;
  margin-bottom:4px;
}
.pin-tip-desc-top{
  font-size:16px;
  line-height:1.5;
  color:#333;
  text-align: left;     /* 左对齐 */
}

/* ✅ 悬停显示 */
.pin:hover .pin-tip-top{
  opacity:1;
  visibility:visible;
  transform:translate(0,-50%);
}

/* 悬停弹窗（默认隐藏） */
.pin-tip-left{
  position:absolute;
  left:calc(100% - 390px);
  transform:translateY(-10%);
  width:250px;
  background:rgba(255,255,255,.96);
  border-radius:14px;
  padding:12px;
  box-shadow:0 18px 40px rgba(0,0,0,.18);
  display:flex;
  gap:12px;
  z-index: 9999;
  
  opacity:0;
  visibility:hidden;
  transform:translate(8px,-50%);
  transition:.18s ease;
  pointer-events:none; /* 避免移到卡片上导致抖动 */
}




/* ✅ 悬停显示 */
.pin:hover .pin-tip-left{
  opacity:1;
  visibility:visible;
  transform:translate(0,-50%);
}

.pin{
  position: absolute;   /* 必须有定位 */
  z-index: 1;
}

.pin:hover{
  z-index: 99999;       /* 谁 hover 谁到最上层，永远不被兄弟遮 */
}


/* =========================================================
   1101px - 1280px：改成上下布局
========================================================= */
@media (min-width: 1101px) and (max-width: 1280px){

  .scene-slider{
    width: min(1180px, 96vw);
    margin: 64px auto 116px;
    padding: 0 12px;
    box-sizing: border-box;
    overflow: visible;
  }

  .scene-wrapper{
    width: 100%;
    max-width: none;
    transform: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 0;
    margin: 0 auto;
    transform: translateX(70px);
  }

  .scene-viewport{
    flex: none;
    width: 100%;
    height: 680px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
  }

  .scene-slide img,
  .scene-bg{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
  }

  .scene-hotspots-fixed{
    width: min(900px, 100%);
    flex: none;
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    padding: 12px 12px;
    border-radius: 14px;
  }

  .scene-hotspots-fixed .hs{
    width: 92px;
    height: 92px;
  }

  .scene-arrow{
    top: calc(100% + 12px);
    transform: none;
    width: 42px;
    height: 42px;
    line-height: 40px;
    font-size: 24px;
  }

  .scene-arrow.left{ left: 24%; }
  .scene-arrow.left{ top: 90%; }
  .scene-arrow.right{ left: 87%;}
  .scene-arrow.right{ top: 90%;}

  .pin{
    width: 46px;
    height: 46px;
  }

  .pin-pop{
    top: 80px;
  }

  .pin-pop img{
    width: 140px;
    height: auto;
  }

  .pin-tip{
    left: 210px;
    top: calc(100% - 130px);
    transform: translate(-50%, 0);
    width: 180px;
  }

  .pin-tip-home,
  .pin-tip-home1{
    left: 50%;
    top: calc(100% + 28px);
    transform: translate(-50%, 0);
    width: 180px;
  }

  .pin-tip-top{
    left: 50%;
    top: calc(100% - 310px);
    transform: translate(-50%, 0);
    width: 180px;
  }

  .pin-tip-left{
    left: -160px;
    top: calc(100% - 150px);
    transform: translate(-50%, 0);
    width: 180px;
  }

  .pin:hover .pin-tip,
  .pin:hover .pin-tip-home,
  .pin:hover .pin-tip-home1,
  .pin:hover .pin-tip-top,
  .pin:hover .pin-tip-left{
    transform: translate(-50%, 0);
  }

  .pin-tip-title,
  .pin-tip-title-home,
  .pin-tip-title-home1,
  .pin-tip-title-top{
    font-size: 15px;
  }

  .pin-tip-desc,
  .pin-tip-desc-home,
  .pin-tip-desc-home1,
  .pin-tip-desc-top{
    font-size: 13px;
    line-height: 1.45;
  }
}


/* =========================================================
   993px - 1100px：继续上下布局
========================================================= */
@media (min-width: 993px) and (max-width: 1100px){

  .scene-slider{
    left: 0;
    width: min(1040px, 96vw);
    margin: 56px auto 102px;
    padding: 0 10px;
    box-sizing: border-box;
    overflow: visible;
  }

  .scene-wrapper{
    width: 100%;
    max-width: none;
    transform: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 0;
    margin: 0 auto;
    transform: translateX(120px);
  }

  .scene-viewport{
    flex: none;
    width: 100%;
    height: 600px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
  }

  .scene-slide img,
  .scene-bg{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
  }

  .scene-hotspots-fixed{
    width: min(760px, 100%);
    flex: none;
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    padding: 10px 10px;
    border-radius: 12px;
  }

  .scene-hotspots-fixed .hs{
    width: 82px;
    height: 82px;
  }

  .scene-arrow{
    top: calc(100% + 10px);
    transform: none;
    width: 38px;
    height: 38px;
    line-height: 36px;
    font-size: 22px;
  }

  .scene-arrow.left{ left: 28%; }
  .scene-arrow.left{ top: 90%; }
  .scene-arrow.right{ left: 92%;}
  .scene-arrow.right{ top: 90%;}

  .pin{
    width: 40px;
    height: 40px;
  }

  .pin-pop{
    top: 68px;
  }

  .pin-pop img{
    width: 118px;
    height: auto;
  }

  .pin-tip{
    left: 180px;
    top: calc(100% - 116px);
    transform: translate(-50%, 0);
    width: 160px;
  }

  .pin-tip-home,
  .pin-tip-home1{
    left: 50%;
    top: calc(100% + 24px);
    transform: translate(-50%, 0);
    width: 160px;
  }

  .pin-tip-top{
    left: 50%;
    top: calc(100% - 270px);
    transform: translate(-50%, 0);
    width: 160px;
  }

  .pin-tip-left{
    left: -140px;
    top: calc(100% - 124px);
    transform: translate(-50%, 0);
    width: 160px;
  }

  .pin:hover .pin-tip,
  .pin:hover .pin-tip-home,
  .pin:hover .pin-tip-home1,
  .pin:hover .pin-tip-top,
  .pin:hover .pin-tip-left{
    transform: translate(-50%, 0);
  }

  .pin-tip-title,
  .pin-tip-title-home,
  .pin-tip-title-home1,
  .pin-tip-title-top{
    font-size: 14px;
    margin-bottom: 4px;
  }

  .pin-tip-desc,
  .pin-tip-desc-home,
  .pin-tip-desc-home1,
  .pin-tip-desc-top{
    font-size: 12px;
    line-height: 1.4;
  }
}

/* =========================================================
   <=992px：右侧icon栏掉到下方（绿色区域），左侧图片居中
========================================================= */
@media (max-width: 992px){

  /* 1) 外层不要左偏移，整体居中 */
  .scene-slider{
    left: 106px;
    width: 100%;
    margin: 56px auto 92px;
    padding: 0 12px;
  }

  /* 2) 关键：从左右结构 -> 上下结构
        上：图片（居中）
        下：icon栏 + 箭头（绿色区域） */
  .scene-wrapper{
    width: 100%;
    max-width: none;
    transform: none;

    display: flex;
    flex-direction: column;     /* ✅ icon栏掉到下面 */
    align-items: center;        /* ✅ 左侧图片水平居中 */
    gap: 14px;
    padding: 0;
  }

  /* 3) 图片区域：固定居中 + 限制宽度 */
  .scene-viewport{
    flex: none;
    width: 920px;    /* ✅ 关键：居中且不会撑爆 */
    height: 560px;
    margin: 0 auto;
    border-radius: 12px;
  }

  /* 4) icon栏：变成“下方区域”横排（放到绿色部分） */
  .scene-hotspots-fixed{
    width: min(820px, 96vw);    /* ✅ 跟图片同宽，视觉更整齐 */
    flex: none;

    flex-direction: row;        /* ✅ 横排 */
    justify-content: center;
    flex-wrap: wrap;

    padding: 10px 10px;
    gap: 12px;
    border-radius: 14px;
  }

  .scene-hotspots-fixed .hs{
    width: 110px;
    height: 120px;
  }

  /* 5) 箭头：也在下方居中（绿色区域更好看） */
  .scene-arrow{
    top: calc(100% + 18px);
    transform: none;
    width: 42px;
    height: 42px;
    line-height: 40px;
    font-size: 26px;
  }
  .scene-arrow.left{ left: 44%; }
  .scene-arrow.right{ left: 56%; }

  
  .pin:hover .pin-tip,
  .pin:hover .pin-tip-home,
  .pin:hover .pin-tip-home1{
    transform: translate(-50%, 0);
  }

  .pin:hover .pin-tip-top{
    transform: translate(-50%, 0);
  }

  .pin-tip-top{
    left: -140px;
    top: calc(100% - 150px);
    transform: translate(-50%, 0);
    width: min(160px, 86vw);
  }

  .pin-tip-left{
    left: -250px;
    top: calc(100% - 50px);
    transform: translate(-50%, 0);
    width: min(180px, 86vw);
  }

  .pin-tip{
    left: 180px;
    top: calc(100% - 150px);
    transform: translate(-50%, 0);
    width: min(160px, 86vw);
  }

  .pin-pop{
    /* 你原来 top:90px 固定会显得“很占位置”，这里也跟随缩一点 */
    top: clamp(86px, 12vw, 90px);
  }

  /* 关键：把你原来的 width:180px 改成跟随缩放 */
  .pin-pop img{
    width: clamp(120px, 26vw, 80px);
    height: auto;
  }

  /* pins再缩小 */
  .pin{
    width: 43px;
    height: 43px;
  }

  .pin-tip-title-left,
  .pin-tip-title-top,
  .pin-tip-title-home,
  .pin-tip-title-home1,
  .pin-tip-title{
  font-size: clamp(12px, 3.8vw, 10px);   /* 原来 18px 固定 */
  margin-bottom: clamp(2px, 0.8vw, 4px);
}
  .pin-tip-desc-left,
  .pin-tip-desc-top,
  .pin-tip-desc-home,
  .pin-tip-desc-home1,
  .pin-tip-desc{
    font-size: clamp(10px, 3.8vw, 8px);   /* 原来 18px 固定 */
    margin-bottom: clamp(2px, 0.8vw, 4px);
}
}



/* =========================================================
   <=768px：保持你当前版式 + 继续缩窄时自适应不溢出
========================================================= */
@media (max-width: 768px){

  /* ✅ 外层：不允许写死宽度/偏移，否则小屏必溢出 */
  .scene-slider{
    left: 100px;                 /* 关键：去掉 108px 偏移 */
    width: 108%;             /* 关键：不要写死 780px */
    max-width: 1280px;        /* 保留你“768那一刻”的最佳宽度上限 */
    margin: 23px auto 70px;
    padding: 0 12px;         /* 小屏左右留白 */
    box-sizing: border-box;
  }

  .scene-wrapper{
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 0;
    padding: 0;
    transform: none;
  }

  /* ✅ 图：高度跟随屏幕缩放（max=420，min你可自己调） */
  .scene-viewport{
    width: 100%;
    height: clamp(260px, 55vw, 420px);   /* ✅ 关键公式 */
    border-radius: 0;
  }

  /* ✅ icon栏：下面横排，自动换行，不溢出 */
  .scene-hotspots-fixed{
    width: 100%;
    flex: none;
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;

    padding: clamp(8px, 2.2vw, 12px);
    gap: clamp(8px, 2vw, 14px);          /* ✅ 小屏时给间距 */
    border-radius: 0;
    box-sizing: border-box;
  }

  /* ✅ icon：跟随缩小（max=112，min你可调） */
  .scene-hotspots-fixed .hs{
    width: clamp(50px, 18vw, 70px);
    height: clamp(50px, 18vw, 90px);
    right: auto;                         /* ❌ 删掉 right:40px */
  }

  /* ✅ 箭头：跟随缩小（避免小屏太大/被挤） */
  .scene-arrow{
    top: calc(100% + 8px);
    transform: none;
    width: clamp(56px, 18vw, 80px);
    height: clamp(34px, 10vw, 40px);
    line-height: clamp(32px, 9vw, 38px);
    font-size: clamp(18px, 5vw, 24px);
  }
  .scene-arrow.left{ left: 20%; }
  .scene-arrow.right{ left: 70%; }

  /* tooltip：居中显示（你原来的保留） */
  .pin-tip{
    left: 110px;
    top: calc(100% - 120px);
    transform: translate(-50%, 0);
    width: min(120px, 86vw);
  }
  .pin-tip-home,
  .pin-tip-home1{
    left: 100%;
    top: calc(100% + 34px);
    transform: translate(-50%, 0);
    width: min(120px, 86vw);
  }

  .pin-tip-left{
    left: -100px;
    top: calc(100% - 50px);
    transform: translate(-50%, 0);
    width: min(120px, 86vw);
  }

  .pin-tip-top{
  left: 50%;
  top: calc(180% - 180px);
  transform: translate(-50%, 0);
  width: min(130px, 86vw);
  }
  .pin:hover .pin-tip{
    transform: translate(-50%, 0);
  }
  
  .pin:hover .pin-tip-home,
  .pin:hover .pin-tip-home1{
    transform: translate(-50%, 0);
  }
 .pin:hover .pin-tip-left{
    transform: translate(-70%, 0);
  }
  /* pins：也跟随一点 */
  .pin{
    width: clamp(26px, 6vw, 33px);
    height: clamp(26px, 6vw, 33px);
  }

  .products-grid{
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .section-products{
    padding-bottom: 70px;
  }

  .pin-pop{
    /* 你原来 top:90px 固定会显得“很占位置”，这里也跟随缩一点 */
    top: clamp(86px, 12vw, 90px);
  }

  /* 关键：把你原来的 width:180px 改成跟随缩放 */
  .pin-pop img{
    margin-left: -40px;
    width: clamp(40px, 26vw, 80px);
    height: auto;
  }
  .pin-tip-desc-home1{
    font-size: clamp(6px, 3.8vw, 8px);   /* 原来 18px 固定 */
    margin-bottom: clamp(2px, 0.8vw, 4px);
  } 
  
  .pin-tip-desc-home{
    font-size: clamp(6px, 3.8vw, 8px);   /* 原来 18px 固定 */
    margin-bottom: clamp(2px, 0.8vw, 4px);
  }  
  .pin-tip-desc{
    font-size: clamp(6px, 3.8vw, 8px);   /* 原来 18px 固定 */
    margin-bottom: clamp(2px, 0.8vw, 4px);
}
  .pin-tip-title-home1{
    font-size: clamp(8px, 3.8vw, 10px);   /* 原来 18px 固定 */
    margin-bottom: clamp(2px, 0.8vw, 4px);
  }  

  .pin-tip-title-home{
    font-size: clamp(8px, 3.8vw, 10px);   /* 原来 18px 固定 */
    margin-bottom: clamp(2px, 0.8vw, 4px);
  }  
  .pin-tip-title{
    font-size: clamp(8px, 3.8vw, 10px);   /* 原来 18px 固定 */
    margin-bottom: clamp(2px, 0.8vw, 4px);
}
}


/* MAP */
/* ===============================
   第四部分：全国布局地图
=============================== */
.map-section{
  width: 100%;
  padding-top: 80px;
  padding-bottom: 10px;
  background: #fff;
}

.map-wrap{
  position: relative;
  width: min(1880px, 100%);
  margin: 0 auto;
  aspect-ratio: 2048 / 1152;
  border-radius: 16px;
  overflow: hidden;
}

/* 背景图 */
.map-bg{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  max-width: none !important;
  z-index: 1;
}

/* 标题 */
.map-title-img{
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 420px;
  max-width: 80%;
  z-index: 6;
  pointer-events: none;
}

/* 桌面端地图内卡片 */
.map-wrap > .map-card{
  position: absolute;
  left: 3%;
  width: 28%;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(0,120,210,0.35);
  box-shadow:
    0 16px 40px rgba(0,0,0,0.22),
    inset 0 0 0 1px rgba(255,255,255,0.25);
  z-index: 5;
}

.map-wrap > .card-1{
  top: 2%;
  transform: scale(0.96);
  z-index: 5;
}

.map-wrap > .card-2{
  top: 34%;
  transform: scale(1.08);
  z-index: 10;
}

.map-wrap > .card-3{
  top: 66%;
  transform: scale(0.96);
  z-index: 5;
}

.map-card__img{
  height: 0;
  padding-top: 40%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.map-card__caption{
  padding: 10px 14px;
  font-size: clamp(12px, 1.1vw, 16px);
  font-weight: 600;
  color: #fff;
}

/* 地图标签 */
.map-label{
  position: absolute;
  padding: 8px 12px;
  border-radius: 10px;
  background: rgba(2, 95, 167, 0.45);
  backdrop-filter: blur(10px) saturate(130%);
  -webkit-backdrop-filter: blur(10px) saturate(130%);
  color: #fff;
  font-weight: 700;
  font-size: clamp(12px, 1.05vw, 16px);
  white-space: nowrap;
  box-shadow:
    0 10px 28px rgba(0, 0, 0, 0.18),
    inset 0 0 0 1px rgba(255, 255, 255, 0.35);
  z-index: 6;
}

.label-shenyang{ left: 84%; top: 24%; }
.label-shanghai-base{ left: 87%; top: 41%; }
.label-shanghai-sales{ left: 88%; top: 47%; }
.label-xiamen-hq{ left: 86%; top: 62%; }
.label-xiamen-rd{ left: 85%; top: 68%; }
.label-chongqing{ left: 43%; top: 48%; }
.label-guangzhou{ left: 57%; top: 55%; }

/* 点位 */
.map-pin{
  position: absolute;
  transform: translate(-50%, -50%);
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
}

.map-pin-dot{
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 6px rgba(255,255,255,0.25);
}

/* 金色 marker */
.map-marker{
  position: absolute;
  transform: translate(-50%, -100%);
  width: 36px;
  height: 52px;
  z-index: 6;
  pointer-events: none;
}

.map-marker::before{
  content:"";
  position:absolute;
  left: 50%;
  top: 2px;
  transform: translateX(-50%);
  width: 28px;
  height: 40px;
  clip-path: polygon(50% 0%, 84% 20%, 100% 58%, 50% 100%, 0% 58%, 16% 20%);
  background: linear-gradient(135deg,
    rgba(255,245,200,.95) 0%,
    rgba(255,205,80,.95) 35%,
    rgba(200,135,20,.95) 70%,
    rgba(255,220,120,.95) 100%
  );
  box-shadow:
    0 8px 16px rgba(0,0,0,.18),
    inset 0 1px 0 rgba(255,255,255,.55);
  border-radius: 4px;
}

.map-marker::after{
  content:"";
  position:absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%,
    rgba(255,255,255,.9) 0%,
    rgba(255,220,120,.95) 35%,
    rgba(190,120,10,.95) 80%
  );
  box-shadow:
    0 0 0 6px rgba(255,210,90,.20),
    0 10px 18px rgba(0,0,0,.15);
}

/* 入场动画 */
.map-wrap > .map-card,
.map-wrap .map-label,
.map-wrap .map-marker{
  opacity: 0;
  transform: translateY(12px);
  animation: mapFadeUp .8s ease forwards;
  will-change: transform, opacity;
}

@keyframes mapFadeUp{
  to { opacity: 1; transform: translateY(0); }
}

.map-wrap > .card-1{ animation-delay: .10s; }
.map-wrap > .card-2{ animation-delay: .22s; }
.map-wrap > .card-3{ animation-delay: .34s; }

.map-wrap .label-shenyang{ animation-delay: .18s; }
.map-wrap .label-shanghai-base{ animation-delay: .26s; }
.map-wrap .label-shanghai-sales{ animation-delay: .30s; }
.map-wrap .label-xiamen-hq{ animation-delay: .38s; }
.map-wrap .label-xiamen-rd{ animation-delay: .44s; }
.map-wrap .label-chongqing{ animation-delay: .50s; }
.map-wrap .label-guangzhou{ animation-delay: .56s; }

.map-wrap .map-marker.gold{ animation-delay: .65s; }

.map-marker.gold{
  animation:
    mapFadeUp .8s ease forwards,
    markerFloat 2.8s ease-in-out infinite;
  animation-delay: .65s, 1.45s;
}

@keyframes markerFloat{
  0%,100%{ transform: translate(-50%, -100%) translateY(0); }
  50%{ transform: translate(-50%, -100%) translateY(-3px); }
}

.map-marker.gold::after{
  animation: markerPulse 1.6s ease-out infinite;
}

@keyframes markerPulse{
  0%{
    transform: translateX(-50%) scale(0.85);
    opacity: .95;
    box-shadow:
      0 0 0 6px rgba(255,210,90,.24),
      0 10px 18px rgba(0,0,0,.15);
  }
  70%{
    transform: translateX(-50%) scale(1.9);
    opacity: .05;
    box-shadow:
      0 0 0 18px rgba(255,210,90,.05),
      0 10px 18px rgba(0,0,0,.12);
  }
  100%{
    transform: translateX(-50%) scale(2.15);
    opacity: 0;
    box-shadow:
      0 0 0 24px rgba(255,210,90,0),
      0 10px 18px rgba(0,0,0,.10);
  }
}

/* 默认：移动端卡片区隐藏 */
.map-cards-grid{
  display: none;
}

/* ===============================
   移动端：地图外部卡片
=============================== */
@media (max-width: 768px){
  .map-section{
    padding-top: 28px;
    padding-bottom: 20px;
  }

  .map-wrap{
    border-radius: 12px;
  }

  .map-title-img{
    top: 12px;
    width: 130px;
    max-width: 62%;
  }

  /* 隐藏桌面端地图内卡片 */
  .map-wrap > .map-card{
    display: none !important;
  }

  /* 隐藏黄色坐标 */
  .map-marker,
  .map-marker.gold,
  .map-marker::before,
  .map-marker::after{
    display: none !important;
    animation: none !important;
    content: none !important;
  }

  /* 地图标签缩小 */
  .map-label{
    padding: 4px 7px;
    border-radius: 7px;
    font-size: 10px;
    font-weight: 600;
    line-height: 1.15;
    background: rgba(2, 95, 167, 0.78);
    box-shadow:
      0 4px 12px rgba(0, 0, 0, 0.12),
      inset 0 0 0 1px rgba(255, 255, 255, 0.22);
  }

  .label-shenyang{ left: 77.5%; top: 23.5%; }
  .label-shanghai-base{ left: 77.5%; top: 41.5%; }
  .label-shanghai-sales{ left: 76.5%; top: 47.5%; }
  .label-xiamen-hq{ left: 74.5%; top: 61.5%; }
  .label-xiamen-rd{ left: 73.5%; top: 67.5%; }
  .label-chongqing{ left: 43.5%; top: 49.5%; }
  .label-guangzhou{ left: 57%; top: 57%; }

  /* 显示移动端卡片区：上2下1 */
  .map-cards-grid{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;              /* 原来 14，缩小间距 */
    margin-top: 12px;
  }

  .map-cards-grid .map-card{
    width: 100%;
    max-width: 92%;         /* ✅ 卡片不要撑满整格 */
    justify-self: center;   /* ✅ 每张卡片在格子里居中 */
    border-radius: 12px;
    overflow: hidden;
    background: rgba(0,120,210,0.35);
    box-shadow:
      0 8px 18px rgba(0,0,0,0.14),
      inset 0 0 0 1px rgba(255,255,255,0.20);
  }

  .map-cards-grid .mobile-card-3{
    grid-column: 1 / -1;
    max-width: 78%;         /* ✅ 第三张单独一行时更窄一点 */
    justify-self: center;
  }

  .map-cards-grid .map-card__img{
    height: 0;
    padding-top: 48%;       /* 原来 58%，现在更矮，整体更小 */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }

  .map-cards-grid .map-card__caption{
    padding: 8px 10px;
    font-size: 11px;
    line-height: 1.3;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(
    90deg,
    rgba(25, 144, 255, 0.88) 0%,
    rgba(33, 150, 243, 0.72) 45%,
    rgba(80, 180, 255, 0.42) 100%
  );

  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);

  border-top: 1px solid rgba(255,255,255,0.14);
  }
}

@media (max-width: 560px){
  .map-section{
    padding-top: 20px;
    padding-bottom: 16px;
  }

  .map-wrap{
    border-radius: 10px;
  }

  .map-title-img{
    top: 10px;
    width: 136px;
    max-width: 58%;
  }

  .map-cards-grid{
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 10px;
  }

  .map-cards-grid .map-card,
  .map-cards-grid .mobile-card-3{
    max-width: 88%;         /* ✅ 单列时也不要占满全宽 */
    margin: 0 auto;
    border-radius: 10px;
  }

  .map-cards-grid .map-card__img{
    padding-top: 46%;       /* 再压一点高度 */
  }

  .map-cards-grid .map-card__caption{
    padding: 7px 9px;
    font-size: 10px;
    line-height: 1.25;
    background: linear-gradient(
    90deg,
    rgba(25, 144, 255, 0.88) 0%,
    rgba(33, 150, 243, 0.72) 45%,
    rgba(80, 180, 255, 0.42) 100%
  );

  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);

  border-top: 1px solid rgba(255,255,255,0.14);
  }


  .map-label{
    padding: 3px 6px;
    border-radius: 6px;
    font-size: 9px;
    line-height: 1.1;
  }

  .label-shenyang{ left: 76.5%; top: 23.5%; }
  .label-shanghai-base{ left: 76%; top: 41.5%; }
  .label-shanghai-sales{ left: 75.5%; top: 47.5%; }
  .label-xiamen-hq{ left: 73.5%; top: 61.5%; }
  .label-xiamen-rd{ left: 72.5%; top: 67.5%; }
  .label-chongqing{ left: 43%; top: 50%; }
  .label-guangzhou{ left: 56%; top: 57.5%; }
}


/* ===============================
   第5部分：合作伙伴
=============================== */
.partner-section{
  position: relative;
  padding: clamp(15px, 6vw, 88px) 0;
  background: url("partner_folder/partner_bg.jpg") center/cover no-repeat;
  overflow: hidden;
}

/* 背景蒙层，让 logo 更清晰（可调强度） */
.partner-section::before{
  content:"";
  position:absolute;
  inset:0;
  background: rgba(255,255,255,0.15);
  pointer-events:none;
}

.partner-inner{
  max-width: 1800px;   /* 👈 关键：容器直接变大 */
  margin: 0 auto;
  padding: 0 24px;     /* 两侧留白 */
}

.partner-title{
  text-align:center;
  font-size: clamp(26px, 2.2vw, 34px);
  font-weight: 600;
  color:#000000;
  letter-spacing: 0px;
  margin: 0 0 26px;
}

/* 网格：自动响应式换行 */
.partner-grid{
  display: grid;
  grid-template-columns: repeat(6, 1fr); /* 宽屏 6 列 */
  gap: 14px;
}

/* logo 卡片 */
.partner-item{
  background: rgba(255,255,255,0.86);
  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.06);

  height: 62px;               /* 高度统一：更像你截图 */
  display:flex;
  align-items:center;
  justify-content:center;

  overflow:hidden;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);

  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.partner-item:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
  background: rgba(255,255,255,0.95);
}

.partner-item img{
  width: 98%;
  height: 83%;
  object-fit: contain;  /* ✅ 不变形 */
  display:block;
  filter: saturate(1.05);
}

/* 响应式断点 */
@media (max-width: 1100px){
  .partner-grid{ grid-template-columns: repeat(5, 1fr); }
}
@media (max-width: 900px){
  .partner-grid{ grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 640px){
  .partner-grid{ grid-template-columns: repeat(3, 1fr); }
  .partner-item{ height: 56px; }
}
@media (max-width: 420px){
  .partner-grid{ grid-template-columns: repeat(2, 1fr); }
}

/* ===============================
   第6部分：Intro
=============================== */
.intro-section{
  position: relative;
  width: 100%;
  min-height: 70vh; /* 高度可调：60 / 70 / 80 */

  background: url("intro.jpg") center / cover no-repeat;
}

/* 如果你想内容居中放字 */
.intro-inner{
  width: min(1200px, 92%);
  margin: 0 auto;
  height: 100%;

  display: flex;
  align-items: center;
}

/* ===============================
   第7部分：客户咨询表单
=============================== */
.contact-section{
  padding: clamp(56px, 6vw, 90px) 0;
  background: #F7F7F7;
}

.contact-inner{
  width: min(1180px, 92%);
  margin: 0 auto;
  transform: translateX(-160px);  /* 👈 向左移，数值可调 */
}

.contact-grid{
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(20px, 4vw, 48px);
  align-items: center;
}

/* 左侧标题 */
.contact-title{
  font-size: clamp(28px, .6vw, 40px);
  font-weight: 400;
  color: #111;
  letter-spacing: 0px;
  margin: 0 0 10px;
}

.contact-subtitle{
  margin: 0 0 26px;
  color: #555;
  font-size: 15px;
  line-height: 1.7;
}

.contact-accent{
  color: #1677ff;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* 表单布局：左 label + 右输入框 */
.contact-form{
  width: 100%;
  max-width: 660px;
}

.f-row{
  display: grid;
  grid-template-columns: 90px 1fr;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.f-row--top{
  align-items: start;
}

.f-label{
  color: #333;
  font-size: 14px;
  font-weight: 700;
}

.req{
  color: #1677ff;
  margin-left: 4px;
}

.f-control{
  position: relative;
}

.f-input{
  width: 100%;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.12);
  background: rgba(255,255,255,0.96);
  padding: 0 16px;
  font-size: 14px;
  outline: none;
  transition: box-shadow .2s ease, border-color .2s ease;
}

.f-input:focus{
  border-color: rgba(22,119,255,0.6);
  box-shadow: 0 0 0 4px rgba(22,119,255,0.14);
}

.f-input::placeholder{
  color: rgba(0,0,0,0.38);
}

/* select 右侧小箭头（更像截图） */
/* 让 select 跟 input 一样：真·100% 宽 */
.f-select .f-input{
  width: 100%;
  padding-right: 56px;   /* 只给内部文字避开图标，不影响外观宽度 */
  appearance: none;
  -webkit-appearance: none;
  background-image: none !important; /* ✅ 干掉默认/之前的箭头背景 */
}

/* 右侧圆形按钮 + 下拉箭头 */
.f-select-icon{
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: rgba(22,119,255,0.12);
  pointer-events: none; /* ✅ 不挡点击 */
}

.f-select-icon::after{
  content:"";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 14px;
  transform: translate(-50%, -50%);
  background: no-repeat center / 14px 14px
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%231677ff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
}

/* f-control 本来就 position:relative; 如果你没有，补上 */
.f-control{ position: relative; }



/* textarea */
.f-textarea{
  width: 100%;
  min-height: 120px;
  border-radius: 18px;
  border: 1px solid rgba(0,0,0,0.12);
  padding: 14px 16px;
  font-size: 14px;
  outline: none;
  resize: vertical;
  transition: box-shadow .2s ease, border-color .2s ease;
}

.f-textarea:focus{
  border-color: rgba(22,119,255,0.6);
  box-shadow: 0 0 0 4px rgba(22,119,255,0.14);
}

.f-textarea::placeholder{
  color: rgba(0,0,0,0.38);
}

.f-actions{
  display: flex;
  justify-content: flex-end;
  margin-top: 16px;
}

.f-submit{
  height: 44px;
  padding: 0 34px;
  border: 0;
  border-radius: 999px;
  background: #1677ff;
  color: #fff;
  font-weight: 800;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 16px 40px rgba(22,119,255,0.28);
  transition: transform .2s ease, box-shadow .2s ease;
}

.f-submit:hover{
  transform: translateY(-1px);
  box-shadow: 0 22px 54px rgba(22,119,255,0.34);
}

/* 右侧人物图（你换 contact_person.png） */
/* 整个左右结构（如果你已经有 grid，可以忽略） */
.contact-grid{
  display: grid;
  grid-template-columns: 1.1fr 0.9fr; /* 左表单略大，右图片区 */
  gap: 40px;
}

/* 右侧红框区域 */
.contact-right{
  position: relative;
  display: right;
  align-items: flex-end;    /* ✅ 图片靠下 */
  justify-content: flex-end;  /* ✅ 水平居中 */
  min-height: 80px;        /* 控制红框高度 */
}

/* 图片本身 */
.contact-image{
  max-width: 150%;     /* ✅ 控制图片大小 */
  height: auto;
  border-radius: 12px;
  margin-left: 80px;       /* ✅ 用 margin 推位置（不影响可用宽度） */
  /* 如果想柔一点 */
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}


/* ===============================
   Contact Section - Mobile Optimization
=============================== */
/* ===============================
   Contact Section
   桌面端 -> 1280 之间平滑缩放修复
=============================== */

/* 1721px 以上：保持你现在满意的桌面效果 */
@media (min-width: 1721px){
  .contact-inner{
    width: min(1180px, 92%);
    transform: translateX(-160px);
  }

  .contact-grid{
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
  }

  .contact-image{
    max-width: 150%;
    margin-left: 80px;
  }
}

/* 1601px - 1720px */
@media (min-width: 1601px) and (max-width: 1720px){
  .contact-inner{
    width: min(1140px, 92%);
    transform: translateX(-132px);
  }

  .contact-grid{
    grid-template-columns: 1.12fr 0.88fr;
    gap: 34px;
  }

  .contact-image{
    max-width: 144%;
    margin-left: 62px;
  }
}

/* 1441px - 1600px */
@media (min-width: 1441px) and (max-width: 1600px){
  .contact-inner{
    width: min(1080px, 91%);
    transform: translateX(-96px);
  }

  .contact-grid{
    grid-template-columns: 1.14fr 0.86fr;
    gap: 28px;
  }

  .contact-image{
    max-width: 136%;
    margin-left: 102px;
  }
}

/* 1367px - 1440px */
@media (min-width: 1367px) and (max-width: 1440px){
  .contact-inner{
    width: min(1020px, 90%);
    transform: translateX(-58px);
  }

  .contact-grid{
    grid-template-columns: 1.16fr 0.84fr;
    gap: 22px;
  }

  .contact-image{
    max-width: 126%;
    margin-left: 120px;
  }
}

/* 1281px - 1366px：临界区重点修复 */
@media (min-width: 1281px) and (max-width: 1366px){
  .contact-inner{
    width: min(980px, 89%);
    transform: translateX(-20px);
  }

  .contact-grid{
    grid-template-columns: 1.18fr 0.82fr;
    gap: 18px;
    align-items: center;
  }

  .contact-form{
    max-width: 560px;
  }

  .contact-image{
    max-width: 118%;
    margin-left: 80px;
  }
}
/* ===============================
   1101px - 1280px
   上图，下表单
=============================== */
@media (min-width: 1101px) and (max-width: 1280px){
  .contact-section{
    overflow: hidden;
    padding: 52px 0 64px;
  }

  .contact-inner{
    width: min(1180px, 94vw);
    margin: 0 auto;
    transform: none;
  }

  .contact-grid{
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: start;
  }

  .contact-left,
  .contact-right,
  .contact-form,
  .f-row,
  .f-control{
    min-width: 0;
  }

  .contact-right{
    order: -1;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: auto;
  }

  .contact-image{
    display: block;
    width: 100%;
    max-width: 860px;
    height: auto;
    margin: 0 auto;
    border-radius: 14px;
    object-fit: contain;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  }

  .contact-left{
    width: 100%;
    max-width: 860px;
    margin: 0 auto;
  }

  .contact-title{
    font-size: 34px;
    line-height: 1.22;
    margin: 0 0 12px;
  }

  .contact-subtitle{
    margin: 0 0 24px;
    font-size: 15px;
    line-height: 1.75;
  }

  .contact-form{
    width: 100%;
    max-width: 100%;
  }

  .f-row{
    grid-template-columns: 92px 1fr;
    gap: 14px;
    margin-bottom: 14px;
    width: 100%;
  }

  .f-label{
    font-size: 14px;
    line-height: 1.5;
  }

  .f-control{
    width: 100%;
    max-width: 100%;
    position: relative;
  }

  .f-input,
  .f-textarea,
  .f-select .f-input{
    display: block;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .f-input{
    height: 44px;
    padding: 0 16px;
    font-size: 14px;
  }

  .f-textarea{
    min-height: 126px;
    padding: 14px 16px;
    font-size: 14px;
    line-height: 1.7;
  }

  .f-actions{
    justify-content: center;
    margin-top: 18px;
  }
}


/* ===============================
   861px - 1100px
   上图，下表单
=============================== */
@media (min-width: 861px) and (max-width: 1100px){
  .contact-section{
    overflow: hidden;
    padding: 46px 0 58px;
  }

  .contact-inner{
    width: min(100%, 94vw);
    margin: 0 auto;
    transform: none;
  }

  .contact-grid{
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: start;
  }

  .contact-left,
  .contact-right,
  .contact-form,
  .f-row,
  .f-control{
    min-width: 0;
  }

  .contact-right{
    order: -1;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: auto;
  }

  .contact-image{
    display: block;
    width: 100%;
    max-width: 720px;
    height: auto;
    margin: 0 auto;
    border-radius: 14px;
    object-fit: contain;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  }

  .contact-left{
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
  }

  .contact-title{
    font-size: 30px;
    line-height: 1.24;
    margin: 0 0 10px;
  }

  .contact-subtitle{
    margin: 0 0 22px;
    font-size: 14px;
    line-height: 1.75;
  }

  .contact-form{
    width: 100%;
    max-width: 100%;
  }

  .f-row{
    grid-template-columns: 84px 1fr;
    gap: 12px;
    margin-bottom: 13px;
    width: 100%;
  }

  .f-label{
    font-size: 13px;
    line-height: 1.5;
  }

  .f-control{
    width: 100%;
    max-width: 100%;
    position: relative;
  }

  .f-input,
  .f-textarea,
  .f-select .f-input{
    display: block;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .f-input{
    height: 43px;
    padding: 0 15px;
    font-size: 14px;
  }

  .f-textarea{
    min-height: 118px;
    padding: 13px 15px;
    font-size: 14px;
    line-height: 1.7;
  }

  .f-actions{
    justify-content: center;
    margin-top: 18px;
  }
}
@media (max-width: 860px){
  .contact-section{
    padding: 44px 0 52px;
    overflow: hidden;
  }

  .contact-inner{
    width: min(100%, 92vw);
    margin: 0 auto;
    transform: none;
  }

  .contact-grid{
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: start;
  }

  .contact-left,
  .contact-right,
  .contact-form,
  .f-row,
  .f-control{
    min-width: 0;
  }

  .contact-right{
    order: -1;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: auto;
  }

  .contact-image{
    display: block;
    width: 100%;
    max-width: 420px;
    height: auto;
    margin: 0 auto;
    border-radius: 14px;
    object-fit: contain;
  }

  .contact-title{
    font-size: 26px;
    line-height: 1.25;
    margin: 0 0 10px;
  }

  .contact-subtitle{
    margin: 0 0 20px;
    font-size: 14px;
    line-height: 1.75;
  }

  .contact-form,
  .contact-form *,
  .f-control,
  .f-input,
  .f-textarea,
  .f-select{
    box-sizing: border-box;
  }

  .contact-form{
    width: 100%;
    max-width: 100%;
    margin: 0;
  }

  .f-row{
    grid-template-columns: 1fr;
    gap: 8px;
    margin-bottom: 16px;
    width: 100%;
  }

  .f-label{
    font-size: 13px;
    line-height: 1.5;
  }

  .f-control{
    width: 100%;
    max-width: 100%;
    position: relative;
  }

  .f-input,
  .f-textarea,
  .f-select .f-input{
    display: block;
    width: 100%;
    max-width: 100%;
  }

  .f-input{
    height: 46px;
    padding: 0 15px;
    font-size: 15px;
    border-radius: 999px;
  }

  .f-select .f-input{
    padding-right: 52px;
  }

  .f-select-icon{
    right: 10px;
    width: 28px;
    height: 28px;
  }

  .f-select-icon::after{
    width: 13px;
    height: 13px;
    background-size: 13px 13px;
  }

  .f-textarea{
    min-height: 118px;
    padding: 13px 15px;
    font-size: 15px;
    line-height: 1.7;
    border-radius: 16px;
    display: block;
  }

  .f-actions{
    justify-content: center;
    margin-top: 18px;
    width: 100%;
  }

  .f-submit{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 100%;
    height: 46px;
    padding: 0 20px;
    font-size: 15px;
  }
}


/* ===============================
   Small Phones
=============================== */
@media (max-width: 560px){
  .contact-section{
    padding: 36px 0 44px;
  }

  .contact-inner{
    width: min(100%, 90vw);
  }

  .contact-grid{
    gap: 20px;
  }

  .contact-image{
    width: 100%;
    max-width: 100%;
    border-radius: 12px;
  }

  .contact-title{
    font-size: 22px;
    line-height: 1.3;
    margin-bottom: 8px;
  }

  .contact-subtitle{
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 18px;
  }

  .f-row{
    gap: 6px;
    margin-bottom: 14px;
  }

  .f-label{
    font-size: 12px;
  }

  .f-input{
    height: 44px;
    font-size: 14px;
    padding: 0 14px;
  }

  .f-select .f-input{
    padding-right: 50px;
  }

  .f-textarea{
    min-height: 108px;
    font-size: 14px;
    padding: 12px 14px;
    border-radius: 14px;
  }

  .f-submit{
    height: 44px;
    font-size: 15px;
  }
}


/* ===============================
   Extra Small Phones
=============================== */
@media (max-width: 390px){
  .contact-inner{
    width: min(100%, 88vw);
  }

  .contact-title{
    font-size: 20px;
  }

  .contact-subtitle{
    font-size: 12px;
  }

  .f-label{
    font-size: 12px;
  }

  .f-input{
    height: 42px;
    font-size: 14px;
  }

  .f-textarea{
    min-height: 100px;
    font-size: 14px;
  }

  .f-submit{
    height: 42px;
    font-size: 14px;
  }
}

/* ===============================
   Footer（主业最后一个 section）
=============================== */
.site-footer{
  background: #E8E8E8;
  padding: 54px 0 126px;
  border-top: 1px solid rgba(0,0,0,0.06);
  margin-bottom: -200px;
}

.footer-inner{
  width: min(1280px, 92%);
  margin: 0 auto;
}

/* 顶部多列 */
.footer-top{
  display: grid;
  grid-template-columns: repeat(5, minmax(160px, 1fr));
  gap: 46px;
}

.footer-h{
  font-size: 14px;
  font-weight: 500;
  color: #222;
  margin: 0 0 12px;
}

.footer-link{
  display: block;
  font-size: 12px;
  color: rgba(0,0,0,0.55);
  text-decoration: none;
  line-height: 1.9;
  transition: color .2s ease;
}

.footer-link:hover{
  color: rgba(0,0,0,0.85);
}

.footer-gap{ height: 18px; }

/* 中部：联系我们 */
.footer-mid{
  margin-top: 46px;
}

.footer-contact-title{
  font-size: 14px;
  font-weight: 900;
  color: #111;
  margin-bottom: 6px;
}

.footer-contact-phone{
  font-size: 14px;
  font-weight: 300;
  color: #111;
}

/* 底部：meta + logo */
.footer-bottom{
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 18px;
  align-items: end;
}

.footer-meta{
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  font-size: 12px;
  color: rgba(0,0,0,0.55);
  padding-top: 14px;
  border-top: 1px solid rgba(0,0,0,0.12);
}

.footer-brand{
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.footer-logo{
  width: 140px;
  height: auto;
  display: block;
}

.footer-line{ display:none： }


.footer-logo{
  width: 140px;
  height: auto;
  display: block;
  transform: none;
}

/* 响应式 */
@media (max-width: 1100px){
  .footer-top{ grid-template-columns: repeat(3, minmax(160px, 1fr)); }
  .footer-bottom{ grid-template-columns: 1fr; }
  .footer-brand{ align-items: flex-start; }
}

@media (max-width: 640px){
  .footer-top{ grid-template-columns: repeat(2, minmax(150px, 1fr)); gap: 26px; }
  .footer-mid{ margin-top: 32px; }
}

html, body{
  height: 100%;
  margin: 0;
}

body{
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* 你的主体内容容器最好用 main 包起来 */
main{
  flex: 1;
}

/* footer 自动贴底 */
.site-footer{
  margin-top: auto;
}
/* ===============================
   数字展示条（底部数据模块）
=============================== */
/* ===============================
   Stats Strip（5个数字展示）
   适配你最新 HTML：
   .stats-strip > .stats-inner > .stat-item
   里面用：img + .stat-value(js-odometer) + .stat-label
=============================== */

.stats-strip{
  width: 100%;
  padding-top: 0px;
  padding-bottom: 50px;
  background: #fff;
}

.stats-inner{
  max-width: 1400px;     /* 想更宽：1800/2000 */
  margin: 0 auto;
  padding: 0 24px;

  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px;
  align-items: center;
}

.stat-item{
  text-align: center;
}

/* ✅ 兼容两种写法：你用 img 或 .stat-icon 都行 */
.stat-item > img,
.stat-icon{
  width: 98px;
  height: 98px;
  object-fit: contain;
  display: block;
  margin: 0 auto 10px;
}

/* ✅ 数字/ISO 主体（你新 HTML 用的是 .stat-value） */
.stat-value{
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.5px;
  color: #111;
  margin-bottom: 10px;

  transform-origin: center;
}

/* ✅ 兼容老类名（如果你某处还写 stat-num） */
.stat-num{
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.5px;
  color: #111;
  margin-bottom: 10px;
}

/* 如果你未来把 200+ 的 + 用单独 span 包起来可用 */
.stat-plus{
  font-size: 0.7em;
  vertical-align: top;
  margin-left: 2px;
}

.stat-label{
  font-size: 15px;
  line-height: 1.35;
  color: #222;
  opacity: 0.9;
  white-space: nowrap;          /* 默认一行 */
}

/* 文字太长允许换行（第1条很可能更长） */
@media (max-width: 1200px){
  .stat-label{ white-space: normal; }
}

/* 响应式：小屏自动换行 */
@media (max-width: 980px){
  .stats-inner{ grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 640px){
  .stats-inner{ grid-template-columns: repeat(2, 1fr); }
  .stats-strip{
    padding-top: 36px;
    padding-bottom: 36px;
  }

  .stat-item > img,
  .stat-icon{
    width: 78px;
    height: 78px;
    margin-bottom: 8px;
  }

  .stat-value{
    margin-bottom: 8px;
  }

  .stat-label{
    font-size: 16px;
  }
}

/* ===============================
   滚动触发跳动动效（配合 JS）
=============================== */

.stat-value.is-bouncing{
  animation: statBounce .45s ease;
}

@keyframes statBounce{
  0%   { transform: translateY(6px) scale(.96); opacity:.5; }
  55%  { transform: translateY(-6px) scale(1.06); opacity:1; }
  100% { transform: translateY(0) scale(1); }
}

/* ===== 新闻中心 section ===== */

/* 新闻中心统一灰色体系 */


.newssec{
  padding: 40px 0 150px;  /* ↑ 变更大 */
  background:#fff;
}
.newssec__wrap{
  width: min(1680px, calc(100% - 80px));
  margin:0 auto;
}
.newssec__title{
  font-size:28px;
  font-weight:500;
  color:#2b2b2b;
  margin: 0 0 42px;
}

/* 三栏布局 */
.newssec__grid{
  display:grid;
  grid-template-columns: 1.15fr 1.15fr .85fr;
  gap: 22px;
  align-items: stretch;
}

/* ===== 卡片（左/中） ===== */
.ncard{
  background:#fff;
  border:1px solid #efefef;
  box-shadow: 0 10px 22px rgba(0,0,0,.06);
  height: 720px;
  overflow:hidden;
  cursor:pointer;
}
.ncard__imgbox{
  height: 220px;
  overflow:hidden;
  background:#f3f5f7;
}
.ncard--big .ncard__imgbox{ height: 260px; }

.ncard__img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

/* 中间卡片图片是海报那种：居中 contain */
.ncard__imgbox--center{
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 14px;
}
.ncard__img--contain{
  width:100%;
  height:100%;
  object-fit:contain;
}

.ncard__body{
  padding: 22px 26px 22px; /* 原来 18px 20px */
}
.ncard__tag{
  font-size:18px;
  font-weight:400;
  color:#008BD5;
  margin-bottom: 10px;
}
.ncard__h3{
  margin:0 0 10px;
  font-size:24px;
  font-weight:500;
  color:#222;
  line-height:1.35;
}
.ncard__p{
  margin:0 0 14px;
  font-size:17px;
  line-height:1.8;
  color:#5c5c5c;

  display:-webkit-box;
  -webkit-box-orient:vertical;
  overflow:hidden;
}
.ncard__date{
  font-size:15px;
  color:#9a9a9a;
}

/* hover */
.ncard:hover{
  transform: translateY(-2px);
  transition: transform .18s ease;
}

/* ===== 右侧媒体报道列表 ===== */
:root {
  --brand-light: #f3f7fb;
  --brand-mid: #e9f1f8;
  --brand-deep: #e2ecf6;
}

.nlist {
  background: linear-gradient(
    135deg,
    var(--brand-light) 0%,
    var(--brand-mid) 45%,
    var(--brand-deep) 100%
  );
  border-radius: 12px;
  padding: 20px 18px;
}

.nlist__head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 16px 16px 12px;
}
.nlist__h{
  font-size:23px;
  font-weight:500;
  color:#2b2b2b;
}
.nlist__more{
  font-size:18px;
  font-weight:500;
  color:#008BD5;
  text-decoration:none;
}
.nlist__more:hover{ text-decoration:underline; }

.nlist__box{
  position:relative;
  display:grid;
  grid-template-columns: 1fr 22px; /* 右侧自定义滚动条 */
  gap: 10px;
  padding: 0 10px 10px 10px;
}

/* 可滚动区域 */
.nlist__scroll{
  height: 620px;
  overflow:auto;
  padding-right: 6px;
  scrollbar-width: none; /* Firefox 隐藏 */
}
.nlist__scroll::-webkit-scrollbar{ width:0; height:0; }

.nlist__items{
  padding: 6px 0 10px;
}

/* 列表项 */
.nitem{
  padding: 12px 10px 12px 0;
  border-bottom:1px solid #f0f0f0;
  cursor:pointer;
}
.nitem:last-child{ border-bottom:none; }

.nitem__t{
  font-size:17px;
  font-weight:500;
  color:#222;
  line-height:1.45;
  margin:0 0 6px;
}
.nitem__d{
  font-size:15px;
  color:#9a9a9a;
  margin:0;
}

.nitem.is-active .nitem__t{ color:#008BD5; }

/* ===== 自定义滚动条（右侧橙色） ===== */
.nlist__bar{
  display:flex;
  flex-direction:column;
  align-items:center;
  padding-top: 4px;
}
.nlist__arr{
  width:22px;
  height:20px;
  border:none;
  background:transparent;
  color:#008BD5;
  font-size:12px;
  cursor:pointer;
  opacity:.9;
}
.nlist__arr:hover{ opacity:1; }

.nlist__track{
  position:relative;
  width:6px;
  flex:1;
  margin: 6px 0;
  background: #E8E8E8;
  border-radius: 999px;
}
.nlist__thumb{
  position:absolute;
  left:50%;
  transform:translateX(-50%);
  top:0;
  width:6px;
  height:60px;
  background:#008BD5;
  border-radius: 999px;
  cursor:grab;
}
.nlist__thumb:active{ cursor:grabbing; }

/* ===== 新闻中心：整体放大（只影响 .news 这个板块）===== */
.news{
  padding: 72px 0 96px;
}

/* 容器变宽：从 1200/1280 拉到 1400~1520 */
.news .news-wrap{
  width: min(1520px, calc(100% - 80px));
  margin: 0 auto;
}
/* ===== 响应式 ===== */
@media (max-width: 1100px){
  .newssec__grid{ grid-template-columns: 1fr 1fr; }
  .nlist{ grid-column: 1 / -1; }
  .nlist__scroll{ height: 340px; }
}
@media (max-width: 760px){
  .newssec__wrap{ width: calc(100% - 28px); }
  .newssec__grid{ grid-template-columns: 1fr; }
  .ncard__imgbox{ height: 220px; }
  .ncard--big .ncard__imgbox{ height: 240px; }
}


/* =========================
     Layout / Global
  ========================== */
  .space-sec {
    width: 100%;
    background: #F7F7F7;
    overflow: hidden;
  }

  .space-wrap {
    display: grid;
    grid-template-columns: minmax(160px, 18%) 1fr;
    min-height: 760px;
  }

  /* =========================
     Left Blue Area (+simple animation)
  ========================== */
  .space-left {
    position: relative;
    background: #418AD0;
    color: #fff;
    overflow: hidden;
  }

  .space-left-bg {
    position: absolute;
    inset: -40%;
    pointer-events: none;
    opacity: 0.9;
  }

  .space-left-bg::before,
  .space-left-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background-repeat: no-repeat;
    transform: rotate(0deg);
  }

  .space-left-bg::before {
    background-image:
      linear-gradient(135deg, rgba(255,255,255,0.14) 0%, rgba(255,255,255,0.0) 45%),
      linear-gradient(135deg, rgba(255,255,255,0.10) 0%, rgba(255,255,255,0.0) 55%),
      linear-gradient(135deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.0) 60%);
    background-size: 520px 520px, 420px 420px, 320px 320px;
    background-position: 10% 20%, 35% 60%, 70% 25%;
    animation: spaceLeftDrift 10s linear infinite;
  }

  .space-left-bg::after {
    background-image:
      linear-gradient(110deg, rgba(255,255,255,0.00) 0%, rgba(255,255,255,0.14) 45%, rgba(255,255,255,0.00) 75%);
    background-size: 320px 900px;
    background-position: -20% 0%;
    animation: spaceLeftSweep 4.8s ease-in-out infinite;
    mix-blend-mode: overlay;
    opacity: 0.7;
  }

  @keyframes spaceLeftDrift {
    0% { transform: translate3d(-2%, -2%, 0) rotate(0deg); }
    50% { transform: translate3d(2%, 1%, 0) rotate(0.5deg); }
    100% { transform: translate3d(-2%, -2%, 0) rotate(0deg); }
  }

  @keyframes spaceLeftSweep {
    0% { background-position: -30% 0%; opacity: 0.25; }
    50% { background-position: 120% 0%; opacity: 0.55; }
    100% { background-position: 220% 0%; opacity: 0.25; }
  }

  .space-left-inner {
    position: relative;
    z-index: 2;
    height: 100%;
    display: grid;
    align-content: start;
    justify-items: center;
    text-align: center;
    padding: 140px 22px 0;
    gap: 14px;
  }

  .space-left-title {
    font-size: 34px;
    font-weight: 600;
    letter-spacing: 0px;
  }

  .space-left-sub {
    font-size: 16px;
    line-height: 1.75;
    opacity: 0.95;
  }

  /* =========================
     Right Area (Top: white content)
  ========================== */
  .space-right {
    background: #ededed;
    display: grid;
    grid-template-rows: 1fr 86px;
    min-height: 560px;
  }

  .space-top {
    position: relative;
    background: #ffffff;
    overflow: hidden;
  }

  .space-top-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 26px;
    padding: 34px 30px 26px 30px;
    min-height: 474px;
    align-items: start;
  }

  .space-intro-kicker {
    font-size: 13px;
    color: #6b6b6b;
    margin-top: 4px;
  }

  .space-intro-title {
    margin: 10px 0 18px;
    font-size: 30px;
    line-height: 1.25;
    font-weight: 400;
    color: #2a2a2a;
    letter-spacing: 0.2px;
  }

  .space-intro-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #f2a126;
    font-weight: 700;
    font-size: 14px;
  }

  .space-intro-btn-ic {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: inline-grid;
    place-items: center;
    background: #f2a126;
    color: #fff;
    font-size: 18px;
    line-height: 1;
  }

  /* =========================
     Product Grid (NO borders)
     目标：只显示“一个小标题”，样式参考图里“车规级传感”
     图片在上，文字在下
  ========================== */
  .space-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(180px, 1fr));
    gap: 16px 20px;
    /* ✅关键：整体往下移（让它从绿色框顶部开始） */
    margin-top: 158px;
  /* ✅关键：不要贴着底部，限制高度并把内容往上靠一点 */
    max-height: 750px;          /* 你可以调：300~380 */
    align-content: start;

  /* ✅让每个格子里的内容居中 */
    justify-items: center;
    margin-left: -300px;
  }

  .space-card {
    width: 100%;
    display: flex;
    justify-content: center;
    position: relative;
    background: transparent;
    border: none;
    border-radius: 0;
    overflow: visible;
    cursor: pointer;
    transition: transform .18s ease;
    border-radius: 10px;
  }

  .space-card:hover {
    transform: translateY(-2px);
  }

  /* 卡片点击区域 */
.space-card a{
  display: grid;
  grid-template-rows: 120px auto;  /* 图片区高度 */
  gap: 16px;
  text-decoration: none;
  color: inherit;
  justify-items: center;
  padding: 22px 18px 18px;
  border-radius: 10px;
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(0,0,0,0.06);


  /* 玻璃质感（有支持就更高级） */
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;           /* ✅整体居中 */
}

.space-card a{
  width: 100%;
  max-width: 260px;      /* 🔥 统一最大宽度 */
  height: 200px;         /* 🔥 统一高度 */
  padding: 28px 20px;
  box-sizing: border-box;
}
/* hover：更浮一点 */
.space-card:hover a{
  transform: translateY(-6px);
  background: rgba(255,255,255,0.70);
}

  /* 图片在上：放大一点 */
.space-card-img{
  width: 100%;
  height: 120px;
  display: grid;
  place-items: center;
}

 .space-card-img img{
  max-width: 160px;    /* ✅你图里产品更大 */
  max-height: 120px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

/* 标题在下：居中且颜色/字重更贴近截图 */
.space-card-title{
  text-align: center;
  font-size: 14px;
  font-weight: 300;
  color: #6b6b6b;
  letter-spacing: 0.4px;
  line-height: 1.2;
}

  /* 彻底隐藏旧结构（如果你不小心还有残留结构也不会显示） */
  .space-card-inner,
  .space-card-tag,
  .space-card-name,
  .space-card-desc,
  .space-card-thumb {
    display: none !important;
  }

  /* Right hero image */
  .space-hero {
    position: absolute;
    right: 8%;
    top: 18%;
    width: min(520px, 46%);
    z-index: 1;
    opacity: 1;
    pointer-events: none;
  }

  .space-hero img {
    width: 100%;
    height: auto;
    display: block;
  }

  /* =========================
     Bottom Bar
  ========================== */
  .space-bottom {
    position: relative;
    display: grid;
    grid-template-columns: 260px 1fr 46px;
    align-items: stretch;
    border-top: 1px solid rgba(0,0,0,0.06);
    background: #8f8f8f;
  }

  .space-bottom-left {
    display: flex;
    align-items: stretch;
  }

  .space-bottom-title {
    width: 100%;
    background: #f2a126;
    color: #fff;
    padding: 14px 14px 12px 18px;
    display: grid;
    align-content: center;
    gap: 3px;
  }

  .space-bottom-title-main {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0px;
  }

  .space-bottom-title-sub {
    font-size: 12px;
    opacity: 0.92;
    letter-spacing: 0px;
  }

  .space-tabs {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
  }

  .space-tab {
    border: 0;
    background: #8f8f8f;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0px;
    cursor: pointer;
    outline: none;
    user-select: none;
    color: rgba(255,255,255,0.95);
  }

  .space-tab:not(:first-child) {
    box-shadow: inset 1px 0 0 rgba(255,255,255,0.12);
  }

  .space-tab.is-active {
    background: #f2a126;
    color: #fff;
  }

  .space-bottom-arrow {
    background: #f2a126;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 26px;
    font-weight: 900;
  }

  .space-hero { display: none !important; }
  /* =========================
     Responsive
  ========================== */
@media (max-width: 1280px) {
  .space-wrap {
    grid-template-columns: 240px 1fr;
  }

  .space-right {
    min-width: 0;
  }

  .space-top {
    padding: 26px 22px 18px;
  }

  /* 关键：改成单列，标题在上，产品在下 */
  .space-top-inner {
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 18px;
    min-height: auto;
  }

  /* 如果左侧文案块有单独容器，限制一下宽度，避免太长 */
  .space-copy,
  .space-content,
  .space-top-copy,
  .space-copy-wrap {
    max-width: 520px;
  }

  .space-grid {
    grid-template-columns: repeat(3, minmax(160px, 1fr));
    gap: 16px;
    margin-top: 0;      /* 关键：不能再往下顶 */
    margin-left: 0;
    max-height: none;
    width: 100%;
    justify-items: stretch;
    align-content: start;
  }

  .space-card {
    width: 100%;
  }

  .space-card a {
    max-width: 100%;
    height: 182px;
    padding: 18px 14px 14px;
    grid-template-rows: 96px auto;
    gap: 10px;
  }

  .space-card-img {
    height: 96px;
  }

  .space-card-img img {
    max-width: 118px;
    max-height: 96px;
  }

  .space-card-title {
    font-size: 13px;
    line-height: 1.35;
  }

  .space-bottom {
    grid-template-columns: 180px 1fr 38px;
  }

  .space-bottom-title {
    padding: 10px 12px;
  }

  .space-bottom-title-main {
    font-size: 14px;
  }

  .space-bottom-title-sub {
    font-size: 11px;
  }

  .space-tabs {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    min-width: 0;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .space-tabs::-webkit-scrollbar {
    display: none;
  }

  .space-tab {
    flex: 0 0 auto;
    min-width: 124px;
    padding: 0 14px;
    white-space: nowrap;
    font-size: 12px;
  }

  .space-bottom-arrow {
    font-size: 18px;
  }
}

/* ---------- 1100 以下：仍然维持3列，但卡片再缩一点 ---------- */
@media (max-width: 1100px) {
  .space-wrap {
    grid-template-columns: 220px 1fr;
  }

  .space-right {
    min-width: 0;
  }

  .space-top {
    padding: 22px 18px 16px;
  }

  /* 继续保持单列，不要回到左右分栏 */
  .space-top-inner {
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 16px;
    min-height: auto;
  }

  .space-copy,
  .space-content,
  .space-top-copy,
  .space-copy-wrap {
    max-width: 480px;
  }

  .space-grid {
    grid-template-columns: repeat(3, minmax(145px, 1fr));
    gap: 14px;
    margin-top: 0;
    margin-left: 0;
    max-height: none;
    width: 100%;
    justify-items: stretch;
    align-content: start;
  }

  .space-card a {
    max-width: 100%;
    height: 170px;
    padding: 16px 12px 12px;
    grid-template-rows: 88px auto;
    gap: 10px;
  }

  .space-card-img {
    height: 88px;
  }

  .space-card-img img {
    max-width: 108px;
    max-height: 88px;
  }

  .space-card-title {
    font-size: 12px;
    line-height: 1.35;
  }

  #spaceGrid {
    max-height: none;
    padding-right: 0;
  }

  .space-bottom {
    grid-template-columns: 170px 1fr 36px;
  }

  .space-tab {
    font-size: 11px;
    padding: 0 10px;
  }
}

/* ---------- 大手机 / 小平板（<=860） ---------- */
@media (max-width: 860px) {
  .space-wrap {
    grid-template-columns: 1fr;
  }

  .space-left {
    min-height: 180px;
  }

  .space-left-inner {
    padding: 28px 18px;
  }

  .space-left-title {
    font-size: 18px;
  }

  .space-left-sub {
    font-size: 14px;
    line-height: 1.5;
  }

  .space-right {
    grid-template-rows: auto auto;
  }

  .space-top {
    padding: 18px 14px 16px;
  }

  .space-top-inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .space-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 0;
    margin-left: 0;
    padding-right: 0;
    width: 100%;
    max-height: none;
    align-content: start;
    justify-items: stretch;
  }

  .space-card {
    width: 100%;
  }

  .space-card a {
    width: 100%;
    max-width: 100%;
    height: 176px;
    padding: 16px 12px 14px;
    grid-template-rows: 92px auto;
    gap: 10px;
    border-radius: 12px;
  }

  .space-card-img {
    height: 92px;
  }

  .space-card-img img {
    max-width: 118px;
    max-height: 92px;
  }

  .space-card-title {
    font-size: 13px;
    font-weight: 400;
    line-height: 1.35;
    letter-spacing: 0.2px;
    word-break: break-word;
  }

  /* 手机上不建议固定大高度滚动，容易和整页滚动冲突 */
  #spaceGrid {
    max-height: none;
    overflow: visible;
    padding-right: 0;
  }

  .space-bottom {
    grid-template-columns: 132px 1fr 34px;
    min-height: 62px;
  }

  .space-bottom-title {
    padding: 10px 10px 10px 12px;
  }

  .space-bottom-title-main {
    font-size: 13px;
    line-height: 1.2;
  }

  .space-bottom-title-sub {
    font-size: 10px;
    line-height: 1.2;
  }

  .space-tabs {
    grid-template-columns: repeat(5, 1fr);
  }

  .space-tab {
    font-size: 11px;
    font-weight: 700;
    padding: 0 4px;
    line-height: 1.2;
  }

  .space-bottom-arrow {
    font-size: 18px;
  }
}

/* ---------- 手机（<=640） ---------- */
@media (max-width: 640px) {
  .space-sec {
    overflow: hidden;
  }

  .space-left {
    min-height: 150px;
  }

  .space-left-inner {
    padding: 22px 16px;
  }

  .space-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .space-card a {
    height: 160px;
    padding: 14px 10px 12px;
    grid-template-rows: 82px auto;
    gap: 8px;
  }

  .space-card-img {
    height: 82px;
  }

  .space-card-img img {
    max-width: 100px;
    max-height: 82px;
  }

  .space-card-title {
    font-size: 12px;
    line-height: 1.3;
  }

  .space-bottom {
    grid-template-columns: 110px 1fr 30px;
  }

  .space-bottom-title {
    padding: 8px 8px 8px 10px;
  }

  .space-bottom-title-main {
    font-size: 12px;
  }

  .space-bottom-title-sub {
    display: none;
  }

  .space-tab {
    font-size: 10px;
    padding: 0 2px;
  }

  .space-bottom-arrow {
    font-size: 16px;
  }
}


@media (max-width: 768px) {
  .space-bottom {
    grid-template-columns: 96px 1fr 28px;
    min-height: 52px;
  }

  .space-bottom-title {
    padding: 8px 8px 8px 10px;
  }

  .space-bottom-title-main {
    font-size: 11px;
    line-height: 1.2;
    letter-spacing: 0;
  }

  .space-bottom-title-sub {
    display: none;
  }

  .space-tabs {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .space-tabs::-webkit-scrollbar {
    display: none;
  }

  .space-tab {
    flex: 0 0 auto;
    min-width: 92px;      /* 每个tab最小宽度 */
    padding: 0 12px;
    font-size: 11px;
    font-weight: 700;
    white-space: nowrap;
    line-height: 52px;    /* 跟底部栏高度对齐 */
    text-align: center;
  }

  .space-tab:not(:first-child) {
    box-shadow: inset 1px 0 0 rgba(255,255,255,0.12);
  }

  .space-bottom-arrow {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .space-bottom {
    position: relative;
  }

  .space-tabs {
    position: relative;
  }

  .space-tabs::after {
    content: "";
    position: sticky;
    right: 0;
    top: 0;
    width: 18px;
    height: 100%;
    margin-left: auto;
    pointer-events: none;
    background: linear-gradient(to right, rgba(143,143,143,0), rgba(143,143,143,1));
    flex: 0 0 18px;
  }
}
/* 更小屏再压一档 */
@media (max-width: 480px) {
  .space-bottom {
    grid-template-columns: 86px 1fr 26px;
    min-height: 48px;
  }

  .space-bottom-title {
    padding: 7px 6px 7px 8px;
  }

  .space-bottom-title-main {
    font-size: 10px;
  }

  .space-tab {
    min-width: 84px;
    padding: 0 10px;
    font-size: 10px;
    line-height: 48px;
  }

  .space-bottom-arrow {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .space-bottom {
    grid-template-columns: 96px 1fr 28px;
    min-height: 52px;
    height: 52px;
  }

  .space-bottom-title {
    padding: 8px 8px 8px 10px;
  }

  .space-bottom-title-main {
    font-size: 11px;
    line-height: 1.2;
    letter-spacing: 0;
  }

  .space-bottom-title-sub {
    display: none;
  }

  .space-tabs {
    display: flex;
    align-items: stretch;
    overflow-x: auto;
    overflow-y: hidden;
    height: 52px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .space-tabs::-webkit-scrollbar {
    display: none;
  }

  .space-tab {
    flex: 0 0 auto;
    min-width: 96px;
    height: 52px;
    min-height: 52px;
    padding: 0 12px;
    box-sizing: border-box;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;

    border: 0;
    border-radius: 0;
    appearance: none;
    -webkit-appearance: none;
  }

  .space-tab:not(:first-child) {
    box-shadow: inset 1px 0 0 rgba(255,255,255,0.12);
  }

  .space-tab.is-active {
    background: #f2a126;
    color: #fff;
  }

  .space-bottom-arrow {
    font-size: 16px;
  }

  .space-tabs::after {
    content: "";
    position: sticky;
    right: 0;
    top: 0;
    width: 18px;
    height: 52px;
    margin-left: auto;
    pointer-events: none;
    background: linear-gradient(to right, rgba(143,143,143,0), rgba(143,143,143,1));
    flex: 0 0 18px;
  }
}

@media (max-width: 480px) {
  .space-bottom {
    grid-template-columns: 86px 1fr 26px;
    min-height: 48px;
    height: 48px;
  }

  .space-bottom-title {
    padding: 7px 6px 7px 8px;
  }

  .space-bottom-title-main {
    font-size: 10px;
  }

  .space-tabs {
    height: 48px;
  }

  .space-tab {
    min-width: 92px;
    height: 48px;
    min-height: 48px;
    padding: 0 10px;
    font-size: 10px;
    line-height: 1;
  }

  .space-tabs::after {
    height: 48px;
  }

  .space-bottom-arrow {
    font-size: 14px;
  }
}