orderItem.wxss 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. .orderItemContainer{
  2. display: flex;
  3. flex-direction: column;
  4. align-items: center;
  5. width: 100%;
  6. margin-top: 3%;
  7. margin-bottom: 3%;
  8. }
  9. .dateTime {
  10. display: flex;
  11. flex-direction: row;
  12. justify-content: space-between;
  13. align-items: center;
  14. width: 100%;
  15. }
  16. .timeAndStatus{
  17. display: flex;
  18. flex-direction: column;
  19. align-items: center;
  20. }
  21. .middle {
  22. display: flex;
  23. flex-direction: row;
  24. align-items: center;
  25. width: 90%;
  26. border-bottom: 2rpx dashed #e1e1e2;
  27. }
  28. .middle image{
  29. width: 150rpx;
  30. height: 150rpx;
  31. }
  32. .orderInfo{
  33. width: 50%;
  34. height: 100%;
  35. display: flex;
  36. flex-direction: column;
  37. justify-content: space-around;
  38. }
  39. .nozzleAndVolume{
  40. display: flex;
  41. width: 60%;
  42. justify-content: space-between;
  43. align-items: center;
  44. margin-top: 3%;
  45. }
  46. .nozzle {
  47. color: #ffffff;
  48. font-weight: 600;
  49. font-size: small;
  50. background-color: #ca5a50;
  51. border-radius: 10%;
  52. }
  53. .volume {
  54. color: #ff4e0e;
  55. font-size: large;
  56. }
  57. .bottom {
  58. display: flex;
  59. flex-direction: row;
  60. align-items: center;
  61. justify-content: space-between;
  62. margin-top: 5%;
  63. width: 90%;
  64. }
  65. .amount {
  66. display: flex;
  67. flex-direction: row;
  68. font-weight: 600;
  69. }
  70. .botton{
  71. display: flex;
  72. width: 60%;
  73. justify-content: space-between;
  74. }
  75. .botton button{
  76. width: 45%;
  77. background-color: transparent;
  78. border: 1rpx solid #b6df96;
  79. font-weight: 500;
  80. display: flex;
  81. align-items: center;
  82. justify-content: center;
  83. padding: 5px;
  84. }