orderItemInfo.wxss 1.9 KB

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