.pro-container {
  display: flex;
  position: relative;
  flex-direction: column;
  border: 1px solid rgb(204, 204, 204);
  height: 100%;

  // :global {
  .img-wrap {
    position: relative;
    .product-img {
      height: 163.5px;
      width: 100%;
      object-fit: cover;
    }
    .out-of-stock-img {
      position: absolute;
      z-index: 10;
      left: 0;
      right: 0;
      width: 100%;
      height: 100%;
      background: rgba(255, 255, 255, 0.7);
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 6px 6px 0 0;
      img {
        width: 88px;
        height: 88px;
      }
    }
  }

  .product-content-wrap {
    padding: 8px;
    padding-top: 0;
    margin-top: auto;
  }

  .label-wrap {
    display: flex;
    flex-wrap: wrap;
    margin-top: 6px;
    .label-container {
      height: 14px;
      padding: 0 5px;
      background: #FF1659;
      color: #FFF;
      font-size: 8px;
      font-family: var(--truenoSBd-family);
      margin-right: 3px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
  }

  .product-name {
    font-size: 14px;
    font-family: var(--truenoSBd-family);
    font-weight: 600;
    color: #000;
    margin-top: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    white-space: normal;
  }
  .product-name-height{
    height: 42px;
  }

  .price-wrap {
    display: flex;
    flex-direction: column;
    margin-top: 8px;

    .old-price {
      display: flex;
      margin-top: 4px;
      // line-height: 1;
      align-items: center;

      .discount {
        padding: 2px 5px;
        background: #FF1659;
        font-size: 8px;
        font-family: var(--truenoSBd-family);
        color: #FFFFFF;
        margin-right: 5px;
      }
    }
    .old-price-hieght{
      height: 18px;
    }
  }

  .rate-wrap {
    display: flex;
    margin-top: 10px;
    align-items: center;

    .rate-number {
      font-size: 10px;
      color: #7B7B7B;
      font-family: var(--light-font);
    }
  }

  .progress-box {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    width: 100%;
    padding-right: 12px;
    padding-bottom: 1px;
    margin-bottom: 10px;

    .progress-txt {
      // position: absolute;
      font-size: 10px;
      font-family: var(--light-font);
      line-height: 12px;
      color: #7B7B7B;
      margin-bottom: 4px;
    }
  }

  // }


  &.row {
    flex-direction: row;
    padding: 10px;
    margin: 10px;
    background-color: #fff;

    .product-img {
      height: 140px;
      width: 140px;
      flex-shrink: 0;
      position: relative;
    }

    .product-content-wrap {
      width: 100%;
    }
  }
}
