.carousel-wrapper {
    width: 100%;
    box-sizing: border-box;
    padding: 20px 0; /* 上下保留 padding，左右不要 */
    position: relative;
  }

  .carousel-layout {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .carousel-banner img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
  }

  .carousel-title-area {
    text-align: center;
    font-size:2rem;
    font-weight: bold;
    margin-bottom: 30px;
    margin-top: 50px;
    text-align:left;
  }

  .carousel-header {
    display: none;
  }

  .carousel-content {
    position: relative;
  }

  .swiper-slide {
    text-align: center;
  }

  .swiper-slide a {
    text-decoration: none;
    color: inherit;
  }

  .swiper-slide img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
    margin-bottom: 10px;
  }

  .product-title {
    font-size: 13px;
    font-weight: 800;
  }

  .product-price {
    font-size: 16px;
    font-weight: 800;  
  }

  .swiper-button-prev,
  .swiper-button-next {
    display: none;
  }

  @media (min-width: 992px) {
    .carousel-layout {
      flex-direction: row;
    }

    .carousel-banner {
      width: 25%;
    }

    .carousel-content {
      width: 75%;
    }

    .swiper-button-prev,
    .swiper-button-next {
      display: flex;
      align-items: center;
      justify-content: center;
      color: #000;
      font-size: 24px;
      width: 40px;
      height: 100%;
      position: absolute;
      top: 0;
      z-index: 10;
      background: rgba(255, 255, 255, 0.6);
      cursor: pointer;
    }

    .swiper-button-prev {
      left: 0;
    }

    .swiper-button-next {
      right: 0;
    }
  }

  .swiper-button-prev::after {
    content: "<";
  }

  .swiper-button-next::after {
    content: ">";
  }