historyOrder.wxss 776 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. .orderContainer{
  2. display: flex;
  3. flex-direction: column;
  4. align-items: center;
  5. background-color: #f2f2f2;
  6. height: 100vh;
  7. }
  8. .dataSelect {
  9. display: flex;
  10. flex-direction: row;
  11. justify-content: space-between;
  12. align-items: center;
  13. width: 90%;
  14. box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  15. padding: 2% 3%;
  16. border-radius: 3%;
  17. background-color: #FFFFFF;
  18. margin-top: 1%;
  19. }
  20. .dateTip{
  21. display: flex;
  22. align-items: center;
  23. width: 50%;
  24. }
  25. .dataSelect image{
  26. width: 50rpx;
  27. height: 50rpx;
  28. margin-right: 5%;
  29. }
  30. .order{
  31. display: flex;
  32. flex-direction: column;
  33. align-items: center;
  34. width: 93%;
  35. }
  36. .orderItem {
  37. width: 100%;
  38. box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  39. border-radius: 1%;
  40. margin-top: 5%;
  41. }