orderInfo.wxss 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. .orderItemContainer{
  2. display: flex;
  3. flex-direction: column;
  4. align-items: center;
  5. width: 90%;
  6. margin-top: 5%;
  7. margin-bottom: 3%;
  8. box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  9. border-radius: 3%;
  10. padding: 2% 2%;
  11. }
  12. .dateTime {
  13. display: flex;
  14. flex-direction: row;
  15. justify-content: space-between;
  16. align-items: center;
  17. width: 100%;
  18. }
  19. .middle {
  20. display: flex;
  21. flex-direction: row;
  22. align-items: center;
  23. width: 90%;
  24. border-bottom: 2rpx dashed #e1e1e2;
  25. }
  26. .middle image{
  27. width: 150rpx;
  28. height: 150rpx;
  29. }
  30. .orderInfo{
  31. width: 50%;
  32. height: 100%;
  33. display: flex;
  34. flex-direction: column;
  35. justify-content: space-around;
  36. }
  37. .nozzleAndVolume{
  38. display: flex;
  39. width: 60%;
  40. justify-content: space-between;
  41. align-items: center;
  42. margin-top: 3%;
  43. }
  44. .nozzle {
  45. color: #ffffff;
  46. font-weight: 600;
  47. font-size: small;
  48. background-color: #ca5a50;
  49. border-radius: 10%;
  50. }
  51. .volume {
  52. color: #ff4e0e;
  53. font-size: large;
  54. }
  55. .bottom {
  56. display: flex;
  57. flex-direction: row-reverse;
  58. align-items: center;
  59. justify-content: space-between;
  60. margin-top: 5%;
  61. width: 90%;
  62. }
  63. .amount {
  64. display: flex;
  65. flex-direction: row;
  66. font-weight: 600;
  67. }