orderItem.wxss 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  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: #0d7ee7;
  51. border-radius: 10%;
  52. }
  53. .youqiang{transform: scaleX(-1);}
  54. .volume {
  55. color: #0d7ee7;
  56. font-size: large;
  57. }
  58. .bottom {
  59. display: flex;
  60. flex-direction: row;
  61. align-items: center;
  62. justify-content: space-between;
  63. margin-top: 5%;
  64. width: 90%;
  65. }
  66. .amount {
  67. display: flex;
  68. flex-direction: row;
  69. font-weight: 600;
  70. }
  71. .botton{
  72. display: flex;
  73. width: 60%;
  74. justify-content: space-between;
  75. }
  76. .botton button{
  77. width: 45%;
  78. background-color: transparent;
  79. border: 1rpx solid #b6df96;
  80. font-weight: 500;
  81. display: flex;
  82. align-items: center;
  83. justify-content: center;
  84. padding: 5px;
  85. }