 /*------------------------------------------------------------------text*/
 .sf-cn-title h2 {
   height: 85px;
   display: flex;
   justify-content: center;
   align-items: center;
   font-size: 40px;
   font-weight: 900;
   color: #333333;
   font-family: Noto Sans Hans;
   position: relative;
 }

 .r-padre-prm {
   font-weight: 400;
   line-height: 2.5rem;
   margin-top: 2.125rem;
   font-size: 1.5rem;
   padding: 0 4rem;
   text-align: center;
 }

 .r-padre-prm p {
   font-size: 18px;
   line-height: 1.6;
   color: #666666;
   font-family: Noto Sans Hans;
 }

 .built-to-capture-more {
   margin: 40px 0;
 }

 @media screen and (max-width: 768px) {
   .sf-cn-title h2 {
     font-size: 24px;
   }

   .r-padre-prm p {
     font-size: 16px;
   }

 }

 /*  文字位于图片左下角的样式写法

        /* 主容器 - 15列网格系统 * /
.inspire2-section-overview-container {
  display: grid;
  grid-template-columns: repeat(15, 1fr);
  grid-template-rows: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: 20px;
  max-width: 1440px;
  margin: 80px auto 0;
  padding: 0 20px;
}

/* 基础项目样式 * /
.inspire2-section-overview-item {
  position: relative;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  min-height: 320px;
}

.inspire2-section-overview-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* 精确的网格定位 * /
.inspire2-item1 {
  grid-column: 1 / 16 !important;
  grid-row: 1 / 6 !important;
}

.inspire2-item2 {
  grid-column: 1 / 10 !important;
  grid-row: 6 / 11 !important;
}

.inspire2-item3 {
  grid-column: 10 / 13 !important;
  grid-row: 6 / 11 !important;
}

.inspire2-item4 {
  grid-column: 13 / 16 !important;
  grid-row: 6 / 11 !important;
}

.inspire2-item5 {
  grid-column: 1 / 7 !important;
  grid-row: 11 / 17 !important;
}

.inspire2-item6 {
  grid-column: 7 / 13 !important;
  grid-row: 11 / 17 !important;
}

.inspire2-item7 {
  grid-column: 13 / 16 !important;
  grid-row: 11 / 15 !important;
}

.inspire2-item8 {
  grid-column: 1 / 7 !important;
  grid-row: 17 / 23 !important;
}

.inspire2-item9 {
  grid-column: 7 / 13 !important;
  grid-row: 17 / 23 !important;
}

.inspire2-item10 {
  grid-column: 13 / 16 !important;
  grid-row: 15 / 19 !important;
}

.inspire2-item11 {
  grid-column: 13 / 16 !important;
  grid-row: 19 / 23 !important;
}

/* 图片容器 * /
.inspire2-section-overview-item-img {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f9fa;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.inspire2-section-overview-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.inspire2-section-overview-item:hover .inspire2-section-overview-item-img img {
  transform: scale(1.08);
}

/* 文本内容 - 绝对定位 * /
.inspire2-section-overview-item-text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: #fff;
  z-index: 2;
}

/* 特殊样式 - 第一个大项目 * /
.inspire2-item1 .inspire2-section-overview-item-text {
  top: 35%;
  bottom: auto;
  text-align: left;
  left: 4rem;
  right: auto;
  background: none;
  color: #1a1a1a;
}

.inspire2-item1 .inspire2-section-overview-item-title {
  font-size: 40px;
  font-weight: 700;
  color: #0066cc;
  margin-bottom: 16px;
}

.inspire2-item1 .inspire2-section-overview-item-desc {
  font-size: 18px;
  color: #333;
}

/* 其他项目标题样式 * /
.inspire2-section-overview-item-title {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 8px 0;
  line-height: 1.4;
}

.inspire2-section-overview-item-desc {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.9;
}

.inspire2-section-overview-item-desc p {
  margin: 0;
}

/* 响应式图片 * /
.inspire2-pc-media {
  display: block;
}

.inspire2-mobile-media {
  display: none;
}

/* CSS变量 * /
:root {
  --text-40-24: clamp(24px, 4vw, 40px);
  --text-20-16: clamp(16px, 2vw, 20px);
  --text-14-12: clamp(12px, 1.5vw, 14px);
}

/* 平板布局 * /
@media (max-width: 1024px) {
  .inspire2-section-overview-container {
    grid-template-columns: repeat(8, 1fr);
    gap: 16px;
  }

  /* 重新定义平板上的网格位置 * /
  .inspire2-item1 {
    grid-column: 1 / 9 !important;
    grid-row: 1 / 4 !important;
  }

  .inspire2-item2 {
    grid-column: 1 / 5 !important;
    grid-row: 4 / 7 !important;
  }

  .inspire2-item3 {
    grid-column: 5 / 9 !important;
    grid-row: 4 / 7 !important;
  }

  .inspire2-item4 {
    grid-column: 1 / 5 !important;
    grid-row: 7 / 10 !important;
  }

  .inspire2-item5 {
    grid-column: 5 / 9 !important;
    grid-row: 7 / 10 !important;
  }

  .inspire2-item6 {
    grid-column: 1 / 5 !important;
    grid-row: 10 / 13 !important;
  }

  .inspire2-item7 {
    grid-column: 5 / 9 !important;
    grid-row: 10 / 13 !important;
  }

  .inspire2-item8 {
    grid-column: 1 / 5 !important;
    grid-row: 13 / 16 !important;
  }

  .inspire2-item9 {
    grid-column: 5 / 9 !important;
    grid-row: 13 / 16 !important;
  }

  .inspire2-item10 {
    grid-column: 1 / 5 !important;
    grid-row: 16 / 19 !important;
  }

  .inspire2-item11 {
    grid-column: 5 / 9 !important;
    grid-row: 16 / 19 !important;
  }
}

/* 手机布局 * /
@media (max-width: 768px) {
  .inspire2-section-overview-container {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 0 15px;
  }

  /* 移动端所有项目都占满宽度 * /
  .inspire2-section-overview-item {
    grid-column: 1 / 2 !important;
    grid-row: auto !important;
    min-height: 250px;
  }

  .inspire2-pc-media {
    display: none;
  }

  .inspire2-mobile-media {
    display: block;
  }

  .inspire2-section-overview-item-text {
    position: relative;
    background: rgba(0, 0, 0, 0.05);
    color: #1a1a1a;
    padding: 20px;
  }

  .inspire2-item1 .inspire2-section-overview-item-text {
    position: relative;
    top: auto;
    left: auto;
    padding: 20px;
  }

  .inspire2-item1 .inspire2-section-overview-item-title {
    font-size: 24px;
  }

  .inspire2-section-overview-item-title {
    font-size: 18px;
    color: #1a1a1a;
  }

  .inspire2-section-overview-item-desc {
    color: #666;
  }
}

/* 加载动画 * /
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.inspire2-section-overview-item {
  animation: fadeInUp 0.6s ease-out;
  animation-fill-mode: both;
}

/* 为每个项目设置不同的动画延迟 * /
.inspire2-item1 {
  animation-delay: 0.1s;
}

.inspire2-item2 {
  animation-delay: 0.2s;
}

.inspire2-item3 {
  animation-delay: 0.3s;
}

.inspire2-item4 {
  animation-delay: 0.4s;
}

.inspire2-item5 {
  animation-delay: 0.5s;
}

.inspire2-item6 {
  animation-delay: 0.6s;
}

.inspire2-item7 {
  animation-delay: 0.7s;
}

.inspire2-item8 {
  animation-delay: 0.8s;
}

.inspire2-item9 {
  animation-delay: 0.9s;
}

.inspire2-item10 {
  animation-delay: 1.0s;
}

.inspire2-item11 {
  animation-delay: 1.1s;
}

/* 页面布局内容最大宽度 * /
#shopify-section-template--inspire2-overview [class$="page-layout-content"] {
  --max-width: 1440px;
}

*/



 /*---------------------------------------------------------------------  <!--Overview---------------产品特点-->*/
 /* 主容器 - 15列网格系统 */
 .inspire2-section-overview-container {
   display: grid;
   grid-template-columns: repeat(15, 1fr);
   grid-template-rows: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
   gap: 20px;
   max-width: 1440px;
   margin: 80px auto 0;
   padding: 0 20px;
 }

 /* 基础项目样式 */
 .inspire2-section-overview-item {
   position: relative;
   background: #fff;
   border-radius: 16px;
   overflow: hidden;
   box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
   transition: all 0.3s ease;
   cursor: pointer;
   display: flex;
   flex-direction: column;
   min-height: 320px;
 }

 .inspire2-section-overview-item:hover {
   transform: translateY(-8px);
   box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
 }

 /* 精确的网格定位 */
 .inspire2-item1 {
   grid-column: 1 / 16 !important;
   grid-row: 1 / 6 !important;
 }

 .inspire2-item2 {
   grid-column: 1 / 10 !important;
   grid-row: 6 / 11 !important;
 }

 .inspire2-item3 {
   grid-column: 10 / 13 !important;
   grid-row: 6 / 11 !important;
 }

 .inspire2-item4 {
   grid-column: 13 / 16 !important;
   grid-row: 6 / 11 !important;
 }

 .inspire2-item5 {
   grid-column: 1 / 7 !important;
   grid-row: 11 / 17 !important;
 }

 .inspire2-item6 {
   grid-column: 7 / 13 !important;
   grid-row: 11 / 17 !important;
 }

 .inspire2-item7 {
   grid-column: 13 / 16 !important;
   grid-row: 11 / 15 !important;
 }

 .inspire2-item8 {
   grid-column: 1 / 7 !important;
   grid-row: 17 / 23 !important;
 }

 .inspire2-item9 {
   grid-column: 7 / 13 !important;
   grid-row: 17 / 23 !important;
 }

 .inspire2-item10 {
   grid-column: 13 / 16 !important;
   grid-row: 15 / 19 !important;
 }

 .inspire2-item11 {
   grid-column: 13 / 16 !important;
   grid-row: 19 / 23 !important;
 }

 /* 图片容器 */
 .inspire2-section-overview-item-img {
   position: relative;
   flex: 1;
   display: flex;
   align-items: center;
   justify-content: center;
   background: #f8f9fa;
   overflow: hidden;
   width: 100%;
   height: 100%;
 }

 .inspire2-section-overview-item-img img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   /*  transition: transform 0.5s ease;*/
 }

 /*

.inspire2-section-overview-item:hover .inspire2-section-overview-item-img img {
  transform: scale(1.08);
}
*/
 /* 文本内容 - 绝对定位 */
 .inspire2-section-overview-item-text {
   position: absolute;
   bottom: 0;
   left: 0;
   right: 0;
   padding: 24px;
   /*background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);*/
   color: #fff;
   z-index: 2;
 }

 /* 特殊样式 - 第一个大项目 */
 .inspire2-item1 .inspire2-section-overview-item-text {
   top: 35%;
   bottom: auto;
   text-align: left;
   left: 4rem;
   right: auto;
   background: none;
   color: #1a1a1a;
 }

 .inspire2-item1 .inspire2-section-overview-item-title {
   font-size: 40px;
   font-weight: 700;
   /*color: #0066cc;*/
   color: #B89C7D;
   margin-bottom: 16px;
 }

 .inspire2-item1 .inspire2-section-overview-item-desc {
   font-size: 24px;
   color: #333;
 }

 /* 项目2-11的文本样式调整 */
 .inspire2-item2 .inspire2-section-overview-item-text,
 .inspire2-item3 .inspire2-section-overview-item-text,
 .inspire2-item4 .inspire2-section-overview-item-text,
 .inspire2-item5 .inspire2-section-overview-item-text,
 .inspire2-item6 .inspire2-section-overview-item-text,
 .inspire2-item7 .inspire2-section-overview-item-text,
 .inspire2-item8 .inspire2-section-overview-item-text,
 .inspire2-item9 .inspire2-section-overview-item-text,
 .inspire2-item10 .inspire2-section-overview-item-text,
 .inspire2-item11 .inspire2-section-overview-item-text {
   position: absolute;
   /*top: 8%;*/
   top: 4.5%;
   left: 50%;
   transform: translateX(-50%);
   bottom: auto;
   /* background: rgba(255, 255, 255, 0.9);*/
   color: #1a1a1a;
   text-align: center;
   padding: 20px;
   width: 90%;
   max-width: 400px;
   border-radius: 12px;
   /*backdrop-filter: blur(10px);*/
 }

 /* 项目2-11的标题样式 */
 .inspire2-item2 .inspire2-section-overview-item-title,
 .inspire2-item3 .inspire2-section-overview-item-title,
 .inspire2-item4 .inspire2-section-overview-item-title,
 .inspire2-item5 .inspire2-section-overview-item-title,
 .inspire2-item6 .inspire2-section-overview-item-title,
 .inspire2-item7 .inspire2-section-overview-item-title,
 .inspire2-item8 .inspire2-section-overview-item-title,
 .inspire2-item9 .inspire2-section-overview-item-title,
 .inspire2-item10 .inspire2-section-overview-item-title,
 .inspire2-item11 .inspire2-section-overview-item-title {
   color: #1a1a1a;
   font-size: 26px;
   font-weight: 600;
   margin-bottom: 12px;
   font-family: Noto Sans Hans;
 }

 /* 项目2-11的描述文字样式 */
 .inspire2-item2 .inspire2-section-overview-item-desc,
 .inspire2-item3 .inspire2-section-overview-item-desc,
 .inspire2-item4 .inspire2-section-overview-item-desc,
 .inspire2-item5 .inspire2-section-overview-item-desc,
 .inspire2-item6 .inspire2-section-overview-item-desc,
 .inspire2-item7 .inspire2-section-overview-item-desc,
 .inspire2-item8 .inspire2-section-overview-item-desc,
 .inspire2-item9 .inspire2-section-overview-item-desc,
 .inspire2-item10 .inspire2-section-overview-item-desc,
 .inspire2-item11 .inspire2-section-overview-item-desc {
   color: #333;
   font-size: 20px;
   opacity: 1;
   font-family: Noto Sans Hans;
 }

 /* 针对较小的项目调整文字大小 */
 .inspire2-item3 .inspire2-section-overview-item-title,
 .inspire2-item4 .inspire2-section-overview-item-title,
 .inspire2-item7 .inspire2-section-overview-item-title,
 .inspire2-item10 .inspire2-section-overview-item-title,
 .inspire2-item11 .inspire2-section-overview-item-title {
   font-size: 20px;
 }

 .inspire2-item3 .inspire2-section-overview-item-desc,
 .inspire2-item4 .inspire2-section-overview-item-desc,
 .inspire2-item7 .inspire2-section-overview-item-desc,
 .inspire2-item10 .inspire2-section-overview-item-desc,
 .inspire2-item11 .inspire2-section-overview-item-desc {
   /*font-size: 14px;*/
   font-size: 20px;
 }

 /* 其他项目标题样式 */
 .inspire2-section-overview-item-title {
   font-size: 20px;
   font-weight: 600;
   margin: 0 0 8px 0;
   line-height: 1.4;
 }

 .inspire2-section-overview-item-desc {
   font-size: 14px;
   line-height: 1.6;
   opacity: 0.9;
 }

 .inspire2-section-overview-item-desc p {
   margin: 0;
 }

 /* 响应式图片 */
 .inspire2-pc-media {
   display: block;
 }

 .inspire2-mobile-media {
   display: none;
 }

 /* CSS变量 */
 :root {
   --text-40-24: clamp(24px, 4vw, 40px);
   --text-20-16: clamp(16px, 2vw, 20px);
   --text-14-12: clamp(12px, 1.5vw, 14px);
 }

 /* 平板布局 */
 @media (max-width: 1024px) {
   .inspire2-section-overview-container {
     grid-template-columns: repeat(8, 1fr);
     gap: 16px;
   }

   /* 重新定义平板上的网格位置 */
   .inspire2-item1 {
     grid-column: 1 / 9 !important;
     grid-row: 1 / 4 !important;
   }

   .inspire2-item2 {
     grid-column: 1 / 5 !important;
     grid-row: 4 / 7 !important;
   }

   .inspire2-item3 {
     grid-column: 5 / 9 !important;
     grid-row: 4 / 7 !important;
   }

   .inspire2-item4 {
     grid-column: 1 / 5 !important;
     grid-row: 7 / 10 !important;
   }

   .inspire2-item5 {
     grid-column: 5 / 9 !important;
     grid-row: 7 / 10 !important;
   }

   .inspire2-item6 {
     grid-column: 1 / 5 !important;
     grid-row: 10 / 13 !important;
   }

   .inspire2-item7 {
     grid-column: 5 / 9 !important;
     grid-row: 10 / 13 !important;
   }

   .inspire2-item8 {
     grid-column: 1 / 5 !important;
     grid-row: 13 / 16 !important;
   }

   .inspire2-item9 {
     grid-column: 5 / 9 !important;
     grid-row: 13 / 16 !important;
   }

   .inspire2-item10 {
     grid-column: 1 / 5 !important;
     grid-row: 16 / 19 !important;
   }

   .inspire2-item11 {
     grid-column: 5 / 9 !important;
     grid-row: 16 / 19 !important;
   }
 }


 @media (max-width: 768px) {
   .inspire2-section-overview-container {
     grid-template-columns: 1fr;
     gap: 12px;
     padding: 0 15px;
   }

   /* 移动端所有项目都占满宽度 */
   .inspire2-section-overview-item {
     grid-column: 1 / 2 !important;
     grid-row: auto !important;
     min-height: 250px;
   }

   .inspire2-pc-media {
     display: none;
   }

   .inspire2-mobile-media {
     display: block;
   }

   .inspire2-section-overview-item-text {
     position: relative;
     background: rgba(0, 0, 0, 0.05);
     color: #1a1a1a;
     padding: 20px;
   }

   .inspire2-item1 .inspire2-section-overview-item-text {
     position: relative;
     top: auto;
     left: auto;
     padding: 20px;
     display: none;
   }

   .inspire2-item1 .inspire2-section-overview-item-title {
     font-size: 24px;
   }

   /* 移动端项目2-11的文本样式 */
   .inspire2-item2 .inspire2-section-overview-item-text,
   .inspire2-item3 .inspire2-section-overview-item-text,
   .inspire2-item4 .inspire2-section-overview-item-text,
   .inspire2-item5 .inspire2-section-overview-item-text,
   .inspire2-item6 .inspire2-section-overview-item-text,
   .inspire2-item7 .inspire2-section-overview-item-text,
   .inspire2-item8 .inspire2-section-overview-item-text,
   .inspire2-item9 .inspire2-section-overview-item-text,
   .inspire2-item10 .inspire2-section-overview-item-text,
   .inspire2-item11 .inspire2-section-overview-item-text {
     position: relative;
     top: auto;
     left: auto;
     transform: none;
     width: 100%;
     max-width: none;
     background: rgba(0, 0, 0, 0.05);
     border-radius: 0;
     display: none;
   }

   .inspire2-section-overview-item-title {
     font-size: 18px;
     color: #1a1a1a;
   }

   .inspire2-section-overview-item-desc {
     color: #666;
   }
 }

 /* 加载动画 */
 @keyframes fadeInUp {
   from {
     opacity: 0;
     transform: translateY(30px);
   }

   to {
     opacity: 1;
     transform: translateY(0);
   }
 }

 .inspire2-section-overview-item {
   animation: fadeInUp 0.6s ease-out;
   animation-fill-mode: both;
 }

 /* 为每个项目设置不同的动画延迟 */
 .inspire2-item1 {
   animation-delay: 0.1s;
 }

 .inspire2-item2 {
   animation-delay: 0.2s;
 }

 .inspire2-item3 {
   animation-delay: 0.3s;
 }

 .inspire2-item4 {
   animation-delay: 0.4s;
 }

 .inspire2-item5 {
   animation-delay: 0.5s;
 }

 .inspire2-item6 {
   animation-delay: 0.6s;
 }

 .inspire2-item7 {
   animation-delay: 0.7s;
 }

 .inspire2-item8 {
   animation-delay: 0.8s;
 }

 .inspire2-item9 {
   animation-delay: 0.9s;
 }

 .inspire2-item10 {
   animation-delay: 1.0s;
 }

 .inspire2-item11 {
   animation-delay: 1.1s;
 }

 /* 页面布局内容最大宽度 */
 #shopify-section-template--inspire2-overview [class$="page-layout-content"] {
   --max-width: 1440px;
 }


 /*---------------------------------------------------------------------  <!--Overview---------------滑动-->*/

 .inspire2-scroll-transition {
   position: relative;
   background-color: linear-gradient(128deg, #3B3B41 0, #36363B 10%, #313135 20%, #2C2C30 30%, #26262A 40%, #212124 50%, #1C1C1E 60%, #171719 70%, #121213 80%, #0D0D0D 90%, #070707 100%);
 }

 .scroll-item {
   width: 100%;
   height: 100vh;
   position: sticky;
   top: 0;
   display: flex;
   align-items: center;
   justify-content: center;
   overflow: hidden;
 }

 /* 层级控制 */
 .scroll-item-1 {
   z-index: 1;
 }

 .scroll-item-transition {
   z-index: 2;
   /* 渐变过渡效果 */
   background: linear-gradient(180deg,
       rgba(0, 0, 0, 0) 0%,
       rgba(0, 0, 0, 0.8) 50%,
       rgba(0, 0, 0, 1) 100%);
 }

 .scroll-item-2 {
   z-index: 3;
   /* 可选：从底部渐变 */
   background: linear-gradient(180deg,
       rgba(0, 0, 0, 0) 0%,
       rgba(0, 0, 0, 0.3) 30%);
 }

 /* 图片样式 */
 .scroll-item img {
   width: 90%;
   height: auto;
   max-width: 1200px;
   object-fit: cover;
 }

 /* 文字内容 */
 .scroll-content {
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   text-align: center;
   color: white;
   z-index: 10;
 }

 .scroll-content h2 {
   font-size: 48px;
   font-weight: 700;
   margin-bottom: 20px;
 }

 .scroll-content p {
   font-size: 20px;
   opacity: 0.9;
 }

 /* 响应式 */
 @media (max-width: 768px) {
   .scroll-item img {
     width: 95%;
   }

   .scroll-content h2 {
     font-size: 32px;
   }

   .scroll-content p {
     font-size: 16px;
   }
 }

 /* 可选：添加滚动提示 */
 .scroll-indicator {
   position: absolute;
   bottom: 30px;
   left: 50%;
   transform: translateX(-50%);
   animation: bounce 2s infinite;
 }

 @keyframes bounce {

   0%,
   100% {
     transform: translateX(-50%) translateY(0);
   }

   50% {
     transform: translateX(-50%) translateY(-10px);
   }
 }



 /*-------------------------------------------------------------- <!--Just an INSPIRE 2 Away from Perfect Scans-->*/

 .inspire-away-perfect-phrase {
   display: flex;
   justify-content: center;
   align-items: center;
   width: 100%;
   /*padding: 0 20px;*/
 }

 .inspire2-away-perfect-scan {
   margin: 70px 0 40px;
 }

 .inspire-away-perfect-phrase-wrapper {
   display: flex;
   gap: 1.5rem;
   padding-top: 2rem;
   flex-direction: row;
   max-width: 1400px;
   width: 100%;
   margin: 0 auto;

 }

 .inspire-away-perfect-phrase-wrapper-left {
   border-radius: 24px;
   flex: 1;
 }

 .inspire-away-perfect-phrase-wrapper-left img {
   width: 100%;
   height: auto;
   display: block;
   border-radius: 24px;
 }

 .inspire-away-perfect-phrase-wrapper-right {
   background-color: #333;
   border-radius: 24px;
   display: flex;
   align-items: flex-start;
   justify-content: space-around;
   padding: 2rem;
   /*flex: 1;*/
   width: 40%;
   flex-direction: column;
   align-items: flex-start;
 }

 .inspire2-away-wr-text {
   text-align: left;

 }

 .inspire2-away-wrtext-item-title {
   color: #fff;
   font-size: 20px;
   font-family: Noto Sans Hans;
   margin-bottom: 0.5rem;
 }

 .inspire2-away-wrtext-item-desc {
   font-size: 28px;
   background: linear-gradient(180deg, #A78D5D 0%, #F6E6D2 100%);
   background-clip: text;
   color: transparent;
   font-weight: 600;
 }


 @media (max-width: 768px) {
   .inspire-away-perfect-phrase-wrapper {
     flex-direction: column;
     gap: 1rem;
   }

   .inspire2-away-perfect-scan {
     margin: 0px 0 30px;
   }

   .inspire2-away-wrtext-item-title {
     font-size: 18px;
   }

   .inspire2-away-wrtext-item-desc {
     font-size: 24px;
   }

   .inspire-away-perfect-phrase-wrapper-right {
     width: 100%;
     line-height: 1.5;
   }

   .inspire2-away-wr-text {
     padding-bottom: 10px;
   }
 }

 /*----------------------------------------------------------------------------*/
 .insp2-apshow-grid {
   display: flex;
   flex-wrap: wrap;
   margin: 0 auto;
   max-width: 1400px;
   width: 100%;
   gap: 2rem;
 }

 .insp2-apshow-media {
   flex: 1;
   min-width: 0;
 }

 .insp2-apshow-media-wrapper {
   position: relative;
   width: 100%;
   height: 100%;
   border-radius: 16px;
   overflow: hidden;
   background: #f5f5f5;
 }

 .insp2-apshow-video {
   position: relative;
   width: 100%;
   height: 100%;
 }

 .insp2-apshow-video video,
 .insp2-apshow-media-wrapper img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   display: block;
 }

 .insp2-apshow-text {
   flex: 1;
   min-width: 0;
   display: flex;
   align-items: center;
   padding: 2rem;
 }

 .insp2-apshow-content {
   width: 100%;
 }

 .insp2-apshow-title {
   font-size: 36px;
   font-weight: 700;
   margin-bottom: 1rem;
   line-height: 1.2;
   color: #222;
   font-family: Noto Sans Hans;
 }

 .insp2-apshow-subtitle {
   font-size: 24px;
   font-weight: 500;
   margin-bottom: 1rem;
   color: #444;
 }

 .insp2-apshow-desc {
   font-size: 16px;
   line-height: 1.6;
   color: #666;
   font-family: Noto Sans Hans;
 }

 .insp2-apshow-desc p {
   margin-bottom: 1rem;
 }

 .insp2-apshow-desc p:last-child {
   margin-bottom: 0;
 }

 .insp2-apshow-grid-reverse {
   flex-direction: row-reverse;
   padding: 100px 0;
 }

 @media (max-width: 768px) {
   .insp2-apshow-grid {
     gap: 1rem;
     flex-direction: column;
     padding: 0 10px;
   }

   .insp2-apshow-media,
   .insp2-apshow-text {
     width: 100%;
   }

   .insp2-apshow-title {
     font-size: 24px;
   }

   .insp2-apshow-subtitle {
     font-size: 20px;
   }

   .insp2-apshow-text {
     padding: 1.5rem;
   }

   .insp2-apshow-grid-reverse {
     flex-direction: column;
     padding: 20px 10px;
   }
 }

 /* .insp2-apshow-media-wrapper {
      transition: transform 0.3s ease;
    }

    .insp2-apshow-media-wrapper:hover {
      transform: scale(1.02);
    }*/



 /*---------------------------------------------------------------- <!--Optical Zooming-->*/

 .insp2-apshow-zoom-section {
   padding: 80px 20px;
   max-width: 1200px;
   margin: 0 auto;
   background: #333;
   border-radius: 24px;
 }

 .insp2-apshow-zoom-container {
   max-width: 1400px;
   margin: 0 auto;
 }

 .insp2-apshow-zoom-wrapper {
   display: flex;
   justify-content: space-evenly;
   align-items: center;
   margin: auto;
 }

 .insp2-apshow-zoom-item img {
   transition: transform 0.3s ease;
   width: 300px;
 }

 /* 放大效果 */
 .insp2-apshow-zoom-item.zoomed img {
   transform: scale(1.2);
 }

 .insp2-apshow-zoom-buttons {
   display: flex;
   justify-content: space-evenly;
   margin-top: 20px;
 }

 .insp2-apshow-zoom-btn {
   padding: 5px 20px;
   border: none;
   background-color: #fff;
   cursor: pointer;
   border-radius: 25px;
   width: 200px;
   text-align: center;
   background-color: #b89c7d;
   color: #fff;
   transition: opacity 0.3s ease;
 }

 /* 激活状态的按钮 */
 .insp2-apshow-zoom-btn.active {
   opacity: 0.8;
 }

 @media (max-width: 768px) {

   .insp2-apshow-zoom-section {
     padding: 40px 20px;
   }

   .insp2-apshow-zoom-buttons {
     gap: 26px;
   }

 }

 /*-------------------------------------------------------------------------------------  <!--Total Scanning Freedom-->*/
 .inspire-scf-swiper-container {
   font-family: Noto Sans Hans;
   position: relative;
 }

 .inspire-scf-swiper-content-dos {
   position: relative;
   overflow: hidden;
   margin-bottom: 30px;
 }

 .inspire-scf-sc-dos-item {
   display: none;
   width: 100%;
   height: auto;
   aspect-ratio: 2/1;
 }

 .inspire-scf-sc-dos-item.active {
   display: block;
 }

 .inspire-scf-sc-dos-item img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   display: block;
 }

 .inspire-scf-swiper-tab-header-dos {
   display: flex;
   justify-content: center;
   /* justify-content: space-evenly;*/
   margin-bottom: 30px;
   border-bottom: 1px solid #D9D9D9;
   gap: 52px;
   margin-left: 300px;
   margin-right: 300px;
 }

 .inspire-scf-swiper-tab-header-item-dos {
   padding: 10px 20px;
   cursor: pointer;
   margin: 0 10px;
   border-bottom: 2px solid transparent;
   transition: all 0.3s ease;
   color: #333;
   position: relative;
   font-size: 16px;
 }

 .inspire-scf-swiper-tab-header-item-dos.active {
   border-bottom-color: #b89c7d;
   font-weight: bold;
   color: #b89c7d;
 }

 .inspire-scf-swiper-tab-content-dos {
   position: relative;
   height: 120px;
   overflow: hidden;
   color: #999999;
 }

 .inspire-scf-swiper-tab-content-item-dos {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   opacity: 0;
   transition: opacity 0.3s ease;
   text-align: center;
   padding: 0 20px;
   box-sizing: border-box;
   font-size: 18px;
   margin: 20px 0;
   line-height: 1.5;
 }

 .inspire-scf-swiper-tab-content-item-dos.active {
   opacity: 1;
 }

 @media (max-width: 768px) {
   .inspire-scf-swiper-tab-header-dos {
     margin-bottom: 10px;
     margin-left: 0;
     margin-right: 0;
     gap: 0;
   }

   .inspire-scf-swiper-tab-header-item-dos {
     padding: 8px 14px;
     font-size: 14px;
     line-height: 1.5;
   }

   .inspire-scf-swiper-tab-content-dos {
     height: auto;
     min-height: 10px;
     margin-top: 26px;
     color: #999999;
   }

   .inspire-scf-swiper-tab-content-item-dos {
     position: static;
     opacity: 0;
     height: 0;
     overflow: hidden;
     transition: all 0.3s ease;
     font-size: 16px;
     margin: 0;
   }

   .inspire-scf-swiper-tab-content-item-dos.active {
     opacity: 1;
     height: auto;
     padding: 10px;
     line-height: 1.5;
   }
 }





 /*-----------------------------------------------------------------------------------软件*/

 .inspire2-software-swiper-container {
   font-family: Noto Sans Hans;
   position: relative;
 }

 .inspire2-software-swiper-content-tres {
   position: relative;
   overflow: hidden;
   margin-bottom: 30px;
 }

 .inspire2-software-sc-tres-item {
   display: none;
   width: 100%;
   height: auto;
   aspect-ratio: 2/1;
 }

 .inspire2-software-sc-tres-item.active {
   display: block;
 }

 .inspire2-software-sc-tres-item img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   display: block;
 }

 .inspire2-software-swiper-tab-header-tres {
   display: flex;
   justify-content: center;
   margin-bottom: 30px;
   border-bottom: 1px solid #D9D9D9;
   gap: 52px;
   margin-left: 300px;
   margin-right: 300px;
 }

 .inspire2-software-swiper-tab-header-item-tres {
   padding: 10px 20px;
   cursor: pointer;
   margin: 0 10px;
   border-bottom: 2px solid transparent;
   transition: all 0.3s ease;
   color: #333;
   position: relative;
   font-size: 16px;
 }

 .inspire2-software-swiper-tab-header-item-tres.active {
   border-bottom-color: #b89c7d;
   font-weight: bold;
   color: #b89c7d;
 }

 .inspire2-software-swiper-tab-content-tres {
   position: relative;
   height: 120px;
   overflow: hidden;
   color: #999999;
 }

 .inspire2-software-swiper-tab-content-item-tres {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   opacity: 0;
   transition: opacity 0.3s ease;
   text-align: center;
   padding: 0 20px;
   box-sizing: border-box;
   font-size: 18px;
   margin: 20px 0;
 }

 .inspire2-software-swiper-tab-content-item-tres.active {
   opacity: 1;
 }

 @media (max-width: 768px) {
   .inspire2-software-swiper-tab-header-tres {
     margin-bottom: 10px;
     margin-left: 0;
     margin-right: 0;
     gap: 0;
   }

   .inspire2-software-swiper-tab-header-item-tres {
     padding: 8px 14px;
     font-size: 14px;
     line-height: 1.5;
   }

   .inspire2-software-swiper-tab-content-tres {
     height: auto;
     min-height: 10px;
     margin-top: 26px;
     color: #999999;
   }

   .inspire2-software-swiper-tab-content-item-tres {
     position: static;
     opacity: 0;
     height: 0;
     overflow: hidden;
     transition: all 0.3s ease;
     font-size: 16px;
     margin: 0;
   }

   .inspire2-software-swiper-tab-content-item-tres.active {
     opacity: 1;
     height: auto;
     padding: 10px;
     line-height: 1.5;
   }
 }

 /*-------------------------------------------------------------------------应用案例*/

 .inspire2-app-swiper-container {
   width: 100%;
   max-width: 1400px;
   margin: 0 auto;
   /*padding: 20px;*/
   overflow: hidden;
 }

 .inspire2-app-swiper {
   position: relative;
 }

 .inspire2-app-swiper-wrapper {
   display: flex;
   transition: transform 0.5s ease;
   cursor: grab;
   user-select: none;
 }

 .inspire2-app-swiper-slide {
   flex: 0 0 33.333%;
   padding: 0 15px;
   box-sizing: border-box;
   transition: all 0.3s ease;
   height: 500px;
   display: flex;
   flex-direction: column;
 }

 .inspire2-app-swiper-slide img {
   width: 100%;
   height: 350px;
   object-fit: cover;
   border-radius: 8px;
   box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
 }

 .inspire2-app-slide-content {
   padding: 15px;
   background: #fff;
   border-radius: 0 0 8px 8px;
   box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
   flex-grow: 1;
   overflow: hidden;
   display: flex;
   flex-direction: column;
 }

 .inspire2-app-slide-content h3 {
   color: #333;
   margin-bottom: 10px;
   font-size: 18px;
   flex-shrink: 0;
 }

 .inspire2-app-slide-content p {
   color: #666;
   font-size: 14px;
   line-height: 1.6;
   margin-bottom: 0;
   overflow: auto;
   flex-grow: 1;
 }

 .inspire2-app-swiper-pagination {
   display: flex;
   justify-content: center;
   margin-top: 30px;
   margin-bottom: 20px;
 }

 .inspire2-app-swiper-pagination-bullet {
   width: 12px;
   height: 12px;
   border-radius: 50%;
   background: #ddd;
   margin: 0 8px;
   cursor: pointer;
   transition: all 0.3s ease;
 }

 .inspire2-app-swiper-pagination-bullet.active {
   background: #333;
   transform: scale(1.2);
 }

 .inspire2-app-swiper-wrapper.grabbing {
   cursor: grabbing;
   transition: none;
 }

 @media (max-width: 768px) {
   .inspire2-app-swiper-slide {
     flex: 0 0 100%;
     padding: 10px;
     height: 450px;
   }

   .inspire2-app-swiper-slide img {
     height: 250px;
   }

   .inspire2-app-slide-content {
     padding: 12px;
   }

   .inspire2-app-slide-content h3 {
     font-size: 16px;
   }

   .inspire2-app-slide-content p {
     font-size: 13px;
   }
 }


 /*-------------------------------------------------------------------------------参数specification


.inspire2-specifications-table-container {
  width: 100%;
  overflow-x: auto;
  position: relative;
  border: 1px solid #EDEBEB;
  background: #fff;
}

.inspire2-specifications-table-container-wrapper {
  width: 100%;
}

.inspire2-specifications-table-container-wrapper table {
  width: 100%;
  border-collapse: collapse;
}

.td-header {
  position: sticky;
  left: 0;
  width: 344px;
  min-width: 344px;
  font-weight: 500;
  color: #494949;
  background-color: #f4f4f4;
  border: 1px solid #EDEBEB !important;
  z-index: 1;
}

.inspire2-specifications-table-container-wrapper td:not(.td-header) {
  background-color: #fff;
  border: 1px solid #EDEBEB;
  line-height: 1.8;
}

.inspire2-specifications-table-container-wrapper td {
  font-size: 16px;
  / *color: #666; * /
  text-align: left;
  height: 100%;
  vertical-align: middle;
  padding: 12px 16px;
}

/* 名称单元格特殊样式 * /
.td-name-wrapper {
  text-align: center !important;
}

.td-name-wrapper img {
  display: block;
  margin: 8px auto 0;
  max-width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .td-header {
    width: 200px;
    min-width: 180px;
  }

  .inspire2-specifications-table-container-wrapper td:not(.td-header) {
    min-width: 200px;
  }

  .inspire2-specifications-table-container-wrapper td {
    font-size: 14px;
    padding: 8px 12px;
  }
}*/


 .inspire2-specifications-table-container {
   width: 100%;
   max-width: 1200px;
   margin: 0 auto;
   overflow-x: auto;
   position: relative;
   border: 1px solid #EDEBEB;
   background: #fff;
   border-radius: 8px;
 }

 .inspire2-specifications-table-container-wrapper {
   width: 100%;
 }

 .inspire2-specifications-table-container-wrapper table {
   width: 100%;
   border-collapse: collapse;
   table-layout: fixed;
   /* 固定表格布局 */
 }

 .td-header {
   width: 50%;
   /* 设置为50%宽度 */
   font-weight: 500;
   color: #494949;
   background-color: #f4f4f4;
   border: 1px solid #EDEBEB !important;
   text-align: left;
   /* 文字靠左 */
 }

 .td-content {
   width: 50%;
   /* 设置为50%宽度 */
   background-color: #fff;
   border: 1px solid #EDEBEB;
   line-height: 1.8;
   text-align: left;
   /* 文字靠左 */
   color: #666;
 }

 .inspire2-specifications-table-container-wrapper td {
   font-size: 20px;
   vertical-align: middle;
   padding: 16px 20px;
   line-height: 1.8;
   font-family: Noto Sans Hans;
   border: 1px solid #EDEBEB;
 }

 .cell-wrap {
   word-wrap: break-word;
   word-break: break-word;
 }

 /* 移除sticky定位，因为两列等宽时不需要 */
 @media (max-width: 768px) {
   .inspire2-specifications-table-container {
     border-radius: 0;
   }

   .inspire2-specifications-table-container-wrapper td {
     font-size: 14px;
     padding: 12px 16px;
     line-height: 1.8;
   }

   /* 移动端保持两列等宽 */
   .td-header,
   .td-content {
     width: 50%;
   }
 }

 /* 优化长内容的显示 */
 .td-content strong {
   color: #333;
   display: inline-block;
   margin-top: 8px;
   margin-bottom: 4px;
 }

 .td-content strong:first-child {
   margin-top: 0;
 }

 /* 悬停效果 */
 .inspire2-specifications-table-container-wrapper tr:hover .td-header {
   background-color: #ececec;
 }

 .inspire2-specifications-table-container-wrapper tr:hover .td-content {
   background-color: #fafafa;
 }


 /*---------------------------------------------其他*/

 a:not([href]) {
   cursor: not-allowed !important;
   color: #999;
   text-decoration: none;
 }