index.rpx.scss 9.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475
  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: 30rpx;
  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. height: 100vh;
  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: #fff9de;
  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: #9ed733;
  208. background: #e9f6d1;
  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. display: flex;
  298. .text1 {
  299. padding-left: 2rpx;
  300. font-size: 24rpx;
  301. color: #666;
  302. }
  303. }
  304. .look-num-btn {
  305. height: 60rpx;
  306. line-height: 60rpx;
  307. background: #999;
  308. margin-top: 20rpx;
  309. width: 160rpx;
  310. text-align: center;
  311. color: #fff;
  312. margin-right: 16rpx;
  313. border-radius: 8rpx;
  314. }
  315. }
  316. .fontColor {
  317. color: red;
  318. }
  319. }
  320. }
  321. /* 产品订单 */
  322. .product-order {
  323. margin-top: 24rpx;
  324. .developing {
  325. text-align: center;
  326. color: #666;
  327. }
  328. }
  329. .planNumber {
  330. font-size: 35rpx;
  331. font-family: PingFangSC-Medium, PingFang SC;
  332. font-weight: 500;
  333. color: #93BC23;
  334. }
  335. .tabs{
  336. background: #FFFFFF;
  337. }
  338. .payView{
  339. //height: 638rpx;
  340. background: #FFFFFF;
  341. box-shadow: 0rpx -4rpx 8rpx 0rpx rgba(0,0,0,0.03);
  342. border-radius: 24rpx 24rpx 0rpx 0rpx;
  343. padding: 24rpx 32rpx;
  344. z-index: 100;
  345. }
  346. .payType{
  347. font-size: 32rpx;
  348. font-family: PingFangSC-Medium, PingFang SC;
  349. font-weight: bord;
  350. color: #111111;
  351. line-height: 48rpx;
  352. }
  353. .x{
  354. width: 35rpx;
  355. height: 35rpx;
  356. border-radius: 18rpx;
  357. }
  358. .payTitle{
  359. font-size: 24rpx;
  360. font-family: PingFangSC-Regular, PingFang SC;
  361. font-weight: 400;
  362. color: #666666;
  363. line-height: 40rpx;
  364. margin-top: 8rpx;
  365. }
  366. .payItem{
  367. background: #FAFAFA;
  368. border-radius: 20rpx;
  369. padding: 34rpx 32rpx;
  370. margin-top: 32rpx;
  371. }
  372. .payName{
  373. margin-left: 24rpx;
  374. }
  375. .balance{
  376. font-size: 24rpx;
  377. font-family: PingFangSC-Regular, PingFang SC;
  378. font-weight: 400;
  379. color: #999999;
  380. line-height: 40rpx;
  381. }
  382. .commitBtn{
  383. width: 686rpx;
  384. height: 108rpx;
  385. background: #FFE05C;
  386. border-radius: 60rpx;
  387. margin-top: 32rpx;
  388. font-size: 32rpx;
  389. font-family: PingFangSC-Medium, PingFang SC;
  390. font-weight: bold;
  391. color: #111111;
  392. line-height: 108rpx;
  393. text-align: center;
  394. }
  395. .passwordView{
  396. background: #FFFFFF;
  397. width: 686rpx;
  398. height: 400rpx;
  399. border-radius: 20rpx;
  400. padding: 34rpx 0;
  401. }
  402. .h-tab-bar{
  403. margin-top: 80rpx;
  404. }
  405. .h-operate-btn{
  406. width: 550rpx;
  407. height: 80rpx;
  408. border-radius: 40rpx;
  409. background: #FFE05C;
  410. line-height: 80rpx;
  411. text-align: center;
  412. margin-top: 80rpx;
  413. }