orderItemInfo.wxss 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158
  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. .dateTip{
  20. display: flex;
  21. align-items: center;
  22. width: 50%;
  23. }
  24. .dataSelect image{
  25. width: 50rpx;
  26. height: 50rpx;
  27. margin-right: 5%;
  28. }
  29. .orderItemInfoContainer{
  30. display: flex;
  31. flex-direction: column;
  32. align-items: center;
  33. justify-content: center;
  34. width: 100%;
  35. border-radius: 15rpx;
  36. background-color: #ffffff;
  37. box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  38. }
  39. .orderInfoBox{
  40. display: flex;
  41. flex-direction: column;
  42. align-items: center;
  43. width: 90%;
  44. }
  45. .nozzleAndStatus{
  46. display: flex;
  47. justify-content: center;
  48. width: 100%;
  49. }
  50. .nozzle{
  51. font-weight: 600;
  52. margin-top: 3%;
  53. }
  54. .status{
  55. position: absolute;
  56. font-weight: 600;
  57. margin-left: 70%;
  58. margin-top: 3%;
  59. }
  60. .orderInfo{
  61. width: 100%;
  62. overflow: hidden;
  63. transition: height 0.3s ease-in-out; /* 添加过渡效果 */
  64. }
  65. .mainInfo{
  66. display: flex;
  67. justify-content: space-between;
  68. align-items: center;
  69. width: 100%;
  70. }
  71. .mainInfo image{
  72. width: 150rpx;
  73. height: 150rpx;
  74. flex-grow: 1;
  75. }
  76. .youqiang{
  77. transform: scaleX(-1);
  78. }
  79. .oilInfo{
  80. display: flex;
  81. flex-direction: column;
  82. flex-grow: 3;
  83. }
  84. .oil{
  85. color: #0177e6;
  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: 2% 0%;
  116. }
  117. .orderDetailInfo{
  118. display: flex;
  119. flex-direction: column;
  120. width: 100%;
  121. margin-bottom: 3%;
  122. transition: max-height 0.3s ease-in-out;
  123. }
  124. .orderDetailInfo view{
  125. display: flex;
  126. justify-content: space-between;
  127. }
  128. .orderDetailInfo text{
  129. color: #838383;
  130. font-size: small;
  131. margin: 1% 0%;
  132. }
  133. .botton{
  134. display: flex;
  135. justify-content: center;
  136. align-items: center;
  137. background-color: #0d7ee7;
  138. color: #FFFFFF;
  139. width: 100%;
  140. height: 5vh;
  141. font-size: small;
  142. border-radius: 0 0 15rpx 15rpx ;
  143. }