.goods {
  display: flex;
  background: #fff;
  cursor: pointer;
  margin-bottom: @order-item-margin;
  &:first-child {
    margin-top: @order-item-margin-top;
  }

  strong {
    font-size: @order-item-font-12;
  }

  .children{
    min-width: 100px;
    display: flex;
    flex-direction: column;
    flex: 1;
  }
  .productTitle {
    color: rgba(0, 0, 0, 85%);
    font-size: @order-item-font-14;
    flex: 1;
    margin: 0 !important;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    word-wrap: break-word;
    word-break: break-all;
  }

  .remark{
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    word-wrap: break-word;
    word-break: break-all;
    color: rgba(0, 0, 0, 45%);
  }
  h2 {
    display: inline;
    padding-left: @order-item-h2-padding;

    strong {
      font-size: @order-item-font-20;
    }
  }

  & > img {
    width: @order-item-img-size;
    height: @order-item-img-size;
    margin-right: @order-item-img-margin;
  }

  & > div {
    width: 100%;
  }

  .sku {
    border-radius: @order-item-border-radius;
    padding: @order-item-sku-padding;
    font-size: @order-item-font-10;
    color: rgba(0, 0, 0, 45%);
    margin: @order-item-sku-margin;
    // display: inline-block;
    word-break: break-word;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
  }

  .goodPrice {
    display: flex;
    align-items: baseline;
    div {
      margin: 0;
      flex: 1;
    }
    .price_icon{
      font-size: 12px;
      font-family: DINPro-Medium, DINPro;
      font-weight: 500;
      color: rgba(0, 0, 0, 0.85);
      line-height: 15px;
    }
    .price{
      font-size: 18px;
      font-family: DINPro-Medium, DINPro;
      font-weight: 500;
      color: rgba(0, 0, 0, 0.85);
      line-height: 23px;
    }
    .point_price{
      font-size: 12px;
      font-family: DINPro-Medium, DINPro;
      font-weight: 500;
      color: rgba(0, 0, 0, 0.85);
      line-height: 15px;
    }
  }
}

.orderItemChat {
  margin-bottom: 24px;
  background-color: #fff;
  .goods {
    padding: 0;
    margin: 0;
  }

  img {
    width: 64px;
    height: 64px;
    border-radius: 4px;
  }
  .goodPrice {
    > div {
      font-size: 14px;
      font-family: SFProText-Regular, SFProText;
      font-weight: 400;
      color: rgba(0, 0, 0, 0.85);
    }
    > span {
      font-size: 12px;
      font-family: SFProText-Medium, SFProText;
      font-weight: 500;
      color: rgba(0, 0, 0, 0.65);
    }
  }
  p {
    font-size: 12px;
    font-family: SFProText-Regular, SFProText;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.45);
    line-height: 14px;
    margin-top: 4px;
  }
}
