orderDetail.wxss 516 B

123456789101112131415161718192021222324
  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. }