/* =============== 主容器 =============== */
    .new-product {
      margin: 0 auto;
      /* background: #fff; */
      /* border-radius: 12px; */
      overflow: hidden;
      /* box-shadow: 0 4px 16px rgba(0,0,0,0.06); */
    }

    .new-product__header {
      padding: 16px 20px;
      border-bottom: 1px solid #eee;
    }
    .new-product__title {
      font-size: 18px;
      font-weight: 700;
      color: #1a1a1a;
    }

    /* =============== Swiper 容器 =============== */
    .new-product__swiper {
      padding: 0 20px 20px;
    }

    /* =============== 卡片：严格对齐、无露出 =============== */
    .new-product__card {
      width: 140px;          /* 固定宽度 → slidesPerView: 'auto' + 禁用自由滑动 = 完整显示 */
      background: #fff;
      border-radius: 8px;
      overflow: hidden;
      border: 1px solid #e5e5e5;
      box-shadow: 0 2px 8px rgba(0,0,0,0.04);
      transition: transform 0.2s ease;
    }
    .new-product__card:hover {
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    }

    /* =============== 卡片内容结构 =============== */
    .new-product__content {
      padding: 16px 12px;
      text-align: center;
    }

    /* 顶部 New 标签 */
    .new-product__tag {
      position: absolute;
      top: 12px;
      left: 12px;
      padding: 3px 8px;
      font-size: 10px;
      font-weight: 600;
      color: #fff;
      background: #ff7875;
      border-radius: 4px;
      line-height: 1;
	  z-index: 9;
    }

    /* 产品图：垂直居中，带阴影 */
    .new-product__img-wrap {
      height: 260px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: #f8f9fa;
      margin-bottom: 14px;
      border-radius: 4px;
      overflow: hidden;
    }
    .new-product__img-wrap img {
      /* max-height: 140px; */
	  
      /* max-width: 100%; */
	  width: 100%;
	  height: 100%;
      object-fit: contain;
      filter: drop-shadow(0 2px 4px rgba(0,0,0,0.08));
    }

    /* 品牌 Logo */
    .new-product__brand {
      height: 32px;
      margin-bottom: 8px;
	      text-align: left;
    }
    .new-product__brand img {
      height: 100%;
      width: auto;
    }

    /* 产品名称 & 编号 */
    .new-product__name {
      font-size: 14px;
      font-weight: 600;
      color: #262626;
      margin-bottom: 4px;
      line-height: 1.4;
	  text-align: left;
	  height: 40px;
    }
    .new-product__sku {
      font-size: 12px;
      color: #737373;
      margin-bottom: 12px;
	  text-align: left;
    }

    /* 特性列表（3行） */
    .new-product__features {
      list-style: none;
      margin: 0;
      padding: 0;
    }
    .new-product__features li {
      display: flex;
      align-items: center;
      font-size: 12px;
      color: #595959;
      margin-bottom: 6px;
      gap: 6px;
    }
    .new-product__features li::before {
      content: "";
      display: inline-block;
      width: 10px;
      height: 10px;
      background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23737373"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 15l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z"/></svg>') no-repeat center;
      background-size: 80%;
    }