checkout.wxss 18 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103
  1. page {
  2. height: 100%;
  3. background: #f4f4f4;
  4. }
  5. .container{
  6. padding: 50rpx 28rpx 180rpx ;
  7. }
  8. .address-box {
  9. width: 100%;
  10. }
  11. .address-item {
  12. display: flex;
  13. /* height: 142rpx; */
  14. background: #fff;
  15. padding: 36rpx 16rpx 32rpx;
  16. border-radius: 10rpx;
  17. }
  18. .address-item.address-empty {
  19. line-height: 75rpx;
  20. text-align: center;
  21. }
  22. .address-item .map-icon{
  23. width:28rpx;
  24. height: 28rpx;
  25. margin:0 18rpx 0 0;
  26. }
  27. .address-box .l {
  28. width: 125rpx;
  29. height: 100%;
  30. }
  31. .address-box .l .name {
  32. margin-left: 6.25rpx;
  33. margin-top: -7.25rpx;
  34. display: block;
  35. width: 125rpx;
  36. height: 43rpx;
  37. line-height: 43rpx;
  38. font-size: 30rpx;
  39. color: #333;
  40. margin-bottom: 5rpx;
  41. }
  42. .address-box .l .default {
  43. margin-left: 6.25rpx;
  44. display: block;
  45. width: 62rpx;
  46. height: 33rpx;
  47. border-radius: 5rpx;
  48. border: 1px solid #b4282d;
  49. font-size: 20.5rpx;
  50. text-align: center;
  51. line-height: 29rpx;
  52. color: #b4282d;
  53. }
  54. .address-box .m {
  55. flex: 1;
  56. }
  57. .address-box .mobile {
  58. display: block;
  59. height: 29rpx;
  60. line-height: 29rpx;
  61. margin-bottom: 6.25rpx;
  62. font-size: 26rpx;
  63. }
  64. .address-box .address {
  65. display: block;
  66. /* height: 30rpx; */
  67. line-height: 30rpx;
  68. font-size: 26rpx;
  69. margin:0 0 18rpx 0;
  70. }
  71. .address-bottom{
  72. color: #85868A;
  73. line-height: 24rpx;
  74. height: 24rpx;
  75. font-size: 22rpx;
  76. }
  77. .address-bottom .user-name{
  78. margin:0 32rpx 0 0;
  79. }
  80. .address-box .r {
  81. width: 77rpx;
  82. height: 77rpx;
  83. display: flex;
  84. justify-content: center;
  85. align-items: center;
  86. }
  87. .address-box .r image {
  88. width: 52.078rpx;
  89. height: 52.078rpx;
  90. }
  91. .coupon-box {
  92. width: 100%;
  93. height: 210rpx;
  94. background: #fff;
  95. border-radius:10rpx;
  96. margin-top: 20rpx;
  97. }
  98. .coupon-box .coupon-item {
  99. margin: 0 10rpx;
  100. height: 70rpx;
  101. overflow: hidden;
  102. background: #fff;
  103. display: flex;
  104. padding:0 20rpx 0 10rpx;
  105. align-items: center;
  106. justify-content: space-between;
  107. border-bottom:2rpx solid #E4E4E4;
  108. }
  109. .coupon-box .l {
  110. flex: 1;
  111. height: 70rpx;
  112. display: flex;
  113. align-items: center;
  114. justify-content: space-between;
  115. }
  116. .coupon-box .l .name {
  117. font-size: 24rpx;
  118. }
  119. .coupon-box .l .txt {
  120. font-size: 24rpx;
  121. }
  122. .coupon-box .r {
  123. width: 30rpx;
  124. height: 40rpx;
  125. display: flex;
  126. justify-content: center;
  127. align-items: center;
  128. }
  129. .coupon-box .r image {
  130. width: 52.078rpx;
  131. height: 52.078rpx;
  132. }
  133. .message-box {
  134. margin-top: 20rpx;
  135. width: 100%;
  136. height: auto;
  137. overflow: hidden;
  138. background: #fff;
  139. }
  140. .message-box .message-item {
  141. height: 86.078rpx;
  142. overflow: hidden;
  143. background: #fff;
  144. display: flex;
  145. margin-left: 31.25rpx;
  146. padding-right: 31.25rpx;
  147. }
  148. .message-box .message-app {
  149. height: 74.078rpx;
  150. overflow: hidden;
  151. background: #fff;
  152. display: flex;
  153. margin-left: 31.25rpx;
  154. padding-right: 31.25rpx;
  155. padding-top: 18rpx;border-radius: 20rpx;
  156. }
  157. .order-box {
  158. margin-top: 20rpx;
  159. width: 100%;
  160. height: auto;
  161. overflow: hidden;
  162. background: #fff;
  163. }
  164. .order-box .order-item {
  165. border-radius: 10rpx;
  166. height: 70rpx;
  167. overflow: hidden;
  168. background: #fff;
  169. display: flex;
  170. align-items: center;
  171. justify-content: space-between;
  172. padding:0 20rpx;
  173. border-bottom: 1px solid #d9d9d9;
  174. }
  175. .order-box .order-item.tip-item{
  176. padding-bottom:26rpx;
  177. height: auto;
  178. display: flex;
  179. flex-direction: column;
  180. }
  181. .order-box .order-item .l {
  182. width:100rpx;
  183. height: 70rpx;
  184. line-height: 70rpx;
  185. align-items: center;
  186. }
  187. .order-box .order-item .l .name{
  188. font-size: 24rpx;
  189. }
  190. .order-box .order-item .r {
  191. line-height: 70rpx;
  192. flex:1;
  193. height: 70rpx;
  194. line-height: 70rpx;
  195. align-items: center;
  196. text-align: right;
  197. /* overflow: hidden; */
  198. }
  199. .order-box .order-item.no-border {
  200. border-bottom: none;
  201. }
  202. .goods-items {
  203. background: #fff;
  204. border-radius: 10rpx;
  205. padding: 20rpx 12rpx;
  206. }
  207. .goods-items .item {
  208. height:210rpx;
  209. align-items: center;
  210. }
  211. .goods-items .item .name{
  212. font-size: 28rpx;
  213. line-height: 32rpx;
  214. color: #2a2a2a;
  215. }
  216. .goods-items .item.no-border {
  217. border-bottom: none;
  218. }
  219. .goods-items .item:last-child {
  220. border-bottom: none;
  221. }
  222. .goods-items .img {
  223. height: 178rpx;
  224. width: 178rpx;
  225. /* background-color: #f4f4f4; */
  226. margin-right: 26rpx;
  227. border-radius: 10rpx;
  228. }
  229. .goods-items .img image {
  230. height: 178rpx;
  231. width: 178rpx;
  232. border-radius:10rpx;
  233. }
  234. .goods-items .info {
  235. flex: 1;
  236. height: 210rpx;
  237. padding:14rpx 0 0;
  238. }
  239. .goods-items .t {
  240. height: 33rpx;
  241. line-height: 33rpx;
  242. margin-bottom: 10rpx;
  243. overflow: hidden;
  244. font-size: 30rpx;
  245. color: #333;
  246. }
  247. .goods-items .t .name {
  248. display: block;
  249. float: left;
  250. }
  251. .goods-items .t .number {
  252. display: block;
  253. float: right;
  254. text-align: right;
  255. }
  256. .goods-items .m {
  257. height: 28rpx;
  258. overflow: hidden;
  259. line-height: 28rpx;
  260. margin-bottom: 16rpx;
  261. font-size: 24rpx;
  262. color: #85868A;
  263. margin-top: 5rpx;
  264. }
  265. .goods-items .b {
  266. height: 28rpx;
  267. line-height: 28rpx;
  268. font-size: 24rpx;
  269. color: #85868A;
  270. }
  271. .order-total {
  272. position: fixed;
  273. left: 0;
  274. bottom: 0;
  275. height: 100rpx;
  276. width: 100%;
  277. display: flex;
  278. }
  279. .order-total .l {
  280. flex: 1;
  281. height: 100rpx;
  282. line-height: 100rpx;
  283. color: #b4282d;
  284. background: #fff;
  285. font-size: 33rpx;
  286. padding-left: 31.25rpx;
  287. border-top: 1rpx solid rgba(0, 0, 0, 0.2);
  288. border-bottom: 1rpx solid rgba(0, 0, 0, 0.2);
  289. }
  290. .order-total .r {
  291. width: 233rpx;
  292. height: 100rpx;
  293. background: #b4282d;
  294. border: 1px solid #b4282d;
  295. line-height: 100rpx;
  296. text-align: center;
  297. color: #fff;
  298. font-size: 30rpx;
  299. }
  300. .actual-price{
  301. color: #2a2a2a;
  302. /* font-weight: bold; */
  303. font-size: 30rpx;
  304. text-align: right;
  305. margin:28rpx 0 0;
  306. }
  307. .actual-price text{
  308. color:#DF1717;
  309. }
  310. .go-pay-wrapper{
  311. position: fixed;
  312. bottom: 0;
  313. left:0;
  314. right:0;
  315. height: 130rpx;
  316. padding:20rpx 24rpx;
  317. /* background:#fff; */
  318. }
  319. view.go-pay-wrapper button > view{
  320. color:#fff;
  321. }
  322. .appoint-time-block{
  323. margin-top:20rpx;
  324. background:#fff;
  325. border-radius: 10rpx;
  326. }
  327. .appoint-time-block view.appoint-time-operate{
  328. padding:0 20rpx;
  329. height: 70rpx;
  330. display: flex;
  331. align-items: center;
  332. justify-content: space-between;
  333. font-size: 24rpx;
  334. }
  335. view.operate-left{
  336. color:#2a2a2a;
  337. }
  338. view.operate-right{
  339. display: flex;
  340. align-items:center;
  341. }
  342. view.operate-right{
  343. color:#09AFFF;
  344. }
  345. view.operate-right .not-select{
  346. color:#333;
  347. }
  348. .appoint-time-show{
  349. border-top:2rpx solid #E4E4E4;
  350. padding:0 24rpx;
  351. font-size: 24rpx;
  352. }
  353. view.one-time{
  354. height: 70rpx;
  355. display: flex;
  356. align-items: center;
  357. justify-content: space-between;
  358. }
  359. view.one-time text{
  360. color:#999;
  361. font-size: 26rpx;
  362. }
  363. .multi-times{
  364. padding:30rpx 0
  365. }
  366. .multi-times-item{
  367. height: 54rpx;
  368. display: flex;
  369. align-items: center;
  370. justify-content: space-between;
  371. }
  372. .multi-times-item text{
  373. font-weight: bold;
  374. font-size: 24rpx;
  375. }
  376. view.appoint-result{
  377. margin-top:18rpx;
  378. border:2rpx solid #09AFFF;
  379. border-radius:20rpx;
  380. line-height:46rpx;
  381. font-size: 26rpx;
  382. padding:10rpx;
  383. }
  384. .orange-font{
  385. color:#FA6400;
  386. font-weight: bold;
  387. font-size: 26rpx;
  388. }
  389. .order-item .message-item{
  390. color:#2a2a2a;
  391. font-size: 24rpx;
  392. font-weight: normal;
  393. height: 70rpx;
  394. }
  395. /* 支付失败弹框 */
  396. .overlay-wrapper {
  397. display: flex;
  398. align-items: center;
  399. justify-content: center;
  400. height: 100%;
  401. }
  402. .fail-wrapper {
  403. width: 588rpx;
  404. height:502rpx;
  405. border-radius:10rpx;
  406. background: #fff;
  407. padding-bottom:40rpx;
  408. padding:80rpx 0 0;
  409. font-size: 24rpx;
  410. display: flex;
  411. flex-direction: column;
  412. justify-content: space-between;
  413. }
  414. .fail-top{
  415. display: flex;
  416. flex-direction: column;
  417. align-items: center;
  418. }
  419. .fail-top image{
  420. width:110rpx;
  421. height: 110rpx;
  422. }
  423. .fail-text{
  424. font-size: 34rpx;
  425. font-weight: bold;
  426. margin:66rpx 0 24rpx;
  427. height: 34rpx;
  428. }
  429. .fail-bottom{
  430. height: 132rpx;
  431. border-top:2rpx solid #E4E4E4;
  432. display: flex;
  433. justify-content: space-around;
  434. align-items: center;
  435. }
  436. .fail-bottom .btn-devide{
  437. width:2rpx;
  438. height: 130rpx;
  439. background: #E4E4E4;
  440. }
  441. .cancel-btn{
  442. width:202rpx;
  443. height: 72rpx;
  444. line-height: 72rpx;
  445. border:2rpx solid #85868A;
  446. color:#282728;
  447. border-radius:72rpx;
  448. text-align: center;
  449. }
  450. .repay-btn{
  451. width:202rpx;
  452. height: 72rpx;
  453. line-height: 72rpx;
  454. background: #09AFFF;
  455. color:#fff;
  456. border-radius:72rpx;
  457. text-align: center;
  458. }
  459. .discount-title{
  460. height:70rpx;
  461. background: #E0F5FC;
  462. padding:0 10rpx;
  463. display: flex;
  464. align-items: center;
  465. }
  466. .discount-title image{
  467. width:24rpx;
  468. height: 26rpx;
  469. margin:0 8rpx 0 0;
  470. }
  471. .discount-title text{
  472. font-size: 28rpx;
  473. font-weight:bold;
  474. color: #323232;
  475. }
  476. .discount-line{
  477. padding:0 50rpx 0 20rpx;
  478. }
  479. .discount-line .txt{
  480. color: #DF1717;
  481. font-size: 24rpx;
  482. }
  483. .member-benefit,.buy-member{
  484. margin:20rpx 0 0;
  485. height: 70rpx;
  486. background: #fff;
  487. border-radius: 10rpx;
  488. padding:0 20rpx;
  489. display: flex;
  490. align-items: center;
  491. justify-content: space-between;
  492. }
  493. .member-benefit .member-tip{
  494. text-align: right;
  495. }
  496. .member-tag{
  497. width: 142rpx;
  498. padding:0 10rpx;
  499. height: 44rpx;
  500. line-height: 44rpx;
  501. text-align: center;
  502. background: #2E3235;
  503. border-radius: 5rpx;
  504. }
  505. .member-tag text{
  506. font-size: 24rpx;
  507. color: #2A2A2A;
  508. background: linear-gradient(177deg, #F1E3C8 0%, #E6C162 100%);
  509. -webkit-background-clip: text;
  510. -webkit-text-fill-color: transparent;
  511. }
  512. .member-tip{
  513. flex:1;
  514. margin:0 0 0 26rpx;
  515. color:#DF1717;
  516. font-size: 24rpx;
  517. }
  518. .popup-content-special .time-select-left{
  519. height: 900rpx;
  520. overflow-y: scroll;
  521. }
  522. .stock-text{
  523. font-size: 20rpx;
  524. font-weight: normal;
  525. color:#888
  526. }
  527. .zero-stock{
  528. color:#ccc;
  529. }
  530. .order-box.code-module{
  531. border-radius:10rpx;
  532. padding:8rpx 0;
  533. }
  534. .codeTips{
  535. height: 52rpx;
  536. line-height: 40rpx;
  537. padding-bottom:20rpx;
  538. color:#09afff;
  539. font-size: 26rpx;
  540. text-align: right;
  541. padding:0 20rpx;
  542. }
  543. .codeTips.no-match{
  544. color: #FA6400;
  545. }
  546. .plus-order{
  547. margin-top:20rpx;
  548. width:694rpx;
  549. border-radius: 10rpx;
  550. height:100rpx;
  551. display: flex;
  552. padding:0 20rpx;
  553. background: #fff;
  554. align-items: center;
  555. }
  556. .plus-order .plus-title{
  557. color:#999;
  558. }
  559. .plus-order .plus-name{
  560. flex:1;
  561. margin:0 20rpx;
  562. font-size: 30rpx;
  563. color: #333;
  564. }
  565. .plus-name .plus-num{
  566. color: #09afff;
  567. font-size: 30rpx;
  568. font-weight: bold;
  569. }
  570. .plus-amount{
  571. color: #09afff;
  572. font-size: 32rpx;
  573. font-weight: bold;
  574. }
  575. /* 时间弹框相关 */
  576. view.popup-wrapper{
  577. color:#333;
  578. display: flex;
  579. flex-direction: column;
  580. justify-content: space-between;
  581. height: 100%;
  582. z-index:999;
  583. overflow: hidden;
  584. }
  585. .popup-wrapper view{
  586. color:#888;
  587. font-size: 30rpx;
  588. }
  589. .popup-content{
  590. flex:1;
  591. }
  592. .time-select-right{
  593. flex: 1.6;
  594. height: 900rpx;
  595. overflow-y: hidden;
  596. }
  597. .popup-content-special .time-select-right{
  598. flex:1;
  599. }
  600. .time-select-left-item .date-msg{
  601. height:36rpx;
  602. line-height: 36rpx;
  603. color: #888;
  604. font-size: 24rpx;
  605. }
  606. .popup-wrapper .popup-content .current-date {
  607. color: #09afff;
  608. font-weight: bold;
  609. }
  610. .current-date2{
  611. color: #09afff!important;
  612. }
  613. .time-select-right-item view{
  614. color:#6D7278;
  615. }
  616. view.popup-btn-wrapper{
  617. margin:20rpx 0 0;
  618. padding:0 24rpx 20rpx;
  619. }
  620. view.popup-btn-wrapper button > view{
  621. color:#fff;
  622. }
  623. view.popup-wrapper .date-tag{
  624. color:#09afff;
  625. height: 44rpx;
  626. line-height: 42rpx;
  627. width:76rpx;
  628. border:2rpx solid #09afff;
  629. border-radius:44rpx;
  630. text-align: center;
  631. font-weight: normal;
  632. font-size: 22rpx;
  633. display: inline-block;
  634. margin-left:8rpx;
  635. }
  636. view.popup-wrapper .time-select-right-item.invalid-time text{
  637. color: #999;
  638. }
  639. view.popup-wrapper .time-select-right-item.invalid-time{
  640. background: #eee;
  641. }
  642. .time-select-right-item view.time-msg{
  643. height: 40rpx;
  644. line-height: 38rpx;
  645. border-radius: 40rpx;
  646. padding:0 8rpx;
  647. font-size: 22rpx;
  648. border: 2rpx solid #999;
  649. color: #999;
  650. font-weight: normal;
  651. white-space: nowrap;
  652. }
  653. view.popup-wrapper .full-time{
  654. color:#09AFFF;
  655. font-size: 24rpx;
  656. margin:0 0 0 20rpx;
  657. height: 44rpx;
  658. line-height: 44rpx;
  659. float: right;
  660. padding-right:40rpx;
  661. }
  662. .first-appoint-date-item{
  663. height: 108rpx;
  664. display: flex;
  665. align-items: center;
  666. padding:0 0 0 240rpx;
  667. }
  668. .first-time-selected{
  669. margin:0 0 0 60rpx;
  670. }
  671. .time-select-right-a {
  672. padding: 10rpx 24rpx;
  673. display: flex;
  674. flex-wrap: wrap;
  675. justify-content: space-between;
  676. align-content: flex-start;
  677. }
  678. .week-select-left>view.time-select-left-item .week-str{
  679. padding:12rpx 0 0 0;
  680. }
  681. view.popup-wrapper view.select-num-tag{
  682. width:28rpx;
  683. height: 28rpx;
  684. line-height: 28rpx;
  685. background:#09AFFF;
  686. border-radius: 28rpx;
  687. font-size: 16rpx;
  688. color:#fff;
  689. text-align: center;
  690. margin:0 0 0 6rpx;
  691. }
  692. .appointment-tips1 {
  693. position: absolute;
  694. bottom: 120rpx;
  695. }
  696. .selected-time{
  697. display: inline-block;
  698. width: 2px;
  699. height: 10px;
  700. background-color: #09afff;
  701. position: relative;
  702. top: 1px;
  703. margin: 0 5px;
  704. }
  705. .time-select-bottom1 {
  706. width: 100vw;
  707. background-color: #EDF8FD;
  708. height: 54rpx;
  709. font-size: 22rpx !important;
  710. color: #09afff !important;
  711. line-height: 54rpx;
  712. padding-left: 30rpx;
  713. position: absolute;
  714. bottom: 55rpx;
  715. }
  716. .popup-content-special{
  717. position: relative;
  718. }
  719. .time-select-right .noon-item{
  720. flex:1;
  721. text-align: center;
  722. line-height: 64rpx;
  723. color: #979797;
  724. font-size: 26rpx;
  725. }
  726. .time-select-right view.noon-item.active-noon{
  727. color: #fff;
  728. background: #09afff;
  729. }
  730. view.popup-wrapper .time-select-right-item .date-tag{
  731. width: 80rpx;
  732. height: 40rpx;
  733. line-height: 38rpx;
  734. margin-left:0;
  735. }
  736. .popup-title-new view{
  737. color:#333;
  738. font-size: 32rpx;
  739. }
  740. .time-select-right-item text{
  741. color:#888;
  742. }
  743. .time-select-right .time-item-wrapper{
  744. height: 836rpx;
  745. overflow-y: scroll;
  746. }
  747. .time-line{
  748. display: flex;
  749. align-items: center;
  750. justify-content: space-between;
  751. width:100%;
  752. }
  753. .time-select-right-item text.extra-tips{
  754. color: #FF5735;
  755. font-size: 22rpx;
  756. }
  757. .popup-content-special{
  758. height:900rpx ;
  759. /* margin-top: 116rpx; */
  760. }
  761. .week-select-left {
  762. display: flex;
  763. justify-content: space-around;
  764. text-align: center;
  765. padding-left: 20rpx;
  766. }
  767. .popup-wrapper view {
  768. color: #888;
  769. font-size: 30rpx;
  770. }
  771. .appointment-tips {
  772. display: flex;
  773. justify-content: space-between;
  774. width: 178px;
  775. position: absolute;
  776. bottom: 60rpx;
  777. left: calc(50% - 89px);
  778. }
  779. .appointment-tips1 {
  780. position: absolute;
  781. bottom: 120rpx;
  782. }
  783. .appointment-tips view span {
  784. width: 20rpx;
  785. height: 20rpx;
  786. border-radius: 20rpx;
  787. background-color: #EDF8FD;
  788. display: inline-block;
  789. margin-right: 10rpx;
  790. }
  791. .appointment-tips view .selected {
  792. background-color: #09AFFF;
  793. }
  794. .appointment-tips view .no-appointment {
  795. background-color: #ccc;
  796. }
  797. .appointment-tips view text {
  798. color: #09AFFF;
  799. font-size: 24rpx;
  800. }
  801. .time-select-right {
  802. flex: 1;
  803. display: flex;
  804. justify-content: space-between;
  805. }
  806. .scroll-view_H {
  807. white-space: nowrap;
  808. /* 确保子元素在同一行内显示 */
  809. overflow-x: scroll;
  810. /* 允许横向滚动 */
  811. }
  812. .time-select-left-item {
  813. height: 84rpx;
  814. display: flex;
  815. padding: 4rpx 0;
  816. width: 20vw;
  817. align-items: center;
  818. }
  819. .date-line-wrapper {
  820. display: flex;
  821. flex-direction: column;
  822. align-items: center;
  823. }
  824. .time-select-left-item .date-msg {
  825. height: 36rpx;
  826. line-height: 36rpx;
  827. color: #292929;
  828. font-size: 36rpx;
  829. font-weight: bold;
  830. }
  831. .time-select-left-item .date-msg1 {
  832. /* height: 36rpx; */
  833. /* line-height: 36rpx; */
  834. color: #292929;
  835. font-size: 22rpx;
  836. margin-top: 10rpx;
  837. margin-bottom: 5rpx;
  838. }
  839. .time-select-left-item .date-msg.avail-date {
  840. color: #999 !important;
  841. font-weight: bold;
  842. }
  843. .time-select-left-item .date-msg1.avail-date {
  844. color: #999 !important;
  845. font-weight: bold;
  846. }
  847. view.popup-btn-wrapper view {
  848. color: #fff;
  849. }
  850. .time-select-middle {
  851. background-color: #FCFCFC;
  852. padding: 10rpx 0rpx;
  853. height: 800rpx;
  854. position: relative;
  855. }
  856. .noon-select {
  857. width: 100%;
  858. display: flex;
  859. justify-content: center;
  860. margin: 30rpx auto;
  861. }
  862. .noon-select .divider {
  863. height: 40rpx;
  864. width: 2rpx;
  865. background-color: #e5e5e5;
  866. }
  867. .noon-select .noon-item {
  868. text-align: center;
  869. color: #979797;
  870. font-size: 36rpx;
  871. width: 49%;
  872. }
  873. .active-noon {
  874. text-align: center;
  875. color: #09AFFF !important;
  876. font-size: 36rpx !important;
  877. width: 49%;
  878. }
  879. .popup-title-new.popup-title{
  880. padding-top: 30rpx;
  881. font-weight: bold;
  882. padding-left: 30rpx;
  883. height: 120rpx;
  884. }
  885. .popup-title-new view {
  886. color: #000;
  887. font-size: 40rpx;
  888. font-weight: bold;
  889. }
  890. .popup-title-new view.fee-tips {
  891. color: #09AFFF;
  892. font-size: 22rpx;
  893. }
  894. .current-line {
  895. width: 38rpx;
  896. height: 6rpx;
  897. background: #09AFFF;
  898. border-radius: 6rpx;
  899. margin: auto;
  900. opacity: 1;
  901. }
  902. .current-line0 {
  903. width: 38rpx;
  904. height: 6rpx;
  905. background: #09AFFF;
  906. border-radius: 6rpx;
  907. margin: auto;
  908. opacity: 0!important;
  909. }
  910. .current-time {
  911. color: #fff !important;
  912. font-family: AlibabaPuHuiTi_2_65_Medium;
  913. line-height: 70rpx;
  914. height: 70rpx;
  915. background-color: #09AFFF;
  916. border-radius: 8px;
  917. font-size: 36rpx;
  918. }
  919. .time-item-wrapper {
  920. display: flex;
  921. width: 90vw;
  922. justify-content: flex-start;
  923. flex-wrap: wrap;
  924. text-align: center;
  925. gap: 20px;
  926. margin: 10px auto;
  927. }
  928. .time-item-wrapper .time-msg {
  929. width: 20%;
  930. line-height: 70rpx;
  931. height: 70rpx;
  932. background-color: #EDF8FD;
  933. border-radius: 8px;
  934. font-size: 36rpx;
  935. font-weight: bold;
  936. }
  937. .time-item-wrapper .avail-time {
  938. width: 20%;
  939. line-height: 70rpx;
  940. height: 70rpx;
  941. background-color: #CCCCCC;
  942. border-radius: 8px;
  943. font-size: 36rpx;
  944. font-weight: bold;
  945. }
  946. .first-appoint-date-item {
  947. height: 108rpx;
  948. display: flex;
  949. align-items: center;
  950. padding: 0 0 0 240rpx;
  951. font-family: AlibabaPuHuiTi_2_85_Bold;
  952. }
  953. .first-appoint-date-item view{
  954. font-family: AlibabaPuHuiTi_2_85_Bold;
  955. }
  956. .first-time-selected {
  957. margin: 0 0 0 60rpx;
  958. }
  959. .week-str {
  960. font-family: AlibabaPuHuiTi_2_85_Bold;
  961. font-size: 36rpx !important;
  962. color: #C2C2C2 ;
  963. }
  964. .time-select-right-item {
  965. width: 45vw;
  966. background-color: #EDF8FD;
  967. text-align: center;
  968. margin-bottom: 28rpx;
  969. font-family: AlibabaPuHuiTi_2_65_Medium;
  970. line-height: 70rpx;
  971. height: 70rpx;
  972. border-radius: 8px;
  973. }
  974. .current-time{
  975. color: #fff;
  976. background-color: #09afff;
  977. }
  978. .time-select-right-a {
  979. padding: 20rpx 24rpx 10rpx;
  980. display: flex;
  981. flex-wrap: wrap;
  982. justify-content: space-between;
  983. align-content: flex-start;
  984. }
  985. .first-appoint-date-list{
  986. background-color: #fafafa;
  987. }
  988. .time-select-bottom {
  989. width: 100vw;
  990. background-color: #EDF8FD;
  991. height: 54rpx;
  992. font-size: 22rpx !important;
  993. color: #00b4fe !important;
  994. line-height: 54rpx;
  995. padding-left: 30rpx;
  996. position: absolute;
  997. bottom: 0;
  998. }
  999. .van-tab--active.van-tab>view.van-ellipsis{
  1000. font-size: 36rpx;
  1001. }
  1002. .van-tab>view.van-ellipsis {
  1003. font-size: 36rpx;
  1004. color: #ABABAB;
  1005. }