.showcase-card-1 {
    position: relative;
    width: 266px;
    height: 330px;
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.showcase-card-1:hover {
    transform: scale(1.08);
    transform-origin: center 75%;
}

.showcase-card-1_video-icon {
    position: absolute;
    bottom: 14px;
    right: 14px;
    z-index: 11;
    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-1_video-icon:hover {
    transform: scale(1.1);
}

.showcase-card-1_video-icon svg {
    width: 50%;
    height: 50%;
    margin-left: 4px;
    color: #777;
}

.showcase-card-1_image_modal-opener {
    display: inline;
    width: 0;
    height: 0;
}

.showcase-card-1_image_play-btn {
    margin: 0;
    padding: 0;
    background: none;
    border: none;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 11;
}

.showcase-card-1_video_modal-opener {
    display: inline;
    width: 0;
    height: 0;
}

.showcase-card-1_video_play-btn {
    margin: 0;
    padding: 0;
    background: none;
    border: none;
}

.showcase-card-1_header {
    background-color: #F5F4F6;
    padding: 14px 14px 11px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.showcase-card-1_header_avator {
    background: linear-gradient(to bottom, #FFAB4F, #FF0C11, #FF1B78, #B93BE9);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.showcase-card-1_header_avator img {
    width: 34px;
    height: 34px;
    border-radius: 50%;
}

.showcase-card-1_header_avator-default {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background-color: #ddd;
}

.showcase-card-1_header_icon {
    width: 25px;
    height: 25px;
}

.showcase-card-1_header_icon img {
    width: 100%;
    height: 100%;
}

.showcase-card-1_header_icon-default {
    width: 25px;
    height: 25px;
    background-color: #ddd;
}

.showcase-card-1_header_name-wrapper {
    margin-left: 5px;
    margin-right: 10px;
    flex: 1 1 100px;
    width: 100px;
    display: flex;
    flex-direction: column;
}

.showcase-card-1_header_name {
    color: #000000;
}

.showcase-card-1_header_name_desc {
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 10px;
    line-height: 14px;
    color: #000000;
    opacity: 0.45;
}

.showcase-card-1_image {
    flex: 1 1 auto;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.showcase-card-1_image img {
    position: absolute;
    z-index: 9;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.showcase-card-1_image-default {
    width: 100%;
    height: 100%;
    background-color: rgb(var(--color-image-background));
}

/* 移动端适配 */
@media screen and (max-width: 768px) {
  .showcase-card-1 {
    width: 100%;
    height: auto;
    aspect-ratio: 0.8;
    border-radius: 10px;
  }

  .showcase-card-1:hover {
    transform: none;
  }

  /* 头部样式调整 */
  .showcase-card-1_header {
    padding: 8px;
  }

  .showcase-card-1_header_avator {
    width: 28px;
    height: 28px;
    position: relative;
  }

  .showcase-card-1_header_avator .showcase-card-1_header_avator-default {
    width: 30px;
    height: 30px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .showcase-card-1_header_avator img {
    width: 26px;
    height: 26px;
  }

  .showcase-card-1_header_name_desc {
    font-size: 10px;
    line-height: 14px;
  }

  .showcase-card-1_header_icon {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
  }

  /* 图片容器调整 */
  .showcase-card-1_image {
    flex: 1;
    position: relative;
  }

  .showcase-card-1_image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: none;
  }

  /* 视频图标调整 */
  .showcase-card-1_video-icon {
    width: 24px;
    height: 24px;
    bottom: 8px;
    right: 8px;
  }

  .showcase-card-1_header_name-wrapper {
    margin-left: 3px;
    margin-right: 3px;
  }
}
