| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- /* components/existProduct-list/existProduct-list.wxss */
- /* 商品列表 */
- .prodsList{
- width: 668rpx;
- margin: auto;
- }
- .itemProd{
- /* min-height: 224rpx; */
- padding: 40rpx 0;
- border-bottom: 1rpx solid #EFEFEF;
- /* display: flex; */
- /* align-items: center; */
- /* flex-direction: column; */
- }
- /* 商品信息 */
- .goods-info {
- width: 100%;
- display: flex;
- margin-left: 20rpx;
- position: relative;
- }
- .goods-info image {
- width: 170rpx;
- height: 170rpx;
- border-radius: 10rpx;
- }
- .goods-info .info {
- margin-left: 10px;
- display: flex;
- flex-direction: column;
- }
- .count {
- padding: 5rpx 15rpx;
- background:#EFEFEF;
- border-radius: 10rpx;
- position: absolute;
- right: 10rpx;
- bottom: 0;
- }
- /* 物流单号 */
- .logisticsNo{
- width: 100%;
- display: flex;
- justify-content: space-between;
- margin: 30rpx 0 0 20rpx;
- }
|