.showcase-card-2 {
    display: flex;
    flex-direction: column;
}

.showcase-card-2:hover {
    transform: scale(1.10);
    transform-origin: center center;
}

.showcase-card-2_image-wrapper {
    border-radius: 12px;
    width: 245px;
    height: 315px;
    position: relative;
    overflow: hidden;
}

.showcase-card-2_image {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.showcase-card-2_image img {
    position: absolute;
    z-index: 9;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.showcase-card-2_image-default {
    width: 100%;
    height: 100%;
    background-color: rgb(var(--color-image-background));
}

.showcase-card-2_image_modal-opener {
    display: inline;
    width: 0;
    height: 0;
}

.showcase-card-2_product_image_play-btn {
    margin: 0;
    padding: 0;
    background: none;
    border: none;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 11;
}

.showcase-card-2_image_head {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    align-items: center;
    font-size: 0;
    z-index: 11;
}

.showcase-card-2_image_head img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
}

.showcase-card-2_image_head_avator-default {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: #dfdfdf;
}

.showcase-card-2_image_head_text {
    margin-left: 4px;
    font-weight: 400;
    font-size: 12px;
    line-height: 17px;
    color: #FFFFFF;
}

.showcase-card-2_video_modal-opener {
    position: absolute;
    right: 12px;
    bottom: 12px;
    z-index: 11;
}

.showcase-card-2_video_play-btn {
    margin: 0;
    padding: 0;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #FFFFFF73;
    backdrop-filter: blur(2px);
}

.showcase-card-2_video_sound-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.showcase-card-2_video_sound-icon svg {
    width: 16px;
    height: 16px;
    color: #777;
    margin-left: 1px;
}

.showcase-card-2_video_play-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

.showcase-card-2_product {
    width: 245px;
    margin-top: 8px;
    border-radius: 12px;
    background-color: #F5F4F6;
    padding: 8px 10px 8px 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.showcase-card-2_product_image {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.showcase-card-2_product_image img {
    width: 100%;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.showcase-card-2_product_image-default {
    width: 100%;
    height: 100%;
    background-color: #efefef;
}

.showcase-card-2_product_info {
    margin-left: 5px;
    flex: 1 1 auto;
    height: 48px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.showcase-card-2_product_info_title {
    font-weight: 400;
    font-size: 10px;
    line-height: 14px;
    color: #000000;
    opacity: 0.85;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2; /* 限制行数 */
    overflow: hidden;
}

.showcase-card-2_product_info_price {
    font-weight: 400;
    font-size: 10px;
    line-height: 14px;
    color: #AE36EF;
    opacity: 0.85;
}

.showcase-card-2_product_btn {
    margin-left: 11px;
    flex-shrink: 0;
}

.showcase-card-2_product_btn_add {
    font-size: 24px;
    color: var(--add-to-cart-bg, #D07AFF);
    border: none;
    background: none;
    cursor: pointer;
}

.showcase-card-2_product_btn_add_icon {
  display: block;
  font-size: 0;
}

.showcase-card-2_product_btn_add.loading .showcase-card-2_product_btn_add_icon {
  display: none;
}

/* 移动端适配 */
@media screen and (max-width: 768px) {
  .showcase-card-2 {
    width: 100%;
  }

  .showcase-card-2:hover {
    transform: none;
  }

  .showcase-card-2_image-wrapper {
    width: 100%;
    height: auto;
    aspect-ratio: 0.8;
    border-radius: 10px;
  }

  .showcase-card-2_image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  .showcase-card-2_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  /* 头部信息调整 */
  .showcase-card-2_image_head {
    top: 8px;
    left: 8px;
    z-index: 12;
  }

  .showcase-card-2_image_head img {
    width: 24px;
    height: 24px;
  }

  .showcase-card-2_image_head_text {
    font-size: 12px;
    line-height: 16px;
    margin-left: 4px;
  }

  /* 声音图标调整 */
  .showcase-card-2_video_modal-opener {
    right: 8px;
    bottom: 8px;
  }

  .showcase-card-2_video_play-btn {
    width: 28px;
    height: 28px;
  }

  .showcase-card-2_video_sound-icon {
    width: 24px;
    height: 24px;
  }

  .showcase-card-2_video_sound-icon svg {
    width: 12px;
    height: 12px;
  }

  .showcase-card-2_video_play-btn:hover {
    background: rgba(255, 255, 255, 0.2);
  }

  /* 商品信息调整 */
  .showcase-card-2_product {
    width: 100%;
    margin-top: 8px;
    padding: 5px;
    border-radius: 8px;
    background-color: #F5F4F6;
    box-shadow: 0px 0px 5.5px 0px rgba(0, 0, 0, 0.08);
    position: relative;
  }

  .showcase-card-2_product_image {
    width: 40px;
    height: 40px;
    border-radius: 8px;
  }

  .showcase-card-2_product_info {
    margin-left: 5px;
    height: auto;
  }

  .showcase-card-2_product_info_title {
    font-size: 10px;
    line-height: 12px;
    -webkit-line-clamp: 2;
    position: relative;
    top: 2px;
  }

  .showcase-card-2_product_info_price {
    font-size: 10px;
    line-height: 16px;
    margin-top: 4px;
  }

  .showcase-card-2_product_btn {
    margin-left: auto;
    position: absolute;
    right: -1px;
    bottom: -2px;
  }

  .showcase-card-2_product_btn svg {
    width: 20px;
    height: 20px;
  }
}