/* 全站主样式：导航 / 色板 / 首页区块（源自静态首页稿） */

  /* ===== 全局重置 & CSS变量 ===== */
  :root {
    --white: #FFFFFF;
    --bg-warm: #F8F7F3;
    --bg-light: #ECEAE5;
    --ink: #222222;
    --gold: #B8A58A;
    --card-border: #E5E2DC;
    --max-width: 1560px;
    --safe: 100px;
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Avenir', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  }

  * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

  html {
    scroll-behavior: smooth;
  }

  body {
    background: var(--white);
    color: var(--ink);
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 17px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }

  /* 正文图默认不强制铺满；卡片/媒体区再单独设 object-fit */
  img {
    display: block;
    max-width: 100%;
    height: auto;
  }

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

  .wrap {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--safe);
  }

  /* ===== 标题字体 ===== */
  h1, h2, h3 {
    font-family: var(--font-heading);
    font-weight: 500;
    letter-spacing: 0.01em;
    color: var(--ink);
  }

  h1 {
    font-size: 64px;
    line-height: 1.08;
  }
  h2 {
    font-size: 42px;
    line-height: 1.18;
  }
  h3 {
    font-size: 24px;
    line-height: 1.3;
  }

  /* ===== 辅助元素 ===== */
  .eyebrow {
    font-family: var(--font-body);
    font-size: 12.5px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 18px;
    display: block;
  }

  .rule {
    width: 44px;
    height: 1px;
    background: var(--gold);
    margin: 20px 0;
  }

  .radius-img {
    border-radius: 8px;
    overflow: hidden;
  }
  .radius-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  .radius-img:hover img {
    transform: scale(1.03);
  }

  /* ===== 滚动渐入动画 ===== */
  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  .reveal.in {
    opacity: 1;
    transform: translateY(0);
  }
  .d1 {
    transition-delay: 0.1s;
  }
  .d2 {
    transition-delay: 0.2s;
  }
  .d3 {
    transition-delay: 0.3s;
  }
  .d4 {
    transition-delay: 0.4s;
  }
  .d5 {
    transition-delay: 0.5s;
  }

  /* ===== 区块间距 ===== */
  section {
    padding: 80px 0;
  }
  .section-tight {
    padding: 80px 0;
  }
  .bg-warm {
    background: var(--bg-warm);
  }
  .bg-light {
    background: var(--bg-light);
  }

  /* ===== 按钮 ===== */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 52px;
    padding: 0 32px;
    border-radius: 3px;
    font-family: var(--font-body);
    font-size: 14.5px;
    letter-spacing: 0.03em;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    border: 1px solid var(--ink);
    transition: background 0.3s ease, color 0.3s ease;
  }
  .btn-primary {
    background: var(--ink);
    color: #fff;
  }
  .btn-primary:hover {
    background: #000;
  }
  .btn-secondary {
    background: transparent;
    color: var(--ink);
  }
  .btn-secondary:hover {
    background: var(--ink);
    color: #fff;
  }

 /* ============================================================
导航栏 — Logo居中，OEM&ODM右移，About Us左移，搜索最右侧
============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 88px;
  display: flex;
  align-items: center;
  background: #FFFFFF;
  border-bottom: 1px solid var(--card-border);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 100px;
  position: relative;
}

/* 左侧菜单 */
.nav-left {
  display: flex;
  list-style: none;
  gap: 140px;
  margin: 0;
  padding: 0;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.03em;
  flex-shrink: 0;
  position: absolute;
  left: 160px;
}

/* 右侧菜单 */
.nav-right {
  display: flex;
  list-style: none;
  gap: 140px;
  margin: 0;
  padding: 0;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.03em;
  flex-shrink: 0;
  position: absolute;
  right: 160px;
}

.nav-links a {
  text-decoration: none;
  color: var(--ink);
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav-links a:hover::after {
  width: 100%;
}

/* 中间 Logo */
.nav-logo-center {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-img-wrap-center {
  width: 60px;
  flex-shrink: 0;
}
.logo-img-wrap-center img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* 搜索图标 — 最右侧 */
.nav-search-btn {
  position: absolute;
  right: 100px;
  top: 50%;
  transform: translateY(-50%);
  background: #f0f0f0;
  border: none;
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  border-radius: 50%;
  transition: background 0.3s ease, color 0.3s ease;
  width: 40px;
  height: 40px;
}
.nav-search-btn:hover {
  background: var(--gold);
  color: #fff;
}

/* 搜索下拉面板 */
.search-dropdown {
  position: fixed;
  top: 88px;
  left: 0;
  right: 0;
  background: #ffffff;
  padding: 0 100px;
  z-index: 99;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.4s ease, padding 0.4s ease;
  box-shadow: 0 8px 40px rgba(0,0,0,0.12);
  border-bottom: 2px solid var(--gold);
}

.search-dropdown.open {
  max-height: 140px;
  opacity: 1;
  padding: 28px 100px;
}

.search-dropdown-form {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
}
.search-dropdown-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
}

.search-input {
  flex: 1;
  min-width: 0;
  background: transparent;
  border: none;
  border-bottom: 2px solid #ddd;
  padding: 14px 0;
  font-size: 20px;
  font-weight: 500;
  font-family: var(--font-body);
  color: var(--ink);
  outline: none;
  transition: border-color 0.3s ease;
  -webkit-appearance: none;
  appearance: none;
}
.search-input::-webkit-search-cancel-button,
.search-input::-webkit-search-decoration,
.search-input::-webkit-search-results-button,
.search-input::-webkit-search-results-decoration {
  -webkit-appearance: none !important;
  appearance: none !important;
  display: none !important;
  width: 0 !important;
  height: 0 !important;
}
.search-input::-ms-clear,
.search-input::-ms-reveal {
  display: none !important;
  width: 0;
  height: 0;
}
.search-input::placeholder {
  color: #aaa;
  font-weight: 400;
}
.search-input:focus {
  border-bottom-color: var(--gold);
}

.search-submit-btn {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: #f0f0f0;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, color 0.3s ease;
}
.search-submit-btn:hover {
  background: var(--gold);
  color: #fff;
}
.search-submit-btn svg {
  display: block;
}

.search-close-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: #999;
  transition: color 0.3s ease;
  flex-shrink: 0;
}
.search-close-btn:hover {
  color: var(--ink);
}

.nav.search-active {
  border-bottom-color: var(--gold);
}

/* 汉堡菜单 - 移动端显示 */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 101;
}
.hamburger span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--ink);
  transition: 0.3s ease;
}
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== 响应式 ===== */
@media (max-width: 1100px) {
  .hamburger {
    display: flex;
  }
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    padding: 100px 40px 40px;
    flex-direction: column;
    gap: 28px;
    transition: right 0.35s ease;
    box-shadow: -4px 0 30px rgba(0, 0, 0, 0.08);
    border-left: 1px solid var(--card-border);
    font-size: 18px;
  }
  .nav-links.open {
    right: 0;
  }
  .nav-wrap {
    padding: 0 32px;
  }
  .nav-left {
    position: static;
    display: none;
  }
  .nav-right {
    position: static;
    display: none;
  }
  .nav-logo-center {
    margin: 0 auto;
  }
  .nav-search-btn {
    position: static;
    transform: none;
    margin-left: auto;
  }
  .search-dropdown {
    padding: 0 32px;
  }
  .search-dropdown.open {
    padding: 24px 32px;
  }
}

 /* ============================================================
五张海报轮播 CSS (宽高按海报图片比例自适应，原图 1920×800)
============================================================ */
.banner-slider-section {
  width: 100%;
  height: auto;
  aspect-ratio: 1920 / 800;
  padding: 0;
  margin-top: 88px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.banner-viewport {
  position: relative;
  width: 100%;
  height: 100%;
}

.banner-track {
  display: flex;
  height: 100%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  gap: 0;

  scrollbar-width: none;
  -ms-overflow-style: none;
}
.banner-track::-webkit-scrollbar { display: none; }

.banner-slide {
  flex: 0 0 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  scroll-snap-align: start;
  position: relative;
}

/* 去掉所有压暗 */
.banner-slide::before {
  display: none;
}

.banner-content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  align-items: center;
  width: 100%;
}
.banner-content .hero-content {
  width: 100%;
  max-width: 720px;
}
.banner-slide--right .hero-content {
  margin-left: auto;
  text-align: right;
}
.banner-slide--right .hero-actions {
  justify-content: flex-end;
}
.banner-slide--left .hero-content {
  margin-right: auto;
  text-align: left;
}
.banner-slide--center .hero-content {
  margin: 0 auto;
  text-align: center;
  max-width: 1100px;
}
.banner-slide--center .hero-actions {
  justify-content: center;
}
/* 海报3：桌面偏上右对齐 */
.banner-slide:nth-child(3) .banner-content {
  align-items: flex-start;
  padding-top: clamp(72px, 10vw, 160px);
}
/* 海报4/5：文案中间偏上 */
.banner-slide:nth-child(4) .banner-content,
.banner-slide:nth-child(5) .banner-content {
  align-items: flex-start;
  padding-top: clamp(48px, 8vw, 120px);
}
.banner-slide:nth-child(5) .hero-content {
  text-align: center;
  margin: 0 auto;
  max-width: 700px;
}

/* 静态页实际展示：第3/5张也是深色文案（HTML 内联色），覆盖默认白色 */
.banner-slide:nth-child(3) .hero-content h1,
.banner-slide:nth-child(5) .hero-content h1,
.banner-slide--dark .hero-content h1 {
  color: #222222 !important;
}
.banner-slide:nth-child(3) .hero-content .lede,
.banner-slide:nth-child(5) .hero-content .lede,
.banner-slide--dark .hero-content .lede {
  color: rgba(34, 34, 34, 0.75) !important;
}
.banner-slide:nth-child(3) .hero-content .eyebrow,
.banner-slide:nth-child(5) .hero-content .eyebrow,
.banner-slide--dark .hero-content .eyebrow {
  color: rgba(34, 34, 34, 0.5) !important;
}
.banner-slide:nth-child(3) .btn-secondary,
.banner-slide:nth-child(5) .btn-secondary {
  color: #222222 !important;
  border-color: rgba(34, 34, 34, 0.4) !important;
  background: transparent !important;
}
/* 第3/5张次按钮悬停：白底深字（对齐静态页） */
.banner-slide:nth-child(3) .btn-secondary:hover,
.banner-slide:nth-child(5) .btn-secondary:hover {
  background: #fff !important;
  color: #222222 !important;
  border-color: #fff !important;
}
.banner-slide:nth-child(3) .btn-primary,
.banner-slide:nth-child(5) .btn-primary,
.banner-slide--dark .btn-primary {
  background: #222222 !important;
  color: #fff !important;
  border-color: #222222 !important;
}
.banner-slide:nth-child(3) .btn-primary:hover,
.banner-slide:nth-child(5) .btn-primary:hover,
.banner-slide--dark .btn-primary:hover {
  background: #000 !important;
  border-color: #000 !important;
}

/* 第3张标题两行，对齐静态页字号（由下方 clamp 控制） */
.banner-slide:nth-child(3) .hero-content h1 {
  line-height: 1.18;
}

