orderInfo.wxss 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. .orderItemContainer{
  2. display: flex;
  3. flex-direction: column;
  4. align-items: center;
  5. width: 90%;
  6. margin-top: 5%;
  7. margin-bottom: 3%;
  8. box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  9. border-radius: 3%;
  10. padding: 2% 2%;
  11. }
  12. .flip-image {transform: scaleX(-1);}
  13. .dateTime {
  14. display: flex;
  15. flex-direction: row;
  16. justify-content: space-between;
  17. align-items: center;
  18. width: 100%;
  19. }
  20. .middle {
  21. display: flex;
  22. flex-direction: row;
  23. align-items: center;
  24. width: 90%;
  25. border-bottom: 2rpx dashed #e1e1e2;
  26. }
  27. .middle image{
  28. width: 150rpx;
  29. height: 150rpx;
  30. }
  31. .orderInfo{
  32. width: 50%;
  33. height: 100%;
  34. display: flex;
  35. flex-direction: column;
  36. justify-content: space-around;
  37. }
  38. .nozzleAndVolume{
  39. display: flex;
  40. width: 60%;
  41. justify-content: space-between;
  42. align-items: center;
  43. margin-top: 3%;
  44. }
  45. .nozzle {
  46. color: #ffffff;
  47. font-weight: 600;
  48. font-size: small;
  49. background-color: #0d7ee7;
  50. border-radius: 10%;
  51. }
  52. .volume {
  53. color: #0d7ee7;
  54. font-size: large;
  55. }
  56. .bottom {
  57. display: flex;
  58. flex-direction: row-reverse;
  59. align-items: center;
  60. justify-content: space-between;
  61. margin-top: 5%;
  62. width: 90%;
  63. }
  64. .amount {
  65. display: flex;
  66. flex-direction: row;
  67. font-weight: 600;
  68. }