.multi-goods-list-container {
  display: flex;
  flex-direction: row;
  // margin: var(--s-1, 8rpx) auto;
  width: calc(750rpx - 48rpx * 2);
  height: 168rpx;
  position: relative;
  border-bottom: 1rpx solid var(--color-line1-1, #e8e9ec);

  &.package-split {
    margin: var(--s-3, 24rpx) 0;

    .logistic-goods-count {
      border-radius: 0;
    }
  }

  .multi-goods-list-inner {
    display: flex;
    flex-direction: row;
    overflow: scroll;
    position: relative;
    width: 100%;

    .logistic-goods-container {
      display: flex;
      flex-direction: row;

      .goods-container {
        width: 144rpx;
        height: 144rpx;
        position: relative;
        border-radius: var(--corner-1, 8rpx);
        background-color: var(--color-white, #fff);
        margin: 0 var(--s-1, 8rpx)  var(--s-3, 24rpx);
        overflow: hidden;
    
        .goods-pic {
          width: 100%;
          height: 100%;
          border-radius: var(--corner-3, 24rpx);
        }
    
        .goods-quantity {
          position: absolute;
          bottom: 0;
          height: 32rpx;
          width: 100%;
          line-height: 16px;
          text-align: center;
          background-color: rgba(0, 0, 0, .5);
          color: var(--color-white, #fff);
          font-size: var(--p-body-1-font-size, 24rpx);
        }

      }
    }
  }


  .logistic-goods-count {
    background-image: linear-gradient(270deg, #FFFFFF 70%, rgba(255,255,255,0.80) 100%);
    box-shadow: -2px 0 12px 0 rgba(50,50,51,0.12);
    width: 128rpx;
    height: 192rpx;
    position: absolute;
    right: 0;
    text-align: center;
    line-height: 192rpx;
    margin-top: -24rpx;
    margin-right: -24rpx;
    border-top-right-radius: var(--std-corner, var(--corner-3, 24rpx));
  }
}

