prepayOrderItemInfo.wxss 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181
  1. .orderContainer{
  2. display: flex;
  3. flex-direction: column;
  4. align-items: center;
  5. background-color: #f2f2f2;
  6. }
  7. .dataSelect {
  8. display: flex;
  9. flex-direction: row;
  10. justify-content: space-between;
  11. align-items: center;
  12. width: 90%;
  13. box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  14. padding: 2% 3%;
  15. border-radius: 3%;
  16. background-color: #FFFFFF;
  17. margin-top: 1%;
  18. }
  19. .youqiang{
  20. transform: scaleX(-1);
  21. }
  22. .dateTip{
  23. display: flex;
  24. align-items: center;
  25. width: 50%;
  26. }
  27. .dataSelect image{
  28. width: 50rpx;
  29. height: 50rpx;
  30. margin-right: 5%;
  31. }
  32. .orderItemInfoContainer{
  33. display: flex;
  34. flex-direction: column;
  35. align-items: center;
  36. justify-content: center;
  37. width: 100%;
  38. border-radius: 15rpx;
  39. background-color: #FFFFFF;
  40. box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  41. }
  42. .orderInfoBox{
  43. display: flex;
  44. flex-direction: column;
  45. align-items: center;
  46. width: 90%;
  47. }
  48. .nozzleAndStatus{
  49. display: flex;
  50. justify-content: center;
  51. width: 100%;
  52. }
  53. .nozzle{
  54. font-weight: 600;
  55. margin-top: 3%;
  56. }
  57. .status{
  58. position: absolute;
  59. font-weight: 600;
  60. margin-left: 70%;
  61. margin-top: 3%;
  62. }
  63. .orderInfo{
  64. width: 100%;
  65. overflow: hidden;
  66. transition: height 0.3s ease-in-out; /* 添加过渡效果 */
  67. }
  68. .mainInfo{
  69. display: flex;
  70. justify-content: space-between;
  71. align-items: center;
  72. width: 100%;
  73. }
  74. .mainInfo image{
  75. width: 150rpx;
  76. height: 150rpx;
  77. flex-grow: 1;
  78. }
  79. .oilInfo{
  80. display: flex;
  81. flex-direction: column;
  82. flex-grow: 3;
  83. }
  84. .oil{
  85. color: #0c7de7;
  86. font-size: large;
  87. font-weight: 550;
  88. margin-bottom: 3%;
  89. }
  90. .volume{
  91. color: #878787;
  92. font-size: small;
  93. }
  94. .amountBox{
  95. display: flex;
  96. flex-direction: column;
  97. align-items: flex-end;
  98. flex-grow: 3;
  99. }
  100. .mainAmount{
  101. font-size: larger;
  102. font-weight: 600;
  103. margin-bottom: 3%;
  104. }
  105. .amountBox image {
  106. width: 40rpx;
  107. height: 40rpx;
  108. margin-top: 3%;
  109. transition: transform 0.3s ease-in-out;
  110. }
  111. .line{
  112. background-color: #e5e5e5;
  113. height: 1rpx;
  114. width: 105%;
  115. margin: 3% 0%;
  116. }
  117. .orderDetailInfo{
  118. display: flex;
  119. flex-direction: column;
  120. width: 100%;
  121. margin-bottom: 3%;
  122. }
  123. .orderDetailInfo view{
  124. display: flex;
  125. justify-content: space-between;
  126. }
  127. .orderDetailInfo text{
  128. color: #838383;
  129. font-size: small;
  130. margin: 1% 0%;
  131. }
  132. .buttonBox{
  133. width: 100%;
  134. height: 6vh;
  135. display: flex;
  136. align-items: center;
  137. justify-content: space-around;
  138. border-radius: 0 0 15rpx 15rpx ;
  139. }
  140. .button1All{
  141. width: 100%;
  142. height: 100%;
  143. display: flex;
  144. justify-content: center;
  145. align-items: center;
  146. background-color: #0d7ee7;
  147. border-radius: 0 0 15rpx 15rpx ;
  148. color: #FFFFFF;
  149. }
  150. .button1{
  151. width: 38%;
  152. height: 75%;
  153. display: flex;
  154. justify-content: center;
  155. align-items: center;
  156. border: #b2b2b2 solid 5rpx;
  157. border-radius: 15rpx ;
  158. }
  159. .button2{
  160. width: 38%;
  161. height: 75%;
  162. display: flex;
  163. justify-content: center;
  164. align-items: center;
  165. background-color: #0d7ee7;
  166. border-radius: 15rpx ;
  167. color: #FFFFFF;
  168. }