/* 第一张、第二张、第四张海报文案黑色（与首页统一 #222222） */
.banner-slide:first-child .hero-content h1,
.banner-slide:nth-child(2) .hero-content h1,
.banner-slide:nth-child(4) .hero-content h1 {
  color: #222222 !important;
}
.banner-slide:first-child .hero-content .lede,
.banner-slide:nth-child(2) .hero-content .lede,
.banner-slide:nth-child(4) .hero-content .lede {
  color: rgba(34, 34, 34, 0.75) !important;
}
.banner-slide:first-child .hero-content .eyebrow,
.banner-slide:nth-child(2) .hero-content .eyebrow,
.banner-slide:nth-child(4) .hero-content .eyebrow {
  color: rgba(34, 34, 34, 0.5) !important;
}
.banner-slide:first-child .btn-secondary,
.banner-slide:nth-child(2) .btn-secondary,
.banner-slide:nth-child(4) .btn-secondary {
  color: #222222 !important;
  border-color: rgba(34, 34, 34, 0.4) !important;
}
.banner-slide:first-child .btn-secondary:hover,
.banner-slide:nth-child(2) .btn-secondary:hover,
.banner-slide:nth-child(4) .btn-secondary:hover {
  background: #222222 !important;
  color: #fff !important;
}
.banner-slide:first-child .btn-primary,
.banner-slide:nth-child(2) .btn-primary,
.banner-slide:nth-child(4) .btn-primary {
  background: #222222 !important;
  color: #fff !important;
  border-color: #222222 !important;
}
.banner-slide:first-child .btn-primary:hover,
.banner-slide:nth-child(2) .btn-primary:hover,
.banner-slide:nth-child(4) .btn-primary:hover {
  background: #000 !important;
  border-color: #000 !important;
}
/* 默认文案色（未标记 dark 的海报） */
.banner-content .hero-content h1 {
  color: #fff;
  margin: 0;
  line-height: 1.12;
}
.banner-content .hero-content .lede {
  font-size: 19px;
  color: rgba(255, 255, 255, 0.85);
  margin: 24px 0 40px;
  font-weight: 500;
  line-height: 1.45;
}
.banner-content .hero-actions {
  display: flex;
  gap: 16px;
}
.banner-content .btn-primary {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}
.banner-content .btn-primary:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}
.banner-content .btn-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.6);
}
.banner-content .btn-secondary:hover {
  background: #fff;
  color: var(--ink);
}

/* 深色文案海报（1/2/4）：次按钮悬停为深底白字 */
.banner-slide:first-child .banner-content .btn-secondary:hover,
.banner-slide:nth-child(2) .banner-content .btn-secondary:hover,
.banner-slide:nth-child(4) .banner-content .btn-secondary:hover {
  background: #222222 !important;
  color: #fff !important;
  border-color: #222222 !important;
}

/* 浅底海报（3/5）：次按钮悬停为白底深字 */
.banner-slide:nth-child(3) .banner-content .btn-secondary:hover,
.banner-slide:nth-child(5) .banner-content .btn-secondary:hover {
  background: #fff !important;
  color: #222222 !important;
  border-color: #fff !important;
}

.banner-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(34, 34, 34, 0.6);
  backdrop-filter: blur(4px);
  color: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  border-radius: 4px;
  transition: background 0.2s, transform 0.2s;
}
.banner-arrow:hover {
  background: rgba(0, 0, 0, 0.8);
  transform: translateY(-50%) scale(1.05);
}

.arrow-left { left: 20px; }
.arrow-right { right: 20px; }

/* 避开右侧浮动通讯栏（约 52px） */
body.ty-site .banner-slider-section .arrow-left {
  left: 40px;
}
body.ty-site .banner-slider-section .arrow-right {
  right: 80px;
  z-index: 20;
}
body.ty-site .banner-slider-section .banner-arrow {
  z-index: 20;
}

/* 动态海报文案自适应：桌面 → 平板 → 手机 */
body.ty-site .banner-content .hero-content h1 {
  font-size: clamp(28px, 3.2vw + 12px, 58px);
  white-space: normal;
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: normal;
  hyphens: auto;
}
body.ty-site .banner-slide:first-child .hero-content h1 {
  font-size: clamp(28px, 3.4vw + 12px, 58px);
}
body.ty-site .banner-slide:nth-child(3) .hero-content h1 {
  font-size: clamp(24px, 2.8vw + 10px, 46px);
}
body.ty-site .banner-slide:nth-child(4) .hero-content h1 {
  font-size: clamp(26px, 3vw + 12px, 52px);
}
body.ty-site .banner-content .hero-content .lede {
  font-size: clamp(13px, 0.7vw + 11px, 19px);
  font-weight: 500;
  max-width: min(640px, 100%);
  margin: clamp(12px, 2vw, 24px) 0 clamp(20px, 3.2vw, 40px);
}
body.ty-site .banner-slide:nth-child(4) .hero-content .lede {
  font-size: clamp(13px, 0.8vw + 11px, 18px);
  max-width: min(700px, 100%);
}
body.ty-site .banner-slide--center .hero-content .lede {
  margin-left: auto;
  margin-right: auto;
}
body.ty-site .banner-slide--right .hero-content .lede {
  margin-left: auto;
}
body.ty-site .banner-content .hero-actions {
  flex-wrap: wrap;
  gap: 12px 16px;
}
body.ty-site .banner-slide--center .banner-content {
  padding-top: clamp(48px, 8vw, 80px);
}

@media (max-width: 1100px) {
  body.ty-site .banner-slider-section {
    aspect-ratio: 16 / 9;
    min-height: 420px;
  }
  body.ty-site .banner-slider-section .arrow-left {
    left: 16px;
  }
  body.ty-site .banner-slider-section .arrow-right {
    right: 72px;
  }
  body.ty-site .banner-slider-section .banner-content {
    align-items: center !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  body.ty-site .banner-content .hero-content {
    max-width: 100%;
  }
  body.ty-site .banner-slide--right .hero-content,
  body.ty-site .banner-slide--left .hero-content,
  body.ty-site .banner-slide--center .hero-content,
  body.ty-site .banner-slide:nth-child(5) .hero-content {
    margin-left: 0 !important;
    margin-right: 0 !important;
    text-align: left !important;
    max-width: 100% !important;
  }
  body.ty-site .banner-slide--right .hero-actions,
  body.ty-site .banner-slide--center .hero-actions {
    justify-content: flex-start !important;
  }
  body.ty-site .banner-slide--right .hero-content .lede,
  body.ty-site .banner-slide--center .hero-content .lede {
    margin-left: 0;
    margin-right: 0;
  }
  body.ty-site .banner-content .hero-content h1,
  body.ty-site .banner-slide:first-child .hero-content h1,
  body.ty-site .banner-slide:nth-child(3) .hero-content h1,
  body.ty-site .banner-slide:nth-child(4) .hero-content h1 {
    font-size: clamp(28px, 4.2vw, 42px);
  }
}

@media (max-width: 768px) {
  body.ty-site .banner-slider-section {
    aspect-ratio: unset;
    height: min(68vh, 520px);
    min-height: 440px;
  }
  body.ty-site .banner-content.wrap {
    padding-left: 52px;
    padding-right: 52px;
  }
  body.ty-site .banner-content .hero-content h1,
  body.ty-site .banner-slide:first-child .hero-content h1,
  body.ty-site .banner-slide:nth-child(3) .hero-content h1,
  body.ty-site .banner-slide:nth-child(4) .hero-content h1 {
    font-size: clamp(24px, 6.4vw, 32px);
    line-height: 1.18;
  }
  body.ty-site .banner-content .hero-content .lede,
  body.ty-site .banner-slide:nth-child(4) .hero-content .lede {
    font-size: clamp(13px, 3.5vw, 15px);
    margin: 12px 0 22px;
    line-height: 1.5;
  }
  body.ty-site .banner-slider-section .banner-arrow {
    width: 36px;
    height: 36px;
  }
  body.ty-site .banner-slider-section .arrow-left {
    left: 10px;
  }
  /* 手机端浮动通讯在底部，不挡中部箭头，可靠右 */
  body.ty-site .banner-slider-section .arrow-right {
    right: 12px;
  }
  body.ty-site .banner-content .hero-actions {
    gap: 10px;
  }
  body.ty-site .banner-content .hero-actions .btn {
    height: 42px;
    padding: 0 18px;
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  body.ty-site .banner-slider-section {
    height: min(75vh, 520px);
    min-height: 460px;
  }
  body.ty-site .banner-content.wrap {
    padding-left: 48px;
    padding-right: 48px;
  }
  body.ty-site .banner-content .hero-content h1,
  body.ty-site .banner-slide:first-child .hero-content h1,
  body.ty-site .banner-slide:nth-child(3) .hero-content h1,
  body.ty-site .banner-slide:nth-child(4) .hero-content h1 {
    font-size: clamp(22px, 6.8vw, 28px);
  }
  body.ty-site .banner-content .hero-content .lede,
  body.ty-site .banner-slide:nth-child(4) .hero-content .lede {
    font-size: 13px;
    margin: 10px 0 18px;
  }
  body.ty-site .banner-content .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }
  body.ty-site .banner-content .hero-actions .btn {
    width: auto;
    min-width: 0;
    max-width: 100%;
    height: 40px;
    padding: 0 16px;
    font-size: 12.5px;
  }
  body.ty-site .banner-slider-section .arrow-right {
    right: 10px;
  }
}


/* ============================================================
轮播 CSS (背景纯白，卡底浅灰，带小文案)
============================================================ */
.marketing-carousel-section {
  width: 100%;
  padding: 60px 0 80px;
  background: #FFFFFF;
}

.marketing-carousel-container {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}

.marketing-header {
  text-align: center;
  margin-bottom: 40px;
}
.marketing-header .eyebrow {
  color: var(--gold);
  margin-bottom: 5px;
}
.marketing-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  color: #222;
  font-weight: 500;
}

.marketing-viewport {
  position: relative;
  width: 100%;
  padding: 0 10px;
}

/* 轨道 - 横向滚动 */
.marketing-track {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 0;
  margin: 0;
  width: 100%;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-snap-type: x mandatory;
}
.marketing-track::-webkit-scrollbar {
  display: none;
}

/* 卡片 - PC端显示5列 */
.marketing-card {
  flex: 0 0 calc(20% - 10px);
  min-width: 0;
  background: var(--bg-warm);
  padding: 20px 20px 24px;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  scroll-snap-align: start;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 8px;
}
.marketing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

/* 图片框 - 正方形 */
.marketing-img-box {
  width: 100%;
  aspect-ratio: 1 / 1;
  margin-bottom: 16px;
  border-radius: 4px;
  overflow: hidden;
}
.marketing-img-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}
.marketing-card:hover .marketing-img-box img {
  transform: scale(1.04);
}

/* 文字信息 */
.marketing-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.marketing-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  font-weight: 500;
  color: #222222;
  margin-bottom: 6px;
}
.marketing-desc {
  font-size: 13px;
  color: #555;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* 左右箭头 */
.marketing-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: #222;
  color: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
  border-radius: 50%;
  opacity: 0.7;
}
.marketing-arrow:hover {
  background: #000;
  opacity: 1;
  transform: translateY(-50%) scale(1.05);
}
.marketing-arrow:active {
  transform: translateY(-50%) scale(0.95);
}

.arrow-prev { 
  left: -20px; 
}
.arrow-next { 
  right: -20px; 
}

/* 移动端适配 */
@media (max-width: 1100px) {
  .marketing-card {
    flex: 0 0 calc(33.33% - 10px);  /* 3列 */
  }
}

@media (max-width: 768px) {
  .marketing-arrow { 
    width: 36px; 
    height: 36px; 
  }
  .arrow-prev { 
    left: -8px; 
  }
  .arrow-next { 
    right: -8px; 
  }
  .marketing-card {
    flex: 0 0 calc(50% - 10px);  /* 2列 */
    padding: 12px 12px 16px;
  }
  .marketing-viewport {
    padding: 0 6px;
  }
}

