historyOrder.wxss 826 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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: 60%;
  24. }
  25. .dataSelect image{
  26. width: 50rpx;
  27. height: 50rpx;
  28. margin-right: 5%;
  29. }
  30. picker{
  31. margin-left: 4%;
  32. width: 100%;
  33. }
  34. .order{
  35. display: flex;
  36. flex-direction: column;
  37. align-items: center;
  38. width: 93%;
  39. }
  40. .orderItem {
  41. width: 100%;
  42. box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  43. border-radius: 1%;
  44. margin-top: 5%;
  45. }