order.css 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153
  1. #order {
  2. height: 100%;
  3. }
  4. #order .divHead {
  5. width: 100%;
  6. height: 88rem;
  7. opacity: 1;
  8. background: #333333;
  9. position: relative;
  10. }
  11. #order .divHead .divTitle {
  12. font-size: 18rem;
  13. font-family: PingFangSC, PingFangSC-Regular;
  14. font-weight: 500;
  15. text-align: center;
  16. color: #ffffff;
  17. line-height: 25rem;
  18. letter-spacing: 0;
  19. position: absolute;
  20. bottom: 13rem;
  21. width: 100%;
  22. }
  23. #order .divHead .divTitle i {
  24. position: absolute;
  25. left: 16rem;
  26. top: 50%;
  27. transform: translate(0, -50%);
  28. }
  29. #order .divBody {
  30. margin: 10rem 12rem 10rem 12rem;
  31. background: #ffffff;
  32. border-radius: 6rem;
  33. padding-left: 10rem;
  34. padding-right: 10rem;
  35. height: calc(100% - 108rem);
  36. overflow-y: auto;
  37. }
  38. #order .divBody .van-list .van-cell::after {
  39. border: 0;
  40. }
  41. #order .divBody .item .timeStatus {
  42. height: 46rem;
  43. line-height: 16rem;
  44. font-size: 14rem;
  45. font-family: PingFangSC, PingFangSC-Regular;
  46. font-weight: 400;
  47. text-align: left;
  48. color: #666666;
  49. line-height: 20rem;
  50. letter-spacing: 0;
  51. display: flex;
  52. justify-content: space-between;
  53. align-items: center;
  54. border-bottom: 2rem dashed #efefef;
  55. border-top: 1px solid #efefef;
  56. }
  57. #order .divBody .item .timeStatus span:first-child {
  58. color: #333333;
  59. }
  60. #order .divBody .item .dishList {
  61. padding-top: 10rem;
  62. padding-bottom: 11rem;
  63. }
  64. #order .divBody .item .dishList .item {
  65. padding-top: 5rem;
  66. padding-bottom: 5rem;
  67. display: flex;
  68. justify-content: space-between;
  69. height: 20rem;
  70. opacity: 1;
  71. font-size: 14rem;
  72. font-family: PingFangSC, PingFangSC-Regular;
  73. font-weight: 400;
  74. text-align: left;
  75. color: #666666;
  76. line-height: 20rem;
  77. letter-spacing: 0;
  78. }
  79. #order .divBody .item .result {
  80. display: flex;
  81. justify-content: flex-end;
  82. height: 20rem;
  83. opacity: 1;
  84. font-size: 14rem;
  85. font-family: PingFangSC, PingFangSC-Regular;
  86. font-weight: 400;
  87. text-align: left;
  88. color: #666666;
  89. line-height: 20rem;
  90. }
  91. #order .divBody .item .result .price {
  92. color: #343434;
  93. }
  94. #order .divBody .item .btn {
  95. display: flex;
  96. justify-content: flex-end;
  97. margin-bottom: 17rem;
  98. margin-top: 20rem;
  99. }
  100. #order .divBody .btn .btnAgain {
  101. width: 124rem;
  102. height: 36rem;
  103. opacity: 1;
  104. border: 1px solid #e5e4e4;
  105. border-radius: 19rem;
  106. opacity: 1;
  107. font-size: 14rem;
  108. font-family: PingFangSC, PingFangSC-Regular;
  109. font-weight: 500;
  110. text-align: center;
  111. color: #333333;
  112. line-height: 36rem;
  113. letter-spacing: 0;
  114. position: relative;
  115. }
  116. #order .divNoData {
  117. width: 100%;
  118. height: calc(100% - 88rem);
  119. display: flex;
  120. flex-direction: column;
  121. align-items: center;
  122. justify-content: center;
  123. }
  124. #order .divNoData .divContainer img {
  125. width: 240rem;
  126. height: 129rem;
  127. }
  128. #order .divNoData .divContainer div {
  129. font-size: 24rem;
  130. font-family: PingFangSC, PingFangSC-Medium;
  131. font-weight: 500;
  132. text-align: center;
  133. color: #333333;
  134. line-height: 33rem;
  135. height: 33rem;
  136. margin-top: 20rem;
  137. }