serviceOrder.wxss 22 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318
  1. page {
  2. background: #F3F3F3;
  3. color: #333;
  4. /* padding:0 24rpx; */
  5. }
  6. view,text{
  7. box-sizing: border-box;
  8. color:#333;
  9. font-size: 34rpx;
  10. }
  11. .whole-page{
  12. /* min-height: 2000rpx; */
  13. }
  14. /* 服务单 */
  15. .service-order{
  16. margin:10rpx 24rpx 16rpx;
  17. width:702rpx;
  18. background: #fff;
  19. border-radius: 18rpx;
  20. min-height: 300rpx;
  21. padding:0 20rpx 32rpx;
  22. }
  23. .service-title{
  24. height:96rpx;
  25. display: flex;
  26. justify-content: space-between;
  27. align-items: center;
  28. line-height: 96rpx;
  29. }
  30. .ser-title-left image{
  31. width:36rpx;
  32. height:36rpx;
  33. margin-right:6rpx;
  34. }
  35. .ser-title-left view{
  36. font-size: 32rpx;
  37. }
  38. .ser-title-right view{
  39. font-size: 22rpx;
  40. color: #09AFFF;
  41. }
  42. .ser-title-right image{
  43. width:24rpx;
  44. height:24rpx;
  45. margin-right:6rpx;
  46. }
  47. .ser-title-left,.ser-title-right{
  48. display: flex;
  49. align-items: center;
  50. height: 96rpx;
  51. }
  52. .related-info{
  53. background: #F6FFED;
  54. border-radius: 18rpx;
  55. padding:24rpx 12rpx 32rpx;
  56. }
  57. .related-info .column{
  58. height: 60rpx;
  59. line-height: 60rpx;
  60. display: flex;
  61. justify-content: space-between;
  62. }
  63. .column .title{
  64. font-weight: bold;
  65. }
  66. .related-info .row{
  67. line-height: 60rpx;
  68. }
  69. .notice{
  70. padding:10rpx 12rpx;
  71. background: #E6F7FF;
  72. border-radius: 14rpx;
  73. display: flex;
  74. line-height: 36rpx;
  75. align-items: center;
  76. }
  77. .notice image{
  78. width:30rpx;
  79. height:30rpx;
  80. margin-right:20rpx;
  81. }
  82. .notice view{
  83. color: #09AFFF;
  84. font-size: 26rpx;
  85. }
  86. .service-info{
  87. padding-left:12rpx;
  88. }
  89. .service-info .row{
  90. line-height: 60rpx;
  91. }
  92. .service-info .order-num{
  93. height: 60rpx;
  94. display: flex;
  95. align-items: center;
  96. }
  97. .copy-img{
  98. width:36rpx;
  99. height:36rpx;
  100. margin-left:4rpx;
  101. }
  102. .service-info .column{
  103. height: 60rpx;
  104. line-height: 60rpx;
  105. display: flex;
  106. justify-content: space-between;
  107. align-items: center;
  108. }
  109. .callup-img{
  110. width:36rpx;
  111. height: 36rpx;
  112. }
  113. .service-info .address{
  114. display: flex;
  115. margin:6rpx 0;
  116. line-height: 48rpx;
  117. }
  118. .service-info .address .detail{
  119. flex:1;
  120. }
  121. .service-info .address image{
  122. margin:12rpx 0 0 30rpx;
  123. width:36rpx;
  124. height: 36rpx;
  125. }
  126. .operate-block{
  127. display: flex;
  128. align-items: center;
  129. margin-top:22rpx;
  130. height: 40rpx;
  131. line-height: 40rpx;
  132. justify-content: flex-end;
  133. flex-wrap: wrap;
  134. }
  135. .operate-item{
  136. display: flex;
  137. height: 40rpx;
  138. align-items: center;
  139. margin-left:20rpx;
  140. margin-bottom:10rpx;
  141. }
  142. .operate-item image{
  143. width:28rpx;
  144. height:28rpx;
  145. margin-right:4rpx;
  146. }
  147. .operate-item view{
  148. font-size: 30rpx;
  149. color: #0EAEFC;
  150. }
  151. .operate-item.disable view{
  152. color: rgba(0,0,0,0.25);
  153. }
  154. /* 日维度 */
  155. .date-board-wrapper{
  156. width: 702rpx;
  157. height: 250rpx;
  158. background: #FFFFFF;
  159. border-radius: 18rpx;
  160. padding:16rpx 26rpx;
  161. margin:0 24rpx;
  162. }
  163. .date-board{
  164. width: 650rpx;
  165. height: 218rpx;
  166. background: #E6F7FF;
  167. border-radius: 15rpx;
  168. display:flex;
  169. align-items: center;
  170. margin-bottom:38rpx;
  171. }
  172. view.date-order-left{
  173. height:218rpx;
  174. width:172rpx;
  175. border-right:2rpx solid #e4e4e4;
  176. display: flex;
  177. flex-direction: column;
  178. align-items: center;
  179. justify-content: center;
  180. font-size:30rpx;
  181. }
  182. .date-order-left view{
  183. font-size: 30rpx;
  184. }
  185. view.date-order-left .number{
  186. font-size: 36rpx;
  187. height: 50rpx;
  188. line-height: 50rpx;
  189. margin-bottom:10rpx;
  190. }
  191. .date-order-right{
  192. display:flex;
  193. flex-wrap: wrap;
  194. height: 218rpx;
  195. flex:1;
  196. }
  197. .data-item{
  198. height: 100rpx;
  199. display: flex;
  200. flex-direction: column;
  201. align-items: center;
  202. justify-content: space-around;
  203. width:158rpx;
  204. }
  205. .data-item .num{
  206. font-size: 36rpx;
  207. height: 50rpx;
  208. color:#E2B650;
  209. }
  210. .data-item .item-tag{
  211. font-size: 24rpx;
  212. height: 36rpx;
  213. line-height: 36rpx;
  214. border-radius:4rpx;
  215. color:#fff;
  216. width:120rpx;
  217. text-align: center;
  218. background:#E2B650;
  219. }
  220. .data-item.red .num{
  221. color: #E85050;
  222. }
  223. .data-item.red .item-tag{
  224. width:74rpx;
  225. background: #FF5050;
  226. }
  227. .data-item.green .num{
  228. color: #39CB7F;
  229. }
  230. .data-item.green .num text{
  231. font-size: 24rpx;
  232. color: #39CB7F;
  233. }
  234. .data-item.green .item-tag{
  235. width:74rpx;
  236. background: #39CB7F;
  237. }
  238. .data-item.blue .num{
  239. color: #09AFFF;
  240. }
  241. .data-item.blue .num text{
  242. font-size: 24rpx;
  243. color: #09AFFF;
  244. }
  245. .data-item.blue .item-tag{
  246. width:74rpx;
  247. background: #09AFFF;
  248. }
  249. .current-date{
  250. height: 70rpx;
  251. display:flex;
  252. align-items: center;
  253. padding-left:48rpx;
  254. background:#F3F3F3;
  255. }
  256. .current-date .day{
  257. color: #09AFFF;
  258. line-height: 48rpx;
  259. height: 48rpx;
  260. font-size: 30rpx;
  261. border-bottom: 4rpx solid #09afff;
  262. }
  263. .current-date .today{
  264. width: 64rpx;
  265. height: 40rpx;
  266. background: #FFFFFF;
  267. border-radius: 4rpx;
  268. border: 2rpx solid #1677FF;
  269. font-size: 24rpx;
  270. color:#1677FF;
  271. margin:8rpx 0 0 8rpx;
  272. text-align: center;
  273. }
  274. /* 请假记录 */
  275. .leave-fold{
  276. width: 702rpx;
  277. height: 66rpx;
  278. background: #FFFFFF;
  279. border-radius: 16rpx;
  280. display: flex;
  281. align-items: center;
  282. justify-content: space-between;
  283. margin:12rpx 24rpx;
  284. padding:0 20rpx 0 40rpx;
  285. }
  286. .fold-left{
  287. font-size: 32rpx;
  288. }
  289. .fold-right{
  290. display: flex;
  291. align-items: center;
  292. height: 66rpx;
  293. }
  294. .fold-right .leave-num{
  295. color: #666;
  296. }
  297. .fold-right image{
  298. width:24rpx;
  299. height: 24rpx;
  300. margin-left:6rpx;
  301. }
  302. .leave-item{
  303. width: 702rpx;
  304. background: #FFFFFF;
  305. border-radius: 18rpx;
  306. padding:28rpx 26rpx 40rpx;
  307. margin:0 24rpx;
  308. }
  309. .leave-title{
  310. height: 48rpx;
  311. display:flex;
  312. align-items: center;
  313. margin-bottom:16rpx;
  314. }
  315. .leave-title image{
  316. width:34rpx;
  317. height: 34rpx;
  318. margin-right:10rpx;
  319. }
  320. .leave-title view{
  321. font-size: 32rpx;
  322. line-height: 48rpx;
  323. }
  324. .leave-line{
  325. margin-bottom:6rpx;
  326. line-height: 48rpx;
  327. display:flex ;
  328. }
  329. .leave-line view:first-child{
  330. width:150rpx;
  331. }
  332. .leave-line view:last-child{
  333. flex:1;
  334. }
  335. .dqjsq{
  336. width:110rpx;
  337. height: 110rpx;
  338. background:#fff;
  339. border-radius: 110rpx;
  340. position:fixed;
  341. z-index: 99;
  342. right:64rpx;
  343. bottom:254rpx;
  344. }
  345. .calendar-wrapper{
  346. margin:12rpx 24rpx 0;
  347. width:702rpx;
  348. border-radius:18rpx;
  349. background:#fff;
  350. min-height: 200rpx;
  351. padding:30rpx 24rpx 18rpx;
  352. }
  353. .current-month{
  354. margin:12rpx 0 22rpx;
  355. height: 48rpx;
  356. font-size: 28rpx;
  357. line-height: 48rpx;
  358. }
  359. .month-title{
  360. height: 48rpx;
  361. display: flex;
  362. align-items: center;
  363. justify-content: space-between;
  364. }
  365. .month-title-left{
  366. height: 48rpx;
  367. display: flex;
  368. align-items: center;
  369. }
  370. .month-title-left view{
  371. font-size: 32rpx;
  372. }
  373. .month-title-left image{
  374. margin-left:12rpx;
  375. width:32rpx;
  376. height: 32rpx;
  377. }
  378. .month-title-right{
  379. display: flex;
  380. align-items: center;
  381. height: 48rpx;
  382. }
  383. .month-title-right image{
  384. width:28rpx;
  385. height: 28rpx;
  386. margin-left:4rpx;
  387. }
  388. .last-month{
  389. line-height: 48rpx;
  390. }
  391. .next-month{
  392. line-height: 48rpx;
  393. margin-left:14rpx;
  394. }
  395. .month-border-wrapper view.date-order-left{
  396. justify-content: space-between;
  397. }
  398. .month-order-item{
  399. height: 100rpx;
  400. display:flex;
  401. flex-direction: column;
  402. align-items: center;
  403. }
  404. view.date-order-left .month-order-item .number{
  405. margin-bottom:0;
  406. }
  407. .whole-calendar{
  408. display: flex;
  409. flex-wrap: wrap;
  410. }
  411. .calendar-item{
  412. display: flex;
  413. flex-direction: column;
  414. width:92rpx;
  415. align-items: flex-end;
  416. padding:14rpx 0 6rpx;
  417. }
  418. .calendar-week{
  419. font-size: 32rpx;
  420. color:#999;
  421. height: 36rpx;
  422. line-height: 36rpx;
  423. width: 68rpx;
  424. text-align: center;
  425. }
  426. .calendar-day{
  427. height: 30rpx;
  428. line-height: 30rpx;
  429. font-size: 32rpx;
  430. color:#666;
  431. margin:6rpx 0;
  432. width: 68rpx;
  433. text-align: center;
  434. }
  435. .selected-calendar{
  436. background: rgba(9,175,255,0.05);
  437. border-radius: 12rpx;
  438. }
  439. .selected-calendar .calendar-week{
  440. color:#09afff;
  441. }
  442. .selected-calendar .calendar-day{
  443. color:#09afff;
  444. }
  445. .selected-dot{
  446. margin:0 30rpx 6rpx 0;
  447. width:6rpx;
  448. height: 6rpx;
  449. border-radius: 6rpx;
  450. background:transparent;
  451. }
  452. .selected-calendar .selected-dot{
  453. background:#09afff;
  454. }
  455. .calendar-order-item .time{
  456. /* width: 48rpx;
  457. height: 18rpx;
  458. line-height: 18rpx;
  459. font-size: 12rpx; */
  460. width: 68rpx;
  461. height: 32rpx;
  462. line-height: 32rpx;
  463. font-size: 24rpx;
  464. border-radius: 4rpx;
  465. background: #39CB7F;
  466. color:#fff;
  467. text-align:center;
  468. margin-bottom:8rpx;
  469. }
  470. .calendar-order-item .time.pl{
  471. background: #09AFFF;
  472. }
  473. .calendar-order-item .time.no-finish{
  474. background: #fff;
  475. color:#39CB7F;
  476. border:2rpx solid #39CB7F;
  477. }
  478. .calendar-order-item .time.pl.no-finish{
  479. background: #fff;
  480. color:#09AFFF;
  481. border:2rpx solid #09AFFF;
  482. }
  483. .eval-wrapper{
  484. width:14rpx;
  485. height: 32rpx;
  486. align-items: center;
  487. display: flex;
  488. margin-right:2rpx;
  489. }
  490. .calendar-order-item{
  491. display: flex;
  492. width:92rpx;
  493. justify-content: flex-end;
  494. }
  495. .eval-wrapper image{
  496. width:14rpx;
  497. height: 14rpx;
  498. }
  499. .fold-calcendar{
  500. display: flex;
  501. align-items: center;
  502. flex-direction: column;
  503. width:140rpx;
  504. margin:0 auto;
  505. }
  506. .fold-calcendar image{
  507. width:36rpx;
  508. height: 36rpx;
  509. }
  510. .fold-calcendar view{
  511. color: #09AFFF;
  512. font-size: 24rpx;
  513. margin-left:6rpx;
  514. line-height: 14rpx;
  515. }
  516. .service-status{
  517. height:60rpx;
  518. align-items: center;
  519. display: flex;
  520. }
  521. .service-status image{
  522. width:24rpx;
  523. height:24rpx;
  524. margin-right:8rpx;
  525. }
  526. .invite-comment{
  527. background: #E6F7FF;
  528. border-radius: 7rpx;
  529. border: 2px solid #91D5FF;
  530. color: #096DD9;
  531. font-size: 22rpx;
  532. width: 92rpx;
  533. height: 32rpx;
  534. text-align:center;
  535. margin:0 10rpx;
  536. line-height: 24rpx;
  537. }
  538. .hp-wrapper{
  539. display:flex;
  540. align-items: center;
  541. margin-right:10rpx;
  542. width: 96rpx;
  543. height: 32rpx;
  544. background: #F6FFED;
  545. border-radius: 7rpx;
  546. border: 2rpx solid #A0D911;
  547. justify-content: center;
  548. }
  549. .hp-wrapper text{
  550. color: #73D13D;
  551. line-height: 24rpx;
  552. font-size: 22rpx;
  553. }
  554. .cp-wrapper{
  555. display:flex;
  556. align-items: center;
  557. width: 96rpx;
  558. height: 32rpx;
  559. background: #FFF2E8;
  560. border-radius: 7rpx;
  561. border: 2rpx solid #FA541C;
  562. justify-content: center;
  563. }
  564. .cp-wrapper text{
  565. color: #FA541C;
  566. line-height: 24rpx;
  567. font-size: 22rpx;
  568. }
  569. .service-order.cancel-order view{
  570. color:#aaa;
  571. }
  572. .service-order.cancel-order view.blue-font{
  573. color:#09AFFF;
  574. }
  575. .interview{
  576. width: 702rpx;
  577. /* height: 476rpx; */
  578. background: #FFFFFF;
  579. border-radius: 18rpx;
  580. padding:46rpx 24rpx 32rpx 24rpx;
  581. margin:20rpx 24rpx;
  582. }
  583. .interview-title{
  584. height:48rpx;
  585. display: flex;
  586. align-items: center;
  587. }
  588. .interview-title image{
  589. width:34rpx;
  590. height:34rpx;
  591. margin-right:14rpx;
  592. }
  593. .interview-date{
  594. height:48rpx;
  595. line-height: 48rpx;
  596. margin:70rpx 0 46rpx;
  597. }
  598. .interview-location{
  599. line-height: 48rpx;
  600. margin-bottom:48rpx;
  601. padding-right:24rpx;
  602. }
  603. .interview-operate{
  604. display:flex;
  605. align-items: center;
  606. justify-content: flex-end;
  607. height: 40rpx;
  608. color: #0EAEFC;
  609. }
  610. .overlay-wrapper{
  611. display: flex;
  612. align-items: center;
  613. justify-content: center;
  614. height: 100%;
  615. /* z-index:999; */
  616. padding:0 50rpx;
  617. flex-direction: column;
  618. }
  619. .star-wrapper{
  620. width: 650rpx;
  621. height: 624rpx;
  622. background: #FFFFFF;
  623. border-radius: 33rpx;
  624. border: 1px solid #979797;
  625. padding:44rpx 40rpx 0;
  626. display:flex;
  627. flex-direction: column;
  628. align-items: center;
  629. }
  630. .star-wrapper .title{
  631. font-size: 34rpx;
  632. height: 48rpx;
  633. margin-bottom:40rpx;
  634. }
  635. .submit-eval{
  636. width: 650rpx;
  637. height: 110rpx;
  638. background: #3D7FFF linear-gradient(270deg, rgba(0,202,255,0.5) 0%, rgba(9,175,255,0.5) 100%);
  639. border-radius: 110rpx;
  640. line-height: 110rpx;
  641. font-size: 44rpx;
  642. text-align: center;
  643. color:#fff;
  644. margin-top:40rpx;
  645. }
  646. .comment-area{
  647. margin-top: 40rpx;
  648. height: 280rpx;
  649. border: 2rpx solid #ddd;
  650. padding: 16rpx;
  651. width: 560rpx;
  652. box-sizing: border-box;
  653. text-align: justify;
  654. border-radius: 8rpx;
  655. }
  656. view.van-radio__icon-wrap .van-icon{
  657. color:#fff;
  658. font-size: 32rpx;
  659. }
  660. .pay-row{
  661. display: flex;
  662. justify-content: space-between;
  663. }
  664. .pay-total{
  665. color:#FF004E;
  666. flex:1;
  667. margin-right:14rpx;
  668. text-align: right;
  669. }
  670. .pay-success{
  671. color:#00B63D;
  672. }
  673. .whole-page{
  674. padding:20rpx;
  675. }
  676. .search-block{
  677. width: 710rpx;
  678. height: 88rpx;
  679. background: #FFFFFF;
  680. border-radius: 18rpx;
  681. display: flex;
  682. align-items: center;
  683. padding:0 28rpx;
  684. margin-bottom:20rpx;
  685. }
  686. .search-block image{
  687. width:30rpx;
  688. height:30rpx;
  689. margin:4rpx 10rpx 0 0;
  690. }
  691. .search-block .search-text{
  692. font-size: 30rpx;
  693. color: #999999;
  694. }
  695. .weather-block{
  696. display: flex;
  697. width: 710rpx;
  698. height: 176rpx;
  699. background: #FFFFFF;
  700. border-radius: 18rpx;
  701. align-items: center;
  702. justify-content: space-between;
  703. padding:0 34rpx 0 28rpx;
  704. margin-bottom:20rpx;
  705. }
  706. .today-text{
  707. font-weight: 600;
  708. font-size: 40rpx;
  709. color: #333333;
  710. line-height: 48rpx;
  711. letter-spacing: 4rpx;
  712. margin:0 0 6rpx 0;
  713. }
  714. .weather-line{
  715. display: flex;
  716. align-items: center;
  717. height:48rpx;
  718. }
  719. .weather-line view{
  720. font-size: 24rpx;
  721. color: #333333;
  722. margin-left:14rpx;
  723. }
  724. .weather-line image{
  725. width:30rpx;
  726. height:30rpx;
  727. }
  728. .work-mode{
  729. width:158rpx;
  730. height:60rpx;
  731. border-radius: 60rpx;
  732. line-height: 54rpx;
  733. border: 2rpx solid #6DD400;
  734. font-size: 36rpx;
  735. color: #000000;
  736. text-align: center;
  737. background: rgb(239,250,226);
  738. }
  739. .work-mode.whole-mode{
  740. border-color:#D48806;
  741. background: rgb(255,251,231);
  742. }
  743. .work-mode.leave-mode{
  744. border-color:#000;
  745. background: #f5f5f5;
  746. }
  747. .work-mode.other-mode{
  748. border-color:#389E0D;
  749. background: #D9F7BE;
  750. }
  751. .weather-right{
  752. display: flex;
  753. flex-direction: column;
  754. align-items: flex-end;
  755. }
  756. .weather-right .mode-tips{
  757. font-size: 24rpx;
  758. color: #333333;
  759. height: 48rpx;
  760. line-height: 48rpx;
  761. }
  762. /* 服务单信息 */
  763. .service-order-new{
  764. width: 710rpx;
  765. /* height: 518rpx; */
  766. background: #FFFFFF;
  767. border-radius: 18rpx;
  768. padding:32rpx 34rpx 30rpx;
  769. margin:0 0 20rpx;
  770. }
  771. .service-order-new.finished-order .title-left view {
  772. color:#999;
  773. }
  774. .service-order-new.finished-order .service-content view:first-child {
  775. color:#999;
  776. }
  777. .service-order-new.finished-order .address-dot{
  778. background: #999;
  779. }
  780. .service-order-new.finished-order .address-detail{
  781. color: #999;
  782. }
  783. .service-order-new.finished-order .service-tips view{
  784. color: #999;
  785. }
  786. .service-title{
  787. height:48rpx;
  788. display: flex;
  789. justify-content: space-between;
  790. align-items: center;
  791. margin-bottom:30rpx;
  792. }
  793. .title-left{
  794. display: flex;
  795. align-items: center;
  796. flex:1;
  797. }
  798. .service-title image{
  799. width:40rpx;
  800. height:44rpx;
  801. }
  802. .order-status{
  803. font-weight: 600;
  804. font-size: 40rpx;
  805. color: #333333;
  806. line-height: 48rpx;
  807. white-space: nowrap;
  808. }
  809. .title-left view{
  810. font-size: 40rpx;
  811. color: #333333;
  812. margin-left:20rpx;
  813. white-space: nowrap;
  814. }
  815. .service-content{
  816. display: flex;
  817. justify-content: space-between;
  818. margin:30rpx 0 20rpx;
  819. }
  820. .service-content view{
  821. color: #333;
  822. font-size: 30rpx;
  823. line-height: 48rpx;
  824. }
  825. .service-content view.detail{
  826. font-weight: 600;
  827. font-size: 40rpx;
  828. flex:1;
  829. margin-left:20rpx;
  830. text-align: right;
  831. }
  832. .service-address{
  833. display:flex;
  834. }
  835. .address-dot{
  836. width:22rpx;
  837. height:22rpx;
  838. background: #6DD400;
  839. border-radius: 22rpx;
  840. margin:14rpx 10rpx 0 0;
  841. }
  842. .service-address .address-detail{
  843. font-size: 30rpx;
  844. color: #333333;
  845. line-height: 48rpx;
  846. text-align: justify;
  847. }
  848. .service-tips{
  849. display: flex;
  850. justify-content: space-between;
  851. margin:10rpx 0 30rpx;
  852. }
  853. .tips-title{
  854. font-size: 30rpx;
  855. color: #333333;
  856. line-height: 48rpx;
  857. margin-right:20rpx;
  858. white-space: nowrap;
  859. }
  860. .tips-detail{
  861. font-size: 30rpx;
  862. color: #333333;
  863. line-height: 48rpx;
  864. }
  865. .service-provision{
  866. height:48rpx;
  867. display: flex;
  868. justify-content: flex-end;
  869. align-items: flex-end;
  870. }
  871. .service-provision view{
  872. font-size: 24rpx;
  873. color: #999999;
  874. padding-bottom:8rpx;
  875. }
  876. .service-provision view.provision-amount{
  877. color:#FA6400;
  878. font-size: 40rpx;
  879. font-weight: bold;
  880. padding-bottom:0;
  881. margin-left:16rpx;
  882. }
  883. .service-tag-line{
  884. display: flex;
  885. flex-wrap: wrap;
  886. margin-top:30rpx;
  887. }
  888. .tag-important{
  889. height: 48rpx;
  890. line-height: 46rpx;
  891. background: #16A9FF;
  892. border-radius: 48rpx;
  893. font-size: 30rpx;
  894. color: #FFFFFF;
  895. margin:0 10rpx 10rpx 0;
  896. padding:0 20rpx;
  897. }
  898. .tag-common{
  899. height: 48rpx;
  900. line-height: 44rpx;
  901. border-radius: 48rpx;
  902. font-size: 30rpx;
  903. color: #999;
  904. margin:0 10rpx 10rpx 0;
  905. border: 1rpx solid #999999;
  906. padding:0 20rpx;
  907. }
  908. .cal-overlay-board{
  909. width: 710rpx;
  910. height: 1000rpx;
  911. background: #FFFFFF;
  912. border-radius: 18rpx;
  913. padding:30rpx;
  914. }
  915. .board-title{
  916. height:50rpx;
  917. display: flex;
  918. justify-content: space-between;
  919. margin-bottom:10rpx;
  920. }
  921. .board-title view{
  922. font-weight: 600;
  923. font-size: 36rpx;
  924. color: #666666;
  925. }
  926. .month-btn{
  927. width: 650rpx;
  928. height: 130rpx;
  929. line-height: 130rpx;
  930. background: linear-gradient( 57deg, #16A9FF 0%, #4DD3FF 100%);
  931. border-radius: 8rpx;
  932. text-align: center;
  933. font-weight: 600;
  934. font-size: 40rpx;
  935. color: #FFFFFF;
  936. }
  937. .history-title{
  938. font-weight: 600;
  939. font-size: 36rpx;
  940. color: #666666;
  941. height:50rpx;
  942. line-height: 50rpx;
  943. margin:20rpx 0;
  944. }
  945. .month-list{
  946. display: flex;
  947. flex-wrap: wrap;
  948. justify-content: space-between;
  949. }
  950. .month-item{
  951. width: 180rpx;
  952. height: 222rpx;
  953. background: linear-gradient( 57deg, #16A9FF 0%, #4DD3FF 100%);
  954. border-radius: 14rpx;
  955. display: flex;
  956. flex-direction: column;
  957. justify-content: center;
  958. align-items: center;
  959. margin-bottom:20rpx;
  960. }
  961. .month-title{
  962. font-weight: 600;
  963. font-size: 38rpx;
  964. color: #FFFFFF;
  965. line-height: 56rpx;
  966. height:56rpx;
  967. margin-bottom:24rpx;
  968. }
  969. .month-num{
  970. font-weight: 600;
  971. font-size: 40rpx;
  972. color: #FFFFFF;
  973. line-height: 56rpx;
  974. height:56rpx;
  975. }
  976. .overlay-wrapper.cal-overlay-wrapper{
  977. justify-content: flex-start;
  978. padding-top: 128rpx;
  979. }
  980. .history-tips{
  981. font-size: 24rpx;
  982. color: #999999;
  983. line-height: 34rpx;
  984. text-align: center;
  985. margin-top:18rpx;
  986. height: 34rpx;
  987. }
  988. .overlay-wrapper.sche-overlay-wrapper{
  989. justify-content: flex-start;
  990. padding-top: 128rpx;
  991. }
  992. .sche-overlay-board{
  993. width: 710rpx;
  994. height: 900rpx;
  995. background: #FFFFFF;
  996. border-radius: 18rpx;
  997. padding:36rpx 30rpx;
  998. margin-top:10rpx;
  999. }
  1000. .schedue-list{
  1001. padding:26rpx 24rpx 14rpx 20rpx;
  1002. background: rgb( 156, 220,91);
  1003. border-radius: 8rpx;
  1004. width:650rpx;
  1005. }
  1006. .schedue-item{
  1007. height:50rpx;
  1008. display: flex;
  1009. align-items: center;
  1010. margin-bottom:14rpx;
  1011. justify-content: space-between;
  1012. }
  1013. .schedue-item .dot{
  1014. width: 14rpx;
  1015. height: 14rpx;
  1016. background: #FFFFFF;
  1017. border-radius: 14rpx;
  1018. }
  1019. .schedue-item view{
  1020. font-weight: 600;
  1021. font-size: 34rpx;
  1022. color: #FFFFFF;
  1023. white-space: nowrap;
  1024. }
  1025. .schedue-item view.schedue-date{
  1026. margin:0 24rpx 0 20rpx;
  1027. letter-spacing: 1rpx;
  1028. }
  1029. .schedue-apply-title{
  1030. font-weight: 500;
  1031. font-size: 36rpx;
  1032. color: #333333;
  1033. height:50rpx;
  1034. line-height: 50rpx;
  1035. margin:40rpx 0 20rpx;
  1036. }
  1037. .schedue-apply-btn{
  1038. width: 650rpx;
  1039. height: 130rpx;
  1040. background: linear-gradient( 57deg, #16A9FF 0%, #4DD3FF 100%);
  1041. border-radius: 8rpx;
  1042. align-items: center;
  1043. display: flex;
  1044. padding:20rpx 0;
  1045. flex-direction: column;
  1046. }
  1047. .schedue-apply-btn view{
  1048. font-weight: 600;
  1049. font-size: 40rpx;
  1050. color: #FFFFFF;
  1051. line-height: 56rpx;
  1052. line-height: 56rpx;
  1053. }
  1054. .schedue-apply-btn view.tips{
  1055. font-size: 24rpx;
  1056. line-height: 34rpx;
  1057. line-height: 34rpx;
  1058. }
  1059. .search-result{
  1060. width: 710rpx;
  1061. height: 88rpx;
  1062. background: #31BEFF;
  1063. border-radius: 18rpx;
  1064. display: flex;
  1065. align-items: center;
  1066. padding:0 28rpx;
  1067. margin-bottom:20rpx;
  1068. justify-content: space-between;
  1069. }
  1070. .result-left,.result-right{
  1071. display: flex;
  1072. align-items: center;
  1073. height: 88rpx;
  1074. }
  1075. .result-left view{
  1076. letter-spacing: 4rpx;
  1077. }
  1078. .search-result image{
  1079. width:32rpx;
  1080. height:32rpx;
  1081. margin:0rpx 10rpx 0 0;
  1082. }
  1083. .result-right image{
  1084. margin:0rpx 4rpx 0 0;
  1085. }
  1086. .search-result view{
  1087. font-weight: 600;
  1088. font-size: 30rpx;
  1089. color: #FFFFFF;
  1090. line-height: 88rpx;
  1091. }
  1092. .average-order{
  1093. width: 710rpx;
  1094. background: #FFFFFF;
  1095. border-radius: 14rpx;
  1096. margin-bottom:30rpx;
  1097. padding:24rpx 24rpx 28rpx;
  1098. }
  1099. .average-order view{
  1100. font-weight: 600;
  1101. font-size: 40rpx;
  1102. color: #000000;
  1103. height: 56rpx;
  1104. line-height: 56rpx;
  1105. }
  1106. .average-order view.order-suggest{
  1107. font-size: 24rpx;
  1108. height: 34rpx;
  1109. line-height: 34rpx;
  1110. margin-top:8rpx;
  1111. padding-left:6rpx;
  1112. }
  1113. .calendar-board{
  1114. background: #FFFFFF;
  1115. border-radius: 14rpx;
  1116. width:710rpx;
  1117. padding:0 0rpx 16rpx 14rpx;
  1118. margin-bottom:30rpx;
  1119. }
  1120. .cal-week-line{
  1121. height:106rpx;
  1122. display: flex;
  1123. align-items: center;
  1124. }
  1125. .cal-week-line .week-item{
  1126. font-size: 36rpx;
  1127. color: rgba(0,0,0,0.45);
  1128. width:89rpx;
  1129. margin-right:10rpx;
  1130. text-align: center;
  1131. }
  1132. .cal-day-line{
  1133. display: flex;
  1134. flex-wrap: wrap;
  1135. }
  1136. .cal-day-line .day-item-wrapper{
  1137. width:89rpx;
  1138. margin-right:10rpx;
  1139. height:176rpx;
  1140. display: flex;
  1141. flex-direction: column;
  1142. align-items: center;
  1143. }
  1144. .cal-day-line .day-item{
  1145. height:122rpx;
  1146. display: flex;
  1147. justify-content: flex-end;
  1148. align-items: center;
  1149. flex-direction: column;
  1150. background: rgba(50,197,255,0.37);
  1151. border-radius: 8rpx;
  1152. border: 1rpx solid #32C5FF;
  1153. width:89rpx;
  1154. }
  1155. .day-sche{
  1156. font-size: 18rpx;
  1157. color: #2B92E1;
  1158. line-height: 24rpx;
  1159. height: 24rpx;
  1160. width:89rpx;
  1161. text-align: center;
  1162. }
  1163. .day-item .day{
  1164. font-size: 36rpx;
  1165. color: #4AB1FF;
  1166. line-height: 48rpx;
  1167. height:48rpx;
  1168. width:89rpx;
  1169. text-align: center;
  1170. }
  1171. .day-item .order-num{
  1172. background: rgba(50,197,255,0.37);
  1173. border-radius: 8rpx;
  1174. border: 1rpx solid #32C5FF;
  1175. height:44rpx;
  1176. line-height: 40rpx;
  1177. font-size: 30rpx;
  1178. /* color: rgba(0,0,0,0.85); */
  1179. color: #065B9C;
  1180. width:89rpx;
  1181. text-align: center;
  1182. }
  1183. .today-badge{
  1184. width: 32rpx;
  1185. height: 32rpx;
  1186. background: #83DCFF;
  1187. font-size: 24rpx;
  1188. color: rgba(255,255,255,0.85);
  1189. text-align: center;
  1190. line-height: 32rpx;
  1191. border-radius: 32rpx;
  1192. margin-top:6rpx;
  1193. }
  1194. .day-item-wrapper.past-day .day-item{
  1195. background: #fff;
  1196. border: none;
  1197. }
  1198. .past-day .day-item .day{
  1199. color: #ddd;
  1200. font-size: 32rpx;
  1201. }
  1202. .day-item-wrapper.leave-day .day-item{
  1203. background: #B4B4B4;
  1204. border-color: #B4B4B4;
  1205. }
  1206. .leave-day .day-item view{
  1207. color:#fff;
  1208. }
  1209. .leave-day .day-item .order-num{
  1210. border-color:#B4B4B4;
  1211. background: #B4B4B4;
  1212. }
  1213. .current-day .day-item{
  1214. background: #32C5FF;
  1215. }
  1216. .current-day .day-item view{
  1217. color: #fff;
  1218. background: #32C5FF;
  1219. }
  1220. .current-day.leave-day .day-item view{
  1221. background: #B4B4B4;
  1222. }
  1223. .current-day.leave-day.whole-day .day-item view{
  1224. background: #B4B4B4!important;
  1225. }
  1226. .day-item-wrapper.whole-day .day-item view{
  1227. color: #E46C1C;
  1228. }
  1229. .day-item-wrapper.whole-day .day-item view.day-sche{
  1230. color: #CE824E;
  1231. }
  1232. .day-item-wrapper.whole-day .day-item{
  1233. background: rgba(250,100,0,0.28);
  1234. border: 1rpx solid #FA6400;
  1235. }
  1236. .day-item-wrapper.whole-day .day-item .order-num{
  1237. border: 1rpx solid #FA6400;
  1238. background: transparent;
  1239. color: #CA5100;
  1240. }
  1241. .day-item-wrapper.whole-day.current-day .day-item {
  1242. background: #FA6400;
  1243. }
  1244. .day-item-wrapper.whole-day.current-day .day-item view{
  1245. color: #fff;
  1246. background: #FA6400;
  1247. }
  1248. .day-item-wrapper.whole-day.current-day .day-item view.order-num{
  1249. color: #fff;
  1250. background: #FA6400;
  1251. }
  1252. .day-item-wrapper.whole-day .today-badge{
  1253. background: #FA6400;
  1254. }
  1255. .leave-record-board{
  1256. width: 710rpx;
  1257. background: #FFFFFF;
  1258. border-radius: 14rpx;
  1259. padding:30rpx 26rpx 28rpx 32rpx;
  1260. margin-bottom:30rpx;
  1261. }
  1262. .leave-record-title{
  1263. display: flex;
  1264. height:56rpx;
  1265. justify-content: space-between;
  1266. }
  1267. .leave-record-title view{
  1268. font-weight: 600;
  1269. font-size: 40rpx;
  1270. color: #333333;
  1271. }
  1272. .leave-record-title view.leave-status{
  1273. color: #6DD400;
  1274. }
  1275. .leave-info{
  1276. font-size: 30rpx;
  1277. color: #666666;
  1278. line-height: 42rpx;
  1279. height:42rpx;
  1280. margin-top:8rpx;
  1281. text-align: right;
  1282. }
  1283. .leave-record-title view.leave-status.leave-refuse{
  1284. color: #E02020;
  1285. }
  1286. .leave-history{
  1287. margin-top:30rpx;
  1288. height: 50rpx;
  1289. line-height: 50rpx;
  1290. font-size: 36rpx;
  1291. color: #979797;
  1292. line-height: 50rpx;
  1293. text-align: center;
  1294. text-decoration-line: underline;
  1295. }