@media (max-width: 480px) {
  .marketing-card {
    flex: 0 0 calc(50% - 10px);  /* 2列 */
    min-width: 0;
    padding: 10px 10px 14px;
  }
  .marketing-name {
    font-size: 14px;
  }
  .marketing-desc {
    font-size: 12px;
  }
}

  /* ============================================================
     核心优势 — 4列网格 (1)
     ============================================================ */
  .adv-head {
    max-width: 640px;
    margin-bottom: 60px;
  }
  .adv-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--card-border);
    border: 1px solid var(--card-border);
  }
  .adv-card {
    background: var(--white);
    padding: 44px 32px;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    perspective: 600px;
  }
  .adv-card .adv-card__icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 10px;
    display: block;
    object-fit: contain;
    transform: rotateY(0deg);
    transform-style: preserve-3d;
    transition: transform 0.55s ease;
    will-change: transform;
  }
  .adv-card:hover .adv-card__icon {
    transform: rotateY(180deg);
  }
  @media (hover: none) {
    .adv-card .adv-card__icon {
      transition: none;
    }
    .adv-card:hover .adv-card__icon {
      transform: none;
    }
  }
  .adv-card .num {
    font-family: var(--font-heading);
    font-size: 15px;
    color: var(--gold);
  }
  .adv-card p {
    font-size: 14.5px;
    color: #666;
    margin-top: 14px;
  }

  /* ============================================================
     产品系列 — 2×2 网格，每张卡片 4:3 比例 (2)
     ============================================================ */
  .collection-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 56px;
    gap: 40px;
  }
  .collection-head p {
    max-width: 380px;
    font-size: 15px;
    color: #666;
  }
  .collection-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    grid-auto-rows: auto;
  }
  .coll-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    display: block;
    text-decoration: none;
    color: inherit;
  }
  .coll-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  .coll-card:hover img {
    transform: scale(1.03);
  }
  .coll-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(20, 16, 12, 0.6) 100%);
    display: flex;
    align-items: flex-end;
    padding: 32px;
  }
  .coll-overlay h3 {
    color: #fff;
    font-size: 23px;
  }
  .coll-overlay .arrow {
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    letter-spacing: 0.1em;
    margin-top: 8px;
    font-family: var(--font-body);
  }

  /* ============================================================
     品牌介绍 (4)
     ============================================================ */
  .brand-intro .wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }
  .brand-intro-media {
    height: 620px;
  }
  .brand-intro-media a {
    display: block;
    width: 100%;
    height: 100%;
  }
  .brand-intro-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .brand-intro-dec p {
    margin: 0 0 0.75em;
  }
  .brand-intro-dec p:last-child {
    margin-bottom: 0;
  }
  .brand-list {
    list-style: none;
    margin: 28px 0 44px;
  }
  .brand-list li {
    padding: 14px 0;
    border-bottom: 1px solid var(--card-border);
    font-size: 15.5px;
    display: flex;
    align-items: center;
    gap: 14px;
  }
  .brand-list li::before {
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
  }
  .stat-row {
    display: flex;
    gap: 56px;
    margin-top: 12px;
  }
  .stat .num {
    font-family: var(--font-heading);
    font-size: 40px;
    color: var(--ink);
  }
  .stat .lab {
    font-size: 13px;
    color: #777;
    margin-top: 6px;
    letter-spacing: 0.02em;
  }

  /* ============================================================
     制造能力 (5)
     ============================================================ */
  .manuf-head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 54px;
  }
  .manuf-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    grid-auto-rows: auto;
  }
  .manuf-panel {
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    height: 520px;
    display: flex;
    align-items: flex-end;
    background-size: cover;
    background-position: center;
    background-color: #222;
  }
 .manuf-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 30%, rgba(0,0,0,0.75) 100%);
  z-index: 1;
}
  .manuf-caption {
    position: relative;
    z-index: 2;
    padding: 40px;
    color: #fff;
  }
  .manuf-caption .tag {
    font-size: 11.5px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
    display: block;
    font-family: var(--font-body);
  }
  .manuf-caption__dec {
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.85);
  }
  .manuf-caption__dec p {
    margin: 0 0 0.5em;
  }
  .manuf-caption__dec p:last-child {
    margin-bottom: 0;
  }
  .manuf-caption ul {
    list-style: none;
    margin-top: 16px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
  }
  .manuf-caption li {
    padding: 4px 0;
  }
  .manuf-placeholder-a {
  background-image: url('../home/china-factory.jpg');
  background-size: cover;
  background-position: center;
}

.manuf-placeholder-b {
  background-image: url('../home/vietnam-factory.jpg');
  background-size: cover;
  background-position: center;
}
#manufacturing {
    padding-top: 80px;
    padding-bottom: 80px;
}



  /* ============================================================
     全站共用底部：CTA + 页脚
     ============================================================ */
  .site-bottom {
    margin-top: 0;
  }
  .cta-section {
    background: var(--ink);
    color: #fff;
    min-height: 410px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 80px 0;
  }
  .cta-section h2 {
    color: #fff;
    max-width: 760px;
    margin: 0 auto 18px;
  }
  .cta-section p,
  .cta-section__dec {
    color: rgba(255, 255, 255, 0.65);
    max-width: 460px;
    margin: 0 auto 40px;
  }
  .cta-section__dec p {
    margin: 0 0 0.75em;
    color: inherit;
  }
  .cta-section__dec p:last-child {
    margin-bottom: 0;
  }
  .cta-section .btn-primary {
    background: var(--gold);
    border-color: var(--gold);
    color: #1e1a14;
  }
  .cta-section .btn-primary:hover {
    background: #c9b79b;
  }

  /* ============================================================
     页脚
     ============================================================ */
  footer {
    padding: 70px 0 40px;
    border-top: 1px solid var(--card-border);
    background: var(--white);
  }
  .footer-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 50px;
  }
  .footer-col h4 {
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #777;
    margin-bottom: 18px;
    font-weight: 500;
    font-family: var(--font-body);
  }
  .footer-col ul {
    list-style: none;
    font-size: 14.5px;
    margin: 0;
    padding: 0;
  }
  .footer-col .footer-menu {
    list-style: none;
    font-size: 14.5px;
    margin: 0;
    padding: 0;
  }
  .footer-col .footer-menu li {
    padding: 6px 0;
    color: #555;
  }
  .footer-col .footer-menu a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-col .footer-menu a:hover {
    color: var(--gold);
  }
  .footer-col .footer-menu .nav-submenu-toggle,
  .footer-col .footer-menu .sub-menu {
    display: none !important;
  }
  .footer-col--brand {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    max-width: 420px;
    flex: 1 1 220px;
    min-width: 0;
  }
  .footer-social__link img {
    opacity: 0.75;
    transition: opacity 0.2s;
  }
  .footer-social__link:hover img {
    opacity: 1;
  }
  .footer-col--brand p {
    margin: 0;
  }
  .footer-col li {
    padding: 6px 0;
    color: #555;
  }
  .footer-col li a {
    transition: color 0.2s;
  }
  .footer-col li a:hover {
    color: var(--gold);
  }
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 12.5px;
    color: #999;
    border-top: 1px solid var(--card-border);
    padding-top: 26px;
  }
  .footer-bottom__right {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-left: auto;
  }
  .footer-bottom__sitemap {
    color: #999;
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-bottom__sitemap:hover {
    color: var(--gold);
  }

  /* ============================================================
     询盘表单弹窗（需高于浮动通讯栏 z-index:900）
     ============================================================ */
  body.ty-site .form-overlay,
  .form-overlay {
    position: fixed;
    inset: 0;
    background: rgba(20, 16, 12, 0.55);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  body.ty-site .form-overlay.open,
  .form-overlay.open {
    display: flex;
  }
  body.quote-open {
    overflow: hidden;
  }
  .form-panel {
    background: var(--white);
    max-width: 520px;
    width: 100%;
    border-radius: 8px;
    padding: 48px;
    position: relative;
    max-height: calc(100vh - 48px);
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  }
  .form-panel h3 {
    margin-bottom: 8px;
  }
  .form-panel p.sub {
    color: #777;
    font-size: 14.5px;
    margin-bottom: 28px;
  }
  .form-close {
    position: absolute;
    top: 16px;
    right: 18px;
    z-index: 2;
    cursor: pointer;
    font-size: 22px;
    line-height: 1;
    color: #999;
    background: none;
    border: none;
    padding: 8px;
  }
  .form-close:hover {
    color: var(--ink);
  }
  .form-panel__cf7 .wpcf7 {
    margin: 0;
  }
  .form-panel__cf7 .wpcf7-form > p {
    margin: 0;
  }
  .form-panel__cf7 .form-field {
    margin-bottom: 18px;
  }
  .form-panel__cf7 .form-field label {
    font-size: 13px;
    letter-spacing: 0.03em;
    color: #555;
    display: block;
    margin-bottom: 8px;
  }
  .form-panel__cf7 .wpcf7-form-control-wrap {
    display: block;
  }
  .form-panel__cf7 input[type="text"],
  .form-panel__cf7 input[type="email"],
  .form-panel__cf7 input[type="tel"],
  .form-panel__cf7 input[type="url"],
  .form-panel__cf7 textarea,
  .form-panel__cf7 select,
  .form-panel__cf7 .wpcf7-text,
  .form-panel__cf7 .wpcf7-email,
  .form-panel__cf7 .wpcf7-textarea {
    width: 100%;
    border: 1px solid var(--card-border);
    background: #fff;
    padding: 13px 14px;
    font-family: var(--font-body);
    font-size: 14.5px;
    border-radius: 3px;
    color: var(--ink);
    box-sizing: border-box;
  }
  body.ty-site .form-panel__cf7 textarea,
  body.ty-site .form-panel__cf7 .wpcf7-textarea,
  body.ty-site .form-panel .form-field textarea {
    resize: vertical;
    min-height: 0 !important;
    height: calc(1.45em * 2 + 26px) !important;
    line-height: 1.45;
  }
  .form-panel__cf7 .wpcf7-submit,
  .form-panel__cf7 input[type="submit"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 52px;
    padding: 0 32px;
    margin-top: 4px;
    border-radius: 3px;
    font-family: var(--font-body);
    font-size: 14.5px;
    letter-spacing: 0.03em;
    font-weight: 500;
    cursor: pointer;
    border: 1px solid var(--ink);
    background: var(--ink);
    color: #fff;
    transition: background 0.3s ease, color 0.3s ease;
  }
  .form-panel__cf7 .wpcf7-submit:hover,
  .form-panel__cf7 input[type="submit"]:hover {
    background: #000;
  }
  .form-panel__cf7 .wpcf7-not-valid-tip {
    font-size: 12.5px;
    color: #a04a4a;
    margin-top: 6px;
  }
  .form-panel__cf7 .wpcf7-response-output {
    margin: 16px 0 0;
    padding: 12px 14px;
    border-radius: 3px;
    font-size: 13.5px;
  }
  .form-panel__cf7 .wpcf7-spinner {
    margin-left: 8px;
  }
  .screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
  }
  .form-field {
    margin-bottom: 18px;
  }
  .form-field label {
    font-size: 13px;
    letter-spacing: 0.03em;
    color: #555;
    display: block;
    margin-bottom: 8px;
  }
  .form-field input,
  .form-field textarea {
    width: 100%;
    border: 1px solid var(--card-border);
    background: #fff;
    padding: 13px 14px;
    font-family: var(--font-body);
    font-size: 14.5px;
    border-radius: 3px;
    color: var(--ink);
  }
  .form-field textarea {
    resize: vertical;
    min-height: 0;
    height: calc(1.45em * 2 + 26px);
  }
  .form-status {
    font-size: 13.5px;
    margin-top: 14px;
    min-height: 18px;
  }

  /* ============================================================
     响应式
     ============================================================ */
  @media (max-width: 1100px) {
    :root {
      --safe: 32px;
    }
    h1 {
      font-size: 42px;
    }
    h2 {
      font-size: 32px;
    }
    section {
      padding: 80px 0;
    }

    .hero {
      height: auto;
      min-height: 800px;
      padding: 0 100px;
    }
    .hero-content {
      max-width: 100%;
    }

    .brand-intro .wrap,
    .manuf-grid {
      grid-template-columns: 1fr;
      gap: 40px;
    }
    .brand-intro-media {
      height: 380px;
    }

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

    .hamburger {
      display: flex;
    }
    .nav-links {
      position: fixed;
      top: 0;
      right: -100%;
      width: 280px;
      height: 100vh;
      background: var(--white);
      padding: 100px 40px 40px;
      flex-direction: column;
      gap: 28px;
      transition: right 0.35s ease;
      box-shadow: -4px 0 30px rgba(0, 0, 0, 0.08);
      border-left: 1px solid var(--card-border);
    }
    .nav-links.open {
      right: 0;
    }

    .nav-wrap {
      padding: 0 32px;
      gap: 0;
      justify-content: space-between;
    }

    .nav-logo-center {
      position: static;
      transform: none;
    }

    .nav-search-btn {
      position: static;
      transform: none;
      margin-left: auto;
    }

    .search-dropdown {
      padding: 0 32px;
    }
    .search-dropdown.open {
      padding: 24px 32px;
    }
  }

  @media (max-width: 768px) {
    .banner-slider-section {
      /* 高度由 body.ty-site 规则控制，避免沿用 1920/800 过矮裁切文案 */
      height: auto;
      padding: 0;
    }
    .banner-arrow { width: 36px; height: 36px; }
    .arrow-left { left: 10px; }
    .arrow-right { right: 12px; }

    .marketing-card {
    flex: 0 0 calc(50% - 10px);  /* 2列 */
    min-width: 0;
    }
    .marketing-arrow { width: 36px; height: 36px; }
    .footer-grid {
      gap: 32px;
    }
    .footer-col--brand {
      flex: 1 1 100%;
      max-width: none;
    }
  }

  @media (max-width: 640px) {
    .adv-grid {
      grid-template-columns: 1fr;
    }
    .stat-row {
      flex-direction: column;
      gap: 20px;
    }
    .collection-head {
      flex-direction: column;
      align-items: flex-start;
    }
    .scroll-card {
      width: 260px;
    }
    .manuf-panel {
      height: 320px;
    }
    .footer-grid {
      flex-direction: column;
      gap: 20px;
      margin-bottom: 20px;
    }
    .footer-col--brand {
      flex: 1 1 100%;
      max-width: none;
      min-width: 0;
    }
    .footer-bottom {
      flex-direction: column;
      align-items: flex-start;
      gap: 8px;
    }
    .footer-bottom__right {
      margin-left: 0;
    }
    .hero-content h1 {
      font-size: 34px;
    }
    .hero-actions {
      flex-wrap: wrap;
    }
    .form-panel {
      padding: 32px 24px;
    }
  }


/* ===== WP layout.css 冲突覆盖：强制使用 ECO 导航版式 ===== */
body.ty-site .site-header {
	margin: 0;
	padding: 0;
	border: 0;
	background: transparent;
	/* 固定导航不占文档流；避免页头再占位造成与 banner 的空隙 */
	height: 0;
	min-height: 0;
	overflow: visible;
	line-height: 0;
}
body.ty-site .site-header > * {
	line-height: normal;
}
body.ty-site #nav.nav {
	position: fixed !important;
	top: 0 !important;
	left: 0 !important;
	right: 0 !important;
	z-index: 300 !important;
	height: 88px !important;
	min-height: 88px !important;
	max-height: 88px !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	padding: 0 !important;
	margin: 0 !important;
	background: #FFFFFF !important;
	border-bottom: 1px solid var(--card-border) !important;
	box-shadow: none !important;
	overflow: visible !important;
}
/* 覆盖 iOS 回弹/顶部露底，避免浮动头上方透明缝 */
body.ty-site #nav.nav::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 100%;
	height: 120vmax;
	background: #fff;
	pointer-events: none;
	z-index: -1;
}
body.ty-site #nav.nav.scrolled {
	position: fixed !important;
	top: 0 !important;
	box-shadow: none !important;
}
body.ty-site.nav-fixed,
body.ty-site {
	padding-top: 0 !important;
	margin-top: 0 !important;
}
/* 海报紧贴导航底边，去掉多余空隙 */
body.ty-site .banner-slider-section {
	margin-top: 88px !important;
	padding: 0 !important;
}
/* 内页 Banner 与首页轮播上间距一致 */
body.ty-site #page-banner {
	margin-top: 88px;
	height: 189px;
	max-height: 189px;
}
body.ty-site #page-banner .banner-content {
	align-items: flex-start;
	height: auto;
}
body.ty-site #page-banner .banner-fu {
	width: 100%;
	text-align: left;
	align-self: stretch;
}

