appointOrder.wxss 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038
  1. .container {
  2. padding: 30rpx 24rpx 180rpx;
  3. }
  4. view,
  5. text {
  6. font-size: 30rpx;
  7. color: #333;
  8. box-sizing: border-box;
  9. }
  10. .address-block {
  11. background: #FFFFFF;
  12. border-radius: 10rpx;
  13. padding: 30rpx 20rpx 24rpx;
  14. display: flex;
  15. align-items: center;
  16. justify-content: space-between;
  17. }
  18. .address-wrapper {
  19. width: 610rpx;
  20. height: 90rpx;
  21. }
  22. .address-block .tips {
  23. display: flex;
  24. align-items: center;
  25. height: 30rpx;
  26. }
  27. .tips image {
  28. width: 30rpx;
  29. height: 30rpx;
  30. margin-right: 10rpx;
  31. }
  32. .tips view {
  33. line-height: 30rpx;
  34. font-size: 30rpx;
  35. }
  36. .address-block .detail {
  37. padding-left: 38rpx;
  38. margin-top: 18rpx;
  39. line-height: 40rpx;
  40. font-size: 26rpx;
  41. overflow: hidden;
  42. height: 40rpx;
  43. text-overflow: ellipsis;
  44. white-space: nowrap;
  45. }
  46. .arrow-img {
  47. width: 14rpx;
  48. height: 24rpx;
  49. }
  50. .product-block {
  51. background: #FFFFFF;
  52. border-radius: 24rpx;
  53. padding: 24rpx;
  54. margin: 24rpx 0;
  55. }
  56. .product-block .title {
  57. height: 88rpx;
  58. line-height: 78rpx;
  59. }
  60. .profuct-info {
  61. height: 190rpx;
  62. display: flex;
  63. align-items: flex-start;
  64. }
  65. .product-img {
  66. width: 190rpx;
  67. height: 190rpx;
  68. border-radius: 10rpx;
  69. margin-right: 20rpx;
  70. }
  71. .info-right {
  72. /* padding-top: 10rpx; */
  73. flex: 1;
  74. }
  75. .info-main {
  76. display: flex;
  77. height: 40rpx;
  78. align-items: center;
  79. justify-content: space-between;
  80. /* margin-bottom: 58rpx; */
  81. }
  82. .info-right .sku-name {
  83. color: #666666;
  84. font-size: 24rpx;
  85. margin: 10rpx 0;
  86. height: 34rpx;
  87. line-height: 34rpx;
  88. display: flex;
  89. justify-content: space-between;
  90. }
  91. .product-name {
  92. line-height: 40rpx;
  93. font-size: 28rpx;
  94. /* padding-left: 20rpx;
  95. text-indent: -16rpx; */
  96. overflow: hidden;
  97. text-overflow: ellipsis;
  98. white-space: nowrap;
  99. width: 328rpx;
  100. font-weight: bold;
  101. color: rgba(0, 0, 0, 0.9);
  102. }
  103. .info-main .price {
  104. color: rgba(0, 0, 0, 0.9);
  105. font-size: 18rpx;
  106. font-weight: bold;
  107. }
  108. .info-right .other-info {
  109. font-size: 24rpx;
  110. color: rgba(0, 0, 0, 0.9);
  111. line-height: 34rpx;
  112. }
  113. .appoint-main-module {
  114. margin-top: 24rpx;
  115. background: #FFFFFF;
  116. border-radius: 24rpx;
  117. padding: 8rpx 24rpx 44rpx;
  118. }
  119. .appoint-block {
  120. height: 72rpx;
  121. display: flex;
  122. align-items: center;
  123. border-bottom: 2rpx solid #E0E0E0;
  124. }
  125. .appoint-block .title {
  126. width: 136rpx;
  127. border-bottom: 2rpx solid #fff;
  128. font-size: 26rpx;
  129. font-weight: bold;
  130. z-index: 9;
  131. height: 72rpx;
  132. line-height: 72rpx;
  133. }
  134. .appoint-block .title text {
  135. color: #f00;
  136. }
  137. .appoint-time {
  138. flex: 1;
  139. color: #ACADB1;
  140. padding-left: 4rpx;
  141. font-size: 24rpx;
  142. }
  143. .appoint-timed {
  144. flex: 1;
  145. padding-left: 4rpx;
  146. color: #333;
  147. font-size: 26rpx;
  148. }
  149. .appoint-block .arrow-img {
  150. width: 24rpx;
  151. height: 24rpx;
  152. margin-left: 8rpx;
  153. }
  154. .appoint-btn {
  155. position: fixed;
  156. bottom: 56rpx;
  157. left: 50rpx;
  158. right: 50rpx;
  159. height: 90rpx;
  160. width: 690rpx;
  161. border-radius: 90rpx;
  162. line-height: 90rpx;
  163. text-align: center;
  164. color: #fff;
  165. background: linear-gradient(90deg, #00BAFF 0%, #008DFF 100%);
  166. font-size: 36rpx;
  167. }
  168. .appoint-overlay-wrapper {
  169. position: fixed;
  170. top: 0;
  171. left: 0;
  172. width: 100%;
  173. height: 100%;
  174. background-color: rgba(0, 0, 0, .7);
  175. z-index: 999;
  176. }
  177. .remark-text {
  178. font-size: 26rpx;
  179. white-space: nowrap;
  180. overflow: hidden;
  181. text-overflow: ellipsis;
  182. width: 486rpx;
  183. padding-left: 40rpx;
  184. margin: 0 10rpx 0 20rpx;
  185. text-align: right;
  186. }
  187. .remark-popup {
  188. position: fixed;
  189. left: 0;
  190. right: 0;
  191. bottom: 0;
  192. height: 860rpx;
  193. background: #fff;
  194. border-radius: 20rpx 20rpx 0px 0px;
  195. padding: 40rpx 30rpx 50rpx;
  196. z-index: 9999;
  197. }
  198. .remark-popup .title {
  199. height: 30rpx;
  200. line-height: 30rpx;
  201. font-size: 30rpx;
  202. color: #333333;
  203. }
  204. .remark-textarea {
  205. width: 690rpx;
  206. height: 240rpx;
  207. background: #F8F8F8;
  208. border-radius: 10rpx;
  209. padding: 20rpx 36rpx 36rpx 20rpx;
  210. font-size: 26rpx;
  211. line-height: 40rpx;
  212. margin: 30rpx 0 330rpx;
  213. box-sizing: border-box;
  214. }
  215. .remark-popup .btn {
  216. width: 690rpx;
  217. height: 100rpx;
  218. background: #00B9FF;
  219. border-radius: 50rpx;
  220. line-height: 100rpx;
  221. font-size: 30rpx;
  222. text-align: center;
  223. color: #fff;
  224. }
  225. .address-item {
  226. display: flex;
  227. min-height: 136rpx;
  228. background: #fff;
  229. padding: 30rpx 20rpx;
  230. border-radius: 10rpx;
  231. }
  232. .address-item.address-empty {
  233. line-height: 75rpx;
  234. text-align: center;
  235. }
  236. .address-item .map-icon {
  237. width: 28rpx;
  238. height: 30rpx;
  239. margin: 6rpx 10rpx 0 0;
  240. }
  241. .address-box .l {
  242. width: 125rpx;
  243. height: 100%;
  244. }
  245. .address-box .l .name {
  246. margin-left: 6.25rpx;
  247. margin-top: -7.25rpx;
  248. display: block;
  249. width: 125rpx;
  250. height: 43rpx;
  251. line-height: 43rpx;
  252. font-size: 30rpx;
  253. color: #333;
  254. margin-bottom: 5rpx;
  255. }
  256. .address-box .l .default {
  257. margin-left: 6.25rpx;
  258. display: block;
  259. width: 62rpx;
  260. height: 33rpx;
  261. border-radius: 5rpx;
  262. border: 1px solid #b4282d;
  263. font-size: 20.5rpx;
  264. text-align: center;
  265. line-height: 29rpx;
  266. color: #b4282d;
  267. }
  268. .address-box .m {
  269. flex: 1;
  270. }
  271. .address-box .mobile {
  272. display: block;
  273. height: 29rpx;
  274. line-height: 29rpx;
  275. margin-bottom: 6.25rpx;
  276. font-size: 26rpx;
  277. }
  278. .address-box .address {
  279. display: block;
  280. /* height: 30rpx; */
  281. line-height: 32rpx;
  282. font-size: 30rpx;
  283. margin: 0 0 16rpx 0;
  284. }
  285. .address-bottom {
  286. color: #999;
  287. line-height: 28rpx;
  288. height: 28rpx;
  289. font-size: 26rpx;
  290. }
  291. .address-bottom .user-name {
  292. margin: 0 32rpx 0 0;
  293. }
  294. .address-box .r {
  295. width: 30rpx;
  296. height: 90rpx;
  297. display: flex;
  298. justify-content: flex-end;
  299. align-items: center;
  300. }
  301. .address-box .r image {
  302. width: 14rpx;
  303. height: 24rpx;
  304. }
  305. .popup-wrapper view {
  306. color: #888;
  307. font-size: 30rpx;
  308. }
  309. .popup-content {
  310. flex: 1;
  311. }
  312. .popup-title {
  313. height: 96rpx;
  314. line-height: 96rpx;
  315. text-align: center;
  316. border-bottom: 1rpx solid #ddd;
  317. font-size: 15px !important;
  318. }
  319. .popup-content {
  320. display: flex;
  321. }
  322. .time-select-left {
  323. /* flex: 2; */
  324. border-right: 1rpx solid #ddd;
  325. padding: 0 8rpx 0 20rpx;
  326. width:370rpx;
  327. }
  328. .time-select-right {
  329. flex: 1;
  330. /* padding: 0 8rpx; */
  331. height: 900rpx;
  332. overflow-y: hidden;
  333. }
  334. .time-select-left-item{
  335. height: 108rpx;
  336. display: flex;
  337. flex-direction: column;
  338. padding:4rpx 0;
  339. }
  340. .date-line-wrapper{
  341. flex:1;
  342. display: flex;
  343. /* justify-content: space-between; */
  344. align-items:center;
  345. }
  346. .time-select-left-item .date-msg{
  347. height:36rpx;
  348. line-height: 36rpx;
  349. color: #888;
  350. font-size: 24rpx;
  351. }
  352. .time-select-left-item .date-msg.avail-date{
  353. color:#3FA10D;
  354. font-weight: bold;
  355. }
  356. .popup-wrapper .popup-content .current-date {
  357. color: #09afff;
  358. font-weight: bold;
  359. }
  360. view.popup-wrapper .time-select-right-item {
  361. line-height: 104rpx;
  362. height: 104rpx;
  363. border-bottom: 1rpx solid #ddd;
  364. display: flex;
  365. align-items: flex-start;
  366. /*justify-content: space-between; */
  367. flex-direction: column;
  368. padding: 0 24rpx;
  369. justify-content: center;
  370. }
  371. .time-select-right-item view {
  372. color: #6D7278;
  373. /* font-weight: bold; */
  374. }
  375. view.popup-btn-wrapper {
  376. margin: 20rpx 0 0;
  377. padding: 0 24rpx 20rpx;
  378. }
  379. view.popup-btn-wrapper button>view {
  380. color: #fff;
  381. }
  382. view.popup-wrapper .date-tag {
  383. color: #09afff;
  384. height: 44rpx;
  385. line-height: 42rpx;
  386. width: 76rpx;
  387. border: 2rpx solid #09afff;
  388. border-radius: 44rpx;
  389. text-align: center;
  390. font-weight: normal;
  391. font-size: 22rpx;
  392. display: inline-block;
  393. margin-left:8rpx;
  394. }
  395. view.popup-wrapper .full-time {
  396. color: #09AFFF;
  397. font-size: 24rpx;
  398. margin: 0 0 0 20rpx;
  399. height: 44rpx;
  400. line-height: 44rpx;
  401. float: right;
  402. padding-right: 40rpx;
  403. }
  404. .first-appoint-date-item {
  405. height: 108rpx;
  406. display: flex;
  407. align-items: center;
  408. padding: 0 0 0 240rpx;
  409. }
  410. .first-time-selected {
  411. margin: 0 0 0 60rpx;
  412. }
  413. .select-week-times {
  414. border-top: 1rpx solid #ddd;
  415. }
  416. .week-select-left {
  417. flex: 1.2;
  418. }
  419. .week-select-left>view.time-select-left-item {
  420. padding: 0 0 0 60rpx;
  421. display: flex;
  422. align-items: flex-start;
  423. justify-content: flex-start;
  424. flex-direction: row;
  425. padding: 10rpx 0 0 60rpx;
  426. }
  427. .week-select-left>view.time-select-left-item .week-str {
  428. padding: 12rpx 0 0 0;
  429. }
  430. view.popup-wrapper view.select-num-tag {
  431. width: 32rpx;
  432. height: 32rpx;
  433. line-height: 32rpx;
  434. background: #09AFFF;
  435. border-radius: 34rpx;
  436. font-size: 20rpx;
  437. color: #fff;
  438. text-align: center;
  439. margin: 0 0 0 6rpx;
  440. }
  441. .popup-content-special {
  442. position: relative;
  443. }
  444. .popup-title-special {
  445. position: absolute;
  446. left: 0;
  447. top: 0;
  448. right: 0;
  449. background: #fff;
  450. }
  451. .popup-content-special {
  452. height: 900rpx;
  453. /* margin-top: 96rpx; */
  454. margin-top: 116rpx;
  455. }
  456. .popup-content-special .time-select-left {
  457. height: 900rpx;
  458. overflow-y: scroll;
  459. }
  460. .stock-text {
  461. font-size: 20rpx;
  462. font-weight: normal;
  463. color: #888
  464. }
  465. .zero-stock {
  466. color: #ccc;
  467. }
  468. .appoint-overlay-wrapper {
  469. position: fixed;
  470. top: 0;
  471. left: 0;
  472. width: 100%;
  473. height: 100%;
  474. background-color: rgba(0, 0, 0, .7);
  475. z-index: 999;
  476. }
  477. /* 选择时间 */
  478. view.popup-wrapper {
  479. /* padding: 0 0 20rpx; */
  480. color: #333;
  481. display: flex;
  482. flex-direction: column;
  483. justify-content: space-between;
  484. /* height: 80%; */
  485. position: fixed;
  486. left: 0;
  487. right: 0;
  488. bottom: 0;
  489. background: #fff;
  490. padding-bottom: constant(safe-area-inset-bottom);
  491. padding-bottom: env(safe-area-inset-bottom);
  492. z-index: 9999;
  493. border-radius: 36rpx 36rpx 0rpx 0rpx;
  494. overflow: hidden;
  495. }
  496. view.popup-wrapper view.confirm-btn {
  497. background: #09AFFF;
  498. height: 88rpx;
  499. line-height: 88rpx;
  500. border-radius: 88rpx;
  501. text-align: center;
  502. color: #fff;
  503. }
  504. .go-pay-wrapper {
  505. padding-bottom: constant(safe-area-inset-bottom);
  506. padding-bottom: env(safe-area-inset-bottom);
  507. }
  508. .go-pay-wrapper view {
  509. background: #09AFFF;
  510. height: 88rpx;
  511. line-height: 88rpx;
  512. border-radius: 88rpx;
  513. text-align: center;
  514. color: #fff;
  515. }
  516. .appoint-tabs-wrapper {
  517. height: 88rpx;
  518. display: flex;
  519. align-items: center;
  520. line-height: 88rpx;
  521. justify-content: space-around;
  522. background: #fff;
  523. }
  524. .appoint-tab-item.active {
  525. color: #09AFFF;
  526. border-bottom: 4rpx solid #09afff;
  527. }
  528. .order-info {
  529. background: #FFFFFF;
  530. border-radius: 24rpx;
  531. padding: 20rpx 24rpx;
  532. }
  533. .order-info .order-top {
  534. display: flex;
  535. align-items: center;
  536. height: 36rpx;
  537. margin-bottom: 6rpx;
  538. }
  539. .order-top view {
  540. font-size: 26rpx;
  541. color: #333;
  542. }
  543. .order-top view.topic {
  544. color: #666;
  545. margin-right: 16rpx;
  546. }
  547. .order-top .copy-img {
  548. width: 24rpx;
  549. height: 24rpx;
  550. margin-left: 20rpx;
  551. }
  552. .order-bottom {
  553. border-top: 2rpx solid #E0E0E0;
  554. margin-top: 14rpx;
  555. padding-top: 16rpx;
  556. }
  557. .order-price,
  558. .coupon-price {
  559. display: flex;
  560. align-items: center;
  561. height: 36rpx;
  562. margin-bottom: 6rpx;
  563. justify-content: space-between;
  564. }
  565. .order-price view,
  566. .coupon-price view {
  567. font-size: 26rpx;
  568. color: rgba(0, 0, 0, 0.9);
  569. font-weight: bold;
  570. }
  571. .order-price view.topic,
  572. .coupon-price view.topic {
  573. color: #666;
  574. margin-right: 16rpx;
  575. font-weight: normal;
  576. }
  577. .order-bottom .real-price {
  578. display: flex;
  579. align-items: center;
  580. height: 36rpx;
  581. justify-content: flex-end;
  582. font-size: 26rpx;
  583. font-weight: bold;
  584. }
  585. .order-bottom .real-price text {
  586. color: #FF004E;
  587. font-size: 26rpx;
  588. }
  589. /* 顶部地址 */
  590. .address-select {
  591. padding: 22rpx 24rpx 22rpx 30rpx;
  592. background: #FFFFFF;
  593. border-radius: 24rpx;
  594. display: flex;
  595. align-items: center;
  596. min-height: 132rpx;
  597. }
  598. .address-select .map-img {
  599. width: 48rpx;
  600. height: 48rpx;
  601. margin-right: 24rpx;
  602. }
  603. .address-main {
  604. display: flex;
  605. flex-direction: column;
  606. flex: 1;
  607. }
  608. .address-main .main-line {
  609. display: flex;
  610. height: 44rpx;
  611. margin-bottom: 4rpx;
  612. align-items: center;
  613. }
  614. .main-line view {
  615. color: #333333;
  616. font-size: 32rpx;
  617. }
  618. .main-line view.phone {
  619. color: #999999;
  620. font-size: 24rpx;
  621. margin-left: 14rpx;
  622. }
  623. .customer-info .customer-address {
  624. color: #666666;
  625. line-height: 40rpx;
  626. }
  627. .address-select .arrow-img {
  628. width: 28rpx;
  629. height: 28rpx;
  630. margin-left: 20rpx;
  631. }
  632. /* 地址选择 */
  633. .appoint-overlay-wrapper.address-overlay {
  634. display: flex;
  635. align-items: flex-end;
  636. }
  637. .address-popup {
  638. width: 750rpx;
  639. padding: 0 24rpx 0rpx;
  640. background: #FFFFFF;
  641. border-radius: 56rpx 56rpx 0 0;
  642. }
  643. .address-popup .title {
  644. font-weight: 600;
  645. color: #191919;
  646. font-size: 28rpx;
  647. height: 122rpx;
  648. line-height: 122rpx;
  649. text-align: center;
  650. }
  651. .address-list {
  652. height: 720rpx;
  653. overflow-y: scroll;
  654. padding-bottom: 20rpx;
  655. }
  656. .address-popup .add-address-btn {
  657. width: 654rpx;
  658. margin: 40rpx 24rpx 40rpx;
  659. height: 90rpx;
  660. background: linear-gradient(90deg, #00BAFF 0%, #008DFF 100%);
  661. border-radius: 45rpx;
  662. font-size: 36rpx;
  663. text-align: center;
  664. color: rgba(255, 255, 255, 0.9);
  665. line-height: 90rpx;
  666. }
  667. .address-item {
  668. width: 702rpx;
  669. display: flex;
  670. align-items: center;
  671. min-height: 132rpx;
  672. border-radius: 24rpx;
  673. border: 2rpx solid #E3E3E3;
  674. margin-bottom: 30rpx;
  675. }
  676. .address-item .arrow-img {
  677. width: 28rpx;
  678. height: 28rpx;
  679. margin-left: 20rpx;
  680. }
  681. .address-item .map-img {
  682. width: 48rpx;
  683. height: 48rpx;
  684. margin-right: 24rpx;
  685. }
  686. /* 选择备注 */
  687. .appoint-overlay-wrapper.remark-overlay {
  688. display: flex;
  689. align-items: flex-end;
  690. justify-content: center;
  691. }
  692. .remark-select {
  693. width: 750rpx;
  694. padding: 0 24rpx 56rpx;
  695. background: #FFFFFF;
  696. border-radius: 24rpx 24rpx 0 0;
  697. }
  698. .remark-select .title {
  699. font-weight: 600;
  700. color: #191919;
  701. font-size: 30rpx;
  702. height: 90rpx;
  703. line-height: 90rpx;
  704. text-align: center;
  705. border-bottom: 2rpx solid #E0E0E0;
  706. }
  707. .remark-item .remark-value {
  708. color: #191919;
  709. font-size: 26rpx;
  710. font-weight: bold;
  711. flex: 1;
  712. text-align: left;
  713. }
  714. .remark-list .remark-item {
  715. height: 84rpx;
  716. display: flex;
  717. border-bottom: 2rpx solid #E0E0E0;
  718. align-items: center;
  719. }
  720. .remark-item .radio-img {
  721. width: 26rpx;
  722. height: 26rpx;
  723. }
  724. .remark-conf-btn {
  725. width: 652rpx;
  726. height: 90rpx;
  727. line-height: 90rpx;
  728. border-radius: 90rpx;
  729. border: 4rpx solid #FF8219;
  730. text-align: center;
  731. font-size: 36rpx;
  732. color: #FF8219;
  733. margin: 0 auto;
  734. margin-top: 54rpx;
  735. }
  736. /* 地址输入 */
  737. .add-address .add-form {
  738. background: #fff;
  739. width: 702rpx;
  740. border-radius: 25rpx;
  741. padding: 4rpx 24rpx 24rpx;
  742. }
  743. .add-address .form-item {
  744. height: 78rpx;
  745. display: flex;
  746. align-items: center;
  747. }
  748. .add-address .input {
  749. flex: 1;
  750. /* height: 78rpx; */
  751. /* line-height: 44rpx; */
  752. /* overflow: hidden; */
  753. font-size: 26rpx;
  754. color: #333;
  755. padding-top: 24rpx;
  756. }
  757. .add-address .label {
  758. font-size: 26rpx;
  759. font-weight: bold;
  760. width: 160rpx;
  761. text-align: left;
  762. color: rgba(0, 0, 0, 0.9);
  763. }
  764. .add-address .label text {
  765. color: #FF0000;
  766. }
  767. .add-address .content {
  768. border-bottom: 2rpx solid #E0E0E0;
  769. /* height: 88rpx; */
  770. /* line-height: 88rpx; */
  771. align-content: center;
  772. flex: 1;
  773. display: flex;
  774. align-items: center;
  775. padding-bottom: 8rpx;
  776. height: 78rpx;
  777. }
  778. .gender-wrapper image {
  779. width: 26rpx;
  780. height: 26rpx;
  781. margin-right: 10rpx;
  782. }
  783. .gender-wrapper {
  784. display: flex;
  785. /* align-items: center;
  786. */
  787. height: 78rpx;
  788. justify-content: space-between;
  789. width: 220rpx;
  790. }
  791. .male,
  792. .female {
  793. display: flex;
  794. align-items: center;
  795. height: 78rpx;
  796. padding-top: 24rpx;
  797. }
  798. .male text,
  799. .female text {
  800. color: #ACADB1;
  801. font-size: 24rpx;
  802. }
  803. .noon-select{
  804. height:64rpx;
  805. display: flex;
  806. border-bottom:1rpx solid #ddd;
  807. }
  808. .time-select-right .noon-item{
  809. flex:1;
  810. text-align: center;
  811. line-height: 64rpx;
  812. color: #979797;
  813. font-size: 26rpx;
  814. }
  815. .time-select-right view.noon-item.active-noon{
  816. color: #fff;
  817. background: #09afff;
  818. }
  819. view.popup-wrapper .time-select-right-item .date-tag{
  820. width: 80rpx;
  821. height: 40rpx;
  822. line-height: 38rpx;
  823. margin-left:0;
  824. /* margin-left:120rpx; */
  825. }
  826. .popup-title-new.popup-title{
  827. display: flex;
  828. flex-direction: column;
  829. justify-content: center;
  830. align-items: center;
  831. height:116rpx;
  832. line-height: normal;
  833. }
  834. .popup-title-new view{
  835. color:#333;
  836. font-size: 32rpx;
  837. }
  838. .popup-title-new view.fee-tips{
  839. color: #FF5735;
  840. font-size: 22rpx;
  841. }
  842. .time-select-right-item text{
  843. color:#888;
  844. }
  845. .time-select-right .time-item-wrapper{
  846. height: 836rpx;
  847. overflow-y: scroll;
  848. }
  849. .time-line{
  850. display: flex;
  851. align-items: center;
  852. justify-content: space-between;
  853. width:100%;
  854. }
  855. view.popup-wrapper .time-select-right-item.invalid-time text{
  856. color: #999;
  857. }
  858. view.popup-wrapper .time-select-right-item.invalid-time{
  859. /* background: #E1E1E1; */
  860. background: #eee;
  861. }
  862. .time-select-right-item view.time-msg{
  863. height: 40rpx;
  864. line-height: 38rpx;
  865. border-radius: 40rpx;
  866. padding:0 8rpx;
  867. font-size: 22rpx;
  868. border: 2rpx solid #999;
  869. color: #999;
  870. font-weight: normal;
  871. white-space: nowrap;
  872. }
  873. .time-select-right-item text.extra-tips{
  874. color: #FF5735;
  875. font-size: 22rpx;
  876. }
  877. .notice-block{
  878. background: #fff;
  879. border-radius:24rpx;
  880. padding:20rpx 24rpx;
  881. margin-bottom:24rpx;
  882. }
  883. .notice-title{
  884. font-weight: bold;
  885. font-size: 26rpx;
  886. line-height: 60rpx;
  887. }
  888. .notice-item{
  889. display: flex;
  890. align-items: flex-start;
  891. }
  892. .notice-index{
  893. width:36rpx;
  894. }
  895. .notice-item view {
  896. font-size: 26rpx;
  897. line-height: 40rpx;
  898. color:#666;
  899. }
  900. .notice-item view:last-child{
  901. flex:1;
  902. text-align: justify;
  903. }