/* 簡約設計 -start */
#simpleDesignSection {
    padding-bottom: 60px;
}

#simpleDesignSection .sink-img-1 {
    width: 100%;
}

#filterImgSection {
    padding: 0;
}

#filterImgSection .filter-list {
    display: flex;
    align-items: center;
    justify-content: center;
    /* flex-wrap: wrap; */
}
#filterImgSection .filter-item {
    width: 20vw;
    overflow: hidden;
    cursor: pointer;
}

#filterImgSection .sink-img {
    width: 100%;
    transition: transform 0.6s ease;
}

#filterImgSection .filter-item:hover .sink-img {
    transform: scale(1.2);
}

.layui-layer-photos .layui-layer-content {
    display: flex;
    justify-content: center;
    align-items: center;
  }

.layui-layer-photos .layer-layer-photos-main img {
    width: 50%;
}
/* 簡約設計 -end */

/* NEMO 的專業技術 -start */
#technicalSection .my-container {
  overflow: hidden;
}


#technicalSection .cert-technical-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-top: 60px;
}

#technicalSection .cert-technical-list {
    justify-content: flex-start;
    gap: 37px;
}

#technicalSection .cert-item {
    width: calc(25% - 30px);
    border-radius: 12px;
    border: 2px solid #C28565;
    cursor: pointer;
    overflow: hidden;
}

#technicalSection .cert-item .cert-img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    object-fit: cover;
}

.swiper-slide {
    margin-left: 0px;
    margin-right: 0px;
}

.layui-layer-photos .layer-layer-photos-main img {
  width: 50%;
}


#technicalSection .swiper-pagination-bullets {
    margin-top: 30px;
    text-align: center;
}

.cert-img {
  transition: all 0.3s ease-in-out;
}

.cert-item:hover .cert-img {
  transform: scale(1.2);
}

/* NEMO 的專業技術 -end */

/* 規格與細節 -start*/
/* 主容器：左右布局 */
.details-container {
    display: flex;
    width: 100%;
    min-height: 100vh;
    padding: 60px 20px;
    margin: 0 auto;
    gap: 40px;
    position: relative;
  }
  
  /* 左侧：规格内容 */
  .details-left,
  .details-right {
    width: 50%;
    position: relative;
    z-index: 1;
  }
  
  .details-left {
    width: 60%;
  }
  
  .details-right {
    width: 40%;
  }
  
  .details-left {
    flex: 1;
    max-width: 600px;
  }
  
  .kitchen-title {
    font-size: 2.2em;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-weight: 300;
  }
  
  .kitchen-subtitle {
    font-size: 1.3em;
    color: #666;
    margin-bottom: 20px;
    font-weight: 400;
  }
  
  .kitchen-desc {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.8;
  }
  
  .specification-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    font-size: 0.95em;
  }
  
  .specification-table th {
    background-color: #f2f2f2;
    padding: 12px 15px;
    text-align: left;
    width: 120px;
    vertical-align: top;
    font-weight: 600;
    color: #1a1a1a;
  }
  
  .specification-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
    color: #555;
  }
  
  #detailsSection {
    position: relative;
    min-height: 100vh;
    background-color: #f6f6f6;
  }
  
  #detailsSection .white-line {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      background-image: url(../image/white-line.png);
      background-size: 100% 10px;
      background-position: center;
      background-repeat: repeat-x;
    }
  
  /* 右侧：固定轮播图 */
  .details-right {
    position: relative;
  }
  
  .layui-carousel>[carousel-item]>* {
    background: transparent;
  }
  
  /* 基础样式 */
  .fixed-wrapper {
    width: 500px;
    transition: transform 0.3s ease; /* 只对transform应用过渡效果 */
    position: sticky; /* 改用sticky定位 */
    top: 0;
    margin-left: auto; /* 使用margin-left: auto来右对齐 */
  
    background-image: url(../image/get_more_fetaure_shape.png);
    background-size: 80%;
    background-position: center;
    background-repeat: no-repeat;
    padding: 60px;
  
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .fixed-wrapper #detailsCarousel {
    width: 500px;
    height: 500px;
    border-radius: 12px;
    overflow: hidden; /* 确保图片不会溢出圆角 */
  }
  
  .fixed-wrapper img {
      width: 100%;
  }
  
  .fixed-wrapper #detailsCarousel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
  }
  
  /* 滚动状态类 */
  .fixed-wrapper.is-centered {
    transform: translateY(calc(50vh - 50%)); /* 居中定位 */
  }
  
  .fixed-wrapper.is-top {
    transform: translateY(20px); /* 顶部定位 */
  }
  
  .fixed-wrapper.is-bottom {
    transform: translateY(calc(100vh - 100% - 20px)); /* 底部定位 */
  }
  
  /* 响应式调整 */
  @media (max-width: 992px) {
    .fixed-wrapper {
      position: relative;
      width: 100%;
      max-width: 500px;
      margin: 0 auto;
      transform: none !important; /* 移动端禁用transform */
    }
    
    .fixed-wrapper #detailsCarousel {
      width: 100%;
      height: auto;
      aspect-ratio: 1/1; /* 保持1:1的比例 */
    }
  }
  
  /* #detailsCarousel {
    height: 100% !important;
  }
  
  #detailsCarousel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
  } */
  
  #detailsSection .details-list {
    position: relative;
    display: flex;
    flex-direction: column;
  }
  
  .details-list .detail-item {
    padding: 20px 0;
    border-bottom: 1px solid #333333;
  }
  
  .details-list .detail-item:last-child {
    border-bottom: none;
  }
  
  .details-list .detail-item .detail-title {
    font-size: 18px;
    font-weight: bold;
    color: #1a1a1a;
    margin-bottom: 12px;
  }
  
  .details-list .detail-item .detail-desc {
    font-size: 16px;
    line-height: 26px;
    color: #646464;
  }
  
  .details-list .detail-item .detail-img {
    height: 188px;
    margin-bottom: 24px;
  }
  
  
  /* 响应式：小屏下变为上下结构 */
  @media (max-width: 992px) {
    .details-container {
      flex-direction: column;
      padding: 40px 20px;
    }
  
    .details-right {
      position: relative;
      top: auto;
      transform: none;
      width: 100%;
      max-width: 500px;
      margin: 0 auto;
      margin-top: 30px;
    }
  }
  
  /* 規格與細節 -end*/
  