orderDetail.wxss 662 B

1234567891011121314151617181920212223242526272829303132
  1. /* pages/order/orderDetail/orderDetail.wxss */
  2. .address{
  3. width: 650rpx;
  4. height: 176rpx;
  5. background: #F7F7F7;
  6. border-radius: 30rpx;
  7. margin: 64rpx auto;
  8. box-shadow: 0 0 10rpx 10rpx #F0F0F0;
  9. display: flex;
  10. align-items: center;
  11. justify-content: space-around;
  12. }
  13. .address .userInfo{
  14. display: flex;
  15. justify-content: space-between;
  16. }
  17. .address .icon{
  18. width: 170rpx;
  19. }
  20. .address .more{
  21. width: 30rpx;
  22. transform: rotate(180deg);
  23. margin: 0 20px;
  24. }
  25. /* 物流单号 */
  26. .logisticsNo{
  27. display: flex;
  28. justify-content: space-between;
  29. padding: 0 40rpx;
  30. line-height: 100rpx;
  31. }