orderItemInfo.wxss 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. .orderItemInfoContainer{
  2. display: flex;
  3. flex-direction: column;
  4. align-items: center;
  5. justify-content: center;
  6. width: 100%;
  7. border-radius: 15rpx;
  8. }
  9. .orderInfoBox{
  10. display: flex;
  11. flex-direction: column;
  12. align-items: center;
  13. width: 90%;
  14. }
  15. .nozzleAndStatus{
  16. display: flex;
  17. justify-content: center;
  18. width: 100%;
  19. }
  20. .nozzle{
  21. font-weight: 600;
  22. }
  23. .status{
  24. position: absolute;
  25. font-weight: 600;
  26. margin-left: 70%;
  27. }
  28. .orderInfo{
  29. width: 100%;
  30. overflow: hidden;
  31. transition: height 0.3s ease-in-out; /* 添加过渡效果 */
  32. }
  33. .mainInfo{
  34. display: flex;
  35. justify-content: space-between;
  36. align-items: center;
  37. width: 100%;
  38. }
  39. .mainInfo image{
  40. width: 150rpx;
  41. height: 150rpx;
  42. flex-grow: 1;
  43. }
  44. .oilInfo{
  45. display: flex;
  46. flex-direction: column;
  47. flex-grow: 3;
  48. }
  49. .oil{
  50. color: #d92610;
  51. font-size: large;
  52. font-weight: 550;
  53. margin-bottom: 3%;
  54. }
  55. .volume{
  56. color: #878787;
  57. font-size: small;
  58. }
  59. .amountBox{
  60. display: flex;
  61. flex-direction: column;
  62. align-items: flex-end;
  63. flex-grow: 3;
  64. }
  65. .mainAmount{
  66. font-size: larger;
  67. font-weight: 600;
  68. margin-bottom: 3%;
  69. }
  70. .amountBox image {
  71. width: 40rpx;
  72. height: 40rpx;
  73. margin-top: 3%;
  74. transition: transform 0.3s ease-in-out;
  75. }
  76. .line{
  77. background-color: #e5e5e5;
  78. height: 1rpx;
  79. width: 105%;
  80. margin: 3% 0%;
  81. }
  82. .orderDetailInfo{
  83. display: flex;
  84. flex-direction: column;
  85. width: 100%;
  86. }
  87. .orderDetailInfo view{
  88. display: flex;
  89. justify-content: space-between;
  90. }
  91. .orderDetailInfo text{
  92. color: #838383;
  93. font-size: small;
  94. margin: 1% 0%;
  95. }
  96. .botton{
  97. display: flex;
  98. justify-content: center;
  99. align-items: center;
  100. background-color: #d81e07;
  101. color: #FFFFFF;
  102. width: 100%;
  103. height: 5vh;
  104. font-size: small;
  105. border-radius: 0 0 15rpx 15rpx ;
  106. margin-top: 3%;
  107. }