.showcase-card-3 {
    width: 240px;
    height: 344px;
    overflow: hidden;
    border-radius: 12px;
    position: relative;
}

.showcase-card-3_image {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.showcase-card-3_image img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.showcase-card-3_image-default {
    width: 100%;
    height: 100%;
    background-color: rgb(var(--color-image-background));
}

.showcase-card-3_video-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 11;
    transform: translate(-50%, -50%);
    width: 32px;
    height: 32px;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    opacity: 0.45;
}

.showcase-card-3_video-icon:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.showcase-card-3_image_modal-opener {
    display: inline;
    width: 0;
    height: 0;
}

.showcase-card-3_image_play-btn {
    margin: 0;
    padding: 0;
    background: none;
    border: none;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 10;
}

.showcase-card-3_video_modal-opener {
    display: inline;
    width: 0;
    height: 0;
}

.showcase-card-3_video_modal-opener[data-modal-opener] {
    cursor: pointer;
}

.showcase-card-3_video_play-btn {
    margin: 0;
    padding: 0;
    background: none;
    border: none;
}

.showcase-card-3_video-icon svg {
    width: 50%;
    height: 50%;
    margin-left: 4px;
    color: #777;
}

.showcase-card-3_product {
    position: absolute;
    bottom: 8px;
    left: 5px;
    right: 5px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: rgba(245, 244, 246, 0.45);
    backdrop-filter: blur(3.35px);
}

.showcase-card-3_product_image {
    width: 54px;
    height: 54px;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.showcase-card-3_product_image img, .showcase-card-3_product_image svg {
    /*position: absolute;*/
    /*z-index: 9;*/
    /*top: 50%;*/
    /*left: 50%;*/
    /*transform: translate(-50%, -50%);*/
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.showcase-card-3_product_image-default {
    width: 100%;
    height: 100%;
    background-color: #bbb;
}

.showcase-card-3_product_info {
    margin-left: 6px;
}

.showcase-card-3_product_info_title {
    font-weight: 400;
    font-size: 12px;
    line-height: 17px;
    color: #FFFFFF;
    opacity: 0.85;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.showcase-card-3_product_info_price {
    margin-top: 6px;
    padding-left: 4px;
    font-weight: 400;
    font-size: 10px;
    line-height: 14px;
    color: #FFFFFF;
    opacity: 0.85;
}

/* 移动端适配 */
@media screen and (max-width: 768px) {
  .showcase-card-3 {
    width: 100%;
    height: auto;
    aspect-ratio: 0.8;
    border-radius: 10px;
  }

  .showcase-card-3_image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  .showcase-card-3_image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: none;
  }

  /* 播放按钮调整 */
  .showcase-card-3_video-icon {
    width: 24px;
    height: 24px;
  }

  .showcase-card-3_video-icon:hover {
    transform: translate(-50%, -50%);
  }

  /* 商品信息调整 */
  .showcase-card-3_product {
    left: 8px;
    right: 8px;
    bottom: 8px;
    border-radius: 8px;
    padding-left: 6px;
    min-height: 52px;
  }

  .showcase-card-3_product_image {
    width: 44px;
    height: 44px;
    border-radius: 8px;
  }

  .showcase-card-3_product_info {
    margin-left: 8px;
  }

  .showcase-card-3_product_info_title {
    font-size: 12px;
    line-height: 16px;
  }

  .showcase-card-3_product_info_price {
    margin-top: 4px;
    font-size: 12px;
    line-height: 16px;
  }
}
