@charset "UTF-8";
@font-face {
  font-family: "wxb";
  src: url("../fonts/WixMadeforDisplay-Bold.woff2") format("woff2"), url("../fonts/WixMadeforDisplay-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "wxr";
  src: url("../fonts/WixMadeforDisplay-Regular.woff2") format("woff2"), url("../fonts/WixMadeforDisplay-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "wxsb";
  src: url("../fonts/WixMadeforDisplay-SemiBold.woff2") format("woff2"), url("../fonts/WixMadeforDisplay-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
/**
 * Cookie Banner Style 1 - Glassmorphism Card
 * 玻璃拟态风格
 * 特点：浅色玻璃效果、渐变图标、底部居中
 */
.cookie-style-1 {
  /* Style 1 Mobile Responsive */
}
.cookie-style-1 .cookie-v1.cookiecookie {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: 0.2rem;
  -moz-transform: translateY(100%);
   -ms-transform: translateY(100%);
       transform: translateY(100%);
  -moz-transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), -moz-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), -moz-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.cookie-style-1 .cookie-v1.cookiecookie.active {
  -moz-transform: translateY(0);
   -ms-transform: translateY(0);
       transform: translateY(0);
}
.cookie-style-1 .cookie-backdrop {
  position: absolute;
  inset: 0;
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 100%);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 100%);
  pointer-events: none;
}
.cookie-style-1 .cookie-container {
  position: relative;
  width: 90%;
  max-width: max(8rem, 600px);
  margin: 0 auto;
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: justify;
       justify-content: space-between;
  gap: 0.4rem;
  padding: 0.3rem 0.4rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 0.2rem;
  box-shadow: 0 0.08rem 0.32rem rgba(0, 0, 0, 0.12), 0 0.02rem 0.08rem rgba(0, 0, 0, 0.08), inset 0 0.01rem 0 rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.cookie-style-1 .cookie-content {
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  gap: 0.24rem;
  -moz-box-flex: 1;
       flex: 1;
}
.cookie-style-1 .cookie-icon-wrapper {
  position: relative;
  flex-shrink: 0;
}
.cookie-style-1 .cookie-icon {
  position: relative;
  width: 0.5rem;
  height: 0.5rem;
  min-width: 40px;
  min-height: 40px;
  background: -moz-linear-gradient(315deg, var(--color-vi) 0%, var(--color-primary) 100%);
  background: linear-gradient(135deg, var(--color-vi) 0%, var(--color-primary) 100%);
  border-radius: 0.14rem;
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: center;
       justify-content: center;
  box-shadow: 0 0.04rem 0.15rem rgba(36, 133, 222, 0.4);
  z-index: 1;
}
.cookie-style-1 .cookie-icon svg {
  width: 0.26rem;
  height: 0.26rem;
  min-width: 20px;
  min-height: 20px;
  color: #fff;
}
.cookie-style-1 .cookie-icon-glow {
  position: absolute;
  inset: -0.04rem;
  background: -moz-linear-gradient(315deg, var(--color-vi) 0%, var(--color-primary) 100%);
  background: linear-gradient(135deg, var(--color-vi) 0%, var(--color-primary) 100%);
  border-radius: 0.18rem;
  opacity: 0.3;
  -webkit-filter: blur(0.1rem);
          filter: blur(0.1rem);
  z-index: 0;
  -webkit-animation: iconGlow 3s ease-in-out infinite alternate;
     -moz-animation: iconGlow 3s ease-in-out infinite alternate;
          animation: iconGlow 3s ease-in-out infinite alternate;
}
@-webkit-keyframes iconGlow {
  0% {
    opacity: 0.2;
    transform: scale(1);
  }
  100% {
    opacity: 0.4;
    transform: scale(1.05);
  }
}
@-moz-keyframes iconGlow {
  0% {
    opacity: 0.2;
    -moz-transform: scale(1);
         transform: scale(1);
  }
  100% {
    opacity: 0.4;
    -moz-transform: scale(1.05);
         transform: scale(1.05);
  }
}
@keyframes iconGlow {
  0% {
    opacity: 0.2;
    -moz-transform: scale(1);
         transform: scale(1);
  }
  100% {
    opacity: 0.4;
    -moz-transform: scale(1.05);
         transform: scale(1.05);
  }
}
.cookie-style-1 .cookie-text {
  -moz-box-flex: 1;
       flex: 1;
}
.cookie-style-1 .cookie-title {
  font-size: var(--font-size-18);
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.08rem;
}
.cookie-style-1 .cookie-desc {
  font-size: var(--font-size-14);
  color: var(--pp-text-muted);
  line-height: 1.6;
  margin: 0;
}
.cookie-style-1 .cookie-link {
  color: var(--color-vi);
  text-decoration: none;
  font-weight: 500;
  position: relative;
  -moz-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.cookie-style-1 .cookie-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: -moz-linear-gradient(left, var(--color-vi) 0%, var(--color-primary) 100%);
  background: linear-gradient(90deg, var(--color-vi) 0%, var(--color-primary) 100%);
  -moz-transition: width 0.3s ease;
  transition: width 0.3s ease;
  border-radius: 2px;
}
.cookie-style-1 .cookie-link:hover {
  color: var(--color-primary);
}
.cookie-style-1 .cookie-link:hover::after {
  width: 100%;
}
.cookie-style-1 .cookie-actions {
  display: -moz-box;
  display: flex;
  gap: 0.12rem;
  flex-shrink: 0;
}
.cookie-style-1 .cookie-btn {
  position: relative;
  padding: 0.12rem 0.28rem;
  border-radius: 0.1rem;
  font-size: var(--font-size-14);
  font-weight: 500;
  cursor: pointer;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: none;
  white-space: nowrap;
  display: -moz-inline-box;
  display: inline-flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: center;
       justify-content: center;
  gap: 0.06rem;
  overflow: hidden;
}
.cookie-style-1 .cookie-btn .cookie-btn-text {
  position: relative;
  z-index: 1;
}
.cookie-style-1 .cookie-btn-primary {
  background: -moz-linear-gradient(315deg, var(--color-vi) 0%, var(--color-primary) 100%);
  background: linear-gradient(135deg, var(--color-vi) 0%, var(--color-primary) 100%);
  color: #fff;
  box-shadow: 0 0.04rem 0.15rem rgba(36, 133, 222, 0.35);
}
.cookie-style-1 .cookie-btn-primary .btn-icon {
  width: 0.16rem;
  height: 0.16rem;
  min-width: 14px;
  min-height: 14px;
  stroke-width: 2.5;
  -moz-transition: transform 0.3s ease, -moz-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -moz-transform 0.3s ease;
}
.cookie-style-1 .cookie-btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: -moz-linear-gradient(315deg, var(--color-primary) 0%, var(--color-vi) 100%);
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-vi) 100%);
  opacity: 0;
  -moz-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.cookie-style-1 .cookie-btn-primary:hover {
  -moz-transform: translateY(-2px);
   -ms-transform: translateY(-2px);
       transform: translateY(-2px);
  box-shadow: 0 0.08rem 0.25rem rgba(36, 133, 222, 0.45);
}
.cookie-style-1 .cookie-btn-primary:hover::before {
  opacity: 1;
}
.cookie-style-1 .cookie-btn-primary:hover .btn-icon {
  -moz-transform: scale(1.1);
   -ms-transform: scale(1.1);
       transform: scale(1.1);
}
.cookie-style-1 .cookie-btn-primary:active {
  -moz-transform: translateY(-1px);
   -ms-transform: translateY(-1px);
       transform: translateY(-1px);
  box-shadow: 0 0.04rem 0.12rem rgba(36, 133, 222, 0.35);
}
.cookie-style-1 .cookie-btn-secondary {
  background: rgba(255, 255, 255, 0.8);
  color: var(--pp-text-muted);
  border: 1px solid var(--pp-border);
}
.cookie-style-1 .cookie-btn-secondary:hover {
  background: #fff;
  border-color: #ccc;
  color: var(--color-text);
  -moz-transform: translateY(-2px);
   -ms-transform: translateY(-2px);
       transform: translateY(-2px);
  box-shadow: 0 0.04rem 0.12rem rgba(0, 0, 0, 0.08);
}
.cookie-style-1 .cookie-btn-secondary:active {
  -moz-transform: translateY(0);
   -ms-transform: translateY(0);
       transform: translateY(0);
}
@media screen and (max-width: 768px) {
  .cookie-style-1 .cookie-v1.cookiecookie {
    padding: 0.15rem;
  }
  .cookie-style-1 .cookie-container {
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
         flex-direction: column;
    gap: 0.24rem;
    padding: 0.24rem;
    text-align: center;
  }
  .cookie-style-1 .cookie-content {
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
         flex-direction: column;
    -moz-box-align: center;
         align-items: center;
  }
  .cookie-style-1 .cookie-text {
    max-width: 4rem;
  }
  .cookie-style-1 .cookie-actions {
    width: 100%;
    -moz-box-pack: center;
         justify-content: center;
  }
  .cookie-style-1 .cookie-btn {
    -moz-box-flex: 1;
         flex: 1;
    max-width: 1.6rem;
  }
}
@media screen and (max-width: 480px) {
  .cookie-style-1 .cookie-v1.cookiecookie {
    padding: 0.1rem;
  }
  .cookie-style-1 .cookie-container {
    padding: 0.24rem 0.2rem 0.2rem;
  }
  .cookie-style-1 .cookie-icon {
    width: 0.44rem;
    height: 0.44rem;
    min-width: 36px;
    min-height: 36px;
  }
  .cookie-style-1 .cookie-icon svg {
    width: 0.22rem;
    height: 0.22rem;
    min-width: 18px;
    min-height: 18px;
  }
  .cookie-style-1 .cookie-title {
    font-size: var(--font-size-16);
  }
  .cookie-style-1 .cookie-desc {
    font-size: var(--font-size-12);
  }
  .cookie-style-1 .cookie-actions {
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
         flex-direction: column;
    width: 100%;
  }
  .cookie-style-1 .cookie-btn {
    width: 100%;
    max-width: none;
    padding: 0.14rem 0.28rem;
  }
}

/* ========================================
   模块说明
   ========================================
   1. 基础样式 (Reset + Normalize + 布局)
   2. 视频弹窗组件
   3. Footer 底部组件
   4. 导航组件
   5. 右侧客服组件
   6. 弹窗组件
   7. 作者组件
   8. 动效工具类
   9. Swiper 轮播库
   10. baguetteBox 灯箱库
   11. 图标字体 iconfont
   12. 自定义字体
   13. 语言切换下拉
   14. 搜索组件
   15. 分页组件
   16. Banner 轮播
   17. 新闻详情页
   20. Contact Us 按钮 + 首页 Banner (DIMERA)
   21. 首页 - Flooring Systems 三卡片模块
   22. 首页 - Floor Coating 四卡片模块 (第三屏)
   23. 首页 - Popular Color Selection
   24. 首页 - Sample Kit CTA
   25. 首页 - Customization & OEM Services (第六屏)
   26. 首页 - Why Choose DIMERA Flooring Systems (第八屏)
   27. 首页 - Systematic Quality Control (第九屏)
   28. 首页 - Suitable Spaces 轮播 (第七屏)
   29. 站点页脚 site-footer (浮卡 → 滚动平铺)
   30. 首页 - Professional Insights & Industry Updates (第十屏)
   31. 产品聚合页 - 什么是环氧彩砂 (hcys)
   32. 产品聚合页 - Advantages 轮播 (hcys-s2)
   33. 产品聚合页 - Choose Your Color (hcys-s3)
   34. 产品聚合页 - Technical Parameters (hcys-s4)
   35. 产品聚合页 - Applications 手风琴 (hcys-s5)
   36. 产品聚合页 - Choose DIMERA (hcys-s7)
   37. 产品聚合页 - FAQ (hcys-s8)
   38. 产品聚合页 - Choose Your Color (dingzhi-color)
   39. 定制服务页 - Trusted Performance (suit-trust)
   40. 定制服务页 - Service Process (suit-process)
   41. 定制服务页 - Professional Custom Factory (dingzhi-factory)
   42. 定制服务页 - Trusted by Customers (dingzhi-customers)
   43. 应用场景页 - Application Scenarios (appsc)
   44. 服务支持页 - Service Support (ss)
   45. 招募施工合伙人页 - Partners (partner)
   46. 工厂实力页 - Factory Strength (fs)
   47. 施工指南页 - Construction Guide (cg)
   48. 新闻列表页 - News List (newslist)
   49. 关于我们页 - 集团简介/文化/历程/专利/案例/荣誉 (group)
   50. 应用详情页 - Application Detail (appd)
   51. 应用场景页 - Classic Cases (group-case)
   52. 品质保障页 - Quality Assurance / Certifications (qa-cert)
   ======================================== */
/* ========================================
   1. 基础样式 - 开始
   ======================================== */
* {
  margin: 0px;
  padding: 0px;
  -moz-box-sizing: border-box;
       box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

img {
  -moz-transition: all 550ms;
  transition: all 550ms;
  -webkit-transition: all 550ms;
  max-width: 100%;
  width: 100%;
  border: none;
  max-height: 100%;
  object-fit: cover;
  vertical-align: top;
}

.pcbanner {
  display: block;
}

.phonebanner {
  display: none;
}

@media screen and (max-width: 768px) {
  .pcbanner {
    display: none;
  }
  .phonebanner {
    display: block;
  }
}
ul li {
  list-style-type: none;
}

ul,
form,
p,
a,
img,
table,
tr,
td,
li,
dd,
dt,
dl,
span {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  text-decoration: none;
  outline: none;
  -moz-transition: all 550ms;
  transition: all 550ms;
  -webkit-transition: all 550ms;
}

input[type=button],
input[type=submit],
input[type=reset] {
  -webkit-appearance: none;
}

button {
  border-radius: 0px;
  -webkit-border-radius: 0px;
}

/*reset css*/
html {
  font-size: max(5.2083333333vw, 50px) !important;
  /* 适配1920px宽度 */
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
  /* overflow-x: hidden; */
  font-size: var(--font-size-18);
  font-family: "wxr", Arial, Helvetica, sans-serif, Arial, Helvetica, "Microsoft YaHei", sans-serif;
  --theme-color: #008CD6;
  --primary-color: #c1dedd;
  --font-boldsb: wxsb, Arial, Helvetica, sans-serif,
  Arial,
  Helvetica,
  "Microsoft YaHei",
  sans-serif;
  --font-bold: wxb, Arial, Helvetica, sans-serif,
  Arial,
  Helvetica,
  "Microsoft YaHei",
  sans-serif;
  --font-regular:wxr, Arial, Helvetica, sans-serif,
  Arial,
  Helvetica,
  "Microsoft YaHei",
  sans-serif;
  /* --font-medium: 'HarmonyOS_SansSC_Medium'; */
  /* --font-regular: 'HarmonyOS_SansSC_Regular'; */
  /* --font-light: 'wixmadefordisplay_REGULAR'; */
  /* --font-number: 'pangmengzhengdao'; */
  /* 主题色 */
  --color-primary: #008CD6;
  /* 文本色 */
  --color-text: #222;
  --color-link: #008CD6;
  --color-vi: #61C11B;
  --color-white: #fff;
  --pp-primary: #008CD6;
  /* 导航高度 */
  --header-height: 0.98rem;
  line-height: 1.5;
  --font-size-72: max(0.72rem, 24px);
  --font-size-60: max(0.6rem, 26px);
  --font-size-54: max(0.54rem, 26px);
  --font-size-52: max(0.54rem, 26px);
  --font-size-50: max(0.5rem, 24px);
  --font-size-48: max(0.48rem, 24px);
  --font-size-44: max(0.44rem, 24px);
  --font-size-40: max(0.4rem, 24px);
  --font-size-38: max(0.36rem, 24px);
  --font-size-36: max(0.36rem, 24px);
  --font-size-34: max(0.34rem, 24px);
  --font-size-32: max(0.32rem, 22px);
  --font-size-30: max(0.3rem, 22px);
  --font-size-28: max(0.28rem, 22px);
  --font-size-26: max(0.26rem, 20px);
  --font-size-24: max(0.24rem, 16px);
  --font-size-22: max(0.22rem, 16px);
  --font-size-20: max(0.2rem, 16px);
  --font-size-18: max(0.18rem, 14px);
  --font-size-16: max(0.16rem, 14px);
  --font-size-14: max(0.14rem, 12px);
  --font-size-12: max(0.12rem, 12px);
  margin: 0 auto;
  width: 100%;
  overflow-x: hidden;
  min-height: 100vh;
  display: -moz-box;
  display: flex;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
       flex-direction: column;
}

main {
  display: block;
  -moz-box-flex: 1;
       flex: 1;
}

*[id] {
  scroll-margin-top: 1rem;
  /* 避免锚点内容被 fixed header 遮挡 */
  scroll-behavior: smooth;
}

.scroll-x {
  overflow-x: auto;
}

.scroll-x::-webkit-scrollbar {
  height: 3px;
}

.scroll-x::-webkit-scrollbar-thumb {
  background-color: var(--color-vi);
  /* 设置滚动条滑块的颜色 */
  border-radius: 5px;
  /* 设置滚动条滑块的圆角 */
}

.scroll-x::-webkit-scrollbar-thumb:hover {
  background-color: var(--color-vi);
  /* 设置滚动条滑块在悬停时的颜色 */
}

.scroll-x::-webkit-scrollbar-track {
  background-color: #fceddf;
  /* 设置滚动条背景的颜色 */
}

.scroll-y {
  overflow-y: auto !important;
}

.scroll-y::-webkit-scrollbar {
  width: max(0.04rem, 4px);
  /* 设置滚动条的宽度 */
}

.scroll-y::-webkit-scrollbar-thumb {
  background-color: var(--color-primary);
  /* 设置滚动条滑块的颜色 */
  border-radius: 5px;
  /* 设置滚动条滑块的圆角 */
}

.scroll-y::-webkit-scrollbar-thumb:hover {
  background-color: var(--color-primary);
  /* 设置滚动条滑块在悬停时的颜色 */
}

.scroll-y::-webkit-scrollbar-track {
  background-color: #DDD;
  /* 设置滚动条背景的颜色 */
}

div,
a,
p,
span,
button,
input,
textarea {
  font-family: var(--font-regular);
}

p {
  font-size: var(--font-size-p);
  line-height: 1.5;
}

h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-bold);
  color: #222;
}

h2 {
  font-size: var(--font-size-40);
}

video {
  width: 100%;
}

a {
  color: inherit;
}

/* motion effects */
/* From Uiverse.io by nikk7007 */
.slice {
  --c1: #202020;
  --c2: #00a1b7;
  --size-letter: 0.12rem;
  padding: 0.05rem 0.1rem;
  font-size: var(--size-letter);
  background-color: transparent;
  border: -moz-calc(var(--size-letter) / 6) solid var(--c2);
  border: calc(var(--size-letter) / 6) solid var(--c2);
  border-radius: 0.02rem;
  cursor: pointer;
  display: inline-block;
  overflow: hidden;
  position: relative;
  font-size: var(--font-size-14);
  -moz-transition: 300ms cubic-bezier(0.83, 0, 0.17, 1);
  transition: 300ms cubic-bezier(0.83, 0, 0.17, 1);
}
.slice > .text {
  font-weight: 700;
  color: var(--c2);
  position: relative;
  z-index: 1;
  -moz-transition: color 700ms cubic-bezier(0.83, 0, 0.17, 1);
  transition: color 700ms cubic-bezier(0.83, 0, 0.17, 1);
}

h1 {
  margin: 0;
  line-height: 1.3;
}

hr {
  -moz-box-sizing: content-box;
       box-sizing: content-box;
  height: 0;
  overflow: visible;
}

pre {
  font-family: monospace, monospace;
  font-size: 1em;
}

a {
  background-color: transparent;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img {
  border-style: none;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

legend {
  -moz-box-sizing: border-box;
       box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=checkbox],
[type=radio] {
  -moz-box-sizing: border-box;
       box-sizing: border-box;
  padding: 0;
  cursor: pointer;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

details {
  display: block;
}

summary {
  display: list-item;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

/* 常用宽度 */
.w1400 {
  width: 73.57%;
  margin: 0 auto;
}

.left-1400 {
  margin-left: 13.21%;
}

.right-1400 {
  margin-right: 13.21%;
}

.w1600 {
  width: 84.08%;
  margin: 0 auto;
}

.left-1600 {
  margin-left: 8.04%;
}

.w1760 {
  width: 92.5%;
  margin: 0 auto;
}

.w1200 {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

@media screen and (max-width: 1599px) {
  .left-1600 {
    margin-left: 5%;
  }
  .w1400 {
    width: 80%;
  }
  .left-1400 {
    margin-left: 10%;
  }
  .right-1400 {
    margin-right: 10%;
  }
}
@media screen and (max-width: 1439px) {
  .w1600 {
    width: 90%;
  }
  .w1400 {
    width: 90%;
  }
  .left-1400 {
    margin-left: 5%;
  }
  .right-1400 {
    margin-right: 5%;
  }
}
@media screen and (max-width: 1279px) {
  .w1200 {
    width: 90%;
  }
}
/* ========================================
   1. 基础样式 - 结束
   ======================================== */
.crumbs-kuang {
  font-size: var(--font-size-18);
  padding-top: 0.2rem;
  padding-bottom: 0.2rem;
}
.crumbs-kuang a:hover {
  color: var(--color-primary);
}
.crumbs-kuang .active {
  color: var(--color-primary);
}

/* ========================================
   2. 视频弹窗组件 - 开始
   ======================================== */
.video-popup {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  -moz-box-pack: center;
       justify-content: center;
  -moz-box-align: center;
       align-items: center;
  z-index: 9999;
}

.video-popup.active {
  display: -moz-box;
  display: flex;
}

.video-popup-content {
  position: relative;
  width: 90%;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
}

.video-popup iframe {
  width: 100%;
  aspect-ratio: 16/9;
  border: none;
  max-height: 90vh;
  object-fit: contain;
}

.video-popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: var(--font-size-34);
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  width: 0.36rem;
  height: 0.36rem;
  line-height: 0.36rem;
  min-width: 30px;
  min-height: 30px;
  line-height: 30px;
  text-align: center;
}

/* ========================================
   4. 视频弹窗组件 - 结束
   ======================================== */
/* ========================================
   3. Footer 底部组件 - 开始
   ======================================== */
.footer-kuang-title {
  font-size: var(--font-size-18);
  color: #fff;
}

.footer-kuang-content {
  width: 100%;
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: start;
       justify-content: flex-start;
}
.footer-kuang-content a,
.footer-kuang-content p,
.footer-kuang-content span {
  margin-right: 0.3rem;
}
.footer-kuang-content a:hover {
  color: var(--color-link);
}

.footer-kuang-left {
  display: inline-block;
}

.footer-kuang-div {
  padding-bottom: 0.2rem;
  border-bottom: 1px solid rgba(216, 216, 216, 0.11);
  margin-bottom: 0.14rem;
}
.footer-kuang-div i {
  font-size: var(--font-size-18);
  color: var(--color-666);
  margin-bottom: 0.1rem;
  display: block;
}

.footer-mid {
  background: #2B2B2B;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.footer-kuang-ewm {
  flex-wrap: wrap;
  width: 1.13rem;
  min-width: 100px;
  margin-top: 0.2rem;
}

.ewm-title {
  font-size: var(--font-size-16);
  color: #9E9E9E;
  margin-top: 0.1rem;
  text-align: center;
}

.footer-kuang-div:last-child {
  border-bottom: 0px;
}

.footer-kuang {
  display: -moz-box;
  display: flex;
  -moz-box-align: start;
       align-items: flex-start;
  -moz-box-pack: justify;
       justify-content: space-between;
  flex-wrap: wrap;
}

.footer-kuang-right {
  display: -moz-box;
  display: flex;
  -moz-box-align: start;
       align-items: flex-start;
  -moz-box-pack: flex;
       justify-content: flex;
}
.footer-kuang-right ul {
  margin-left: 1rem;
}
.footer-kuang-right ul li:first-child {
  margin-top: 0.2rem;
  color: #fff;
  font-size: var(--font-size-22);
  margin-bottom: 0.2rem;
  position: relative;
  padding-left: 0.16rem;
}
.footer-kuang-right ul li:first-child::before {
  content: "";
  position: absolute;
  left: 0px;
  top: 50%;
  -moz-transform: translateY(-50%);
   -ms-transform: translateY(-50%);
       transform: translateY(-50%);
  width: 0.05rem;
  height: 0.2rem;
  background: #fff;
}
.footer-kuang-right ul li {
  font-size: var(--font-size-18);
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.1rem;
}
.footer-kuang-right ul li a {
  display: block;
}
.footer-kuang-right ul li a:hover {
  color: var(--color-link);
}

.footer-kuang-bot {
  width: 100%;
  display: -moz-box;
  display: flex;
  -moz-box-align: end;
       align-items: flex-end;
  -moz-box-pack: justify;
       justify-content: space-between;
  flex-wrap: wrap;
}

.footer-cop {
  color: rgba(255, 255, 255, 0.35);
  margin-top: 0.2rem;
}
.footer-cop a:hover {
  color: var(--color-link);
}

@media screen and (max-width: 991px) {
  .footer-kuang-right {
    display: none;
  }
  .footer-kuang-bot {
    flex-wrap: wrap;
    -moz-box-pack: center;
         justify-content: center;
    text-align: center;
  }
  .footer-cop {
    width: 100%;
  }
  .footer-kuang-left {
    width: 100%;
    text-align: center;
  }
  .footer-kuang-left i {
    color: #fff;
  }
  .footer-kuang-content {
    -moz-box-pack: center;
         justify-content: center;
  }
}
/* ========================================
   3. Footer 底部组件 - 结束
   ======================================== */
/* ========================================
   4. 导航组件 - 开始
   ======================================== */
::-moz-selection {
  color: #fff;
  background: #829d94;
}
::selection {
  color: #fff;
  background: #829d94;
}

.table {
  width: 100%;
  overflow: auto;
}

.table table {
  width: 100%;
  border-collapse: collapse;
  border: 0px;
  line-height: 22px;
}

.table table tr td {
  border: 1px solid #f2f2f2;
  border: 0px;
  font-size: 0.12rem;
  text-align: left;
}

.m-muban-nav {
  position: fixed;
  top: 0px;
  z-index: 12;
  width: 100%;
  left: 50%;
  -moz-transform: translateX(-50%);
   -ms-transform: translateX(-50%);
       transform: translateX(-50%);
  background: #fff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.m-muban-mid-logo {
  display: block;
  font-size: 0px;
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: start;
       justify-content: flex-start;
  width: max(1.1rem, 110px);
}

.m-muban-mid {
  display: -moz-box;
  display: flex;
  -moz-box-align: initial;
       align-items: initial;
  -moz-box-pack: justify;
       justify-content: space-between;
}

.m-muban-mid-right {
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: end;
       justify-content: flex-end;
}
.m-muban-mid-right > ul {
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: start;
       justify-content: flex-start;
}
.m-muban-mid-right > ul li.active > a,
.m-muban-mid-right > ul li.active > p {
  color: var(--color-link);
  font-weight: 600;
}
.m-muban-mid-right > ul li.active > a::after,
.m-muban-mid-right > ul li.active > p::after {
  width: 100%;
}
.m-muban-mid-right > ul > li:hover > ul {
  visibility: visible;
  opacity: 1;
  -moz-transform: translateX(-50%) translateY(0);
   -ms-transform: translateX(-50%) translateY(0);
       transform: translateX(-50%) translateY(0);
}
.m-muban-mid-right > ul > li:hover > a,
.m-muban-mid-right > ul > li:hover > p {
  color: var(--color-link);
}
.m-muban-mid-right > ul > li {
  position: relative;
}
.m-muban-mid-right > ul > li > a,
.m-muban-mid-right > ul > li > p {
  display: block;
  color: var(--color-text);
  margin-left: 0.16rem;
  margin-right: 0.16rem;
  padding-top: 0.32rem;
  padding-bottom: 0.32rem;
  font-family: "wxsb", Arial, Helvetica, sans-serif;
  position: relative;
  -moz-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.m-muban-mid-right > ul > li > a::after,
.m-muban-mid-right > ul > li > p::after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 50%;
  width: 0;
  height: max(0.02rem, 2px);
  background: var(--color-link);
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -moz-transform: translateX(-50%);
   -ms-transform: translateX(-50%);
       transform: translateX(-50%);
}
.m-muban-mid-right > ul > li > a:hover::after,
.m-muban-mid-right > ul > li > p:hover::after {
  width: 100%;
}
.m-muban-mid-right > ul > li ul {
  width: auto;
  min-width: 220px;
}
.m-muban-mid-right > ul > li > ul {
  position: absolute;
  left: 50%;
  top: 100%;
  -moz-transform: translateX(-50%) translateY(8px);
   -ms-transform: translateX(-50%) translateY(8px);
       transform: translateX(-50%) translateY(8px);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 0.08rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  padding: 0.08rem 0;
  min-width: 200px;
  visibility: hidden;
  opacity: 0;
  overflow: visible;
  -moz-transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 100;
  border: 1px solid rgba(0, 0, 0, 0.06);
}
.m-muban-mid-right > ul > li > ul > li {
  padding: 0;
  position: relative;
}
.m-muban-mid-right > ul > li > ul > li a,
.m-muban-mid-right > ul > li > ul > li p {
  display: block;
  color: #333;
  font-size: var(--font-size-14);
  font-family: var(--font-regular);
  letter-spacing: 0.02em;
  line-height: 1.8;
  padding: 0.1rem 0.24rem;
  -moz-transition: all 0.25s ease;
  transition: all 0.25s ease;
  white-space: nowrap;
  position: relative;
  text-align: left;
}
.m-muban-mid-right > ul > li > ul > li a::before,
.m-muban-mid-right > ul > li > ul > li p::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -moz-transform: translateY(-50%);
   -ms-transform: translateY(-50%);
       transform: translateY(-50%);
  width: 3px;
  height: 0;
  background: var(--color-primary);
  border-radius: 0 2px 2px 0;
  -moz-transition: height 0.25s ease;
  transition: height 0.25s ease;
}
.m-muban-mid-right > ul > li > ul > li a:hover,
.m-muban-mid-right > ul > li > ul > li p:hover {
  color: var(--color-primary);
  background: rgba(0, 140, 214, 0.06);
  padding-left: 0.28rem;
}
.m-muban-mid-right > ul > li > ul > li a:hover::before,
.m-muban-mid-right > ul > li > ul > li p:hover::before {
  height: 60%;
}
.m-muban-mid-right > ul > li > ul > li:first-child a {
  border-radius: 4px 4px 0 0;
}
.m-muban-mid-right > ul > li > ul > li:last-child a {
  border-radius: 0 0 4px 4px;
}
.m-muban-mid-right > ul > li > ul > li > ul {
  position: absolute;
  left: -moz-calc(100% + 4px);
  left: calc(100% + 4px);
  top: 0;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 0.08rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  padding: 0.08rem 0;
  min-width: 180px;
  visibility: hidden;
  opacity: 0;
  -moz-transform: translateX(8px);
   -ms-transform: translateX(8px);
       transform: translateX(8px);
  -moz-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 101;
  border: 1px solid rgba(0, 0, 0, 0.06);
}
.m-muban-mid-right > ul > li > ul > li > ul > li {
  padding: 0;
}
.m-muban-mid-right > ul > li > ul > li > ul > li > a {
  padding: 0.08rem 0.2rem;
  font-size: var(--font-size-13);
  letter-spacing: 0.01em;
}
.m-muban-mid-right > ul > li > ul > li > ul > li > a:hover {
  padding-left: 0.24rem;
}
.m-muban-mid-right > ul > li > ul > li:hover > ul {
  visibility: visible;
  opacity: 1;
  -moz-transform: translateX(0);
   -ms-transform: translateX(0);
       transform: translateX(0);
}
.m-muban-mid-right > ul > li > ul > li.has-submenu > a {
  position: relative;
  padding-right: 0.4rem;
}
.m-muban-mid-right > ul > li > ul > li.has-submenu > a::after {
  content: "›";
  position: absolute;
  right: 0.16rem;
  top: 50%;
  -moz-transform: translateY(-50%);
   -ms-transform: translateY(-50%);
       transform: translateY(-50%);
  font-size: var(--font-size-18);
  color: #999;
  -moz-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.m-muban-mid-right > ul > li > ul > li.has-submenu:hover > a::after {
  color: var(--color-link);
  right: 0.12rem;
}

@media screen and (max-width: 1200px) {
  .m-muban-mid-right ul li a {
    font-size: var(--font-size-14);
  }
}
@media screen and (max-width: 991px) {
  .m-muban-mid-logo {
    height: 40px;
  }
  .contact-btn {
    margin-right: 40px;
  }
  .m-muban-mid-right ul,
  .m-muban-mid-right .duoyuyan {
    display: none;
  }
  .m-muban-mid-right .sousuo-mid {
    margin-right: 50px;
  }
  .m-muban-mid {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .sousou-kuang.active {
    height: 100vh;
  }
  .sousou-kuang .form-sousuo {
    height: 0.48rem;
    padding: 0 0.06rem 0 0.16rem;
  }
  .sousou-kuang form input[type=text] {
    font-size: var(--font-size-16);
  }
  .sousou-kuang form .tj {
    width: 0.36rem;
    min-width: 32px;
    height: 0.36rem;
    min-height: 32px;
  }
  .search-suggestions {
    margin-top: 0.2rem;
    padding: 0.16rem;
  }
  .search-suggestions .suggest-list a {
    padding: 0.06rem 0.12rem;
    font-size: var(--font-size-14);
  }
  .header-keywords {
    margin-top: 10px;
  }
}
@media screen and (max-width: 768px) {
  .header-keywords {
    font-size: 12px;
  }
  .sousou-kuang .w1400 {
    padding: 0 0.2rem;
    width: 100%;
  }
  .sousou-kuang .sousou-close {
    top: 0.2rem;
  }
  .search-suggestions .suggest-list {
    gap: 0.08rem;
  }
}
.m-mobilenav {
  display: none;
}

.duoyuyanphone {
  padding: 0.2rem;
  margin-top: 0.2rem;
  text-align: center;
  width: 100%;
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: center;
       justify-content: center;
  gap: 0.16rem;
}
.duoyuyanphone a {
  display: -moz-inline-box;
  display: inline-flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: center;
       justify-content: center;
  padding: 0.1rem 0.24rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--font-size-16);
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
  min-width: 0.8rem;
}
.duoyuyanphone a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
}
.duoyuyanphone a.active {
  color: #fff;
  background: var(--color-link);
  border-color: var(--color-link);
}

.m-mobilenav {
  display: none;
}

@media screen and (max-width: 991px) {
  .mbnav-wp_seach {
    width: 100%;
    margin: auto;
    position: absolute;
    z-index: 2;
  }
  .mbnav-wp_seach > form > .box-form {
    display: -moz-box;
    display: flex;
    height: 100%;
    height: 40px;
    -moz-box-pack: justify;
         justify-content: space-between;
    background: rgba(255, 255, 255, 0.7);
  }
  .mbnav-wp_seach > form > .box-form > .box-text {
    width: -moz-calc(100% - 30px);
    width: calc(100% - 30px);
    border: 0px;
    height: 100%;
    padding-left: 10px;
    -moz-box-sizing: border-box;
         box-sizing: border-box;
    background: transparent;
    outline: none;
  }
  .mbnav-wp_seach > form > .box-form > .box-submit {
    width: 30px;
    height: 100%;
    border: 0px;
    position: relative;
    z-index: 2;
    background: transparent;
    cursor: pointer;
    background: transparent;
  }
  .mbnav-wp_seach > form > .box-form .icon {
    position: absolute;
    right: 4px;
    top: 10px;
    z-index: 1;
  }
  .mbnav-list {
    margin-top: 20px;
  }
  .m-mobilenav {
    position: absolute;
    z-index: 11;
    padding-top: 25px;
    top: 0;
    left: 0;
    display: block;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    z-index: 100;
  }
  .m-mobilenav .mbnav-btn {
    position: fixed;
    z-index: 2;
    top: 18px;
    right: 4%;
    left: auto;
    padding: 4px;
    border-radius: 4px;
    overflow: hidden;
    background: #FFFFFF;
    width: 34px;
    -moz-transition: all 550ms;
    transition: all 550ms;
  }
  .m-mobilenav .mbnav-btn .line {
    width: 100%;
    height: 2px;
    background-color: #419c47;
    -moz-transition: 0.5s;
    transition: 0.5s;
  }
  .m-mobilenav .mbnav-btn.active .line {
    background-color: #FFFFFF;
  }
  .m-mobilenav .mbnav-btn .line2 {
    margin-top: 6px;
    margin-bottom: 6px;
  }
  .m-mobilenav .mbnav-btn .smalldaohangxuanzhong {
    background-color: #FFFFFF;
  }
  .m-mobilenav .mbnav-btn.active .line1 {
    -moz-transform: rotate(-45deg);
     -ms-transform: rotate(-45deg);
         transform: rotate(-45deg);
    background-color: #419c47;
    top: 8px;
    position: relative;
  }
  .m-mobilenav .mbnav-btn.active .line3 {
    -moz-transform: rotate(45deg);
     -ms-transform: rotate(45deg);
         transform: rotate(45deg);
    background-color: #419c47;
    bottom: 8px;
    position: relative;
  }
  .m-mobilenav .mbnav-bd {
    position: absolute;
    left: 0;
    top: 0;
    width: 300px;
    height: 100%;
    top: 0;
    visibility: hidden;
    z-index: 1;
  }
  .m-mobilenav .mbnav-bd.show {
    visibility: visible;
  }
  .m-mobilenav .mbnav-bd.show .mbnav-wp {
    height: 100%;
    opacity: 1;
  }
  .m-mobilenav .mbnav-bd.show .mbnav-item > a,
  .m-mobilenav .mbnav-bd.show .mbnav-item > p {
    opacity: 1;
    color: #FFFFFF;
    -moz-transform: scale(1) translate(0, 0);
    -ms-transform: scale(1) translate(0, 0);
    transform: scale(1) translate(0, 0);
  }
  .m-mobilenav .mbnav-wp {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 0;
    background-color: rgba(51, 51, 51, 0.9);
    top: 0;
    -moz-transition: all 550ms;
    transition: all 550ms;
    opacity: 0;
  }
  .m-mobilenav .mbnav-fix {
    position: absolute;
    left: 0;
    top: 60px;
    z-index: 1;
    height: -moz-calc(100% - 60px);
    height: calc(100% - 60px);
    width: 100%;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    /* overflow-y: scroll; */
    overflow-y: scroll;
    overflow-x: hidden;
  }
  .m-mobilenav .mbnav-item {
    position: relative;
    padding-left: 44px;
    padding-right: 24px;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .m-mobilenav .mbnav-item i {
    position: absolute;
    left: 13px;
    top: 12px;
    width: 24px;
    height: 24px;
    line-height: 24px;
    text-align: center;
    background: transparent;
    font-size: 20px;
    color: #fff;
    cursor: pointer;
  }
  .m-mobilenav .mbnav-item > a,
  .m-mobilenav .mbnav-item > p {
    display: block;
    line-height: 26px;
    font-size: 16px;
    color: #FFFFFF;
    -moz-transform: scale(1.1) translate(60px, -35px);
    -ms-transform: scale(1.1) translate(60px, -35px);
    transform: scale(1.1) translate(60px, -35px);
    opacity: 0;
    -moz-transition: 0.5s 0.1s;
    transition: 0.5s 0.1s;
  }
  .m-mobilenav .mbnav-item > a.current:after {
    content: "";
    margin-left: 5px;
    display: inline-block;
    *display: inline;
    *zoom: 1;
    vertical-align: middle;
    width: 6px;
    height: 6px;
    background-color: #fff;
    border-radius: 50%;
    -moz-transition: all 550ms;
    transition: all 550ms;
  }
  .m-mobilenav .mbnav-item > a.active {
    color: #529dba;
  }
  .m-mobilenav .mbnav-item > a.active:after {
    background-color: #529dba;
  }
  .m-mobilenav .mbnav-item:nth-child(1) > a {
    -moz-transition-delay: 250ms;
    transition-delay: 250ms;
  }
  .m-mobilenav .mbnav-item:nth-child(2) > a {
    -moz-transition-delay: 300ms;
    transition-delay: 300ms;
  }
  .m-mobilenav .mbnav-item:nth-child(3) > a {
    -moz-transition-delay: 350ms;
    transition-delay: 350ms;
  }
  .m-mobilenav .mbnav-item:nth-child(4) > a {
    -moz-transition-delay: 400ms;
    transition-delay: 400ms;
  }
  .m-mobilenav .mbnav-item:nth-child(5) > a {
    -moz-transition-delay: 450ms;
    transition-delay: 450ms;
  }
  .m-mobilenav .mbnav-item:nth-child(6) > a {
    -moz-transition-delay: 500ms;
    transition-delay: 500ms;
  }
  .m-mobilenav .mbnav-item:nth-child(7) > a {
    -moz-transition-delay: 550ms;
    transition-delay: 550ms;
  }
  .m-mobilenav .mbsbnav-list {
    padding: 10px 0;
    display: none;
  }
  .m-mobilenav .mbsbnav-item {
    position: relative;
    padding-left: 20px;
    padding-right: 5px;
  }
  .m-mobilenav .mbsbnav-item i {
    left: 0;
    top: 6px;
    line-height: 24px;
  }
  .m-mobilenav .mbsbnav-item a {
    display: block;
    padding: 5px 5px;
    line-height: 24px;
    font-size: 14px;
    color: #fff;
  }
  .m-mobilenav .mbsbnav-item a.active {
    color: #529dba;
  }
  .box-form-tj {
    position: absolute;
    font-size: 20px !important;
    right: 5px;
    top: 8px;
    color: #043F71;
  }
}
/* ========================================
   4. 导航组件 - 结束
   ======================================== */
/* ========================================
   5. 右侧客服组件 - 开始
   ======================================== */
/* 右侧客服 start */
.contact-footer.xs {
  right: 0px;
}

.kf-youxiang {
  background: var(--kf-color);
}

.contact-footer {
  position: fixed;
  right: -100px;
  bottom: 40%;
  z-index: 10;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.contact-footer i {
  font-size: var(--font-size-18);
}
.contact-footer > p {
  margin-left: auto;
  cursor: pointer;
  margin-bottom: max(0.1rem, 4px);
  width: max(0.4rem, 40px);
  height: max(0.4rem, 40px);
  flex-shrink: 0;
  font-size: var(--font-size-30);
  text-align: center;
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: center;
       justify-content: center;
  -moz-transition: 0.5s;
  transition: 0.5s;
  background: var(--color-primary);
  border-radius: 0.14rem;
}
.contact-footer > p img {
  display: none;
  width: max(0.2rem, 20px);
}
.contact-footer > p img:nth-child(2) {
  display: block;
}
.contact-footer.active > p i:before,
.contact-footer.active > p em:before {
  content: "\e608";
  font-family: "iconfont";
}
.contact-footer li {
  cursor: pointer;
  width: 40px;
  height: 40px;
  font-size: 14px;
  margin-bottom: 10px;
  position: relative;
}
.contact-footer li img {
  width: 20px;
}
.contact-footer li .con-phone {
  width: 140px;
  right: 40px;
  left: 100%;
  visibility: hidden;
  position: absolute;
  top: 0px;
  height: 100%;
  background: var(--kf-color);
  text-align: center;
  line-height: 40px;
  color: #fff;
  border-radius: 10px;
}
.contact-footer li a,
.contact-footer li p {
  cursor: pointer;
  color: #fff;
  width: 100%;
  height: 100%;
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: center;
       justify-content: center;
  -moz-transition: 0.5s;
  transition: 0.5s;
  border-radius: 50%;
}
.contact-footer li a i,
.contact-footer li p i {
  font-size: var(--font-size-18);
}
.contact-footer li a:hover {
  /* transform: translateX(-4px); */
  background: var(--color-vi);
}
.contact-footer li span {
  background-color: red;
  border-radius: 0.1rem;
  text-align: center;
  /* width: 140px; */
  padding-left: 0.1rem;
  padding-right: 0.1rem;
  white-space: nowrap;
  font-size: var(--font-size-14);
  color: #fff;
  height: 100%;
  display: -moz-inline-box;
  display: inline-flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: center;
       justify-content: center;
  position: absolute;
  right: -1000px;
  top: 0px;
  z-index: -1;
  background-color: var(--color-vi);
  -moz-transition: 0.5s;
  transition: 0.5s;
}
.contact-footer li .ewm {
  min-width: 100px;
  max-width: 100px;
  min-height: 100px !important;
  max-width: 100px;
}
.contact-footer li:hover span {
  right: 120%;
}
.contact-footer li:hover .ewm {
  left: -110px;
}

.contact-footer.active > p {
  /* transform: rotate(125deg); */
}
.contact-footer.active > p img {
  display: none;
}
.contact-footer.active > p img:nth-child(1) {
  display: block;
}

.ewm {
  position: absolute;
  width: 100px;
  min-width: 100px;
  height: 100px;
  left: 100px;
  top: 0px;
  -moz-transition: 0.5s;
  transition: 0.5s;
  z-index: -1;
}

.contact-footer > li {
  /* height: 0px; */
  height: max(0.4rem, 40px);
  width: max(0.4rem, 40px);
  border-radius: 0.14rem;
  flex-shrink: 0;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  -moz-transition: 0.5s;
  transition: 0.5s;
  background: var(--color-primary);
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: center;
       justify-content: center;
}
.contact-footer i {
  color: #fff;
}
.contact-footer > li:hover,
.contact-footer > p:hover {
  background: var(--color-vi);
}
.contact-footer.active > li {
  height: 0.4rem;
  min-height: 40px;
  overflow: unset;
  visibility: visible;
  opacity: 1;
}
.kf {
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .contact-footer li:hover {
    -moz-transform: scale(1.1);
     -ms-transform: scale(1.1);
         transform: scale(1.1);
  }
}
@media screen and (max-width: 999px) {
  .contact-footer li span {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .contact-footer.xs {
    right: 0px;
  }
  .contact-footer {
    width: 100%;
    bottom: 0px;
    display: -moz-box;
    display: flex;
    -moz-box-align: center;
         align-items: center;
    -moz-box-pack: center;
         justify-content: center;
    right: 0px;
    background: var(--kf-color);
  }
  .contact-footer p {
    display: none;
  }
  .contact-footer li {
    width: 34%;
    margin-bottom: 0px;
    border-radius: 0px;
    background: var(--color-vi);
  }
  .contact-footer li a,
  .contact-footer li p {
    border-radius: 0px;
  }
  .contact-footer li:hover .ewm {
    left: 0px;
    bottom: 140px;
  }
  .ewm {
    display: none;
    top: -100px;
    left: 0px;
  }
}
/* 右侧客服  end */
/* ========================================
   5. 右侧客服组件 - 结束
   ======================================== */
/* ========================================
   6. 弹窗组件 - 开始
   ======================================== */
/* // tanchuang start */
.tanchuang {
  position: fixed;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  top: 0px;
  bottom: 0px;
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: center;
       justify-content: center;
  z-index: 20;
  display: none;
  text-align: center;
}

.tabchuang-mid {
  max-width: 9rem;
  max-height: 90vh;
  overflow-y: auto;
  margin-left: 10px;
  margin-right: 10px;
  width: 95%;
  padding: var(--font-size-40);
  text-align: center;
  background: #fff;
  border-radius: 10px;
  position: relative;
}
.tabchuang-mid > div > p {
  margin-bottom: 0.2rem;
}

.tabchuang-mid::-webkit-scrollbar {
  width: 2px;
}

.guanbi {
  cursor: pointer;
  position: absolute;
  right: 0px;
  top: 0px;
  border-radius: 50%;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
  width: var(--font-size-40);
  height: var(--font-size-40);
  background: var(--color-vi);
  font-size: var(--font-size-20);
  font-weight: bold;
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: center;
       justify-content: center;
  color: #fff;
}
.guanbi i {
  -moz-transform: rotate(45deg);
   -ms-transform: rotate(45deg);
       transform: rotate(45deg);
}

.tabchuang-mid > form div {
  text-align: left;
}

.tabchuang-mid > form p {
  width: 100%;
  height: 0.6rem;
  margin-bottom: var(--font-size-20);
}
.tabchuang-mid > form p input {
  padding-left: 10px;
  padding-right: 10px;
  outline: none;
  width: 100%;
  border: 0px;
  height: 100%;
  background: #fafafa;
  border-radius: 0.1rem;
}
.tabchuang-mid > form p textarea {
  padding-left: 10px;
  padding-right: 10px;
  outline: none;
  width: 100%;
  border: 0px;
  height: 100%;
  background: #fafafa;
  border-radius: 0.1rem;
  border: 0px;
  padding-top: 10px;
  height: 100%;
  overflow: hidden;
}
.error-msg {
  color: red;
  font-size: var(--font-size-12);
  visibility: hidden;
  opacity: 1;
  text-align: left;
  padding-left: 0px;
  display: block;
  width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.error-msg a {
  -moz-transition: 0s;
  transition: 0s;
  text-decoration: underline;
  color: red;
}

.input-error {
  border: 1px solid red !important;
}

input:invalid:focus + .error-msg,
textarea:invalid:focus + .error-msg {
  visibility: visible;
}

.input-error {
  border: 1px solid red !important;
}

.tabchuang-mid > form p.tea {
  height: 1rem;
}
.tabchuang-mid > form p.tea .error-msg {
  position: relative;
  top: -4px;
}

.stbtanc {
  min-width: 160px;
  border-radius: 10px;
  border: 0px;
  color: #fff;
  background: var(--color-vi);
  border: solid 1px var(--color-vi);
  cursor: pointer;
}

.stbtanc:hover {
  background: var(--color-c);
  color: #222;
}

.gb-title {
  font-size: var(--font-size-30);
}

.gb-neirong > p {
  font-size: var(--font-size-20);
  margin-top: var(--font-size-20);
  height: auto;
  margin-bottom: var(--font-size-20);
}

@media screen and (max-width: 768px) {
  .tabchuang-mid {
    padding: 20px;
  }
  .gb-title {
    font-size: var(--font-size-20);
  }
  .gb-neirong > p {
    font-size: var(--font-size-14);
    margin-top: 0.1rem;
    height: auto;
    margin-bottom: 0.1rem;
  }
}
/* // tanchuang end */
/* ========================================
   6. 弹窗组件 - 结束
   ======================================== */
/* ========================================
   7. 作者组件 - 开始
   ======================================== */
.aut-fxzj a {
  display: block;
  font-size: 0px;
  overflow: hidden;
  border-radius: 50%;
  min-width: 40px;
  width: 40px;
  min-height: 40px;
  max-width: 100%;
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: center;
       justify-content: center;
  height: auto;
  background-color: #e6e6e6;
}
.aut-fxzj a i {
  font-size: 18px;
  color: #222;
}

.aut-fxzj a:hover {
  background-color: #3ab6ef;
}
.aut-fxzj a:hover i {
  color: #fff;
}

.aut-title {
  font-weight: bold;
  font-size: 42px;
  line-height: 50px;
  color: #161616;
}

.aut-ertitle {
  font-size: 24px;
  font-weight: bold;
  line-height: 36px;
  color: #3ab6ef;
  margin-top: 22px;
  margin-bottom: 8px;
}

.aut-neirong {
  font-size: 18px;
  line-height: 28px;
  color: #666666;
}

.aut-mid-left {
  width: 44%;
}

.aut-mid-right {
  width: 51%;
  text-align: center;
  border-radius: 10px;
  overflow: hidden;
}

.aut-mid-top {
  margin-top: 85px;
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: justify;
       justify-content: space-between;
  -moz-box-orient: horizontal;
  -moz-box-direction: reverse;
       flex-flow: row-reverse;
}

.aut-mobile {
  font-size: var(--font-size-24);
  font-weight: bold;
  line-height: 36px;
  color: #222222;
  margin-top: 26px;
  margin-bottom: 11px;
}

.aut-email {
  font-weight: bold;
  font-size: 24px;
  line-height: 36px;
  color: #222222;
}
.aut-email a {
  color: #3ab6ef;
}

.aut-fxzj {
  margin-top: 26px;
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: start;
       justify-content: flex-start;
}

.aut-fxzj a {
  margin-right: 17px;
}

.author-list-img {
  display: block;
  font-size: 0px;
  overflow: hidden;
}
.author-list-img img:hover {
  -moz-transform: scale(1.1);
   -ms-transform: scale(1.1);
       transform: scale(1.1);
}

.author-list-bottom {
  padding: 30px;
}

.author-list-bottom-title {
  font-size: 22px;
  line-height: 32px;
  color: #333333;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  display: block;
}

.author-list-bottom-nr {
  font-size: 18px;
  line-height: 28px;
  color: #666666;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.author-list-div {
  width: 32%;
  border-radius: 10px;
  overflow: hidden;
  margin-left: 2%;
  background: #fff;
  margin-bottom: 34px;
}
.author-list-div a:hover {
  color: #ffdf00;
}

.author-list-div.nomargin {
  margin-left: 0px;
}

.author-list {
  margin-top: 89px;
  display: -moz-box;
  display: flex;
  -moz-box-align: initial;
       align-items: initial;
  -moz-box-pack: start;
       justify-content: flex-start;
  flex-wrap: wrap;
}

@media screen and (max-width: 1280px) {
  .author-list-bottom {
    padding: 20px;
  }
}
@media screen and (max-width: 999px) {
  .book-title {
    margin-top: 10px;
  }
  .aut-mid-top {
    flex-wrap: wrap;
  }
  .aut-mid-right,
  .aut-mid-left {
    width: 100%;
    margin-bottom: 10px;
  }
  .author-list,
  .aut-mid-top {
    margin-top: 20px;
  }
  .author-list {
    flex-wrap: wrap;
    -moz-box-pack: justify;
         justify-content: space-between;
  }
  .author-list-div {
    width: 49%;
    margin-left: 0px;
  }
}
@media screen and (max-width: 768px) {
  .aut-title {
    font-size: 30px;
    line-height: 36px;
  }
  .aut-ertitle {
    font-size: 20px;
    line-height: 24px;
    margin-top: 10px;
    margin-bottom: 10px;
  }
  .aut-neirong {
    font-size: 14px;
  }
  .aut-mobile,
  .aut-email {
    font-size: 18px;
  }
  .aut-mobile {
    margin-top: 10px;
    margin-bottom: 10px;
  }
  .book-title {
    font-size: 14px;
    padding: 10px;
  }
  .author-list-bottom-title {
    font-size: 18px;
    line-height: 24px;
  }
  .author-list-bottom-nr {
    font-size: 14px;
    line-height: 24px;
    margin-top: 4px;
  }
  .author-list-bottom {
    padding: 10px;
  }
  .author-list-div {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 500px) {
  .author-list-div {
    width: 100%;
  }
}
/* ========================================
   7. 作者组件 - 结束
   ======================================== */
/* ========================================
   10. 动效工具类 - 开始
   ======================================== */
.xieleftright {
  position: relative;
}

.xieleftright:before {
  content: "";
  position: absolute;
  top: 0px;
  width: 25px;
  left: -45px;
  height: 100%;
  opacity: 0.5;
  background-color: #fff;
  -moz-transition: all 0.6s ease-out;
  transition: all 0.6s ease-out;
  -moz-transform: skewX(-25deg);
   -ms-transform: skewX(-25deg);
       transform: skewX(-25deg);
}

.xieleftright:hover:before {
  left: 120%;
}

.woshi {
  display: inline-block;
  position: relative;
}

.woshi:before {
  content: "";
  position: absolute;
  top: 0px;
  width: 25px;
  left: -45px;
  height: 100%;
  opacity: 0.5;
  background-color: #fff;
  -moz-transition: all 0.6s ease-out;
  transition: all 0.6s ease-out;
  -moz-transform: skewX(-25deg);
   -ms-transform: skewX(-25deg);
       transform: skewX(-25deg);
}

.woshi:hover:before {
  left: 120%;
}

/* ========================================
   10. 动效工具类 - 结束
   ======================================== */
/* ========================================
   11. Swiper 轮播库 - 开始
   ======================================== */
/**
 * Swiper 11.2.8
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2025 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: May 23, 2025
 */
@font-face {
  font-family: swiper-icons;
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color: #007aff ;
}

:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
  display: block;
}

.swiper-vertical > .swiper-wrapper {
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
       flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -moz-box;
  display: flex;
  -moz-transition-property: transform, -moz-transform;
  transition-property: transform;
  transition-property: transform, -moz-transform;
  -moz-transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
       transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  -moz-box-sizing: content-box;
       box-sizing: content-box;
}

.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  -moz-transform: translate3d(0px, 0, 0);
       transform: translate3d(0px, 0, 0);
}

.swiper-horizontal {
  touch-action: pan-y;
}

.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  position: relative;
  -moz-transition-property: transform, -moz-transform;
  transition-property: transform;
  transition-property: transform, -moz-transform;
  display: block;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  -moz-box-align: start;
       align-items: flex-start;
  -moz-transition-property: transform, height, -moz-transform;
  transition-property: transform, height;
  transition-property: transform, height, -moz-transform;
}

.swiper-backface-hidden .swiper-slide {
  -moz-transform: translateZ(0);
       transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
       backface-visibility: hidden;
}

.swiper-3d.swiper-css-mode .swiper-wrapper {
  -moz-perspective: 1200px;
       perspective: 1200px;
}

.swiper-3d .swiper-wrapper {
  -moz-transform-style: preserve-3d;
       transform-style: preserve-3d;
}

.swiper-3d {
  -moz-perspective: 1200px;
       perspective: 1200px;
}

.swiper-3d .swiper-cube-shadow,
.swiper-3d .swiper-slide {
  -moz-transform-style: preserve-3d;
       transform-style: preserve-3d;
}

.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
  -ms-scroll-snap-type: x mandatory;
      scroll-snap-type: x mandatory;
}

.swiper-css-mode.swiper-vertical > .swiper-wrapper {
  -ms-scroll-snap-type: y mandatory;
      scroll-snap-type: y mandatory;
}

.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
  -ms-scroll-snap-type: none;
      scroll-snap-type: none;
}

.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: none;
}

.swiper-css-mode.swiper-centered > .swiper-wrapper::before {
  content: "";
  flex-shrink: 0;
  -moz-box-ordinal-group: 10000;
       order: 9999;
}

.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}

.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  -webkit-margin-start: var(--swiper-centered-offset-before);
     -moz-margin-start: var(--swiper-centered-offset-before);
          margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}

.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  -webkit-margin-before: var(--swiper-centered-offset-before);
          margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}

.swiper-3d .swiper-slide-shadow-left {
  background-image: -moz-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-right {
  background-image: -moz-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-top {
  background-image: -moz-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-bottom {
  background-image: -moz-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -moz-transform-origin: 50%;
   -ms-transform-origin: 50%;
       transform-origin: 50%;
  -moz-box-sizing: border-box;
       box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader,
.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader {
  -webkit-animation: swiper-preloader-spin 1s infinite linear;
     -moz-animation: swiper-preloader-spin 1s infinite linear;
          animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff ;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000 ;
}

@-webkit-keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@-moz-keyframes swiper-preloader-spin {
  0% {
    -moz-transform: rotate(0deg);
         transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(360deg);
         transform: rotate(360deg);
  }
}

@keyframes swiper-preloader-spin {
  0% {
    -moz-transform: rotate(0deg);
         transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(360deg);
         transform: rotate(360deg);
  }
}
.swiper-virtual .swiper-slide {
  -webkit-backface-visibility: hidden;
  -moz-transform: translateZ(0);
       transform: translateZ(0);
}

.swiper-virtual.swiper-css-mode .swiper-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}

.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
  height: 1px;
  width: var(--swiper-virtual-size);
}

.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
  width: 1px;
  height: var(--swiper-virtual-size);
}

:root {
  --swiper-navigation-size: 44px ;
}

.swiper-button-next,
.swiper-button-prev {
  position: absolute;
  top: var(--swiper-navigation-top-offset, 50%);
  width: -moz-calc(var(--swiper-navigation-size) / 44 * 27);
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: -moz-calc(0px - var(--swiper-navigation-size) / 2);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: center;
       justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-next.swiper-button-hidden,
.swiper-button-prev.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}

.swiper-navigation-disabled .swiper-button-next,
.swiper-navigation-disabled .swiper-button-prev {
  display: none !important;
}

.swiper-button-next svg,
.swiper-button-prev svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  -moz-transform-origin: center;
   -ms-transform-origin: center;
       transform-origin: center;
}

.swiper-rtl .swiper-button-next svg,
.swiper-rtl .swiper-button-prev svg {
  -moz-transform: rotate(180deg);
   -ms-transform: rotate(180deg);
       transform: rotate(180deg);
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: var(--swiper-navigation-sides-offset, 10px);
  right: auto;
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}

.swiper-button-lock {
  display: none;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: "prev";
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: "next";
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  -moz-transition: 0.3s opacity;
  transition: 0.3s opacity;
  -moz-transform: translate3d(0, 0, 0);
       transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-pagination-disabled > .swiper-pagination,
.swiper-pagination.swiper-pagination-disabled {
  display: none !important;
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: var(--swiper-pagination-bottom, 8px);
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 100%;
}

.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -moz-transform: scale(0.33);
   -ms-transform: scale(0.33);
       transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  -moz-transform: scale(1);
   -ms-transform: scale(1);
       transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  -moz-transform: scale(1);
   -ms-transform: scale(1);
       transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  -moz-transform: scale(0.66);
   -ms-transform: scale(0.66);
       transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  -moz-transform: scale(0.33);
   -ms-transform: scale(0.33);
       transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  -moz-transform: scale(0.66);
   -ms-transform: scale(0.66);
       transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  -moz-transform: scale(0.33);
   -ms-transform: scale(0.33);
       transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet:only-child {
  display: none !important;
}

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-pagination-vertical.swiper-pagination-bullets,
.swiper-vertical > .swiper-pagination-bullets {
  right: var(--swiper-pagination-right, 8px);
  left: var(--swiper-pagination-left, auto);
  top: 50%;
  -moz-transform: translate3d(0px, -50%, 0);
       transform: translate3d(0px, -50%, 0);
}

.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  -moz-transform: translateY(-50%);
   -ms-transform: translateY(-50%);
       transform: translateY(-50%);
  width: 8px;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  -moz-transition: 0.2s transform, 0.2s top, 0.2s -moz-transform;
  transition: 0.2s transform, 0.2s top;
  transition: 0.2s transform, 0.2s top, 0.2s -moz-transform;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  -moz-transform: translateX(-50%);
   -ms-transform: translateX(-50%);
       transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -moz-transition: 0.2s transform, 0.2s left, 0.2s -moz-transform;
  transition: 0.2s transform, 0.2s left;
  transition: 0.2s transform, 0.2s left, 0.2s -moz-transform;
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -moz-transition: 0.2s transform, 0.2s right, 0.2s -moz-transform;
  transition: 0.2s transform, 0.2s right;
  transition: 0.2s transform, 0.2s right, 0.2s -moz-transform;
}

.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit);
}

.swiper-pagination-progressbar {
  background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.25));
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -moz-transform: scale(0);
   -ms-transform: scale(0);
       transform: scale(0);
  -moz-transform-origin: left top;
   -ms-transform-origin: left top;
       transform-origin: left top;
}

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  -moz-transform-origin: right top;
   -ms-transform-origin: right top;
       transform-origin: right top;
}

.swiper-horizontal > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal,
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,
.swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: var(--swiper-pagination-progressbar-size, 4px);
  left: 0;
  top: 0;
}

.swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-vertical,
.swiper-vertical > .swiper-pagination-progressbar {
  width: var(--swiper-pagination-progressbar-size, 4px);
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-lock {
  display: none;
}

.swiper-scrollbar {
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  position: relative;
  touch-action: none;
  background: var(--swiper-scrollbar-bg-color, rgba(0, 0, 0, 0.1));
}

.swiper-scrollbar-disabled > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-disabled {
  display: none !important;
}

.swiper-horizontal > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-horizontal {
  position: absolute;
  left: var(--swiper-scrollbar-sides-offset, 1%);
  bottom: var(--swiper-scrollbar-bottom, 4px);
  top: var(--swiper-scrollbar-top, auto);
  z-index: 50;
  height: var(--swiper-scrollbar-size, 4px);
  width: -moz-calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
  width: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}

.swiper-scrollbar.swiper-scrollbar-vertical,
.swiper-vertical > .swiper-scrollbar {
  position: absolute;
  left: var(--swiper-scrollbar-left, auto);
  right: var(--swiper-scrollbar-right, 4px);
  top: var(--swiper-scrollbar-sides-offset, 1%);
  z-index: 50;
  width: var(--swiper-scrollbar-size, 4px);
  height: -moz-calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
  height: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: var(--swiper-scrollbar-drag-bg-color, rgba(0, 0, 0, 0.5));
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: -moz-box;
  display: flex;
  -moz-box-pack: center;
       justify-content: center;
  -moz-box-align: center;
       align-items: center;
  text-align: center;
}

.swiper-zoom-container > canvas,
.swiper-zoom-container > img,
.swiper-zoom-container > svg {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
  touch-action: none;
}

.swiper .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-free-mode > .swiper-wrapper {
  -moz-transition-timing-function: ease-out;
       transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-grid > .swiper-wrapper {
  flex-wrap: wrap;
}

.swiper-grid-column > .swiper-wrapper {
  flex-wrap: wrap;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
       flex-direction: column;
}

.swiper-fade.swiper-free-mode .swiper-slide {
  -moz-transition-timing-function: ease-out;
       transition-timing-function: ease-out;
}

.swiper-fade .swiper-slide {
  pointer-events: none;
  -moz-transition-property: opacity;
  transition-property: opacity;
}

.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-fade .swiper-slide-active {
  pointer-events: auto;
}

.swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper.swiper-cube {
  overflow: visible;
}

.swiper-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
       backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  -moz-transform-origin: 0 0;
   -ms-transform-origin: 0 0;
       transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-cube.swiper-rtl .swiper-slide {
  -moz-transform-origin: 100% 0;
   -ms-transform-origin: 100% 0;
       transform-origin: 100% 0;
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-next,
.swiper-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  z-index: 0;
}

.swiper-cube .swiper-cube-shadow:before {
  content: "";
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  -webkit-filter: blur(50px);
          filter: blur(50px);
}

.swiper-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-bottom,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-left,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-right,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
       backface-visibility: hidden;
}

.swiper.swiper-flip {
  overflow: visible;
}

.swiper-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
       backface-visibility: hidden;
  z-index: 1;
}

.swiper-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-flip .swiper-slide-active,
.swiper-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-bottom,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-left,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-right,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
       backface-visibility: hidden;
}

.swiper-creative .swiper-slide {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
       backface-visibility: hidden;
  overflow: hidden;
  -moz-transition-property: transform, opacity, height, -moz-transform;
  transition-property: transform, opacity, height;
  transition-property: transform, opacity, height, -moz-transform;
}

.swiper.swiper-cards {
  overflow: visible;
}

.swiper-cards .swiper-slide {
  -moz-transform-origin: center bottom;
   -ms-transform-origin: center bottom;
       transform-origin: center bottom;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
       backface-visibility: hidden;
  overflow: hidden;
}

.swiper {
  width: 100%;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: var(--font-size-30);
}
.swiper-button-next:hover::after,
.swiper-button-prev:hover::after {
  color: var(--color-vi);
}

/* ========================================
   11. Swiper 轮播库 - 结束
   ======================================== */
/* ========================================
   12. baguetteBox 灯箱库 - 开始
   ======================================== */
/*!
 * baguetteBox.js
 * @author  feimosi
 * @version 1.12.0
 * @url https://github.com/feimosi/baguetteBox.js
 */
#baguetteBox-overlay {
  display: none;
  opacity: 0;
  position: fixed;
  overflow: hidden;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000000;
  background-color: #222;
  background-color: rgba(0, 0, 0, 0.8);
  -moz-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}

#baguetteBox-overlay.visible {
  opacity: 1;
}

#baguetteBox-overlay .full-image {
  display: inline-block;
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
}

#baguetteBox-overlay .full-image figure {
  display: inline;
  margin: 0;
  height: 100%;
}

#baguetteBox-overlay .full-image img {
  display: inline-block;
  width: auto;
  height: auto;
  max-height: 100%;
  max-width: 100%;
  vertical-align: middle;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
}

#baguetteBox-overlay .full-image figcaption {
  display: block;
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: center;
  line-height: 1.8;
  white-space: normal;
  color: #ccc;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.6);
  font-family: sans-serif;
}

#baguetteBox-overlay .full-image:before {
  content: "";
  display: inline-block;
  height: 50%;
  width: 1px;
  margin-right: -1px;
}

#baguetteBox-slider {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  white-space: nowrap;
  -moz-transition: left 0.4s ease, transform 0.4s ease, -moz-transform 0.4s ease;
  transition: left 0.4s ease, transform 0.4s ease;
  transition: left 0.4s ease, transform 0.4s ease, -moz-transform 0.4s ease;
}

#baguetteBox-slider.bounce-from-right {
  -webkit-animation: bounceFromRight 0.4s ease-out;
  -moz-animation: bounceFromRight 0.4s ease-out;
       animation: bounceFromRight 0.4s ease-out;
}

#baguetteBox-slider.bounce-from-left {
  -webkit-animation: bounceFromLeft 0.4s ease-out;
  -moz-animation: bounceFromLeft 0.4s ease-out;
       animation: bounceFromLeft 0.4s ease-out;
}

@-webkit-keyframes bounceFromRight {
  0% {
    margin-left: 0;
  }
  50% {
    margin-left: -30px;
  }
  100% {
    margin-left: 0;
  }
}
@-moz-keyframes bounceFromRight {
  0% {
    margin-left: 0;
  }
  50% {
    margin-left: -30px;
  }
  100% {
    margin-left: 0;
  }
}
@keyframes bounceFromRight {
  0% {
    margin-left: 0;
  }
  50% {
    margin-left: -30px;
  }
  100% {
    margin-left: 0;
  }
}
@-webkit-keyframes bounceFromLeft {
  0% {
    margin-left: 0;
  }
  50% {
    margin-left: 30px;
  }
  100% {
    margin-left: 0;
  }
}
@-moz-keyframes bounceFromLeft {
  0% {
    margin-left: 0;
  }
  50% {
    margin-left: 30px;
  }
  100% {
    margin-left: 0;
  }
}
@keyframes bounceFromLeft {
  0% {
    margin-left: 0;
  }
  50% {
    margin-left: 30px;
  }
  100% {
    margin-left: 0;
  }
}
.baguetteBox-button#previous-button,
.baguetteBox-button#next-button {
  top: 50%;
  top: -moz-calc(50% - 30px);
  top: calc(50% - 30px);
  width: 44px;
  height: 60px;
}

.baguetteBox-button {
  position: absolute;
  cursor: pointer;
  outline: none;
  padding: 0;
  margin: 0;
  border: 0;
  border-radius: 15%;
  background-color: #323232;
  background-color: rgba(50, 50, 50, 0.5);
  color: #ddd;
  font: 1.6em sans-serif;
  -moz-transition: background-color 0.4s ease;
  transition: background-color 0.4s ease;
}

.baguetteBox-button:focus,
.baguetteBox-button:hover {
  background-color: rgba(50, 50, 50, 0.9);
}

.baguetteBox-button#next-button {
  right: 2%;
}

.baguetteBox-button#previous-button {
  left: 2%;
}

.baguetteBox-button#close-button {
  top: 20px;
  right: 2%;
  right: -moz-calc(2% + 6px);
  right: calc(2% + 6px);
  width: 30px;
  height: 30px;
}

.baguetteBox-button svg {
  position: absolute;
  left: 0;
  top: 0;
}

/*
    Preloader
    Borrowed from http://tobiasahlin.com/spinkit/
*/
.baguetteBox-spinner {
  width: 40px;
  height: 40px;
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -20px;
  margin-left: -20px;
}

.baguetteBox-double-bounce1,
.baguetteBox-double-bounce2 {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #fff;
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-animation: bounce 2s infinite ease-in-out;
  -moz-animation: bounce 2s infinite ease-in-out;
       animation: bounce 2s infinite ease-in-out;
}

.baguetteBox-double-bounce2 {
  -webkit-animation-delay: -1s;
  -moz-animation-delay: -1s;
       animation-delay: -1s;
}

@-webkit-keyframes bounce {
  0%, 100% {
    transform: scale(0);
  }
  50% {
    transform: scale(1);
  }
}
@-moz-keyframes bounce {
  0%, 100% {
    -moz-transform: scale(0);
    transform: scale(0);
  }
  50% {
    -moz-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes bounce {
  0%, 100% {
    -moz-transform: scale(0);
    transform: scale(0);
  }
  50% {
    -moz-transform: scale(1);
    transform: scale(1);
  }
}
/* ========================================
   12. baguetteBox 灯箱库 - 结束
   ======================================== */
/* ========================================
   13. 图标字体 iconfont - 开始
   ======================================== */
@font-face {
  font-family: "iconfont";
  /* Project id 4893588 */
  src: url("../fonts/iconfont.woff2?t=1761202162651") format("woff2"), url("../fonts/iconfont.woff?t=1761202162651") format("woff"), url("../fonts/iconfont.ttf?t=1761202162651") format("truetype"), url("../fonts/iconfont.svg?t=1761202162651#iconfont") format("svg");
}
.iconfont {
  font-family: "iconfont" !important;
  font-size: var(--font-size-16);
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-dizhi1:before {
  content: "\e63e";
}

.icon-Mobile-:before {
  content: "\e6cf";
}

.icon-youjiantou1:before {
  content: "\e603";
}

.icon-whatsapp:before {
  content: "\e7bf";
}

.icon-email:before {
  content: "\e66f";
}

.icon-diqiu:before {
  content: "\e642";
}

.icon-calendar:before {
  content: "\e7e1";
}

.icon-chakan:before {
  content: "\e602";
}

.icon-pdf:before {
  content: "\e740";
}

.icon-xiazai_xiazai:before {
  content: "\e616";
}

.icon-youjiantou:before {
  content: "\e625";
}

.icon-zuojiantou:before {
  content: "\e626";
}

.icon-address:before {
  content: "\e66b";
}

.icon-whatsapp1:before {
  content: "\e7c1";
}

.icon-10:before {
  content: "\e624";
}

.icon-lunbozuojian:before {
  content: "\e723";
}

.icon-left1:before {
  content: "\e725";
}

.icon-shubiao:before {
  content: "\e662";
}

.icon-instagram:before {
  content: "\e87f";
}

.icon-Youtube-fill:before {
  content: "\e883";
}

.icon-sousuo1:before {
  content: "\e61f";
}

.icon-Facebook:before {
  content: "\e607";
}

.icon-zhibiaozhushibiaozhu:before {
  content: "\e609";
}

.icon-douyin:before {
  content: "\e8db";
}

.icon-huida:before {
  content: "\e61e";
}

.icon-dianhua1:before {
  content: "\e614";
}

.icon-youxiang1:before {
  content: "\e604";
}

.icon-fangzi:before {
  content: "\e8ff";
}

.icon-wenti:before {
  content: "\e613";
}

.icon-dizhi:before {
  content: "\e606";
}

.icon-youxiang:before {
  content: "\e908";
}

.icon-dianhua:before {
  content: "\e817";
}

.icon-weixin:before {
  content: "\e601";
}

.icon-phone-fill:before {
  content: "\e85f";
}

.icon-sousuo:before {
  content: "\e60d";
}

.icon-custom-phone:before {
  content: "\e634";
}

.icon-top:before {
  content: "\e605";
}

.icon-facebook:before {
  content: "\e620";
}

.icon-pinterest:before {
  content: "\e8ab";
}

.icon-jian2:before {
  content: "\e600";
}

.icon-linkedin:before {
  content: "\e648";
}

.icon-youtube:before {
  content: "\e6d6";
}

.icon-jia2:before {
  content: "\e608";
}

.icon-address1:before {
  content: "\e7c3";
}

.icon-contact1:before {
  content: "\e7c4";
}

.icon-email1:before {
  content: "\e7c5";
}

.icon-skype1:before {
  content: "\e7c9";
}

.icon-qq:before {
  content: "\e7ce";
}

.icon-top2:before {
  content: "\e637";
}

.icon-twitter3:before {
  content: "\e7fd";
}

.icon-twitter-new:before {
  content: "\e7ff";
}

.icon-xiangyoujiantou:before {
  content: "\e65f";
}

.icon-xiangzuojiantou:before {
  content: "\e660";
}

.icon-xiazai:before {
  content: "\e823";
}

.icon-xiala:before {
  content: "\e61d";
}

/* ========================================
   13. 图标字体 iconfont - 结束
   ======================================== */
/* ========================================
   14. 自定义字体 - 开始
   ======================================== */
@font-face {
  font-family: "sscr";
  src: url("../fonts/SourceHanSansCN-Regular-Alphabetic.woff2") format("woff2"), url("../fonts/SourceHanSansCN-Regular-Alphabetic.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "sscn";
  src: url("../fonts/SourceHanSansCN-Normal-Alphabetic.woff2") format("woff2"), url("../fonts/SourceHanSansCN-Normal-Alphabetic.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "sscm";
  src: url("../fonts/SourceHanSansCN-Medium-Alphabetic.woff2") format("woff2"), url("../fonts/SourceHanSansCN-Medium-Alphabetic.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "hb";
  src: url("../fonts/HarmonyOS_Sans_SC_Black.woff2") format("woff2"), url("../fonts/HarmonyOS_Sans_SC_Black.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "hc";
  src: url("../fonts/HarmonyOS_Sans_SC.woff2") format("woff2"), url("../fonts/HarmonyOS_Sans_SC.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
/* ========================================
   12. 自定义字体 - 结束
   ======================================== */
/* ========================================
   15. 语言切换下拉 - 开始
   ======================================== */
.morenyuyan {
  color: #fff;
  cursor: pointer;
  width: auto;
  height: auto;
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: center;
       justify-content: center;
  margin-right: 0.2rem;
  padding: 0.08rem 0.14rem;
  border-radius: 0.08rem;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
  gap: 0.06rem;
  font-size: var(--font-size-14);
  font-weight: 500;
}
.morenyuyan i {
  font-size: var(--font-size-20);
}
.morenyuyan .current-lang {
  min-width: 0.3rem;
  text-align: center;
}
.morenyuyan::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 0.06rem solid transparent;
  border-right: 0.06rem solid transparent;
  border-top: 0.06rem solid rgba(255, 255, 255, 0.8);
  -moz-transition: transform 0.3s ease, -moz-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -moz-transform 0.3s ease;
  margin-left: 2px;
}
.morenyuyan:hover {
  background: rgba(255, 255, 255, 0.15);
}

.duoyuyan {
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: center;
       justify-content: center;
  position: relative;
}
.duoyuyan.active .morenyuyan::after {
  -moz-transform: rotate(180deg);
   -ms-transform: rotate(180deg);
       transform: rotate(180deg);
}

.douyuyanxiala {
  min-width: 100px;
  padding: 0.08rem 0;
  position: absolute;
  top: -moz-calc(100% + 0.08rem);
  top: calc(100% + 0.08rem);
  left: 50%;
  -moz-transform: translateX(-50%) scaleY(0);
   -ms-transform: translateX(-50%) scaleY(0);
       transform: translateX(-50%) scaleY(0);
  -moz-transform-origin: top;
   -ms-transform-origin: top;
       transform-origin: top;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  -moz-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}
.douyuyanxiala::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  -moz-transform: translateX(-50%);
   -ms-transform: translateX(-50%);
       transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #fff;
}

.duoyuyan.active .douyuyanxiala {
  -moz-transform: translateX(-50%) scaleY(1);
   -ms-transform: translateX(-50%) scaleY(1);
       transform: translateX(-50%) scaleY(1);
  opacity: 1;
  visibility: visible;
}

.douyuyanxiala a {
  color: #333;
  padding: 0.1rem 0.2rem;
  display: block;
  font-size: var(--font-size-14);
  -moz-transition: all 0.2s ease;
  transition: all 0.2s ease;
  text-align: center;
  white-space: nowrap;
}
.douyuyanxiala a:hover {
  color: var(--color-link);
  background: rgba(36, 133, 222, 0.08);
}
.douyuyanxiala a:first-child {
  border-radius: 4px 4px 0 0;
}
.douyuyanxiala a:last-child {
  border-radius: 0 0 4px 4px;
}
.douyuyanxiala a.active {
  color: var(--color-link);
  font-weight: 500;
  background: rgba(36, 133, 222, 0.12);
}

/* ========================================
   15. 语言切换下拉 - 结束
   ======================================== */
/* ========================================
   16. 搜索组件 - 开始
   ======================================== */
.sousuo-mid {
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: center;
       justify-content: center;
}

.sousuo {
  cursor: pointer;
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: center;
       justify-content: center;
  width: 0.44rem;
  height: 0.44rem;
  min-width: 36px;
  min-height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: none;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.sousuo i {
  font-size: var(--font-size-24);
  color: #fff;
}
.sousuo:hover {
  background: rgba(255, 255, 255, 0.2);
  -moz-transform: scale(1.05);
   -ms-transform: scale(1.05);
       transform: scale(1.05);
}

.header-keywords {
  font-size: var(--font-size-16);
  margin-top: var(--font-size-20);
  color: var(--pp-text-muted);
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  flex-wrap: wrap;
  gap: 0.08rem;
}
.header-keywords a {
  display: -moz-inline-box;
  display: inline-flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: center;
       justify-content: center;
  padding: 0.06rem 0.12rem;
  border-radius: 999px;
  background: var(--pp-bg-light);
  border: 1px solid var(--pp-border);
  color: var(--color-text);
}
.header-keywords a:hover {
  color: #fff;
  background: var(--color-link);
  border-color: var(--color-link);
}

.search-suggestions {
  margin-top: 0.24rem;
  padding: 0.2rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
.search-suggestions .suggest-title {
  font-size: var(--font-size-14);
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.12rem;
}
.search-suggestions .suggest-list {
  display: -moz-box;
  display: flex;
  flex-wrap: wrap;
  gap: 0.1rem;
}
.search-suggestions .suggest-list a {
  display: -moz-inline-box;
  display: inline-flex;
  -moz-box-align: center;
       align-items: center;
  padding: 0.08rem 0.16rem;
  font-size: var(--font-size-14);
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.search-suggestions .suggest-list a:hover {
  background: var(--color-link);
  -moz-transform: translateY(-2px);
   -ms-transform: translateY(-2px);
       transform: translateY(-2px);
}

.sousou-kuang.active {
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
}

.sousou-kuang {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  min-width: 2rem;
  right: 0px;
  -moz-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  padding-left: 10px;
  padding-right: 10px;
  height: 0px;
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: center;
       justify-content: center;
}
.sousou-kuang .sousou-close {
  position: absolute;
  top: 0.3rem;
  right: 0.3rem;
  width: 0.44rem;
  height: 0.44rem;
  min-width: 36px;
  min-height: 36px;
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: center;
       justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  cursor: pointer;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.sousou-kuang .sousou-close i {
  font-size: var(--font-size-20);
  color: #fff;
}
.sousou-kuang .sousou-close:hover {
  border-color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.25);
  -moz-transform: rotate(90deg);
   -ms-transform: rotate(90deg);
       transform: rotate(90deg);
}
.sousou-kuang .form-sousuo {
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: justify;
       justify-content: space-between;
  width: 100%;
  height: 0.56rem;
  min-height: 44px;
  border: 2px solid transparent;
  border-radius: 999px;
  padding: 0 0.08rem 0 0.2rem;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.sousou-kuang .form-sousuo:focus-within {
  border-color: var(--color-link);
  box-shadow: 0 4px 24px rgba(36, 133, 222, 0.2);
}
.sousou-kuang .form-sousuo i {
  color: var(--color-text);
}
.sousou-kuang form {
  flex-wrap: wrap;
  max-width: 7rem;
  width: 100%;
  height: auto;
  background: transparent;
  padding: 0;
}
.sousou-kuang form input[type=text] {
  -moz-box-flex: 1;
       flex: 1;
  width: 100%;
  height: 100%;
  outline: none;
  border: 0px;
  padding-left: 0;
  padding-right: 10px;
  font-size: var(--font-size-18);
  background: transparent;
  color: var(--color-text);
}
.sousou-kuang form input[type=text]::-webkit-input-placeholder {
  color: #aaa;
}
.sousou-kuang form input[type=text]:-ms-input-placeholder {
  color: #aaa;
}
.sousou-kuang form input[type=text]::placeholder {
  color: #aaa;
}
.sousou-kuang form .tj {
  width: 0.44rem;
  min-width: 36px;
  height: 0.44rem;
  min-height: 36px;
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: center;
       justify-content: center;
  background: var(--color-link);
  border-radius: 50%;
  border: none;
  cursor: pointer;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.sousou-kuang form .tj i {
  font-size: var(--font-size-20);
  color: #fff;
}
.sousou-kuang form .tj:hover {
  background: var(--color-primary);
  -moz-transform: scale(1.05);
   -ms-transform: scale(1.05);
       transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(36, 133, 222, 0.35);
}
.sousou-kuang form .tj:active {
  -moz-transform: scale(0.95);
   -ms-transform: scale(0.95);
       transform: scale(0.95);
}

@media screen and (max-width: 991px) {
  .sousou-kuang .sousou-close {
    right: 100px;
  }
}
/* ========================================
   16. 搜索组件 - 结束
   ======================================== */
/* ========================================
   17. 分页组件 - 开始
   ======================================== */
.m-muban-pagebox {
  display: -moz-box;
  display: flex;
  -moz-box-pack: start;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 0.3rem;
  margin-bottom: 0.6rem;
  overflow: hidden;
}
.m-muban-pagebox .m-muban-next,
.m-muban-pagebox .m-muban-prev {
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: center;
       justify-content: center;
}
.m-muban-pagebox .m-muban-next i,
.m-muban-pagebox .m-muban-prev i {
  font-size: var(--font-size-16);
}

.m-muban-pagebox a,
.m-muban-pagebox p,
.m-muban-pagebox span {
  width: max(0.4rem, 40px);
  height: max(0.4rem, 40px);
  background: #f3f3f3;
  display: block;
  text-align: center;
  font-size: var(--font-size-18);
  color: var(--color-primary);
  font-weight: bold;
  margin: 0.04rem;
  border-radius: 0.05rem;
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: center;
       justify-content: center;
}

.m-muban-pagebox a:hover,
.m-muban-pagebox a.active {
  background: var(--color-link);
  color: #fff;
  border-color: var(--color-link);
}

.m-muban-pagebox a.no:hover {
  background: unset;
  color: unset;
  cursor: auto;
}

.m-muban-pagenum {
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
  align-items: center;
  -moz-box-pack: center;
  justify-content: center;
}

.m-muban-pagenum a {
  margin-left: 1%;
  margin-right: 1%;
}

@media screen and (max-width: 999px) {
  .m-muban-pagebox a,
  .m-muban-pagebox p,
  .m-muban-pagebox span {
    min-width: 30px;
    max-width: 30px;
    min-height: 30px;
    max-height: 30px;
    line-height: 28px;
  }
  .m-muban-pagebox {
    margin-top: 0.2rem;
    margin-bottom: 0.4rem;
    -moz-box-pack: center;
    justify-content: center;
  }
}
/* ========================================
   17. 分页组件 - 结束
   ======================================== */
/* ========================================
   18. Banner 轮播 - 开始
   ======================================== */
.banner-kong {
  height: 1rem;
  min-height: 60px;
}

.font56 {
  font-size: 0.56rem;
}

.text18 {
  font-size: var(--font-size-18);
}

.quanduan {
  width: auto;
  height: auto;
  padding-top: 10px;
  padding-bottom: 10px;
  display: inline-block;
  overflow: hidden;
  margin-left: 20px;
  background: #000;
}

.conic {
  position: relative;
}
.conic::before {
  content: "";
  position: absolute;
  left: -50%;
  top: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(transparent, rgb(168, 239, 255), transparent 38%);
  -webkit-animation: rotate 4s linear infinite;
     -moz-animation: rotate 4s linear infinite;
          animation: rotate 4s linear infinite;
}
@-webkit-keyframes rotate {
  100% {
    transform: rotate(1turn);
  }
}
@-moz-keyframes rotate {
  100% {
    -moz-transform: rotate(1turn);
         transform: rotate(1turn);
  }
}
@keyframes rotate {
  100% {
    -moz-transform: rotate(1turn);
         transform: rotate(1turn);
  }
}

.annnu-gd {
  display: -moz-inline-box;
  display: inline-flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: start;
       justify-content: flex-start;
  background: #fff;
  border-radius: 1rem;
  color: var(--color-text);
  padding: clamp(6px, 0.06rem, 100px);
  padding-left: 0.3rem;
  padding-right: 0.1rem;
  margin-top: 0.3rem;
  cursor: pointer;
  overflow: hidden;
  position: relative;
}
.annnu-gd span {
  display: block;
  margin-right: 0.3rem;
  z-index: 2;
}
.annnu-gd::after {
  content: "";
  position: absolute;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  -moz-transform: scale(0);
   -ms-transform: scale(0);
       transform: scale(0);
  background-color: var(--color-link);
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  z-index: 0;
  right: 0.1rem;
}
.annnu-gd i {
  display: block;
  font-size: var(--font-size-24);
  color: #fff;
  background: var(--color-link);
  padding: 0.04rem;
  width: 0.4rem;
  height: 0.4rem;
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: center;
       justify-content: center;
  border-radius: 50%;
  position: relative;
  z-index: 1;
}
.annnu-gd:hover::after {
  -moz-transform: scale(14);
   -ms-transform: scale(14);
       transform: scale(14);
}
.annnu-gd:hover span {
  color: #fff;
}
.annnu-gd:hover i {
  background: #fff;
  color: var(--color-link);
}
.annnu-gd:hover i::after {
  -moz-transform: scale(8);
   -ms-transform: scale(8);
       transform: scale(8);
}

.hengfubanner {
  position: absolute;
  width: 100%;
  background: #FF2626;
  top: max(0.9rem, 52px);
  z-index: 1;
  text-align: center;
  color: #fff;
  padding-top: 0.03rem;
  padding-bottom: 0.03rem;
  font-size: var(--font-size-14);
  padding-left: 10px;
  padding-right: 10px;
}

@media screen and (max-width: 991px) {
  .hengfubanner {
    top: 60px;
    margin: 0px;
  }
  .hengfubanner {
    line-height: 1.2;
  }
}
.banner-img {
  position: relative;
  aspect-ratio: 16/8;
}
.banner-img video,
.banner-img iframe {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-text-box .banner-text {
  position: absolute;
  top: 50%;
  left: 50%;
  -moz-transform: translate(-50%, -50%);
   -ms-transform: translate(-50%, -50%);
       transform: translate(-50%, -50%);
}
.banner-text-box .banner-text h1,
.banner-text-box .banner-text .banner-title {
  color: #fff;
  font-family: "wxb", Arial, Helvetica, sans-serif;
  font-size: var(--font-size-48);
}
.banner-text-box .banner-text h1 em,
.banner-text-box .banner-text .banner-title em {
  font-style: normal;
  color: var(--color-primary);
}

.banner-ertitle {
  display: block;
  margin-top: 0.1rem;
  color: rgba(255, 255, 255, 0.8);
}

.bannerswiper .swiper-pagination {
  width: 84.08%;
  bottom: 1.4rem;
  text-align: left;
  left: 50%;
  -moz-transform: translateX(-50%);
   -ms-transform: translateX(-50%);
       transform: translateX(-50%);
}
.bannerswiper .swiper-pagination .swiper-pagination-bullet {
  width: var(--font-size-16);
  border-radius: 0.2rem;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  background: #FFFFFF;
}
.bannerswiper .swiper-pagination .swiper-pagination-bullet-active {
  width: var(--font-size-32);
  border-radius: 0.2rem;
}

@media screen and (max-width: 1439px) {
  .bannerswiper .swiper-pagination {
    width: 90%;
  }
}
.banner-text {
  position: absolute;
  top: 50%;
  left: 50%;
  -moz-transform: translate(-50%, -50%);
   -ms-transform: translate(-50%, -50%);
       transform: translate(-50%, -50%);
  text-align: left;
  z-index: 10;
}
.banner-text h1 {
  color: #222222;
  font-weight: 700;
  opacity: 0;
  -moz-transform: translateY(30px);
   -ms-transform: translateY(30px);
       transform: translateY(30px);
  -moz-transition: all 0.8s ease;
  transition: all 0.8s ease;
}
.banner-text p {
  color: #222222;
  opacity: 0;
  -moz-transform: translateY(30px);
   -ms-transform: translateY(30px);
       transform: translateY(30px);
  -moz-transition: all 0.8s ease 0.2s;
  transition: all 0.8s ease 0.2s;
}
.banner-text a {
  opacity: 0;
  -moz-transform: translateY(30px);
   -ms-transform: translateY(30px);
       transform: translateY(30px);
  -moz-transition: all 0.8s ease 0.4s;
  transition: all 0.8s ease 0.4s;
}
.banner-text .m-search-btn {
  opacity: 0;
  -moz-transform: translateY(30px);
   -ms-transform: translateY(30px);
       transform: translateY(30px);
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.banner-text.animate-in h1,
.banner-text.animate-in p,
.banner-text.animate-in a,
.banner-text.animate-in .m-search-btn {
  opacity: 1;
  -moz-transform: translateY(0);
   -ms-transform: translateY(0);
       transform: translateY(0);
}

@media screen and (max-width: 991px) {
  .bannerswiper .swiper-pagination {
    bottom: 1rem;
  }
}
.banner-tetx-kk {
  max-width: 7rem;
}

.bannerkong {
  padding-top: max(0.9rem, 52px);
}

@media screen and (max-width: 991px) {
  .bannerkong {
    padding-top: 60px;
  }
}
.banner-img {
  aspect-ratio: 19.2/8.4;
  background: #f5f5f5;
  overflow: hidden;
}
.banner-img img,
.banner-img video,
.banner-img iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-text {
  position: absolute;
  top: 50%;
  left: 50%;
  -moz-transform: translate(-50%, -50%);
   -ms-transform: translate(-50%, -50%);
       transform: translate(-50%, -50%);
  text-align: left;
  z-index: 5;
  max-width: 100%;
}
.banner-text .banner-title {
  color: #222222;
  font-family: var(--font-bold);
  font-size: var(--font-size-54);
  font-weight: 700;
  margin: 0;
}
.banner-text .banner-title .hl,
.banner-text .banner-title em {
  color: var(--color-link);
  font-style: normal;
}
.banner-text .banner-ertitle {
  color: #222222;
  margin-top: 0.15rem;
  font-size: var(--font-size-18);
  font-family: var(--font-regular);
}
.banner-text .m-search-btn {
  margin-top: 0.32rem;
}

.bannerswiper .swiper-pagination .swiper-pagination-bullet {
  height: max(0.04rem, 4px);
  border-radius: 0.04rem;
  background: #cfd6dd;
  opacity: 1;
  margin-right: 0.08rem;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}
.bannerswiper .swiper-pagination .swiper-pagination-bullet-active {
  width: 0.64rem;
  background: var(--color-link);
}

.banner-bg {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width: 1400px) {
  .bannerswiper .swiper-pagination {
    bottom: 0.4rem;
  }
}
@media screen and (max-width: 991px) {
  .banner-home .banner-img {
    aspect-ratio: unset;
    min-height: 500px;
  }
}
/* ========================================
   18. Banner 轮播 - 结束
   ======================================== */
/* ========================================
   19. 新闻详情页 - 开始
   ======================================== */
.home-our-mid {
  padding-top: var(--font-size-40);
}

.m-muban-newxq-mid {
  display: -moz-box;
  display: flex;
  -moz-box-align: start;
       align-items: flex-start;
  -moz-box-pack: justify;
       justify-content: space-between;
}

.m-muban-newxq-left {
  width: 70%;
  background: saddlebrown;
}

.m-muban-newxq-right {
  width: 28%;
  background: #666666;
}

.toc a {
  display: block;
  color: #fff;
}

#toc.active {
  margin-top: 20px;
}

.newxq-s1 .news-xq-mid {
  display: -moz-box;
  display: flex;
  -moz-box-align: start;
       align-items: flex-start;
  -moz-box-pack: justify;
       justify-content: space-between;
  padding-bottom: 0.7rem;
}
.newxq-s1 .news-xq-mid-left {
  width: 68%;
  color: var(--color-text);
}
.newxq-s1 .news-xq-mid-right {
  position: -webkit-sticky;
  position: sticky;
  top: 100px;
  z-index: 1;
  width: 24%;
}
.newxq-s1 .author-mid {
  padding: 0.2rem 0px;
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: justify;
       justify-content: space-between;
  width: 100%;
  flex-wrap: wrap;
  border-radius: 10px;
}
@media screen and (max-width: 1080px) {
  .newxq-s1 .author-mid {
    width: 100%;
  }
}
.newxq-s1 .author-left {
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: start;
       justify-content: flex-start;
  flex-wrap: wrap;
  width: 100%;
  margin-left: 1%;
  margin-right: 1%;
}
.newxq-s1 .author-name {
  width: 100%;
  font-size: var(--font-size-24);
  margin-top: 4px;
  margin-bottom: 4px;
}
.newxq-s1 .author-js {
  font-size: var(--font-size-16);
}
.newxq-s1 .author-js a {
  color: var(--color-link);
}
.newxq-s1 .author-img {
  min-width: 97px;
  width: 97px;
  min-height: 97px;
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: center;
       justify-content: center;
  background-color: #e8ecef;
  border-radius: 10%;
}
.newxq-s1 .new-maodian-title {
  font-size: var(--font-size-24);
  line-height: 0.36rem;
  color: var(--color-text);
  margin-bottom: 0.26rem;
  position: relative;
}
.newxq-s1 .new-maodian-div {
  border-radius: 5px;
  z-index: 2;
  background: #fff;
  padding: var(--font-size-20);
  margin-bottom: 32px;
  box-shadow: 0px 4px 32px 0px rgba(167, 167, 167, 0.3);
}
.newxq-s1 #toc > a {
  display: block;
  font-size: var(--font-size-18);
  line-height: 24px;
  color: #666666;
  margin-bottom: 20px;
}
.newxq-s1 #toc > a:hover {
  color: var(--color-primary);
  font-weight: bold;
}
.newxq-s1 .newsxq-contact {
  font-size: 16px;
  background-color: #ffffff;
  border-radius: 5px;
  padding-top: var(--font-size-20);
}
.newxq-s1 .newsxq-contact h1 {
  font-size: var(--font-size-48);
  line-height: 1.2;
  margin-bottom: var(--font-size-30);
}
.newxq-s1 .newsxq-contact h2,
.newxq-s1 .newsxq-contact h3 {
  font-size: var(--font-size-30);
  margin-top: 0.1rem;
  margin-bottom: 0.1rem;
}
.newxq-s1 .newsxq-contact .newxq-data {
  line-height: 30px;
  display: -moz-box;
  display: flex;
  flex-wrap: wrap;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: start;
       justify-content: flex-start;
  margin-top: 0.12rem;
  margin-bottom: 0.2rem;
}
.newxq-s1 .newsxq-contact .newxq-data p {
  margin-right: 10%;
}
.newxq-s1 .newsxq-contact-div {
  border-top: solid 2px #dedede;
  border-bottom: solid 2px #dedede;
  padding-top: 16px;
  padding-bottom: 16px;
  font-size: var(--font-size-18);
  line-height: 1.75;
}
.newxq-s1 .newsxq-contact-div p,
.newxq-s1 .newsxq-contact-div span,
.newxq-s1 .newsxq-contact-div a {
  line-height: 1.75;
}
.newxq-s1 .newsxq-contact-div img {
  display: inline-block;
  border-radius: 10px;
}
.newxq-s1 .newsxq-contact-bottom {
  padding-top: 4%;
  padding-bottom: 2%;
}
.newxq-s1 .newsxq-contact-bottom {
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: justify;
       justify-content: space-between;
}
.newxq-s1 .newsxq-contact-bottom a:hover {
  font-weight: bold;
}
.newxq-s1 .newsxq-contact-bottom .prev {
  color: var(--color-primary);
}
.newxq-s1 .newsxq-contact-bottom .prev i {
  font-size: var(--font-size-30);
}
.newxq-s1 .newsxq-contact-bottom .next {
  color: var(--color-text);
}
.newxq-s1 .newsxq-contact-bottom .next i {
  font-size: var(--font-size-30);
}
.newxq-s1 .newsxq-contact-bottom .news-list {
  min-width: 2.2rem;
  border-radius: 25px;
  text-align: center;
  font-size: var(--font-size-18);
  line-height: 40px;
  color: #ffffff;
  border: 1px solid var(--color-primary);
}
.newxq-s1 .newsxq-contact-bottom .news-list:hover {
  color: #fff;
  background: var(--color-primary);
}
.newxq-s1 .news-xq-data {
  font-size: var(--font-size-16);
  color: var(--color-text);
}
.newxq-s1 .news-xq-title {
  font-size: var(--font-size-18);
  line-height: 28px;
  color: #222222;
  display: block;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.newxq-s1 .news-xq-hot-div {
  padding: var(--font-size-20);
  background: #fff;
  margin-bottom: 10px;
  border-radius: 5px;
  box-shadow: 0px 4px 32px 0px rgba(167, 167, 167, 0.3);
}
.newxq-s1 .news-xq-hot-div a:hover {
  color: var(--color-primary);
}
.newxq-s1 .news-xq-img {
  display: block;
  font-size: 0px;
  overflow: hidden;
  border-radius: 10px;
  margin-top: 10px;
}
.newxq-s1 .news-xq-img img:hover {
  -moz-transform: scale(1.1);
   -ms-transform: scale(1.1);
       transform: scale(1.1);
}
.newxq-s1 .new-xqview {
  font-size: var(--font-size-14);
  line-height: 36px;
  color: var(--color-qianse);
}
@media screen and (max-width: 1280px) {
  .newxq-s1 .author-img {
    min-height: 74px;
    min-width: 74px;
    width: 74px;
    margin-right: 14px;
  }
}
@media screen and (max-width: 768px) {
  .newxq-s1 .new-maodian-div {
    display: none;
  }
  .newxq-s1 .news-xq-mid {
    flex-wrap: wrap;
  }
  .newxq-s1 .news-xq-mid-left,
  .newxq-s1 .newsxq-contact,
  .newxq-s1 .news-xq-mid-right {
    width: 100%;
  }
  .newxq-s1 .news-xq-mid-right {
    display: none;
  }
}
.newxq-s1 .author-top-author {
  line-height: 1.75;
  width: 68%;
}
.newxq-s1 .author-top-author a {
  color: var(--color-vi);
}
.newxq-s1 .author-top-author .author-mid {
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: justify;
       justify-content: space-between;
  flex-wrap: nowrap;
}
.newxq-s1 .author-top-author .author-mid .author-left {
  width: auto;
}
.newxq-s1 .author-top-author .author-mid .author-left .author-img-nr {
  margin-left: 10px;
}
.newxq-s1 .author-top-author .author-mid .author-left .author-img-nr p {
  font-size: var(--font-size-18);
  line-height: 1.75;
}
@media screen and (max-width: 991px) {
  .newxq-s1 .author-top-author {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .newxq-s1 .author-top-author .author-mid {
    flex-wrap: wrap;
    -moz-box-pack: center;
         justify-content: center;
    text-align: center;
  }
  .newxq-s1 .author-top-author .author-mid .author-left {
    width: 100%;
  }
  .newxq-s1 .author-top-author .author-mid .author-left .author-img-nr {
    width: 100%;
    margin-left: 0px;
  }
  .newxq-s1 .author-top-author .author-left,
  .newxq-s1 .author-top-author .author-right {
    width: 100%;
    margin: 0px;
    text-align: left;
    width: 100%;
    flex-wrap: wrap;
  }
  .newxq-s1 .author-top-author .author-left .author-img,
  .newxq-s1 .author-top-author .author-right .author-img {
    margin-left: a;
    margin-right: auto;
  }
}

/* newsxq end */
/* ========================================
   17. 新闻详情页 - 结束
   ======================================== */
/* ========================================
   20. Contact Us 按钮 + 首页 Banner - 开始
   ======================================== */
.contact-btn {
  display: -moz-inline-box;
  display: inline-flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: center;
       justify-content: center;
  gap: 0.14rem;
  padding: 0.1rem 0.2rem;
  margin-left: 0.16rem;
  border-radius: 1rem;
  background: var(--color-primary);
  color: #fff;
  font-size: var(--font-size-16);
  font-family: var(--font-regular);
  white-space: nowrap;
  -moz-transition: all 550ms;
  transition: all 550ms;
  -webkit-transition: all 550ms;
}
.contact-btn:hover {
  box-shadow: 0 6px 18px rgba(36, 133, 222, 0.28);
}
.contact-btn svg {
  width: max(0.24rem, 24px);
}
.contact-btn span {
  color: #fff;
  line-height: 1;
}
.contact-btn:hover {
  -moz-transform: translateY(-2px);
   -ms-transform: translateY(-2px);
       transform: translateY(-2px);
  -webkit-transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(36, 133, 222, 0.42);
  color: #fff;
}

@media screen and (max-width: 1200px) {
  .contact-btn span {
    display: none;
  }
}
.m-search-btn {
  display: -moz-inline-box;
  display: inline-flex;
  -moz-box-align: center;
       align-items: center;
  background: #fff;
  border-radius: 0.4rem;
  box-shadow: 0 4px 17.6px rgba(194.63, 194.63, 194.63, 0.25);
  padding: max(0.08rem, 6px) 0.18rem;
  padding-right: 0.1rem;
  cursor: pointer;
  -moz-transition: all 550ms;
  transition: all 550ms;
  -webkit-transition: all 550ms;
}
.m-search-btn:hover {
  box-shadow: 0 6px 24px rgba(194.63, 194.63, 194.63, 0.4);
  -moz-transform: translateY(-2px);
   -ms-transform: translateY(-2px);
       transform: translateY(-2px);
  -webkit-transform: translateY(-2px);
  background: var(--color-primary);
  color: #fff;
}
.m-search-btn:hover p {
  color: #fff;
  -moz-transition: all 0s;
  transition: all 0s;
}
.m-search-btn span,
.m-search-btn p {
  font-family: var(--font-boldsb);
  margin-right: 0.24rem;
}
.m-search-btn .m-search-btn__icon {
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: center;
       justify-content: center;
  width: max(0.37rem, 26px);
  height: max(0.37rem, 26px);
  border-radius: 50%;
  background: var(--color-vi);
  flex-shrink: 0;
  -moz-transition: all 550ms;
  transition: all 550ms;
  -webkit-transition: all 550ms;
}
.m-search-btn .m-search-btn__icon i {
  font-size: var(--font-size-20);
  color: #fff;
}

@media screen and (max-width: 768px) {
  .m-search-btn {
    font-size: var(--font-size-14);
  }
}
/* ========================================
   21. 首页 - Flooring Systems 三卡片模块 - 开始
   ======================================== */
.index-system {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.index-system-grid {
  display: grid;
  grid-template-columns: 1fr 6.79rem;
  grid-template-rows: auto auto;
  grid-template-areas: "head white" "row  white";
  -webkit-column-gap: 0.21rem;
     -moz-column-gap: 0.21rem;
          column-gap: 0.21rem;
  row-gap: 0.24rem;
}

.index-system-head {
  grid-area: head;
  padding-top: 0.05rem;
}

.index-system-title {
  font-family: var(--font-bold);
  font-size: var(--font-size-48);
  color: var(--color-text);
  line-height: 1.2;
  margin-bottom: 0.2rem;
}
.index-system-title em {
  color: var(--color-link);
  font-style: normal;
}
.index-system-title strong {
  color: var(--color-vi);
}

.index-system-desc {
  font-size: var(--font-size-18);
  color: #666;
  line-height: 1.6;
  margin-bottom: 0.2rem;
}

.index-system-btn {
  display: -moz-inline-box;
  display: inline-flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: justify;
       justify-content: space-between;
  padding: 0.08rem 0.2rem;
  border: 1px solid var(--color-text);
  border-radius: 0.42rem;
  color: var(--color-text);
  font-size: var(--font-size-18);
  flex-shrink: 0;
  -moz-transition: all 550ms;
  transition: all 550ms;
  -webkit-transition: all 550ms;
}
.index-system-btn span,
.index-system-btn p {
  font-family: var(--font-boldsb);
}
.index-system-btn i {
  flex-shrink: 0;
  display: -moz-inline-box;
  display: inline-flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: center;
       justify-content: center;
  width: max(0.35rem, 28px);
  height: max(0.35rem, 28px);
  border-radius: 50%;
  font-size: var(--font-size-22);
  font-family: var(--font-boldsb);
  margin-left: 0.16rem;
  -moz-transition: all 550ms;
  transition: all 550ms;
  -webkit-transition: all 550ms;
}
.index-system-btn:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
  -moz-transform: translateY(-2px);
   -ms-transform: translateY(-2px);
       transform: translateY(-2px);
  -webkit-transform: translateY(-2px);
}
.index-system-btn:hover span,
.index-system-btn:hover p {
  color: #fff;
}
.index-system-btn:hover i {
  background: #fff;
  color: var(--color-primary);
}

.index-system-row {
  grid-area: row;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.15rem;
}

.index-system-card {
  position: relative;
  overflow: hidden;
  border-radius: 0.1rem;
  padding: 0.36rem 0.3rem;
  color: #fff;
  cursor: pointer;
  display: -moz-box;
  display: flex;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
       flex-direction: column;
  -moz-box-pack: end;
       justify-content: flex-end;
  -moz-transition: all 550ms;
  transition: all 550ms;
  -webkit-transition: all 550ms;
}
.index-system-card .card-decor {
  position: absolute;
  width: 100%;
  height: auto;
  top: 0px;
  bottom: 0px;
  right: 0px;
  opacity: 1;
  pointer-events: none;
  object-fit: contain;
}
.index-system-card .card-title {
  position: relative;
  z-index: 2;
  font-family: var(--font-bold);
  font-size: var(--font-size-24);
  color: #fff;
  -moz-transition: all 550ms;
  transition: all 550ms;
  -webkit-transition: all 550ms;
}
.index-system-card .card-line {
  position: relative;
  z-index: 2;
  height: 2px;
  background: rgba(255, 255, 255, 0.26);
  margin: 0.18rem 0;
  width: 2.34rem;
  max-width: 80%;
  opacity: 0;
  -moz-transform: translateY(8px);
   -ms-transform: translateY(8px);
       transform: translateY(8px);
  -moz-transition: all 550ms;
  transition: all 550ms;
  -webkit-transition: all 550ms;
}
.index-system-card .card-line::before {
  content: "";
  position: absolute;
  left: 0.93rem;
  top: -1px;
  width: 0.48rem;
  height: 4px;
  background: var(--color-primary);
}
.index-system-card .card-desc {
  position: relative;
  z-index: 2;
  font-family: var(--font-regular);
  font-size: var(--font-size-18);
  line-height: 1.5;
  color: #fff;
  opacity: 0;
  -moz-transform: translateY(12px);
   -ms-transform: translateY(12px);
       transform: translateY(12px);
  max-height: 0;
  overflow: hidden;
  -moz-transition: all 550ms;
  transition: all 550ms;
  -webkit-transition: all 550ms;
}
.index-system-card:hover .card-line {
  opacity: 1;
  -moz-transform: translateY(0);
   -ms-transform: translateY(0);
       transform: translateY(0);
}
.index-system-card:hover .card-desc {
  opacity: 1;
  -moz-transform: translateY(0);
   -ms-transform: translateY(0);
       transform: translateY(0);
  max-height: 5rem;
}
.index-system-card.green {
  background: var(--color-vi);
  min-height: 3.99rem;
}
.index-system-card.blue {
  background: var(--color-primary);
  min-height: 3.99rem;
}
.index-system-card:nth-child(2) .card-line::before {
  background: var(--color-vi);
}

.index-system-white {
  grid-area: white;
  position: relative;
  overflow: hidden;
  border-radius: 0.2rem;
  box-shadow: 0 4px 28px rgba(197, 197, 197, 0.25);
  min-height: 6rem;
  display: -moz-box;
  display: flex;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
       flex-direction: column;
}
.index-system-white .card-kk {
  padding: 0.36rem 0.37rem;
}
.index-system-white:hover img {
  -moz-transform: scale(1.05);
   -ms-transform: scale(1.05);
       transform: scale(1.05);
}
.index-system-white img {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.index-system-white::before {
  content: "";
  position: absolute;
  inset: 0;
  background: -moz-linear-gradient(top, #fff 42%, rgba(255, 255, 255, 0) 85%);
  background: linear-gradient(to bottom, #fff 42%, rgba(255, 255, 255, 0) 85%);
  z-index: 1;
  pointer-events: none;
}

.white-card-title {
  position: relative;
  z-index: 2;
  font-family: var(--font-bold);
  font-size: var(--font-size-34);
  color: var(--color-text);
  line-height: 1.2;
  margin-bottom: 0.18rem;
}

.white-card-desc {
  position: relative;
  z-index: 2;
  font-family: var(--font-regular);
  font-size: var(--font-size-18);
  color: var(--color-text);
  line-height: 1.55;
}

@media screen and (max-width: 1279px) {
  .index-system-grid {
    grid-template-columns: 1fr 5.4rem;
  }
  .index-system-white {
    min-height: 5.4rem;
  }
}
@media screen and (max-width: 991px) {
  .index-system {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
  .index-system-grid {
    grid-template-columns: 1fr;
    grid-template-areas: "head" "row" "white";
    row-gap: 0.3rem;
  }
  .index-system-desc {
    max-width: 100%;
  }
  .index-system-card {
    -moz-box-pack: start;
         justify-content: flex-start;
  }
  .index-system-card .card-line,
  .index-system-card .card-desc {
    opacity: 1;
    -moz-transform: none;
     -ms-transform: none;
         transform: none;
    max-height: none;
  }
  .index-system-card:nth-child(2) .card-line::before {
    background: var(--color-vi) !important;
  }
}
@media screen and (max-width: 768px) {
  .index-system-row {
    grid-template-columns: 1fr;
  }
}
/* ========================================
   21. 首页 - Flooring Systems 三卡片模块 - 结束
   ======================================== */
/* ========================================
   22. 首页 - Floor Coating 四卡片模块 (第三屏) - 开始
   ======================================== */
.index-coating {
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
  overflow: hidden;
}

.coating-head {
  margin-bottom: 0.4rem;
}

.coating-title {
  font-size: var(--font-size-48);
  color: var(--color-text);
  font-family: "wxb", Arial, Helvetica, sans-serif;
  line-height: 1.2;
}
.coating-title em {
  color: #61c11b;
  font-style: normal;
}

.coating-desc {
  margin-top: 0.13rem;
  max-width: 10.63rem;
  font-size: var(--font-size-18);
  color: #666;
  line-height: 1.5;
}

.coating-swiper {
  overflow: visible;
}
.coating-swiper .swiper-wrapper {
  -moz-box-align: stretch;
       align-items: stretch;
}

.coating-card {
  position: relative;
  background: #f5f5f5;
  border-radius: 0.1rem;
  overflow: hidden;
  padding: 0.52rem 0.33rem 0;
  height: 6.93rem;
  display: block;
  color: var(--color-text);
  -moz-transition: all 550ms;
  transition: all 550ms;
  -webkit-transition: all 550ms;
}
.coating-card .card-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  -webkit-clip-path: circle(30% at 50% 64%);
          clip-path: circle(30% at 50% 64%);
  transition: clip-path 700ms cubic-bezier(0.65, 0, 0.35, 1), -webkit-clip-path 700ms cubic-bezier(0.65, 0, 0.35, 1), transform 700ms cubic-bezier(0.65, 0, 0.35, 1);
}
.coating-card .card-mask {
  position: absolute;
  inset: 0;
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.2) 60%, rgba(0, 0, 0, 0.05) 100%);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.2) 60%, rgba(0, 0, 0, 0.05) 100%);
  z-index: 1;
  opacity: 0;
  -moz-transition: opacity 500ms;
  transition: opacity 500ms;
  -webkit-transition: opacity 500ms;
}
.coating-card .card-top {
  position: relative;
  display: -moz-box;
  display: flex;
  -moz-box-pack: justify;
       justify-content: space-between;
  -moz-box-align: start;
       align-items: flex-start;
  gap: 0.2rem;
  z-index: 2;
}
.coating-card .card-title {
  -moz-box-flex: 1;
       flex: 1 1 auto;
  font-size: var(--font-size-24);
  color: var(--color-text);
  font-family: var(--font-bold);
  line-height: 1.25;
  word-break: break-word;
  -moz-transition: color 400ms;
  transition: color 400ms;
  -webkit-transition: color 400ms;
}
.coating-card .card-arrow {
  -moz-box-flex: 0;
       flex: 0 0 auto;
  width: 0.56rem;
  height: 0.56rem;
  border-radius: 50%;
  border: 1px solid #222;
  display: -moz-inline-box;
  display: inline-flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: center;
       justify-content: center;
  background: transparent;
  color: #222;
  -moz-transition: all 550ms;
  transition: all 550ms;
  -webkit-transition: all 550ms;
}
.coating-card .card-arrow i {
  font-size: 0.2rem;
  line-height: 1;
  -moz-transform: rotate(45deg);
   -ms-transform: rotate(45deg);
       transform: rotate(45deg);
  -moz-transition: transform 400ms, -moz-transform 400ms;
  transition: transform 400ms;
  transition: transform 400ms, -moz-transform 400ms;
  -webkit-transition: transform 400ms;
}
.coating-card .card-desc {
  position: relative;
  margin-top: 0.18rem;
  font-size: var(--font-size-18);
  color: #666;
  z-index: 2;
  -moz-transition: color 400ms;
  transition: color 400ms;
  -webkit-transition: color 400ms;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.coating-card:hover .card-bg, .coating-card.active .card-bg {
  clip-path: circle(100% at 50% 50%);
  -webkit-clip-path: circle(100% at 50% 50%);
}
.coating-card:hover .card-mask, .coating-card.active .card-mask {
  opacity: 1;
}
.coating-card:hover .card-title,
.coating-card:hover .card-desc, .coating-card.active .card-title,
.coating-card.active .card-desc {
  color: #fff;
}
.coating-card:hover .card-arrow, .coating-card.active .card-arrow {
  background: var(--color-link);
  border-color: var(--color-link);
  color: #fff;
}
.coating-card:hover .card-arrow i, .coating-card.active .card-arrow i {
  -moz-transform: rotate(-45deg);
   -ms-transform: rotate(-45deg);
       transform: rotate(-45deg);
}

@media screen and (max-width: 1450px) {
  .coating-card .card-bg {
    clip-path: circle(30% at 50% 70%);
    -webkit-clip-path: circle(30% at 50% 70%);
  }
}
@media screen and (max-width: 991px) {
  .index-coating {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
  .coating-head {
    margin-bottom: 0.3rem;
  }
  .coating-card {
    height: 5.6rem;
    padding: 0.4rem 0.3rem 0;
  }
  .coating-card .card-bg {
    clip-path: circle(34% at 50% 70%);
    -webkit-clip-path: circle(34% at 50% 70%);
  }
  .coating-card {
    height: 340px;
    padding: 0.4rem 0.3rem 0;
  }
  .coating-card .card-title {
    font-size: 18px;
  }
  .coating-card .card-desc {
    font-size: 13px;
  }
  .coating-card .card-arrow {
    width: 40px;
    height: 40px;
  }
  .coating-card .card-arrow i {
    font-size: 14px;
  }
  .coating-card .card-bg {
    clip-path: circle(100% at 50% 50%);
    -webkit-clip-path: circle(100% at 50% 50%);
  }
  .coating-card .card-mask {
    opacity: 1;
  }
  .coating-card .card-title,
  .coating-card .card-desc {
    color: #fff;
  }
  .coating-card .card-arrow {
    background: var(--color-link);
    border-color: var(--color-link);
    color: #fff;
  }
  .coating-card .card-arrow i {
    -moz-transform: rotate(-45deg);
     -ms-transform: rotate(-45deg);
         transform: rotate(-45deg);
  }
}
/* ========================================
   22. 首页 - Floor Coating 四卡片模块 (第三屏) - 结束
   ======================================== */
/* ========================================
   23. 首页 - Popular Color Selection - 开始
   ======================================== */
.color-sel {
  padding: 0.85rem 0 0.9rem;
  background: -moz-linear-gradient(top, #f7fcff 0%, rgba(247, 252, 255, 0) 100%);
  background: linear-gradient(180deg, #f7fcff 0%, rgba(247, 252, 255, 0) 100%);
}

.color-sel-head {
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  gap: 0.16rem;
}

.color-sel-title {
  font-size: 0.42rem;
  color: var(--color-text);
  font-family: var(--font-bold);
  line-height: 1.2;
}

.color-sel-btn {
  -moz-box-flex: 0;
       flex: 0 0 max(0.62rem, 36px);
  height: max(0.45rem, 22px);
  border-radius: 0.225rem;
  border: 1px solid #222;
  display: -moz-inline-box;
  display: inline-flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: center;
       justify-content: center;
  color: #222;
  -moz-transition: all 550ms;
  transition: all 550ms;
  -webkit-transition: all 550ms;
}
.color-sel-btn i, .color-sel-btn em {
  font-size: var(--font-size-20);
}
.color-sel-btn:hover {
  background: var(--color-link);
  border-color: var(--color-link);
  color: #fff;
}
.color-sel-btn.green {
  background: var(--color-vi);
  color: #fff;
  border-color: var(--color-vi);
  -moz-transition: all 550ms;
  transition: all 550ms;
  -webkit-transition: all 550ms;
}
.color-sel-btn.green:hover {
  background: var(--color-primary);
  border-color: var(--color-link);
}

.color-sel-desc {
  margin-top: 0.15rem;
  max-width: 9.6rem;
  font-size: var(--font-size-18);
  color: #666;
  line-height: 1.55;
}

/* body 左右布局 */
.color-sel-body {
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: justify;
       justify-content: space-between;
  margin-top: 0.5rem;
  gap: 0.3rem;
}

/* 左侧选项卡 */
.color-sel-tabs {
  -moz-box-flex: 0;
       flex: 0 0 6.82rem;
  max-height: 4.2rem;
  overflow-y: auto;
  padding-right: 0.76rem;
}

.color-tab {
  cursor: pointer;
  margin-bottom: 0.26rem;
  padding-bottom: 0.26rem;
  border-bottom: max(0.01rem, 1px) solid #CFCFCF;
}
.color-tab.active .color-tab-tag {
  opacity: 1;
}
.color-tab.active .color-tab-name {
  color: var(--color-primary);
}

.color-tab-name {
  font-size: var(--font-size-24);
  color: #666;
  font-family: var(--font-boldsb);
  -moz-transition: all 550ms;
  transition: all 550ms;
  -webkit-transition: all 550ms;
}

.color-top {
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: start;
       justify-content: flex-start;
}

.color-tab-tag {
  display: inline-block;
  margin-left: 0.16rem;
  padding: 0.04rem 0.18rem;
  background: var(--color-primary);
  color: #fff;
  border-radius: 0.8rem;
  font-family: var(--font-bold);
  vertical-align: middle;
  opacity: 0;
}

.color-tab-desc {
  font-size: var(--font-size-18);
  color: #666;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  -moz-transition: all 550ms;
  transition: all 550ms;
  -webkit-transition: all 550ms;
}

.color-tab.active .color-tab-desc {
  margin-top: 0.12rem;
  max-height: 1.2rem;
  opacity: 1;
  margin-bottom: 0.08rem;
}

/* 右侧图片区 */
.color-sel-pics {
  position: relative;
  width: 49.1875%;
  height: 4.82rem;
  overflow: hidden;
  border-radius: max(0.1rem, 10px);
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: center;
       justify-content: center;
}

.color-sel-pics img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.color-sel-pics img:hover {
  -moz-transform: scale(1.02);
   -ms-transform: scale(1.02);
       transform: scale(1.02);
}

@media screen and (max-width: 991px) {
  .color-sel-tabs {
    max-height: 5.2rem;
  }
  .color-sel-pics {
    height: 5.2rem;
  }
}
@media screen and (max-width: 767px) {
  .color-sel-body {
    flex-wrap: wrap;
  }
  .color-sel-tabs {
    -moz-box-flex: 1;
         flex: 1;
    max-height: 240px;
  }
  .color-sel-pics {
    height: auto;
    aspect-ratio: 8/5;
    width: 100%;
  }
}
/* ========================================
   23. 首页 - Popular Color Selection - 结束
   ======================================== */
/* ========================================
   24. 首页 - Sample Kit CTA - 开始
   ======================================== */
.sample-kit {
  position: relative;
  width: 100%;
  overflow: hidden;
  box-shadow: 0 0.04rem 0.149rem 0.16rem rgba(227, 227, 227, 0.25);
}
.sample-kit .w1600 {
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: start;
       justify-content: flex-start;
  height: 100%;
}

.sample-kit-bg {
  position: absolute;
  right: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.sample-kit-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sample-kit-bg::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: -moz-linear-gradient(left, #fff 52.4%, rgba(255, 255, 255, 0) 94.2%);
  background: linear-gradient(to right, #fff 52.4%, rgba(255, 255, 255, 0) 94.2%);
}

.sample-kit-content {
  position: relative;
  z-index: 2;
  max-width: 9.28rem;
  padding: 0.2rem 0px;
}

.sample-kit-title {
  font-size: 0.47rem;
  font-family: var(--font-bold);
  color: #222;
  line-height: 1.3;
  margin-bottom: 0.18rem;
}
.sample-kit-title span {
  color: #61c11b;
}

.sample-kit-desc {
  font-size: var(--font-size-18);
  color: #222;
  margin-bottom: 0.35rem;
}

.sample-kit-btn {
  display: -moz-inline-box;
  display: inline-flex;
  -moz-box-align: center;
       align-items: center;
  background: var(--color-primary);
  color: #fff;
  border-radius: 0.42rem;
  font-size: var(--font-size-18);
  font-family: var(--font-boldsb);
  padding-left: 0.24rem;
  padding: 0.06rem 0.2rem;
  gap: 0.2rem;
  -moz-transition: all 550ms;
  transition: all 550ms;
  -webkit-transition: all 550ms;
}
.sample-kit-btn i {
  width: max(0.34rem, 24px);
  height: max(0.34rem, 24px);
  font-size: var(--font-size-30);
  border-radius: 50%;
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: center;
       justify-content: center;
}
.sample-kit-btn:hover {
  background: var(--color-vi);
  -moz-transform: translateY(-2px);
   -ms-transform: translateY(-2px);
       transform: translateY(-2px);
  -webkit-transform: translateY(-2px);
}

/* ========================================
   24. 首页 - Sample Kit CTA - 结束
   ======================================== */
/* ========================================
   25. 首页 - Customization & OEM Services (第六屏) - 开始
   ======================================== */
.oem-service {
  padding-top: 1rem;
  padding-bottom: 0.5rem;
}

.oem-head {
  margin-bottom: 0.7rem;
}
.oem-head.faq {
  margin-bottom: 0.24rem;
}

.oem-head-top {
  display: -moz-inline-box;
  display: inline-flex;
  -moz-box-align: center;
       align-items: center;
  gap: 0.2rem;
}

.oem-title {
  font-size: 0.38rem;
  color: var(--color-text);
  font-family: var(--font-bold);
  font-weight: 700;
  line-height: 1.15;
}

.oem-head-btn {
  flex-shrink: 0;
  display: -moz-inline-box;
  display: inline-flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: center;
       justify-content: center;
  width: max(0.62rem, 36px);
  height: max(0.45rem, 26px);
  border-radius: 0.5rem;
  background: #61c11b;
  -moz-transition: all 550ms;
  transition: all 550ms;
  -webkit-transition: all 550ms;
}
.oem-head-btn i {
  color: #fff;
  font-size: var(--font-size-22);
  line-height: 1;
}
.oem-head-btn:hover {
  -moz-transform: translateY(-2px);
   -ms-transform: translateY(-2px);
       transform: translateY(-2px);
  -webkit-transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(97, 193, 27, 0.3);
}

.oem-desc {
  margin-top: 0.2rem;
  font-size: var(--font-size-18);
  color: #666;
  line-height: 1.55;
}

.oem-row {
  display: -moz-box;
  display: flex;
  flex-wrap: wrap;
}

.oem-col {
  -moz-box-flex: 1;
       flex: 1;
  min-width: 0;
  padding: 0.7rem 0.4rem 0.5rem;
  position: relative;
  border-bottom: max(0.01rem, 1px) solid #D9D9D9;
}
.oem-col:first-child {
  padding-left: 0;
}
.oem-col:last-child {
  padding-right: 0;
}
.oem-col + .oem-col::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0px;
  bottom: 0.5rem;
  height: 100%;
  width: 1px;
  background: #e5e5e5;
}
.oem-col:hover .oem-col-title {
  color: #008cd6;
}
.oem-col:hover .oem-icon {
  -moz-transform: translateY(-8px) scale(1.08);
   -ms-transform: translateY(-8px) scale(1.08);
       transform: translateY(-8px) scale(1.08);
}
.oem-col:hover .oem-col-desc {
  -moz-transform: translateY(-4px);
   -ms-transform: translateY(-4px);
       transform: translateY(-4px);
}

.oem-icon {
  width: max(0.42rem, 36px);
  height: max(0.42rem, 36px);
  margin-bottom: 0.67rem;
  -moz-transition: transform 500ms, -moz-transform 500ms;
  transition: transform 500ms;
  transition: transform 500ms, -moz-transform 500ms;
  -webkit-transition: transform 500ms;
}
.oem-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.oem-col-title {
  font-size: var(--font-size-24);
  color: var(--color-text);
  font-family: var(--font-bold);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 0.26rem;
  -moz-transition: color 300ms;
  transition: color 300ms;
  -webkit-transition: color 300ms;
}

.oem-col-desc {
  font-size: var(--font-size-18);
  color: var(--color-text);
  line-height: 1.55;
  -moz-transition: transform 500ms, -moz-transform 500ms;
  transition: transform 500ms;
  transition: transform 500ms, -moz-transform 500ms;
  -webkit-transition: transform 500ms;
}

@media screen and (max-width: 768px) {
  .oem-desc {
    max-width: 100%;
  }
  .oem-row {
    display: block;
  }
  .oem-col {
    padding: 0;
    border-bottom: 0px;
  }
  .oem-col + .oem-col {
    margin-top: 0.4rem;
    padding-top: 0.4rem;
    border-top: 1px solid #e5e5e5;
  }
  .oem-col + .oem-col::before {
    display: none;
  }
}
/* ========================================
   25. 首页 - Customization & OEM Services (第六屏) - 结束
   ======================================== */
/* ========================================
   26. 首页 - Why Choose DIMERA Flooring Systems (第八屏) - 开始
   ======================================== */
.why-choose {
  position: relative;
  overflow: hidden;
  padding-top: 0.71rem;
  padding-bottom: 0.7rem;
}

.why-choose-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.why-choose-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.why-choose-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: -moz-linear-gradient(359.5deg, rgba(255, 255, 255, 0) 46%, rgba(255, 255, 255, 0.91) 100%);
  background: linear-gradient(90.5deg, rgba(255, 255, 255, 0) 46%, rgba(255, 255, 255, 0.91) 100%);
  z-index: 2;
}
.why-choose-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: -moz-linear-gradient(89deg, rgba(255, 255, 255, 0) 40%, #fff 87%);
  background: linear-gradient(1deg, rgba(255, 255, 255, 0) 40%, #fff 87%);
  z-index: 3;
}

.why-choose-wrap {
  position: relative;
  z-index: 5;
}

.why-choose-head {
  position: relative;
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: justify;
       justify-content: space-between;
  gap: 0.3rem;
}

.why-choose-title {
  font-size: var(--font-size-52);
  color: var(--color-text);
  font-family: var(--font-bold);
  font-weight: 700;
  line-height: 1.15;
}
.why-choose-title span {
  color: #61c11b;
}

.why-choose-btn {
  -moz-box-flex: 0;
       flex: none;
  display: -moz-inline-box;
  display: inline-flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: justify;
       justify-content: space-between;
  gap: 0.2rem;
  width: 3.52rem;
  height: 0.55rem;
  padding: 0 0.24rem;
  border: 1px solid var(--color-text);
  border-radius: 0.42rem;
  font-size: var(--font-size-18);
  color: var(--color-text);
  font-family: var(--font-bold);
  font-weight: 600;
  margin-top: 0.38rem;
  -moz-transition: all 550ms;
  transition: all 550ms;
  -webkit-transition: all 550ms;
}
.why-choose-btn i {
  font-size: var(--font-size-20);
  line-height: 1;
  -moz-transition: transform 300ms, -moz-transform 300ms;
  transition: transform 300ms;
  transition: transform 300ms, -moz-transform 300ms;
  -webkit-transition: transform 300ms;
}
.why-choose-btn:hover {
  background: var(--color-text);
  color: #fff;
}
.why-choose-btn:hover i {
  -moz-transform: translateX(4px);
   -ms-transform: translateX(4px);
       transform: translateX(4px);
  -webkit-transform: translateX(4px);
}

.why-choose-desc {
  margin-top: 0.26rem;
  font-size: var(--font-size-18);
}

.why-choose-body {
  position: relative;
  margin-top: 1.15rem;
  display: -moz-box;
  display: flex;
  -moz-box-pack: justify;
       justify-content: space-between;
  -moz-box-align: end;
       align-items: flex-end;
  gap: 0.4rem;
}

.why-choose-card {
  width: 40%;
  padding: 0.54rem 0.5rem 0.4rem 0.3rem;
  background: rgba(255, 255, 255, 0.37);
  border: 1px solid #fff;
  border-radius: 0.1rem;
  backdrop-filter: blur(4.2px);
  -webkit-backdrop-filter: blur(4.2px);
  align-self: flex-end;
}

.why-choose-card-desc {
  font-size: var(--font-size-18);
  color: var(--color-text);
  line-height: 1.55;
}

.why-choose-stats {
  width: 35.3125%;
  display: -moz-box;
  display: flex;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
       flex-direction: column;
  -moz-box-pack: justify;
       justify-content: space-between;
  gap: 0.84rem;
  padding-bottom: 0.5rem;
}

.why-choose-stat {
  position: relative;
  padding-left: 0.4rem;
}
.why-choose-stat::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.16rem;
  width: 3px;
  height: 1.14rem;
  background: rgba(34, 34, 34, 0.13);
}
.why-choose-stat .stat-top {
  display: -moz-box;
  display: flex;
  -moz-box-align: end;
       align-items: flex-end;
  gap: 0.16rem;
  line-height: 1;
}
.why-choose-stat .stat-number {
  font-size: var(--font-size-72);
  color: var(--color-text);
  font-family: var(--font-bold);
  font-weight: 700;
  line-height: 1;
  -moz-transition: all 0.35s;
  transition: all 0.35s;
}
.why-choose-stat .stat-label {
  font-size: var(--font-size-22);
  color: var(--color-text);
  font-family: var(--font-bold);
  -moz-transition: all 0.35s;
  transition: all 0.35s;
  font-weight: 700;
  padding-bottom: 0.1rem;
}
.why-choose-stat .stat-desc {
  margin-top: 0.22rem;
}
.why-choose-stat:hover .stat-number,
.why-choose-stat:hover .stat-label {
  color: #008cd6;
}
.why-choose-stat:hover .stat-desc {
  color: var(--color-text);
}

@media screen and (max-width: 1279px) {
  .why-choose-card {
    width: 50%;
    padding: 0.4rem 0.36rem;
  }
  .why-choose-stats {
    width: 46%;
  }
}
@media screen and (max-width: 991px) {
  .why-choose {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
  .why-choose-head {
    flex-wrap: wrap;
  }
  .why-choose-head-top {
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
         flex-direction: column;
    -moz-box-align: start;
         align-items: flex-start;
    gap: 0.3rem;
  }
  .why-choose-btn {
    width: auto;
    min-width: 3rem;
    padding: 0 0.3rem;
    height: 0.7rem;
    margin-top: 0;
  }
  .why-choose-body {
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
         flex-direction: column;
    margin-top: 0.5rem;
    gap: 0.3rem;
  }
  .why-choose-card {
    width: 100%;
    margin-bottom: 0;
    padding: 0.3rem;
    min-height: 0;
  }
  .why-choose-stats {
    width: 100%;
    gap: 0.4rem;
  }
  .why-choose-stat {
    padding-left: 0.3rem;
  }
  .why-choose-stat::before {
    height: 100%;
    top: 0;
  }
  .why-choose-stat .stat-top {
    flex-wrap: wrap;
    -moz-box-align: baseline;
         align-items: baseline;
  }
}
@media screen and (max-width: 768px) {
  .why-choose-stat .stat-number {
    font-size: 44px;
  }
  .why-choose-stat .stat-label {
    font-size: 18px;
  }
}
/* ========================================
   26. 首页 - Why Choose DIMERA Flooring Systems (第八屏) - 结束
   ======================================== */
/* ========================================
   27. 首页 - Systematic Quality Control (第九屏) - 开始
   ======================================== */
.index-quality {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.quality-head {
  margin-bottom: 0.5rem;
}

.quality-head-top {
  display: -moz-inline-box;
  display: inline-flex;
  -moz-box-align: center;
       align-items: center;
  gap: 0.2rem;
}

.quality-title {
  font-size: 0.42rem;
  color: var(--color-text);
  font-family: var(--font-bold);
  font-weight: 700;
  line-height: 1.15;
}

.quality-head-btn {
  flex-shrink: 0;
  display: -moz-inline-box;
  display: inline-flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: center;
       justify-content: center;
  width: max(0.62rem, 44px);
  height: max(0.45rem, 32px);
  border: 1px solid var(--color-text);
  border-radius: max(0.225rem, 16px);
  background: #fff;
  -moz-transition: all 550ms;
  transition: all 550ms;
  -webkit-transition: all 550ms;
}
.quality-head-btn i {
  color: var(--color-text);
  font-size: var(--font-size-20);
  line-height: 1;
  -moz-transition: transform 300ms, -moz-transform 300ms;
  transition: transform 300ms;
  transition: transform 300ms, -moz-transform 300ms;
  -webkit-transition: transform 300ms;
}
.quality-head-btn:hover {
  background: var(--color-text);
}
.quality-head-btn:hover i {
  color: #fff;
  -moz-transform: translateX(3px);
   -ms-transform: translateX(3px);
       transform: translateX(3px);
  -webkit-transform: translateX(3px);
}

.quality-desc {
  margin-top: 0.2rem;
  max-width: 9rem;
  font-size: var(--font-size-18);
  color: #666;
  line-height: 1.55;
}

.quality-tabs {
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: start;
       justify-content: flex-start;
  flex-wrap: wrap;
  gap: 0.2rem 0.24rem;
  margin: 0.5rem 0 0.3rem;
  margin-bottom: 0.4rem;
}

.quality-tab {
  font-size: var(--font-size-24);
  color: var(--color-text);
  font-family: var(--font-bold);
}

.quality-dash {
  display: inline-block;
  width: 0.22rem;
  height: max(0.04rem, 4px);
  background: #008cd6;
  flex-shrink: 0;
}

.quality-card {
  -moz-box-flex: 1;
       flex: 1;
  min-width: 0;
  background: #fff;
  border: 1px solid #c1c1c1;
  border-radius: 0.1rem;
  padding: 0.19rem 0.5rem;
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: center;
       justify-content: center;
  overflow: hidden;
  -moz-transition: all 550ms;
  transition: all 550ms;
  -webkit-transition: all 550ms;
}
.quality-card img {
  width: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  -moz-transition: transform 500ms, -moz-transform 500ms;
  transition: transform 500ms;
  transition: transform 500ms, -moz-transform 500ms;
  -webkit-transition: transform 500ms;
}
.quality-card:hover {
  border-color: #008cd6;
  box-shadow: 0 8px 20px rgba(0, 140, 214, 0.12);
}
.quality-card:hover img {
  -moz-transform: scale(1.04);
   -ms-transform: scale(1.04);
       transform: scale(1.04);
  -webkit-transform: scale(1.04);
}

.qualityswiper {
  padding-right: 2px;
}

@media screen and (max-width: 1279px) {
  .quality-tabs {
    gap: 0.16rem 0.2rem;
  }
  .quality-tab {
    font-size: var(--font-size-20);
  }
  .quality-card {
    padding: 0.19rem 0.3rem;
  }
}
@media screen and (max-width: 991px) {
  .quality-desc {
    max-width: 100%;
  }
  .quality-tabs {
    gap: 0.14rem 0.18rem;
  }
}
@media screen and (max-width: 768px) {
  .quality-tabs {
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
         flex-direction: column;
    -moz-box-align: start;
         align-items: flex-start;
    gap: 0.12rem;
  }
  .quality-dash {
    display: none;
  }
}
.ss-cta {
  position: relative;
  margin-bottom: -0.4rem;
}

.ss-cta-mid {
  min-height: 2.85rem;
  position: relative;
  box-shadow: 0 0 30px 15px rgba(226, 226, 226, 0.3);
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: start;
       justify-content: flex-start;
}
.ss-cta-mid img {
  position: absolute;
  left: 0px;
  border-radius: max(0.1rem, 10px);
  top: 0px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ss-cta-kuang {
  z-index: 1;
  position: relative;
  padding: 0.4rem;
  max-width: 9rem;
}
.ss-cta-kuang .suit-btn {
  padding: 0.13rem 0.24rem;
}

.ss-cta-annu {
  gap: 0.3rem;
  display: -moz-inline-box;
  display: inline-flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: start;
       justify-content: flex-start;
  flex-wrap: wrap;
}

.ss-cta-title {
  font-size: var(--font-size-38);
  margin-bottom: 0.06rem;
  font-family: "wxb", Arial, Helvetica, sans-serif;
}

.ss-cta-ertitle {
  font-size: var(--font-size-18);
  color: #666;
  margin-bottom: 0.3rem;
}

@media screen and (max-width: 768px) {
  .ss-cta-kuang {
    width: 100%;
    max-width: unset;
  }
  .ss-cta-kuang::before {
    content: "";
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    z-index: -1;
  }
}
/* ========================================
   27. 首页 - Systematic Quality Control (第九屏) - 结束
   ======================================== */
/* ========================================
   28. 首页 - Suitable Spaces 轮播 (第七屏) - 开始
   ======================================== */
.suit-space {
  padding-top: 0.8rem;
  padding-bottom: 0.4rem;
  overflow: hidden;
}

.suit-head {
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: justify;
       justify-content: space-between;
  gap: 0.4rem;
  margin-bottom: 0.6rem;
}
.suit-head.faq {
  margin-bottom: 0.3rem;
}

.suit-head-text {
  -moz-box-flex: 1;
       flex: 1;
  min-width: 0;
}

.suit-title {
  font-size: 0.42rem;
  color: var(--color-text);
  font-family: var(--font-bold);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.18rem;
}
.suit-title em {
  font-style: normal;
  color: var(--color-primary);
  margin-right: 0.1rem;
}
.suit-title strong {
  color: var(--color-primary);
}
.suit-title.green em {
  color: var(--color-vi);
}

.suit-desc {
  font-size: var(--font-size-18);
  color: #666;
  line-height: 1.55;
}
.suit-desc em {
  color: var(--color-vi);
  font-style: normal;
}
.suit-desc strong {
  color: var(--color-primary);
  font-weight: 500;
}
.suit-desc.blue em {
  color: var(--color-primary);
  font-style: normal;
}

.suit-btn {
  flex-shrink: 0;
  display: -moz-inline-box;
  display: inline-flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: justify;
       justify-content: space-between;
  padding: 0.08rem 0.24rem;
  border: 1px solid #222;
  border-radius: 0.5rem;
  color: #222;
  font-size: var(--font-size-18);
  line-height: 1;
  font-family: "wxsb";
  -moz-transition: all 550ms;
  transition: all 550ms;
  -webkit-transition: all 550ms;
}
.suit-btn i {
  width: max(0.35rem, 28px);
  height: max(0.35rem, 28px);
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: center;
       justify-content: center;
  margin-left: 0.2rem;
  border-radius: 50%;
  font-size: var(--font-size-30);
  -moz-transition: transform 300ms, -moz-transform 300ms;
  transition: transform 300ms;
  transition: transform 300ms, -moz-transform 300ms;
  -webkit-transition: transform 300ms;
}
.suit-btn:hover {
  color: #fff;
  background: var(--color-primary);
  border: 0px;
  -moz-transform: translateY(-2px);
   -ms-transform: translateY(-2px);
       transform: translateY(-2px);
}
.suit-btn:hover i {
  color: #fff;
  background: var(--color-white);
  -moz-transform: translateX(4px);
   -ms-transform: translateX(4px);
       transform: translateX(4px);
  color: var(--color-primary);
}

.suit-swiper {
  overflow: visible;
  padding-bottom: 0.6rem;
}
.suit-swiper .swiper-wrapper {
  -moz-box-align: center;
       align-items: center;
  min-height: 5.6rem;
}
.suit-swiper .swiper-slide {
  width: 5.22rem;
  height: auto;
}

.suit-card {
  position: relative;
  background: rgba(196, 235, 255, 0.24);
  border: 1px solid rgba(0, 140, 214, 0.36);
  border-radius: 0.1rem;
  padding: 0.3rem 0.28rem 0.4rem 0.28rem;
  -moz-transition: all 400ms;
  transition: all 400ms;
  -webkit-transition: all 400ms;
  display: block;
}
.suit-card a {
  display: block;
}

.suit-card-text {
  margin-bottom: 0.22rem;
}

.suit-card-title {
  font-size: var(--font-size-24);
  color: var(--color-text);
  font-family: var(--font-bold);
  -moz-transition: color 300ms;
  transition: color 300ms;
  -webkit-transition: color 300ms;
  display: block;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.suit-card-desc {
  margin-top: 0;
  font-size: var(--font-size-18);
  color: var(--color-text);
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  -moz-transition: all 400ms;
  transition: all 400ms;
  -webkit-transition: all 400ms;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.suit-card-img {
  width: 100%;
  aspect-ratio: 465/200;
  border-radius: 0.1rem;
  overflow: hidden;
  -moz-transition: aspect-ratio 400ms;
  transition: aspect-ratio 400ms;
  -webkit-transition: aspect-ratio 400ms;
}
.suit-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.suit-swiper .swiper-slide-active.suit-card {
  background: #fff;
  border-color: transparent;
  box-shadow: 0 4px 52px 6px rgba(0, 140, 214, 0.12);
  padding-bottom: 0.35rem;
}
.suit-swiper .swiper-slide-active.suit-card .suit-card-title {
  color: #008cd6;
  font-size: var(--font-size-26);
}
.suit-swiper .swiper-slide-active.suit-card .suit-card-desc {
  max-height: 2rem;
  opacity: 1;
  margin-top: 0.16rem;
}
.suit-swiper .swiper-slide-active.suit-card .suit-card-img {
  aspect-ratio: 465/307;
}

.suit-swiper .swiper-pagination {
  position: relative;
  bottom: 0;
  margin-top: 0.4rem;
  line-height: 0;
}
.suit-swiper .swiper-pagination .swiper-pagination-bullet {
  width: 0.16rem;
  height: 0.09rem;
  background: #c5ebff;
  border-radius: 0.16rem;
  opacity: 1;
  margin: 0 0.035rem;
  -moz-transition: width 300ms;
  transition: width 300ms;
  -webkit-transition: width 300ms;
}
.suit-swiper .swiper-pagination .swiper-pagination-bullet-active {
  width: 0.35rem;
  background: #008cd6;
}

@media screen and (max-width: 1279px) {
  .suit-swiper .swiper-slide {
    width: 4.6rem;
  }
}
@media screen and (max-width: 991px) {
  .suit-space {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
  .suit-head {
    flex-wrap: wrap;
    margin-bottom: 0.4rem;
  }
  .suit-head .suit-head-text {
    -moz-box-flex: unset;
         flex: unset;
  }
  .suit-title {
    font-size: 26px;
    margin-bottom: 12px;
  }
  .suit-swiper {
    padding-bottom: 0.4rem;
  }
  .suit-swiper .swiper-slide {
    width: 80%;
  }
  .suit-card {
    padding: 20px 18px;
  }
  .suit-card-title {
    font-size: 18px;
  }
  .suit-swiper .swiper-slide-active.suit-card .suit-card-title {
    font-size: 20px;
  }
  .suit-swiper .swiper-slide-active.suit-card .suit-card-desc {
    font-size: 14px;
    max-height: 200px;
  }
  .suit-swiper .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
  }
  .suit-swiper .swiper-pagination .swiper-pagination-bullet-active {
    width: 26px;
  }
}
@media screen and (max-width: 768px) {
  .suit-swiper .swiper-slide {
    width: 86%;
  }
}
/* ========================================
   28. 首页 - Suitable Spaces 轮播 (第七屏) - 结束
   ======================================== */
/* ========================================
   29. 站点页脚 site-footer (浮卡 → 滚动平铺) - 开始
   ======================================== */
.site-footer {
  width: 100%;
  padding: 0 0.32rem 0.32rem;
  background: #fff;
  -moz-transition: padding 500ms;
  transition: padding 500ms;
  -webkit-transition: padding 500ms;
}
.site-footer .footer-mid {
  background: #2B2B2B;
  padding: 1rem 0 0.4rem;
  border-radius: 0.24rem;
  overflow: hidden;
  -moz-transition: border-radius 500ms;
  transition: border-radius 500ms;
  -webkit-transition: border-radius 500ms;
}
.site-footer.is-flush {
  padding: 0;
}
.site-footer.is-flush .footer-mid {
  border-radius: 0;
}

.site-footer .footer-top {
  display: -moz-box;
  display: flex;
  -moz-box-align: start;
       align-items: flex-start;
  -moz-box-pack: justify;
       justify-content: space-between;
  gap: 0.4rem;
  padding-bottom: 0.8rem;
  flex-wrap: wrap;
}

.site-footer .footer-col {
  -moz-box-flex: 0;
       flex: 0 0 auto;
}

.site-footer .footer-col-info {
  -moz-box-flex: 0;
       flex: 0 0 auto;
  width: 4.35rem;
}

.site-footer .footer-logo {
  margin-bottom: 0.6rem;
  max-width: max(1.2rem, 120px);
}
.site-footer .footer-logo img {
  width: auto;
  display: block;
}

.site-footer .footer-info {
  display: -moz-box;
  display: flex;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
       flex-direction: column;
  gap: 0.3rem;
}
.site-footer .footer-info a:hover {
  color: var(--color-primary);
}

.site-footer .footer-info-item {
  display: -moz-box;
  display: flex;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
       flex-direction: column;
  gap: 0.12rem;
}

.site-footer .footer-info-label {
  font-size: var(--font-size-16);
  font-family: var(--font-bold);
  font-weight: 700;
  color: #fff;
}

.site-footer .footer-info-value {
  font-size: var(--font-size-16);
  color: rgba(255, 255, 255, 0.6);
}

.site-footer .footer-social {
  display: -moz-box;
  display: flex;
  gap: 0.3rem;
  flex-wrap: wrap;
}

.footer-social .footer-info-value {
  background: #fff;
  width: max(0.34rem, 30px);
  height: max(0.34rem, 30px);
  border-radius: 50%;
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: center;
       justify-content: center;
}
.footer-social .footer-info-value .iconfont {
  color: var(--color-text);
}
.footer-social .footer-info-value:hover {
  background: var(--color-primary);
}
.footer-social .footer-info-value:hover .iconfont {
  color: #fff;
}

.site-footer .footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: -moz-box;
  display: flex;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
       flex-direction: column;
  gap: 0.3rem;
  min-width: 1.6rem;
  max-width: max(2.2rem, 200px);
}
.site-footer .footer-nav li {
  font-size: var(--font-size-16);
}
.site-footer .footer-nav a {
  color: #fff;
  font-family: var(--font-bold);
}
.site-footer .footer-nav a:hover {
  color: var(--color-link);
}

.site-footer .footer-bot {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.26rem 0;
  display: -moz-box;
  display: flex;
  flex-wrap: wrap;
  -moz-box-orient: horizontal;
  -moz-box-direction: normal;
       flex-direction: row;
  gap: 0.2rem;
}

.site-footer .footer-bot-inner {
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
}

.site-footer .footer-cop {
  color: rgba(255, 255, 255, 0.5);
  font-size: var(--font-size-16);
}
.site-footer .footer-cop span {
  margin-right: 0.4rem;
}
.site-footer .footer-cop a {
  color: rgba(255, 255, 255, 0.5);
  margin-right: 0.4rem;
}
.site-footer .footer-cop a:hover {
  color: var(--color-link);
}

.footer-link {
  color: rgba(255, 255, 255, 0.5);
}
.footer-link a:hover {
  color: var(--pp-primary);
}

@media screen and (max-width: 1279px) {
  .site-footer .footer-col-info {
    width: 3rem;
  }
  .site-footer .footer-nav {
    min-width: 1.4rem;
  }
}
@media screen and (max-width: 991px) {
  .site-footer .footer-top {
    padding-bottom: 30px;
  }
  .site-footer {
    padding: 0 16px 16px;
  }
  .site-footer .footer-mid {
    padding: 40px 0 24px;
    padding-bottom: 42px;
  }
  .site-footer .footer-col-info {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .site-footer .footer-nav {
    width: 100%;
    display: none;
  }
}
/* ========================================
   29. 站点页脚 site-footer (浮卡 → 滚动平铺) - 结束
   ======================================== */
/* ========================================
   30. 首页 - Professional Insights & Industry Updates (第十屏) - 开始
   ======================================== */
.index-news {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background: -moz-linear-gradient(top, #f7fcff 0%, rgba(248, 248, 248, 0) 100%);
  background: linear-gradient(to bottom, #f7fcff 0%, rgba(248, 248, 248, 0) 100%);
}

.news-head {
  margin-bottom: 0.7rem;
}

.news-title {
  font-size: 0.42rem;
  color: var(--color-text);
  font-family: var(--font-bold);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.18rem;
}

.news-desc {
  font-size: var(--font-size-18);
  color: #666;
  line-height: 1.55;
}

.news-grid {
  display: grid;
  gap: 0.4rem;
  grid-template-columns: repeat(auto-fill, minmax(5rem, 1fr));
}

.news-card {
  -moz-box-flex: 1;
       flex: 1;
  min-width: 0;
  display: block;
  color: inherit;
}
.news-card .news-card-img {
  border: 1px solid #c1c1c1;
  border-radius: 0.1rem;
  overflow: hidden;
  aspect-ratio: 520/365;
  margin-bottom: 0.32rem;
}
.news-card .news-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -moz-transition: transform 600ms, -moz-transform 600ms;
  transition: transform 600ms;
  transition: transform 600ms, -moz-transform 600ms;
  -webkit-transition: transform 600ms;
}
.news-card .news-card-date {
  font-size: var(--font-size-18);
  color: #666;
  line-height: 1;
  margin-bottom: 0.23rem;
}
.news-card .news-card-title {
  font-size: var(--font-size-24);
  color: var(--color-text);
  font-family: var(--font-bold);
  margin-bottom: 0.22rem;
  -moz-transition: color 300ms;
  transition: color 300ms;
  -webkit-transition: color 300ms;
}
.news-card .news-card-desc {
  font-size: var(--font-size-18);
  color: var(--color-text);
  margin-bottom: 0.38rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-card .news-card-btn {
  display: -moz-inline-box;
  display: inline-flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: center;
       justify-content: center;
  border: 1px solid var(--color-text);
  border-radius: max(0.42rem, 30px);
  padding: 0.13rem 0.36rem;
  background: #fff;
  color: var(--color-text);
  font-family: var(--font-bold);
  -moz-transition: all 550ms;
  transition: all 550ms;
  -webkit-transition: all 550ms;
}
.news-card:hover .news-card-img img {
  -moz-transform: scale(1.06);
   -ms-transform: scale(1.06);
       transform: scale(1.06);
  -webkit-transform: scale(1.06);
}
.news-card:hover .news-card-title {
  color: #008cd6;
}
.news-card:hover .news-card-btn {
  background: #008cd6;
  border-color: #008cd6;
  color: #fff;
}

@media screen and (max-width: 1279px) {
  .index-news .news-grid {
    gap: 0.3rem;
  }
}
@media screen and (max-width: 991px) {
  .index-news {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
  .index-news .news-grid {
    flex-wrap: wrap;
    gap: 0.4rem 0.3rem;
  }
  .index-news .news-card {
    -moz-box-flex: 0;
         flex: 0 0 calc(50% - 0.15rem);
  }
  .index-news .news-card:last-child {
    -moz-box-flex: 0;
         flex: 0 0 100%;
  }
  .index-news .news-card:last-child .news-card-img {
    aspect-ratio: 16/9;
  }
}
@media screen and (max-width: 768px) {
  .index-news .news-grid {
    display: block;
  }
  .index-news .news-card {
    margin-bottom: 0.5rem;
  }
  .index-news .news-card:last-child {
    margin-bottom: 0;
  }
  .index-news .news-card:last-child .news-card-img {
    aspect-ratio: 520/365;
  }
}
/* ========================================
   30. 首页 - Professional Insights & Industry Updates (第十屏) - 结束
   ======================================== */
/* hycs start */
.banner-fenye .banner-img {
  position: relative;
  aspect-ratio: unset;
  display: block;
}
.banner-fenye .banner-img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: -moz-linear-gradient(right, rgba(255, 255, 255, 0) 17.03%, #FFF 74.08%);
  background: linear-gradient(270deg, rgba(255, 255, 255, 0) 17.03%, #FFF 74.08%);
  z-index: 1;
}
.banner-fenye .banner-img .banner-bg {
  position: unset;
}
@media screen and (max-width: 991px) {
  .banner-fenye .banner-img .banner-bg {
    position: absolute;
  }
}
.banner-fenye .banner-text {
  top: 50%;
  left: 0;
  -moz-transform: translateY(-50%);
   -ms-transform: translateY(-50%);
       transform: translateY(-50%);
  padding-left: 8.33%;
  padding-right: 8.33%;
  width: 100%;
  max-width: 100%;
}
.banner-fenye .banner-tetx-kk {
  max-width: 13.4rem;
}
.banner-fenye .banner-title {
  font-size: var(--font-size-54);
  line-height: 1.264;
}
.banner-fenye .banner-features {
  display: -moz-box;
  display: flex;
  flex-wrap: wrap;
  -moz-box-align: center;
       align-items: center;
  gap: 0.18rem 0.33rem;
  margin: 0.32rem 0 0;
  padding: 0;
  list-style: none;
}
.banner-fenye .banner-feature {
  display: -moz-inline-box;
  display: inline-flex;
  -moz-box-align: center;
       align-items: center;
  gap: 0.09rem;
}
.banner-fenye .banner-feature p {
  display: -moz-inline-box;
  display: inline-flex;
  -moz-box-align: center;
       align-items: center;
  gap: 0.09rem;
}
.banner-fenye .banner-feature__icon {
  display: -moz-inline-box;
  display: inline-flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: center;
       justify-content: center;
  width: max(0.42rem, 32px);
  height: max(0.42rem, 32px);
  flex-shrink: 0;
}
.banner-fenye .banner-feature__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.banner-fenye .banner-feature__text {
  font-family: var(--font-boldsb);
  font-weight: 600;
  font-size: var(--font-size-18);
  color: var(--color-text);
  line-height: 1.2;
}
.banner-fenye .banner-feature__text .hl {
  color: var(--color-link);
}
.banner-fenye .banner-ertitle {
  margin-top: 0.3rem;
  max-width: 10.17rem;
}
.banner-fenye .m-search-btn {
  margin-top: 0.32rem;
}

@media screen and (max-width: 1279px) {
  .banner-fenye .banner-features {
    gap: 0.16rem 0.28rem;
  }
}
@media screen and (max-width: 991px) {
  .banner-fenye {
    margin-top: 60px;
  }
  .banner-fenye .banner-img {
    min-height: 480px;
  }
  .banner-fenye .banner-features {
    gap: 0.16rem 0.24rem;
  }
  .banner-fenye .banner-feature__text {
    font-size: var(--font-size-16);
  }
  .banner-fenye .hengfubanner {
    top: 0px;
  }
}
@media screen and (max-width: 768px) {
  .banner-fenye .banner-img {
    min-height: 450px;
  }
  .banner-fenye .banner-text {
    padding-left: 5%;
    padding-right: 5%;
  }
  .banner-fenye .banner-features {
    gap: 0.2rem 0.2rem;
    margin-top: 0.24rem;
  }
  .banner-fenye .banner-feature {
    width: 100%;
  }
}
/* hycs end*/
/* ========================================
   31. 产品聚合页 - 什么是环氧彩砂 (hcys) - 开始
   ======================================== */
.hcys-s1 {
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
}
.hcys-s1 > .w1600 {
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: justify;
       justify-content: space-between;
  gap: 0.6rem;
}

.hcys-s1-left {
  -moz-box-flex: 1;
       flex: 1;
  min-width: 0;
}

.hcys-s1-title {
  font-size: var(--font-size-48);
  font-family: var(--font-bold);
  color: var(--color-text);
  line-height: 1.2;
  margin-bottom: 0.2rem;
}
.hcys-s1-title span {
  color: var(--color-link);
}

.hcys-s1-subtitle {
  font-size: var(--font-size-18);
  color: #666;
  font-family: var(--font-regular);
  margin-bottom: 0.3rem;
}

.hcys-s1-desc {
  font-size: var(--font-size-18);
  color: var(--color-text);
  font-family: var(--font-regular);
  line-height: 1.8;
  margin-bottom: 0.3rem;
}
.hcys-s1-desc p {
  margin-bottom: 0.12rem;
}

.hcys-s1-right {
  -moz-box-flex: 1;
       flex: 1;
  min-width: 0;
  display: -moz-box;
  display: flex;
  gap: 0.12rem;
}
.hcys-s1-right img:hover {
  -moz-transform: scale(1.05);
   -ms-transform: scale(1.05);
       transform: scale(1.05);
}

@media screen and (max-width: 991px) {
  .hcys-s1 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
  .hcys-s1 > .w1600 {
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
         flex-direction: column;
    gap: 0.4rem;
  }
  .hcys-s1-right {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .hcys-s1 > .w1600 {
    gap: 0.3rem;
  }
  .hcys-s1-title {
    font-size: var(--font-size-32);
  }
  .hcys-s1-desc {
    font-size: var(--font-size-14);
  }
}
/* ========================================
   31. 产品聚合页 - 什么是环氧彩砂 (hcys) - 结束
   ======================================== */
/* ========================================
   32. 产品聚合页 - Advantages 轮播 (hcys-s2) - 开始
   ======================================== */
.hcys-s2 {
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
  overflow: hidden;
}

.hcys-s2-swiper {
  overflow: visible;
}

.hcys-s2-slide .hcys-s2-card:hover {
  background: var(--color-primary);
  color: #fff;
}
.hcys-s2-slide .hcys-s2-card:hover h3 {
  color: #fff;
}
.hcys-s2-slide .hcys-s2-card:hover p {
  color: rgba(255, 255, 255, 0.9);
}

.hcys-s2-card {
  background: #f5f9fc;
  border-radius: 0.12rem;
  padding: 0.4rem 0.3rem;
  min-height: 2.8rem;
  display: -moz-box;
  display: flex;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
       flex-direction: column;
  -moz-box-pack: justify;
       justify-content: space-between;
  -moz-transition: all 550ms;
  transition: all 550ms;
  -webkit-transition: all 550ms;
  position: relative;
  min-height: 4rem;
  border: 1px solid #6BCCFF;
  background: #F1FAFF;
}
.hcys-s2-card > img {
  position: absolute;
  width: auto;
  top: 0px;
  z-index: 1;
  right: 0px;
  bottom: 0px;
}
.hcys-s2-card h3 {
  font-size: var(--font-size-22);
  font-family: var(--font-bold);
  color: var(--color-text);
  line-height: 1.3;
  margin-bottom: 0.2rem;
}
.hcys-s2-card p {
  font-size: var(--font-size-16);
  color: #222;
  font-family: var(--font-regular);
  line-height: 1.7;
}

@media screen and (max-width: 991px) {
  .hcys-s2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
  .hcys-s2-card {
    padding: 0.3rem 0.24rem;
  }
  .hcys-s2-card h3 {
    font-size: var(--font-size-18);
  }
  .hcys-s2-card p {
    font-size: var(--font-size-14);
  }
}
@media screen and (max-width: 768px) {
  .hcys-s2-title {
    font-size: var(--font-size-24);
  }
}
/* ========================================
   32. 产品聚合页 - Advantages 轮播 (hcys-s2) - 结束
   ======================================== */
/* ========================================
   33. 产品聚合页 - Choose Your Color (hcys-s3) - 开始
   ======================================== */
.hcys-s3 {
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
}

.hcys-s3-top {
  gap: 0.4rem;
}

.hcys-s3-title-wrap {
  -moz-box-flex: 1;
       flex: 1;
  min-width: 0;
}

.hcys-s3-title {
  font-size: var(--font-size-48);
  font-family: var(--font-bold);
  color: var(--color-text);
  line-height: 1.2;
  margin-bottom: 0.16rem;
}
.hcys-s3-title span {
  color: #008cd6;
}

.hcys-s3-subtitle {
  font-size: var(--font-size-18);
  color: #666;
  font-family: var(--font-regular);
  line-height: 1.6;
}

.hcys-s3-imgs {
  display: -moz-box;
  display: flex;
  gap: 0.16rem;
  margin-bottom: 0.5rem;
  height: 4.48rem;
}
.hcys-s3-imgs img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.1rem;
  overflow: hidden;
}
.hcys-s3-imgs img:hover {
  -moz-transform: scale(1.05);
   -ms-transform: scale(1.05);
       transform: scale(1.05);
}

.hcys-s3-img-left {
  -moz-box-flex: 0;
       flex: 0 0 40%;
  min-width: 0;
  border-radius: 0.1rem;
  overflow: hidden;
}

.hcys-s3-img-right {
  -moz-box-flex: 1;
       flex: 1;
  min-width: 0;
  border-radius: 0.1rem;
  overflow: hidden;
  background: #d9d9d9;
}

.hcys-s3-features {
  display: -moz-box;
  display: flex;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
       flex-direction: column;
}

.hcys-s3-feat {
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  gap: 0.3rem;
  padding: 0.3rem 0;
}

.hcys-s3-feat-info {
  -moz-box-flex: 1;
       flex: 1;
  min-width: 0;
  display: -moz-box;
  display: flex;
  -moz-box-align: baseline;
       align-items: baseline;
  gap: 0.8rem;
}
.hcys-s3-feat-info .hcys-s3-top {
  -moz-box-flex: 0;
       flex: 0 0 42%;
  font-size: var(--font-size-24);
  font-family: var(--font-bold);
  color: var(--color-text);
  line-height: 1.4;
  flex-wrap: wrap;
}
.hcys-s3-feat-info .hcys-s3-top span {
  color: #008cd6;
  font-family: var(--font-regular);
}
.hcys-s3-feat-info p {
  -moz-box-flex: 1;
       flex: 1;
  min-width: 0;
  font-size: var(--font-size-18);
  color: var(--color-text);
  font-family: var(--font-regular);
  line-height: 1.6;
}

.hcys-s3-feat-icon {
  width: max(0.42rem, 30px);
  height: max(0.42rem, 30px);
  border-radius: 50%;
  overflow: hidden;
}
.hcys-s3-feat-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.hcys-s3-feat-icon img:nth-child(1) {
  display: none;
}

.hcys-s3-feat {
  border-bottom: max(0.01rem, 1px) solid #D9D9D9;
}
.hcys-s3-feat:hover .hcys-s3-feat-icon img {
  display: block;
}
.hcys-s3-feat:hover .hcys-s3-feat-icon img:nth-child(2) {
  display: none;
}

@media screen and (max-width: 991px) {
  .hcys-s3-top {
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
         flex-direction: column;
    gap: 0.3rem;
  }
  .hcys-s3-imgs {
    gap: 0.12rem;
  }
  .hcys-s3-feat-info {
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
         flex-direction: column;
    gap: 0.12rem;
  }
  .hcys-s3-feat-info h3 {
    -moz-box-flex: 0;
         flex: none;
  }
}
@media screen and (max-width: 768px) {
  .hcys-s3-imgs {
    flex-wrap: wrap;
    height: auto;
  }
  .hcys-s3-img-left {
    -moz-box-flex: unset;
         flex: unset;
    height: 3rem;
    width: 100%;
  }
  .hcys-s3-img-right {
    -moz-box-flex: unset;
         flex: unset;
    width: 100%;
    height: 3rem;
  }
}
/* ========================================
   33. 产品聚合页 - Choose Your Color (hcys-s3) - 结束
   ======================================== */
/* ========================================
   34. 产品聚合页 - Technical Parameters (hcys-s4) - 开始
   ======================================== */
.hcys-s4 {
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
}

.hcys-s4-top {
  display: -moz-box;
  display: flex;
  -moz-box-align: start;
       align-items: flex-start;
  -moz-box-pack: justify;
       justify-content: space-between;
  gap: 0.4rem;
  margin-bottom: 0.5rem;
}

.hcys-s4-title-wrap {
  -moz-box-flex: 1;
       flex: 1;
  min-width: 0;
}

.hcys-s4-title {
  font-size: var(--font-size-48);
  font-family: var(--font-bold);
  color: var(--color-text);
  line-height: 1.2;
  margin-bottom: 0.16rem;
}

.hcys-s4-subtitle {
  font-size: var(--font-size-18);
  color: #666;
  font-family: var(--font-regular);
  line-height: 1.6;
}

.hcys-s4-table-wrap .table {
  max-width: 14rem;
  margin: auto;
  border-radius: 0.1rem;
  overflow: auto;
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}
.hcys-s4-table-wrap .table th,
.hcys-s4-table-wrap .table td {
  padding: 0.2rem 0.4rem;
  font-size: var(--font-size-20);
  text-align: left;
  vertical-align: middle;
  border: 1px solid rgba(0, 140, 214, 0.6);
}
.hcys-s4-table-wrap .table thead tr th:first-child {
  width: 38%;
  background: #008cd6;
  color: #fff;
  font-family: var(--font-bold);
  border-radius: 0.09rem 0 0 0;
}
.hcys-s4-table-wrap .table thead tr th:last-child {
  background: rgba(196, 235, 255, 0.24);
  color: #008cd6;
  font-family: var(--font-bold);
}
.hcys-s4-table-wrap .table tbody tr td:first-child {
  font-family: var(--font-boldsb);
  color: var(--color-text);
  border-right: 1px solid rgba(0, 140, 214, 0.3);
  background: rgba(196, 235, 255, 0.24);
}
.hcys-s4-table-wrap .table tbody tr td:last-child {
  background: #fff;
  font-family: var(--font-bold);
  color: var(--color-text);
}
.hcys-s4-table-wrap .table tbody tr:last-child td:first-child {
  border-radius: 0 0 0 0.09rem;
}
.hcys-s4-table-wrap .table tbody tr:last-child td:last-child {
  border-radius: 0 0 0.09rem 0;
}

@media screen and (max-width: 991px) {
  .hcys-s4-top {
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
         flex-direction: column;
    gap: 0.3rem;
  }
  .hcys-s4-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .hcys-s4-table {
    min-width: 600px;
  }
}
@media screen and (max-width: 768px) {
  .hcys-s4-title {
    font-size: var(--font-size-32);
  }
  .hcys-s4-table th,
  .hcys-s4-table td {
    padding: 0.16rem 0.24rem;
    font-size: var(--font-size-14);
  }
}
/* ========================================
   34. 产品聚合页 - Technical Parameters (hcys-s4) - 结束
   ======================================== */
/* ========================================
   35. 产品聚合页 - Applications 手风琴 (hcys-s5) - 开始
   ======================================== */
.hcys-s5 {
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
}

.hcys-s5-accordion {
  display: -moz-box;
  display: flex;
  gap: 0.12rem;
  height: 6rem;
}

.hcys-s5-item {
  position: relative;
  -moz-box-flex: 1;
       flex: 1;
  min-width: 1.28rem;
  border-radius: 0.1rem;
  overflow: hidden;
  cursor: pointer;
  -moz-transition: all 0.55s ease;
  transition: all 0.55s ease;
}
.hcys-s5-item.active {
  -moz-box-flex: 5;
       flex: 5;
}

.hcys-s5-item-img {
  position: absolute;
  inset: 0;
  height: 100%;
}
.hcys-s5-item-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hcys-s5-item-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.32rem;
  background: rgba(34, 34, 34, 0.3);
  opacity: 0;
  -moz-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}
.hcys-s5-item-overlay h3 {
  font-size: var(--font-size-24);
  font-family: var(--font-bold);
  color: #fff;
  margin-bottom: 0.12rem;
}
.hcys-s5-item-overlay p {
  font-size: var(--font-size-18);
  color: #fff;
  font-family: var(--font-medium);
  line-height: 1.6;
}

.hcys-s5-item.active .hcys-s5-item-overlay,
.hcys-s5-item:hover .hcys-s5-item-overlay {
  opacity: 1;
}

@media screen and (max-width: 991px) {
  .hcys-s5-top {
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
         flex-direction: column;
    gap: 0.3rem;
  }
  .hcys-s5-item-overlay {
    opacity: 1;
  }
  .hcys-s5-accordion {
    flex-wrap: wrap;
    height: auto;
  }
  .hcys-s5-item {
    width: 49%;
    -moz-box-flex: unset;
         flex: unset;
    height: auto;
  }
  .hcys-s5-item.active {
    -moz-box-flex: unset;
         flex: unset;
  }
  .hcys-s5-item-img {
    position: static;
  }
}
@media screen and (max-width: 768px) {
  .hcys-s5-title {
    font-size: var(--font-size-32);
  }
  .hcys-s5-item {
    width: 100%;
    -moz-box-flex: 0;
         flex: 0 0 100%;
    height: auto;
  }
  .hcys-s5-item-img {
    aspect-ratio: 4/3;
  }
  .hcys-s5-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
/* ========================================
   35. 产品聚合页 - Applications 手风琴 (hcys-s5) - 结束
   ======================================== */
.hcys-s6-mid {
  background: #F7FCFF;
  padding-top: 0.6rem;
  padding-bottom: 0.8rem;
}

.hcys-s6-mid-right {
  width: 39%;
  font-size: var(--font-size-24);
  color: var(--color-text);
}
.hcys-s6-mid-right em {
  font-size: var(--font-size-32);
  color: var(--color-primary);
  font-style: normal;
  font-family: "wxb", Arial, Helvetica, sans-serif;
}
.hcys-s6-mid-right .m-search-btn {
  margin-top: 0.4rem;
}

.hcys-s6-mid-left {
  width: 56.25%;
}
.hcys-s6-mid-left:hover img {
  -moz-transform: scale(1.05);
   -ms-transform: scale(1.05);
       transform: scale(1.05);
}

.hcys-s6-kuang {
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: justify;
       justify-content: space-between;
}

@media screen and (max-width: 991px) {
  .hcys-s6-kuang {
    flex-wrap: wrap;
  }
  .hcys-s6-mid-left,
  .hcys-s6-mid-right {
    width: 100%;
  }
}
/* ========================================
   36. 产品聚合页 - Choose DIMERA (hcys-s7) - 开始
   ======================================== */
.hcys-s7 {
  padding: 0.8rem 0 1rem;
  padding-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
}

.hcys-s7-title em {
  color: #008cd6;
}

.hcys-s7 .suit-head {
  margin-bottom: 0.4rem;
}

.hcys-s7-main {
  position: relative;
  display: -moz-box;
  display: flex;
  -moz-box-align: initial;
       align-items: initial;
  -moz-box-pack: justify;
       justify-content: space-between;
  gap: 0.2rem;
}

/* 左侧蓝色装饰块（出血到屏幕左边） */
.hcys-s7-decor {
  width: 1.1rem;
  background: #008cd6;
  border-radius: 0.1rem;
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
  z-index: 0;
}

/* 中间白色卡片 */
.hcys-s7-middle {
  width: 13.08rem;
  border-radius: 2.515rem 0.1rem 0.1rem 2.515rem;
  z-index: 1;
  display: -moz-box;
  display: flex;
  -moz-box-pack: justify;
       justify-content: space-between;
  gap: 0.66rem;
  padding-left: 2.38rem;
}

.hcys-s7-middle {
  position: relative;
  padding-top: 0.8rem;
}

.hcys-s7-middle-left {
  width: 4.37rem;
  height: 100%;
  -webkit-filter: drop-shadow(0 20px 32px rgba(0, 140, 214, 0.18));
          filter: drop-shadow(0 20px 32px rgba(0, 140, 214, 0.18));
  position: absolute;
  z-index: 2;
  left: 0px;
  top: 0px;
}
.hcys-s7-middle-left .m-search-btn {
  position: absolute;
  bottom: -6%;
  right: -20%;
  display: -moz-inline-box;
  display: inline-flex;
  background: var(--color-primary);
  box-shadow: 0 6px 18px rgba(0, 140, 214, 0.25);
  color: #fff;
  font-weight: 400;
  padding-left: 0.3rem;
  padding-right: 0.2rem;
  white-space: nowrap;
}
.hcys-s7-middle-left .m-search-btn:hover {
  box-shadow: 0 6px 30px rgba(0, 140, 214, 0.25);
  -moz-transform: translateY(-10px);
   -ms-transform: translateY(-10px);
       transform: translateY(-10px);
}
.hcys-s7-middle-left .m-search-btn span {
  font-family: "wxr", Arial, Helvetica, sans-serif;
}
.hcys-s7-middle-left .m-search-btn .m-search-btn__icon {
  background: var(--color-primary);
}
.hcys-s7-middle-left .m-search-btn .m-search-btn__icon i {
  font-size: var(--font-size-30);
}
.hcys-s7-middle-left > img {
  border-radius: 0.1rem;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hcys-s7-middle-right {
  position: absolute;
  width: 10.68rem;
  border-radius: 2.315rem 0.1rem 0.1rem 2.34rem;
  background: #F7FCFF;
  padding-left: 2.65rem;
  padding-top: 0.38rem;
  padding-bottom: 0.38rem;
}

.hcys-s7-quote-icon {
  margin-bottom: 0.1rem;
  width: max(0.7rem, 40px);
}
.hcys-s7-quote-icon img {
  width: auto;
}

.hcys-s7-middle-title {
  font-size: var(--font-size-24);
  color: var(--color-text);
  font-family: var(--font-bold);
  line-height: 1.3;
  margin-bottom: 0.18rem;
  max-width: 6.94rem;
}

.hcys-s7-middle-desc {
  font-size: var(--font-size-16);
  color: var(--color-text);
  margin-bottom: 0.25rem;
  max-width: 6.6rem;
}

.hcys-s7-info-box {
  margin-top: auto;
  display: -moz-box;
  display: flex;
  flex-wrap: wrap;
  background: #c5ebff;
  border-radius: 0.1rem 0.1rem 0.78rem 0.1rem;
  padding: 0.2rem 0.2rem;
  width: 6.74rem;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: justify;
       justify-content: space-between;
  margin-left: 0.6rem;
}
.hcys-s7-info-box p {
  width: 48%;
  color: var(--color-primary);
  font-family: "wxsb", Arial, Helvetica, sans-serif;
  margin-bottom: 0.12rem;
}
.hcys-s7-info-box p.full {
  width: 100%;
}

/* 左侧图片 */
.hcys-s7-img {
  position: absolute;
  left: 0;
  top: 0;
  width: 4.37rem;
  z-index: 2;
}
.hcys-s7-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.1rem;
}

/* 右侧蓝色卡片 */
.hcys-s7-right {
  width: 4rem;
  overflow-y: auto;
  background: #008cd6;
  border-radius: 0.1rem;
  padding: 0.6rem 0.36rem;
  z-index: 2;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
}

.hcys-s7-right-icon {
  font-size: 0.5rem;
  color: #fff;
  font-family: Georgia, serif;
  font-weight: bold;
  line-height: 0.8;
  margin-bottom: 0.15rem;
}

.hcys-s7-right-title {
  font-size: var(--font-size-24);
  color: #fff;
  font-family: var(--font-bold);
  line-height: 1.3;
  margin-bottom: 0.15rem;
}

.hcys-s7-right-desc {
  font-size: var(--font-size-16);
  color: #fff;
  line-height: 1.4;
  margin-bottom: 0.2rem;
}

.hcys-s7-right-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.hcys-s7-right-list div {
  font-size: var(--font-size-18);
  color: #fff;
  font-family: "wxsb", Arial, Helvetica, sans-serif;
  line-height: 1.83;
}
.hcys-s7-right-list div::before {
  content: "·";
  margin-right: 0.06rem;
}

@media screen and (max-width: 1280px) {
  .hcys-s7-decor {
    display: none;
  }
  .hcys-s7-middle {
    width: 15rem;
  }
  .hcys-s7-middle-title,
  .hcys-s7-middle-desc,
  .hcys-s7-info-box {
    width: 100%;
    max-width: none;
  }
  .hcys-s7-middle-right {
    width: 100%;
    position: unset;
    padding-right: 0.5rem;
  }
  .hcys-s7-info-box {
    margin-left: 0px;
  }
  .hcys-s7-middle-left .m-search-btn {
    right: 0px;
    bottom: 0px;
  }
}
@media screen and (max-width: 991px) {
  .hcys-s7-middle {
    width: 100%;
  }
  .hcys-s7-main {
    flex-wrap: wrap;
  }
  .hcys-s7-right {
    width: 100%;
  }
  .hcys-s7-info-box p {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .hcys-s7 {
    padding-bottom: 0.5rem;
  }
  .hcys-s7-middle {
    flex-wrap: wrap;
    padding-left: 0px;
    padding-left: 10px;
    padding-right: 10px;
  }
  .hcys-s7-middle-left {
    width: 100%;
    margin: auto;
    height: auto;
    aspect-ratio: 4/3;
    position: unset;
  }
  .hcys-s7-middle-right {
    width: 100%;
    padding-left: 0px;
    padding: 10px;
  }
}
/* ========================================
   36. 产品聚合页 - Choose DIMERA (hcys-s7) - 结束
   ======================================== */
/* ========================================
   37. 产品聚合页 - FAQ (hcys-s8) - 开始
   ======================================== */
.hcys-s8 {
  padding: 0.8rem 0 1rem;
}

.hcys-s8-item {
  border-top: 1px solid #DBDBDB;
}
.hcys-s8-item.active {
  background: #f3faff;
  border-radius: 0.2rem;
  border-color: transparent;
}
.hcys-s8-item.active .hcys-s8-q p {
  color: var(--color-primary);
  font-family: var(--font-bold);
}
.hcys-s8-item.active .hcys-s8-icon-plus {
  display: none;
}
.hcys-s8-item.active .hcys-s8-icon-minus {
  display: block;
}
.hcys-s8-item.active .hcys-s8-a {
  max-height: max(3rem, 300px);
  overflow-y: auto;
  opacity: 1;
  padding-bottom: 0.3rem;
}

.hcys-s8-q {
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: justify;
       justify-content: space-between;
  padding: 0.25rem 0.45rem;
  cursor: pointer;
}
.hcys-s8-q p {
  font-size: var(--font-size-24);
  color: var(--color-text);
  font-family: "wxsb", Arial, Helvetica, sans-serif;
  -moz-box-flex: 1;
       flex: 1;
}
.hcys-s8-q p em {
  color: var(--color-primary);
  font-style: normal;
}

.hcys-s8-icon-plus,
.hcys-s8-icon-minus {
  width: 0.25rem;
  height: 0.25rem;
  flex-shrink: 0;
  margin-left: 0.2rem;
}

.hcys-s8-icon-plus {
  display: block;
}

.hcys-s8-icon-minus {
  display: none;
}

.hcys-s8-a {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  -moz-transition: all 550ms;
  transition: all 550ms;
  -webkit-transition: all 550ms;
  padding: 0 0.45rem;
}
.hcys-s8-a p {
  font-size: var(--font-size-18);
  color: var(--color-text);
  line-height: 1.6;
}

@media screen and (max-width: 768px) {
  .hcys-s8-title {
    font-size: var(--font-size-32);
  }
  .hcys-s8-q p {
    font-size: var(--font-size-18);
  }
  .hcys-s8-a p {
    font-size: var(--font-size-16);
  }
}
/* ========================================
   37. 产品聚合页 - FAQ (hcys-s8) - 结束
   ======================================== */
/* ========================================
   38. 定制页面 - Choose Your Color (dingzhi-color) - 开始
   ======================================== */
.dingzhi-color {
  padding: 1rem 0;
}

.dingzhi-color-head {
  margin-bottom: 0.5rem;
}

.dingzhi-color-title {
  font-size: var(--font-size-48);
  font-family: var(--font-bold);
  color: var(--color-text);
  margin-bottom: 0.15rem;
}
.dingzhi-color-title em {
  color: #008cd6;
  font-style: normal;
}

.dingzhi-color-desc {
  font-size: var(--font-size-18);
  color: #666;
}

.dingzhi-color-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.2rem;
}

.dingzhi-color-card {
  position: relative;
  border-radius: 0.1rem;
  overflow: hidden;
  cursor: pointer;
  display: block;
}

.dingzhi-color-card-img {
  position: unset;
  inset: 0;
}
.dingzhi-color-card-img img {
  object-fit: contain;
}

.dingzhi-color-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: -moz-linear-gradient(269deg, rgba(0, 0, 0, 0) 71%, rgba(0, 0, 0, 0.32) 98%);
  background: linear-gradient(181deg, rgba(0, 0, 0, 0) 71%, rgba(0, 0, 0, 0.32) 98%);
  padding: 0.24rem;
  display: -moz-box;
  display: flex;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
       flex-direction: column;
  -moz-box-pack: end;
       justify-content: flex-end;
  overflow: hidden;
  -moz-transition: all 550ms;
  transition: all 550ms;
  -webkit-transition: all 550ms;
  z-index: 2;
}

.dingzhi-color-card-info {
  display: -moz-box;
  display: flex;
  -moz-box-pack: justify;
       justify-content: space-between;
  -moz-box-align: end;
       align-items: flex-end;
  flex-shrink: 0;
}

.dingzhi-color-card-name {
  font-size: var(--font-size-24);
  font-family: var(--font-bold);
  color: #fff;
}

.dingzhi-color-card-code {
  font-size: var(--font-size-24);
  font-family: var(--font-regular);
  color: #fff;
}

.dingzhi-color-card-bottom {
  display: -moz-box;
  display: flex;
  -moz-box-pack: justify;
       justify-content: space-between;
  -moz-box-align: center;
       align-items: center;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  -moz-transition: all 550ms;
  transition: all 550ms;
  -webkit-transition: all 550ms;
}

.dingzhi-color-card-desc {
  font-size: var(--font-size-24);
  font-family: var(--font-regular);
  color: #fff;
}

.dingzhi-color-card-arrow {
  width: 0.56rem;
  height: 0.56rem;
  flex-shrink: 0;
}

.dingzhi-color-card:hover .dingzhi-color-card-overlay {
  background: rgba(0, 140, 214, 0.71);
}

.dingzhi-color-card:hover .dingzhi-color-card-bottom {
  opacity: 1;
  max-height: 1rem;
  margin-top: 0.1rem;
}

.dingzhi-color-btn-wrap {
  text-align: center;
  margin-top: 0.5rem;
}

.dingzhi-color-btn {
  display: -moz-inline-box;
  display: inline-flex;
  -moz-box-align: center;
       align-items: center;
  gap: 0.12rem;
  padding: 0.12rem 0.4rem;
  border: 1px solid var(--color-text);
  border-radius: 0.42rem;
  color: var(--color-text);
  text-decoration: none;
  font-size: var(--font-size-18);
  font-family: var(--font-bold);
  -moz-transition: all 550ms;
  transition: all 550ms;
  -webkit-transition: all 550ms;
}
.dingzhi-color-btn img {
  width: 0.35rem;
  height: 0.35rem;
}
.dingzhi-color-btn:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
}

@media screen and (max-width: 991px) {
  .dingzhi-color-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .dingzhi-color-card-desc {
    display: none;
  }
}
@media screen and (max-width: 520px) {
  .dingzhi-color-grid {
    grid-template-columns: 1fr;
  }
}
/* ========================================
   38. 产品聚合页 - Choose Your Color (dingzhi-color) - 结束
   ======================================== */
/* ========================================
   39. 定制服务页 - Trusted Performance (suit-trust) - 开始
   ======================================== */
.suit-trust {
  padding: 1rem 0;
}

.trustmid {
  position: relative;
}
.trustmid .suit-trust-btn-wrap {
  position: absolute;
  left: 50%;
  -moz-transform: translateX(-50%);
   -ms-transform: translateX(-50%);
       transform: translateX(-50%);
  bottom: 0px;
}

.suit-trust-cards {
  display: -moz-box;
  display: flex;
  gap: 0.16rem;
  margin-bottom: 0.5rem;
}

.suit-trust-card {
  position: relative;
  border-radius: 0.1rem;
  overflow: hidden;
}
.suit-trust-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.suit-trust-card--left, .suit-trust-card--right {
  -moz-box-flex: 1;
       flex: 1;
  height: 5.35rem;
}
.suit-trust-card--mid {
  -moz-box-flex: 1;
       flex: 1;
  height: 4.44rem;
}

.suit-trust-card-overlay {
  position: absolute;
  inset: 0;
  background: -moz-linear-gradient(272deg, rgba(0, 0, 0, 0) 45%, rgba(0, 0, 0, 0.5) 96%);
  background: linear-gradient(178deg, rgba(0, 0, 0, 0) 45%, rgba(0, 0, 0, 0.5) 96%);
}
.suit-trust-card-overlay .suit-trust-card-text--center {
  opacity: 0;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.suit-trust-card-overlay:hover {
  background: -moz-linear-gradient(269deg, rgba(0, 140, 214, 0) 18%, rgb(0, 140, 214) 81%);
  background: linear-gradient(181deg, rgba(0, 140, 214, 0) 18%, rgb(0, 140, 214) 81%);
}
.suit-trust-card-overlay:hover .suit-trust-card-text--bottom {
  opacity: 0;
}
.suit-trust-card-overlay:hover .suit-trust-card-text--center {
  opacity: 1;
}
.suit-trust-card-overlay--blue {
  background: -moz-linear-gradient(269deg, rgba(0, 140, 214, 0) 18%, rgb(0, 140, 214) 81%);
  background: linear-gradient(181deg, rgba(0, 140, 214, 0) 18%, rgb(0, 140, 214) 81%);
}

.suit-trust-card-text {
  position: absolute;
  left: 0.25rem;
  right: 0.25rem;
  color: #fff;
  font-family: var(--font-bold);
  font-size: var(--font-size-24);
  z-index: 1;
}
.suit-trust-card-text--bottom {
  bottom: 0.3rem;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.suit-trust-card-text--center {
  bottom: 0.26rem;
  left: 0.25rem;
  right: 0.25rem;
  font-family: var(--font-regular);
  line-height: 1.6;
}

.suit-trust-btn-wrap {
  text-align: center;
}

.suit-trust-btn {
  display: -moz-inline-box;
  display: inline-flex;
  -moz-box-align: center;
       align-items: center;
  gap: 0.1rem;
  padding: 0.12rem 0.4rem;
  border: 1px solid var(--color-text);
  border-radius: 0.42rem;
  color: var(--color-text);
  font-size: var(--font-size-18);
  font-family: var(--font-bold);
  text-decoration: none;
  -moz-transition: all 550ms;
  transition: all 550ms;
  -webkit-transition: all 550ms;
}
.suit-trust-btn img {
  width: 0.35rem;
  height: 0.35rem;
  object-fit: contain;
}
.suit-trust-btn:hover {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}
.suit-trust-btn:hover img {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}

@media screen and (max-width: 991px) {
  .suit-trust-card--left,
  .suit-trust-card--right {
    height: 5rem;
  }
  .suit-trust-card--mid {
    height: 5rem;
  }
  .suit-trust-card-text--center {
    font-size: var(--font-size-16);
  }
  .trustmid .suit-trust-btn-wrap {
    position: relative;
  }
}
@media screen and (max-width: 768px) {
  .suit-trust-cards {
    flex-wrap: wrap;
  }
  .suit-trust-card {
    width: 100%;
    -moz-box-flex: unset;
         flex: unset;
  }
}
/* ========================================
   39. 定制服务页 - Trusted Performance (suit-trust) - 结束
   ======================================== */
/* ========================================
   40. 定制服务页 - Service Process (suit-process) - 开始
   ======================================== */
.suit-process {
  padding: 0.7rem 0;
  background: #f7fcff;
}

.suit-process-head {
  margin-bottom: 0.6rem;
}

.suit-process-body {
  display: -moz-box;
  display: flex;
  gap: 0.4rem;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: justify;
       justify-content: space-between;
}

.suit-process-left {
  width: 36%;
  flex-shrink: 0;
}

.suit-process-steps {
  margin-bottom: 0.3rem;
}

.suit-process-step {
  display: none;
  min-height: 3rem;
}
.suit-process-step.active {
  display: block;
}

.suit-process-step-title {
  font-size: var(--font-size-32);
  font-family: var(--font-bold);
  color: var(--color-text);
  margin-bottom: 0.2rem;
}

.suit-process-step-desc {
  font-size: var(--font-size-24);
  color: var(--color-text);
}

.suit-process-btn {
  display: -moz-inline-box;
  display: inline-flex;
  -moz-box-align: center;
       align-items: center;
  gap: 0.1rem;
  padding: 0.12rem 0.35rem;
  background: #008cd6;
  color: #fff;
  border-radius: 0.42rem;
  font-size: var(--font-size-18);
  font-family: var(--font-bold);
  text-decoration: none;
  -moz-transition: all 550ms;
  transition: all 550ms;
  -webkit-transition: all 550ms;
}
.suit-process-btn img {
  width: 0.35rem;
  height: 0.35rem;
  object-fit: contain;
}
.suit-process-btn:hover {
  background: var(--color-primary);
  -moz-transform: translateY(-2px);
   -ms-transform: translateY(-2px);
       transform: translateY(-2px);
  -webkit-transform: translateY(-2px);
}

@media screen and (max-width: 991px) {
  .suit-process-btn {
    font-size: 12px;
  }
}
.suit-process-right {
  width: 57.3%;
}

.suit-process-card {
  background: rgba(196, 235, 255, 0.24);
  border: 1px solid rgba(0, 140, 214, 0.36);
  border-radius: 0.1rem;
  padding: 0.26rem;
  padding-right: 0px;
}

.suit-process-card-inner {
  position: relative;
  border-radius: 0.1rem;
  overflow: hidden;
}

.suit-process-swiper .swiper-slide {
  border-radius: 0.1rem;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
  overflow: hidden;
  aspect-ratio: 5.4/3;
}
.suit-process-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.suit-process-counter {
  position: unset;
  bottom: 0.25rem;
  left: 0.42rem;
  z-index: 2;
  font-size: var(--font-size-16);
}

.swiper-pagination-current {
  font-size: var(--font-size-32);
  font-family: var(--font-bold);
  color: #008cd6;
}

.swiper-pagination {
  color: #008cd6;
  font-size: var(--font-size-16);
}

.suit-process-nav {
  margin-right: 1.12rem;
  z-index: 2;
  display: -moz-box;
  display: flex;
  gap: 0.16rem;
}

.suit-process-annu {
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: justify;
       justify-content: space-between;
  margin-top: 0.3rem;
}
.suit-process-annu .swiper-pagination {
  text-align: left;
  position: unset;
}

.suit-process-prev,
.suit-process-next {
  width: 0.62rem;
  height: 0.45rem;
  border: 1px solid #008cd6;
  border-radius: 0.225rem;
  background: none;
  cursor: pointer;
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: center;
       justify-content: center;
  -moz-transition: all 550ms;
  transition: all 550ms;
  -webkit-transition: all 550ms;
}
.suit-process-prev img,
.suit-process-next img {
  width: 0.31rem;
  height: 0.31rem;
  object-fit: contain;
}
.suit-process-prev:hover,
.suit-process-next:hover {
  background: #008cd6;
}
.suit-process-prev:hover img,
.suit-process-next:hover img {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}

.suit-process-prev img {
  -moz-transform: rotate(180deg);
   -ms-transform: rotate(180deg);
       transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
}

@media screen and (max-width: 991px) {
  .suit-process-step-title {
    font-size: var(--font-size-24);
  }
  .suit-process-step-desc {
    font-size: var(--font-size-18);
  }
}
@media screen and (max-width: 768px) {
  .suit-process-body {
    flex-wrap: wrap;
  }
  .left-1600 {
    margin-right: 5%;
  }
  .suit-process-step {
    min-height: auto;
  }
  .suit-process-left,
  .suit-process-right {
    width: 100%;
  }
  .suit-process-card {
    padding: 0.2rem;
  }
  .suit-process-nav {
    margin-right: 0px;
  }
}
/* ========================================
   40. 定制服务页 - Service Process (suit-process) - 结束
   ======================================== */
/* ========================================
   41. 定制服务页 - Professional Custom Factory (dingzhi-factory) - 开始
   ======================================== */
.dingzhi-factory {
  padding: 1rem 0 0.8rem;
  background: #f7fcff;
}

.dingzhi-factory-head {
  margin-bottom: 0.5rem;
}

.dingzhi-factory-title {
  font-size: var(--font-size-48);
  font-family: var(--font-bold);
  color: var(--color-text);
  line-height: 1.2;
  margin-bottom: 0.15rem;
}

.dingzhi-factory-desc {
  font-size: var(--font-size-18);
  color: #666;
  line-height: 1.6;
}
.dingzhi-factory-desc em {
  color: #61c11b;
  font-style: normal;
  font-family: var(--font-bold);
}

.dingzhi-factory-cards {
  position: relative;
  display: -moz-box;
  display: flex;
  -moz-box-pack: end;
       justify-content: flex-end;
  overflow: hidden;
}

.dingzhi-factory-card {
  min-height: 4.1rem;
  position: relative;
  top: 0;
  width: 6.7rem;
  min-width: 6.7rem;
  border-radius: 0.1rem;
  padding: 0.7rem 0.56rem;
  padding-bottom: 0.5rem;
  text-decoration: none;
  cursor: pointer;
  -moz-transition: all 550ms;
  transition: all 550ms;
  -webkit-transition: all 550ms;
  display: -moz-box;
  display: flex;
  -moz-box-pack: justify;
       justify-content: space-between;
  flex-wrap: wrap;
  align-content: space-between;
  background: #fff;
  box-shadow: 20px 0 12.5px rgba(163, 163, 163, 0.15);
  z-index: 1;
}
.dingzhi-factory-card:nth-child(1) {
  z-index: 3;
  margin-left: 0;
}
.dingzhi-factory-card:nth-child(2) {
  margin-left: -2rem;
  z-index: 2;
}
.dingzhi-factory-card:nth-child(3) {
  margin-left: -2rem;
  z-index: 1;
}
.dingzhi-factory-card.active, .dingzhi-factory-card:hover {
  background: #008cd6;
  z-index: 4;
}
.dingzhi-factory-card.active .dingzhi-factory-card-desc,
.dingzhi-factory-card.active .dingzhi-factory-card-icon, .dingzhi-factory-card:hover .dingzhi-factory-card-desc,
.dingzhi-factory-card:hover .dingzhi-factory-card-icon {
  opacity: 1;
}
.dingzhi-factory-card.active .dingzhi-factory-card-title, .dingzhi-factory-card:hover .dingzhi-factory-card-title {
  color: #fff !important;
}

.dingzhi-factory-card-icon {
  width: max(0.42rem, 42px);
  height: max(0.42rem, 42px);
  opacity: 0;
}
.dingzhi-factory-card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.dingzhi-factory-card-title {
  font-size: max(0.27rem, 22px);
  font-family: var(--font-bold);
  line-height: 1.2;
  margin-bottom: 0.2rem;
  color: rgba(0, 140, 214, 0.6);
}

.dingzhi-factory-card-desc {
  font-size: var(--font-size-18);
  color: #fff;
  line-height: 1.6;
  opacity: 0;
}

@media screen and (max-width: 1440px) {
  .dingzhi-factory-cards {
    -moz-box-pack: justify;
         justify-content: space-between;
  }
}
@media screen and (max-width: 991px) {
  .dingzhi-factory-title {
    font-size: var(--font-size-32);
  }
  .dingzhi-factory-cards {
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  .dingzhi-factory-card {
    width: 100%;
    margin-left: 0px;
  }
  .dingzhi-factory-card:nth-child(2) {
    margin-left: 0px;
  }
  .dingzhi-factory-card:nth-child(3) {
    margin-left: 0px;
  }
  .dingzhi-factory-card-icon {
    opacity: 1;
  }
  .dingzhi-factory-card-title {
    color: #fff;
  }
  .dingzhi-factory-card-desc {
    color: var(--color-white);
    opacity: 1;
  }
  .dingzhi-factory-card {
    background: var(--color-primary);
  }
}
@media screen and (max-width: 768px) {
  .dingzhi-factory {
    padding: 0.6rem 0;
  }
  .dingzhi-factory-title {
    font-size: var(--font-size-24);
  }
  .dingzhi-factory-desc {
    font-size: var(--font-size-14);
  }
  .dingzhi-factory-card-title {
    font-size: var(--font-size-20);
  }
  .dingzhi-factory-card-desc {
    font-size: var(--font-size-14);
  }
}
/* ========================================
   41. 定制服务页 - Professional Custom Factory (dingzhi-factory) - 结束
   ======================================== */
/* ========================================
   42. 定制服务页 - Trusted by Customers (dingzhi-customers) - 开始
   ======================================== */
.dingzhi-customers {
  padding: 1rem 0 0.8rem;
}

.dingzhi-customers .oem-head {
  margin-bottom: 0.5rem;
}

.dingzhi-customers .oem-head-top {
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  gap: 0.15rem;
  margin-bottom: 0.12rem;
}

.dingzhi-customers-wrap {
  position: relative;
  display: block;
  overflow: hidden;
  -moz-box-flex: 1;
       flex: 1;
}

.dingzhi-customers-swiper {
  overflow: visible;
}

.dingzhi-customers-card {
  display: block;
  height: 100%;
  border-radius: max(0.1rem, 10px);
  overflow: hidden;
}
.dingzhi-customers-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dingzhi-customers-card-overlay {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 0.42rem 0.3rem;
  background: rgba(34, 34, 34, 0.15);
  display: -moz-box;
  display: flex;
  -moz-box-align: end;
       align-items: flex-end;
  flex-wrap: wrap;
  border-radius: 0 0 0.1rem 0.1rem;
  -moz-transition: all 550ms;
  transition: all 550ms;
  -webkit-transition: all 550ms;
}

.dingzhi-customers-card-title {
  font-size: var(--font-size-24);
  color: #fff;
  font-family: var(--font-bold);
  width: 100%;
}

.dingzhi-customers-card-quote {
  width: 100%;
  display: none;
  font-size: var(--font-size-22);
  color: #c5ebff;
  font-family: "wxsb", Arial, Helvetica, sans-serif;
  margin-bottom: 0.12rem;
  margin-top: 0.12rem;
}

.dingzhi-customers-card-desc {
  display: none;
  font-size: var(--font-size-18);
  color: #fff;
  line-height: 1.5;
}

.dingzhi-customers-card:hover .dingzhi-customers-card-overlay {
  background: rgba(0, 140, 214, 0.7);
  padding: 0.3rem;
}

.dingzhi-customers-card:hover .dingzhi-customers-card-quote,
.dingzhi-customers-card:hover .dingzhi-customers-card-desc {
  display: block;
}

.dingzhi-customers-arrow-wrap {
  width: 100%;
  height: 100%;
}
.dingzhi-customers-arrow-wrap .swiper-button-disabled {
  opacity: 0;
}
.dingzhi-customers-arrow-wrap .swiper-button-prev {
  background: -moz-linear-gradient(left, rgba(0, 0, 0, 0.8), transparent);
  background: linear-gradient(to right, rgba(0, 0, 0, 0.8), transparent);
  height: 100%;
  top: 0px;
  margin: 0px;
  left: 0px;
  width: 1.88rem;
  right: 0px;
}
.dingzhi-customers-arrow-wrap .swiper-button-prev::after {
  left: 100%;
  -moz-transform: translateX(-50%);
   -ms-transform: translateX(-50%);
       transform: translateX(-50%);
  color: #fff;
}
.dingzhi-customers-arrow-wrap .swiper-button-prev:hover::after {
  color: var(--color-vi);
}
.dingzhi-customers-arrow-wrap .swiper-button-next {
  background: -moz-linear-gradient(left, transparent, rgba(0, 0, 0, 0.8));
  background: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.8));
  height: 100%;
  top: 0px;
  margin: 0px;
  width: 1.88rem;
  right: 0px;
}
.dingzhi-customers-arrow-wrap .swiper-button-next::after {
  left: 100%;
  -moz-transform: translateX(-50%);
   -ms-transform: translateX(-50%);
       transform: translateX(-50%);
  color: #fff;
}
.dingzhi-customers-arrow-wrap .swiper-button-next:hover::after {
  color: var(--color-vi);
}

@media screen and (max-width: 768px) {
  .dingzhi-customers-arrow-wrap .swiper-button-prev {
    background: -moz-linear-gradient(left, rgba(0, 0, 0, 0.4), transparent);
    background: linear-gradient(to right, rgba(0, 0, 0, 0.4), transparent);
    width: 60px;
  }
  .dingzhi-customers-arrow-wrap .swiper-button-next {
    background: -moz-linear-gradient(left, transparent, rgba(0, 0, 0, 0.4));
    background: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.4));
    width: 60px;
  }
}
/* ========================================
   42. 定制服务页 - Trusted by Customers (dingzhi-customers) - 结束
   ======================================== */
/* ========================================
   43. 应用场景页 - Application Scenarios (appsc) - 开始
   ======================================== */
/* ---- 43.1 Section 1: Application Scenarios Carousel ---- */
.appsc-s1 {
  padding-top: 0.6rem;
  padding-bottom: 0.8rem;
  overflow: hidden;
}

.appscSwiper {
  overflow: visible;
}

.appsc-s1-card {
  position: relative;
  aspect-ratio: 5/6;
  border-radius: 0.1rem;
  overflow: hidden;
}

.appsc-s1-card-img {
  inset: 0;
  height: 100%;
  width: 100%;
}

.appsc-s1-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.appsc-s1-card-mask-content {
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: center;
       justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.33rem;
}

.appsc-s1-card-mask {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 50%;
  width: 100%;
  display: -moz-box;
  display: flex;
  padding-left: 0.6rem;
  padding-right: 0.6rem;
  -moz-box-align: end;
       align-items: flex-end;
  -moz-box-pack: center;
       justify-content: center;
  flex-wrap: wrap;
  background: -moz-linear-gradient(bottom, rgba(0, 140, 214, 0.52), rgba(217, 217, 217, 0));
  background: linear-gradient(to top, rgba(0, 140, 214, 0.52), rgba(217, 217, 217, 0));
  -moz-transition: all 550ms;
  transition: all 550ms;
  -webkit-transition: all 550ms;
}
.appsc-s1-card-mask .index-system-btn {
  border-color: #fff;
  color: #fff;
  bottom: 0px;
  margin-bottom: 0.46rem;
  position: absolute;
  margin-left: 10px;
  margin-right: 10px;
}
.appsc-s1-card-mask .index-system-btn a {
  color: #fff;
}

.appsc-s1-card:hover .appsc-s1-card-mask {
  height: 100%;
  background: rgba(0, 140, 214, 0.6);
}
.appsc-s1-card:hover .appsc-s1-card-mask .index-system-btn {
  background: #fff;
  color: var(--color-primary);
}
.appsc-s1-card:hover .appsc-s1-card-mask .index-system-btn p {
  color: var(--color-primary);
}
.appsc-s1-card:hover .appsc-s1-card-mask .index-system-btn i {
  background: var(--color-primary);
  color: #fff;
}

.appsc-s1-card-title {
  font-size: var(--font-size-28);
  font-family: "wxb", Arial, Helvetica, sans-serif;
  color: #fff;
  text-align: center;
  z-index: 1;
  margin-bottom: 0.3rem;
  -moz-transition: all 550ms;
  transition: all 550ms;
  -webkit-transition: all 550ms;
}

.appsc-s1-card-desc {
  font-size: var(--font-size-18);
  color: #fff;
  text-align: center;
  line-height: 1.5;
  z-index: 1;
  opacity: 0;
  height: 0px;
  -moz-transition: all 550ms;
  transition: all 550ms;
  -webkit-transition: all 550ms;
}

.appsc-s1-card:hover .appsc-s1-card-desc {
  opacity: 1;
  height: auto;
  margin-bottom: 0.8rem;
}

.appscSwiper-annu {
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: end;
       justify-content: flex-end;
  gap: 0.16rem;
}
.appscSwiper-annu .swiper-button-prev,
.appscSwiper-annu .swiper-button-next {
  position: unset;
  width: max(0.62rem, 40px);
  height: max(0.44rem, 26px);
  margin: 0px;
  border-radius: 0.22rem;
  border: 1px solid #D9D9D9;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.appscSwiper-annu .swiper-button-prev::after,
.appscSwiper-annu .swiper-button-next::after {
  display: none;
}
.appscSwiper-annu .swiper-button-prev i,
.appscSwiper-annu .swiper-button-next i {
  font-size: var(--font-size-26);
  color: #D9D9D9;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.appscSwiper-annu .swiper-button-prev:hover,
.appscSwiper-annu .swiper-button-next:hover {
  border-color: var(--color-primary);
}
.appscSwiper-annu .swiper-button-prev:hover i,
.appscSwiper-annu .swiper-button-next:hover i {
  color: var(--color-primary);
}

@media screen and (max-width: 768px) {
  .appsc-s1-card-desc {
    display: none;
  }
  .appsc-s1-card:hover .appsc-s1-card-mask {
    background: transparent;
  }
  .appsc-s1-card-mask .index-system-btn {
    position: unset;
    width: auto;
    max-width: 100%;
  }
  .appsc-s1-card-mask-content {
    margin-bottom: 0px;
  }
}
/* ---- 43.2 Section 2: Common Challenges ---- */
.appsc-s2 {
  padding: 0.8rem 0;
  background: #f7fcff;
  overflow: hidden;
}

.appsc-s2-list {
  display: -moz-box;
  display: flex;
  gap: 0.3rem;
}

.appsc-s2-item {
  min-width: 5.3rem;
  background: #fff;
  border-radius: 0.1rem;
  padding: 0.44rem;
  position: relative;
  box-shadow: 0 0.04rem 0.18rem 0.08rem rgba(0, 140, 214, 0.07);
  border-radius: max(0.1rem, 10px);
  background: #FFF;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  border: 1px solid transparent;
}
.appsc-s2-item:hover {
  border: 1px solid var(--color-primary);
}

.appsc-s2-item-icon {
  top: 0.43rem;
  right: 0.43rem;
  width: max(0.58rem, 40px);
  height: max(0.58rem, 40px);
  margin-left: auto;
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: center;
       justify-content: center;
}

.appsc-s2-item-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.appsc-s2-item-content {
  padding-top: 0.8rem;
}

.appsc-s2-item-title {
  font-size: var(--font-size-24);
  font-family: var(--font-bold);
  color: var(--color-link);
  margin-bottom: 0.15rem;
}

.appsc-s2-item-desc {
  font-size: var(--font-size-18);
  color: var(--color-text);
  line-height: 1.6;
}

@media screen and (max-width: 768px) {
  /* 手机端不钉住，改为手指横向滑动 */
  .appsc-s2-list {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.2rem;
  }
}
/* ---- 43.3 Section 3: Why Choose DIMERA ---- */
.appsc-s3 {
  padding: 0.8rem 0;
}

.appsc-s3-list {
  display: -moz-box;
  display: flex;
  gap: 0.3rem;
}

.appsc-s3-item {
  position: relative;
  -moz-box-flex: 1;
       flex: 1;
  aspect-ratio: 3.75/5;
  border-radius: 0.1rem;
  overflow: hidden;
  cursor: pointer;
}

.appsc-s3-item-img {
  inset: 0;
  height: 100%;
  width: 100%;
}

.appsc-s3-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -moz-transition: all 600ms;
  transition: all 600ms;
  -webkit-transition: all 600ms;
}

.appsc-s3-item:hover .appsc-s3-item-img img {
  -webkit-filter: blur(7.5px);
          filter: blur(7.5px);
  -moz-transform: scale(1.06);
   -ms-transform: scale(1.06);
       transform: scale(1.06);
  -webkit-transform: scale(1.06);
}

/* 底部渐变遮罩，默认弱、悬浮加深 */
.appsc-s3-item-img::after {
  content: "";
  position: absolute;
  inset: 0;
  -moz-transition: all 550ms;
  transition: all 550ms;
  -webkit-transition: all 550ms;
}

/* 右上角圆形箭头：默认白色描边 ↘，悬浮蓝色实心 ↗ */
.appsc-s3-item-arrow {
  position: absolute;
  top: 0.49rem;
  right: 0.4rem;
  z-index: 2;
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: center;
       justify-content: center;
  width: 0.56rem;
  height: 0.56rem;
  border-radius: 50%;
  border: 1px solid #fff;
  -moz-transition: all 550ms;
  transition: all 550ms;
  -webkit-transition: all 550ms;
}

.appsc-s3-item-arrow i {
  color: #fff;
  font-size: var(--font-size-40);
  -moz-transform: rotate(45deg);
   -ms-transform: rotate(45deg);
       transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transition: transform 400ms, -moz-transform 400ms;
  transition: transform 400ms;
  transition: transform 400ms, -moz-transform 400ms;
  -webkit-transition: transform 400ms;
}

.appsc-s3-item:hover .appsc-s3-item-arrow {
  background: #008cd6;
  border-color: #008cd6;
}

.appsc-s3-item:hover .appsc-s3-item-arrow i {
  -moz-transform: rotate(-45deg);
   -ms-transform: rotate(-45deg);
       transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}

/* 文字内容：标题常驻底部，描述悬浮展开 */
.appsc-s3-item-content {
  position: absolute;
  left: 0.21rem;
  right: 0.21rem;
  bottom: 0.21rem;
  z-index: 2;
}

.appsc-s3-item-title {
  font-size: var(--font-size-24);
  font-family: var(--font-bold);
  color: #fff;
}

.appsc-s3-item-desc {
  margin-top: 0.12rem;
  font-size: var(--font-size-18);
  color: #fff;
  line-height: 1.5;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  -moz-transition: all 450ms;
  transition: all 450ms;
  -webkit-transition: all 450ms;
}

.appsc-s3-item:hover .appsc-s3-item-desc {
  opacity: 1;
  max-height: 3rem;
}

@media screen and (max-width: 991px) {
  .appsc-s3-list {
    flex-wrap: wrap;
  }
  .appsc-s3-item {
    -moz-box-flex: 0;
         flex: 0 0 calc(50% - 0.15rem);
    aspect-ratio: 3/2;
  }
}
@media screen and (max-width: 768px) {
  .appsc-s3-item {
    -moz-box-flex: 0;
         flex: 0 0 100%;
  }
  /* 移动端无 hover，直接展示描述与遮罩 */
  .appsc-s3-item-desc {
    opacity: 1;
    max-height: 100%;
  }
  .appsc-s3-item {
    aspect-ratio: unset;
  }
  .appsc-s3-item-img::after {
    background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 50%);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 50%);
  }
}
/* ---- 43.4 Section 4: FAQ ---- */
/* ========================================
   43. 应用场景页 - Application Scenarios (appsc) - 结束
   ======================================== */
/* ========================================
   44. 服务支持页 - Service Support (ss) - 开始
   ======================================== */
/* ---- 通用按钮 ---- */
.ss-btn {
  display: -moz-inline-box;
  display: inline-flex;
  -moz-box-align: center;
       align-items: center;
  gap: 0.1rem;
  padding: 0.14rem 0.28rem;
  border-radius: 0.42rem;
  font-size: var(--font-size-18);
  font-family: var(--font-bold);
  -moz-transition: all 550ms;
  transition: all 550ms;
  -webkit-transition: all 550ms;
}
.ss-btn i {
  font-size: var(--font-size-16);
}

.ss-btn--fill {
  background: var(--color-link);
  color: #fff;
  border: 1px solid var(--color-link);
}
.ss-btn--fill:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.ss-btn--border {
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-text);
}
.ss-btn--border:hover {
  border-color: var(--color-link);
  color: var(--color-link);
}

/* ---- 44.1 Sample Request ---- */
.ss-s1 {
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
}

.ss-s1-inner {
  display: -moz-box;
  display: flex;
  gap: 0.6rem;
  -moz-box-align: start;
       align-items: flex-start;
}

.ss-s1-left {
  width: 45%;
}

.ss-s1-title {
  font-size: var(--font-size-48);
  font-family: var(--font-bold);
  color: var(--color-text);
  line-height: 1.25;
  margin-bottom: 0.4rem;
}

.ss-s1-points {
  display: -moz-box;
  display: flex;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
       flex-direction: column;
  gap: 0.18rem;
}

.ss-s1-points li {
  display: -moz-box;
  display: flex;
  -moz-box-align: baseline;
       align-items: baseline;
  gap: 0.12rem;
  font-size: var(--font-size-20);
  color: var(--color-text);
}
.ss-s1-points li img {
  flex-shrink: 0;
  line-height: 1;
  position: relative;
  top: 0.04rem;
  width: max(0.24rem, 24px);
}
.ss-s1-points li em {
  font-style: normal;
  font-family: var(--font-bold);
  font-size: var(--font-size-32);
  line-height: 1;
  color: var(--color-primary);
  white-space: nowrap;
}

.ss-s1-right {
  -moz-box-flex: 1;
       flex: 1;
  background: #fff;
  border-radius: 0.2rem;
  box-shadow: 0 4px 23px 5px rgba(86, 196, 255, 0.09);
  padding: 0.37rem 0.4rem;
}

.ss-s1-form-grid {
  display: -moz-box;
  display: flex;
  flex-wrap: wrap;
  gap: 0.15rem;
}

.ss-s1-form-grid p {
  width: -moz-calc(50% - 0.075rem);
  width: calc(50% - 0.075rem);
}

.ss-s1-form-grid input {
  width: 100%;
  background: #f5f5f5;
  border: none;
  border-radius: 0.1rem;
  padding: max(0.18rem, 10px) 0.3rem;
  font-size: var(--font-size-18);
  color: #666;
  outline: none;
  font-family: var(--font-regular);
}

.ss-s1-form-grid input::-webkit-input-placeholder,
.ss-s1-form-grid textarea::-webkit-input-placeholder {
  color: #999;
  font-size: var(--font-size-16);
  font-family: "wxr", Arial, Helvetica, sans-serif;
}
.ss-s1-form-grid input::-moz-placeholder,
.ss-s1-form-grid textarea::-moz-placeholder {
  color: #999;
  font-size: var(--font-size-16);
  font-family: "wxr", Arial, Helvetica, sans-serif;
}
.ss-s1-form-grid input:-ms-input-placeholder,
.ss-s1-form-grid textarea:-ms-input-placeholder {
  color: #999;
  font-size: var(--font-size-16);
  font-family: "wxr", Arial, Helvetica, sans-serif;
}

.submit-div {
  position: relative;
  display: inline-block;
}
.submit-div .stbtanc {
  padding-right: 0.6rem;
  padding-left: 0.3rem;
  border-radius: 0.42rem;
  padding-top: max(0.13rem, 10px);
  padding-bottom: max(0.13rem, 10px);
  height: auto;
  background: var(--color-primary);
  border-color: var(--color-primary);
}
.submit-div .stbtanc:hover {
  background: transparent;
}
.submit-div em {
  position: absolute;
  top: 50%;
  -moz-transform: translateY(-50%);
   -ms-transform: translateY(-50%);
       transform: translateY(-50%);
  right: 0px;
  right: 0.2rem;
  pointer-events: none;
  font-size: var(--font-size-30);
  color: #fff;
}
.submit-div:hover em {
  color: #000;
}

.ss-s1-form-check {
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  flex-wrap: wrap;
  gap: 0.04rem;
  margin-top: 0.2rem;
  font-size: var(--font-size-14);
  color: var(--color-text);
}
.ss-s1-form-check a {
  color: var(--color-link);
}
.ss-s1-form-check .error-msg {
  margin-bottom: 0.1rem;
}

.form-check {
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
}
.form-check input {
  width: max(0.16rem, 16px);
  height: max(0.16rem, 16px);
}

.ss-s1-submit {
  display: -moz-inline-box;
  display: inline-flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: center;
       justify-content: center;
  background: var(--color-link);
  color: #fff;
  border: none;
  border-radius: 0.42rem;
  padding: 0.14rem 0.47rem;
  font-size: var(--font-size-18);
  font-family: var(--font-bold);
  cursor: pointer;
  -moz-transition: all 550ms;
  transition: all 550ms;
  -webkit-transition: all 550ms;
}
.ss-s1-submit:hover {
  background: var(--color-primary);
}

@media screen and (max-width: 991px) {
  .ss-s1-left {
    width: 100%;
  }
  .ss-s1-inner {
    flex-wrap: wrap;
  }
  .ss-s1-right {
    padding: 0.3rem;
  }
}
@media screen and (max-width: 768px) {
  .ss-s1-form-grid p {
    width: 100%;
  }
}
/* ---- 44.2 Service Scope ---- */
.ss-2-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}
.ss-2-list .appsc-s3-item {
  aspect-ratio: 5/4.15;
}
.ss-2-list .appsc-s3-item:hover .appsc-s3-item-img::after {
  background: transparent;
}
.ss-2-list .appsc-s3-item .appsc-s3-item-img::after {
  background: -moz-linear-gradient(bottom, rgba(0, 140, 214, 0.52) 0%, rgba(217, 217, 217, 0) 93.17%);
  background: linear-gradient(0deg, rgba(0, 140, 214, 0.52) 0%, rgba(217, 217, 217, 0) 93.17%);
}
.ss-2-list .appsc-s3-item-title {
  font-size: var(--font-size-28);
  line-height: 1.3;
}
.ss-2-list .appsc-s3-item-desc {
  font-size: var(--font-size-20);
}

@media screen and (max-width: 991px) {
  .ss-2-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .appsc-s3-item:hover .appsc-s3-item-img img {
    -webkit-filter: blur(0);
            filter: blur(0);
  }
}
@media screen and (max-width: 767px) {
  .ss-2-list {
    grid-template-columns: repeat(1, 1fr);
  }
  .ss-2-list .appsc-s3-item-desc {
    font-size: 14px;
  }
  .ss-2-list .appsc-s3-item-title {
    font-size: 20px;
  }
}
/* ---- 44.3 Clear Workflow ---- */
.ss-s3 {
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
  background: #F7FCFF;
}

.ss-s3-inner {
  display: -moz-box;
  display: flex;
  gap: 0.6rem;
  -moz-box-align: start;
       align-items: flex-start;
  -moz-box-pack: justify;
       justify-content: space-between;
}

.ss-s3-steps {
  -moz-box-flex: 0;
       flex: 0 0 55%;
  margin-top: 0.22rem;
}

.ss-s3-step-list {
  margin-bottom: 0.48rem;
}

.ss-s3-step {
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  gap: 0.2rem;
  padding: 0.2rem 0;
  border-top: 1px solid rgba(0, 140, 214, 0.36);
  cursor: pointer;
  -moz-transition: all 550ms;
  transition: all 550ms;
  -webkit-transition: all 550ms;
  position: relative;
}
.ss-s3-step::after {
  content: "";
  position: absolute;
  top: -1px;
  left: 0px;
  width: 0%;
  height: 1px;
  background: #222;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.ss-s3-step.active::after {
  width: 50%;
}

.ss-s3-step-num {
  font-size: var(--font-size-20);
  color: #666;
  flex-shrink: 0;
  min-width: 0.6rem;
}

.ss-s3-step-title {
  font-size: var(--font-size-26);
  color: #666;
  -moz-transition: all 550ms;
  transition: all 550ms;
  -webkit-transition: all 550ms;
}

.ss-s3-step-desc {
  font-size: var(--font-size-18);
  color: #666;
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  -moz-transition: max-height 500ms;
  transition: max-height 500ms;
  -webkit-transition: max-height 500ms;
}
.ss-s3-step-desc em {
  color: var(--color-primary);
  font-style: normal;
}

.ss-s3-step.active .ss-s3-step-num {
  color: var(--color-text);
}

.ss-s3-step.active .ss-s3-step-title {
  font-size: var(--font-size-32);
  font-family: "wxsb", Arial, Helvetica, sans-serif;
  color: var(--color-text);
}

.ss-s3-step.active .ss-s3-step-desc {
  margin-top: 0.1rem;
  max-height: max(2rem, 200px);
}

.ss-s3-steps .ss-btn {
  margin-top: 0.4rem;
  align-self: flex-start;
}

.ss-s3-img {
  -moz-box-flex: 0;
       flex: 0 0 37%;
  border-radius: 0.1rem;
  overflow: hidden;
  aspect-ratio: 591/623;
  overflow: hidden;
}
.ss-s3-img img:hover {
  -moz-transform: scale(1.05);
   -ms-transform: scale(1.05);
       transform: scale(1.05);
}

/* ---- 44.4 Service Guarantee ---- */
.ss-s4 {
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
}

.ss-s4-head {
  margin-bottom: 0.5rem;
}

.ss-s4-title {
  font-size: var(--font-size-48);
  font-family: var(--font-bold);
  color: var(--color-text);
  line-height: 1.25;
  margin-bottom: 0.1rem;
}

.ss-s4-desc {
  font-size: var(--font-size-18);
  color: #666;
  margin-bottom: 0.3rem;
}

.ss-s4-inner {
  display: -moz-box;
  display: flex;
  gap: 0.9rem;
  -moz-box-align: start;
       align-items: flex-start;
}

.ss-s4-imgbox {
  -moz-box-flex: 0;
       flex: 0 0 46%;
  border-radius: 0.1rem;
  overflow: hidden;
}

.ss-s4-list {
  width: 41.375%;
  display: -moz-box;
  display: flex;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
       flex-direction: column;
}

.ss-s4-item {
  display: -moz-box;
  display: flex;
  -moz-box-align: start;
       align-items: flex-start;
  gap: 0.2rem;
  padding: 0.2rem 0;
  border-bottom: 1px solid #e5e5e5;
  cursor: pointer;
  -moz-transition: all 550ms;
  transition: all 550ms;
  -webkit-transition: all 550ms;
}
.ss-s4-item.active .ss-s4-item-title {
  color: var(--color-link);
}
.ss-s4-item.active .ss-s4-item-desc {
  max-height: max(2rem, 200px);
}
.ss-s4-item.active .ss-s4-item-icon img {
  display: none;
}
.ss-s4-item.active .ss-s4-item-icon img:nth-child(2) {
  display: block;
}

.ss-s4-item-icon {
  flex-shrink: 0;
  position: relative;
  top: 0.04rem;
  width: max(0.3rem, 20px);
  height: max(0.3rem, 20px);
}
.ss-s4-item-icon img {
  width: 100%;
  display: block;
}
.ss-s4-item-icon img:nth-child(2) {
  display: none;
}

.ss-s4-item-title {
  font-size: var(--font-size-24);
  font-family: var(--font-boldsb);
  color: #666;
  -moz-transition: all 550ms;
  transition: all 550ms;
  -webkit-transition: all 550ms;
}

.ss-s4-item-desc {
  font-size: var(--font-size-18);
  color: var(--color-text);
  margin-top: 0.08rem;
  max-height: 0;
  overflow: hidden;
  -moz-transition: max-height 500ms;
  transition: max-height 500ms;
  -webkit-transition: max-height 500ms;
}

@media screen and (max-width: 991px) {
  .ss-s4-list {
    width: 46%;
  }
}
@media screen and (max-width: 768px) {
  .ss-s3-inner {
    flex-wrap: wrap;
    -moz-box-orient: vertical;
    -moz-box-direction: reverse;
         flex-direction: column-reverse;
  }
  .ss-s3-steps {
    -moz-box-flex: 1;
         flex: auto;
  }
  .ss-s3-img {
    width: 100%;
    -moz-box-flex: 1;
         flex: auto;
  }
  .ss-s4-inner {
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
         flex-direction: column;
  }
  .ss-s4-list {
    width: 100%;
  }
}
/* ---- 44.5 One-Time Cooperation ---- */
.ss-s5 {
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
  background: -moz-linear-gradient(top, #f7fcff 0%, rgba(248, 248, 248, 0) 100%);
  background: linear-gradient(180deg, #f7fcff 0%, rgba(248, 248, 248, 0) 100%);
}

.ss-s5-list {
  display: -moz-box;
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
}

.ss-s5-item {
  width: -moz-calc(33.333% - 0.2rem);
  width: calc(33.333% - 0.2rem);
  padding: 0.2rem 0.36rem;
  border-right: 1px solid #e5e5e5;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.ss-s5-item:nth-child(3n) {
  border: 0px;
}
.ss-s5-item:hover {
  -moz-transform: translateY(-10px);
   -ms-transform: translateY(-10px);
       transform: translateY(-10px);
}
.ss-s5-item:hover .ss-s5-item-icon {
  -webkit-filter: drop-shadow(0 2px 8px rgba(0, 140, 214, 0.36));
          filter: drop-shadow(0 2px 8px rgba(0, 140, 214, 0.36));
}
.ss-s5-item:hover .ss-s5-item-title {
  color: var(--color-primary);
}

.ss-s5-item-icon {
  width: max(0.62rem, 46px);
  height: max(0.62rem, 46px);
  margin-bottom: 0.46rem;
  border-radius: 50%;
  background: #F7FCFF;
  padding: max(0.1rem, 5px);
  -webkit-filter: drop-shadow(0 2px 6px rgba(0, 140, 214, 0.12));
          filter: drop-shadow(0 2px 6px rgba(0, 140, 214, 0.12));
  transition: -webkit-filter 0.3s ease-in-out;
  -moz-transition: filter 0.3s ease-in-out;
  transition: filter 0.3s ease-in-out;
  transition: filter 0.3s ease-in-out, -webkit-filter 0.3s ease-in-out;
}
.ss-s5-item-icon img {
  width: 100%;
}

.ss-s5-item-title {
  font-size: var(--font-size-24);
  font-family: var(--font-bold);
  color: var(--color-text);
  margin-bottom: 0.16rem;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}

.ss-s5-item-desc {
  font-size: var(--font-size-18);
  color: var(--color-text);
}

@media screen and (max-width: 768px) {
  .ss-s5-item {
    width: 49%;
    border: 0px;
  }
  .ss-s5-list {
    -moz-box-pack: justify;
         justify-content: space-between;
    gap: 0px;
    row-gap: 20px;
  }
}
@media screen and (max-width: 480px) {
  .ss-s5-item {
    width: 100%;
  }
}
/* ---- 44.6 Service Team ---- */
.ss-s6 {
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
  background: #f7fcff;
}

.ss-s6-head {
  margin-bottom: 0.5rem;
}

.ss-s6-title {
  font-size: var(--font-size-48);
  font-family: var(--font-bold);
  color: var(--color-text);
  margin-bottom: 0.1rem;
}

.ss-s6-desc {
  font-size: var(--font-size-18);
  color: #666;
}

.ss-s6-inner {
  display: -moz-box;
  display: flex;
  gap: 0.6rem;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: justify;
       justify-content: space-between;
}

.ss-s6-grid {
  width: 50%;
  display: -moz-box;
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  row-gap: 0px;
  margin-left: 0.3rem;
  -moz-box-pack: justify;
       justify-content: space-between;
}

.ss-s6-item {
  width: 44%;
  padding: 0.3rem 0.3rem 0.3rem 0;
  padding: 0.56rem 0px;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
  display: -moz-box;
  display: flex;
  gap: 0.15rem;
}
.ss-s6-item.active .ss-s6-item-text, .ss-s6-item:hover .ss-s6-item-text {
  font-size: var(--font-size-20);
  font-family: "wxsb", Arial, Helvetica, sans-serif;
  color: var(--color-primary);
}
.ss-s6-item.active .ss-s6-item-icon, .ss-s6-item:hover .ss-s6-item-icon {
  -webkit-filter: grayscale(0%);
          filter: grayscale(0%);
}

.ss-s6-item-icon {
  flex-shrink: 0;
  -webkit-filter: grayscale(100%) brightness(0);
          filter: grayscale(100%) brightness(0);
}
.ss-s6-item-icon img {
  width: 0.24rem;
  height: 0.24rem;
  object-fit: contain;
}

.ss-s6-item-text {
  font-size: var(--font-size-20);
  color: var(--color-text);
}

.ss-s6-img {
  width: 38.1875%;
  border-radius: 0.1rem;
  overflow: hidden;
  aspect-ratio: 611/418;
  overflow: hidden;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.ss-s6-img img:hover {
  -moz-transform: scale(1.05);
   -ms-transform: scale(1.05);
       transform: scale(1.05);
}

@media screen and (max-width: 991px) {
  .ss-s6-inner {
    -moz-box-orient: vertical;
    -moz-box-direction: reverse;
         flex-direction: column-reverse;
    -moz-box-pack: justify;
         justify-content: space-between;
  }
  .ss-s6-grid {
    margin-left: 0px;
    width: 100%;
    flex-wrap: wrap;
    gap: 0px;
  }
  .ss-s6-grid .ss-s6-item {
    width: 48%;
    padding-top: 0.2rem;
    padding-bottom: 0.2rem;
  }
  .ss-s6-img {
    width: 100%;
    max-width: 500px;
  }
  .ss-s6-item-icon {
    position: relative;
    top: 0.1rem;
  }
}
@media screen and (max-width: 767px) {
  .ss-s6-grid .ss-s6-item {
    width: 100%;
  }
}
.ss-s7 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

/* ========================================
   44. 服务支持页 - Service Support (ss) - 结束
   ======================================== */
/* ========================================
   45. 招募施工合伙人页 - Partners (partner) - 开始
   ======================================== */
/* ---- 45.0 通用标题 ---- */
/* ---- 45.1 Partner Benefits (partner-s2) ---- */
.partner-s2 {
  padding: 0.9rem 0;
}

.partner-s2-inner {
  display: -moz-box;
  display: flex;
  gap: 1rem;
  -moz-box-align: center;
       align-items: center;
}

.partner-s2-list {
  width: 45.375%;
  min-width: 0;
}
.partner-s2-list li {
  border-bottom: 1px solid #e5e5e5;
  padding: 0.32rem 0;
}
.partner-s2-list li:last-child {
  border-color: transparent;
}

.partner-s2-item {
  display: -moz-box;
  display: flex;
  -moz-box-align: start;
       align-items: flex-start;
  gap: 0.2rem;
}
.partner-s2-item:hover .partner-s2-item-icon img {
  display: none;
}
.partner-s2-item:hover .partner-s2-item-icon img:nth-child(2) {
  display: block;
}
.partner-s2-item:hover .partner-s2-item-title {
  color: var(--color-primary);
}

.partner-s2-item:first-child {
  padding-top: 0;
}

.partner-s2-item-icon {
  width: max(0.3rem, 20px);
  height: max(0.3rem, 20px);
  flex-shrink: 0;
  object-fit: contain;
  margin-top: max(0.04rem, 4px);
}
.partner-s2-item-icon img {
  display: none;
}
.partner-s2-item-icon img:nth-child(1) {
  display: block;
}

.partner-s2-item-title {
  font-size: var(--font-size-26);
  color: #666;
  font-family: var(--font-bold);
  margin-bottom: 0.1rem;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}

.partner-s2-item-desc {
  font-size: var(--font-size-18);
  color: #666;
  line-height: 1.6;
}

.partner-s2-img {
  width: 48.25%;
  border-radius: 0.12rem;
  overflow: hidden;
}

.partner-s2-img img {
  height: 4.2rem;
  object-fit: cover;
}

@media screen and (max-width: 991px) {
  .partner-s2-inner {
    -moz-box-orient: vertical;
    -moz-box-direction: reverse;
         flex-direction: column-reverse;
    -moz-box-align: stretch;
         align-items: stretch;
    gap: 0.4rem;
  }
  .partner-s2-img,
  .partner-s2-list {
    width: 100%;
  }
  .partner-s2-img img {
    height: auto;
  }
}
/* ---- 45.2 What Support Do You Get (partner-s3) ---- */
.partner-s3 {
  padding: 0.9rem 0;
  background: -moz-linear-gradient(92deg, rgba(0, 140, 214, 0.07) 5.78%, rgba(0, 140, 214, 0) 89.58%);
  background: linear-gradient(358deg, rgba(0, 140, 214, 0.07) 5.78%, rgba(0, 140, 214, 0) 89.58%);
}

.partner-s3-inner {
  display: -moz-box;
  display: flex;
  gap: 1rem;
  -moz-box-align: stretch;
       align-items: stretch;
}

.partner-s3-left {
  -moz-box-flex: 0;
       flex: 0 0 26%;
  align-self: center;
}

.partner-s3-left .ss-btn {
  margin-top: 0.4rem;
}

.partner-s3-list {
  display: -moz-box;
  display: flex;
  gap: 0.24rem;
  margin-right: 0.44rem;
}

.partner-s3-card {
  -moz-box-flex: 1;
       flex: 1;
  background: #fff;
  border-radius: 0.1rem;
  box-shadow: 0 0.04rem 0.28rem 0 rgba(0, 0, 0, 0.16);
  padding: 0.68rem 0.24rem 0.35rem 0.24rem;
  display: -moz-box;
  display: flex;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
       flex-direction: column;
  min-height: 4.92rem;
  position: relative;
  -moz-transition: all 550ms;
  transition: all 550ms;
  -webkit-transition: all 550ms;
}
.partner-s3-card > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
}

.partner-s3-card:hover {
  -moz-transform: translateY(-6px);
   -ms-transform: translateY(-6px);
       transform: translateY(-6px);
  -webkit-transform: translateY(-6px);
  background: var(--color-link);
}
.partner-s3-card:hover > img {
  opacity: 1;
}
.partner-s3-card:hover .partner-s3-card-title,
.partner-s3-card:hover .partner-s3-card-desc,
.partner-s3-card:hover .partner-s3-card-link {
  color: #fff;
}
.partner-s3-card:hover .partner-s3-card-link {
  border-top-color: rgb(255, 255, 255);
}

.partner-s3-card-title {
  font-size: var(--font-size-24);
  color: var(--color-text);
  font-family: "wxb", Arial, Helvetica, sans-serif;
  margin-bottom: 0.16rem;
}

.partner-s3-card-desc {
  font-size: var(--font-size-18);
  color: #666;
  -moz-box-flex: 1;
       flex: 1;
}

.partner-s3-card-link {
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: justify;
       justify-content: space-between;
  gap: 0.1rem;
  margin-top: 0.5rem;
  padding-top: 0.24rem;
  border-top: 1px solid #000;
  font-size: var(--font-size-18);
  color: var(--color-text);
  font-family: "wxsb", Arial, Helvetica, sans-serif;
}
.partner-s3-card-link i {
  font-size: var(--font-size-24);
  line-height: 1;
}

@media screen and (max-width: 991px) {
  .partner-s3-inner {
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
         flex-direction: column;
    gap: 0.4rem;
  }
  .partner-s3-card {
    -moz-box-flex: 0;
         flex: 0 0 calc(50% - 0.15rem);
  }
  .partner-s3-left {
    -moz-box-flex: 0;
         flex: none;
    align-self: stretch;
  }
  .partner-s3-list {
    flex-wrap: wrap;
    margin-right: 0px;
  }
}
@media screen and (max-width: 768px) {
  .partner-s3-card {
    -moz-box-flex: 0;
         flex: 0 0 100%;
    min-height: unset;
  }
}
/* ---- 45.3 Why Partner with DIMERA (partner-s4) ---- */
.partner-s4 {
  padding: 0.9rem 0 1rem;
}

.partner-s4-head {
  display: -moz-box;
  display: flex;
  -moz-box-align: end;
       align-items: flex-end;
  -moz-box-pack: justify;
       justify-content: space-between;
  gap: 0.4rem;
  margin-bottom: 0.5rem;
}

.partner-s4-list {
  display: -moz-box;
  display: flex;
  gap: 0.3rem;
  -moz-box-align: start;
       align-items: flex-start;
}

.partner-s4-item {
  position: relative;
  -moz-box-flex: 1;
       flex: 1;
  border-radius: 0.12rem;
  overflow: hidden;
  height: 4.14rem;
}
.partner-s4-item:hover .partner-s4-item-text {
  display: block;
  padding: 0.3rem;
}
.partner-s4-item:hover .partner-s4-item-mask {
  background: var(--color-primary);
}
.partner-s4-item:hover .partner-s4-item-line {
  display: inline-block;
}
.partner-s4-item:hover .partner-s4-item-desc {
  display: block;
}

.partner-s4-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.partner-s4-item-mask {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 10px;
  width: 100%;
  height: auto;
  background: rgba(34, 34, 34, 0.3);
  z-index: 2;
  text-align: center;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}

.partner-s4-item-text {
  padding: 0.1rem 0.3rem;
  min-height: 0.92rem;
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: center;
       justify-content: center;
  flex-wrap: wrap;
}

.partner-s4-item-line {
  width: max(1rem, 60px);
  height: max(0.02rem, 2px);
  background: #fff;
  display: inline-block;
  margin-top: 0.1rem;
  margin-bottom: 0rem;
  display: none;
}

.partner-s4-item-title {
  font-size: var(--font-size-24);
  font-family: "wxb", Arial, Helvetica, sans-serif;
  color: #fff;
  width: 100%;
}

.partner-s4-item-desc {
  font-size: var(--font-size-18);
  color: #fff;
  margin-top: 0.1rem;
  display: none;
}

@media screen and (max-width: 991px) {
  .partner-s4-list {
    flex-wrap: wrap;
  }
  .partner-s4-item {
    height: auto;
    -moz-box-flex: 0;
         flex: 0 0 calc(50% - 0.15rem);
  }
  .partner-s4-item-desc {
    display: block;
  }
  .partner-s4-item-line {
    display: inline-block;
  }
  .partner-s4-item-mask {
    background: var(--color-primary);
    height: auto;
  }
  .partner-s4-item-text {
    flex-wrap: wrap;
    padding: 0.3rem;
    min-height: unset;
    display: inline-block;
  }
}
@media screen and (max-width: 768px) {
  .partner-s4-item {
    -moz-box-flex: 0;
         flex: 0 0 100%;
  }
  .partner-s4-item-mask {
    position: unset;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
  }
}
/* ---- 45.4 What Qualifications (partner-s5) ---- */
.partner-s5 {
  padding: 0.9rem 0;
  background: #eef5fb;
}

.partner-s5-inner {
  display: -moz-box;
  display: flex;
  gap: 0.6rem;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: justify;
       justify-content: space-between;
}

.partner-s5-left {
  -moz-box-flex: 0;
       flex: 0 0 32%;
}
.partner-s5-left .oem-desc {
  margin-top: 0px;
}

.partner-s5-line {
  display: block;
  width: 1.3rem;
  height: 3px;
  background: var(--color-vi);
  margin-top: 0.3rem;
}

.partner-s5-list {
  width: 56.25%;
  display: -moz-box;
  display: flex;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
       flex-direction: column;
  gap: 0.3rem;
}

.partner-s5-item {
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  gap: 0.3rem;
  background: #fff;
  border-radius: 0.9rem;
  padding: 0.34rem 0.8rem;
  box-shadow: 0 0.08rem 0.3rem rgba(0, 0, 0, 0.05);
  -moz-transition: all 550ms;
  transition: all 550ms;
  -webkit-transition: all 550ms;
}
.partner-s5-item:hover, .partner-s5-item.active {
  background: var(--color-link);
}
.partner-s5-item:hover .partner-s5-item-icon > img, .partner-s5-item.active .partner-s5-item-icon > img {
  opacity: 1;
}
.partner-s5-item:hover .partner-s5-item-icon > span, .partner-s5-item.active .partner-s5-item-icon > span {
  background: #fff;
}
.partner-s5-item:hover .partner-s5-item-title,
.partner-s5-item:hover .partner-s5-item-desc, .partner-s5-item.active .partner-s5-item-title,
.partner-s5-item.active .partner-s5-item-desc {
  color: #fff;
}

.partner-s5-item-icon {
  padding: 0.08rem;
  position: relative;
}
.partner-s5-item-icon > img {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
}
.partner-s5-item-icon > span {
  width: 0.8rem;
  height: 0.8rem;
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: center;
       justify-content: center;
  background: #eef5fb;
  padding: 0.18rem;
}

.partner-s5-item-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.partner-s5-item-icon > img {
  -webkit-animation: xunhuan-rotate 3s linear infinite;
     -moz-animation: xunhuan-rotate 3s linear infinite;
          animation: xunhuan-rotate 3s linear infinite;
}

@-webkit-keyframes xunhuan-rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@-moz-keyframes xunhuan-rotate {
  0% {
    -moz-transform: rotate(0deg);
         transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(360deg);
         transform: rotate(360deg);
  }
}

@keyframes xunhuan-rotate {
  0% {
    -moz-transform: rotate(0deg);
         transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(360deg);
         transform: rotate(360deg);
  }
}
.partner-s5-item-title {
  font-size: var(--font-size-28);
  color: var(--color-text);
  font-family: var(--font-bold);
  margin-bottom: 0.08rem;
}

.partner-s5-item-desc {
  font-size: var(--font-size-18);
  color: #666;
  line-height: 1.55;
}

@media screen and (max-width: 991px) {
  .partner-s5-item {
    padding-top: 0.3rem;
    padding-bottom: 0.3rem;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
}
@media screen and (max-width: 768px) {
  .partner-s5-inner {
    flex-wrap: wrap;
    gap: 0px;
  }
  .partner-s5-left {
    -moz-box-flex: 0;
         flex: none;
    width: 100%;
  }
  .partner-s5-list {
    width: 100%;
  }
  .partner-s5-item {
    border-radius: 0.3rem;
  }
}
/* ---- 45.5 Flexible Partnership Models (partner-s6) ---- */
.partner-s6 {
  padding: 0.9rem 0 1rem;
}

.partner-s6-head {
  margin-bottom: 0.5rem;
}

.partner-s6-wrap {
  position: relative;
}

.partner-s6 .swiper {
  overflow: hidden;
}

.partner-s6 .swiper-slide {
  width: 6.9rem;
}

.partner-s6-item {
  position: relative;
  border-radius: 0.12rem;
  overflow: hidden;
}

.partner-s6-item img {
  height: 6rem;
  object-fit: cover;
}

.partner-s6-item-mask {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 50%;
  background: -moz-linear-gradient(top, transparent, rgba(0, 0, 0, 0.72));
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.72));
}

.partner-s6-item-text {
  position: absolute;
  left: 0.32rem;
  right: 0.32rem;
  bottom: 0.36rem;
}

.partner-s6-item-title {
  font-size: var(--font-size-30);
  color: #fff;
  font-family: var(--font-bold);
  line-height: 1.3;
  margin-bottom: 0.12rem;
}

.partner-s6-item-desc {
  font-size: var(--font-size-16);
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.55;
}

.partner-s6-next {
  position: absolute;
  top: 0;
  right: 0;
  width: 1.6rem;
  height: 6rem;
  background: #eef5fb;
  border-radius: 0.12rem;
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: center;
       justify-content: center;
  cursor: pointer;
  z-index: 3;
  -moz-transition: all 550ms;
  transition: all 550ms;
  -webkit-transition: all 550ms;
}

.partner-s6-next i {
  font-size: var(--font-size-28);
  color: var(--color-link);
}

.partner-s6-next:hover {
  background: var(--color-link);
}

.partner-s6-next:hover i {
  color: #fff;
}

/* ---- 45.6 3-Step Onboarding (partner-s7) ---- */
.partner-s7 {
  padding: 0.9rem 0 1rem;
  background: #eef5fb;
}

.partner-s7-head {
  display: -moz-box;
  display: flex;
  -moz-box-align: end;
       align-items: flex-end;
  -moz-box-pack: justify;
       justify-content: space-between;
  gap: 0.4rem;
  margin-bottom: 0.6rem;
}

.partner-s7-headleft {
  -moz-box-flex: 1;
       flex: 1;
  min-width: 0;
}

.partner-s7-list {
  display: -moz-box;
  display: flex;
  gap: 0.3rem;
  -moz-box-align: stretch;
       align-items: stretch;
}

.partner-s7-item {
  -moz-box-flex: 1;
       flex: 1;
  min-height: max(4.71rem, 400px);
  padding: 0.4rem 0.36rem;
  padding-right: 0.2rem;
  padding-bottom: 0.2rem;
  display: -moz-box;
  display: flex;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
       flex-direction: column;
  -moz-box-pack: justify;
       justify-content: space-between;
  gap: 0.2rem;
  -moz-transition: all 550ms;
  transition: all 550ms;
  -webkit-transition: all 550ms;
  position: relative;
}
.partner-s7-item > img {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 0;
  -moz-transition: all 0s ease-in-out;
  transition: all 0s ease-in-out;
}
.partner-s7-item > img {
  display: none;
}
.partner-s7-item > img:nth-child(1) {
  display: block;
}
.partner-s7-item:hover > img {
  display: none;
}
.partner-s7-item:hover > img:nth-child(2) {
  display: block;
}

.partner-s7-item-top {
  display: -moz-box;
  display: flex;
  -moz-box-pack: justify;
       justify-content: space-between;
  gap: 0.2rem;
  position: relative;
  z-index: 1;
}

.partner-s7-item-no {
  display: block;
  font-size: 0.4rem;
  color: var(--color-text);
  font-family: var(--font-bold);
  line-height: 1;
}

.partner-s7-item-step {
  display: block;
  font-size: var(--font-size-18);
  color: #888;
}

.partner-s7-item-points {
  text-align: left;
  max-width: 3rem;
  padding-right: 0.3rem;
}

.partner-s7-item-points li {
  font-size: var(--font-size-20);
  color: var(--color-text);
  line-height: 1.5;
}

.partner-s7-item-points i {
  font-size: var(--font-size-14);
  color: var(--color-primary);
  margin-left: 0.04rem;
}

.partner-s7-item-bottom {
  display: -moz-box;
  display: flex;
  -moz-box-align: end;
       align-items: flex-end;
  -moz-box-pack: justify;
       justify-content: space-between;
  gap: 0.2rem;
  margin-top: 0.5rem;
  position: relative;
  z-index: 1;
}

.partner-s7-item-title {
  font-size: 0.3rem;
  color: var(--color-text);
  font-family: var(--font-bold);
  line-height: 1.25;
  margin-bottom: 0.2rem;
}

.partner-s7-item-go {
  display: -moz-box;
  display: flex;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
       flex-direction: column;
  -moz-box-align: end;
       align-items: flex-end;
  -moz-box-pack: end;
       justify-content: flex-end;
  gap: 0.06rem;
  flex-shrink: 0;
}

.partner-s7-item-go i {
  font-size: var(--font-size-30);
  color: var(--color-text);
}

.partner-s7-item-go span {
  font-size: var(--font-size-16);
  color: var(--color-text);
}

.partner-s7-item:hover .partner-s7-item-title,
.partner-s7-item:hover .partner-s7-item-points li,
.partner-s7-item:hover .partner-s7-item-go i,
.partner-s7-item:hover .partner-s7-item-go span {
  color: #fff;
}

.partner-s7-item:hover .partner-s7-item-points i {
  color: var(--color-vi);
}

@media screen and (max-width: 1280px) {
  .partner-s7-item {
    min-height: 5.5rem;
  }
}
@media screen and (max-width: 991px) {
  .partner-s7-list {
    flex-wrap: wrap;
    -moz-box-pack: justify;
         justify-content: space-between;
    gap: 0px;
    row-gap: 20px;
  }
  .partner-s7-item {
    -moz-box-flex: unset;
         flex: unset;
    width: 49%;
    background: var(--color-primary);
  }
  .partner-s7-item > img {
    opacity: 0;
  }
  .partner-s7-item .partner-s7-item-points {
    max-width: 100%;
  }
  .partner-s7-item .partner-s7-item-points i {
    color: var(--color-vi);
  }
  .partner-s7-item .partner-s7-item-no,
  .partner-s7-item .partner-s7-item-step,
  .partner-s7-item .partner-s7-item-points li,
  .partner-s7-item .partner-s7-item-title,
  .partner-s7-item .partner-s7-item-go i,
  .partner-s7-item .partner-s7-item-go span {
    color: #fff;
  }
  .partner-s7-item .partner-s7-item-top {
    flex-wrap: wrap;
  }
  .partner-s7-item .partner-s7-item-num {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .partner-s7-item {
    width: 100%;
  }
}
/* ---- 45.7 Partner FAQs (partner-s8) ---- */
.partner-s8 {
  padding: 0.9rem 0 1rem;
}

/* ========================================
   46. 工厂实力页 - Factory Strength (fs) - 开始
   ======================================== */
/* ---- 46.1 Overview of Factory Capabilities (fs-s2) ---- */
.fs-s2 {
  padding: 0.9rem 0;
}

.fs-s2-list {
  display: -moz-box;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.fs-s2-item {
  width: -moz-calc((100% - 1rem) / 3);
  width: calc((100% - 1rem) / 3);
}
.fs-s2-item:hover .fs-s2-item-img img {
  -moz-transform: scale(1.05);
   -ms-transform: scale(1.05);
       transform: scale(1.05);
}
.fs-s2-item:hover .fs-s2-item-title {
  color: var(--color-primary);
}

.fs-s2-item-img {
  border-radius: 0.1rem;
  overflow: hidden;
  margin-bottom: 0.24rem;
  aspect-ratio: 5/2.34;
}

.fs-s2-item-title {
  font-size: var(--font-size-28);
  color: var(--color-text);
  font-family: "wxb", Arial, Helvetica, sans-serif;
  margin-bottom: 0.12rem;
}

.fs-s2-item-desc {
  font-size: var(--font-size-18);
  color: #666;
  line-height: 1.6;
}

/* ---- 46.2 Core Guarantee 轮播 (fs-s3) ---- */
.fs-s3 {
  padding: 0.4rem 0px;
}

.fs-s3-head {
  margin-bottom: 0.5rem;
}

.fs-s3-wrap {
  position: relative;
}

.fs-s3 .swiper {
  overflow: hidden;
}

.fs-s3 .swiper-slide {
  width: 5.4rem;
  height: auto;
  align-self: center;
}

.fs-s3-card {
  background: #eef5fb;
  border-radius: 0.12rem;
  padding: 0.3rem;
  -moz-transition: all 550ms;
  transition: all 550ms;
  -webkit-transition: all 550ms;
}

.fs-s3-card-title {
  font-size: var(--font-size-22);
  color: var(--color-text);
  font-family: var(--font-bold);
  line-height: 1.3;
  margin-bottom: 0.2rem;
}

.fs-s3-card-desc {
  font-size: var(--font-size-16);
  color: #666;
  line-height: 1.6;
  margin-bottom: 0.2rem;
}

.fs-s3-card-img {
  border-radius: 0.08rem;
  overflow: hidden;
}

.fs-s3-card-img img {
  height: 2rem;
  object-fit: cover;
}

.fs-s3 .swiper-slide-active .fs-s3-card,
.fs-s3-card--feature {
  background: #fff;
  box-shadow: 0 0.14rem 0.5rem rgba(0, 0, 0, 0.1);
}

.fs-s3 .swiper-slide-active .fs-s3-card-title {
  color: var(--color-link);
}

.fs-s3 .swiper-slide-active .fs-s3-card-img img {
  height: 2.9rem;
}

.fs-s3-ctrl {
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: center;
       justify-content: center;
  gap: 0.3rem;
  margin-top: 0.4rem;
}

.fs-s3-pagination {
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  gap: 0.1rem;
  width: auto;
}

.fs-s3-next {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  border: 1px solid #ccc;
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: center;
       justify-content: center;
  cursor: pointer;
  -moz-transition: all 550ms;
  transition: all 550ms;
  -webkit-transition: all 550ms;
}

.fs-s3-next i {
  font-size: var(--font-size-18);
  color: var(--color-text);
}

.fs-s3-next:hover {
  background: var(--color-link);
  border-color: var(--color-link);
}

.fs-s3-next:hover i {
  color: #fff;
}

/* ---- 46.3 R&D Innovation (fs-s4) ---- */
.fs-s4 {
  padding: 0.9rem 0;
  background: #eef5fb;
}

.fs-s4-inner {
  display: -moz-box;
  display: flex;
  gap: 0.6rem;
  -moz-box-align: center;
       align-items: center;
}

.fs-s4-left {
  -moz-box-flex: 0;
       flex: 0 0 30%;
}

.fs-s4-grid {
  -moz-box-flex: 1;
       flex: 1;
  display: -moz-box;
  display: flex;
  flex-wrap: wrap;
}

.fs-s4-cell {
  width: 50%;
  padding: 0.5rem;
  border-right: 1px solid #d6e3f0;
  border-bottom: 1px solid #d6e3f0;
}

.fs-s4-cell:nth-child(2n) {
  border-right: none;
}

.fs-s4-cell:nth-child(n+3) {
  border-bottom: none;
}

.fs-s4-cell-icon {
  display: block;
  width: 0.44rem;
  height: 0.44rem;
  margin-bottom: 0.5rem;
}

.fs-s4-cell-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.fs-s4-cell-title {
  font-size: var(--font-size-24);
  color: var(--color-text);
  font-family: var(--font-bold);
  margin-bottom: 0.16rem;
}

.fs-s4-cell-desc {
  font-size: var(--font-size-18);
  color: #666;
  line-height: 1.6;
}

.fs-s4-cell:hover {
  background: #fff;
  border-radius: 0.12rem;
  border-color: transparent;
  box-shadow: 0 0.14rem 0.5rem rgba(0, 0, 0, 0.08);
}

.fs-s4-cell:hover .fs-s4-cell-title {
  color: var(--color-link);
}

/* ---- 46.4 Strict Quality Control 步骤 (fs-s5) ---- */
.fs-s5 {
  padding: 0.9rem 0 1rem;
}

.fs-s5-head {
  margin-bottom: 0.5rem;
}

.fs-s5-item-no {
  display: -moz-inline-box;
  display: inline-flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: center;
       justify-content: center;
  width: max(0.92rem, 50px);
  height: max(0.44rem, 26px);
  border-radius: 0.06rem;
  font-size: var(--font-size-32);
  font-family: "wxsb", Arial, Helvetica, sans-serif;
  color: #666;
  margin-right: -0.14rem;
  margin-bottom: -0.1rem;
  border-radius: 0.2rem;
  border: max(0.01rem, 1px) solid #E4E4E4;
  box-shadow: 0 4px 36.7px -1px rgba(192, 192, 192, 0.35);
  margin-left: auto;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  position: absolute;
  right: 0.4rem;
  top: 0.1rem;
}

.fs-s5-item-pic {
  border-radius: 0.1rem;
  overflow: hidden;
  margin-bottom: 0.24rem;
  position: relative;
  z-index: 1;
  border-radius: 5rem;
  aspect-ratio: 344/226;
  -moz-transition: all 0.35s;
  transition: all 0.35s;
}

.fs-s5-item-desc {
  font-size: var(--font-size-18);
  color: #666;
  -moz-transition: all 0.35s;
  transition: all 0.35s;
}

.fs-s5 {
  overflow: hidden;
}

.fsstepswiper {
  overflow: visible;
  padding-top: 0.7rem;
}
.fsstepswiper .cg-s2-ctrl {
  margin: auto;
  margin-top: 0.8rem;
}
.fsstepswiper .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--color-primary);
}
.fsstepswiper .swiper-slide {
  border-right: max(0.01rem, 1px) solid #D7D7D7;
  position: relative;
}
.fsstepswiper .swiper-slide::before {
  content: "";
  position: absolute;
  left: 50%;
  -moz-transform: translateX(-50%);
   -ms-transform: translateX(-50%);
       transform: translateX(-50%);
  width: 70%;
  height: max(0.03rem, 3px);
  background: #fff;
  bottom: 0px;
}
.fsstepswiper .swiper-slide:hover {
  border-radius: 0.2rem;
  background: var(--color-primary);
}
.fsstepswiper .swiper-slide:hover .fs-s5-item-no {
  background: #FFF;
  box-shadow: 0 4px 36.7px -1px rgba(0, 124, 195, 0.35);
  color: var(--color-primary);
  right: 0px;
}
.fsstepswiper .swiper-slide:hover .fs-s5-item-desc {
  color: #fff;
  padding-left: 0.3rem;
  border-left: max(0.03rem, 3px) solid #fff;
}
.fsstepswiper .swiper-slide:hover .fs-s5-item-pic {
  border-radius: 0.1rem;
}
.fsstepswiper .swiper-slide:hover .fs-s5-item {
  border-radius: 0.2rem;
}
.fsstepswiper .swiper-slide:hover .fs-s5-item > img {
  opacity: 1;
}
.fsstepswiper .swiper-slide:hover .fs-s5-item-desc {
  font-family: "wxb", Arial, Helvetica, sans-serif;
  font-size: var(--font-size-20);
}

.white {
  color: #fff;
}

.fs-s5-item {
  height: 100%;
  display: -moz-box;
  display: flex;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
       flex-direction: column;
  position: relative;
  padding: 0.43rem 0.37rem;
}
.fs-s5-item > img {
  position: absolute;
  left: 0px;
  top: 0px;
  bottom: 0px;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0;
}
/* ---- 46.5 Production & Delivery (fs-s6) ---- */
.fs-s6 {
  padding: 0.9rem 0 1rem;
  position: relative;
  min-height: 7.6rem;
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: center;
       justify-content: center;
}
.fs-s6 > img {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0px;
  top: 0px;
  bottom: 0px;
  object-fit: cover;
}
.fs-s6::before {
  content: "";
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background: rgba(0, 140, 214, 0.81);
  z-index: 1;
}

.fs-s6-inner {
  display: -moz-box;
  display: flex;
  gap: 0.6rem;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: justify;
       justify-content: space-between;
  position: relative;
  z-index: 1;
}

.fs-s6-left {
  width: 30%;
}

.fs-s6-list {
  width: 54.375%;
}

.fs-s6-icon-k {
  width: max(0.72rem, 50px);
  height: max(0.72rem, 50px);
  flex-shrink: 0;
  position: relative;
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: center;
       justify-content: center;
}
.fs-s6-icon-k > img {
  position: absolute;
  left: 0px;
  width: 100%;
  height: 100%;
  object-fit: contain;
  -webkit-animation: xunhuan-rotate 3s linear infinite;
     -moz-animation: xunhuan-rotate 3s linear infinite;
          animation: xunhuan-rotate 3s linear infinite;
}

.fs-s6-item {
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  gap: 0.54rem;
  padding: 0.48rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}
.fs-s6-item:last-child {
  padding-bottom: 0px;
}
.fs-s6-item:first-child {
  padding-top: 0px;
}

.fs-s6-item:first-child {
  padding-top: 0;
}

.fs-s6-item:last-child {
  border-bottom: none;
}

.fs-s6-item-icon {
  width: max(0.54rem, 40px);
  height: max(0.54rem, 40px);
  border-radius: 50%;
  background-color: #fff;
  padding: 0.1rem;
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: center;
       justify-content: center;
  flex-shrink: 0;
}

.fs-s6-item-icon img {
  width: 0.4rem;
  height: 0.4rem;
  object-fit: contain;
}

.fs-s6-item-title {
  font-size: var(--font-size-28);
  color: #fff;
  font-family: "wxb", Arial, Helvetica, sans-serif;
  margin-bottom: 0.22rem;
}

.fs-s6-item-desc {
  font-size: var(--font-size-18);
  color: rgba(255, 255, 255, 0.85);
}

/* ---- 46.6 Cooperation Models (fs-s7) ---- */
.fs-s7 {
  padding: 0.9rem 0 1rem;
}

.fs-s7-head {
  display: -moz-box;
  display: flex;
  -moz-box-align: end;
       align-items: flex-end;
  -moz-box-pack: justify;
       justify-content: space-between;
  gap: 0.4rem;
  margin-bottom: 0.5rem;
}

.fs-s7-headleft {
  -moz-box-flex: 1;
       flex: 1;
  min-width: 0;
}

.fs-s7-list {
  display: -moz-box;
  display: flex;
  gap: 0.3rem;
  -moz-box-align: stretch;
       align-items: stretch;
}

.fs-s7-item {
  position: relative;
  -moz-box-flex: 1;
       flex: 1;
  min-height: 4.13rem;
  border-radius: 0.12rem;
  overflow: hidden;
  display: -moz-box;
  display: flex;
}

.fs-s7-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fs-s7-item-mask {
  position: absolute;
  inset: 0;
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.6));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.6));
}

.fs-s7-item-icon {
  position: absolute;
  top: 0.32rem;
  right: 0.32rem;
  width: 0.56rem;
  height: 0.56rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.6);
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: center;
       justify-content: center;
  z-index: 2;
}

.fs-s7-item-icon i {
  color: #fff;
  font-size: var(--font-size-20);
}

.fs-s7-item-text {
  position: relative;
  z-index: 2;
  margin-top: auto;
  padding: 0.32rem;
}

.fs-s7-item-title {
  font-size: var(--font-size-26);
  color: #fff;
  font-family: var(--font-bold);
  line-height: 1.3;
}

.fs-s7-item-desc {
  font-size: var(--font-size-16);
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.6;
  margin-top: 0.16rem;
}

.fs-s7-item--active {
  background: var(--color-link);
  -moz-box-align: start;
       align-items: flex-start;
}

.fs-s7-item--active .fs-s7-item-text {
  margin-top: 0;
  padding-top: 1rem;
}

/* ---- 46.7 Factory FAQ (fs-s8) ---- */
.fs-s8 {
  padding: 0.9rem 0 1rem;
}

.fs-s8-head {
  margin-bottom: 0.3rem;
}

.fs-s8 .fs-title {
  font-size: 0.5rem;
  margin-bottom: 0;
}

/* ---- 46.8 Inquiry Form (fs-s9) ---- */
.fs-s9 {
  padding: 0.9rem 0 1rem;
  background: #f5f8fb;
}

.fs-s9-inner {
  display: -moz-box;
  display: flex;
  gap: 0.6rem;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: justify;
       justify-content: space-between;
}

.fs-s9-left {
  width: 45.75%;
}

.fs-s9-title {
  font-size: 0.4rem;
  color: var(--color-text);
  font-family: var(--font-bold);
  line-height: 1.3;
  margin-bottom: 0.24rem;
}

.fs-s9-title .b {
  color: var(--color-link);
}

.fs-s9-desc {
  font-size: var(--font-size-18);
  color: #666;
  line-height: 1.6;
  padding-left: 0.24rem;
  position: relative;
}

.fs-s9-desc::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.12rem;
  width: 0.08rem;
  height: 0.08rem;
  border-radius: 50%;
  background: var(--color-text);
}

.fs-s9-right {
  width: 52.875%;
  min-width: 0;
  background: #fff;
  border-radius: 0.16rem;
  box-shadow: 0 0.12rem 0.5rem rgba(0, 0, 0, 0.08);
  padding: 0.4rem;
}

.fs-s9-grid {
  display: -moz-box;
  display: flex;
  flex-wrap: wrap;
  gap: 0.24rem 0.3rem;
}

.fs-s9-grid > p {
  width: -moz-calc(50% - 0.15rem);
  width: calc(50% - 0.15rem);
  margin: 0;
  position: relative;
}

.fs-s9-grid input {
  width: 100%;
  height: 0.6rem;
  background: #f4f5f7;
  border: 1px solid transparent;
  border-radius: 0.06rem;
  padding: 0 0.24rem;
  font-size: var(--font-size-16);
  color: var(--color-text);
  -moz-transition: border-color 300ms;
  transition: border-color 300ms;
  -webkit-transition: border-color 300ms;
}

.fs-s9-grid input:focus {
  border-color: var(--color-link);
  background: #fff;
}

.fs-s9-check {
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  flex-wrap: wrap;
  gap: 0.08rem;
  margin-top: 0.24rem;
  font-size: var(--font-size-16);
  color: #666;
}

.fs-s9-check a {
  color: var(--color-link);
}

.fs-s9 .submit-div {
  margin-top: 0.1rem;
}

/* ---- 46.9 响应式 ---- */
@media screen and (max-width: 991px) {
  .fs-s2,
  .fs-s3,
  .fs-s4,
  .fs-s5,
  .fs-s6,
  .fs-s7,
  .fs-s8,
  .fs-s9 {
    padding-top: 0.6rem;
    padding-bottom: 0.6rem;
  }
  .fs-s2-item {
    width: -moz-calc((100% - 0.5rem) / 2);
    width: calc((100% - 0.5rem) / 2);
  }
  .fs-s3 .swiper-slide {
    width: 60%;
  }
  .fs-s4-inner {
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
         flex-direction: column;
    -moz-box-align: stretch;
         align-items: stretch;
    gap: 0.4rem;
  }
  .fs-s4-left {
    -moz-box-flex: 0;
         flex: none;
  }
  .fs-s5 .swiper-slide {
    width: 48%;
  }
  .fs-s6-inner {
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
         flex-direction: column;
    -moz-box-align: stretch;
         align-items: stretch;
    gap: 0.4rem;
  }
  .fs-s6-left,
  .fs-s6-list {
    width: 100%;
  }
  .fs-s7-list {
    flex-wrap: wrap;
  }
  .fs-s7-item {
    -moz-box-flex: 0;
         flex: 0 0 calc(50% - 0.15rem);
  }
  .fs-s9-inner {
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
         flex-direction: column;
    -moz-box-align: stretch;
         align-items: stretch;
    gap: 0.4rem;
  }
  .fs-s9-left,
  .fs-s9-right {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .fs-title {
    font-size: var(--font-size-32);
  }
  .fs-s8 .fs-title {
    font-size: var(--font-size-32);
  }
  .fs-s9-title {
    font-size: var(--font-size-28);
  }
  .fs-s2-head,
  .fs-s7-head {
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
         flex-direction: column;
    -moz-box-align: start;
         align-items: flex-start;
    gap: 0.24rem;
  }
  .fs-s2-item {
    width: 100%;
  }
  .fs-s3 .swiper-slide {
    width: 80%;
  }
  .fs-s4-cell {
    width: 100%;
    border-right: none;
    padding: 0.36rem 0;
  }
  .fs-s4-cell:nth-child(3) {
    border-bottom: 1px solid #d6e3f0;
  }
  .fs-s5 .swiper-slide {
    width: 78%;
  }
  .fs-s7-item {
    -moz-box-flex: 0;
         flex: 0 0 100%;
  }
  .fs-s9-right {
    padding: 0.36rem;
  }
  .fs-s9-grid > p,
  .fs-s9-check {
    width: 100%;
  }
  .fs-s9-grid input {
    height: 0.7rem;
  }
}
/* ========================================
   46. 工厂实力页 - Factory Strength (fs) - 结束
   ======================================== */
/* ========================================
   47. 施工指南页 - Construction Guide (cg) - 开始
   ======================================== */
/* ---- 47.1 Pre-Installation Preparation 轮播 (cg-s2) ---- */
.cg-s2 {
  padding: 0.9rem 0;
  background: -moz-linear-gradient(92deg, rgba(0, 140, 214, 0.07) 5.78%, rgba(0, 140, 214, 0) 89.58%);
  background: linear-gradient(358deg, rgba(0, 140, 214, 0.07) 5.78%, rgba(0, 140, 214, 0) 89.58%);
}

.cg-s2-inner {
  display: -moz-box;
  display: flex;
  gap: 0.6rem;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: justify;
       justify-content: space-between;
}

.cg-s2-left {
  width: 4.7rem;
}

.cg-s2-right {
  width: 12rem;
  min-width: 0;
  position: relative;
  overflow: hidden;
}
.cg-s2-right .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: transparent;
}

.cg-s2 .swiper {
  overflow: visible;
  padding: 0.24rem;
  padding-right: 0px;
  padding-bottom: 0px;
}

.cg-s2 .swiper-slide {
  min-height: 4.92rem;
}
.cg-s2 .swiper-slide:hover .cg-s2-card {
  background: var(--color-link);
  box-shadow: 0 0.04rem 0.28rem 0 rgba(0, 140, 214, 0.36);
}
.cg-s2 .swiper-slide:hover .cg-s2-card > img {
  opacity: 1;
}
.cg-s2 .swiper-slide:hover .cg-s2-card-title {
  color: #fff;
}
.cg-s2 .swiper-slide:hover .cg-s2-card-desc {
  color: #fff;
}
.cg-s2 .swiper-slide:hover .cg-s2-card-icon {
  background: #fff;
}
.cg-s2 .swiper-slide:hover .cg-s2-card-icon img {
  display: none;
}
.cg-s2 .swiper-slide:hover .cg-s2-card-icon img:nth-child(2) {
  display: block;
}

.cg-s2-card-bottom {
  width: 100%;
  z-index: 2;
}

.cg-s2-card {
  height: 100%;
  display: -moz-box;
  display: flex;
  -moz-box-pack: justify;
       justify-content: space-between;
  flex-wrap: wrap;
  align-content: space-between;
  background: #fff;
  border-radius: 0.12rem;
  padding: 0.4rem 0.32rem;
  box-shadow: 0 0.04rem 0.28rem 0 rgba(0, 0, 0, 0.16);
  -moz-transition: all 550ms;
  transition: all 550ms;
  -webkit-transition: all 550ms;
  position: relative;
}
.cg-s2-card > img {
  position: absolute;
  top: 0px;
  right: 0px;
  opacity: 0;
}

.cg-s2-card-icon {
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: center;
       justify-content: center;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: var(--color-link);
  margin-bottom: 0.3rem;
}

.cg-s2-card-icon img {
  width: 0.36rem;
  height: 0.36rem;
  object-fit: contain;
  display: none;
}
.cg-s2-card-icon img:nth-child(1) {
  display: block;
}

.cg-s2-card-title {
  font-size: var(--font-size-22);
  color: var(--color-text);
  font-family: var(--font-bold);
  margin-bottom: 0.16rem;
}

.cg-s2-card-desc {
  font-size: var(--font-size-16);
  color: #666;
  line-height: 1.6;
}

.cg-s2-ctrl {
  width: 10.4rem;
  margin-left: 0.4rem;
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  gap: 0.4rem;
  margin-top: 0.4rem;
}

.cg-s2-bar {
  position: relative;
  -moz-box-flex: 1;
       flex: 1;
  height: 4px;
  border-radius: 2px;
  background: #dbe4ee;
  overflow: hidden;
}

.cg-s2-bar .swiper-scrollbar-drag {
  background: var(--color-link);
  border-radius: 2px;
}

.cg-s2-nav {
  display: -moz-box;
  display: flex;
  gap: 0.16rem;
  position: relative;
}
.cg-s2-nav .swiper-button-prev,
.cg-s2-nav .swiper-button-next {
  margin: 0px;
  position: unset;
  width: 0.7rem;
  padding: 0.2rem;
  flex-shrink: 0;
  border: 1px solid #222;
  border-radius: 0.42rem;
}
.cg-s2-nav .swiper-button-prev i,
.cg-s2-nav .swiper-button-next i {
  font-size: var(--font-size-30);
  color: #222;
}
.cg-s2-nav .swiper-button-prev::after,
.cg-s2-nav .swiper-button-next::after {
  display: none;
}
.cg-s2-nav .swiper-button-prev:hover,
.cg-s2-nav .swiper-button-next:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
}
.cg-s2-nav .swiper-button-prev:hover i,
.cg-s2-nav .swiper-button-next:hover i {
  color: #fff;
}

@media screen and (max-width: 991px) {
  .left-1600 {
    margin-right: 5%;
  }
  .cg-s2-left,
  .cg-s2-right,
  .cg-s2-ctrl {
    width: 100%;
    margin-left: 0px;
  }
  .cg-s2 .swiper {
    padding-left: 10px;
    padding-right: 10px;
  }
  .cg-s2-inner {
    flex-wrap: wrap;
  }
}
/* ---- 47.2 How to Use 滚动钉住逐步展开 (cg-s3) ---- */
.cg-s3 {
  background: #fff;
  height: 100vh;
  overflow: hidden;
  z-index: 2222;
}

.cg-s3-inner {
  display: -moz-box;
  display: flex;
  -moz-box-align: stretch;
       align-items: stretch;
  height: 100%;
  position: relative;
}

.cg-s3-left {
  -moz-box-flex: 0;
       flex: 0 0 auto;
  width: 7.2rem;
  align-self: center;
  padding: 0.6rem 0.6rem 0.6rem 8.04%;
  z-index: 2;
}

.cg-s3-left .index-system-btn {
  margin-top: 0.5rem;
}

.cg-s3-cols {
  -moz-box-flex: 1;
       flex: 1;
  min-width: 0;
  display: -moz-box;
  display: flex;
  -moz-box-pack: end;
       justify-content: flex-end;
  top: 0px;
  right: 0px;
  position: absolute;
  width: 100%;
  height: 100%;
  -moz-transition: flex 0.5s ease-in-out, -moz-box-flex 0.5s ease-in-out;
  transition: flex 0.5s ease-in-out;
  transition: flex 0.5s ease-in-out, -moz-box-flex 0.5s ease-in-out;
}

.cg-s3-col {
  position: relative;
  -moz-box-flex: 1;
       flex: 1;
  max-width: 1.33rem;
  overflow: hidden;
  z-index: 3;
}

.cg-s3-col:nth-child(1) {
  background: #6cc1ee;
}

.cg-s3-col:nth-child(2) {
  background: #4fb0e8;
}

.cg-s3-col:nth-child(3) {
  background: #36a0df;
}

.cg-s3-col:nth-child(4) {
  background: #1f8fd4;
}

.cg-s3-col:nth-child(5) {
  background: #1a7fc0;
}

.cg-s3-col:nth-child(6) {
  background: #146fac;
}

.cg-s3-col.active {
  -moz-box-flex: 6;
       flex: 6;
  max-width: unset;
  background: #008CD6;
  z-index: 3;
}

.cg-s3-col.active img,
.cg-s3-col.active::after {
  opacity: 1;
}

.cg-s3-col-no {
  position: absolute;
  top: 0.4rem;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 2;
  font-size: var(--font-size-24);
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--font-bold);
  -moz-transition: all 550ms;
  transition: all 550ms;
  -webkit-transition: all 550ms;
}

.cuoweitop {
  margin-top: 50%;
}

.cg-s3-col-title {
  position: absolute;
  top: 1.1rem;
  left: 50%;
  -moz-transform: translateX(-50%);
   -ms-transform: translateX(-50%);
       transform: translateX(-50%);
  z-index: 2;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  font-size: var(--font-size-24);
  color: #fff;
  font-family: var(--font-bold);
  line-height: 1.2;
  white-space: nowrap;
  -moz-transition: opacity 300ms;
  transition: opacity 300ms;
  -webkit-transition: opacity 300ms;
}

/* 展开态：编号与标题移到底部，标题转横排 */
.cg-s3-col.active .cg-s3-col-no {
  left: 0.4rem;
  right: auto;
  text-align: left;
}

.cg-s3-col.active .cg-s3-col-title {
  left: 0.4rem;
  -moz-transform: none;
   -ms-transform: none;
       transform: none;
  font-size: var(--font-size-28);
}

.cg-s3-col.active .cg-s3-neiorng {
  opacity: 1;
}

.cg-s3-neiorng {
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: center;
       justify-content: center;
  gap: 0.4rem;
  width: 90%;
  margin-left: auto;
  right: 0px;
  height: 100%;
  opacity: 0;
}

.cg-s3-neirong-left {
  width: 50%;
}

.cg-s3-neirong-right {
  width: 6.1rem;
  overflow: hidden;
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: justify;
       justify-content: space-between;
  gap: 0.24rem;
  margin-right: 0.24rem;
}

.cg-s3-neirong-img {
  box-shadow: 0 0 16px 0 rgba(255, 255, 255, 0.8);
  border-radius: 0.1rem;
}
.cg-s3-neirong-img:hover img {
  -moz-transform: scale(1.05);
   -ms-transform: scale(1.05);
       transform: scale(1.05);
}

.cg-s3-neirong-title {
  font-size: 0.64rem;
  font-family: "wxsb", Arial, Helvetica, sans-serif;
  line-height: 1;
  color: #fff;
  margin-bottom: 0.24rem;
}

.cg-s3-neirong-desc {
  font-size: var(--font-size-24);
  color: #fff;
}

/* ---- 47.3 Key Precautions (cg-s4) ---- */
.cg-s4 {
  padding: 0.9rem 0 1rem;
}

.cg-s4-grid {
  display: -moz-box;
  display: flex;
  gap: 0.3rem;
  -moz-box-align: stretch;
       align-items: stretch;
}

.cg-s4-col {
  -moz-box-flex: 1;
       flex: 1;
  display: -moz-box;
  display: flex;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
       flex-direction: column;
  gap: 0.3rem;
}

.cg-s4-mid {
  -moz-box-flex: 0;
       flex: 0 0 32%;
  border-radius: 0.12rem;
  overflow: hidden;
}

.cg-s4-mid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cg-s4-mid img:hover {
  -moz-transform: scale(1.1);
   -ms-transform: scale(1.1);
       transform: scale(1.1);
}

.cg-s4-item {
  -moz-box-flex: 1;
       flex: 1;
  border-radius: 0.12rem;
  padding: 0.4rem;
  border: 1px solid #008CD6;
}

.cg-s4-item-no {
  display: block;
  font-size: var(--font-size-20);
  margin-bottom: 0.1rem;
}

.cg-s4-item-text {
  font-size: var(--font-size-26);
  color: var(--color-text);
  line-height: 1.2;
  font-family: "wxsb", Arial, Helvetica, sans-serif;
}

.cg-s4-item--blue {
  background: var(--color-link);
  border-color: transparent;
}

.cg-s4-item--blue .cg-s4-item-no {
  color: rgba(255, 255, 255, 0.8);
}

.cg-s4-item--blue .cg-s4-item-text {
  color: #fff;
}

@media screen and (max-width: 991px) {
  .cg-s4-grid {
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
         flex-direction: column;
    gap: 0.2rem;
  }
  .cg-s4-mid {
    -moz-box-ordinal-group: 0;
         order: -1;
    -moz-box-flex: 0;
         flex: none;
    height: 4rem;
    border-radius: 0.12rem;
  }
  .cg-s4-col {
    gap: 0.2rem;
  }
  .cg-s4-item {
    padding: 0.24rem 0.3rem;
  }
  .cg-s4-item-text {
    font-size: var(--font-size-24);
  }
}
@media screen and (max-width: 768px) {
  .cg-s3-neirong-title {
    font-size: 26px;
  }
  .cg-s3-neiorng {
    display: none;
  }
  .cg-s3-col.active .cg-s3-neiorng {
    width: 100%;
    padding-top: 60px;
    padding-bottom: 20px;
    display: -moz-box;
    display: flex;
    padding-left: 5%;
    padding-right: 5%;
  }
  .cg-s4-mid {
    height: 3rem;
  }
  .cg-s4-item {
    padding: 0.2rem 0.24rem;
  }
  .cg-s4-item-text {
    font-size: var(--font-size-22);
  }
  .cg-s3-neiorng {
    flex-wrap: wrap;
  }
  .cg-s3-neirong-left {
    width: 100%;
  }
  .cg-s3-neirong-right {
    width: 100%;
  }
  .cuoweitop {
    margin-top: 0px;
  }
}
/* ---- 47.4 Dedicated Technical Support (cg-s5) ---- */
.cg-s5 {
  padding: 0.9rem 0 1rem;
  background: #f5f8fb;
}

.cg-s5-inner {
  display: -moz-box;
  display: flex;
  gap: 0.6rem;
  -moz-box-align: start;
       align-items: flex-start;
  -moz-box-pack: justify;
       justify-content: space-between;
}

.mag-top80 {
  margin-top: 1rem;
}

.cg-s5-left {
  width: 42.75%;
  position: -webkit-sticky;
  position: sticky;
  top: 1rem;
  z-index: 1;
}

.cg-s5-left .ss-btn {
  margin-top: 0.5rem;
}

.cg-s5-right {
  width: 50.75%;
  gap: 0.3rem;
  position: relative;
}

.cg-s5-card {
  position: relative;
  border-radius: 0.12rem;
  overflow: hidden;
  aspect-ratio: 812/463;
  position: -webkit-sticky;
  position: sticky;
  z-index: 2;
  top: 0px;
}
.cg-s5-card img {
  width: 100%;
  height: 100%;
}

.cg-s5-card-mask {
  position: absolute;
  bottom: 0px;
  inset: 0;
  width: 100%;
  background: -moz-linear-gradient(bottom, rgba(0, 140, 214, 0.8) 0%, rgba(0, 140, 214, 0) 60%);
  background: linear-gradient(0deg, rgba(0, 140, 214, 0.8) 0%, rgba(0, 140, 214, 0) 60%);
}

.cg-s5-card-text {
  position: absolute;
  left: 0.4rem;
  right: 0.4rem;
  bottom: 0.4rem;
  z-index: 2;
}

.cg-s5-card-title {
  font-size: var(--font-size-24);
  color: #fff;
  font-family: var(--font-bold);
  margin-bottom: 0.14rem;
}

.cg-s5-card-desc {
  color: #fff;
}

@media screen and (max-width: 991px) {
  .cg-s5-left {
    position: unset;
  }
  .mag-top80 {
    margin-top: 20px;
  }
  .cg-s5-inner {
    flex-wrap: wrap;
  }
  .cg-s5-left,
  .cg-s5-right {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .cg-s5-card {
    aspect-ratio: unset;
    height: 240px;
  }
}
/* ---- 47.5 Why Choose DIMERA (cg-s6) ---- */
.cg-s6 {
  padding: 0.9rem 0 1rem;
}

.cg-s6-list {
  display: -moz-box;
  display: flex;
  border-top: 1px solid #e5ebf2;
  border-bottom: 1px solid #e5ebf2;
  background: -moz-linear-gradient(bottom, rgba(0, 140, 214, 0.03) 0%, rgba(0, 140, 214, 0) 100%);
  background: linear-gradient(0deg, rgba(0, 140, 214, 0.03) 0%, rgba(0, 140, 214, 0) 100%);
}

.cg-s6-item {
  -moz-box-flex: 1;
       flex: 1;
  padding: 0.5rem 0.3rem;
  position: relative;
  -moz-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.cg-s6-item::before {
  content: "";
  position: absolute;
  right: 0px;
  top: -7%;
  width: max(0.01rem, 1px);
  height: 114%;
  background: #e5ebf2;
}
.cg-s6-item:first-child::after {
  content: "";
  position: absolute;
  left: 0px;
  top: -7%;
  width: max(0.01rem, 1px);
  height: 114%;
  background: #e5ebf2;
}
.cg-s6-item:hover {
  background: rgba(0, 140, 214, 0.04);
}
.cg-s6-item:hover .cg-s6-item-icon {
  background: #008CD6;
  -moz-transform: scale(1.1);
   -ms-transform: scale(1.1);
       transform: scale(1.1);
}
.cg-s6-item:hover .cg-s6-item-icon img {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
.cg-s6-item:hover .cg-s6-item-title {
  color: var(--color-primary);
}

.cg-s6-item-icon {
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: center;
       justify-content: center;
  width: max(0.78rem, 40px);
  height: max(0.78rem, 40px);
  border-radius: 0.12rem;
  background: #eaf4fc;
  margin-bottom: 0.4rem;
  padding: 0.1rem;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}

.cg-s6-item-icon img {
  width: 100%;
  height: 100%;
}

.cg-s6-item-title {
  font-size: var(--font-size-24);
  color: var(--color-text);
  font-family: var(--font-bold);
  margin-bottom: 0.16rem;
}

@media screen and (max-width: 991px) {
  .cg-s6-item::before,
  .cg-s6-item:first-child::after {
    height: 100%;
    top: 0px;
  }
}
@media screen and (max-width: 768px) {
  .cg-s6-list {
    flex-wrap: wrap;
    -moz-box-pack: justify;
         justify-content: space-between;
  }
  .cg-s6-item {
    padding: 20px;
    -moz-box-flex: unset;
         flex: unset;
    width: 100%;
    border: 1px solid #e5ebf2;
  }
}
/* ---- 47.6 FAQ (cg-s7) ---- */
.cg-s7 {
  padding: 0.9rem 0 1rem;
}

/* ---- 47.7 Inquiry Form (cg-s8) ---- */
.cg-s8 {
  background: -moz-linear-gradient(top, transparent 0%, transparent 20%, #F0F9FF 20%, rgba(240, 249, 255, 0) 100%);
  background: linear-gradient(to bottom, transparent 0%, transparent 20%, #F0F9FF 20%, rgba(240, 249, 255, 0) 100%);
  margin-bottom: -0.4rem;
  z-index: 2;
  position: relative;
}

.cg-s8-inner {
  display: -moz-box;
  display: flex;
  gap: 0.6rem;
  -moz-box-align: center;
       align-items: center;
}

.cg-s8-left {
  -moz-box-flex: 0;
       flex: 0 0 42%;
}

.cg-s8-title {
  font-size: var(--font-size-38);
  color: var(--color-text);
  font-family: var(--font-bold);
  line-height: 1.3;
  margin-bottom: 0.24rem;
}
.cg-s8-title em {
  font-style: normal;
  color: var(--color-primary);
}

.cg-s8-desc {
  font-size: var(--font-size-18);
  color: #666;
  padding-left: 0.24rem;
  font-weight: 600;
  position: relative;
}

.cg-s8-desc::before {
  content: "";
  position: absolute;
  left: 0.04rem;
  top: 0.1rem;
  width: max(0.04rem, 4px);
  height: max(0.04rem, 4px);
  border-radius: 50%;
  background: #666;
}

.cg-s8-note {
  color: #666;
  font-size: var(--font-size-16);
  margin-bottom: 0.14rem;
}

/* ---- 47.8 响应式 ---- */
@media screen and (max-width: 1200px) {
  .cg-s3-left {
    width: 6rem;
  }
}
@media screen and (max-width: 991px) {
  .cg-s3-inner {
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
         flex-direction: column;
    min-height: 0;
  }
  .cg-s3-left {
    width: 55%;
    align-self: stretch;
    padding: 0.6rem 8.04%;
  }
}
@media screen and (max-width: 768px) {
  .cg-s3 {
    height: auto;
  }
  .cg-s3-left {
    width: 100%;
    padding-left: 5%;
    padding-right: 5%;
  }
  .cg-s3-cols {
    height: auto;
    position: unset;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
         flex-direction: column;
  }
  .cg-s3-col {
    max-width: unset;
    min-height: 50px;
  }
  .cg-s3-col.active {
    -moz-box-flex: 0;
         flex: none;
    min-height: 4.2rem;
  }
  .cg-s3-col-no {
    top: 0.2rem;
    left: 0.4rem;
    right: auto;
    text-align: left;
  }
  .cg-s3-col-title {
    top: 0.2rem;
    left: 1.1rem;
    right: 0.4rem;
    -moz-transform: none;
     -ms-transform: none;
         transform: none;
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
    white-space: normal;
  }
  .cg-s3-col.active .cg-s3-col-no {
    bottom: auto;
    top: 0.3rem;
  }
  .cg-s3-col.active .cg-s3-col-title {
    bottom: auto;
    top: 0.3rem;
    left: 1.1rem;
    font-size: var(--font-size-22);
  }
}
@media screen and (max-width: 768px) {
  .cg-s8 {
    padding-top: 0.4rem;
    background: -moz-linear-gradient(top, transparent 0%, transparent 0%, #F0F9FF 0%, rgba(240, 249, 255, 0) 100%);
    background: linear-gradient(to bottom, transparent 0%, transparent 0%, #F0F9FF 0%, rgba(240, 249, 255, 0) 100%);
  }
  .cg-s8-inner {
    flex-wrap: wrap;
  }
  .cg-s8-left {
    width: 100%;
    -moz-box-flex: unset;
         flex: unset;
  }
  .ss-s1-right {
    width: 100%;
  }
}
/* ============================================
   Product Center - Left/Right Layout
   ============================================ */
/* Product Center Section */
.pc-section {
  padding: 0.6rem 0px;
}

/* Main Layout */
.pc-layout {
  display: -moz-box;
  display: flex;
  gap: 0.3rem;
  -moz-box-align: start;
       align-items: flex-start;
}

/* Left Sidebar */
.pc-sidebar {
  width: max(3.5rem, 250px);
  flex-shrink: 0;
  background: #fff;
  border-radius: 0.1rem;
  overflow: hidden;
  border: 1px solid #e8e8e8;
}

.pc-sidebar-head {
  padding: max(0.16rem, 12px) 0.24rem;
  background: var(--color-primary);
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: justify;
       justify-content: space-between;
}

.pc-sidebar-title {
  font-size: var(--font-size-24);
  color: #fff;
  font-family: var(--font-bold);
  -moz-box-flex: 1;
       flex: 1;
}

.pc-sidebar-toggle {
  display: none;
  background: none;
  border: none;
  padding: 0.1rem;
  cursor: pointer;
  margin-left: 0.1rem;
}

.pc-toggle-icon {
  display: block;
  width: 0.24rem;
  height: 0.02rem;
  background: #fff;
  position: relative;
  -moz-transition: background 0.3s ease;
  transition: background 0.3s ease;
}

.pc-toggle-icon::before,
.pc-toggle-icon::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #fff;
  -moz-transition: transform 0.3s ease, -moz-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -moz-transform 0.3s ease;
}

.pc-toggle-icon::before {
  top: -0.08rem;
}

.pc-toggle-icon::after {
  top: 0.08rem;
}

.pc-sidebar.expanded .pc-toggle-icon {
  background: transparent;
}

.pc-sidebar.expanded .pc-toggle-icon::before {
  -moz-transform: rotate(45deg);
   -ms-transform: rotate(45deg);
       transform: rotate(45deg);
  top: 0;
}

.pc-sidebar.expanded .pc-toggle-icon::after {
  -moz-transform: rotate(-45deg);
   -ms-transform: rotate(-45deg);
       transform: rotate(-45deg);
  top: 0;
}

/* Navigation */
.pc-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pc-nav-item {
  border-bottom: 1px solid #f0f0f0;
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  flex-wrap: wrap;
}

.pc-nav-item:last-child {
  border-bottom: none;
}

.pc-nav-item > a {
  -moz-box-flex: 1;
       flex: 1;
  min-width: 0;
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  padding: 0.16rem 0.24rem;
  padding-right: max(0.3rem, 30px);
  font-size: var(--font-size-18);
  color: var(--color-text);
  text-decoration: none;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
}

.pc-nav-item > a:hover,
.pc-nav-item.active > a {
  color: var(--color-primary);
  background: rgba(0, 140, 214, 0.04);
}

.pc-nav-text {
  -moz-box-flex: 1;
       flex: 1;
}

.pc-nav-toggle {
  display: -moz-inline-box;
  display: inline-flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: center;
       justify-content: center;
  width: max(0.22rem, 20px);
  height: max(0.22rem, 20px);
  margin-right: 0.12rem;
  color: #666;
  cursor: pointer;
  border-radius: 0.08rem;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
  flex-shrink: 0;
  position: absolute;
  right: 0px;
  z-index: 2;
}
.pc-nav-toggle:hover {
  color: #fff;
  background: var(--color-primary);
}
.pc-nav-toggle svg {
  width: max(0.18rem, 18px);
  height: max(0.18rem, 18px);
  -moz-transition: transform 0.3s ease, -moz-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -moz-transform 0.3s ease;
  pointer-events: none;
}

.pc-nav-item.active .pc-nav-toggle {
  color: #fff;
  background: var(--color-primary);
}

.pc-nav-item.active .pc-nav-toggle svg {
  -moz-transform: rotate(180deg);
   -ms-transform: rotate(180deg);
       transform: rotate(180deg);
}

/* Sub Navigation */
.pc-nav-sub {
  list-style: none;
  padding: 0;
  margin: 0;
  display: none;
  background: #fafafa;
  width: 100%;
}

.pc-nav-item.active .pc-nav-sub {
  display: block;
}

.pc-nav-sub-item a {
  display: block;
  padding: 0.12rem 0.24rem 0.12rem 0.4rem;
  font-size: var(--font-size-16);
  color: #666;
  text-decoration: none;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.pc-nav-sub-item a:hover,
.pc-nav-sub-item.active a {
  color: var(--color-primary);
  background: rgba(0, 140, 214, 0.06);
}

/* Contact Card */
.pc-contact-card {
  padding: 0.24rem;
  background: #f8f9fa;
  border-top: 1px solid #e8e8e8;
  text-align: center;
}

.pc-contact-icon {
  display: -moz-inline-box;
  display: inline-flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: center;
       justify-content: center;
  width: 0.56rem;
  height: 0.56rem;
  background: var(--color-primary);
  border-radius: 50%;
  margin-bottom: 0.12rem;
}

.pc-contact-icon i {
  font-size: 0.24rem;
  color: #fff;
}

.pc-contact-title {
  font-size: var(--font-size-18);
  color: var(--color-text);
  font-weight: 600;
  margin-bottom: 0.04rem;
}

.pc-contact-phone {
  font-size: var(--font-size-20);
  color: var(--color-primary);
  font-weight: 700;
  margin-bottom: 0.16rem;
}

/* 多号码时每个 span 独占一行 */
.pc-contact-phone span {
  display: block;
}

.pc-contact-btn {
  display: inline-block;
  padding: 0.08rem 0.24rem;
  font-size: var(--font-size-16);
  color: #fff;
  background: var(--color-primary);
  border-radius: 0.4rem;
  text-decoration: none;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.pc-contact-btn:hover {
  background: var(--color-vi);
}

/* Right Content */
.pc-content {
  -moz-box-flex: 1;
       flex: 1;
  min-width: 0;
}

.pc-content-head {
  margin-bottom: 0.3rem;
}

.pc-content-title {
  font-size: var(--font-size-32);
  color: var(--color-text);
  font-family: var(--font-bold);
  margin-bottom: 0.08rem;
}

.pc-content-desc {
  font-size: var(--font-size-20);
  color: #666;
}

/* Product Grid */
.pc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.24rem;
}

/* Product Card */
.pc-card {
  width: 100%;
  background: #fff;
  border-radius: 0.1rem;
  overflow: hidden;
  border: 1px solid #e8e8e8;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
  height: 100%;
  display: -moz-box;
  display: flex;
  flex-wrap: wrap;
  align-content: space-between;
}

.pc-card:hover {
  -moz-transform: translateY(-0.04rem);
   -ms-transform: translateY(-0.04rem);
       transform: translateY(-0.04rem);
  box-shadow: 0 0.08rem 0.24rem rgba(0, 0, 0, 0.08);
}

.pc-card-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #fff;
}

.pc-card-img img {
  object-fit: contain;
  -moz-transition: transform 0.4s ease, -moz-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -moz-transform 0.4s ease;
}

.pc-card:hover .pc-card-img img {
  -moz-transform: scale(1.05);
   -ms-transform: scale(1.05);
       transform: scale(1.05);
}

.pc-card-badge {
  position: absolute;
  top: 0.12rem;
  left: 0.12rem;
  padding: 0.04rem 0.12rem;
  font-size: var(--font-size-12);
  color: #fff;
  background: var(--color-vi);
  border-radius: 0.04rem;
}

.pc-card-body {
  padding: 0.2rem;
  padding-bottom: 0px;
  display: -moz-box;
  display: flex;
  flex-wrap: wrap;
  align-content: space-between;
}

.pc-card-title {
  font-size: var(--font-size-22);
  color: var(--color-text);
  font-family: var(--font-bold);
  margin-bottom: 0.08rem;
  -moz-transition: color 0.3s ease;
  transition: color 0.3s ease;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.pc-card:hover .pc-card-title {
  color: var(--color-primary);
}

.pc-card-spec {
  font-size: var(--font-size-16);
  color: #999;
  margin-bottom: 0.12rem;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  width: 100%;
}

.pc-card-text {
  width: 100%;
  color: #666;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 0.16rem;
}

.pc-card-footer {
  display: -moz-box;
  display: flex;
  gap: 0.12rem;
  padding: 0px 0.2rem;
  margin-bottom: 0.2rem;
}
.pc-card-footer a,
.pc-card-footer span,
.pc-card-footer p,
.pc-card-footer .pc-card-inquiry {
  padding: max(0.06rem, 4px) max(0.1rem, 8px);
  border-radius: 0.5rem;
  display: -moz-inline-box;
  display: inline-flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: center;
       justify-content: center;
  cursor: pointer;
}

.pc-card-link {
  font-size: var(--font-size-16);
  color: var(--color-primary);
  background: rgba(0, 140, 214, 0.06);
}

.pc-card-link:hover {
  background: rgba(0, 140, 214, 0.12);
}

.pc-card-inquiry {
  font-size: var(--font-size-14);
  color: #fff;
  background: var(--color-primary);
}

.pc-card-inquiry:hover {
  background: #0073b8;
}

/* ============================================
   Product Center Responsive
   ============================================ */
@media screen and (max-width: 991px) {
  .pc-layout {
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
         flex-direction: column;
  }
  .pc-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pc-sidebar {
    width: 100%;
    position: relative;
  }
  .pc-sidebar-toggle {
    display: block;
  }
  .pc-nav-list {
    display: none;
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .pc-sidebar.expanded .pc-nav-list {
    display: block;
  }
  .pc-nav-item {
    border-bottom: 1px solid #f0f0f0;
    border-right: none;
  }
  .pc-nav-item:last-child {
    border-bottom: none;
  }
  .pc-nav-sub-item a {
    padding: 0.14rem 0.24rem 0.14rem 0.48rem;
    font-size: var(--font-size-18);
  }
  .pc-contact-card {
    display: -moz-box;
    display: flex;
    -moz-box-align: center;
         align-items: center;
    gap: 0.16rem;
    text-align: left;
  }
  .pc-contact-icon {
    margin-bottom: 0;
  }
  .pc-contact-info {
    -moz-box-flex: 1;
         flex: 1;
  }
}
@media screen and (max-width: 768px) {
  .pc-grid {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 480px) {
  .pc-contact-card {
    flex-wrap: wrap;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
         flex-direction: column;
    -moz-box-align: start;
         align-items: flex-start;
  }
}
/* ========================================
   47. 施工指南页 - Construction Guide (cg) - 结束
   ======================================== */
/* ========================================
   48. 新闻列表页 - News List (newslist) - 开始
   ======================================== */
.newslist-s1 {
  padding-top: 0.6rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid #e8e8e8;
}

.newslist-filter {
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: start;
       justify-content: flex-start;
  gap: 0.3rem;
}

.newslist-filter-left {
  flex-shrink: 0;
  min-width: max(2.4rem, 200px);
}

.newslist-dropdown {
  position: relative;
  width: 100%;
  display: inline-block;
}

.newslist-dropdown-toggle {
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: justify;
       justify-content: space-between;
  height: max(0.56rem, 40px);
  padding: 0 0.4rem 0 0.2rem;
  border: 1px solid #dcdcdc;
  border-radius: 0.04rem;
  background: #fff;
  cursor: pointer;
  position: relative;
  -moz-transition: border-color 300ms;
  transition: border-color 300ms;
  -webkit-transition: border-color 300ms;
}
.newslist-dropdown-toggle::after {
  content: "";
  width: 0;
  height: 0;
  border-left: max(0.05rem, 5px) solid transparent;
  border-right: max(0.05rem, 5px) solid transparent;
  border-top: max(0.05rem, 5px) solid #999;
  position: absolute;
  right: 0.16rem;
  top: 50%;
  -moz-transform: translateY(-50%);
   -ms-transform: translateY(-50%);
       transform: translateY(-50%);
  -moz-transition: transform 200ms, -moz-transform 200ms;
  transition: transform 200ms;
  transition: transform 200ms, -moz-transform 200ms;
  -webkit-transition: transform 200ms;
}
.newslist-dropdown-toggle:hover, .newslist-dropdown-toggle.open {
  border-color: var(--color-primary);
}
.newslist-dropdown-toggle.open::after {
  -moz-transform: translateY(-50%) rotate(180deg);
   -ms-transform: translateY(-50%) rotate(180deg);
       transform: translateY(-50%) rotate(180deg);
}

.newslist-dropdown-text {
  font-size: var(--font-size-16);
  color: var(--color-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.newslist-dropdown-menu {
  display: none;
  position: absolute;
  top: -moz-calc(100% + 0.06rem);
  top: calc(100% + 0.06rem);
  left: 0;
  width: 100%;
  background: #fff;
  border: 1px solid #dcdcdc;
  border-radius: 0.04rem;
  box-shadow: 0 0.04rem 0.12rem rgba(0, 0, 0, 0.08);
  z-index: 10;
  list-style: none;
}
.newslist-dropdown-menu.show {
  display: block;
}
.newslist-dropdown-menu li {
  padding: 0.1rem 0.2rem;
  font-size: var(--font-size-16);
  color: var(--color-text);
  cursor: pointer;
  -moz-transition: background 150ms;
  transition: background 150ms;
  -webkit-transition: background 150ms;
}
.newslist-dropdown-menu li:hover {
  background: #f5f5f5;
}
.newslist-dropdown-menu li.active {
  color: var(--color-primary);
  font-family: var(--font-bold);
}

.newslist-filter-right {
  -moz-box-flex: 1;
       flex: 1;
  max-width: 5rem;
}

.newslist-search {
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  border: 1px solid #dcdcdc;
  border-radius: 0.04rem;
  overflow: hidden;
  -moz-transition: border-color 300ms;
  transition: border-color 300ms;
  -webkit-transition: border-color 300ms;
}
.newslist-search:focus-within {
  border-color: var(--color-primary);
}

.newslist-search-input {
  -moz-box-flex: 1;
       flex: 1;
  height: max(0.56rem, 38px);
  padding: 0 0.2rem;
  border: none;
  outline: none;
  font-size: var(--font-size-16);
  color: var(--color-text);
  background: transparent;
}

.newslist-search-btn {
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: center;
       justify-content: center;
  gap: 0.08rem;
  padding: 0 0.24rem;
  height: 0.56rem;
  background: var(--color-primary);
  border: none;
  cursor: pointer;
  white-space: nowrap;
  -moz-transition: background 300ms;
  transition: background 300ms;
  -webkit-transition: background 300ms;
}
.newslist-search-btn i {
  color: #fff;
  font-size: var(--font-size-18);
}
.newslist-search-btn span {
  color: #fff;
  font-size: var(--font-size-16);
  font-family: var(--font-bold);
}
.newslist-search-btn:hover {
  background: var(--color-link);
}

.newslist-s2 {
  padding-top: 0.7rem;
  padding-bottom: 1rem;
}

.newslist-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.4rem;
  margin-bottom: 0.8rem;
}

.newslist-card {
  display: block;
  background: #fff;
  border-radius: 0.08rem;
  overflow: hidden;
  color: inherit;
  border: 1px solid #e8e8e8;
  -moz-transition: all 550ms;
  transition: all 550ms;
  -webkit-transition: all 550ms;
}
.newslist-card:hover {
  -moz-transform: translateY(-4px);
   -ms-transform: translateY(-4px);
       transform: translateY(-4px);
  -webkit-transform: translateY(-4px);
  box-shadow: 0 0.08rem 0.24rem rgba(0, 0, 0, 0.1);
}
.newslist-card:hover .newslist-card-img img {
  -moz-transform: scale(1.06);
   -ms-transform: scale(1.06);
       transform: scale(1.06);
  -webkit-transform: scale(1.06);
}
.newslist-card:hover .newslist-card-title {
  color: var(--color-link);
}
.newslist-card:hover .newslist-card-btn {
  background: var(--color-link);
  border-color: var(--color-link);
  color: #fff;
}

.newslist-card-img {
  overflow: hidden;
  aspect-ratio: 520/365;
}
.newslist-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -moz-transition: transform 600ms, -moz-transform 600ms;
  transition: transform 600ms;
  transition: transform 600ms, -moz-transform 600ms;
  -webkit-transition: transform 600ms;
}

.newslist-card-body {
  padding: 0.24rem 0.3rem 0.3rem;
}

.newslist-card-date {
  display: block;
  font-size: var(--font-size-14);
  color: #999;
  line-height: 1;
  margin-bottom: 0.14rem;
}

.newslist-card-title {
  font-size: var(--font-size-20);
  color: var(--color-text);
  font-family: var(--font-bold);
  font-weight: 700;
  margin-bottom: 0.14rem;
  height: max(0.6rem, 48px);
  -moz-transition: color 300ms;
  transition: color 300ms;
  -webkit-transition: color 300ms;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.newslist-card-desc {
  font-size: var(--font-size-16);
  height: max(0.7rem, 67px);
  color: #666;
  line-height: 1.6;
  margin-bottom: 0.24rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.newslist-card-btn {
  display: -moz-inline-box;
  display: inline-flex;
  -moz-box-align: center;
       align-items: center;
  gap: 0.08rem;
  padding: 0.08rem 0.24rem;
  border: 1px solid var(--color-text);
  border-radius: 999px;
  font-size: var(--font-size-14);
  font-family: var(--font-bold);
  color: var(--color-text);
  background: #fff;
  -moz-transition: all 550ms;
  transition: all 550ms;
  -webkit-transition: all 550ms;
}
@media screen and (max-width: 991px) {
  .newslist-filter {
    flex-wrap: wrap;
  }
  .newslist-filter-right {
    max-width: none;
    -moz-box-flex: 1;
         flex: 1;
    min-width: 3rem;
  }
  .newslist-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .newslist-s1 {
    padding-top: 0.4rem;
    padding-bottom: 0.3rem;
  }
  .newslist-filter {
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
         flex-direction: column;
    gap: 0.2rem;
  }
  .newslist-filter-left,
  .newslist-filter-right {
    width: 100%;
    max-width: none;
  }
  .newslist-select {
    width: 100%;
  }
  .newslist-s2 {
    padding-top: 0.4rem;
    padding-bottom: 0.6rem;
  }
  .newslist-grid {
    gap: 0.3rem;
  }
  .newslist-card {
    width: 100%;
  }
}
@media screen and (max-width: 580px) {
  .newslist-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
/* ========================================
   48. 新闻列表页 - News List (newslist) - 结束
   ======================================== */
/* ========================================
      49. 详情页 - Detail (detail) - 开始
      ======================================== */
.m-muban-cpxq {
  padding-top: 0.2rem;
  padding-bottom: 0.6rem;
}

.m-muban-cpxq-jiehao-title {
  font-size: var(--font-size-36);
  color: #333333;
  margin-bottom: 0.2rem;
}

.m-muban-cpxq-jiehao {
  font-weight: 400;
  color: #666666;
}

.m-muban-cpxq-kuang {
  display: -moz-box;
  display: flex;
  -moz-box-align: start;
       align-items: flex-start;
  -moz-box-pack: justify;
       justify-content: space-between;
}

.m-muban-cpxq-kuang-left {
  width: 50%;
  position: -webkit-sticky;
  position: sticky;
  top: 1rem;
}
.m-muban-cpxq-kuang-left .swipercpxqbig {
  margin-bottom: 10px;
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: center;
       justify-content: center;
}
.m-muban-cpxq-kuang-left .swipercpxqbig img {
  object-fit: contain;
}

.m-muban-cpxq-kuang-right {
  width: 50%;
  padding: 0.2rem;
}

.m-muban-cpxq-img {
  display: block;
  font-size: 0px;
  aspect-ratio: 3/2;
  border-radius: max(0.1rem, 10px);
  overflow: hidden;
}
.m-muban-cpxq-img img {
  object-fit: contain;
}

.m-muban-cpxq-kuang-left > .cpxqswipersmall .swiper-slide {
  border: 2px solid transparent;
  border-radius: 0.1rem;
  overflow: hidden;
  cursor: pointer;
}
.m-muban-cpxq-kuang-left > .cpxqswipersmall .swiper-slide-thumb-active {
  border-color: var(--color-vi);
}

.m-muban-cpxq-kuang-right-div {
  /* // max-width: 500px; */
  padding-left: 10%;
  padding-right: 10%;
  margin-left: auto;
  margin-right: auto;
}

.m-muban-cpxq-next {
  display: inline-block;
  text-align: center;
  font-weight: 400;
  font-size: var(--font-size-16);
  color: #FFFFFF;
  background: var(--color-primary);
  margin-top: 0.3rem;
  padding: 0.1rem 0.2rem;
  border-radius: max(0.3rem, 30px);
}

.m-muban-cpxq-next:hover {
  background: var(--color-vi);
}

.m-muban-cpxq-kuang-left .swipercpxqbig .swiper-button-next::after,
.m-muban-cpxq-kuang-left .swipercpxqbig .swiper-button-prev::after {
  font-size: var(--font-size-30);
}

@media screen and (max-width: 999px) {
  .m-muban-cpxq-kuang {
    flex-wrap: wrap;
  }
  .m-muban-cpxq-kuang-left {
    position: unset;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }
  .m-muban-cpxq-kuang-right {
    width: 100%;
    margin-top: 10px;
    padding: 0px;
  }
  .m-muban-cpxq-kuang-right .m-muban-cpxq-kuang-right-div {
    padding-left: 0px;
    padding-right: 0px;
  }
}
@media screen and (max-width: 768px) {
  .cpxqswipersmall {
    display: none;
  }
}
.m-muban-cpxq-page {
  padding: 0.2rem;
  background: #F5F5F5;
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: justify;
       justify-content: space-between;
}
.m-muban-cpxq-page > div {
  color: #333333;
  line-height: 24px;
  max-width: 48%;
}
.m-muban-cpxq-page > div a {
  color: #666666;
}
.m-muban-cpxq-page > div a:hover {
  color: var(--color-primary);
}

@media screen and (max-width: 768px) {
  .m-muban-cpxq-tab-k-top ul {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .m-muban-cpxq-tab-k-top ul::-webkit-scrollbar {
    display: none;
  }
  .m-muban-cpxq-tab-k-top ul li {
    padding-bottom: 10px;
    white-space: nowrap;
    flex-shrink: 0;
    margin-right: 24px;
  }
  .m-muban-cpxq-page {
    padding-left: 10px;
    padding-right: 10px;
  }
  .m-muban-cpxq-page > div {
    line-height: 20px;
  }
}
@media screen and (max-width: 550px) {
  .m-muban-cpxq-tab {
    margin-top: 6px;
  }
  .m-muban-cpxq-page {
    flex-wrap: wrap;
    padding: 10px;
  }
  .m-muban-cpxq-page > div {
    width: 100%;
    margin-bottom: 10px;
    max-width: none;
  }
  .m-muban-cpxq-page > div:last-child {
    margin-bottom: 0px;
  }
}
.dmr-proxq-mid {
  padding-bottom: 1rem;
}

/* ========================================
   50. 产品详情模块 - Product Detail Module (taste-skill optimized)
   ======================================== */
/* 50.1 Header */
.pd-header {
  margin-bottom: 0.24rem;
}

.pd-model {
  display: inline-block;
  font-size: var(--font-size-13);
  font-family: var(--font-regular);
  color: var(--color-primary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(8, 106, 103, 0.08);
  padding: 0.04rem 0.12rem;
  border-radius: 4px;
  margin-bottom: 0.08rem;
}

/* 50.2 Feature Tags */
.pd-tags {
  display: -moz-box;
  display: flex;
  flex-wrap: wrap;
  gap: 0.1rem;
  margin-bottom: 0.28rem;
}

.pd-tag {
  display: -moz-inline-box;
  display: inline-flex;
  -moz-box-align: center;
       align-items: center;
  gap: 0.06rem;
  padding: 0.08rem 0.16rem;
  background: #f8f9fa;
  border-radius: 6px;
  font-size: var(--font-size-14);
  color: var(--color-text);
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.pd-tag svg {
  flex-shrink: 0;
  color: var(--color-primary);
}
.pd-tag img {
  flex-shrink: 0;
  width: max(0.16rem, 16px);
  height: max(0.16rem, 16px);
}
.pd-tag:hover {
  background: rgba(8, 106, 103, 0.08);
  -moz-transform: translateY(-1px);
   -ms-transform: translateY(-1px);
       transform: translateY(-1px);
}

/* 50.3 Specs Grid */
.pd-specs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.12rem;
  margin-bottom: 0.24rem;
}

.pd-spec-card {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 0.16rem;
  text-align: center;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.pd-spec-card:hover {
  background: rgba(8, 106, 103, 0.06);
  -moz-transform: translateY(-2px);
   -ms-transform: translateY(-2px);
       transform: translateY(-2px);
}

.pd-spec-card-label {
  display: block;
  font-size: var(--font-size-12);
  color: var(--color-999);
  margin-bottom: 0.04rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pd-spec-card-value {
  display: block;
  font-size: var(--font-size-18);
  font-weight: 700;
  color: var(--color-text);
  font-family: var(--font-bold);
}

/* 50.4 Certifications */
.pd-certs {
  display: -moz-box;
  display: flex;
  flex-wrap: wrap;
  gap: 0.08rem;
  margin-bottom: 0.24rem;
}

.pd-cert {
  display: inline-block;
  padding: 0.06rem 0.14rem;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  font-size: var(--font-size-12);
  color: var(--color-6666);
  font-weight: 500;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.pd-cert:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

/* 50.5 Overview */
.pd-overview {
  margin-bottom: 0.24rem;
  padding: 0.2rem;
  background: -moz-linear-gradient(315deg, #f8f9fa 0%, #e8f4fd 100%);
  background: linear-gradient(135deg, #f8f9fa 0%, #e8f4fd 100%);
  border-radius: 8px;
  border-left: 3px solid var(--color-primary);
}
.pd-overview p {
  color: var(--color-text);
  line-height: 1.7;
  margin: 0;
  font-size: var(--font-size-15);
}

/* 50.6 Applications */
.pd-applications {
  margin-bottom: 0.24rem;
}
.pd-applications h3 {
  font-size: var(--font-size-16);
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.12rem;
}
.pd-applications .pd-app-tags {
  display: -moz-box;
  display: flex;
  flex-wrap: wrap;
  gap: 0.08rem;
}
.pd-applications .pd-app-tags span {
  display: inline-block;
  padding: 0.06rem 0.14rem;
  background: rgba(8, 106, 103, 0.06);
  border-radius: 20px;
  font-size: var(--font-size-13);
  color: var(--color-primary);
  font-weight: 500;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.pd-applications .pd-app-tags span:hover {
  background: rgba(8, 106, 103, 0.12);
}

/* 50.7 Construction Guidelines */
.pd-construction {
  margin-bottom: 0.24rem;
}
.pd-construction h3 {
  font-size: var(--font-size-16);
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.12rem;
}
.pd-construction .pd-guide-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 0.12rem;
  margin-bottom: 0.16rem;
}
.pd-construction .pd-guide-item {
  background: #f8f9fa;
  border-radius: 6px;
  padding: 0.12rem 0.16rem;
  display: -moz-box;
  display: flex;
  -moz-box-pack: justify;
       justify-content: space-between;
  -moz-box-align: start;
       align-items: flex-start;
  align-content: flex-start;
  flex-wrap: wrap;
  gap: 0.06rem;
}
.pd-construction .pd-guide-label {
  font-size: var(--font-size-16);
  color: var(--color-999);
}
.pd-construction .pd-guide-value {
  width: 100%;
  font-size: var(--font-size-14);
  color: var(--color-text);
}

.wxts {
  color: #e74c3c;
  font-size: var(--font-size-13);
  margin-top: 0.12rem;
  padding: 0.1rem 0.14rem;
  background: #fef5f5;
  border-radius: 4px;
  border-left: 3px solid #e74c3c;
}

/* 50.8 CTA */
.pd-cta {
  display: -moz-box;
  display: flex;
  gap: 0.12rem;
  margin-top: 0.28rem;
}

.pd-btn {
  display: -moz-inline-box;
  display: inline-flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: center;
       justify-content: center;
  padding: 0.12rem 0.28rem;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  -moz-transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  min-width: 1.4rem;
  font-size: var(--font-size-15);
}
.pd-btn.pd-btn-primary {
  background: var(--color-primary);
  color: white;
}
.pd-btn.pd-btn-primary:hover {
  background: var(--color-link);
  -moz-transform: translateY(-2px);
   -ms-transform: translateY(-2px);
       transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(8, 106, 103, 0.25);
}
.pd-btn.pd-btn-primary:active {
  -moz-transform: translateY(0);
   -ms-transform: translateY(0);
       transform: translateY(0);
}
.pd-btn.pd-btn-secondary {
  background: transparent;
  color: var(--color-primary);
  border: 1.5px solid var(--color-primary);
}
.pd-btn.pd-btn-secondary:hover {
  background: var(--color-primary);
  color: white;
  -moz-transform: translateY(-2px);
   -ms-transform: translateY(-2px);
       transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(8, 106, 103, 0.25);
}
.pd-btn.pd-btn-secondary:active {
  -moz-transform: translateY(0);
   -ms-transform: translateY(0);
       transform: translateY(0);
}

/* 50.9 Responsive */
@media screen and (max-width: 991px) {
  .pd-specs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pd-cta {
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
         flex-direction: column;
    gap: 0.1rem;
  }
  .pd-btn {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .pd-tags {
    gap: 0.08rem;
  }
  .pd-tag {
    padding: 0.06rem 0.12rem;
    font-size: var(--font-size-13);
  }
  .pd-specs-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.08rem;
  }
  .pd-spec-card {
    padding: 0.12rem;
  }
  .pd-spec-card-value {
    font-size: var(--font-size-16);
  }
  .pd-construction .pd-guide-grid {
    grid-template-columns: 1fr;
  }
  .pd-btn {
    padding: 0.1rem 0.2rem;
    font-size: var(--font-size-14);
  }
}
/* xq end */
.ditu_map_mid {
  aspect-ratio: 2/0.8;
}
.ditu_map_mid iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width: 768px) {
  .ditu_map_mid {
    aspect-ratio: 1/1;
  }
  .ditu_map_mid iframe {
    margin-top: 0.5rem;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
/* 联系信息卡片 */
.contact-card {
  background: #fff;
  margin: 0.4rem 0;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.contact-card-header {
  background: -moz-linear-gradient(315deg, #0073b1 0%, #008CD6 50%, #00a0e9 100%);
  background: linear-gradient(135deg, #0073b1 0%, #008CD6 50%, #00a0e9 100%);
  padding: 0.4rem;
  display: -moz-box;
  display: flex;
  -moz-box-pack: justify;
       justify-content: space-between;
  -moz-box-align: center;
       align-items: center;
  gap: 0.4rem;
}

.contact-card-header-left {
  -moz-box-flex: 1;
       flex: 1;
}

.contact-card-title {
  font-size: var(--font-size-32);
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.08rem;
  letter-spacing: 2px;
}

.contact-card-subtitle {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
}

.contact-card-address {
  display: -moz-box;
  display: flex;
  -moz-box-align: start;
       align-items: flex-start;
  gap: 0.16rem;
  padding: 0.2rem 0.24rem;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.contact-card-address .iconfont {
  font-size: var(--font-size-24);
  color: #fff;
  flex-shrink: 0;
  margin-top: 0.02rem;
}
.contact-card-address span {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.04rem;
  font-weight: 600;
}
.contact-card-address p {
  color: #fff;
  line-height: 1.5;
  margin: 0;
}

.contact-card-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.contact-card-item {
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  gap: 0.14rem;
  padding: 0.28rem 0.24rem;
  background: #fff;
  text-decoration: none;
  color: inherit;
  border-right: 1px solid #f0f0f0;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.contact-card-item::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--color-primary);
  -moz-transform: scaleX(0);
   -ms-transform: scaleX(0);
       transform: scaleX(0);
  -moz-transform-origin: left;
   -ms-transform-origin: left;
       transform-origin: left;
  -moz-transition: transform 0.3s ease, -moz-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -moz-transform 0.3s ease;
}
.contact-card-item:last-child {
  border-right: none;
}
.contact-card-item:hover {
  background: #fafafa;
}
.contact-card-item:hover::before {
  -moz-transform: scaleX(1);
   -ms-transform: scaleX(1);
       transform: scaleX(1);
}
.contact-card-item:hover .iconfont {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}

.contact-card-item .iconfont {
  font-size: var(--font-size-18);
  color: var(--color-primary);
  flex-shrink: 0;
  width: max(0.48rem, 40px);
  height: max(0.48rem, 40px);
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: center;
       justify-content: center;
  border: 2px solid var(--color-primary);
  border-radius: 50%;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.contact-label {
  display: block;
  color: #999;
  margin-bottom: 0.02rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.contact-card-item p {
  color: #333;
  margin: 0;
}

@media screen and (max-width: 991px) {
  .contact-card-header {
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
         flex-direction: column;
    text-align: center;
    padding: 0.32rem;
  }
  .contact-card-address {
    width: 100%;
    -moz-box-pack: center;
         justify-content: center;
    flex-wrap: wrap;
  }
  .contact-card-address > div {
    width: 100%;
  }
  .contact-card-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .contact-card-item {
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
         flex-direction: column;
    text-align: center;
    padding: 0.24rem 0.16rem;
  }
}
@media screen and (max-width: 768px) {
  .contact-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-card-item:nth-child(2n) {
    border-right: none;
  }
}
@media screen and (max-width: 550px) {
  .contact-card-header {
    padding: 0.24rem 0.16rem;
  }
  .contact-card-title {
    font-size: var(--font-size-24);
  }
  .contact-card-grid {
    grid-template-columns: 1fr;
  }
}
/* ========================================
   49. 隐私政策页 - Privacy Policy (pp)
   ======================================== */
.pp-content {
  padding: 0.6rem 0 1rem;
}

.pp-header {
  text-align: center;
  margin-bottom: 0.6rem;
  padding-bottom: 0.4rem;
  border-bottom: 2px solid var(--color-primary);
}
.pp-header h1 {
  font-size: var(--font-size-48);
  color: var(--color-primary);
  font-weight: 700;
  margin-bottom: 0.16rem;
}
.pp-header p {
  font-size: var(--font-size-20);
  color: var(--color-6666);
}

.pp-section {
  margin-bottom: 0.5rem;
  padding: 0.36rem;
  background: #fff;
  border-radius: 0.12rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  border-left: 4px solid var(--color-primary);
}
.pp-section h2 {
  font-size: var(--font-size-32);
  color: var(--color-text);
  font-weight: 600;
  margin-bottom: 0.2rem;
  padding-bottom: 0.12rem;
  border-bottom: 1px solid #eee;
}
.pp-section h3 {
  font-size: var(--font-size-22);
  color: var(--color-primary);
  font-weight: 600;
  margin: 0.24rem 0 0.12rem;
}
.pp-section p {
  font-size: var(--font-size-18);
  color: var(--color-6666);
  line-height: 1.8;
  margin-bottom: 0.16rem;
}
.pp-section ul {
  margin: 0.12rem 0 0.16rem 0.24rem;
}
.pp-section ul li {
  font-size: var(--font-size-18);
  color: var(--color-6666);
  line-height: 1.8;
  margin-bottom: 0.08rem;
  list-style-type: disc;
}
.pp-section ul li strong {
  color: var(--color-text);
}
.pp-section table {
  width: 100%;
  border-collapse: collapse;
  margin: 0.2rem 0;
  font-size: var(--font-size-16);
}
.pp-section table th,
.pp-section table td {
  padding: 0.14rem 0.2rem;
  text-align: left;
  border: 1px solid #e5e7eb;
}
.pp-section table th {
  background: var(--color-primary);
  color: #fff;
  font-weight: 600;
}
.pp-section table tr:nth-child(even) {
  background: #f9fafb;
}
.pp-section table tr:hover {
  background: #f0f9ff;
}

.pp-notice {
  margin: 0.2rem 0;
  padding: 0.2rem 0.24rem;
  background: -moz-linear-gradient(315deg, #f0f9ff 0%, #e0f2fe 100%);
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  border-radius: 0.08rem;
  border-left: 4px solid var(--color-link);
  font-size: var(--font-size-18);
  color: var(--color-text);
}
.pp-notice strong {
  color: var(--color-primary);
}

@media screen and (max-width: 991px) {
  .pp-content {
    padding: 0.4rem 0 0.8rem;
  }
  .pp-header {
    margin-bottom: 0.4rem;
    padding-bottom: 0.3rem;
  }
  .pp-header h1 {
    font-size: var(--font-size-36);
  }
  .pp-header p {
    font-size: var(--font-size-18);
  }
  .pp-section {
    padding: 0.24rem;
  }
  .pp-section h2 {
    font-size: var(--font-size-26);
  }
  .pp-section h3 {
    font-size: var(--font-size-20);
  }
}
@media screen and (max-width: 768px) {
  .pp-section {
    padding: 0.2rem;
    margin-bottom: 0.3rem;
  }
  .pp-section table {
    font-size: var(--font-size-14);
  }
  .pp-section table th,
  .pp-section table td {
    padding: 0.1rem 0.12rem;
  }
}
/* ========================================
   49. 关于我们页 - group 模块 - 开始
   ======================================== */
.group-tit {
  font-size: 0.42rem;
  font-family: var(--font-bold);
  margin-bottom: 0.5rem;
}

.group-tit-light {
  color: var(--color-white);
  position: relative;
  z-index: 1;
}

/* 1. 集团简介 + 数据 */
.group-numb {
  position: relative;
  overflow: hidden;
  padding: 1rem 0;
  padding-bottom: 4rem;
}
.group-numb > img {
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.group-numb-bg {
  position: absolute;
  bottom: -10%;
  left: 0;
  width: 100%;
  z-index: 0;
  overflow: hidden;
}

.group-numb-bg img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: right top;
}

.group-numb-wrap {
  position: relative;
  z-index: 1;
  display: -moz-box;
  display: flex;
  -moz-box-pack: justify;
       justify-content: space-between;
  -moz-box-align: start;
       align-items: flex-start;
}

.group-numb-le {
  width: 58%;
}

.group-numb-le h2,
.group-numb-le-title {
  font-size: var(--font-size-32);
  color: var(--color-primary);
  font-family: var(--font-bold);
  margin-top: 0.3rem;
  margin-bottom: 0.16rem;
}

.group-numb-le h2:first-child {
  margin-top: 0;
}

.group-numb-le p {
  font-size: var(--font-size-16);
  color: var(--color-text);
  line-height: 1.9;
}
.group-numb-le p em {
  color: var(--color-primary);
  font-style: normal;
}

.group-numb-ri {
  width: 36%;
}

.group-numb-ri-ul li {
  padding: 0.3rem 0;
  position: relative;
}
.group-numb-ri-ul li::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: max(0.01rem, 1px);
  background: -moz-linear-gradient(left, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
  background: linear-gradient(90deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
}

.gnru-li:first-child {
  padding-top: 0;
}

.gnru-li-num {
  display: -moz-box;
  display: flex;
  -moz-box-align: baseline;
       align-items: baseline;
  color: var(--color-primary);
}

.gnru-num {
  font-size: var(--font-size-60);
  font-family: var(--font-bold);
  line-height: 1;
}

.gnru-plus {
  font-size: var(--font-size-32);
  font-family: var(--font-bold);
  margin-left: 0.04rem;
}

.gnru-li-word p {
  font-size: var(--font-size-18);
  color: var(--color-text);
  margin-top: 0.1rem;
}

/* 2. 企业文化 - 三列(中列堆2)文字叠图 */
.group-cult {
  position: relative;
  overflow: hidden;
  padding: 1rem 0;
  background: -moz-linear-gradient(top, #fffaf4 0%, #ffffff 100%);
  background: linear-gradient(180deg, #fffaf4 0%, #ffffff 100%);
}

.group-cult-wrap {
  display: -moz-box;
  display: flex;
  -moz-box-pack: justify;
       justify-content: space-between;
  -moz-box-align: stretch;
       align-items: stretch;
  height: 6.6rem;
}

.gcw-card {
  position: relative;
  overflow: hidden;
  border-radius: 0.04rem;
}

.gcw-card.gcw-tall {
  width: 32%;
}

.gcw-mid {
  width: 33%;
  display: -moz-box;
  display: flex;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
       flex-direction: column;
  -moz-box-pack: justify;
       justify-content: space-between;
}

.gcw-mid .gcw-card {
  height: 48.5%;
}

.gcw-img {
  width: 100%;
  height: 100%;
}

.gcw-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -moz-transition: all 550ms;
  transition: all 550ms;
  -webkit-transition: all 550ms;
}

.gcw-card:hover .gcw-img img {
  -moz-transform: scale(1.06);
   -ms-transform: scale(1.06);
       transform: scale(1.06);
  -webkit-transform: scale(1.06);
}

.gcw-card::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.75) 100%);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.75) 100%);
  pointer-events: none;
}

.gcw-bot {
  position: absolute;
  left: 0.3rem;
  right: 0.3rem;
  bottom: 0.3rem;
  z-index: 2;
}

.gcw-tit {
  font-size: var(--font-size-24);
  color: #fff;
  font-family: var(--font-bold);
  margin-bottom: 0.1rem;
}

.gcw-word p {
  font-size: var(--font-size-16);
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
}

/* 3. 我们的故事 - 年份竖向联动（精确尺寸） */
.group-deve {
  padding-top: 0.8rem;
  padding-bottom: 1.6rem;
  position: relative;
}
.group-deve > img {
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.group-deve-wrap {
  display: -moz-box;
  display: flex;
  -moz-box-align: start;
       align-items: flex-start;
  -moz-box-pack: justify;
       justify-content: space-between;
  height: 5.3rem;
  margin-top: 0.4rem;
}

.group-deve-le {
  width: 34%;
  position: relative;
}

.group-deve-le-fl {
  display: -moz-box;
  display: flex;
  -moz-box-align: start;
       align-items: flex-start;
  overflow: hidden;
  height: 5.3rem;
}

.group-deve-le-list {
  flex-shrink: 0;
}

.gdll-wrap {
  display: none;
}

.gdll-wrap.active {
  display: block;
}

.group-deve-le-num {
  font-size: 1.8rem;
  color: #ededed;
  font-family: var(--font-boldsb);
  line-height: 1;
}

.group-deve-le-ul {
  overflow: hidden;
}

.gdlu-li {
  overflow: hidden;
  opacity: 0.4;
}
.gdlu-li .gdlu-li-text {
  font-size: 1.8rem;
  font-family: var(--font-boldsb);
  line-height: 1;
  color: var(--color-text);
}
.gdlu-li.active {
  opacity: 1;
}
.gdlu-li.active .gdlu-li-text {
  color: var(--color-primary);
}

.group-deve-le {
  position: relative;
}

.group-deve-le-fr {
  position: absolute;
  right: -0.6rem;
  top: 0.3rem;
}

.group-deve-arrows {
  display: -moz-box;
  display: flex;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
       flex-direction: column;
}

.group-deve-arrows .arrows-icon {
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: center;
       justify-content: center;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  border: 1px solid #c9c9c9;
  color: var(--color-text);
  cursor: pointer;
  -moz-transition: all 550ms;
  transition: all 550ms;
  -webkit-transition: all 550ms;
}

.group-deve-arrows .arrows-prev i {
  display: inline-block;
  -moz-transform: rotate(-90deg);
   -ms-transform: rotate(-90deg);
       transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
}

.group-deve-arrows .arrows-next i {
  display: inline-block;
  -moz-transform: rotate(90deg);
   -ms-transform: rotate(90deg);
       transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
}

.group-deve-arrows .arrows-next {
  margin-top: 0.12rem;
}

.group-deve-arrows-mobile {
  display: none;
}

.group-deve-arrows-mobile .arrows-icon {
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: center;
       justify-content: center;
  width: 0.56rem;
  height: 0.56rem;
  border-radius: 50%;
  border: 1px solid #ddd;
  color: var(--color-text);
  cursor: pointer;
}

.group-deve-arrows-mobile .arrows-icon:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
}

.group-deve-arrows .arrows-icon:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
}

.group-deve-ri {
  width: 59%;
  height: 5.6rem;
  padding-left: 0.92rem;
  overflow: hidden;
}

.group-deve-ri-ul {
  overflow: hidden;
}

.gdru-li {
  margin-bottom: 0.7rem;
  opacity: 0.4;
}
.gdru-li.active {
  opacity: 1;
}

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

.gdru-li-box {
  display: -moz-box;
  display: flex;
  -moz-box-align: start;
       align-items: flex-start;
  -moz-box-pack: justify;
       justify-content: space-between;
}

.gdru-li-le {
  width: 82%;
}

.gdru-li-le p {
  font-size: var(--font-size-20);
  color: var(--color-text);
  line-height: 1.65;
  position: relative;
  padding-left: 0.18rem;
  margin-bottom: 0.08rem;
}
.gdru-li-le p em {
  color: var(--color-primary);
  font-style: normal;
}

.gdru-li-le p::after {
  content: "";
  position: absolute;
  left: 0;
  top: max(0.15rem, 10px);
  width: max(0.05rem, 5px);
  height: max(0.05rem, 5px);
  border-radius: 50%;
  background: var(--color-primary);
}

.gdru-li.active .gdru-li-le p::after {
  opacity: 1;
}

.gdru-li-ri {
  flex-shrink: 0;
}

.gdru-li-ri p {
  font-size: var(--font-size-20);
  font-family: var(--font-bold);
  color: var(--color-text);
  opacity: 0.4;
}

.gdru-li.active .gdru-li-ri p {
  opacity: 1;
  color: var(--color-primary);
}

/* 4. 产品专利 - 左侧统计 + 右侧旋转跑马灯墙 */
.group-prod {
  position: relative;
  overflow: hidden;
  padding: 1.3rem 0;
}
.group-prod > img {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.group-prod-le {
  position: relative;
  z-index: 2;
  width: 42%;
}

.group-prod-le .group-tit {
  margin-bottom: 0.8rem;
}

.gpl-tp {
  padding-bottom: 0.3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.gpl-tp-word {
  font-size: var(--font-size-20);
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0.1rem;
}

.gpl-tp-num {
  display: -moz-box;
  display: flex;
  -moz-box-align: baseline;
       align-items: baseline;
}

.gpl-tp-num span {
  font-size: var(--font-size-72);
  font-family: var(--font-bold);
  line-height: 1;
  color: #fff;
}
.gpl-tp-num span.vicolor {
  color: var(--color-primary);
}

.gpl-tp-num i,
.gpl-tp-num em {
  font-size: var(--font-size-24);
  font-style: normal;
  margin-left: 0.08rem;
  color: rgba(255, 255, 255, 0.7);
}

.gpl-ul {
  display: -moz-box;
  display: flex;
  margin-top: 0.4rem;
}
.gpl-ul li {
  margin-right: 0.7rem;
}

.gpl-li-word {
  font-size: var(--font-size-18);
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.1rem;
}

.gpl-li-num {
  display: -moz-box;
  display: flex;
  -moz-box-align: baseline;
       align-items: baseline;
  color: #fff;
}

.gpl-li-num span {
  font-size: var(--font-size-40);
  font-family: var(--font-bold);
  line-height: 1;
}

.gpl-li-num i {
  font-size: var(--font-size-16);
  font-style: normal;
  margin-left: 0.04rem;
  color: rgba(255, 255, 255, 0.7);
}

.gpl-date {
  font-size: var(--font-size-14);
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.4rem;
}

.group-prod-run {
  position: absolute;
  top: -12%;
  right: -8%;
  width: 52%;
  height: 130%;
  display: -moz-box;
  display: flex;
  -moz-box-pack: justify;
       justify-content: space-between;
  z-index: 1;
  pointer-events: none;
  -moz-transform: rotate(-15deg);
   -ms-transform: rotate(-15deg);
       transform: rotate(-15deg);
  -webkit-transform: rotate(-15deg);
}

.gpr-list {
  width: 23%;
  height: 100%;
  overflow: hidden;
}

.gpr-ul {
  width: 100%;
}
.gpr-ul li {
  margin-bottom: 0.2rem;
}

.gpr-list1 .gpr-ul,
.gpr-list3 .gpr-ul {
  -webkit-animation: gpr-up 34s linear infinite;
     -moz-animation: gpr-up 34s linear infinite;
          animation: gpr-up 34s linear infinite;
}

.gpr-list2 .gpr-ul,
.gpr-list4 .gpr-ul {
  -webkit-animation: gpr-down 34s linear infinite;
     -moz-animation: gpr-down 34s linear infinite;
          animation: gpr-down 34s linear infinite;
}

@-webkit-keyframes gpr-up {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-100%);
  }
}

@-moz-keyframes gpr-up {
  from {
    -moz-transform: translateY(0);
         transform: translateY(0);
  }
  to {
    -moz-transform: translateY(-100%);
         transform: translateY(-100%);
  }
}

@keyframes gpr-up {
  from {
    -moz-transform: translateY(0);
         transform: translateY(0);
  }
  to {
    -moz-transform: translateY(-100%);
         transform: translateY(-100%);
  }
}
@-webkit-keyframes gpr-down {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
@-moz-keyframes gpr-down {
  from {
    -moz-transform: translateY(-100%);
         transform: translateY(-100%);
  }
  to {
    -moz-transform: translateY(0);
         transform: translateY(0);
  }
}
@keyframes gpr-down {
  from {
    -moz-transform: translateY(-100%);
         transform: translateY(-100%);
  }
  to {
    -moz-transform: translateY(0);
         transform: translateY(0);
  }
}
.gpr-li {
  margin-bottom: 0.2rem;
  border-radius: 0.04rem;
  overflow: hidden;
  background: #fff;
}

.gpr-li img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}

/* 5. 经典案例 - 左 fade 文字 + 右竖向 3 图居中 */
.group-case {
  padding: 1rem 0;
}

.group-case-wrap {
  display: -moz-box;
  display: flex;
  -moz-box-pack: justify;
       justify-content: space-between;
  -moz-box-align: center;
       align-items: center;
}

.group-case-le {
  width: 36%;
}

.gcaseFadeSwiper {
  width: 100%;
}

.cta-core {
  width: 100%;
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: center;
       justify-content: center;
  margin-top: 0.4rem;
}

.gcase-text .gcase-tit {
  font-size: var(--font-size-32);
  color: var(--color-text);
  font-family: var(--font-bold);
  line-height: 1.4;
  margin-bottom: 0.2rem;
}

.gcase-more {
  display: -moz-inline-box;
  display: inline-flex;
  -moz-box-align: center;
       align-items: center;
  color: var(--color-primary);
  font-size: var(--font-size-16);
}

.gcase-more i {
  margin-left: 0.1rem;
  font-size: var(--font-size-16);
  -moz-transition: all 550ms;
  transition: all 550ms;
  -webkit-transition: all 550ms;
}

.gcase-more:hover i {
  margin-left: 0.2rem;
}

.group-case-arrows {
  display: -moz-box;
  display: flex;
  margin-top: 0.6rem;
}

.group-case-arrows .arrows-icon {
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: center;
       justify-content: center;
  width: 0.56rem;
  height: 0.56rem;
  border-radius: 50%;
  border: 1px solid #ddd;
  color: var(--color-text);
  cursor: pointer;
  -moz-transition: all 550ms;
  transition: all 550ms;
  -webkit-transition: all 550ms;
}

.group-case-arrows .arrows-prev i {
  display: inline-block;
  -moz-transform: rotate(-90deg);
   -ms-transform: rotate(-90deg);
       transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
}

.group-case-arrows .arrows-next i {
  display: inline-block;
  -moz-transform: rotate(90deg);
   -ms-transform: rotate(90deg);
       transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
}

.group-case-arrows .arrows-next {
  margin-left: 0.2rem;
}

.group-case-arrows .arrows-icon:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
}

.group-case-ri {
  width: 58%;
}

.gcaseVertSwiper {
  width: 100%;
  height: 5.2rem;
}

.gcase-img {
  overflow: hidden;
  border-radius: 0.06rem;
  opacity: 0.4;
  -moz-transition: all 550ms;
  transition: all 550ms;
  -webkit-transition: all 550ms;
}

.gcase-img.swiper-slide-active {
  opacity: 1;
}

.gcase-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 6. 企业重要荣誉 -  */
.group-honor {
  position: relative;
  overflow: hidden;
  padding: 1rem 0;
}

.group-honor-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.group-honor-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.group-honor::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(8, 18, 40, 0.7);
}

.group-honor .w1400 {
  position: relative;
  z-index: 2;
}

.ghonorSwiper {
  width: 100%;
  padding-bottom: 0.8rem;
}
.ghonorSwiper .swiper-slide {
  display: -moz-box;
  display: flex;
  flex-wrap: wrap;
  align-content: space-between;
  gap: 0.3rem;
  background: #fff;
}

.gho-item {
  border-radius: max(0.04rem, 4px);
  overflow: hidden;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: none;
  width: 100%;
  height: 100%;
}
.gho-item:hover {
  -moz-transform: translateY(-4px);
   -ms-transform: translateY(-4px);
       transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.gho-img {
  padding: 0.2rem;
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: center;
       justify-content: center;
  aspect-ratio: 4/3;
}

.gho-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  -moz-transition: transform 0.3s ease, -moz-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -moz-transform 0.3s ease;
}
.gho-img img:hover {
  -moz-transform: scale(1.03);
   -ms-transform: scale(1.03);
       transform: scale(1.03);
}

.gho-text {
  padding: 0.16rem 0.2rem 0.2rem;
  font-size: var(--font-size-16);
  text-align: center;
}

.gho-text p {
  font-size: var(--font-size-13);
  color: #333;
  line-height: 1.6;
  margin: 0;
  min-height: max(0.44rem, 40px);
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: center;
       justify-content: center;
}

.ghonor-pagination {
  bottom: 0 !important;
}

.ghonor-pagination .swiper-pagination-bullet {
  background: #ddd;
  opacity: 1;
  width: 0.1rem;
  height: 0.1rem;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 50%;
}

.ghonor-pagination .swiper-pagination-bullet-active {
  background: var(--color-primary);
  -moz-transform: scale(1.3);
   -ms-transform: scale(1.3);
       transform: scale(1.3);
  box-shadow: 0 0 8px rgba(0, 123, 255, 0.4);
}

@media screen and (max-width: 991px) {
  .group-tit {
    font-size: 26px;
  }
  .group-numb,
  .group-cult,
  .group-deve,
  .group-prod,
  .group-case,
  .group-honor {
    padding: 0.6rem 0;
  }
  .group-numb-wrap {
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
         flex-direction: column;
  }
  .group-numb-le,
  .group-numb-ri {
    width: 100%;
  }
  .group-numb-ri {
    margin-top: 0.4rem;
  }
  .group-numb-bg {
    display: none;
  }
  .group-cult-wrap {
    height: 5rem;
  }
  .gcw-tit {
    font-size: var(--font-size-20);
  }
  .group-deve-wrap {
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
         flex-direction: column;
    height: auto;
    -moz-box-align: center;
         align-items: center;
    overflow: hidden;
  }
  .group-deve-le {
    display: none;
  }
  .group-deve-ri {
    width: 100%;
    height: auto;
    border-left: 0;
    padding-left: 0;
    padding-top: 0;
    text-align: center;
    overflow: visible;
  }
  .gdru-li {
    margin-bottom: 0.3rem;
  }
  .gdru-li-box {
    -moz-box-pack: center;
         justify-content: center;
  }
  .gdru-li-le {
    width: 100%;
    text-align: left;
  }
  .gdru-li-box {
    -moz-box-orient: vertical;
    -moz-box-direction: reverse;
         flex-direction: column-reverse;
  }
  .gdru-li-ri {
    display: block;
    position: unset;
  }
  .gdru-li.active .gdru-li-ri p {
    font-size: 30px;
  }
  .group-deve-ri-ul {
    display: -moz-box;
    display: flex;
    overflow: visible;
  }
  .gdru-li {
    width: 100vw;
    max-width: 100%;
    flex-shrink: 0;
    -moz-box-sizing: border-box;
         box-sizing: border-box;
    padding: 0 0.2rem;
  }
  .group-deve-arrows-mobile {
    display: -moz-box !important;
    display: flex !important;
    -moz-box-pack: center;
         justify-content: center;
    gap: 0.2rem;
    margin-top: 0.3rem;
  }
  .group-prod {
    padding: 0.8rem 0;
  }
  .group-prod-le {
    width: 58%;
  }
  .group-prod-run {
    width: 62%;
    right: -16%;
  }
  .gcase-text .gcase-tit {
    font-size: var(--font-size-26);
    margin-bottom: 0.24rem;
  }
  .gcaseVertSwiper {
    height: auto;
  }
  .group-case-arrows {
    margin-top: 0.3rem;
  }
}
@media screen and (max-width: 768px) {
  .group-cult-wrap {
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
         flex-direction: column;
    height: auto;
  }
  .gcw-card.gcw-tall,
  .gcw-mid {
    width: 100%;
  }
  .gcw-card.gcw-tall {
    height: 4.2rem;
    margin-bottom: 0.2rem;
  }
  .gcw-mid {
    display: block;
  }
  .gcw-mid .gcw-card {
    height: 4.2rem;
    margin-bottom: 0.2rem;
  }
  .group-deve-wrap {
    height: auto;
  }
  .group-deve-le-num,
  .gdlu-li-text {
    font-size: 0.72rem;
  }
  .group-deve-le-fr {
    right: -0.3rem;
  }
  .group-deve-arrows .arrows-icon {
    width: 0.4rem;
    height: 0.4rem;
  }
  .group-deve-ri {
    display: -moz-box;
    display: flex;
    -moz-box-orient: vertical;
    -moz-box-direction: reverse;
         flex-direction: column-reverse;
  }
  .group-deve-arrows-mobile {
    -moz-box-pack: start;
         justify-content: flex-start;
    margin-top: 0px;
    margin-bottom: 20px;
  }
  .group-prod-le {
    width: 100%;
  }
  .group-prod-run {
    width: 100%;
    position: unset;
    -moz-transform: none;
     -ms-transform: none;
         transform: none;
    height: max(3rem, 100px);
    margin-top: 20px;
  }
  .gpl-ul {
    flex-wrap: wrap;
  }
  .gpl-li {
    width: 50%;
    margin-right: 0;
    margin-bottom: 0.3rem;
  }
  .group-case-wrap {
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
         flex-direction: column;
  }
  .group-case-le {
    width: 100%;
    -moz-box-ordinal-group: 3;
         order: 2;
    margin-top: 0.3rem;
  }
  .group-case-ri {
    width: 100%;
    -moz-box-ordinal-group: 2;
         order: 1;
  }
  .gcaseVertSwiper {
    height: auto;
  }
}
/* ========================================
   49. 关于我们页 - group 模块 - 结束
   ======================================== */
/* ========================================
   50. 应用详情页 - Application Detail (appd) - 开始
   ======================================== */
/* —— 预约表单 —— */
.appd-book {
  padding-top: 0.4rem;
  padding-bottom: 0.7rem;
  background: #f5f5f5;
}

.appd-book-card {
  display: -moz-box;
  display: flex;
  -moz-box-align: start;
       align-items: flex-start;
  -moz-box-pack: justify;
       justify-content: space-between;
  background: #fff;
  border-radius: 0.08rem;
  padding: 0.47rem 0.47rem 0.41rem 0.43rem;
}
.appd-book-card form {
  width: 100%;
}

.appd-book-le {
  width: 100%;
  padding-right: 0.26rem;
  display: -moz-box;
  display: flex;
  flex-wrap: wrap;
  -moz-box-pack: justify;
       justify-content: space-between;
}

.appd-book-item {
  width: 32%;
  margin-bottom: 0.15rem;
}

.appd-book-item input {
  width: 100%;
  height: max(0.54rem, 40px);
  border: 1px solid rgba(51, 51, 51, 0.3);
  border-radius: 0.06rem;
  padding: 0 0.16rem;
  font-size: var(--font-size-16);
  color: var(--color-text);
  font-family: var(--font-regular);
}

.appd-book-item input::-webkit-input-placeholder {
  color: #666;
}

.appd-book-item input:-ms-input-placeholder {
  color: #666;
}

.appd-book-item input::placeholder {
  color: #666;
}

.appd-book-agree {
  width: 100%;
  -moz-box-align: center;
       align-items: center;
  flex-wrap: wrap;
  margin-top: 0.06rem;
}

.appd-book-agree .checkboxinput {
  margin-right: 0.08rem;
  flex-shrink: 0;
}

.appd-book-agree-word {
  font-size: var(--font-size-14);
  color: #666;
}

.appd-book-agree-word a {
  color: var(--color-primary);
  text-decoration: underline;
}

.appd-book-ri {
  width: 1.45rem;
  flex-shrink: 0;
  margin-top: 0.05rem;
}

.appd-book-ri .stbtanc {
  width: 100%;
  min-width: auto;
  height: max(0.44rem, 40px);
  border-radius: 0.8rem;
  background: var(--color-primary);
  border: solid 1px var(--color-primary);
  color: #fff;
  font-size: var(--font-size-16);
  -moz-transition: all 550ms;
  transition: all 550ms;
  -webkit-transition: all 550ms;
}

.appd-book-ri .stbtanc:hover {
  -moz-transform: translateY(-2px);
   -ms-transform: translateY(-2px);
       transform: translateY(-2px);
  -webkit-transform: translateY(-2px);
  background: var(--color-link);
  color: #fff;
}

.appd-list {
  padding-top: 0.8rem;
  padding-bottom: 0.5rem;
}

.appd-list-item {
  width: 100%;
}

.appd-cta-ri {
  flex-shrink: 0;
}

.appd-list-mid {
  display: -moz-box;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.appd-list-top {
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: center;
       justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 0.3rem;
  text-align: center;
}

.appd-list-title {
  width: 100%;
  font-size: var(--font-size-44);
}
.appd-list-title em {
  font-style: normal;
  color: var(--color-primary);
}

.appd-list-subtit em {
  font-style: normal;
  color: var(--color-primary);
}

.appd-list-img-list {
  display: -moz-box;
  display: flex;
  -moz-box-pack: start;
       justify-content: flex-start;
  gap: 0.3rem;
}

.appd-item-desc {
  bottom: 0.2rem;
  position: absolute;
  width: 100%;
  text-align: center;
  color: #fff;
  line-height: 1.2;
  padding-left: 0.2rem;
  padding-right: 0.2rem;
}

.appd-list-img-item {
  overflow: hidden;
  -moz-box-flex: 1;
       flex: 1;
  position: relative;
}
.appd-list-img-item::before {
  content: "";
  position: absolute;
  left: 0px;
  bottom: 0px;
  background: var(--color-primary);
  height: max(0.06rem, 6px);
  width: 100%;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.appd-list-img-item:hover::before {
  background: var(--color-vi);
}

.appd-points {
  display: -moz-box;
  display: flex;
  flex-wrap: wrap;
  gap: 0.2rem;
}

.appd-points-item {
  width: 100%;
  display: grid;
  gap: 0.3rem;
}

.appd-points-img {
  position: relative;
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: justify;
       justify-content: space-between;
}
.appd-points-img img {
  width: 49%;
  height: 100%;
  object-fit: cover;
}
.appd-points-img img:hover {
  -moz-transform: scale(1.03);
   -ms-transform: scale(1.03);
       transform: scale(1.03);
}
.appd-points-img:nth-child(2n) {
  -moz-box-orient: horizontal;
  -moz-box-direction: reverse;
       flex-flow: row-reverse;
}

.appd-points-kk {
  width: 48%;
}

.appd-points-title {
  font-size: var(--font-size-30);
  font-family: "wxsb", Arial, Helvetica, sans-serif;
  margin-bottom: 0.2rem;
}

.appd-small-cj-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.2rem;
}

.appd-small-cj {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.appd-small-cj:hover img {
  -moz-transform: scale(1.03);
   -ms-transform: scale(1.03);
       transform: scale(1.03);
}
.appd-small-cj .appd-small-cj-title {
  position: absolute;
  padding: 0.1rem;
  bottom: 0px;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  font-size: var(--font-size-20);
  font-family: "wxsb", Arial, Helvetica, sans-serif;
  text-align: center;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .appd-small-cj-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 520px) {
  .appd-small-cj-list {
    grid-template-columns: repeat(1, 1fr);
  }
}
/* —— 底部预约 CTA —— */
.appd-cta {
  padding-bottom: 1.5rem;
  overflow: hidden;
}

.appd-cta-wrap {
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: justify;
       justify-content: space-between;
  padding: 0.59rem 0 0.86rem;
  border-top: solid 1px #cacaca;
  border-bottom: solid 1px #cacaca;
}

.appd-cta-sub {
  display: block;
  font-size: var(--font-size-24);
  color: var(--color-text);
  font-family: var(--font-regular);
  line-height: 1.4;
  margin-bottom: 0.08rem;
}

.appd-cta-title {
  font-size: var(--font-size-40);
  color: var(--color-text);
  font-family: var(--font-bold);
  line-height: 1.4;
}

.appd-cta-title span {
  color: var(--color-primary);
}

.appd-btn {
  display: -moz-inline-box;
  display: inline-flex;
  -moz-box-align: center;
       align-items: center;
  padding: 0.08rem 0.08rem 0.08rem 0.26rem;
  background: var(--color-primary);
  border-radius: 0.8rem;
  -moz-transition: all 550ms;
  transition: all 550ms;
  -webkit-transition: all 550ms;
  cursor: pointer;
}

.appd-btn p {
  font-size: var(--font-size-16);
  color: #fff;
  line-height: 1.75;
}

.appd-btn-icon {
  width: 0.36rem;
  height: 0.36rem;
  border-radius: 50%;
  background: #fff;
  margin-left: 0.25rem;
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: center;
       justify-content: center;
  flex-shrink: 0;
}

.appd-btn-icon i {
  font-size: 0.14rem;
  color: var(--color-primary);
}

.appd-btn:hover {
  background: var(--color-link);
  -moz-transform: translateY(-2px);
   -ms-transform: translateY(-2px);
       transform: translateY(-2px);
  -webkit-transform: translateY(-2px);
}

/* —— 服务流程 —— */
.appd-liucheng-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.2rem;
}

.appd-liucheng-item {
  position: relative;
  background: #f8f9fa;
  border-radius: 12px;
  padding: 0.32rem 0.24rem;
  -moz-transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}
.appd-liucheng-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--color-primary);
  -moz-transform: scaleX(0);
   -ms-transform: scaleX(0);
       transform: scaleX(0);
  -moz-transform-origin: left;
   -ms-transform-origin: left;
       transform-origin: left;
  -moz-transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), -moz-transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), -moz-transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.appd-liucheng-item:hover {
  background: #fff;
  -moz-transform: translateY(-4px);
   -ms-transform: translateY(-4px);
       transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}
.appd-liucheng-item:hover::after {
  -moz-transform: scaleX(1);
   -ms-transform: scaleX(1);
       transform: scaleX(1);
}
.appd-liucheng-item:hover .appd-liucheng-icon {
  background: var(--color-primary);
}
.appd-liucheng-item:hover .appd-liucheng-icon img {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
.appd-liucheng-item:hover .appd-liucheng-num {
  color: var(--color-primary);
}

.appd-liucheng-num {
  display: block;
  font-size: var(--font-size-48);
  font-family: var(--font-bold);
  color: #e8e8e8;
  line-height: 1;
  margin-bottom: 0.16rem;
  -moz-transition: color 0.4s ease;
  transition: color 0.4s ease;
}

.appd-liucheng-icon {
  width: max(0.52rem, 40px);
  height: max(0.52rem, 40px);
  border-radius: 12px;
  background: rgba(8, 106, 103, 0.08);
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: center;
       justify-content: center;
  margin-bottom: 0.16rem;
  -moz-transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.appd-liucheng-icon img {
  width: 0.28rem;
  height: 0.28rem;
}

.appd-liucheng-title {
  font-size: var(--font-size-20);
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.08rem;
  line-height: 1.4;
}

.appd-liucheng-desc {
  color: var(--color-6666);
  margin: 0;
}

@media screen and (max-width: 991px) {
  .appd-book-card {
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
         flex-direction: column;
    padding: 0.4rem;
  }
  .appd-book-le {
    width: 100%;
    padding-right: 0;
  }
  .appd-book-item {
    width: 48%;
  }
  .appd-book-ri {
    width: 100%;
    margin-top: 0.2rem;
  }
  .appd-list {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
  .appd-list-word {
    margin-bottom: 0.3rem;
  }
  .appd-list-img-mb {
    margin-bottom: 0.4rem;
  }
  .appd-list-subtit::before,
  .appd-list-subtit::after {
    width: -moz-calc(50% - 1.4rem);
    width: calc(50% - 1.4rem);
  }
  .appd-cta-wrap {
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
         flex-direction: column;
    -moz-box-align: start;
         align-items: flex-start;
    padding: 0.4rem 0;
  }
  .appd-cta-le {
    margin-bottom: 0.3rem;
  }
  .appd-liucheng-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.15rem;
  }
  .appd-liucheng-item {
    padding: 0.24rem 0.2rem;
  }
  .appd-liucheng-num {
    font-size: var(--font-size-36);
  }
}
@media screen and (max-width: 768px) {
  .appd-list-img-list {
    flex-wrap: wrap;
    -moz-box-pack: justify;
         justify-content: space-between;
    gap: 0px;
    row-gap: 20px;
  }
  .appd-list-img-item {
    -moz-box-flex: unset;
         flex: unset;
    width: 49%;
  }
  .appd-points-item {
    display: block;
  }
  .appd-points-img {
    flex-wrap: wrap;
    margin-bottom: 30px;
  }
  .appd-points-img img {
    width: 100%;
    margin-bottom: 10px;
  }
  .appd-points-img:nth-child(2n) {
    display: block;
  }
  .appd-points-kk {
    width: 100%;
  }
  .appd-book-title {
    padding-top: 0.6rem;
  }
  .appd-book-item {
    width: 100%;
  }
  .appd-list-subtit::before,
  .appd-list-subtit::after {
    display: none;
  }
  .appd-list-subtit p {
    padding: 0;
  }
  .appd-liucheng-list {
    grid-template-columns: 1fr;
    gap: 0.12rem;
  }
  .appd-liucheng-item {
    padding: 0.2rem;
  }
  .appd-liucheng-num {
    font-size: var(--font-size-28);
    margin-bottom: 0.1rem;
  }
}
/* ========================================
   50. 应用详情页 - Application Detail (appd) - 结束
   ======================================== */
/* ========================================
   51. 应用场景页 - Classic Cases (group-case) - 开始
   ======================================== */
.group-case {
  position: relative;
  overflow: hidden;
  padding: 1.2rem 0;
}

.group-case-wrap {
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
}

.group-case-le {
  width: 40%;
  padding-right: 0.6rem;
}
.group-case-le .swiper-button-next {
  right: -0.6rem;
  width: max(0.4rem, 30px);
  height: max(0.4rem, 30px);
  border-radius: 50%;
  border: 1px solid var(--color-primary);
  background: var(--color-primary);
}
.group-case-le .swiper-button-next::after {
  font-size: var(--font-size-20);
  color: #fff;
}
.group-case-le .swiper-button-prev {
  left: -0.6rem;
  width: max(0.4rem, 30px);
  height: max(0.4rem, 30px);
  border-radius: 50%;
  border: 1px solid var(--color-primary);
  background: var(--color-primary);
}
.group-case-le .swiper-button-prev::after {
  font-size: var(--font-size-20);
  color: #fff;
}
.group-case-le .swiper-button-next:hover,
.group-case-le .swiper-button-prev:hover {
  background: var(--color-vi);
  border-color: var(--color-vi);
}
.group-case-le .swiper-button-next:hover::after,
.group-case-le .swiper-button-prev:hover::after {
  color: #fff;
}

@media screen and (max-width: 991px) {
  .group-case-le .swiper-button-next {
    right: 0px;
  }
  .group-case-le .swiper-button-prev {
    left: 0px;
  }
}
.gcase-text {
  display: -moz-inline-box;
  display: inline-flex;
  flex-wrap: wrap;
  -moz-box-pack: start;
       justify-content: flex-start;
  align-content: baseline;
  padding-bottom: 0.2rem;
}
.gcase-text em {
  color: var(--color-primary);
  font-style: normal;
}

.gcase-tit {
  font-size: var(--font-size-30);
  color: var(--color-text);
  font-family: var(--font-bold);
  width: 100%;
}

.gcase-more {
  display: -moz-inline-box;
  display: inline-flex;
  -moz-box-align: center;
       align-items: center;
  padding: 0.07rem 0.08rem 0.07rem 0.26rem;
  background: #fff;
  border: solid 1px var(--color-text);
  border-radius: 0.8rem;
  cursor: pointer;
  -moz-transition: all 550ms;
  transition: all 550ms;
  -webkit-transition: all 550ms;
}

.gcase-more span {
  font-size: var(--font-size-16);
  color: var(--color-text);
  line-height: 1.75;
}

.gcase-more i {
  width: 0.36rem;
  height: 0.36rem;
  border-radius: 50%;
  margin-left: 0.25rem;
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: center;
       justify-content: center;
  flex-shrink: 0;
  font-size: 0.14rem;
  color: var(--color-primary);
}

.gcase-more:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.gcase-more:hover span {
  color: #fff;
}

/* —— 右侧竖向轮播 —— */
.group-case-ri {
  width: 55%;
  position: relative;
  height: 5rem;
}

.gcaseVertSwiper {
  width: 100%;
  height: 100%;
}

.gcase-img {
  opacity: 0.3;
  -moz-transition: all 550ms;
  transition: all 550ms;
  -webkit-transition: all 550ms;
}

.gcase-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  -moz-transition: all 550ms;
  transition: all 550ms;
  -webkit-transition: all 550ms;
}

.gcase-img.swiper-slide-active {
  opacity: 1;
}

.gcase-img.swiper-slide-active img {
  opacity: 1;
  -moz-transform: scale(1);
   -ms-transform: scale(1);
       transform: scale(1);
}

/* —— Swiper 原生导航按钮 —— */
.group-case-ri .swiper-button-prev,
.group-case-ri .swiper-button-next {
  width: 0.44rem;
  height: 0.44rem;
  margin: 0;
  border-radius: 50%;
  border: solid 1px #c9c9c9;
  background: transparent;
  -moz-transition: all 550ms;
  transition: all 550ms;
  -webkit-transition: all 550ms;
}

.group-case-ri .swiper-button-prev::after,
.group-case-ri .swiper-button-next::after {
  font-size: 0.14rem;
  color: var(--color-text);
  -moz-transition: all 550ms;
  transition: all 550ms;
  -webkit-transition: all 550ms;
}

.group-case-ri .swiper-button-prev:hover,
.group-case-ri .swiper-button-next:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.group-case-ri .swiper-button-prev:hover::after,
.group-case-ri .swiper-button-next:hover::after {
  color: #fff;
}

@media screen and (max-width: 991px) {
  .group-case {
    padding: 0.6rem 0;
  }
  .group-case-wrap {
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
         flex-direction: column;
  }
  .group-case-le {
    width: 100%;
    padding-right: 0;
    margin-bottom: 0.4rem;
  }
  .group-case-ri {
    width: 100%;
    height: auto;
  }
}
/* ========================================
   51. 应用场景页 - Classic Cases (group-case) - 结束
   ======================================== */
/* ========================================
   52. 品质保障页 - Quality Assurance / Certifications (qa-cert) - 开始
   ======================================== */
.qa-cert {
  background: -moz-linear-gradient(top, #FFF 2.02%, #D1ECF6 51.05%);
  background: linear-gradient(180deg, #FFF 2.02%, #D1ECF6 51.05%);
  position: relative;
  overflow: hidden;
  z-index: 1;
  padding: 1.2rem 0 0;
}

.qa-cert-bg {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.qa-cert-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.qa-cert-top {
  position: relative;
}

.qa-cert-top-space {
  height: 1.1rem;
}

.qa-cert-tabs {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  display: -moz-box;
  display: flex;
  -moz-box-align: end;
       align-items: flex-end;
  flex-wrap: wrap;
}

.qa-cert-tab {
  position: relative;
  background: -moz-linear-gradient(bottom, rgba(255, 255, 255, 0) -9%, rgb(255, 255, 255) 62%);
  background: linear-gradient(0deg, rgba(255, 255, 255, 0) -9%, rgb(255, 255, 255) 62%);
  cursor: pointer;
}

.qa-cert-tab-box {
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: center;
       justify-content: center;
  position: relative;
  border-right: 1px solid #E5E5E5;
  padding: 0.1rem 0.3rem;
  -moz-transition: all 550ms;
  transition: all 550ms;
  -webkit-transition: all 550ms;
}

.qa-cert-tab-icon {
  width: max(0.6rem, 40px);
  height: max(0.6rem, 40px);
  flex-shrink: 0;
  font-size: 0;
  margin-right: 0.26rem;
  position: relative;
}

.qa-cert-tab-icon img {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.qa-cert-tab-box p {
  font-size: var(--font-size-20);
  line-height: 1.75;
  color: #333;
}

.qa-cert-tab-box p sup {
  font-size: 0.12rem;
}

.qa-cert-tab.active .qa-cert-tab-box::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  -moz-transform: translateX(-50%);
   -ms-transform: translateX(-50%);
       transform: translateX(-50%);
  width: 100%;
  height: 3px;
  background: #008600;
}

.qa-cert-body {
  overflow: hidden;
  background: #fff;
  margin-bottom: 0.4rem;
}

.qa-cert-panel {
  display: none;
}

.qa-cert-panel.show {
  display: block;
}

.qa-cert-panel-inner {
  padding: 0.7rem 0.92rem 0.82rem;
}

.qa-cert-header {
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: justify;
       justify-content: space-between;
  padding-right: 0.78rem;
  padding-bottom: 0.36rem;
  border-bottom: solid 1px #ECECEC;
  margin-bottom: 0.43rem;
}

.qa-cert-header-le {
  width: 55%;
  padding-right: 0.4rem;
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
}

.qa-cert-header-icon {
  width: 1.62rem;
  flex-shrink: 0;
  margin-right: 0.1rem;
}

.qa-cert-header-icon img {
  width: 100%;
}

.qa-cert-header-title {
  font-size: var(--font-size-30);
  line-height: 1.75;
  color: #333;
  font-family: var(--font-bold);
  margin-bottom: 0.12rem;
}

.qa-cert-header-title sup {
  font-size: 0.16rem;
}

.qa-cert-header-ri {
  width: 45%;
}

.qa-cert-header-ri p {
  font-size: var(--font-size-20);
  line-height: 1.75;
  color: #333;
}

.qa-cert-detail h5 {
  font-size: var(--font-size-20);
  line-height: 1.75;
  margin-bottom: 0.15rem;
  color: #333;
  font-family: var(--font-bold);
}

.qa-cert-detail p {
  color: #666;
  line-height: 1.75;
  font-size: var(--font-size-16);
  margin-bottom: 0.12rem;
}

.qa-cert-detail-img {
  margin-top: 0.2rem;
}

.qa-cert-detail-img img {
  max-width: 100%;
  width: auto;
}

/* ========================================
   52. 品质保障页 - Quality Assurance / Certifications (qa-cert) - 结束
   ======================================== */
/* 响应式样式 */
@media screen and (max-width: 1279px) {
  .qa-cert-panel-inner {
    padding: 0.5rem 0.6rem 0.6rem;
  }
  .qa-cert-header {
    padding-right: 0.5rem;
    padding-bottom: 0.3rem;
    margin-bottom: 0.3rem;
  }
  .qa-cert-header-le {
    width: 50%;
    padding-right: 0.3rem;
  }
  .qa-cert-header-ri {
    width: 50%;
  }
  .qa-cert-header-title {
    font-size: var(--font-size-26);
  }
  .qa-cert-header-icon {
    width: 1.4rem;
  }
}
@media screen and (max-width: 991px) {
  .qa-cert {
    padding: 0.8rem 0 0;
  }
  .qa-cert-top-space {
    height: 0.8rem;
  }
  .qa-cert-tab-box {
    padding: 0.08rem 0.2rem;
  }
  .qa-cert-tab-icon {
    width: max(0.5rem, 35px);
    height: max(0.5rem, 35px);
    margin-right: 0.15rem;
  }
  .qa-cert-tab-box p sup {
    font-size: 0.1rem;
  }
  .qa-cert-panel-inner {
    padding: 0.4rem 0.5rem 0.5rem;
  }
  .qa-cert-header {
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
         flex-direction: column;
    -moz-box-align: start;
         align-items: flex-start;
    padding-right: 0;
    padding-bottom: 0.25rem;
    margin-bottom: 0.25rem;
  }
  .qa-cert-header-le {
    width: 100%;
    padding-right: 0;
    margin-bottom: 0.15rem;
    flex-wrap: wrap;
  }
  .qa-cert-header-info {
    width: 100%;
  }
  .qa-cert-header-ri {
    width: 100%;
  }
  .qa-cert-header-title {
    font-size: var(--font-size-22);
  }
  .qa-cert-header-icon {
    margin-right: 0.08rem;
  }
  .qa-cert-header-ri p {
    font-size: var(--font-size-16);
  }
  .qa-cert-detail h5 {
    font-size: var(--font-size-18);
  }
  .qa-cert-detail p {
    font-size: var(--font-size-14);
  }
}
@media screen and (max-width: 768px) {
  .qa-cert {
    padding: 0.6rem 0 0;
  }
  .qa-cert-top-space {
    height: 0.6rem;
  }
  .qa-cert-tabs {
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
         flex-direction: column;
    -moz-box-align: stretch;
         align-items: stretch;
    position: relative;
    bottom: auto;
    left: auto;
    background: #fff;
    margin-bottom: 0.2rem;
  }
  .qa-cert-tab {
    border-bottom: 1px solid #E5E5E5;
  }
  .qa-cert-tab:last-child {
    border-bottom: none;
  }
  .qa-cert-tab-box {
    padding: 0.1rem 0.15rem;
    -moz-box-pack: start;
         justify-content: flex-start;
    border-right: none;
  }
  .qa-cert-tab-icon {
    width: max(0.4rem, 30px);
    height: max(0.4rem, 30px);
    margin-right: 0.1rem;
  }
  .qa-cert-tab.active .qa-cert-tab-box::after {
    width: 3px;
    height: 100%;
    top: 0;
    left: 0;
    -moz-transform: none;
     -ms-transform: none;
         transform: none;
  }
  .qa-cert-body {
    margin-bottom: 0.2rem;
  }
  .qa-cert-panel-inner {
    padding: 0.3rem 0.2rem 0.4rem;
  }
  .qa-cert-header {
    padding-bottom: 0.2rem;
    margin-bottom: 0.2rem;
  }
  .qa-cert-header-le {
    margin-bottom: 0.1rem;
  }
  .qa-cert-header-icon {
    margin-right: 0.06rem;
  }
  .qa-cert-header-title {
    font-size: var(--font-size-18);
    line-height: 1.5;
  }
  .qa-cert-header-title sup {
    font-size: 0.12rem;
  }
  .qa-cert-header-ri p {
    font-size: var(--font-size-14);
    line-height: 1.5;
  }
  .qa-cert-detail h5 {
    font-size: var(--font-size-16);
    line-height: 1.5;
    margin-bottom: 0.1rem;
  }
  .qa-cert-detail p {
    font-size: var(--font-size-13);
    line-height: 1.6;
    margin-bottom: 0.1rem;
  }
  .qa-cert-detail-img {
    margin-top: 0.15rem;
  }
}
.muban-newsxq {
  padding-top: 0.6rem;
  padding-bottom: 0.8rem;
}

.muban-newsxq-kuang {
  display: -moz-box;
  display: flex;
  -moz-box-align: start;
       align-items: flex-start;
  -moz-box-pack: justify;
       justify-content: space-between;
}

.muban-newsxq-left {
  width: 18%;
  position: -webkit-sticky;
  position: sticky;
  top: 1rem;
}

.muban-newsxq-center {
  width: 56%;
}

.muban-newsxq-right {
  width: 24%;
  align-self: stretch;
}

.muban-newsxq-left .new-maodian-div {
  border-radius: 5px;
  background: #fff;
  padding: var(--font-size-20);
  box-shadow: 0px 4px 32px 0px rgba(167, 167, 167, 0.3);
}
.muban-newsxq-left .new-maodian-div .new-maodian-title {
  font-size: var(--font-size-24);
  color: var(--color-text);
  margin-bottom: 0.26rem;
  font-family: "wxb", Arial, Helvetica, sans-serif;
}
.muban-newsxq-left .new-maodian-div .new-maodian-toggle {
  display: none;
}
.muban-newsxq-left .new-maodian-div #toc a {
  display: block;
  font-size: var(--font-size-18);
  color: #666666;
  margin-bottom: 0.2rem;
  -moz-transition: all 550ms;
  transition: all 550ms;
  -webkit-transition: all 550ms;
}
.muban-newsxq-left .new-maodian-div #toc a:hover {
  color: var(--color-primary);
  font-weight: bold;
}

.muban-newsxq-center .newsxq-contact {
  font-size: 16px;
  background-color: #ffffff;
  border-radius: 5px;
  padding: var(--font-size-30);
  box-shadow: 0px 4px 32px 0px rgba(167, 167, 167, 0.3);
}
.muban-newsxq-center .newsxq-contact h1 {
  font-size: var(--font-size-40);
  margin-bottom: var(--font-size-30);
  color: var(--color-text);
}
.muban-newsxq-center .newsxq-contact h2,
.muban-newsxq-center .newsxq-contact h3 {
  font-size: var(--font-size-28);
  margin-top: 0.3rem;
  margin-bottom: 0.15rem;
  color: var(--color-text);
}
.muban-newsxq-center .newsxq-contact .newxq-data {
  display: -moz-box;
  display: flex;
  flex-wrap: wrap;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: start;
       justify-content: flex-start;
  margin-bottom: 0.2rem;
  padding-bottom: 0.2rem;
  border-bottom: 1px solid #eee;
}
.muban-newsxq-center .newsxq-contact .newxq-data p {
  margin-right: 10%;
  font-size: var(--font-size-16);
  color: #999;
}
.muban-newsxq-center .newsxq-contact .newsxq-contact-div {
  border-top: none;
  border-bottom: none;
  padding-top: 0;
  padding-bottom: 0;
  font-size: var(--font-size-18);
}
.muban-newsxq-center .newsxq-contact .newsxq-contact-div p {
  margin-bottom: 0.15rem;
  color: var(--color-text);
}
.muban-newsxq-center .newsxq-contact .newsxq-contact-div img {
  display: block;
  border-radius: 10px;
  margin: 0.2rem 0;
}
.muban-newsxq-center .newsxq-contact .newsxq-contact-bottom {
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: justify;
       justify-content: space-between;
  padding-top: 0.4rem;
  margin-top: 0.4rem;
  border-top: 1px solid #eee;
}
.muban-newsxq-center .newsxq-contact .newsxq-contact-bottom a {
  -moz-transition: all 550ms;
  transition: all 550ms;
  -webkit-transition: all 550ms;
}
.muban-newsxq-center .newsxq-contact .newsxq-contact-bottom a:hover {
  font-weight: bold;
}
.muban-newsxq-center .newsxq-contact .newsxq-contact-bottom .prev {
  color: var(--color-primary);
}
.muban-newsxq-center .newsxq-contact .newsxq-contact-bottom .prev .iconfont {
  font-size: var(--font-size-30);
}
.muban-newsxq-center .newsxq-contact .newsxq-contact-bottom .next {
  color: var(--color-text);
}
.muban-newsxq-center .newsxq-contact .newsxq-contact-bottom .next .iconfont {
  font-size: var(--font-size-30);
}
.muban-newsxq-center .newsxq-contact .newsxq-contact-bottom .news-list {
  min-width: 2.2rem;
  background: var(--color-vi);
  border-radius: 25px;
  text-align: center;
  font-size: var(--font-size-18);
  padding: 0.1rem 0.3rem;
  color: #fff;
  font-family: "wxb", Arial, Helvetica, sans-serif;
}
.muban-newsxq-center .newsxq-contact .newsxq-contact-bottom .news-list:hover {
  color: #fff;
  background: var(--color-primary);
}

.muban-newsxq-right .newsxq-sidebar {
  height: 100%;
}
.muban-newsxq-right .newsxq-sidebar .newsxq-sidebar-box {
  background: #fff;
  border-radius: 5px;
  padding: var(--font-size-20);
  margin-bottom: 0.2rem;
  box-shadow: 0px 4px 32px 0px rgba(167, 167, 167, 0.3);
}
.muban-newsxq-right .newsxq-sidebar .newsxq-sidebar-box.formbox {
  position: -webkit-sticky;
  position: sticky;
  top: 1rem;
  z-index: 1;
}
.muban-newsxq-right .newsxq-sidebar .newsxq-sidebar-title {
  font-size: var(--font-size-24);
  color: var(--color-text);
  font-family: var(--font-bold);
  margin-bottom: 0.2rem;
  padding-bottom: 0.15rem;
  border-bottom: 2px solid var(--color-primary);
}
.muban-newsxq-right .newsxq-sidebar .newsxq-sidebar-list a {
  display: block;
  font-size: var(--font-size-18);
  color: #666;
  padding: 0.12rem 0;
  border-bottom: 1px solid #f0f0f0;
  -moz-transition: all 550ms;
  transition: all 550ms;
  -webkit-transition: all 550ms;
}
.muban-newsxq-right .newsxq-sidebar .newsxq-sidebar-list a:last-child {
  border-bottom: none;
}
.muban-newsxq-right .newsxq-sidebar .newsxq-sidebar-list a:hover, .muban-newsxq-right .newsxq-sidebar .newsxq-sidebar-list a.active {
  color: var(--color-primary);
  padding-left: 0.1rem;
}
.muban-newsxq-right .newsxq-sidebar .newsxq-sidebar-case .newsxq-case-item {
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  margin-bottom: 0.15rem;
  padding-bottom: 0.15rem;
  border-bottom: 1px solid #f0f0f0;
}
.muban-newsxq-right .newsxq-sidebar .newsxq-sidebar-case .newsxq-case-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.muban-newsxq-right .newsxq-sidebar .newsxq-sidebar-case .newsxq-case-item:hover .newsxq-case-name {
  color: var(--color-primary);
}
.muban-newsxq-right .newsxq-sidebar .newsxq-sidebar-case .newsxq-case-img {
  aspect-ratio: 4/3;
  width: max(0.8rem, 80px);
  border-radius: 4px;
  overflow: hidden;
  margin-right: 0.12rem;
}
.muban-newsxq-right .newsxq-sidebar .newsxq-sidebar-case .newsxq-case-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.muban-newsxq-right .newsxq-sidebar .newsxq-sidebar-case .newsxq-case-info {
  -moz-box-flex: 1;
       flex: 1;
}
.muban-newsxq-right .newsxq-sidebar .newsxq-sidebar-case .newsxq-case-name {
  font-size: var(--font-size-16);
  color: var(--color-text);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -moz-transition: all 550ms;
  transition: all 550ms;
  -webkit-transition: all 550ms;
}
.muban-newsxq-right .newsxq-sidebar .newsxq-sidebar-case .newsxq-case-date {
  font-size: var(--font-size-14);
  color: #999;
  margin-top: 0.05rem;
}
.muban-newsxq-right .newsxq-sidebar .newsxq-sidebar-form .form-group {
  margin-bottom: 0.15rem;
}
.muban-newsxq-right .newsxq-sidebar .newsxq-sidebar-form .form-group input[type=text],
.muban-newsxq-right .newsxq-sidebar .newsxq-sidebar-form .form-group input[type=email],
.muban-newsxq-right .newsxq-sidebar .newsxq-sidebar-form .form-group input[type=tel],
.muban-newsxq-right .newsxq-sidebar .newsxq-sidebar-form .form-group textarea {
  width: 100%;
  padding: 0.12rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: var(--font-size-16);
  -moz-transition: all 550ms;
  transition: all 550ms;
  -webkit-transition: all 550ms;
}
.muban-newsxq-right .newsxq-sidebar .newsxq-sidebar-form .form-group input[type=text]:focus,
.muban-newsxq-right .newsxq-sidebar .newsxq-sidebar-form .form-group input[type=email]:focus,
.muban-newsxq-right .newsxq-sidebar .newsxq-sidebar-form .form-group input[type=tel]:focus,
.muban-newsxq-right .newsxq-sidebar .newsxq-sidebar-form .form-group textarea:focus {
  border-color: var(--color-primary);
  outline: none;
}
.muban-newsxq-right .newsxq-sidebar .newsxq-sidebar-form .form-group a {
  color: var(--color-primary);
}
.muban-newsxq-right .newsxq-sidebar .newsxq-sidebar-form .form-group textarea {
  height: 100px;
  resize: vertical;
}
.muban-newsxq-right .newsxq-sidebar .newsxq-sidebar-form .form-group .checkboxinput {
  width: max(0.14rem, 14px);
  height: max(0.14rem, 14px);
  margin-right: 0.05rem;
}
.muban-newsxq-right .newsxq-sidebar .newsxq-sidebar-form .form-group p {
  font-size: var(--font-size-14);
  color: #666;
}
.muban-newsxq-right .newsxq-sidebar .newsxq-sidebar-form .form-group p a {
  color: var(--color-link);
}
.muban-newsxq-right .newsxq-sidebar .newsxq-sidebar-form .form-group .error-msg {
  color: #ff4d4f;
  font-size: var(--font-size-14);
  margin-top: 0.05rem;
}
.muban-newsxq-right .newsxq-sidebar .newsxq-sidebar-form .stbtanc {
  width: 100%;
  padding: 0.12rem;
  background: var(--color-primary);
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: var(--font-size-18);
  cursor: pointer;
  -moz-transition: all 550ms;
  transition: all 550ms;
  -webkit-transition: all 550ms;
}
.muban-newsxq-right .newsxq-sidebar .newsxq-sidebar-form .stbtanc:hover {
  background: var(--color-link);
}

@media screen and (max-width: 1280px) {
  .muban-newsxq-kuang {
    flex-wrap: wrap;
  }
  .muban-newsxq-left {
    width: 260px;
  }
  .muban-newsxq-right {
    width: 100%;
  }
  .muban-newsxq-center {
    width: -moz-calc(100% - 280px);
    width: calc(100% - 280px);
  }
}
@media screen and (max-width: 991px) {
  .muban-newsxq-kuang {
    flex-wrap: wrap;
  }
  .muban-newsxq-left {
    width: 100%;
    position: static;
    margin-bottom: 0.3rem;
  }
  .muban-newsxq-left .new-maodian-div .new-maodian-title {
    display: -moz-box;
    display: flex;
    -moz-box-align: center;
         align-items: center;
    -moz-box-pack: justify;
         justify-content: space-between;
    cursor: pointer;
    margin-bottom: 0px;
  }
  .muban-newsxq-left .new-maodian-div .new-maodian-toggle {
    display: block;
    -moz-transition: all 550ms;
    transition: all 550ms;
    -webkit-transition: all 550ms;
    font-size: var(--font-size-16);
  }
  .muban-newsxq-left .new-maodian-div .new-maodian-toggle.active {
    -moz-transform: rotate(90deg);
     -ms-transform: rotate(90deg);
         transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
  }
  .muban-newsxq-left .new-maodian-div #toc {
    max-height: 0;
    overflow: hidden;
    -moz-transition: all 550ms;
    transition: all 550ms;
    -webkit-transition: all 550ms;
  }
  .muban-newsxq-left .new-maodian-div #toc.active {
    max-height: 500px;
  }
  .muban-newsxq-left .new-maodian-div #toc a {
    display: block;
    padding: 0.1rem 0;
    border-bottom: 1px solid #f0f0f0;
  }
  .muban-newsxq-center {
    width: 100%;
  }
  .muban-newsxq-right {
    width: 100%;
    position: static;
    margin-top: 0.3rem;
  }
}
@media screen and (max-width: 768px) {
  .muban-newsxq-center .newsxq-contact {
    padding: var(--font-size-20);
  }
  .muban-newsxq-center .newsxq-contact h1 {
    font-size: var(--font-size-36);
  }
  .muban-newsxq-center .newsxq-contact h2 {
    font-size: var(--font-size-24);
  }
}
/* ========================================
   17. 新闻详情页 - 结束
   ======================================== */
/* ========================================
   19. 相关案例 Swiper - 开始
   ======================================== */
.newsxq-cases {
  padding: 0.5rem 0;
}

.newsxq-cases-title {
  font-size: var(--font-size-32);
  color: var(--color-text);
  font-family: var(--font-bold);
  text-align: center;
  margin-bottom: 0.1rem;
}

.newsxq-cases-line {
  width: 0.5rem;
  height: 3px;
  background: var(--color-primary);
  margin: 0 auto 0.35rem;
  border-radius: 2px;
}

.newsxq-cases-swiper {
  position: relative;
  overflow: hidden;
}
.newsxq-cases-swiper .swiper-pagination {
  position: unset;
  margin-top: 20px;
}

.newsxq-cases-item {
  display: block;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  height: 100%;
  -moz-transition: all 550ms;
  transition: all 550ms;
  -webkit-transition: all 550ms;
}
.newsxq-cases-item:hover {
  -moz-transform: translateY(-4px);
   -ms-transform: translateY(-4px);
       transform: translateY(-4px);
  -webkit-transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}
.newsxq-cases-item:hover .newsxq-cases-itemimg img {
  -moz-transform: scale(1.05);
   -ms-transform: scale(1.05);
       transform: scale(1.05);
  -webkit-transform: scale(1.05);
}
.newsxq-cases-item:hover .newsxq-cases-itemname {
  color: var(--color-primary);
}

.newsxq-cases-itemimg {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.newsxq-cases-itemimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -moz-transition: all 550ms;
  transition: all 550ms;
  -webkit-transition: all 550ms;
}

.newsxq-cases-iteminfo {
  padding: 0.16rem 0.2rem;
}

.newsxq-cases-itemname {
  font-size: var(--font-size-18);
  color: var(--color-text);
  font-family: var(--font-bold);
  margin-bottom: 0.06rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -moz-transition: all 550ms;
  transition: all 550ms;
  -webkit-transition: all 550ms;
}

.newsxq-cases-itemdesc {
  font-size: var(--font-size-14);
  color: #999;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.newsxq-cases-swiper .swiper-pagination-bullet {
  width: 0.08rem;
  height: 0.08rem;
  background: #ccc;
  opacity: 1;
  -moz-transition: all 550ms;
  transition: all 550ms;
  -webkit-transition: all 550ms;
}

.newsxq-cases-swiper .swiper-pagination-bullet-active {
  background: var(--color-primary);
  width: 0.24rem;
  border-radius: 0.04rem;
}

@media screen and (max-width: 991px) {
  .newsxq-cases-iteminfo {
    padding: 0.12rem 0.14rem;
  }
}
@media screen and (max-width: 768px) {
  .newsxq-cases {
    padding: 0.3rem 0;
  }
  .newsxq-cases-title {
    font-size: var(--font-size-26);
  }
  .newsxq-cases-itemimg {
    aspect-ratio: 16/10;
  }
  .newsxq-cases-itemname {
    font-size: var(--font-size-16);
  }
}
/* ========================================
   19. 相关案例 Swiper - 结束
   ======================================== */