.pisell-pro-cards-sku-card {
  position: relative;
  display: flex;
  // padding: 8px;
  align-items: center;
  // gap: 16px;
  border-radius: 8px;
  border: 1px solid #d0d5dd;
  background: #ffffff;
  cursor: pointer;
  width: 100%;

  &-disabled-mask {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 8px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  &-disabled-text {
    font-size: 16px;
    font-weight: 700;
    color: #000000;
    transform: rotate(45deg);
  }

  &-left {
    display: flex;
    flex-direction: row;
    flex: 1;
    align-items: center;
    align-self: stretch;
    padding: 8px;
    gap: 16px;
  }

  &-disabled-mask {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 8px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  &-disabled-text {
    font-size: 16px;
    font-weight: 700;
    color: #000000;
    transform: rotate(45deg);
  }

  &-with-image {
    min-height: 80px;
  }

  &-no-image {
    min-height: 56px;
  }

  &-active {
    border: 1px solid var(--color-primary, #5d3f9f);
    background: var(--color-primary-bg, #fcfaff);
  }

  &-disabled {
    border: 1px solid #d0d5dd;
    background: #f9fafb;
    cursor: not-allowed;
  }

  &-content {
    align-self: stretch;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    flex: 1;
  }

  &-image-container {
    position: relative;
    width: 96px;
    // 跟随右边 content 高度变动
    align-self: stretch;
    border-radius: 8px;
    overflow: hidden;
  }

  &-image {
    // 绝对定位填充容器，不会撑开容器高度
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  &-image-default {
    // 绝对定位填充容器，不会撑开容器高度
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #98a2b3;
    font-size: 18px;
    font-weight: 400;
    background: #d9d9d9;
  }

  &-title {
    // 默认全部展示，可换行
    color: #1b1b1b;
    font-size: 14px;
    font-weight: 600;
    word-break: break-word;
  }

  &-subtitle {
    // 默认展示两行
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: #777777;
    text-overflow: ellipsis;
    font-size: 12px;
    font-weight: 500;
    word-break: break-word;
  }

  &-price {
    color: #dc6803;
    font-size: 14px;
    font-weight: 600;
  }

  &-right {
    display: flex;
    align-self: stretch;
  }
}
