index.rpx.scss 8.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474
  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: 60rpx;
  13. background: linear-gradient(to bottom, #fef1b9, #fff);
  14. height: 80rpx;
  15. }
  16. .serial-number {
  17. padding: 48rpx;
  18. width: 600rpx;
  19. text-align: center;
  20. font-size: 28rpx;
  21. line-height: 60rpx;
  22. background: white;
  23. border-radius: 15rpx;
  24. .number {
  25. line-height: 70rpx;
  26. font-size: 35rpx;
  27. color: #578D31;
  28. font-weight: bold;
  29. }
  30. .text {
  31. font-size: 26rpx;
  32. color: #FFC000;
  33. line-height: 80rpx;
  34. }
  35. .text1 {
  36. line-height: 80rpx;
  37. font-size: 26rpx;
  38. color: red;
  39. }
  40. }
  41. /* 菜单 */
  42. .tab-bar {
  43. display: flex;
  44. height: 80rpx;
  45. margin-left: 24rpx;
  46. background: #fff;
  47. width: 340rpx;
  48. border-radius: 40rpx;
  49. .tab-item {
  50. // flex: 1;
  51. width: 50%;
  52. display: flex;
  53. align-items: center;
  54. justify-content: center;
  55. font-size: 28rpx;
  56. color: #333;
  57. border-radius: 50rpx;
  58. }
  59. .tab-item.active {
  60. color: #333333;
  61. // background: linear-gradient(to right, #ff6c7b, #ff9db8);
  62. background: #FFE05C;
  63. border-radius: 50rpx;
  64. }
  65. }
  66. /* 服务订单的菜单 */
  67. .service-order-tab-bar {
  68. display: flex;
  69. justify-content: space-around;
  70. height: 100rpx;
  71. margin-top: 24rpx;
  72. .service-order-tab-item {
  73. flex: 1;
  74. display: flex;
  75. align-items: center;
  76. justify-content: center;
  77. font-size: 28rpx;
  78. color: #333;
  79. line-height: 52rpx;
  80. }
  81. .service-order-tab-item.active {
  82. color: #ff0000;
  83. }
  84. }
  85. /* 服务订单内容*/
  86. .service-order {
  87. margin-top: 24rpx;
  88. /* 门店列表 */
  89. .store-wrap {
  90. background: #fff;
  91. // border-radius: 24rpx;
  92. margin-top: 14rpx;
  93. padding-left: 24rpx;
  94. padding-right: 24rpx;
  95. padding-bottom: 24rpx;
  96. box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  97. // border: 2rpx dashed rgb(103, 100, 100) ;
  98. .grayscale {
  99. filter: grayscale(100%);
  100. }
  101. .order-state {
  102. display: flex;
  103. font-size: 24rpx;
  104. align-items: center;
  105. .order-num {
  106. // width: 70%;
  107. // display: flex;
  108. // align-items: center;
  109. // height: 40rpx;
  110. .h-order-num {
  111. margin-right: 6rpx;
  112. font-size: 28rpx;
  113. font-family: PingFangSC-Regular, PingFang SC;
  114. color: #666666;
  115. image {
  116. width: 32rpx;
  117. height: 32rpx;
  118. transform: translateY(8rpx);
  119. }
  120. }
  121. .h-order-text {
  122. margin-right: 6rpx;
  123. font-size: 28rpx;
  124. font-size: large;
  125. font-family: PingFangSC-Regular, PingFang SC;
  126. color: #666666;
  127. }
  128. }
  129. .order-state-name {
  130. width: 30%;
  131. text-align: right;
  132. padding-right: 24rpx;
  133. .h-text1 {
  134. color: #666666;
  135. }
  136. .h-text2 {
  137. color: #93D21A;
  138. }
  139. .h-text3 {
  140. color: #FFAF36;
  141. }
  142. }
  143. }
  144. .store-list {
  145. margin-top: 24rpx;
  146. margin-bottom: 12rpx;
  147. display: flex;
  148. justify-content: space-between;
  149. .store-content {
  150. display: flex;
  151. justify-content: space-between;
  152. .store-img {
  153. width: 152rpx;
  154. image {
  155. height: 152rpx;
  156. border-radius: 6rpx;
  157. }
  158. }
  159. .content {
  160. width: 100%;
  161. padding-left: 16rpx;
  162. padding-top: 4rpx;
  163. padding-right: 24rpx;
  164. .title {
  165. height: 44rpx;
  166. font-size: 28rpx;
  167. font-family: PingFangSC-Medium, PingFang SC;
  168. font-weight: bold;
  169. color: #111111;
  170. line-height: 44rpx;
  171. margin-left: 8rpx;
  172. }
  173. .price {
  174. height: 44rpx;
  175. font-size: 28rpx;
  176. font-family: PingFangSC-Medium, PingFang SC;
  177. font-weight: bold;
  178. color: #ED569F;
  179. line-height: 44rpx;
  180. margin-left: 8rpx;
  181. }
  182. .desc {
  183. display: flex;
  184. // padding: 6rpx;
  185. .time {
  186. font-size: 24rpx;
  187. font-family: PingFangSC-Regular, PingFang SC;
  188. font-weight: 400;
  189. color: #ED569F;
  190. background: rgba(237, 86, 159, 0.1);
  191. padding: 6rpx 16rpx;
  192. border-radius: 0rpx 0rpx 12rpx 12rpx;
  193. }
  194. .service-type {
  195. font-size: 24rpx;
  196. font-family: PingFangSC-Regular, PingFang SC;
  197. color: black;
  198. background: #fff9de;
  199. padding: 6rpx 16rpx;
  200. margin-left: 16rpx;
  201. border-radius: 0rpx 0rpx 12rpx 12rpx;
  202. }
  203. .service-mode {
  204. font-size: 24rpx;
  205. font-family: PingFangSC-Regular, PingFang SC;
  206. color: #9ed733;
  207. background: #e9f6d1;
  208. padding: 6rpx 16rpx;
  209. margin-left: 16rpx;
  210. border-radius: 0rpx 0rpx 12rpx 12rpx;
  211. }
  212. }
  213. }
  214. }
  215. }
  216. .detail {
  217. font-size: 24rpx;
  218. padding-top: 12rpx;
  219. padding-bottom: 12rpx;
  220. background-image: url('/static/order/ud4.png');
  221. background-size: cover;
  222. .d-item-row {
  223. display: flex;
  224. height: 44rpx;
  225. align-items: center;
  226. .item-icon {
  227. display: flex;
  228. align-items: center;
  229. padding-right: 8rpx;
  230. image {
  231. height: 36rpx;
  232. width: 36rpx;
  233. }
  234. }
  235. .item-text {
  236. color: #666666;
  237. .item-v {
  238. font-family: PingFangSC-Medium, PingFang SC;
  239. font-weight: 500;
  240. color: #333333;
  241. }
  242. }
  243. }
  244. }
  245. .detail11 {
  246. font-size: 24rpx;
  247. padding-top: 12rpx;
  248. padding-bottom: 12rpx;
  249. .d-item-row {
  250. display: flex;
  251. height: 44rpx;
  252. align-items: center;
  253. .item-icon {
  254. display: flex;
  255. align-items: center;
  256. padding-right: 8rpx;
  257. image {
  258. height: 36rpx;
  259. width: 36rpx;
  260. }
  261. }
  262. .item-text {
  263. color: #666666;
  264. .item-v {
  265. font-family: PingFangSC-Medium, PingFang SC;
  266. font-weight: 500;
  267. color: #333333;
  268. }
  269. }
  270. }
  271. }
  272. .flexLR {
  273. border: 4rpx dotted #eeeeee;
  274. width: 100%;
  275. display: flex;
  276. justify-content: space-between;
  277. overflow: hidden;
  278. }
  279. .nav-bar {
  280. display: flex;
  281. text-align: right;
  282. justify-content: flex-end;
  283. .btn {
  284. height: 60rpx;
  285. line-height: 60rpx;
  286. background: #FFE05C;
  287. margin-top: 20rpx;
  288. text-align: center;
  289. color: #fff;
  290. margin-right: 16rpx;
  291. border-radius: 30rpx;
  292. color: #333;
  293. padding-right: 24rpx;
  294. padding-left: 24rpx;
  295. font-size: 26rpx;
  296. display: flex;
  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. .fontColor {
  316. color: red;
  317. }
  318. }
  319. }
  320. /* 产品订单 */
  321. .product-order {
  322. margin-top: 24rpx;
  323. .developing {
  324. text-align: center;
  325. color: #666;
  326. }
  327. }
  328. .planNumber {
  329. font-size: 35rpx;
  330. font-family: PingFangSC-Medium, PingFang SC;
  331. font-weight: 500;
  332. color: #93BC23;
  333. }
  334. .tabs{
  335. background: #FFFFFF;
  336. }
  337. .payView{
  338. height: 638rpx;
  339. background: #FFFFFF;
  340. box-shadow: 0rpx -4rpx 8rpx 0rpx rgba(0,0,0,0.03);
  341. border-radius: 24rpx 24rpx 0rpx 0rpx;
  342. padding: 24rpx 32rpx;
  343. z-index: 100;
  344. }
  345. .payType{
  346. font-size: 32rpx;
  347. font-family: PingFangSC-Medium, PingFang SC;
  348. font-weight: bord;
  349. color: #111111;
  350. line-height: 48rpx;
  351. }
  352. .x{
  353. width: 35rpx;
  354. height: 35rpx;
  355. border-radius: 18rpx;
  356. }
  357. .payTitle{
  358. font-size: 24rpx;
  359. font-family: PingFangSC-Regular, PingFang SC;
  360. font-weight: 400;
  361. color: #666666;
  362. line-height: 40rpx;
  363. margin-top: 8rpx;
  364. }
  365. .payItem{
  366. background: #FAFAFA;
  367. border-radius: 20rpx;
  368. padding: 34rpx 32rpx;
  369. margin-top: 32rpx;
  370. }
  371. .payName{
  372. margin-left: 24rpx;
  373. }
  374. .balance{
  375. font-size: 24rpx;
  376. font-family: PingFangSC-Regular, PingFang SC;
  377. font-weight: 400;
  378. color: #999999;
  379. line-height: 40rpx;
  380. }
  381. .commitBtn{
  382. width: 686rpx;
  383. height: 108rpx;
  384. background: #FFE05C;
  385. border-radius: 60rpx;
  386. margin-top: 32rpx;
  387. font-size: 32rpx;
  388. font-family: PingFangSC-Medium, PingFang SC;
  389. font-weight: bold;
  390. color: #111111;
  391. line-height: 108rpx;
  392. text-align: center;
  393. }
  394. .passwordView{
  395. background: #FFFFFF;
  396. width: 686rpx;
  397. height: 400rpx;
  398. border-radius: 20rpx;
  399. padding: 34rpx 0;
  400. }
  401. .h-tab-bar{
  402. margin-top: 80rpx;
  403. }
  404. .h-operate-btn{
  405. width: 550rpx;
  406. height: 80rpx;
  407. border-radius: 40rpx;
  408. background: #FFE05C;
  409. line-height: 80rpx;
  410. text-align: center;
  411. margin-top: 80rpx;
  412. }