@media (max-width: 1560px) {
	body.ty-site #page-banner .banner-content {
		padding-left: 20px;
		padding-right: 20px;
	}
}
body.ty-site .search-dropdown {
	top: 88px;
	z-index: 299;
}

/* 后台顶栏登录时：导航下移，避免被遮挡 */
body.admin-bar.ty-site #nav.nav {
	top: 32px !important;
}
body.admin-bar.ty-site .search-dropdown {
	top: calc(32px + 88px) !important;
}
body.admin-bar.ty-site .nav-mobile-panel {
	top: 32px;
	height: calc(100vh - 32px);
	height: calc(100dvh - 32px);
}
@media screen and (max-width: 782px) {
	body.admin-bar.ty-site #nav.nav {
		top: 46px !important;
	}
	body.admin-bar.ty-site .search-dropdown {
		top: calc(46px + 72px) !important;
	}
	body.admin-bar.ty-site .nav-mobile-panel {
		top: 46px;
		height: calc(100vh - 46px);
		height: calc(100dvh - 46px);
	}
}
/* 手机端强制固定 WP 顶栏，避免其变 absolute 后导航仍留 top 空隙或默认被挡住 */
@media screen and (max-width: 600px) {
	html #wpadminbar {
		position: fixed !important;
	}
	body.admin-bar.ty-site #nav.nav {
		top: 46px !important;
	}
	body.admin-bar.ty-site .search-dropdown {
		top: calc(46px + 72px) !important;
	}
	body.admin-bar.ty-site .nav-mobile-panel {
		top: 46px !important;
		height: calc(100vh - 46px) !important;
		height: calc(100dvh - 46px) !important;
	}
}
@media screen and (max-width: 1100px) and (min-width: 783px) {
	body.admin-bar.ty-site .search-dropdown {
		top: calc(32px + 72px) !important;
	}
}

body.ty-site #nav .nav-wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 100px;
	position: relative;
	height: 100%;
}
body.ty-site #nav .nav-left {
	display: flex;
	list-style: none;
	gap: 140px;
	margin: 0;
	padding: 0;
	font-size: 15px;
	font-weight: 500;
	letter-spacing: 0.03em;
	position: absolute;
	left: 160px;
}
body.ty-site #nav .nav-right.nav-links {
	display: flex;
	list-style: none;
	gap: 140px;
	margin: 0;
	padding: 0;
	font-size: 15px;
	font-weight: 500;
	letter-spacing: 0.03em;
	position: absolute;
	right: 160px;
	align-items: center;
}
body.ty-site #nav .nav-links a {
	display: inline;
	padding: 0;
	height: auto;
	line-height: inherit;
	font-size: 15px;
	font-weight: 500;
	letter-spacing: 0.03em;
	text-transform: none;
	color: var(--ink);
}
body.ty-site #nav .nav-links a::after {
	left: 0;
	right: auto;
	bottom: -4px;
	width: 0;
	height: 2px;
	background: var(--gold);
	transform: none;
}
body.ty-site #nav .nav-links a:hover::after,
body.ty-site #nav .nav-links a.active::after {
	width: 100%;
	transform: none;
}
body.ty-site #nav .nav-drawer,
body.ty-site #nav .nav-toggle,
body.ty-site #nav .lang-links,
body.ty-site #nav .nav-quote,
body.ty-site .nav-overlay,
body.ty-site .nav-search-panel {
	display: none !important;
}
body.ty-site #nav .hamburger {
	display: none;
}
body.ty-site #nav .nav-search-btn {
	position: absolute;
	right: 100px;
	top: 50%;
	transform: translateY(-50%);
	background: #f0f0f0;
	border: none;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	padding: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--ink);
	cursor: pointer;
}
body.ty-site #nav .nav-search-btn:hover {
	background: var(--gold);
	color: #fff;
	border-color: transparent;
}
body.ty-site #nav .nav-search-btn svg {
	stroke: currentColor;
	width: 20px;
	height: 20px;
}
body.ty-site .logo-img-wrap-center {
	width: 60px;
}
body.ty-site .logo-img-wrap-center img {
	width: 100%;
	height: auto;
	object-fit: contain;
}
body.ty-site .float-contact__icon img {
	width: 32px;
	height: 32px;
	object-fit: contain;
}
@media (max-width: 1100px) {
	/* 桌面左右菜单在平板/手机隐藏，改用左侧抽屉 */
	body.ty-site #nav .nav-left,
	body.ty-site #nav .nav-right.nav-links {
		display: none !important;
	}

	/* 手机端不显示顶栏搜索按钮，搜索放进侧栏 */
	body.ty-site #nav .nav-search-btn {
		display: none !important;
	}

	body.ty-site #nav.nav {
		height: 72px !important;
		min-height: 72px !important;
		max-height: 72px !important;
	}

	body.ty-site #nav .nav-wrap {
		padding: 0 16px;
		justify-content: flex-end;
		gap: 8px;
		max-width: none;
	}

	body.ty-site #nav .hamburger {
		display: flex !important;
		order: 2;
		flex-shrink: 0;
		z-index: 2;
		padding: 10px;
		margin-left: auto;
		margin-right: -4px;
		position: relative;
	}

	body.ty-site #nav .nav-logo-center {
		position: absolute;
		left: 50%;
		top: 50%;
		transform: translate(-50%, -50%);
		margin: 0;
		z-index: 1;
	}

	body.ty-site .logo-img-wrap-center {
		width: 48px;
	}

	body.ty-site .banner-slider-section {
		margin-top: 72px !important;
	}
	body.ty-site #page-banner {
		margin-top: 72px;
		height: auto;
		max-height: none;
		min-height: 140px;
		padding: 36px 0;
	}

	/* 桌面搜索下拉在手机端禁用 */
	body.ty-site .search-dropdown {
		display: none !important;
	}
}

@media (max-width: 768px) {
	body.ty-site #page-banner {
		min-height: 0;
		padding: 28px 0;
	}
}

@media (max-width: 640px) {
	body.ty-site #page-banner {
		padding: 24px 0;
	}
}

/* 移动端抽屉（默认隐藏） */
body.ty-site .nav-mobile-overlay,
body.ty-site .nav-mobile-panel {
	display: none;
}

