/* 进一步探索按钮背景色（原 story.html sec6 内联样式） */
  .public-btn {
    background: #fe6620;
  }
  /* Swiper 容器 */
  .story-products-swiper {
    overflow: visible;
  }
  .story-products-swiper .swiper-wrapper {
    display: flex;
  }
  .story-products-swiper .swiper-slide {
    width: 27.62%;
    flex-shrink: 0;
    padding: 0 .1rem;
  }
  .story-products-swiper .swiper-slide:last-child {
    margin-right: 0;
  }
  /* 卡片样式 */
  .story-products-swiper .list {
    position: relative;
    display: block;
    border-radius: 16px;
    overflow: hidden;
  }
  .story-products-swiper .f_img {
    display: block;
    width: 100%;
    aspect-ratio: 3/4;
  }
  .story-products-swiper .f_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }
  /* PC端hover效果 */
  @media (min-width: 769px) {
    .story-products-swiper .list:hover .f_img img {
      transform: scale(1.05);
    }
  }
  /* 探索泊为吹风机 - overlay样式 */
  .story-products-swiper .overlay-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    display: flex !important;
    justify-content: space-between;
    align-items: flex-end;
    z-index: 10;
    background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 100%);
  }
  .story-products-swiper .overlay-content .font {
    flex: 1;
    text-align: left;
  }
  .story-products-swiper .overlay-content .f_tit {
    color: #fff !important;
    margin-bottom: 4px;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
  }
  .story-products-swiper .overlay-content .f_text {
    color: rgba(255,255,255,0.85) !important;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
    margin: 0;
    font-size: 12px;
  }
  .story-products-swiper .overlay-content .f_btn {
    flex-shrink: 0;
    padding: 4px 12px;
    background: transparent;
    color: #fff;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 1px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .story-products-swiper .overlay-content .f_btn span {
    color: #fff;
    font-size: 11px;
  }
  /* PC端 hover 效果 */
  @media (min-width: 769px) {
    .story-products-swiper .list:hover .overlay-content .f_btn {
      background: #ff6b35;
      border-color: #ff6b35;
    }
  }
  /* 移动端样式 */
  @media (max-width: 768px) {
    .story-products-swiper {
      margin: 0 -0.1rem;
    }
    .story-products-swiper .swiper-slide {
      width: 90%;
    }
    .story-products-swiper .f_img {
      position: relative;
      width: 100%;
      padding-top: 133.33%;
      height: 0;
    }
    .story-products-swiper .f_img img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .story-products-swiper .overlay-content {
      padding: 15px;
      flex-direction: column;
      align-items: flex-start;
    }
    .story-products-swiper .overlay-content .f_tit {
      font-size: 16px !important;
    }
    .story-products-swiper .overlay-content .f_text {
      font-size: 12px !important;
    }
    .story-products-swiper .overlay-content .f_btn {
      margin-top: 12px;
    }
  }
