purchaseOrder.css 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983
  1. .container {}
  2. .car-info {
  3. background-color: #ffffff;
  4. margin-bottom: 16rpx;
  5. padding: 36rpx 32rpx;
  6. }
  7. .car-top {
  8. margin-bottom: 24rpx;
  9. }
  10. .top-flex>view:nth-of-type(1) {
  11. color: #2A3A5A;
  12. font-size: 36rpx;
  13. font-weight: bold;
  14. margin-bottom: 20rpx;
  15. }
  16. .top-flex>view:nth-of-type(2) {
  17. color: #9EA9BB;
  18. font-size: 28rpx;
  19. margin-bottom: 28rpx;
  20. }
  21. .car-info img {
  22. width: 125rpx;
  23. height: 125rpx;
  24. border-radius: 16rpx;
  25. }
  26. .car-bottom {
  27. background-color: #F3F8FF;
  28. border-radius: 16rpx;
  29. padding: 22rpx 24rpx;
  30. }
  31. .car-bottom>view:nth-of-type(1) {
  32. color: #2A3A5A;
  33. font-size: 26rpx;
  34. font-weight: bold;
  35. }
  36. .car-bottom img {
  37. width: 24rpx;
  38. height: 24rpx;
  39. margin: 0 12rpx;
  40. }
  41. .car-bottom>view:nth-of-type(2) {
  42. color: #0074FF;
  43. font-size: 22rpx;
  44. text-align: center;
  45. border: 2rpx solid #0074FF;
  46. border-radius: 20rpx;
  47. /* padding: 6rpx 20rpx; */
  48. padding-left: 20rpx;
  49. padding-right: 20rpx;
  50. height: 36rpx;
  51. line-height: 36rpx;
  52. }
  53. .method-info {
  54. background-color: #ffffff;
  55. margin-bottom: 16rpx;
  56. padding: 48rpx 40rpx 40rpx 32rpx;
  57. }
  58. .select-item {
  59. color: #9EA9BB;
  60. font-size: 36rpx;
  61. font-weight: bold;
  62. display: flex;
  63. flex-direction: column;
  64. align-items: center;
  65. }
  66. .selected-item {
  67. color: #2A3A5A;
  68. font-size: 36rpx;
  69. font-weight: bold;
  70. display: flex;
  71. flex-direction: column;
  72. align-items: center;
  73. }
  74. .select-border {
  75. width: 82rpx;
  76. height: 12rpx;
  77. margin-top: 8rpx;
  78. background-color: #ffffff;
  79. }
  80. .selected-border {
  81. width: 82rpx;
  82. height: 12rpx;
  83. margin-top: 8rpx;
  84. background: linear-gradient(to right, #0074FF, #ffffff);
  85. }
  86. .method-bottom {
  87. margin-top: 40rpx;
  88. }
  89. .method-bottom>img {
  90. width: 144rpx;
  91. height: 144rpx;
  92. margin-right: 24rpx;
  93. border-radius: 24rpx;
  94. }
  95. .bottom-center {
  96. align-items: center;
  97. }
  98. .center-text>view:nth-of-type(1) {
  99. color: #2A3A5A;
  100. font-size: 36rpx;
  101. font-weight: bold;
  102. margin-bottom: 16rpx;
  103. }
  104. .center-text>view:nth-of-type(2) {
  105. color: #9FA7B7;
  106. font-size: 28rpx;
  107. }
  108. .ctime {
  109. margin-top: 24rpx;
  110. color: #828DA2;
  111. font-size: 28rpx;
  112. }
  113. .ctime img,
  114. .home-first img {
  115. width: 26rpx;
  116. height: 26rpx;
  117. vertical-align: middle;
  118. }
  119. .home-delivery {
  120. margin-top: 48rpx;
  121. }
  122. .home-first {
  123. margin-bottom: 40rpx;
  124. }
  125. .first-text>view:nth-of-type(1) {
  126. color: #2A3A5A;
  127. font-size: 36rpx;
  128. font-weight: bold;
  129. margin-bottom: 16rpx;
  130. }
  131. .first-text>view:nth-of-type(2) {
  132. color: #9FA7B7;
  133. font-size: 28rpx;
  134. }
  135. .home-second {
  136. align-items: center;
  137. }
  138. .home-second>view:nth-of-type(1) {
  139. color: #2A3A5A;
  140. font-size: 32rpx;
  141. font-weight: bold;
  142. }
  143. .home-second>view:nth-of-type(2) {
  144. color: #2A3A5A;
  145. font-size: 40rpx;
  146. }
  147. .home-third {
  148. color: #0074FF;
  149. font-size: 32rpx;
  150. font-weight: bold;
  151. margin-top: 32rpx;
  152. }
  153. .third-text {
  154. color: #2A3A5A;
  155. font-size: 32rpx;
  156. font-weight: bold;
  157. }
  158. .third-text img {
  159. width: 40rpx;
  160. height: 40rpx;
  161. margin-left: 8rpx;
  162. vertical-align: middle;
  163. }
  164. .bottom-bottom {
  165. color: #2A3A5A;
  166. font-size: 32rpx;
  167. }
  168. .bottom-bottom img {
  169. width: 36rpx;
  170. height: 36rpx;
  171. margin-bottom: 14rpx;
  172. }
  173. .select-deposit {
  174. border: 4rpx solid #F3F8FF;
  175. background-color: #F3F8FF;
  176. border-radius: 16rpx;
  177. padding: 32rpx 24rpx;
  178. display: flex;
  179. justify-content: space-between;
  180. }
  181. .selected-deposit {
  182. border: 4rpx solid #0074FF;
  183. box-sizing: border-box;
  184. border-radius: 16rpx;
  185. padding: 32rpx 24rpx;
  186. display: flex;
  187. justify-content: space-between;
  188. }
  189. .deposit-item>view {
  190. color: #2A3A5A;
  191. font-size: 32rpx;
  192. font-weight: bold;
  193. }
  194. .deposit-item>view>text {
  195. color: #828DA2;
  196. font-weight: 400;
  197. }
  198. .select-img {
  199. width: 32rpx;
  200. height: 32rpx;
  201. margin-right: 24rpx;
  202. vertical-align: middle;
  203. }
  204. .info-img {
  205. width: 28rpx;
  206. height: 28rpx;
  207. margin-left: 12rpx;
  208. vertical-align: middle;
  209. }
  210. .blue-text {
  211. color: #0074FF;
  212. font-weight: bold;
  213. }
  214. .black-text {
  215. color: #2A3A5A;
  216. font-weight: bold;
  217. }
  218. .guarantee-title {
  219. margin-bottom: 40rpx;
  220. }
  221. .guarantee-title>view:nth-of-type(1) {
  222. color: #2A3A5A;
  223. font-size: 40rpx;
  224. font-weight: bold;
  225. }
  226. .guarantee-title>view:nth-of-type(2) {
  227. color: #9FA7B7;
  228. font-size: 32rpx;
  229. font-weight: 400;
  230. }
  231. .select-guarantee {
  232. background-color: #F3F8FF;
  233. border-radius: 24rpx;
  234. }
  235. .selected-guarantee {
  236. border: 4rpx solid #0074FF;
  237. box-sizing: border-box;
  238. border-radius: 24rpx;
  239. }
  240. .select-guarantee,
  241. .selected-guarantee {
  242. display: flex;
  243. flex-direction: column;
  244. justify-content: center;
  245. align-items: center;
  246. padding: 32rpx 20rpx;
  247. box-sizing: border-box;
  248. }
  249. .guarantee-top {
  250. color: #2A3A5A;
  251. font-size: 28rpx;
  252. font-weight: bold;
  253. align-items: center;
  254. }
  255. .guarantee-top img {
  256. width: 62rpx;
  257. height: 56rpx;
  258. margin-bottom: 16rpx;
  259. }
  260. .guarantee-center {
  261. margin-top: 32rpx;
  262. }
  263. .center-item {
  264. font-size: 24rpx;
  265. width: 178rpx;
  266. margin-bottom: 16rpx;
  267. }
  268. .center-item>view:nth-of-type(1) {
  269. color: #828DA2;
  270. }
  271. .center-item>view:nth-of-type(2) {
  272. color: #0074FF;
  273. }
  274. .guarantee-border {
  275. border-bottom: 2rpx dashed #CFDCEF;
  276. width: 100%;
  277. margin-top: 24rpx;
  278. margin-bottom: 14rpx;
  279. }
  280. .guarantee-bottom {
  281. align-items: center;
  282. }
  283. .guarantee-bottom>view:nth-of-type(1) {
  284. color: #F95151;
  285. font-size: 38rpx;
  286. margin-bottom: 14rpx;
  287. }
  288. .blue-t {
  289. color: #0074FF;
  290. font-size: 24rpx;
  291. }
  292. .black-t {
  293. color: #2A3A5A;
  294. font-size: 24rpx;
  295. }
  296. .guarantee-bottom img {
  297. width: 24rpx;
  298. height: 24rpx;
  299. }
  300. .ride-border {
  301. border-radius: 24rpx;
  302. border: 4rpx solid #0074FF;
  303. padding: 28rpx 32rpx 16rpx;
  304. }
  305. .ride-top {}
  306. .top-left {
  307. color: #2A3A5A;
  308. font-size: 32rpx;
  309. font-weight: bold;
  310. }
  311. .top-left img {
  312. width: 62rpx;
  313. height: 56rpx;
  314. margin-right: 12rpx;
  315. vertical-align: middle;
  316. }
  317. .top-right {
  318. color: #F95151;
  319. font-size: 38rpx;
  320. font-weight: bold;
  321. }
  322. .dashed-border {
  323. margin-bottom: 22rpx;
  324. border-bottom: 2rpx dashed #CFDCEF;
  325. }
  326. .content-top {
  327. color: #2A3A5A;
  328. font-size: 28rpx;
  329. margin-bottom: 24rpx;
  330. }
  331. .tab-item {
  332. margin-bottom: 16rpx;
  333. }
  334. .tab-title {
  335. color: #828DA2;
  336. font-size: 24rpx;
  337. }
  338. .tab-price {
  339. color: #0074FF;
  340. font-size: 24rpx;
  341. font-weight: bold;
  342. }
  343. .remove-title {
  344. align-items: center;
  345. margin-bottom: 4rpx;
  346. }
  347. .remove-title>view:nth-of-type(1) {
  348. color: #2A3A5A;
  349. font-size: 32rpx;
  350. font-weight: bold;
  351. background-color: #F3F8FF;
  352. border-radius: 16rpx 0rpx 0rpx 0rpx;
  353. padding: 24rpx 0;
  354. }
  355. .remove-title>view:nth-of-type(2) {
  356. color: #2A3A5A;
  357. font-size: 32rpx;
  358. font-weight: bold;
  359. background-color: #F3F8FF;
  360. border-radius: 0rpx 16rpx 0rpx 0rpx;
  361. padding: 24rpx 0;
  362. }
  363. .remove-title>view:nth-of-type(1),
  364. .remove-text>view:nth-of-type(1) {
  365. margin-right: 4rpx;
  366. }
  367. .remove-text>view {
  368. color: #2A3A5A;
  369. font-size: 28rpx;
  370. background-color: #F4F5F6;
  371. padding: 26rpx 0;
  372. }
  373. .remove-title>view,
  374. .remove-text>view {
  375. width: 342rpx;
  376. text-align: center;
  377. }
  378. .assort-box {
  379. flex-wrap: wrap;
  380. }
  381. .assort-text {
  382. width: 340rpx;
  383. padding: 24rpx;
  384. color: #2A3A5A;
  385. font-size: 32rpx;
  386. font-weight: bold;
  387. margin-bottom: 4rpx;
  388. background-color: #F3F8FF;
  389. }
  390. .odd-item {
  391. border-radius: 16rpx 0 0 16rpx;
  392. margin-right: 4rpx;
  393. }
  394. .even-item {
  395. border-radius: 0 16rpx 16rpx 0;
  396. }
  397. .deposit-info,
  398. .guarantee-info,
  399. .ride-info,
  400. .remove-info,
  401. .assort-info {
  402. background-color: #ffffff;
  403. padding: 48rpx 32rpx 40rpx;
  404. margin-bottom: 16rpx;
  405. }
  406. .method-info>view:nth-of-type(1),
  407. .deposit-info>view:nth-of-type(1),
  408. .remove-info>view:nth-of-type(1),
  409. .assort-info>view:nth-of-type(1) {
  410. color: #2A3A5A;
  411. font-size: 40rpx;
  412. font-weight: bold;
  413. margin-bottom: 40rpx;
  414. }
  415. .pay-type {
  416. background-color: #ffffff;
  417. padding: 40rpx 32rpx 32rpx;
  418. /* margin-bottom: 16rpx; */
  419. /* align-items: ; */
  420. }
  421. .pay-type-tital {
  422. color: #2A3A5A;
  423. font-size: 40rpx;
  424. font-weight: bold;
  425. margin-bottom: 20rpx;
  426. }
  427. .pay-type-item {
  428. display: flex;
  429. }
  430. .pay-type-item img {
  431. vertical-align: middle;
  432. }
  433. .payment-info {
  434. position: fixed;
  435. bottom: 0;
  436. left: 0;
  437. width: 100%;
  438. background-color: #ffffff;
  439. padding: 28rpx 32rpx 32rpx;
  440. }
  441. .payment-top {
  442. color: #2A3A5A;
  443. font-size: 28rpx;
  444. display: flex;
  445. align-items: center;
  446. }
  447. .payment-top img {
  448. width: 32rpx;
  449. height: 32rpx;
  450. margin-right: 16rpx;
  451. vertical-align: middle;
  452. }
  453. .payment-bottom {
  454. margin-top: 28rpx;
  455. width: 100%;
  456. }
  457. .bottom-left {
  458. align-items: baseline;
  459. }
  460. .all-price {
  461. color: #F95151;
  462. font-size: 36rpx;
  463. font-weight: bold;
  464. }
  465. .all-price text {
  466. color: #F95151;
  467. font-size: 60rpx;
  468. font-weight: bold;
  469. }
  470. .all-money {
  471. color: #0074FF;
  472. font-size: 28rpx;
  473. font-weight: bold;
  474. margin-left: 16rpx;
  475. }
  476. .bottom-left img {
  477. width: 49rpx;
  478. height: 49rpx;
  479. vertical-align: middle;
  480. margin-left: 4rpx;
  481. }
  482. .payment-bottom>view:nth-of-type(2) {
  483. color: #ffffff;
  484. font-size: 32rpx;
  485. font-weight: bold;
  486. text-align: center;
  487. height: 88rpx;
  488. line-height: 88rpx;
  489. border-radius: 44rpx;
  490. background: linear-gradient(to right, #0074FF 0%, #00D7FF 100%);
  491. display: flex;
  492. flex-grow: 1;
  493. justify-content: center;
  494. }
  495. .show-detail {
  496. position: fixed;
  497. bottom: 0;
  498. left: 0;
  499. z-index: 10;
  500. width: 100%;
  501. height: 100vh;
  502. background-color: rgba(0, 0, 0, 0.4);
  503. }
  504. .detail-info {
  505. border-radius: 32rpx 32rpx 0rpx 0rpx;
  506. z-index: 100;
  507. position: fixed;
  508. bottom: 0;
  509. width: 100%;
  510. background-color: #f4f5f6;
  511. }
  512. .pay-money {
  513. background-color: #ffffff;
  514. padding: 40rpx 32rpx 0rpx 32rpx;
  515. }
  516. .pay-money>view {
  517. color: #2A3A5A;
  518. font-size: 36rpx;
  519. font-weight: bold;
  520. }
  521. .pay-money>view:nth-of-type(1) {
  522. color: #2A3A5A;
  523. font-size: 40rpx !important;
  524. font-weight: bold;
  525. line-height: 40rpx;
  526. }
  527. .detail-money {
  528. display: flex;
  529. justify-content: flex-end;
  530. align-items: baseline;
  531. }
  532. .detail-money>view:nth-of-type(1) {
  533. color: #2A3A5A;
  534. font-size: 36rpx;
  535. }
  536. .detail-money>view:nth-of-type(2) {
  537. color: #F95151;
  538. font-size: 60rpx;
  539. margin-left: 24rpx;
  540. }
  541. .second {
  542. background-color: #ffffff;
  543. margin-top: 2rpx;
  544. padding: 28rpx 32rpx 32rpx;
  545. }
  546. .change-info {
  547. background-color: #ffffff;
  548. padding: 48rpx 32rpx 40rpx;
  549. margin-bottom: 16rpx;
  550. }
  551. .change-title {
  552. margin-bottom: 40rpx;
  553. color: #2A3A5A;
  554. font-size: 40rpx;
  555. font-weight: bold;
  556. }
  557. .change-border {
  558. width: 686rpx;
  559. height: 156rpx;
  560. background: #EEF6FF;
  561. border-radius: 16rpx;
  562. padding: 32rpx 24rpx;
  563. }
  564. .change-top {
  565. font-family: PingFangSC, PingFang SC;
  566. font-weight: 500;
  567. font-size: 32rpx;
  568. color: #2A3A5A;
  569. line-height: 32rpx;
  570. text-align: left;
  571. font-style: normal;
  572. }
  573. .change-top>img {
  574. width: 40rpx;
  575. height: 40rpx;
  576. margin-right: 16rpx;
  577. }
  578. .change-num {
  579. font-family: DIN;
  580. font-weight: 500;
  581. font-size: 36rpx;
  582. color: #828DA2;
  583. line-height: 32rpx;
  584. text-align: right;
  585. font-style: normal;
  586. }
  587. .change-bottom {
  588. font-family: PingFangSC, PingFang SC;
  589. font-weight: 500;
  590. font-size: 32rpx;
  591. color: #0074FF;
  592. line-height: 32rpx;
  593. text-align: left;
  594. font-style: normal;
  595. }
  596. .change-bottom>text {
  597. font-family: DIN;
  598. font-weight: 500;
  599. font-size: 36rpx;
  600. color: #0074FF;
  601. line-height: 32rpx;
  602. text-align: right;
  603. font-style: normal;
  604. margin: 0 4rpx;
  605. }
  606. .change-dec {
  607. font-family: PingFangSC, PingFang SC;
  608. font-weight: 400;
  609. font-size: 24rpx;
  610. color: #828DA2;
  611. line-height: 36rpx;
  612. text-align: justify;
  613. font-style: normal;
  614. }
  615. .config-list-view {
  616. width: 500rpx;
  617. position: relative;
  618. }
  619. .config-list-view-1 {
  620. /* margin-bottom: 40rpx; */
  621. width: 500rpx;
  622. overflow-y: auto;
  623. }
  624. .config-list-view-1::after {
  625. content: "";
  626. position: absolute;
  627. top: 0;
  628. right: 0;
  629. bottom: 0;
  630. width: 10rpx;
  631. background-image: radial-gradient(at right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0) 70%);
  632. border-radius: 8rpx;
  633. }
  634. .service_name-tab {
  635. font-weight: 400;
  636. font-size: 22rpx;
  637. color: #2A3A5A;
  638. padding: 8rpx 20rpx;
  639. background: #F3F8FF;
  640. border-radius: 24rpx;
  641. margin-right: 8rpx;
  642. }
  643. .take-car-time {
  644. background: #F3F8FF;
  645. border-radius: 16rpx;
  646. padding: 32rpx 24rpx;
  647. font-weight: 600;
  648. }
  649. .plan-info {
  650. padding: 48rpx 24rpx 40rpx 32rpx;
  651. background-color: #ffffff;
  652. margin-bottom: 16rpx;
  653. }
  654. .plan-info>view:nth-of-type(1) {
  655. color: #2A3A5A;
  656. font-size: 40rpx;
  657. font-weight: bold;
  658. margin-bottom: 32rpx;
  659. height: 40rpx;
  660. line-height: 40rpx;
  661. }
  662. .plan-type {
  663. width: 700rpx;
  664. position: relative;
  665. margin-bottom: 40rpx;
  666. }
  667. .plan-type-1 {
  668. width: 700rpx;
  669. overflow-y: auto;
  670. }
  671. .plan-type-1::after {
  672. content: "";
  673. position: absolute;
  674. top: 0;
  675. right: 0;
  676. bottom: 0;
  677. width: 10rpx;
  678. background-image: radial-gradient(at right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0) 70%);
  679. border-radius: 8rpx;
  680. }
  681. .selectedPtype {
  682. min-width: 176rpx;
  683. /* flex: 1; */
  684. height: 162rpx;
  685. flex-direction: column;
  686. /* 纵向排列 */
  687. justify-content: flex-end;
  688. /* display: flex;
  689. justify-content: space-between;
  690. align-items: flex-end; */
  691. background-color: #ffffff;
  692. border: 4rpx solid #0074FF;
  693. box-sizing: border-box;
  694. border-radius: 24rpx;
  695. padding: 20rpx 20rpx 32rpx;
  696. margin-right: 16rpx;
  697. }
  698. .selectptype {
  699. /* flex: 1; */
  700. min-width: 176rpx;
  701. height: 162rpx;
  702. flex-direction: column;
  703. /* 纵向排列 */
  704. justify-content: flex-end;
  705. /* display: flex; */
  706. /* justify-content: space-between;
  707. align-items: flex-end; */
  708. background-color: #EEF6FF;
  709. border: 4rpx solid #EEF6FF;
  710. box-sizing: border-box;
  711. border-radius: 24rpx;
  712. padding: 20rpx 20rpx 32rpx;
  713. margin-right: 16rpx;
  714. }
  715. .ptype-title {
  716. font-weight: 500;
  717. font-size: 28rpx;
  718. text-align: center;
  719. color: #2A3A5A;
  720. }
  721. .ptype-text {
  722. font-family: DIN, DIN;
  723. font-weight: bold;
  724. font-size: 64rpx;
  725. color: #2A3A5A;
  726. align-items: center;
  727. }
  728. .ptyped-text {
  729. font-family: DIN, DIN;
  730. font-weight: bold;
  731. font-size: 64rpx;
  732. color: #F95151;
  733. align-items: center;
  734. }
  735. .ptyped-text,
  736. .ptype-text {
  737. justify-content: center;
  738. /* 水平居中 */
  739. align-items: center;
  740. /* 垂直居中 */
  741. }
  742. /* .ptyped-text text {
  743. font-size: 40rpx;
  744. } */
  745. .plan-time>view:nth-of-type(1) {
  746. color: #2A3A5A;
  747. font-size: 32rpx;
  748. font-weight: bold;
  749. }
  750. .quantity-count>input {
  751. width: 88rpx;
  752. height: 48rpx;
  753. border-radius: 24rpx;
  754. background-color: #F3F8FF;
  755. text-align: center;
  756. color: #2A3A5A;
  757. }
  758. .total-time {
  759. font-size: 32rpx;
  760. color: #2A3A5A;
  761. font-weight: 500;
  762. margin-right: 24rpx;
  763. }
  764. .count-btn {
  765. width: 48rpx;
  766. height: 48rpx;
  767. vertical-align: middle;
  768. }
  769. .fbtn {
  770. color: #9FA7B7;
  771. margin-right: 16rpx;
  772. }
  773. .sbtn {
  774. /* color: #9FA7B7; */
  775. margin-left: 16rpx;
  776. }
  777. .font_40 {
  778. font-weight: 600;
  779. font-size: 40rpx;
  780. color: #2A3A5A;
  781. }
  782. .to-store {
  783. padding: 10rpx 20rpx;
  784. font-weight: 400;
  785. font-size: 24rpx;
  786. color: #2A3A5A;
  787. }
  788. .to-door {
  789. padding: 10rpx 20rpx;
  790. font-weight: 400;
  791. font-size: 24rpx;
  792. color: #2A3A5A;
  793. }
  794. .selected-tab {
  795. background: #0074FF;
  796. border-radius: 32rpx;
  797. color: #FFFFFF;
  798. }
  799. .shop-view {
  800. flex-wrap: wrap;
  801. padding: 24rpx;
  802. background: #EEF6FF;
  803. border-radius: 16rpx;
  804. }
  805. .shop-bg {
  806. background: #FFFFFF;
  807. border-radius: 4rpx;
  808. padding: 32rpx 24rpx;
  809. width: 100%;
  810. }
  811. .shop-name {
  812. width: 450rpx;
  813. font-weight: 500;
  814. font-size: 32rpx;
  815. color: #2A3A5A;
  816. overflow: hidden;
  817. white-space: nowrap;
  818. text-overflow: ellipsis;
  819. margin-bottom: 20rpx;
  820. }
  821. .shop-address {
  822. width: 450rpx;
  823. font-weight: 400;
  824. font-size: 24rpx;
  825. color: #828DA2;
  826. overflow: hidden;
  827. white-space: nowrap;
  828. text-overflow: ellipsis;
  829. }
  830. .nav-btn {
  831. flex-wrap: wrap;
  832. align-items: center;
  833. flex-direction: column;
  834. }