@media (max-width: 1100px) {
	body.ty-site .nav-mobile-overlay {
		display: block;
		position: fixed;
		inset: 0;
		z-index: 350;
		border: 0;
		padding: 0;
		margin: 0;
		background: rgba(20, 16, 12, 0.45);
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		transition: opacity 0.3s ease, visibility 0.3s ease;
		cursor: pointer;
	}

	body.ty-site.nav-mobile-open .nav-mobile-overlay {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
	}

	body.ty-site .nav-mobile-panel {
		display: flex;
		flex-direction: column;
		position: fixed;
		top: 0;
		left: 0;
		right: auto;
		z-index: 360;
		width: min(320px, 86vw);
		height: 100vh;
		height: 100dvh;
		background: #fff;
		border-right: 1px solid var(--card-border);
		border-left: none;
		box-shadow: 8px 0 40px rgba(0, 0, 0, 0.12);
		transform: translateX(-100%);
		transition: transform 0.35s ease;
		padding: 0 0 24px;
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
	}

	body.admin-bar.ty-site .nav-mobile-panel {
		top: 46px;
		height: calc(100vh - 46px);
		height: calc(100dvh - 46px);
	}

	body.ty-site.nav-mobile-open .nav-mobile-panel {
		transform: translateX(0);
	}

	body.ty-site .nav-mobile-search {
		display: flex;
		align-items: center;
		gap: 8px;
		margin: 20px 16px 8px;
		padding: 10px 12px;
		background: var(--bg-warm, #F8F7F3);
		border: 1px solid var(--card-border);
		border-radius: 8px;
	}

	body.ty-site .nav-mobile-search__icon {
		flex-shrink: 0;
		color: #999;
	}

	body.ty-site .nav-mobile-search__input {
		flex: 1;
		min-width: 0;
		border: 0;
		background: transparent;
		font-size: 16px;
		font-family: var(--font-body);
		color: var(--ink);
		outline: none;
		padding: 4px 0;
		-webkit-appearance: none;
		appearance: none;
	}

	body.ty-site .nav-mobile-search__input::-webkit-search-cancel-button,
	body.ty-site .nav-mobile-search__input::-webkit-search-decoration {
		display: none;
		-webkit-appearance: none;
	}

	body.ty-site .nav-mobile-search__input::placeholder {
		color: #aaa;
	}

	body.ty-site .nav-mobile-search__submit {
		flex-shrink: 0;
		border: 0;
		background: var(--ink);
		color: #fff;
		font-size: 13px;
		font-weight: 500;
		letter-spacing: 0.04em;
		padding: 8px 14px;
		border-radius: 6px;
		cursor: pointer;
		font-family: var(--font-body);
	}

	body.ty-site .nav-mobile-links {
		list-style: none;
		margin: 0;
		padding: 8px 8px 24px;
	}

	body.ty-site .nav-mobile-links .nav-drawer-quote {
		padding-left: 10px;
		padding-right: 10px;
	}

	body.ty-site .nav-mobile-item__row {
		display: flex;
		align-items: stretch;
		border-radius: 6px;
		background: transparent;
	}

	body.ty-site .nav-mobile-item__row > a {
		flex: 1 1 auto;
		min-width: 0;
		background: transparent;
		border-radius: 0;
	}

	body.ty-site .nav-mobile-links a {
		display: block;
		padding: 16px 18px;
		font-size: 17px;
		font-weight: 500;
		color: var(--ink);
		text-decoration: none;
		border-radius: 6px;
		letter-spacing: 0.02em;
		background: transparent;
	}

	body.ty-site .nav-mobile-links a:hover,
	body.ty-site .nav-mobile-links a:active,
	body.ty-site .nav-mobile-links a.active {
		color: var(--gold);
		background: transparent;
	}

	body.ty-site .nav-mobile-item__row:hover,
	body.ty-site .nav-mobile-item__row:has(a.active),
	body.ty-site .nav-mobile-item.is-open > .nav-mobile-item__row {
		background: var(--bg-warm, #F8F7F3);
	}

	body.ty-site .nav-mobile-toggle {
		flex: 0 0 48px;
		width: 48px;
		margin: 0;
		padding: 0;
		border: 0;
		border-radius: 0;
		-webkit-appearance: none;
		appearance: none;
		background: transparent;
		background-color: transparent;
		box-shadow: none;
		color: inherit;
		cursor: pointer;
		display: flex;
		align-items: center;
		justify-content: center;
		-webkit-tap-highlight-color: transparent;
	}

	body.ty-site .nav-mobile-toggle:hover,
	body.ty-site .nav-mobile-toggle:active,
	body.ty-site .nav-mobile-toggle:focus {
		background: transparent;
		background-color: transparent;
		outline: none;
	}

	body.ty-site .nav-mobile-toggle span {
		display: block;
		width: 8px;
		height: 8px;
		border-right: 1.5px solid currentColor;
		border-bottom: 1.5px solid currentColor;
		transform: rotate(45deg);
		margin-top: -4px;
		transition: transform 0.2s ease;
	}

	body.ty-site .nav-mobile-item.is-open > .nav-mobile-item__row > .nav-mobile-toggle span {
		transform: rotate(-135deg);
		margin-top: 2px;
	}

	body.ty-site .nav-mobile-sub {
		display: none;
		list-style: none;
		margin: 0;
		padding: 0 0 8px;
		background: var(--bg-warm, #F8F7F3);
		border-radius: 6px;
	}

	body.ty-site .nav-mobile-item.is-open > .nav-mobile-sub {
		display: block;
	}

	body.ty-site .nav-mobile-sub a {
		padding: 12px 18px 12px 28px;
		font-size: 15px;
		font-weight: 500;
		color: #555;
	}

	body.ty-site .nav-mobile-sub--l2 {
		background: transparent;
		padding: 0 0 6px;
	}

	body.ty-site .nav-mobile-sub--l2 a {
		padding-left: 40px;
		font-size: 14px;
		font-weight: 400;
		color: #777;
	}

	body.ty-site.nav-mobile-open {
		overflow: hidden;
		touch-action: none;
	}
}

@media (max-width: 480px) {
	body.ty-site #nav .nav-wrap {
		padding: 0 12px;
	}

	body.ty-site .logo-img-wrap-center {
		width: 42px;
	}

	body.ty-site .nav-mobile-panel {
		width: min(300px, 92vw);
	}
}

/* ===== 产品详情：顶部面包屑条 ===== */
.product-breadcrumb-bar {
	width: 100%;
	height: auto;
	min-height: 70px;
	margin-top: 88px;
	padding: 16px 0;
	background: var(--bg-warm, #F8F7F3);
	box-sizing: border-box;
	display: flex;
	align-items: center;
}

.product-breadcrumb-bar__inner {
	width: 100%;
	max-width: var(--max-width, 1560px);
	margin: 0 auto;
	padding: 0;
	box-sizing: border-box;
}

.product-breadcrumb-nav.breadcrumb-nav {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-start;
	gap: 0;
	margin: 0;
	padding: 0;
	font-family: 'Avenir', var(--font-body);
	font-size: 12px;
	font-weight: 400; /* Avenir 45 Book */
	letter-spacing: 0;
	text-transform: none;
	line-height: 1.5;
	color: #666666;
}

.product-breadcrumb-nav a {
	color: #666666;
	text-decoration: none;
	font-weight: 400;
	transition: color 0.2s ease;
}

.product-breadcrumb-nav a:hover {
	color: #222222;
}

.product-breadcrumb-nav .sep {
	display: inline;
	margin: 0 10px;
	color: #aaaaaa;
	font-size: inherit;
	font-weight: 400;
}

.product-breadcrumb-nav .current {
	color: #222222;
	font-weight: 400;
	max-width: none;
	overflow: visible;
	text-overflow: clip;
	white-space: normal;
}

@media (max-width: 1100px) {
	.product-breadcrumb-bar {
		margin-top: 72px;
		height: auto;
		min-height: 56px;
		padding: 14px 0;
	}
}

/* ===== 产品列表 / 分类目录 ===== */
.site-archive-products {
	padding-bottom: 96px;
}

.products-catalog {
	padding: 0;
	width: 100%;
}

.products-catalog__body.wrap {
	padding-left: 0;
	padding-right: 0;
}

.products-cat-nav {
	width: 100%;
	max-width: none;
	height: 58px;
	margin: 0 0 56px;
	border-top: 1px solid #e5e2dc;
	border-bottom: 1px solid #e5e2dc;
	display: flex;
	align-items: stretch;
	justify-content: center;
	box-sizing: border-box;
}

.products-cat-nav__inner {
	width: 100%;
	max-width: var(--max-width, 1560px);
	margin: 0 auto;
	display: flex;
	align-items: stretch;
	justify-content: flex-start;
	height: 100%;
}

.products-cat-nav__list {
	display: flex;
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-items: stretch;
	gap: 12px 48px;
	width: max-content;
	max-width: 100%;
	height: 100%;
	list-style: none;
	margin: 0;
	padding: 0;
}

.products-cat-nav__item {
	display: flex;
	height: 100%;
}

.products-cat-nav__link {
	position: relative;
	display: inline-flex;
	align-items: center;
	height: 100%;
	padding: 0;
	font-family: var(--font-body);
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	text-decoration: none;
	color: #888888;
	border: none;
	transition: color 0.2s ease;
}

.products-cat-nav__link:hover {
	color: #222222;
}

.products-cat-nav__link.is-active {
	color: #222222;
}

.products-cat-nav__link.is-active::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: -1px;
	height: 2px;
	background: var(--gold, #B8A58A);
}

.products-cat-intro {
	margin-bottom: 72px;
	max-width: 920px;
}

.products-cat-intro__title {
	margin: 0 0 10px;
	font-family: var(--font-heading);
	font-weight: 500;
	font-size: clamp(36px, 4vw, 52px);
	line-height: 1.15;
	color: var(--ink);
}

.products-cat-intro__desc {
	margin: 0;
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.7;
	color: rgba(34, 34, 34, 0.55);
}

.products-group {
	margin-bottom: 72px;
	padding: 0;
}

.products-group:last-child {
	margin-bottom: 0;
}

.products-group__head {
	width: 100vw;
	max-width: none;
	margin: 0 0 28px;
	margin-left: calc(50% - 50vw);
	border-bottom: 1px solid #e5e2dc;
	box-sizing: border-box;
}

.products-group__head-inner {
	width: 100%;
	max-width: var(--max-width, 1560px);
	margin: 0 auto;
}

.products-group__title {
	margin: 0;
	padding: 0 0 14px;
	font-family: 'Avenir', var(--font-body);
	font-size: 14px;
	font-weight: 800; /* Avenir Heavy */
	letter-spacing: 0;
	text-transform: uppercase;
	color: #b8a58a;
}

.products-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 28px;
	width: 100%;
}

.product-card {
	display: flex;
	flex-direction: column;
	min-width: 0;
	background: #fff;
	border: 1px solid #e5e2dc;
	border-radius: 8px;
	overflow: hidden;
}

.product-card__media {
	display: block;
	overflow: hidden;
	background: var(--bg-warm, #F8F7F3);
}

.product-card__media img {
	display: block;
	width: 100%;
	height: auto;
	object-fit: unset;
	aspect-ratio: auto;
	transition: transform 0.45s ease;
}

.product-card:hover .product-card__media img {
	transform: scale(1.04);
}

.product-card__body {
	display: flex;
	flex-direction: column;
	flex: 1;
	padding: 20px 18px 22px;
}

.product-card__title {
	margin: 0 0 8px;
	font-family: var(--font-heading);
	font-size: 17px;
	font-weight: 500;
	line-height: 1.3;
	color: #222222;
}

.product-card__title a {
	color: inherit;
	text-decoration: none;
}

.product-card__title a:hover {
	color: #b8a58a;
}

.product-card__desc {
	margin: 0 0 16px;
	font-family: var(--font-body);
	font-size: 13px;
	line-height: 20px;
	color: #666666;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.product-card__link {
	margin-top: auto;
	font-family: var(--font-body);
	font-size: 12px;
	font-weight: 500;
	line-height: 20px;
	letter-spacing: 0.02em;
	color: #aaaaaa;
	text-decoration: none;
}

.product-card__link:hover {
	color: #666666;
}

@media (max-width: 1200px) {
	.products-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 22px;
	}
}

@media (max-width: 900px) {
	.products-cat-nav {
		height: auto;
		min-height: 0;
		margin-bottom: 32px;
		padding: 10px 0;
	}
	.products-cat-nav__inner {
		height: auto;
		align-items: center;
	}
	.products-cat-nav__list {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		width: 100%;
		height: auto;
		gap: 4px 16px;
		justify-content: stretch;
	}
	.products-cat-nav__item {
		height: auto;
		width: 100%;
	}
	.products-cat-nav__link {
		height: auto;
		width: 100%;
		padding: 8px 0;
		font-size: 12px;
		letter-spacing: 0.1em;
		line-height: 1.4;
	}
	.products-cat-nav__link.is-active::after {
		bottom: 4px;
	}
	.products-cat-intro {
		margin-bottom: 48px;
	}
	.products-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 640px) {
	.products-group {
		margin-bottom: 40px;
	}
}

@media (max-width: 560px) {
	.products-cat-nav {
		padding: 8px 0 10px;
	}
	.products-cat-nav__list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 10px 20px;
	}
	.products-cat-nav__link {
		font-size: 11px;
		letter-spacing: 0.08em;
		padding: 15px 0;
	}
	.products-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 14px;
	}
}

