my-order.wxss 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243
  1. /* pages/my-order/my-order.wxss */
  2. page {
  3. background: #f0f1f2;
  4. }
  5. .container {
  6. height: 100%;
  7. display: flex;
  8. flex-direction: column;
  9. align-items: center;
  10. }
  11. .header {
  12. width: 750rpx;
  13. height: 112rpx;
  14. background: #1890ff;
  15. font-size: 32rpx;
  16. font-family: PingFangSC-Medium, PingFang SC;
  17. font-weight: 500;
  18. color: rgba(255, 255, 255, 0.65);
  19. display: flex;
  20. align-items: center;
  21. justify-content: space-around;
  22. position: fixed;
  23. left: 0;
  24. top: 0;
  25. }
  26. .header-item {
  27. position: relative;
  28. }
  29. .header-item view {
  30. width: 28rpx;
  31. height: 28rpx;
  32. text-align: center;
  33. font-size: 24rpx;
  34. font-family: Helvetica-Bold, Helvetica;
  35. font-weight: bold;
  36. color: #ffffff;
  37. background: #fa541c;
  38. border-radius: 50%;
  39. background: #fa541c;
  40. position: absolute;
  41. right: -10rpx;
  42. top: -10rpx;
  43. }
  44. .item-activated {
  45. font-size: 38rpx;
  46. font-family: PingFangSC-Medium, PingFang SC;
  47. font-weight: 500;
  48. color: #ffffff;
  49. position: relative;
  50. }
  51. .item-activated::after {
  52. content: "";
  53. width: 88rpx;
  54. height: 6rpx;
  55. background: #ffffff;
  56. border-radius: 3rpx;
  57. position: absolute;
  58. left: 50%;
  59. bottom: -8rpx;
  60. margin-left: -44rpx;
  61. }
  62. .cell-group {
  63. width: 750rpx;
  64. padding: 20rpx;
  65. box-sizing: border-box;
  66. margin-top: 112rpx;
  67. }
  68. .cell {
  69. width: 710rpx;
  70. box-sizing: border-box;
  71. background: #fff;
  72. display: flex;
  73. flex-direction: column;
  74. border-radius: 18rpx;
  75. border: 2rpx solid rgba(235, 235, 236, 0.8);
  76. margin-bottom: 20rpx;
  77. }
  78. .content {
  79. min-height: 253rpx;
  80. /* background: #ffffff; */
  81. padding: 40rpx 24rpx;
  82. box-sizing: border-box;
  83. }
  84. .content-header {
  85. font-size: 38rpx;
  86. font-family: PingFangSC-Medium, PingFang SC;
  87. font-weight: 500;
  88. color: rgba(0, 0, 0, 0.85);
  89. display: flex;
  90. align-items: center;
  91. justify-content: space-between;
  92. }
  93. .price {
  94. color: #096dd9;
  95. }
  96. .content-company {
  97. font-size: 28rpx;
  98. font-family: PingFangSC-Regular, PingFang SC;
  99. font-weight: 400;
  100. color: rgba(0, 0, 0, 0.65);
  101. margin-top: 16rpx;
  102. }
  103. .content-info {
  104. font-size: 24rpx;
  105. font-family: PingFangSC-Regular, PingFang SC;
  106. font-weight: 400;
  107. color: rgba(0, 0, 0, 0.65);
  108. display: flex;
  109. align-items: center;
  110. margin-top: 16rpx;
  111. }
  112. .address {
  113. min-height: 48rpx;
  114. background: #f5f5f5;
  115. border-radius: 18rpx;
  116. padding: 12rpx 16rpx;
  117. box-sizing: border-box;
  118. margin-right: 16rpx;
  119. display: flex;
  120. align-items: center;
  121. }
  122. .address-image {
  123. height: 24rpx;
  124. width: 24rpx;
  125. margin-right: 10rpx;
  126. }
  127. .number {
  128. min-height: 48rpx;
  129. background: #f5f5f5;
  130. border-radius: 8rpx;
  131. padding: 12rpx 16rpx;
  132. box-sizing: border-box;
  133. display: flex;
  134. align-items: center;
  135. }
  136. .number-image {
  137. height: 24rpx;
  138. width: 24rpx;
  139. margin-right: 10rpx;
  140. }
  141. .order-info {
  142. width: 710rpx;
  143. min-height: 98rpx;
  144. font-size: 28rpx;
  145. font-family: PingFangSC-Regular, PingFang SC;
  146. font-weight: 400;
  147. color: rgba(0, 0, 0, 0.65);
  148. /* background: #ffffff; */
  149. border-top: 2rpx solid rgba(235, 235, 236, 0.8);
  150. padding: 20rpx 24rpx;
  151. box-sizing: border-box;
  152. display: flex;
  153. align-items: center;
  154. justify-content: space-between;
  155. }
  156. .button-confirm {
  157. width: 168rpx;
  158. height: 58rpx;
  159. text-align: center;
  160. line-height: 58rpx;
  161. font-size: 28rpx;
  162. font-family: PingFangSC-Medium, PingFang SC;
  163. font-weight: 500;
  164. color: #ffffff;
  165. background: #1890ff;
  166. border-radius: 29rpx;
  167. }
  168. .doing,
  169. .done {
  170. font-size: 28rpx;
  171. font-family: PingFangSC-Medium, PingFang SC;
  172. font-weight: 500;
  173. color: rgba(0, 0, 0, 0.25);
  174. }
  175. .offline {
  176. height: 70%;
  177. display: flex;
  178. flex-direction: column;
  179. align-items: center;
  180. justify-content: center;
  181. }
  182. .offline-image {
  183. height: 260rpx;
  184. width: 260rpx;
  185. }
  186. .offline-text {
  187. font-size: 34rpx;
  188. font-family: PingFangSC-Medium, PingFang SC;
  189. font-weight: 500;
  190. color: rgba(0, 0, 0, 0.45);
  191. margin-top: 100rpx;
  192. }
  193. .offline-message {
  194. font-size: 28rpx;
  195. font-family: PingFangSC-Regular, PingFang SC;
  196. font-weight: 400;
  197. color: rgba(0, 0, 0, 0.25);
  198. margin-top: 10rpx;
  199. }
  200. .offline-reload {
  201. width: 168rpx;
  202. height: 58rpx;
  203. line-height: 58rpx;
  204. text-align: center;
  205. font-size: 28rpx;
  206. font-family: PingFangSC-Regular, PingFang SC;
  207. font-weight: 400;
  208. color: #ffffff;
  209. background: rgba(0, 0, 0, 0.25);
  210. border-radius: 29rpx;
  211. margin-top: 100rpx;
  212. }
  213. .tar-bar{
  214. height: 110rpx;
  215. }