index.rpx.scss 9.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392
  1. .tabBarLineHeight {
  2. height: 138rpx;
  3. }
  4. .tabBarView {
  5. position: fixed;
  6. bottom: 0;
  7. }
  8. .showDataLoading {
  9. margin-top: 40rpx;
  10. }
  11. .h-content-wrap {
  12. padding-top: 70rpx;
  13. background: linear-gradient(to bottom, #fef1b9, #fff);
  14. height: 180rpx;
  15. }
  16. .serial-number {
  17. padding: 48rpx;
  18. width: 600rpx;
  19. text-align: center;
  20. font-size: 28rpx;
  21. font-family: PingFangSC-Semibold, PingFang SC;
  22. line-height: 60rpx;
  23. background: white;
  24. border-radius: 15rpx;
  25. .number {
  26. line-height: 70rpx;
  27. font-size: 35rpx;
  28. color: #578D31;
  29. font-weight: bold;
  30. }
  31. .text {
  32. font-size: 26rpx;
  33. color: #FFC000;
  34. line-height: 80rpx;
  35. }
  36. .text1 {
  37. line-height: 80rpx;
  38. font-size: 26rpx;
  39. color: red;
  40. }
  41. }
  42. /* 菜单 */
  43. .tab-bar {
  44. display: flex;
  45. height: 80rpx;
  46. margin-left: 24rpx;
  47. background: #fff;
  48. width: 340rpx;
  49. border-radius: 40rpx;
  50. .tab-item {
  51. // flex: 1;
  52. width: 50%;
  53. display: flex;
  54. align-items: center;
  55. justify-content: center;
  56. font-size: 28rpx;
  57. color: #333;
  58. border-radius: 50rpx;
  59. }
  60. .tab-item.active {
  61. color: #333333;
  62. // background: linear-gradient(to right, #ff6c7b, #ff9db8);
  63. background: #FFE05C;
  64. border-radius: 50rpx;
  65. }
  66. }
  67. /* 服务订单的菜单 */
  68. .service-order-tab-bar {
  69. display: flex;
  70. justify-content: space-around;
  71. height: 100rpx;
  72. margin-top: 24rpx;
  73. .service-order-tab-item {
  74. flex: 1;
  75. display: flex;
  76. align-items: center;
  77. justify-content: center;
  78. font-size: 28rpx;
  79. color: #333;
  80. line-height: 52rpx;
  81. }
  82. .service-order-tab-item.active {
  83. color: #ff0000;
  84. }
  85. .underline {
  86. border-bottom: 4rpx solid #ff0000;
  87. }
  88. }
  89. /* 服务订单内容*/
  90. .service-order {
  91. /* 门店列表 */
  92. .grayscale {
  93. filter: grayscale(100%);
  94. }
  95. .store-wrap {
  96. background: #fff;
  97. border-radius: 24rpx;
  98. // margin-top: 14rpx;
  99. padding-left: 24rpx;
  100. padding-right: 24rpx;
  101. padding-bottom: 24rpx;
  102. .order-state {
  103. display: flex;
  104. font-size: 24rpx;
  105. align-items: center;
  106. .order-num {
  107. // width: 70%;
  108. // display: flex;
  109. // align-items: center;
  110. // height: 40rpx;
  111. .h-order-num {
  112. margin-right: 6rpx;
  113. font-size: 28rpx;
  114. font-family: PingFangSC-Regular, PingFang SC;
  115. color: #666666;
  116. image {
  117. width: 32rpx;
  118. height: 32rpx;
  119. transform: translateY(8rpx);
  120. }
  121. }
  122. .h-order-text {
  123. margin-right: 6rpx;
  124. font-size: 28rpx;
  125. font-size: large;
  126. font-family: PingFangSC-Regular, PingFang SC;
  127. color: #666666;
  128. }
  129. }
  130. .order-state-name {
  131. width: 30%;
  132. text-align: right;
  133. padding-right: 24rpx;
  134. .h-text1 {
  135. color: #666666;
  136. }
  137. .h-text2 {
  138. color: #93D21A;
  139. }
  140. .h-text3 {
  141. color: #FFAF36;
  142. }
  143. }
  144. }
  145. .store-list {
  146. margin-top: 24rpx;
  147. margin-bottom: 12rpx;
  148. display: flex;
  149. justify-content: space-between;
  150. .store-content {
  151. display: flex;
  152. justify-content: space-between;
  153. .store-img {
  154. width: 152rpx;
  155. image {
  156. height: 152rpx;
  157. border-radius: 6rpx;
  158. }
  159. }
  160. .content {
  161. width: 100%;
  162. padding-left: 16rpx;
  163. padding-top: 4rpx;
  164. padding-right: 24rpx;
  165. .title {
  166. height: 44rpx;
  167. font-size: 28rpx;
  168. font-family: PingFangSC-Medium, PingFang SC;
  169. font-weight: bold;
  170. color: #111111;
  171. line-height: 44rpx;
  172. margin-left: 8rpx;
  173. }
  174. .price {
  175. height: 44rpx;
  176. font-size: 28rpx;
  177. font-family: PingFangSC-Medium, PingFang SC;
  178. font-weight: bold;
  179. color: #ED569F;
  180. line-height: 44rpx;
  181. margin-left: 8rpx;
  182. }
  183. .desc {
  184. display: flex;
  185. // padding: 6rpx;
  186. .time {
  187. font-size: 24rpx;
  188. font-family: PingFangSC-Regular, PingFang SC;
  189. font-weight: 400;
  190. color: #ED569F;
  191. background: rgba(237, 86, 159, 0.1);
  192. padding: 6rpx 16rpx;
  193. border-radius: 0rpx 0rpx 12rpx 12rpx;
  194. }
  195. .service-type {
  196. font-size: 24rpx;
  197. font-family: PingFangSC-Regular, PingFang SC;
  198. color: black;
  199. background: #FFE05C;
  200. padding: 6rpx 16rpx;
  201. margin-left: 16rpx;
  202. border-radius: 0rpx 0rpx 12rpx 12rpx;
  203. }
  204. .service-mode {
  205. font-size: 24rpx;
  206. font-family: PingFangSC-Regular, PingFang SC;
  207. color: #93D21A;
  208. background: rgba(147, 210, 26, 0.1);
  209. padding: 6rpx 16rpx;
  210. margin-left: 16rpx;
  211. border-radius: 0rpx 0rpx 12rpx 12rpx;
  212. }
  213. }
  214. }
  215. }
  216. }
  217. .detail {
  218. font-size: 24rpx;
  219. padding-top: 12rpx;
  220. padding-bottom: 12rpx;
  221. background-image: url('/static/order/ud4.png');
  222. background-size: cover;
  223. .d-item-row {
  224. display: flex;
  225. height: 44rpx;
  226. align-items: center;
  227. .item-icon {
  228. display: flex;
  229. align-items: center;
  230. padding-right: 8rpx;
  231. image {
  232. height: 36rpx;
  233. width: 36rpx;
  234. }
  235. }
  236. .item-text {
  237. color: #666666;
  238. .item-v {
  239. font-family: PingFangSC-Medium, PingFang SC;
  240. font-weight: 500;
  241. color: #333333;
  242. }
  243. }
  244. }
  245. }
  246. .detail11 {
  247. font-size: 24rpx;
  248. padding-top: 12rpx;
  249. padding-bottom: 12rpx;
  250. .d-item-row {
  251. display: flex;
  252. height: 44rpx;
  253. align-items: center;
  254. .item-icon {
  255. display: flex;
  256. align-items: center;
  257. padding-right: 8rpx;
  258. image {
  259. height: 36rpx;
  260. width: 36rpx;
  261. }
  262. }
  263. .item-text {
  264. color: #666666;
  265. .item-v {
  266. font-family: PingFangSC-Medium, PingFang SC;
  267. font-weight: 500;
  268. color: #333333;
  269. }
  270. }
  271. }
  272. }
  273. .flexLR {
  274. border: 4rpx dotted #eeeeee;
  275. width: 100%;
  276. display: flex;
  277. justify-content: space-between;
  278. overflow: hidden;
  279. }
  280. .nav-bar {
  281. display: flex;
  282. text-align: right;
  283. justify-content: flex-end;
  284. .btn {
  285. height: 60rpx;
  286. line-height: 60rpx;
  287. background: #FFE05C;
  288. margin-top: 20rpx;
  289. text-align: center;
  290. color: #fff;
  291. margin-right: 16rpx;
  292. border-radius: 30rpx;
  293. color: #333;
  294. padding-right: 24rpx;
  295. padding-left: 24rpx;
  296. font-size: 26rpx;
  297. .text1 {
  298. padding-left: 2rpx;
  299. font-size: 24rpx;
  300. color: #666;
  301. }
  302. }
  303. .look-num-btn {
  304. height: 60rpx;
  305. line-height: 60rpx;
  306. background: #999;
  307. margin-top: 20rpx;
  308. width: 160rpx;
  309. text-align: center;
  310. color: #fff;
  311. margin-right: 16rpx;
  312. border-radius: 8rpx;
  313. }
  314. }
  315. }
  316. }
  317. /* 产品订单 */
  318. .product-order {
  319. margin-top: 24rpx;
  320. .developing {
  321. text-align: center;
  322. color: #666;
  323. }
  324. }
  325. .planNumber {
  326. font-size: 35rpx;
  327. font-family: PingFangSC-Medium, PingFang SC;
  328. font-weight: 500;
  329. color: #93BC23;
  330. }