/* ===== 产品详情：左图库 + 右信息 ===== */
.site-single-products {
	padding-bottom: 0;
}

.product-detail {
	padding-top: 48px;
	padding-bottom: 0;
}

.product-detail.wrap {
	padding-left: 0;
	padding-right: 0;
}

.product-detail__grid {
	display: grid;
	grid-template-columns: minmax(0, 750px) minmax(0, 1fr);
	gap: 56px 48px;
	align-items: start;
}

.product-detail__grid > * {
	min-width: 0;
	max-width: 100%;
}

.product-cont {
	padding-top: 64px;
	padding-bottom: 80px;
}

.product-cont.wrap {
	padding-left: 0;
	padding-right: 0;
}

.product-detail__content {
	font-family: var(--font-body);
	font-size: 15px;
	line-height: 1.75;
	color: #555555;
}

.product-detail__content > *:first-child {
	margin-top: 0;
}

.product-detail__content > *:last-child {
	margin-bottom: 0;
}

.product-detail__content p {
	margin: 0 0 1em;
}

.product-detail__content h2,
.product-detail__content h3,
.product-detail__content h4 {
	margin: 1.4em 0 0.6em;
	font-family: var(--font-body);
	font-weight: 700;
	line-height: 1.35;
	color: #222222;
}

.product-detail__content h2 {
	font-size: 24px;
}

.product-detail__content h3 {
	font-size: 20px;
}

.product-detail__content h4 {
	font-size: 17px;
}

.product-detail__content ul,
.product-detail__content ol {
	margin: 0 0 1em;
	padding-left: 1.4em;
}

.product-detail__content img,
.product-detail__content video,
.product-detail__content iframe {
	max-width: 100%;
	height: auto;
}

.product-detail__content a {
	color: #8a7158;
}

.product-gallery {
	width: 100%;
	max-width: 750px;
}

.product-gallery__main-wrap {
	position: relative;
	width: 100%;
}

