.goods-card {
  display: flex;
  line-height: 1;

  // &:active{
  //   opacity: .7;
  // }
  .goods-card_image {
    display: flex;
    justify-content: center;
    position: relative;
    border: 1px solid #f8f8f8;
    border-radius: 7rpx;
    margin-right: 13rpx;
    flex-shrink: 0;

    .goods-status_error {
      position: absolute;
      top: 0;
      left: 0;
      // border-radius: 50%;
      background-color: rgba(0, 0, 0, .5);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 28rpx;
    }
  }

  .goods-card_info {
    display: flex;
    // flex-direction: column;
    align-content: space-between;
    flex-wrap: wrap;
    flex: 1;
    padding-top: 3rpx;

    .goods-card_info_title {
      width: 100%;

      .text {
        font-size: 24rpx;
        font-weight: 600;
        line-height: 1;
      }
    }

    .goods-card_info_tag {
      display: flex;
      align-items: center;
      line-height: 1;
      margin-top: 10rpx;
      width: 100%;

      .tag-box {
        display: flex;
        align-items: center;

        .icon {
          margin-right: 8rpx;
        }

        .icon_yh {
          width: 20rpx;
          height: 23rpx;
        }
      }
    }

    .rebate-box {
      display: flex;
      align-items: center;
      font-size: 20rpx;
      border: 1px solid rgba(255, 82, 79, 1);
      border-radius: 10rpx;
      overflow: hidden;
      margin-top: 10rpx;
      height: 40rpx;

      .rebate-box_title {
        font-size: 20rpx;
        color: rgb(1, 1, 1);
        background-color: rgba(255, 82, 79, 1);
        padding: 0 15rpx;
        height: 100%;
        display: flex;
        align-items: center;
        color: #fff;
      }

      .rebate-box_content {
        display: flex;
        align-items: center;
        padding: 0rpx 10rpx;
        color: rgba(255, 82, 79, 1);

        .rebate-box_content_icon {
          display: flex;
          align-items: center;
          color: rgba(102, 102, 102, 1);

          .rebate-icon {
            width: 25rpx;
            height: 25rpx;
          }
        }
      }
    }

    .goods-card_info_sales-volume {
      width: 100%;
      display: flex;
      align-items: center;
      margin: 10rpx 0;
      line-height: 1;

      .goods-card_info_sales-volume_text {
        font-size: 20rpx;
        color: #666666;
        line-height: 1;
      }
    }
    .goods-card_info_sales-specification {
      width: 100%;
      display: flex;
      align-items: center;
      margin: 10rpx 0;
      line-height: 1;

      .goods-card_info_sales-specification_text {
        font-size: 20rpx;
        color: #666666;
        line-height: 1;
      }
    }
    .goods-card_info_price {
      width: 100%;
      display: flex;
      // align-items: flex-end;
      flex-wrap: wrap;
      align-items: center;
      line-height: 1.2;

      .goods-card_info_price_preferential-price {
        font-size: 24rpx;
        color: #ff524f;
        font-weight: 600;
        margin-right: 10rpx;
      }

      .goods-card_info_price_price {
        font-size: 20rpx;
        color: #999999;
        text-decoration: line-through;
      }
    }

    .goods-card_info_status,
    .goods-card_info_add {
      width: 100%;
      display: flex;
      justify-content: flex-end;
      align-items: center;
      position: relative;
    }



    .goods-card_info_status {
      .goods-card_info_status_text {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 170rpx;
        height: 46rpx;
        font-size: 20rpx;
        color: #999999;
        border-radius: 26rpx;
        background: #d0d0d0;
        color: #fff;
        font-size: 20rpx;
      }
    }

    .goods-card_info_add {
      height: 55rpx;
      box-sizing: border-box;
      display: flex;
      align-items: flex-end;
    }

    .goods-card_info_add_icon {
      width: 80rpx;
      height: 39rpx;
      padding-right: 15rpx;
      display: flex;
      justify-content: flex-end;
    }

    .number-box {
      position: absolute;
      bottom: 0;
      right: 0;
      padding-right: 15rpx;
      z-index: 21;
    }
  }
}