style.css 22 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114
  1. body {
  2. background-color: #f5f5f5;
  3. }
  4. page {
  5. background-color: #f5f5f5;
  6. min-height: 100%;
  7. }
  8. image {
  9. max-width: 100%;
  10. height: auto;
  11. }
  12. :root {
  13. --van-primary-color: #ee6d46;
  14. }
  15. .van-grid-item__content {
  16. padding: 0 var(--van-padding-base);
  17. }
  18. .scroll-view-H {
  19. white-space: nowrap;
  20. width: 100%;
  21. }
  22. .page-space {
  23. padding: 0 34rpx;
  24. }
  25. .page-card {
  26. background: #fff;
  27. -webkit-border-radius: 15rpx;
  28. border-radius: 15rpx;
  29. }
  30. .mb-10 {
  31. margin-bottom: 10rpx;
  32. }
  33. .mb-15 {
  34. margin-bottom: 15rpx;
  35. }
  36. .mb-20 {
  37. margin-bottom: 20rpx;
  38. }
  39. .mb-25 {
  40. margin-bottom: 25rpx;
  41. }
  42. .mb-30 {
  43. margin-bottom: 30rpx;
  44. }
  45. .pl-10 {
  46. padding-left: 10rpx;
  47. }
  48. .pl-15 {
  49. padding-left: 15rpx;
  50. }
  51. .pl-20 {
  52. padding-left: 20rpx;
  53. }
  54. .pl-25 {
  55. padding-left: 25rpx;
  56. }
  57. .pl-30 {
  58. padding-left: 30rpx;
  59. }
  60. .pl-40 {
  61. padding-left: 40rpx;
  62. }
  63. .pr-10 {
  64. padding-right: 10rpx;
  65. }
  66. .pr-15 {
  67. padding-right: 15rpx;
  68. }
  69. .pr-20 {
  70. padding-right: 20rpx;
  71. }
  72. .pr-25 {
  73. padding-right: 25rpx;
  74. }
  75. .pr-30 {
  76. padding-right: 30rpx;
  77. }
  78. .pr-40 {
  79. padding-right: 40rpx;
  80. }
  81. .p-40 {
  82. padding: 40rpx;
  83. }
  84. .paddingH-10 {
  85. padding: 0 20rpx;
  86. }
  87. .border-top {
  88. position: relative;
  89. }
  90. .border-top::after {
  91. content: '';
  92. position: absolute;
  93. left: 0;
  94. top: 0;
  95. right: 0;
  96. height: 1rpx;
  97. background: #e6e6e6;
  98. }
  99. .van-button {
  100. -webkit-border-radius: 0;
  101. border-radius: 0;
  102. }
  103. .van-button--mini {
  104. font-size: 24rpx;
  105. }
  106. .icon .image {
  107. display: block;
  108. width: 100%;
  109. height: 100%;
  110. }
  111. .infos {
  112. padding: 20rpx 37rpx 20rpx;
  113. }
  114. .infos.infos-right .info-cell-value {
  115. text-align: right;
  116. }
  117. .infos .info-cell {
  118. margin-bottom: 20rpx;
  119. display: -webkit-box;
  120. display: -webkit-flex;
  121. display: -ms-flexbox;
  122. display: flex;
  123. -webkit-box-align: center;
  124. -webkit-align-items: center;
  125. -ms-flex-align: center;
  126. align-items: center;
  127. -webkit-box-pack: justify;
  128. -webkit-justify-content: space-between;
  129. -ms-flex-pack: justify;
  130. justify-content: space-between;
  131. }
  132. .infos .info-cell-label {
  133. margin-right: 30rpx;
  134. line-height: 32rpx;
  135. font-size: 24rpx;
  136. color: #999999;
  137. }
  138. .infos .info-cell-value {
  139. -webkit-box-flex: 1;
  140. -webkit-flex: 1;
  141. -ms-flex: 1;
  142. flex: 1;
  143. line-height: 32rpx;
  144. font-size: 24rpx;
  145. color: #333333;
  146. }
  147. .infos .info-cell-operation {
  148. line-height: 32rpx;
  149. font-size: 24rpx;
  150. color: #ee6d46;
  151. }
  152. .simple-cell {
  153. display: -webkit-box;
  154. display: -webkit-flex;
  155. display: -ms-flexbox;
  156. display: flex;
  157. -webkit-box-align: center;
  158. -webkit-align-items: center;
  159. -ms-flex-align: center;
  160. align-items: center;
  161. }
  162. .simple-cell-icon {
  163. width: 64rpx;
  164. height: 64rpx;
  165. }
  166. .simple-cell-content {
  167. margin-left: 15rpx;
  168. }
  169. .simple-cell-title {
  170. line-height: 40rpx;
  171. font-size: 28rpx;
  172. font-weight: 500;
  173. color: #333333;
  174. }
  175. .simple-cell-label {
  176. line-height: 30rpx;
  177. font-size: 22rpx;
  178. color: #333333;
  179. }
  180. .time-bar {
  181. background: #fff;
  182. height: 150rpx;
  183. }
  184. .time-bar .van-tab--active .time-bar-item {
  185. background: #e96b45;
  186. }
  187. .time-bar .van-tab--active .time-bar-item .time {
  188. color: #fff;
  189. }
  190. .time-bar .van-tab--active .time-bar-item .status {
  191. color: #fff;
  192. }
  193. .time-bar-item {
  194. width: 180rpx;
  195. height: 150rpx;
  196. background: #ffffff;
  197. display: -webkit-box;
  198. display: -webkit-flex;
  199. display: -ms-flexbox;
  200. display: flex;
  201. -webkit-box-orient: vertical;
  202. -webkit-box-direction: normal;
  203. -webkit-flex-direction: column;
  204. -ms-flex-direction: column;
  205. flex-direction: column;
  206. -webkit-box-align: center;
  207. -webkit-align-items: center;
  208. -ms-flex-align: center;
  209. align-items: center;
  210. }
  211. .time-bar-item .time {
  212. margin-top: 26rpx;
  213. line-height: 1em;
  214. font-size: 34rpx;
  215. font-weight: bold;
  216. color: #333333;
  217. margin-bottom: 10rpx;
  218. }
  219. .time-bar-item .status {
  220. line-height: 1em;
  221. font-size: 24rpx;
  222. font-weight: 400;
  223. color: #999999;
  224. }
  225. .time-bar-item .countdown {
  226. -webkit-box-flex: 1;
  227. -webkit-flex: 1;
  228. -ms-flex: 1;
  229. flex: 1;
  230. height: 1em;
  231. font-size: 20rpx;
  232. color: #ffffff;
  233. font-weight: 100;
  234. }
  235. .time-bar .van-tab {
  236. padding: 0;
  237. }
  238. .time-bar .van-tabs--line .van-tabs__wrap {
  239. height: 150rpx;
  240. }
  241. .time-bar .van-tabs__nav--line {
  242. padding-bottom: 0;
  243. padding: 0;
  244. }
  245. .time-bar .van-tabs__wrap {
  246. height: 150rpx;
  247. }
  248. .time-bar .van-tabs__line {
  249. display: none;
  250. }
  251. .card {
  252. background: #ffffff;
  253. -webkit-border-radius: 15rpx;
  254. border-radius: 15rpx;
  255. }
  256. .card.noBorder .card-head {
  257. border-bottom: 0;
  258. }
  259. .card.noBorder .card-title {
  260. font-size: 28rpx;
  261. color: #999999;
  262. }
  263. .card.noBorder .card-content {
  264. padding: 0;
  265. }
  266. .card.min .card-title {
  267. font-size: 28rpx;
  268. color: #999999;
  269. }
  270. .card.min .card-content {
  271. padding: 0;
  272. }
  273. .card.full {
  274. -webkit-border-radius: 0;
  275. border-radius: 0;
  276. }
  277. .card.full .card-content {
  278. padding: 0 34rpx 20rpx;
  279. }
  280. .card-head {
  281. height: 85rpx;
  282. border-bottom: 1rpx solid #e6e6e6;
  283. padding-left: 30rpx;
  284. display: -webkit-box;
  285. display: -webkit-flex;
  286. display: -ms-flexbox;
  287. display: flex;
  288. -webkit-box-align: center;
  289. -webkit-align-items: center;
  290. -ms-flex-align: center;
  291. align-items: center;
  292. -webkit-box-pack: justify;
  293. -webkit-justify-content: space-between;
  294. -ms-flex-pack: justify;
  295. justify-content: space-between;
  296. }
  297. .card-title {
  298. font-size: 32rpx;
  299. font-family: PingFang SC;
  300. font-weight: 500;
  301. color: #333;
  302. }
  303. .card-title .card-title-sub {
  304. font-weight: normal;
  305. font-size: 22rpx;
  306. color: #999999;
  307. }
  308. .card-more {
  309. font-size: 24rpx;
  310. font-family: PingFang SC;
  311. font-weight: 400;
  312. color: #999999;
  313. display: -webkit-box;
  314. display: -webkit-flex;
  315. display: -ms-flexbox;
  316. display: flex;
  317. -webkit-box-align: center;
  318. -webkit-align-items: center;
  319. -ms-flex-align: center;
  320. align-items: center;
  321. }
  322. .card-more .uv-icon {
  323. margin-left: 10px;
  324. margin-right: 10px;
  325. }
  326. .card-content {
  327. padding: 20rpx 0 0;
  328. -webkit-border-bottom-left-radius: 15rpx;
  329. border-bottom-left-radius: 15rpx;
  330. -webkit-border-bottom-right-radius: 15rpx;
  331. border-bottom-right-radius: 15rpx;
  332. overflow: hidden;
  333. }
  334. .card .card-grid-item {
  335. display: -webkit-box;
  336. display: -webkit-flex;
  337. display: -ms-flexbox;
  338. display: flex;
  339. -webkit-box-orient: vertical;
  340. -webkit-box-direction: normal;
  341. -webkit-flex-direction: column;
  342. -ms-flex-direction: column;
  343. flex-direction: column;
  344. -webkit-box-pack: center;
  345. -webkit-justify-content: center;
  346. -ms-flex-pack: center;
  347. justify-content: center;
  348. -webkit-box-align: center;
  349. -webkit-align-items: center;
  350. -ms-flex-align: center;
  351. align-items: center;
  352. padding: 10rpx 0;
  353. margin-bottom: 20rpx;
  354. position: relative;
  355. }
  356. .card .card-grid-item-badge {
  357. -webkit-box-align: center;
  358. -webkit-align-items: center;
  359. -ms-flex-align: center;
  360. align-items: center;
  361. display: -webkit-box;
  362. display: -webkit-flex;
  363. display: -ms-flexbox;
  364. display: flex;
  365. position: absolute;
  366. right: 0;
  367. top: 0;
  368. }
  369. .card .card-grid-item-badge span {
  370. margin: 0 !important;
  371. color: #fff !important;
  372. }
  373. .card .card-grid-item .image {
  374. width: 60rpx;
  375. height: 60rpx;
  376. }
  377. .card .card-grid-item-label {
  378. margin-top: 14rpx;
  379. line-height: 33rpx;
  380. font-size: 24rpx;
  381. font-family: PingFang SC;
  382. font-weight: 400;
  383. color: #333333;
  384. }
  385. .search .y-search {
  386. background: none;
  387. }
  388. .cell-attr .cell-title {
  389. line-height: 40rpx;
  390. font-size: 28rpx;
  391. color: #333333;
  392. }
  393. .cell-attr .cell-sub-title {
  394. line-height: 40rpx;
  395. font-size: 28rpx;
  396. color: #999999;
  397. }
  398. .storeInfo {
  399. padding: 24rpx 35rpx;
  400. display: -webkit-box;
  401. display: -webkit-flex;
  402. display: -ms-flexbox;
  403. display: flex;
  404. -webkit-box-align: center;
  405. -webkit-align-items: center;
  406. -ms-flex-align: center;
  407. align-items: center;
  408. background: #fff;
  409. }
  410. .storeInfo-pic {
  411. width: 80rpx;
  412. height: 80rpx;
  413. }
  414. .storeInfo-info {
  415. -webkit-box-flex: 1;
  416. -webkit-flex: 1;
  417. -ms-flex: 1;
  418. flex: 1;
  419. margin-left: 20rpx;
  420. }
  421. .storeInfo-info-name {
  422. line-height: 40rpx;
  423. font-size: 28rpx;
  424. color: #333333;
  425. }
  426. .storeInfo-info-address {
  427. line-height: 28rpx;
  428. font-size: 20rpx;
  429. color: #999999;
  430. margin-top: 84px;
  431. }
  432. .storeInfo-action {
  433. width: 120rpx;
  434. height: 50rpx;
  435. background: #333333;
  436. line-height: 50rpx;
  437. text-align: center;
  438. font-size: 24rpx;
  439. line-height: 0rpx;
  440. color: #ffffff;
  441. }
  442. .center-title {
  443. display: -webkit-box;
  444. display: -webkit-flex;
  445. display: -ms-flexbox;
  446. display: flex;
  447. -webkit-box-align: center;
  448. -webkit-align-items: center;
  449. -ms-flex-align: center;
  450. align-items: center;
  451. -webkit-box-pack: center;
  452. -webkit-justify-content: center;
  453. -ms-flex-pack: center;
  454. justify-content: center;
  455. margin: 20rpx 0;
  456. }
  457. .center-title-line {
  458. width: 36rpx;
  459. height: 1rpx;
  460. background: #333333;
  461. }
  462. .center-title .title {
  463. margin: 0 22rpx;
  464. }
  465. .blank {
  466. height: var(--van-action-bar-height);
  467. }
  468. .shopping-bar {
  469. bottom: var(--van-tabbar-height);
  470. }
  471. .full-btn {
  472. height: var(--van-action-bar-height);
  473. }
  474. .shopping-checkbox .van-checkbox {
  475. padding: 2px;
  476. margin-right: 10rpx;
  477. }
  478. .shopping-checkbox-cell {
  479. display: -webkit-box;
  480. display: -webkit-flex;
  481. display: -ms-flexbox;
  482. display: flex;
  483. -webkit-box-align: center;
  484. -webkit-align-items: center;
  485. -ms-flex-align: center;
  486. align-items: center;
  487. padding: 26rpx 0 26rpx 30rpx;
  488. }
  489. .list {
  490. padding: 25rpx 35rpx;
  491. position: relative;
  492. display: -webkit-box;
  493. display: -webkit-flex;
  494. display: -ms-flexbox;
  495. display: flex;
  496. -webkit-box-pack: justify;
  497. -webkit-justify-content: space-between;
  498. -ms-flex-pack: justify;
  499. justify-content: space-between;
  500. -webkit-box-align: center;
  501. -webkit-align-items: center;
  502. -ms-flex-align: center;
  503. align-items: center;
  504. background: #fff;
  505. }
  506. .list-main {
  507. display: -webkit-box;
  508. display: -webkit-flex;
  509. display: -ms-flexbox;
  510. display: flex;
  511. -webkit-box-align: center;
  512. -webkit-align-items: center;
  513. -ms-flex-align: center;
  514. align-items: center;
  515. -webkit-box-flex: 1;
  516. -webkit-flex: 1;
  517. -ms-flex: 1;
  518. flex: 1;
  519. }
  520. .list-actions-edit {
  521. width: 33rpx;
  522. height: 33rpx;
  523. }
  524. .list-actions-edit .image {
  525. width: 100%;
  526. height: 100%;
  527. display: block;
  528. }
  529. .list.noBorder::after {
  530. display: none;
  531. }
  532. .list::after {
  533. content: '';
  534. position: absolute;
  535. left: 35rpx;
  536. top: 0;
  537. right: 0;
  538. height: 1rpx;
  539. background: #e6e6e6;
  540. }
  541. .list-label {
  542. line-height: 40rpx;
  543. font-size: 28rpx;
  544. color: #333333;
  545. }
  546. .list-content {
  547. -webkit-box-flex: 1;
  548. -webkit-flex: 1;
  549. -ms-flex: 1;
  550. flex: 1;
  551. }
  552. .list-content input,
  553. .list-content .uni-input {
  554. line-height: 40rpx;
  555. font-size: 28rpx;
  556. color: #333333;
  557. }
  558. .form-checkbox {
  559. padding: 43rpx 0;
  560. display: -webkit-box;
  561. display: -webkit-flex;
  562. display: -ms-flexbox;
  563. display: flex;
  564. -webkit-box-pack: center;
  565. -webkit-justify-content: center;
  566. -ms-flex-pack: center;
  567. justify-content: center;
  568. }
  569. .form-buttons {
  570. margin-top: 34rpx;
  571. padding: 0 34rpx;
  572. }
  573. .background-warp {
  574. position: relative;
  575. }
  576. .background-warp .background {
  577. position: absolute;
  578. left: 0;
  579. top: 0;
  580. right: 0;
  581. z-index: 1;
  582. }
  583. .background-warp .background .image {
  584. width: 100%;
  585. }
  586. .background-warp .background-content {
  587. position: relative;
  588. z-index: 10;
  589. }
  590. .order {
  591. background-color: #fff;
  592. -webkit-border-radius: 15rpx;
  593. border-radius: 15rpx;
  594. -webkit-box-sizing: border-box;
  595. box-sizing: border-box;
  596. margin: 10rpx 34rpx;
  597. }
  598. .order-header {
  599. display: -webkit-box;
  600. display: -webkit-flex;
  601. display: -ms-flexbox;
  602. display: flex;
  603. -webkit-box-align: center;
  604. -webkit-align-items: center;
  605. -ms-flex-align: center;
  606. align-items: center;
  607. -webkit-box-pack: justify;
  608. -webkit-justify-content: space-between;
  609. -ms-flex-pack: justify;
  610. justify-content: space-between;
  611. height: 80rpx;
  612. border-bottom: 1rpx solid #e6e6e6;
  613. padding: 0 34rpx;
  614. }
  615. .order-logo .image {
  616. height: 45rpx;
  617. width: auto;
  618. }
  619. .order-title {
  620. line-height: 45rpx;
  621. font-size: 32rpx;
  622. font-weight: 500;
  623. color: #333333;
  624. }
  625. .order-status.status-1 {
  626. line-height: 40rpx;
  627. font-size: 28rpx;
  628. color: #999999;
  629. }
  630. .order-status.status-2 {
  631. line-height: 40rpx;
  632. font-size: 28rpx;
  633. color: #ee6d46;
  634. }
  635. .order-info {
  636. border-top: 1rpx solid #e6e6e6;
  637. border-bottom: 1rpx solid #e6e6e6;
  638. height: 80rpx;
  639. line-height: 80rpx;
  640. font-size: 24rpx;
  641. color: #999999;
  642. display: -webkit-box;
  643. display: -webkit-flex;
  644. display: -ms-flexbox;
  645. display: flex;
  646. -webkit-box-pack: end;
  647. -webkit-justify-content: flex-end;
  648. -ms-flex-pack: end;
  649. justify-content: flex-end;
  650. padding-right: 34rpx;
  651. }
  652. .order-info text {
  653. margin-left: 10rpx;
  654. }
  655. .order-actions {
  656. display: -webkit-box;
  657. display: -webkit-flex;
  658. display: -ms-flexbox;
  659. display: flex;
  660. -webkit-box-pack: justify;
  661. -webkit-justify-content: space-between;
  662. -ms-flex-pack: justify;
  663. justify-content: space-between;
  664. padding-right: 34rpx;
  665. padding: 34rpx;
  666. }
  667. .order-actions-btns {
  668. display: -webkit-box;
  669. display: -webkit-flex;
  670. display: -ms-flexbox;
  671. display: flex;
  672. -webkit-box-align: center;
  673. -webkit-align-items: center;
  674. -ms-flex-align: center;
  675. align-items: center;
  676. }
  677. .order-actions-delete {
  678. width: 169rpx;
  679. height: 60rpx;
  680. border: 1px solid #333333;
  681. opacity: 1;
  682. -webkit-border-radius: 0rpx;
  683. border-radius: 0rpx;
  684. line-height: 58rpx;
  685. text-align: center;
  686. color: #333333;
  687. font-size: 24rpx;
  688. }
  689. .order-actions-primary {
  690. margin-left: 20rpx;
  691. width: 169rpx;
  692. height: 60rpx;
  693. background: #ee6d46;
  694. border: 1px solid #ee6d46;
  695. opacity: 1;
  696. -webkit-border-radius: 0rpx;
  697. border-radius: 0rpx;
  698. line-height: 58rpx;
  699. text-align: center;
  700. color: #ffffff;
  701. font-size: 24rpx;
  702. }
  703. .address {
  704. background: #ffffff;
  705. -webkit-border-radius: 15rpx;
  706. border-radius: 15rpx;
  707. position: relative;
  708. display: -webkit-box;
  709. display: -webkit-flex;
  710. display: -ms-flexbox;
  711. display: flex;
  712. -webkit-box-pack: justify;
  713. -webkit-justify-content: space-between;
  714. -ms-flex-pack: justify;
  715. justify-content: space-between;
  716. -webkit-box-align: center;
  717. -webkit-align-items: center;
  718. -ms-flex-align: center;
  719. align-items: center;
  720. margin-bottom: 20rpx;
  721. padding: 40rpx 34rpx;
  722. background: #fff;
  723. }
  724. .address-main {
  725. -webkit-box-flex: 1;
  726. -webkit-flex: 1;
  727. -ms-flex: 1;
  728. flex: 1;
  729. }
  730. .address-actions-edit {
  731. width: 33rpx;
  732. height: 33rpx;
  733. }
  734. .address-actions-edit .image {
  735. width: 100%;
  736. height: 100%;
  737. display: block;
  738. }
  739. .address.noBorder::after {
  740. display: none;
  741. }
  742. .address::after {
  743. content: '';
  744. position: absolute;
  745. left: 35rpx;
  746. top: 0;
  747. right: 0;
  748. height: 1rpx;
  749. background: #e6e6e6;
  750. }
  751. .address-icon {
  752. margin-right: 20rpx;
  753. width: 35rpx;
  754. height: 46rpx;
  755. }
  756. .address-icon .image {
  757. width: 100%;
  758. height: 100%;
  759. display: block;
  760. }
  761. .address-header {
  762. display: -webkit-box;
  763. display: -webkit-flex;
  764. display: -ms-flexbox;
  765. display: flex;
  766. -webkit-box-align: center;
  767. -webkit-align-items: center;
  768. -ms-flex-align: center;
  769. align-items: center;
  770. }
  771. .address-name {
  772. line-height: 40rpx;
  773. font-size: 28rpx;
  774. color: #333333;
  775. margin-right: 30rpx;
  776. }
  777. .address-phone {
  778. line-height: 40rpx;
  779. font-size: 28rpx;
  780. color: #333333;
  781. }
  782. .address-content {
  783. display: -webkit-box;
  784. display: -webkit-flex;
  785. display: -ms-flexbox;
  786. display: flex;
  787. -webkit-box-align: center;
  788. -webkit-align-items: center;
  789. -ms-flex-align: center;
  790. align-items: center;
  791. }
  792. .address-default {
  793. margin-right: 82rpx;
  794. }
  795. .address-desc {
  796. line-height: 33rpx;
  797. font-size: 24rpx;
  798. color: #999999;
  799. }
  800. .bottom-bar {
  801. position: fixed;
  802. bottom: 0;
  803. left: 0;
  804. right: 0;
  805. background: #fff;
  806. display: -webkit-box;
  807. display: -webkit-flex;
  808. display: -ms-flexbox;
  809. display: flex;
  810. }
  811. .bottom-bar-bg {
  812. height: 150rpx;
  813. }
  814. .action-bar {
  815. position: fixed;
  816. display: -webkit-box;
  817. display: -webkit-flex;
  818. display: -ms-flexbox;
  819. display: flex;
  820. bottom: 0;
  821. padding-bottom: constant(safe-area-inset-bottom);
  822. padding-bottom: env(safe-area-inset-bottom);
  823. left: 0;
  824. right: 0;
  825. background: #fff;
  826. }
  827. .action-bar.screen {
  828. bottom: 50px;
  829. }
  830. .action-bar.screen {
  831. padding-bottom: 0;
  832. }
  833. .action-bar.column {
  834. -webkit-box-orient: vertical;
  835. -webkit-box-direction: normal;
  836. -webkit-flex-direction: column;
  837. -ms-flex-direction: column;
  838. flex-direction: column;
  839. }
  840. .action-bar.column .action-info {
  841. -webkit-box-flex: 0;
  842. -webkit-flex: 0 0 100rpx;
  843. -ms-flex: 0 0 100rpx;
  844. flex: 0 0 100rpx;
  845. }
  846. .action-bar.column .action-btns {
  847. height: 100rpx;
  848. -webkit-box-align: center;
  849. -webkit-align-items: center;
  850. -ms-flex-align: center;
  851. align-items: center;
  852. }
  853. .action-bar .action-total {
  854. margin-left: 20rpx;
  855. }
  856. .action-bar .action-info {
  857. -webkit-box-flex: 1;
  858. -webkit-flex: 1;
  859. -ms-flex: 1;
  860. flex: 1;
  861. display: -webkit-box;
  862. display: -webkit-flex;
  863. display: -ms-flexbox;
  864. display: flex;
  865. -webkit-box-align: center;
  866. -webkit-align-items: center;
  867. -ms-flex-align: center;
  868. align-items: center;
  869. padding: 0 34rpx;
  870. height: 100rpx;
  871. }
  872. .action-bar .action-icons {
  873. -webkit-box-flex: 1;
  874. -webkit-flex: 1;
  875. -ms-flex: 1;
  876. flex: 1;
  877. display: -webkit-box;
  878. display: -webkit-flex;
  879. display: -ms-flexbox;
  880. display: flex;
  881. -webkit-box-align: center;
  882. -webkit-align-items: center;
  883. -ms-flex-align: center;
  884. align-items: center;
  885. height: 100rpx;
  886. padding-left: 20rpx;
  887. }
  888. .action-bar .action-icons-item {
  889. -webkit-box-flex: 1;
  890. -webkit-flex: 1;
  891. -ms-flex: 1;
  892. flex: 1;
  893. display: -webkit-box;
  894. display: -webkit-flex;
  895. display: -ms-flexbox;
  896. display: flex;
  897. -webkit-box-align: center;
  898. -webkit-align-items: center;
  899. -ms-flex-align: center;
  900. align-items: center;
  901. -webkit-box-pack: center;
  902. -webkit-justify-content: center;
  903. -ms-flex-pack: center;
  904. justify-content: center;
  905. }
  906. .action-bar .action-icons .action-icon {
  907. display: -webkit-box;
  908. display: -webkit-flex;
  909. display: -ms-flexbox;
  910. display: flex;
  911. -webkit-box-orient: vertical;
  912. -webkit-box-direction: normal;
  913. -webkit-flex-direction: column;
  914. -ms-flex-direction: column;
  915. flex-direction: column;
  916. -webkit-box-pack: center;
  917. -webkit-justify-content: center;
  918. -ms-flex-pack: center;
  919. justify-content: center;
  920. -webkit-box-align: center;
  921. -webkit-align-items: center;
  922. -ms-flex-align: center;
  923. align-items: center;
  924. position: relative;
  925. }
  926. .action-bar .action-icons .action-icon-badge {
  927. position: absolute;
  928. right: -10rpx;
  929. top: 0;
  930. }
  931. .action-bar .action-icons .action-icon .action-icon-img {
  932. width: 50rpx;
  933. height: 50rpx;
  934. }
  935. .action-bar .action-icons .action-icon .action-icon-label {
  936. line-height: 28rpx;
  937. font-size: 20rpx;
  938. color: #333333;
  939. }
  940. .action-bar .action-btns {
  941. display: -webkit-box;
  942. display: -webkit-flex;
  943. display: -ms-flexbox;
  944. display: flex;
  945. -webkit-box-align: center;
  946. -webkit-align-items: center;
  947. -ms-flex-align: center;
  948. align-items: center;
  949. padding: 0 24rpx;
  950. }
  951. .action-bar .action-btns .uv-button-wrapper {
  952. -webkit-box-flex: 1;
  953. -webkit-flex: 1;
  954. -ms-flex: 1;
  955. flex: 1;
  956. margin: 0 10rpx;
  957. }
  958. .action-bar .action-btns .uv-button {
  959. -webkit-border-radius: 0 !important;
  960. border-radius: 0 !important;
  961. }
  962. .y-list {
  963. margin-bottom: 20rpx;
  964. }
  965. .y-list.min {
  966. margin-bottom: 15rpx;
  967. }
  968. .y-list.min .y-list-label {
  969. margin-right: 10rpx;
  970. }
  971. .y-list.min .y-list-content {
  972. height: 88rpx;
  973. }
  974. .y-list .uv-list-item__wrapper {
  975. -webkit-box-orient: horizontal !important;
  976. -webkit-box-direction: normal !important;
  977. -webkit-flex-direction: row !important;
  978. -ms-flex-direction: row !important;
  979. flex-direction: row !important;
  980. }
  981. .y-list-content {
  982. -webkit-box-flex: 1;
  983. -webkit-flex: 1;
  984. -ms-flex: 1;
  985. flex: 1;
  986. display: -webkit-box;
  987. display: -webkit-flex;
  988. display: -ms-flexbox;
  989. display: flex;
  990. width: 100%;
  991. -webkit-box-align: center;
  992. -webkit-align-items: center;
  993. -ms-flex-align: center;
  994. align-items: center;
  995. height: 100rpx;
  996. padding-left: 34rpx;
  997. padding-right: 34rpx;
  998. }
  999. .y-list-content.avatar {
  1000. height: 130rpx;
  1001. }
  1002. .y-list-label {
  1003. line-height: 40rpx;
  1004. font-size: 28rpx;
  1005. font-weight: 400;
  1006. color: #999999;
  1007. margin-right: 30rpx;
  1008. word-break: normal;
  1009. word-wrap: normal;
  1010. text-wrap: nowrap;
  1011. -webkit-box-flex: 1;
  1012. -webkit-flex: 1;
  1013. -ms-flex: 1;
  1014. flex: 1;
  1015. }
  1016. .y-list-select {
  1017. line-height: 40rpx;
  1018. font-size: 28rpx;
  1019. font-weight: 400;
  1020. color: #333333;
  1021. opacity: 1;
  1022. -webkit-box-flex: 1;
  1023. -webkit-flex: 1;
  1024. -ms-flex: 1;
  1025. flex: 1;
  1026. text-align: right;
  1027. }
  1028. .y-list-select-placeholder {
  1029. color: #999999;
  1030. line-height: 40rpx;
  1031. font-size: 28rpx;
  1032. font-weight: 400;
  1033. color: #999;
  1034. opacity: 1;
  1035. -webkit-box-flex: 1;
  1036. -webkit-flex: 1;
  1037. -ms-flex: 1;
  1038. flex: 1;
  1039. text-align: right;
  1040. }
  1041. .y-list-default {
  1042. font-size: 28rpx;
  1043. font-weight: 400;
  1044. color: #333333;
  1045. opacity: 1;
  1046. }
  1047. .y-list-value {
  1048. line-height: 40rpx;
  1049. font-size: 28rpx;
  1050. font-weight: 500;
  1051. color: #ee6d46;
  1052. }
  1053. .y-list-value .uv-input {
  1054. border: 0;
  1055. }
  1056. .y-list .uvicon-arrow-right {
  1057. font-size: 10rpx !important;
  1058. }
  1059. .y-list-avatar {
  1060. padding: 20rpx 0;
  1061. display: -webkit-box;
  1062. display: -webkit-flex;
  1063. display: -ms-flexbox;
  1064. display: flex;
  1065. -webkit-box-pack: end;
  1066. -webkit-justify-content: flex-end;
  1067. -ms-flex-pack: end;
  1068. justify-content: flex-end;
  1069. }
  1070. .y-list-avatar .img {
  1071. width: 90rpx;
  1072. height: 90rpx;
  1073. -webkit-border-radius: 50%;
  1074. border-radius: 50%;
  1075. }
  1076. .uv-list--border-top {
  1077. background: #e6e6e6 !important;
  1078. }
  1079. .uv-list--border-left {
  1080. background: #e6e6e6 !important;
  1081. }
  1082. .uv-list--border-bottom {
  1083. background: #e6e6e6 !important;
  1084. }
  1085. .uv-list--border-right {
  1086. background: #e6e6e6 !important;
  1087. }
  1088. .uv-list--border:after:after {
  1089. background: #e6e6e6 !important;
  1090. }
  1091. .uvicon-arrow-right {
  1092. color: #999999;
  1093. }
  1094. .search-bar {
  1095. background: #fff;
  1096. padding: 20rpx 34rpx;
  1097. }
  1098. .y-subsection {
  1099. padding: 20rpx 33rpx 0;
  1100. }
  1101. .swiper {
  1102. width: 100%;
  1103. }
  1104. .swiper.detail {
  1105. height: 750rpx;
  1106. }
  1107. .swiper .image {
  1108. width: 100%;
  1109. display: block;
  1110. }
  1111. .uv-button--info {
  1112. border-color: #333333 !important;
  1113. color: #333333 !important;
  1114. }