.product-gallery__main {
	width: 100%;
	overflow: hidden;
	border-radius: 4px;
	background: var(--bg-warm, #F8F7F3);
	touch-action: pan-y;
	cursor: grab;
}

.product-gallery__main:active {
	cursor: grabbing;
}

.product-gallery__main-track {
	display: flex;
	width: 100%;
	height: 100%;
	transition: transform 0.35s ease;
	will-change: transform;
}

.product-gallery__slide {
	flex: 0 0 100%;
	width: 100%;
	min-width: 100%;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--bg-warm, #F8F7F3);
}

.product-gallery__main-arrow {
	position: absolute;
	top: 50%;
	z-index: 2;
	transform: translateY(-50%);
	width: 21px;
	height: 28px;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: pointer;
	line-height: 0;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.25s ease, visibility 0.25s ease;
}

.product-gallery__main-wrap:hover .product-gallery__main-arrow {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.product-gallery__main-arrow--prev {
	left: 12px;
}

.product-gallery__main-arrow--next {
	right: 12px;
}

.product-gallery__main-arrow img {
	display: block;
	width: 21px;
	height: 28px;
	object-fit: contain;
}

.product-gallery__main img,
.product-gallery__image {
	display: block;
	width: 100%;
	height: auto;
	object-fit: unset;
	pointer-events: none;
	user-select: none;
	-webkit-user-drag: none;
}

.product-gallery__video {
	display: block;
	width: 100%;
	max-width: 100%;
	height: auto;
	max-height: 720px;
	margin: 0 auto;
	object-fit: contain;
	background: #111;
}

/* 隐藏原生下载按钮，保留播放 / 全屏等其他控件 */
video::-webkit-media-controls-download-button,
video::-internal-media-controls-download-button {
	display: none !important;
}

.product-gallery__thumbs-wrap {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-top: 18px;
}

.product-gallery__arrow {
	flex: 0 0 auto;
	width: 21px;
	height: 28px;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: pointer;
	line-height: 0;
}

.product-gallery__arrow img {
	display: block;
	width: 21px;
	height: 28px;
	object-fit: contain;
}

.product-gallery__thumbs {
	flex: 1 1 auto;
	min-width: 0;
	overflow: hidden;
}

.product-gallery__thumbs-track {
	display: flex;
	gap: 12px;
	transition: transform 0.3s ease;
	will-change: transform;
}

.product-gallery__thumb {
	position: relative;
	flex: 0 0 auto;
	padding: 0;
	border: 1px solid transparent;
	background: var(--bg-warm, #F8F7F3);
	border-radius: 10px;
	overflow: hidden;
	cursor: pointer;
	aspect-ratio: 1 / 1;
}

.product-gallery__thumb.is-active {
	border-color: #b8a58a;
}

.product-gallery__thumb img,
.product-gallery__thumb-fallback {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.product-gallery__thumb-fallback {
	background: #ddd;
}

.product-gallery__play {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	pointer-events: none;
}

.product-info__cat {
	margin: 0 0 10px;
	font-family: var(--font-body);
	font-size: 14px;
	font-weight: 400;
	line-height: 1.4;
	color: #888888;
}

.product-info__title {
	margin: 0 0 12px;
	font-family: var(--font-heading);
	font-size: 38px;
	font-weight: 500;
	line-height: 1.2;
	color: #222222;
	overflow-wrap: anywhere;
	word-break: break-word;
}

.product-info__desc {
	margin: 0 0 28px;
	font-family: var(--font-heading);
	font-size: 18px;
	font-weight: 400;
	line-height: 1.45;
	color: #888888;
}

.product-info__you {
	margin: 0 0 40px;
	padding: 20px 0;
	border-top: 1px solid #e5e2dc;
	border-bottom: 1px solid #e5e2dc;
	font-family: var(--font-body);
	font-size: 14px;
	line-height: 1.7;
	color: #888888;
}

.product-info__you p {
	margin: 0 0 8px;
}

.product-info__you p:last-child {
	margin-bottom: 0;
}

.product-info__you table {
	width: 100%;
	border-collapse: collapse;
}

.product-detail__content table {
	width: 100%;
	max-width: 100%;
	border-collapse: collapse;
	display: block;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

.product-info__you td,
.product-info__you th {
	padding: 6px 0;
	font-size: 14px;
	line-height: 1.6;
	color: #888888;
	border: 0;
	vertical-align: top;
}

.product-info__highlight {
	margin: 0 0 36px;
	padding: 20px 22px;
	background: #f7f4ef;
	border-left: 3px solid #8a7158;
	border-radius: 4px;
}

.product-info__highlight-title {
	margin: 0 0 8px;
	font-family: var(--font-body);
	font-size: 14px;
	font-weight: 700;
	line-height: 1.5;
	color: #555555;
}

.product-info__highlight-dec {
	font-family: var(--font-body);
	font-size: 14px;
	font-weight: 400;
	line-height: 1.65;
	color: #555555;
}

.product-info__highlight-dec p {
	margin: 0 0 6px;
}

.product-info__highlight-dec p:last-child {
	margin-bottom: 0;
}

.product-info__adv {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	list-style: none;
	margin: 0 0 32px;
	padding: 0;
}

.product-info__adv-item {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 0;
	max-width: 100%;
	height: auto;
	min-height: 29px;
	padding: 6px 14px;
	box-sizing: border-box;
	border: 1px solid #b8a58a;
	border-radius: 14.5px;
	background: #f8f7f3;
	font-family: var(--font-body);
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.04em;
	line-height: 1.3;
	text-transform: uppercase;
	color: #b8a58a;
	white-space: normal;
	word-break: break-word;
}

.product-info__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
}

.product-info__btn {
	min-width: 180px;
	height: 48px;
	padding: 0 28px;
	font-size: 14px;
}

.product-info__btn--quote {
	background: #222222;
	border-color: #222222;
	color: #fff;
}

.product-info__btn--quote:hover {
	background: #000;
	border-color: #000;
}

.product-info__btn--back {
	background: #fff;
	border-color: #222222;
	color: #222222;
}

.product-info__btn--back:hover {
	background: #222222;
	color: #fff;
}

@media (max-width: 1100px) {
	.product-detail {
		padding-top: 36px;
		padding-bottom: 0;
	}
	.product-detail__grid {
		grid-template-columns: 1fr;
		gap: 32px;
	}
	.product-gallery {
		max-width: none;
	}
	.product-cont {
		padding-top: 40px;
		padding-bottom: 48px;
	}
	.product-info__title {
		font-size: 32px;
		word-break: break-word;
	}
	.product-info__btn {
		min-width: 0;
	}
}

@media (max-width: 768px) {
	.product-gallery__thumbs-wrap {
		gap: 8px;
		margin-top: 12px;
	}
	.product-gallery__arrow {
		width: 16px;
		height: 22px;
	}
	.product-gallery__arrow img {
		width: 16px;
		height: 22px;
	}
	.product-gallery__main-arrow {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
	}
	.product-info__highlight {
		padding: 16px 16px;
	}
	.product-info__you {
		margin-bottom: 28px;
	}
	.product-breadcrumb-nav.breadcrumb-nav {
		font-size: 11px;
		line-height: 1.45;
	}
	.product-breadcrumb-nav .sep {
		margin: 0 6px;
	}
}

@media (max-width: 640px) {
	.product-info__you {
		overflow-x: auto;
		overflow-y: hidden;
		-webkit-overflow-scrolling: touch;
		overscroll-behavior-x: contain;
	}
	.product-info__you table {
		width: max-content;
		min-width: 100%;
		max-width: none;
		display: table;
	}
	.product-info__you td,
	.product-info__you th {
		white-space: nowrap;
		padding-right: 16px;
	}
	.product-detail {
		padding-top: 28px;
		padding-bottom: 0;
	}
	.product-detail__grid {
		gap: 24px;
	}
	.product-info__title {
		font-size: 26px;
	}
	.product-info__desc {
		font-size: 15px;
		margin-bottom: 20px;
	}
	.product-info__adv {
		gap: 8px;
		margin-bottom: 24px;
	}
	.product-info__adv-item {
		padding: 6px 12px;
		font-size: 11px;
	}
	.product-info__actions {
		flex-direction: column;
		align-items: stretch;
		gap: 10px;
	}
	.product-info__btn {
		width: 100%;
		min-width: 0;
		height: 46px;
		padding: 0 16px;
	}
	.product-detail__content {
		font-size: 14px;
		word-break: break-word;
	}
	.product-detail__content h2 {
		font-size: 20px;
	}
	.product-detail__content h3 {
		font-size: 17px;
	}
	.product-detail__content img,
	.product-detail__content video,
	.product-detail__content iframe {
		max-width: 100%;
	}
}

/* ── 相关产品 ── */
.product-related {
	background: #f8f7f3;
	padding: 88px 0 96px;
}

.product-related__inner.wrap {
	padding-left: 0;
	padding-right: 0;
}

.product-related__head {
	max-width: 760px;
	margin: 0 auto 48px;
	text-align: center;
}

.product-related__fu {
	margin: 0 0 12px;
	font-family: var(--font-body);
	font-size: 12px;
	font-weight: 500;
	line-height: 1.4;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #b8a58a;
}

.product-related__bt {
	margin: 0 0 10px;
	font-family: var(--font-heading);
	font-size: 40px;
	font-weight: 500;
	line-height: 1.25;
	color: #222222;
}

.product-related__dec {
	margin: 0;
	font-family: var(--font-body);
	font-size: 15px;
	line-height: 1.6;
	color: #888888;
}

.product-related__carousel {
	position: relative;
	display: flex;
	align-items: center;
	gap: 16px;
}

.product-related__viewport {
	flex: 1 1 auto;
	min-width: 0;
	overflow: hidden;
}

.product-related__track {
	display: flex;
	gap: 28px;
	transition: transform 0.4s ease;
	will-change: transform;
}

.product-related__track .product-card--related {
	flex: 0 0 calc((100% - 84px) / 4);
	width: calc((100% - 84px) / 4);
	max-width: none;
}

.product-card--related .product-card__body {
	padding: 18px 18px 20px;
}

.product-card--related .product-card__title {
	margin-bottom: 10px;
	font-size: 18px;
}

.product-related__arrow {
	flex: 0 0 auto;
	width: 21px;
	height: 28px;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: pointer;
	line-height: 0;
}

.product-related__arrow img {
	display: block;
	width: 21px;
	height: 28px;
	object-fit: contain;
}

@media (max-width: 1200px) {
	.product-related__track .product-card--related {
		flex: 0 0 calc((100% - 56px) / 3);
		width: calc((100% - 56px) / 3);
	}
}

@media (max-width: 900px) {
	.product-related {
		padding: 64px 0 72px;
	}
	.product-related__bt {
		font-size: 32px;
	}
	.product-related__track {
		gap: 20px;
	}
	.product-related__track .product-card--related {
		flex: 0 0 calc((100% - 20px) / 2);
		width: calc((100% - 20px) / 2);
	}
}

@media (max-width: 640px) {
	.product-related__bt {
		font-size: 28px;
	}
	.product-related__inner.wrap {
		padding-left: var(--safe);
		padding-right: var(--safe);
	}
	.product-related__carousel {
		gap: 0;
	}
	.product-related__arrow {
		display: none;
	}
	.product-related__track {
		gap: 14px;
	}
	.product-related__track .product-card--related {
		flex: 0 0 calc((100% - 14px) / 2);
		width: calc((100% - 14px) / 2);
	}
}

/* ===== OEM 页：左图右文 ===== */
.oem-intro {
	padding: 88px 0 96px;
	background: #fff;
}

.oem-intro__grid.wrap {
	padding-left: 0;
	padding-right: 0;
	display: grid;
	grid-template-columns: 780px minmax(0, 1fr);
	gap: 72px;
	align-items: center;
}

.oem-intro__grid--text-only {
	grid-template-columns: 1fr;
}

.oem-intro__media {
	width: 780px;
	max-width: 100%;
	min-width: 0;
	overflow: hidden;
	border-radius: 4px;
	background: var(--bg-warm, #F8F7F3);
}

.oem-intro__media img {
	display: block;
	width: 780px;
	max-width: 100%;
	height: auto;
}

.oem-intro__copy {
	min-width: 0;
	max-width: none;
}

.oem-intro__content {
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.75;
	color: #666666;
}

.oem-intro__content > *:first-child {
	margin-top: 0;
}

.oem-intro__content > *:last-child {
	margin-bottom: 0;
}

.oem-intro__content p {
	margin: 0 0 1em;
}

.oem-intro__content p:last-child {
	margin-bottom: 0;
}

.oem-intro__content h1,
.oem-intro__content h2,
.oem-intro__content h3 {
	margin: 0 0 18px;
	font-family: var(--font-heading);
	font-weight: 500;
	line-height: 1.25;
	color: #222222;
}

.oem-intro__content h1 {
	font-size: 42px;
}

.oem-intro__content h2 {
	font-size: 40px;
}

.oem-intro__content h3 {
	font-size: 12px;
	font-family: var(--font-body);
	font-weight: 500;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #b8a58a;
	margin-bottom: 12px;
}

.oem-intro__btn {
	margin-top: 28px;
	text-transform: none;
	letter-spacing: 0.02em;
}

@media (max-width: 1100px) {
	.oem-intro {
		padding: 56px 0 64px;
	}
	.oem-intro__grid.wrap {
		grid-template-columns: 1fr;
		gap: 36px;
	}
	.oem-intro__media,
	.oem-intro__media img {
		width: 100%;
	}
	.oem-intro__copy {
		max-width: none;
	}
	.oem-intro__content h1,
	.oem-intro__content h2 {
		font-size: 32px;
	}
}

/* ===== OEM 定制项目 ===== */
.oem-custom {
	background: #f8f7f3;
	padding: 88px 0 96px;
}

.oem-custom__inner.wrap {
	padding-left: 0;
	padding-right: 0;
}

.oem-custom__head {
	max-width: 1100px;
	margin: 0 auto 48px;
	text-align: center;
}

.oem-custom__fu {
	margin: 0 0 12px;
	font-family: var(--font-body);
	font-size: 12px;
	font-weight: 500;
	line-height: 1.4;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #b8a58a;
}

.oem-custom__bt {
	margin: 0 0 14px;
	font-family: var(--font-heading);
	font-size: 40px;
	font-weight: 500;
	line-height: 1.25;
	color: #222222;
}

.oem-custom__dec {
	max-width: 450px;
	margin: 0 auto;
	font-family: var(--font-body);
	font-size: 15px;
	line-height: 1.6;
	color: #888888;
}

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

.oem-custom__card {
	overflow: hidden;
	background: transparent;
	border: 0;
	border-radius: 10px;
}

.oem-custom__media {
	display: block;
	line-height: 0;
}

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

.oem-custom__card:hover .oem-custom__media img {
	transform: scale(1.03);
}

@media (max-width: 1100px) {
	.oem-custom {
		padding: 64px 0 72px;
	}
	.oem-custom__bt {
		font-size: 32px;
	}
	.oem-custom__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 18px;
	}
}

@media (max-width: 640px) {
	.oem-custom__bt {
		font-size: 28px;
	}
	.oem-custom__grid {
		grid-template-columns: 1fr;
	}
}

/* ===== OEM 流程 ===== */
.oem-process {
	background: #fff;
	padding: 88px 0 96px;
}

.oem-process__inner.wrap {
	padding-left: 0;
	padding-right: 0;
}

.oem-process .oem-custom__head {
	margin-bottom: 56px;
}

.oem-process__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 40px 32px;
}

.oem-process__item {
	text-align: center;
}

.oem-process__num {
	margin: 0 0 8px;
	font-family: var(--font-heading);
	font-size: 56px;
	font-weight: 500;
	line-height: 1;
	color: #e5e2dc;
}

.oem-process__tit {
	margin: 0 0 12px;
	font-family: var(--font-heading);
	font-size: 22px;
	font-weight: 500;
	line-height: 1.3;
	color: #222222;
}

.oem-process__desc {
	margin: 0 auto;
	font-family: var(--font-body);
	font-size: 14px;
	line-height: 1.7;
	color: #888888;
}

@media (max-width: 1100px) {
	.oem-process {
		padding: 64px 0 72px;
	}
	.oem-process__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 36px 24px;
	}
	.oem-process__num {
		font-size: 48px;
	}
}

@media (max-width: 640px) {
	.oem-process__grid {
		grid-template-columns: 1fr;
		gap: 32px;
	}
}

/* ===== 关于我们：左图右文 ===== */
.about-intro {
	padding: 88px 0 96px;
	background: #fff;
}

.about-intro__grid.wrap {
	padding-left: 0;
	padding-right: 0;
	display: grid;
	grid-template-columns: 780px minmax(0, 1fr);
	gap: 40px;
	align-items: center;
}

.about-intro__grid--text-only {
	grid-template-columns: 1fr;
}

.about-intro__media {
	width: 780px;
	max-width: 100%;
	min-width: 0;
	overflow: hidden;
	border-radius: 4px;
	background: var(--bg-warm, #F8F7F3);
}

.about-intro__media img {
	display: block;
	width: 780px;
	max-width: 100%;
	height: auto;
}

.about-intro__copy {
	min-width: 0;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.about-intro__fu {
	margin: 0 0 12px;
	font-family: var(--font-body);
	font-size: 12px;
	font-weight: 500;
	line-height: 1.4;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #b8a58a;
}

.about-intro__bt {
	margin: 0 0 22px;
	font-family: var(--font-heading);
	font-size: 32px;
	font-weight: 500;
	line-height: 1.2;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #222222;
}

.about-intro__scroll {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 6px;
	gap: 60px;
	align-items: stretch;
	width: 100%;
}

.about-intro__content {
	max-width: 100%;
	max-height: 300px;
	overflow-y: auto;
	font-family: var(--font-body);
	font-size: 15px;
	line-height: 30px;
	color: #666666;
	scrollbar-width: none;
}

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

.about-intro__bar {
	width: 6px;
	align-self: stretch;
	background: #f8f7f3;
	border-radius: 3px;
	position: relative;
	overflow: hidden;
}

.about-intro__thumb {
	position: absolute;
	top: 0;
	left: 0;
	width: 6px;
	height: 40px;
	background: #b8a58a;
	border-radius: 3px;
	pointer-events: none;
}

.about-intro__scroll.is-short .about-intro__bar {
	visibility: hidden;
}

.about-intro__content > *:first-child {
	margin-top: 0;
}

.about-intro__content > *:last-child {
	margin-bottom: 0;
}

.about-intro__content p {
	margin: 0 0 1em;
}

.about-intro__content p:last-child {
	margin-bottom: 0;
}

.about-intro__btn {
	margin-top: 28px;
	text-transform: none;
	letter-spacing: 0.02em;
}

@media (max-width: 1100px) {
	.about-intro {
		padding: 56px 0 64px;
	}
	.about-intro__grid.wrap {
		grid-template-columns: 1fr;
		gap: 36px;
	}
	.about-intro__media,
	.about-intro__media img {
		width: 100%;
	}
	.about-intro__bt {
		font-size: 28px;
	}
}

@media (max-width: 640px) {
	.about-intro__scroll {
		gap: 20px;
	}
}

/* ===== 关于我们：服务能力条 ===== */
.about-ability {
	background: #222222;
	height: 126px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.about-ability__list.wrap {
	width: 100%;
	max-width: var(--max-width);
	margin: 0 auto;
	padding-left: 0;
	padding-right: 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	list-style: none;
}

.about-ability__item {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 0;
	font-family: var(--font-heading);
	font-size: 26px;
	font-weight: 500;
	line-height: 1.2;
	color: #b8a58a;
	white-space: nowrap;
}

.about-ability__item::before {
	content: '';
	flex: 0 0 6px;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #b8a58a;
}

@media (max-width: 1200px) {
	.about-ability {
		height: auto;
		min-height: 126px;
		padding: 28px 0;
	}
	.about-ability__list.wrap {
		flex-wrap: wrap;
		justify-content: center;
		row-gap: 16px;
	}
	.about-ability__item {
		font-size: 22px;
		white-space: normal;
	}
}

@media (max-width: 640px) {
	.about-ability__item {
		font-size: 18px;
	}
}

/* ===== 关于我们：制造能力（与首页 sub4 一致） ===== */
.about-manuf {
	padding: 88px 0 96px;
	background: #fff;
}

.about-manuf__inner.wrap {
	padding-left: 0;
	padding-right: 0;
}

.about-manuf .manuf-caption h3 {
	margin: 0;
	color: #fff;
	font-family: var(--font-heading);
	font-size: 28px;
	font-weight: 500;
	line-height: 1.25;
}

@media (max-width: 1100px) {
	.about-manuf {
		padding: 56px 0 64px;
	}
}

/* ===== 关于我们：企业价值观 ===== */
.about-values {
	background: #f8f7f3;
	padding: 88px 0 96px;
}

.about-values__inner.wrap {
	padding-left: 0;
	padding-right: 0;
}

.about-values .oem-custom__head {
	margin-bottom: 48px;
}

.about-values__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 24px;
}

.about-values__card {
	background: #fff;
	border: 1px solid #e5e2dc;
	border-radius: 10px;
	padding: 36px 28px 40px;
	text-align: center;
}

.about-values__icon {
	display: block;
	width: 48px;
	height: 48px;
	margin: 0 auto 8px;
	object-fit: contain;
}

.about-values__tit {
	margin: 0;
	font-family: var(--font-heading);
	font-size: 18px;
	font-weight: 500;
	line-height: 48px;
	color: #222222;
}

.about-values__desc {
	margin: 0 auto;
	font-family: 'Avenir', var(--font-body);
	font-size: 14px;
	font-weight: 400;
	line-height: 20px;
	color: #777777;
}

@media (max-width: 1100px) {
	.about-values {
		padding: 64px 0 72px;
	}
	.about-values__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 640px) {
	.about-values__grid {
		grid-template-columns: 1fr;
	}
}

/* ===== 联系我们：信息卡片 ===== */
.contact-info {
	padding: 72px 0 88px;
	background: #fff;
}

.contact-info__grid.wrap {
	padding-left: 0;
	padding-right: 0;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.contact-info__card {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 40px 28px 36px;
	background: #fff;
	border: 1px solid #e5e2dc;
	border-radius: 10px;
}

.contact-info__icon {
	display: block;
	width: 55px;
	height: 55px;
	margin: 0 0 16px;
	object-fit: contain;
}

.contact-info__tit {
	margin: 0 0 8px;
	font-family: var(--font-heading);
	font-size: 17px;
	font-weight: 500;
	line-height: 1.3;
	color: #222222;
}

.contact-info__val {
	margin: 0;
	font-family: 'Avenir', var(--font-body);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5;
	color: #666666;
	text-decoration: none;
}

a.contact-info__val:hover {
	color: #b8a58a;
}

@media (max-width: 900px) {
	.contact-info {
		padding: 48px 0 56px;
	}
	.contact-info__grid.wrap {
		grid-template-columns: 1fr;
	}
}

/* ===== 联系我们：询盘 + 地址 / 地图 ===== */
.contact-inquiry {
	background: #eceae5;
	padding: 80px 0 96px;
}

.contact-inquiry__grid.wrap {
	padding-left: 0;
	padding-right: 0;
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
	gap: 48px;
	align-items: start;
}

.contact-inquiry__bt {
	margin: 0 0 12px;
	font-family: var(--font-heading);
	font-size: 40px;
	font-weight: 500;
	line-height: 1.25;
	color: #222222;
}

.contact-inquiry__dec {
	margin: 0 0 32px;
	font-family: var(--font-body);
	font-size: 15px;
	line-height: 1.6;
	color: #888888;
}

.contact-form .wpcf7 {
	margin: 0;
}

.contact-form .wpcf7-form > p {
	margin: 0;
}

.contact-form__row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

.contact-form .form-field {
	margin-bottom: 16px;
}

.contact-form .form-field label {
	display: block;
	margin: 0 0 8px;
	font-family: 'Avenir', var(--font-body);
	font-size: 13px;
	letter-spacing: 0.02em;
	color: #555;
}

.contact-form .wpcf7-form-control-wrap {
	display: block;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea,
.contact-form select,
.contact-form .wpcf7-text,
.contact-form .wpcf7-email,
.contact-form .wpcf7-textarea,
.contact-form .wpcf7-select {
	width: 100%;
	box-sizing: border-box;
	border: 1px solid #e5e2dc;
	background: #fff;
	padding: 13px 14px;
	border-radius: 6px;
	font-family: 'Avenir', var(--font-body);
	font-size: 14.5px;
	color: #222;
}

.contact-form select,
.contact-form .wpcf7-select {
	padding-right: 32px;
	appearance: none;
	-webkit-appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23666' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 14px center;
	background-size: 12px 8px;
}

.contact-form textarea,
.contact-form .wpcf7-textarea {
	min-height: 140px;
	resize: vertical;
	line-height: 1.5;
}

.contact-form .wpcf7-submit,
.contact-form input[type="submit"] {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 52px;
	margin-top: 8px;
	padding: 0 32px;
	border: 1px solid #222;
	border-radius: 3px;
	background: #222;
	color: #fff;
	font-family: var(--font-body);
	font-size: 14.5px;
	font-weight: 500;
	letter-spacing: 0.03em;
	cursor: pointer;
}

.contact-form .wpcf7-submit:hover,
.contact-form input[type="submit"]:hover {
	background: #000;
}

.contact-form .wpcf7-not-valid-tip {
	font-size: 12.5px;
	color: #a04a4a;
	margin-top: 6px;
}

.contact-form .wpcf7-response-output {
	margin: 12px 0 0;
	font-size: 14px;
}

.contact-places {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.contact-place {
	background: #fff;
	border: 1px solid #e5e2dc;
	border-radius: 10px;
	padding: 24px 26px;
}

.contact-place__gj {
	margin: 0 0 6px;
	font-family: var(--font-body);
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #b8a58a;
}

.contact-place__hy {
	margin: 0 0 8px;
	font-family: var(--font-heading);
	font-size: 22px;
	font-weight: 500;
	line-height: 1.3;
	color: #222222;
}

.contact-place__desc {
	margin: 0 0 14px;
	font-family: 'Avenir', var(--font-body);
	font-size: 14px;
	line-height: 1.55;
	color: #777777;
}

.contact-place__addr {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	margin: 0;
	font-family: 'Avenir', var(--font-body);
	font-size: 14px;
	line-height: 1.5;
	color: #666666;
}

.contact-place__addr img {
	display: block;
	width: 8px;
	height: 16px;
	margin-top: 2px;
	object-fit: contain;
}

.contact-map {
	margin-top: 16px;
	overflow: hidden;
	border-radius: 10px;
	background: #ddd9d2;
	min-height: 240px;
}

.contact-map iframe,
.contact-map img,
.contact-map video {
	display: block;
	width: 100%;
	max-width: 100%;
	height: 280px;
	border: 0;
}

.contact-map > *:first-child {
	margin-top: 0;
}

.contact-map > *:last-child {
	margin-bottom: 0;
}

@media (max-width: 1100px) {
	.contact-inquiry {
		padding: 56px 0 64px;
	}
	.contact-inquiry__grid.wrap {
		grid-template-columns: 1fr;
		gap: 36px;
	}
	.contact-inquiry__bt {
		font-size: 32px;
	}
	.contact-form__row {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 640px) {
	section,
	.section-tight,
	.cta-section,
	.marketing-carousel-section,
	#manufacturing,
	.product-detail,
	.product-cont,
	.product-related,
	.oem-intro,
	.oem-custom,
	.oem-process,
	.about-intro,
	.about-manuf,
	.about-values,
	.contact-info,
	.contact-inquiry,
	.site-archive-products,
	footer {
		padding: 40px 0;
	}

	.banner-slider-section,
	.products-catalog,
	.product-breadcrumb-bar,
	#page-banner {
		padding: 0;
	}

	#page-banner {
		padding: 24px 0;
	}
}

@media (max-width: 1560px) {
	body.ty-site:not(.front-page) .wrap,
	body.ty-site:not(.front-page) .inner,
	body.ty-site:not(.front-page) .product-breadcrumb-bar__inner,
	body.ty-site:not(.front-page) .products-cat-nav__inner,
	body.ty-site:not(.front-page) .products-group__head-inner {
		padding-left: 20px;
		padding-right: 20px;
		box-sizing: border-box;
	}
}

@media (max-width: 1280px) {
	.product-detail__grid,
	.oem-intro__grid.wrap,
	.about-intro__grid.wrap {
		grid-template-columns: 1fr;
		gap: 36px;
	}

	.product-gallery,
	.oem-intro__media,
	.oem-intro__media img,
	.about-intro__media,
	.about-intro__media img {
		width: 100%;
		max-width: 100%;
	}

	.oem-intro__copy,
	.about-intro__copy {
		max-width: none;
	}
}

@media (max-width: 640px) {
	body.ty-site .site-single-products,
	body.ty-site .product-detail,
	body.ty-site .product-cont,
	body.ty-site .product-info,
	body.ty-site .product-gallery {
		max-width: 100%;
		min-width: 0;
	}

	body.ty-site .site-single-products {
		overflow-x: hidden;
	}
}

body.ty-site .site-search {
	padding: 56px 0 80px;
}

body.ty-site .search-results-title {
	margin: 0;
	font-family: var(--font-heading);
	font-size: 36px;
	font-weight: 500;
	line-height: 1.25;
	color: var(--ink);
}

body.ty-site .search-result-item .entry-title {
	font-family: var(--font-heading);
	font-size: 22px;
	font-weight: 500;
	letter-spacing: 0;
	text-transform: none;
}

body.ty-site .search-result-item .entry-title a:hover {
	color: var(--gold);
}

@media (max-width: 640px) {
	body.ty-site .site-search {
		padding: 40px 0;
	}
	body.ty-site .search-results-title {
		font-size: 28px;
	}
}

/* ── 默认页面（page.php） ── */
.page-content {
	padding: 48px 0 80px;
}

.page-content__inner {
	max-width: 920px;
}

.page-content__media {
	margin-bottom: 36px;
	border-radius: 4px;
	overflow: hidden;
}

.page-content__media img {
	display: block;
	width: 100%;
	height: auto;
}

.page-content__body {
	font-family: var(--font-body);
	font-size: 15px;
	line-height: 1.75;
	color: #555555;
}

.page-content__body > *:first-child {
	margin-top: 0;
}

.page-content__body > *:last-child {
	margin-bottom: 0;
}

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

.page-content__body h2,
.page-content__body h3,
.page-content__body h4 {
	margin: 1.4em 0 0.6em;
	font-family: var(--font-body);
	font-weight: 700;
	line-height: 1.35;
	color: #222222;
}

.page-content__body h2 {
	font-size: 24px;
}

.page-content__body h3 {
	font-size: 20px;
}

.page-content__body h4 {
	font-size: 17px;
}

.page-content__body ul,
.page-content__body ol {
	margin: 0 0 1em;
	padding-left: 1.4em;
}

.page-content__body img,
.page-content__body video,
.page-content__body iframe {
	max-width: 100%;
	height: auto;
}

.page-content__body a {
	color: var(--ink);
	text-decoration: underline;
	text-underline-offset: 2px;
}

.page-content__body a:hover {
	color: var(--gold);
}

.page-content__pager {
	margin-top: 2em;
	font-size: 14px;
	color: var(--gray);
}

.page-content__pager-label {
	margin-right: 8px;
}

/* ── 404 页面 ── */
.page-404 {
	padding: 48px 0 80px;
}

.page-404__inner {
	max-width: 640px;
	text-align: center;
}

.page-404__code {
	font-family: var(--font-heading);
	font-size: clamp(72px, 12vw, 120px);
	line-height: 1;
	color: var(--bg-light);
	margin: 0 0 12px;
}

.page-404__title {
	font-family: var(--font-heading);
	font-size: clamp(32px, 5vw, 48px);
	font-weight: 500;
	line-height: 1.15;
	color: var(--ink);
	margin: 0 0 16px;
}

.page-404__desc {
	font-size: 16px;
	line-height: 1.7;
	color: var(--gray);
	margin: 0 auto 32px;
	max-width: 480px;
}

.page-404__actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px;
}

@media (max-width: 640px) {
	.page-content,
	.page-404 {
		padding: 40px 0;
	}

	.page-content__body h2 {
		font-size: 22px;
	}

	.page-404__actions {
		flex-direction: column;
		align-items: stretch;
	}

	.page-404__actions .btn {
		width: 100%;
	}
}










