index.less 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991
  1. /**index.less**/
  2. .firstConainer {
  3. height: 100vh;
  4. }
  5. .firstPageContainer {
  6. position: relative;
  7. background: url('https://oss.dayaedu.com/ktyq/1733123043908.png') no-repeat center;
  8. background-size: cover;
  9. .weui-navigation-bar {
  10. color: #FFF;
  11. }
  12. .fistSwiperSection {
  13. // height: 1142rpx;
  14. height: 85vh;
  15. // height: 750rpx;
  16. padding-top: 48rpx;
  17. swiper-item {
  18. display: flex;
  19. align-items: center;
  20. justify-content: center;
  21. // height: 85vh !important;
  22. }
  23. }
  24. .swiper-item {
  25. transition: all 0.4s ease;
  26. /* 调整过渡动画的时长和缓动函数,影响淡入淡出和缩放的速度 */
  27. transform-origin: center center;
  28. /* 明确缩放的中心点位置 */
  29. max-width: 90%;
  30. /* 适当增大最大宽度,让缩放效果更明显 */
  31. max-height: 90%;
  32. /* 适当增大最大高度,让缩放效果更明显 */
  33. // width: 592rpx;
  34. // height: 1142rpx;
  35. // height: 100%;
  36. width: 100%;
  37. height: 85vh;
  38. &.current {
  39. transition: all 0.35s ease;
  40. max-width: 100%;
  41. max-height: 100%;
  42. }
  43. &.tablet-item {
  44. image {
  45. height: 100% !important;
  46. width: initial;
  47. }
  48. }
  49. image {
  50. display: block;
  51. margin: 0 auto;
  52. // height: 100% !important;
  53. width: 100%;
  54. // background: #FFFFFF;
  55. // border-radius: 32rpx;
  56. }
  57. }
  58. .pageDot {
  59. display: flex;
  60. align-items: center;
  61. justify-content: center;
  62. padding-top: 32rpx;
  63. display: none;
  64. .dot-item {
  65. width: 12rpx;
  66. height: 12rpx;
  67. background: #FFFFFF;
  68. border-radius: 6rpx;
  69. opacity: 0.5;
  70. margin: 0 8rpx;
  71. transition: all 0.15s ease;
  72. &.current {
  73. width: 36rpx;
  74. height: 12rpx;
  75. background: #FFFFFF;
  76. border-radius: 6rpx;
  77. opacity: 1;
  78. }
  79. }
  80. }
  81. .upArrow {
  82. position: absolute;
  83. bottom: 40rpx;
  84. left: 50%;
  85. width: 75.2rpx;
  86. height: 86.4rpx;
  87. z-index: 1;
  88. transform: translateX(-50%);
  89. animation: breathe 2s infinite cubic-bezier(0, 0.21, 0, 0.88);
  90. }
  91. @keyframes breathe {
  92. 0% {
  93. opacity: 1;
  94. transform: translateX(-50%) translateY(0rpx);
  95. }
  96. 75% {
  97. opacity: 1;
  98. }
  99. 100% {
  100. opacity: 0;
  101. transform: translateX(-50%) translateY(-40rpx);
  102. }
  103. }
  104. }
  105. .pageContainer {
  106. height: 100vh;
  107. width: 100%;
  108. }
  109. page {
  110. height: 100vh;
  111. display: flex;
  112. flex-direction: column;
  113. background: #F5F6F7;
  114. }
  115. .scrollarea {
  116. flex: 1;
  117. overflow-y: hidden;
  118. height: 100%;
  119. }
  120. .container {
  121. position: relative;
  122. .topShadow {
  123. position: absolute;
  124. top: 0;
  125. z-index: 1;
  126. width: 100%;
  127. height: 200rpx;
  128. background: linear-gradient(180deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
  129. }
  130. .slider-count {
  131. position: absolute;
  132. top: 674rpx;
  133. right: 32rpx;
  134. background: rgba(0, 0, 0, 0.4);
  135. border-radius: 26rpx;
  136. border: 2rpx solid rgba(255, 255, 255, 0.3);
  137. font-weight: 600;
  138. font-size: 28rpx;
  139. color: #FFFFFF;
  140. line-height: 40rpx;
  141. text-align: center;
  142. padding: 2rpx 26rpx;
  143. z-index: 1;
  144. }
  145. swiper {
  146. height: 750rpx;
  147. }
  148. .swiper-item {
  149. width: 100%;
  150. height: 100%;
  151. image {
  152. width: 100%;
  153. height: 100%;
  154. }
  155. }
  156. .demo-text-1 {
  157. background-color: red;
  158. }
  159. .demo-text-2 {
  160. background-color: black;
  161. }
  162. .demo-text-3 {
  163. background-color: gray;
  164. }
  165. }
  166. .shop-section {
  167. background: #FFFFFF;
  168. border-radius: 20rpx;
  169. margin: 16rpx 16rpx 0;
  170. padding: 24rpx 24rpx 40rpx;
  171. .showPrice {
  172. display: flex;
  173. justify-content: space-between;
  174. align-items: center;
  175. }
  176. .left {
  177. flex: 1 auto;
  178. display: flex;
  179. align-items: flex-end;
  180. }
  181. .currentPrice {
  182. font-weight: bold;
  183. color: #FE2451;
  184. font-family: DINAlternate, DINAlternate;
  185. display: flex;
  186. align-items: flex-end;
  187. .stuff {
  188. padding-right: 2rpx;
  189. font-size: 36rpx;
  190. }
  191. .priceZ {
  192. font-size: 60rpx;
  193. line-height: 1;
  194. }
  195. .priceF {
  196. font-size: 36rpx;
  197. }
  198. .after {
  199. padding-left: 4rpx;
  200. font-size: 28rpx;
  201. line-height: 48rpx;
  202. vertical-align: bottom;
  203. }
  204. }
  205. .originPrice {
  206. padding-left: 16rpx;
  207. font-size: 32rpx;
  208. color: #AAAAAA;
  209. line-height: 44rpx;
  210. text-decoration: line-through;
  211. padding-bottom: 12rpx;
  212. }
  213. .right {
  214. padding-top: 14rpx;
  215. font-weight: 400;
  216. font-size: 28rpx;
  217. color: #777777;
  218. line-height: 40rpx;
  219. }
  220. }
  221. .shopName {
  222. font-weight: 600;
  223. font-size: 32rpx;
  224. color: #131415;
  225. line-height: 44rpx;
  226. padding: 24rpx 0 14rpx;
  227. }
  228. .shopInfo {
  229. font-size: 24rpx;
  230. color: #999999;
  231. line-height: 38rpx;
  232. padding-bottom: 40rpx;
  233. }
  234. .shop-btn {
  235. button {
  236. line-height: 88rpx;
  237. background: linear-gradient(270deg, #FF204B 0%, #FE5B71 100%);
  238. border-radius: 44rpx;
  239. text-align: center;
  240. font-weight: 500;
  241. font-size: 32rpx;
  242. color: #FFFFFF;
  243. padding: 0 !important;
  244. margin: 0 !important;
  245. width: 100%;
  246. pointer-events: all;
  247. }
  248. }
  249. .goodsInfo {
  250. display: flex;
  251. .goodsList {
  252. display: flex;
  253. align-items: center;
  254. flex-wrap: wrap;
  255. }
  256. .goodsItem {
  257. line-height: 68rpx;
  258. background: #F4F4F5;
  259. border-radius: 12rpx;
  260. padding: 0 32rpx;
  261. margin-right: 24rpx;
  262. font-size: 28rpx;
  263. color: #131415;
  264. position: relative;
  265. margin-top: 24rpx;
  266. &.selected {
  267. background: #FEEDF0;
  268. // font-weight: 600;
  269. color: #FE2451;
  270. }
  271. &.nosale {
  272. background: #F4F4F5;
  273. color: #B1B1B1;
  274. }
  275. text {
  276. padding-left: 8rpx;
  277. }
  278. image {
  279. position: absolute;
  280. top: -14rpx;
  281. right: -14rpx;
  282. width: 56rpx;
  283. height: 28rpx;
  284. display: block;
  285. z-index: 1;
  286. }
  287. }
  288. }
  289. // .goodsSection {
  290. // margin-bottom: 156rpx;
  291. // padding-bottom: 154rpx;
  292. // }
  293. .well {
  294. height: 74rpx;
  295. padding-bottom: calc(env(safe-area-inset-bottom) + 24rpx);
  296. }
  297. .goodsIntro {
  298. background: #FFFFFF;
  299. border-radius: 20rpx;
  300. overflow: hidden;
  301. margin: 16rpx 16rpx 8rpx;
  302. .title {
  303. font-weight: 600;
  304. font-size: 32rpx;
  305. color: #131415;
  306. line-height: 44rpx;
  307. padding: 28rpx 24rpx;
  308. }
  309. .images {
  310. image {
  311. display: block;
  312. width: 100%;
  313. }
  314. .img1 {
  315. height: 1128rpx;
  316. }
  317. .img2 {
  318. height: 1810rpx
  319. }
  320. .img3 {
  321. height: 1336rpx;
  322. }
  323. .img4 {
  324. height: 1750rpx;
  325. }
  326. }
  327. }
  328. .bottom-section {
  329. position: fixed;
  330. bottom: 0;
  331. left: 0;
  332. width: 100%;
  333. background-color: #FFFFFF;
  334. box-shadow: inset 0rpx 2rpx 0rpx 0rpx #F0F0F0;
  335. padding: 24rpx 32rpx 24rpx 32rpx;
  336. padding-bottom: calc(env(safe-area-inset-bottom) + 24rpx); /* 新版 iOS */
  337. display: flex;
  338. align-items: center;
  339. box-sizing: border-box;
  340. justify-content: space-around;
  341. .orders {
  342. display: flex;
  343. align-items: center;
  344. margin-right: 40rpx;
  345. // padding: 8rpx 0 16rpx;
  346. &.active {
  347. text {
  348. color: #131415;
  349. }
  350. }
  351. image {
  352. width: 44rpx;
  353. height: 44rpx;
  354. }
  355. text {
  356. padding-left: 16rpx;
  357. font-weight: 500;
  358. font-size: 28rpx;
  359. color: #AAAAAA;
  360. line-height: 44rpx;
  361. text-align: center;
  362. }
  363. }
  364. .btnSection {
  365. flex: 1 auto;
  366. button {
  367. width: 100%;
  368. line-height: 88rpx;
  369. background: linear-gradient(270deg, #FF204B 0%, #FE5B71 100%);
  370. border-radius: 44rpx;
  371. font-weight: 500;
  372. font-size: 32rpx;
  373. color: #FFFFFF;
  374. padding-top: 0;
  375. padding-bottom: 0;
  376. &[disabled][type=primary] {
  377. opacity: 0.7;
  378. }
  379. }
  380. }
  381. }
  382. // .van-overlay, .van-transition {
  383. // // pointer-events: all !important;
  384. // }
  385. // 'demo-text-1', 'demo-text-2', 'demo-text-3'
  386. .popup-section {
  387. max-height: 86vh;
  388. display: flex;
  389. flex-direction: column;
  390. .popup-container {
  391. width: 100%;
  392. background: #FFFFFF;
  393. border-radius: 32rpx 32rpx 0rpx 0rpx;
  394. box-sizing: border-box;
  395. flex: 1 auto;
  396. overflow-y: auto;
  397. overscroll-behavior: none;
  398. .popup-scroll {
  399. // overflow-x: hidden;
  400. // overflow-y: scroll;
  401. border-radius: 32rpx 32rpx 0rpx 0rpx;
  402. flex: 1 auto;
  403. //
  404. }
  405. .top-vip-img {
  406. width: 100%;
  407. }
  408. .goodsInfo {
  409. padding: 0 40rpx 48rpx;
  410. }
  411. }
  412. .addBuyer {
  413. margin: 40rpx 40rpx;
  414. background: #F6F6F6;
  415. border-radius: 20rpx;
  416. display: flex;
  417. align-items: center;
  418. justify-content: space-between;
  419. padding: 28rpx 24rpx;
  420. .icon-man {
  421. width: 28rpx;
  422. height: 36rpx;
  423. margin-right: 16rpx;
  424. flex-shrink: 1;
  425. }
  426. .addBuyer-left {
  427. display: flex;
  428. flex: 1;
  429. margin-right: 20rpx;
  430. .info {
  431. flex: 1;
  432. }
  433. }
  434. .users {
  435. font-weight: 600;
  436. font-size: 28rpx;
  437. color: #131415;
  438. line-height: 40rpx;
  439. text {
  440. padding-right: 24rpx;
  441. }
  442. }
  443. .address {
  444. padding-top: 12rpx;
  445. font-size: 24rpx;
  446. color: rgba(19, 20, 21, 0.4);
  447. line-height: 34rpx;
  448. word-break: break-all;
  449. }
  450. .arrow-right {
  451. width: 32rpx;
  452. height: 32rpx;
  453. flex-shrink: 1;
  454. }
  455. }
  456. .iconClose {
  457. position: absolute;
  458. right: 0;
  459. top: 0;
  460. z-index: 1;
  461. padding: 24rpx;
  462. width: 44rpx;
  463. height: 44rpx;
  464. }
  465. .product-section {
  466. display: flex;
  467. padding-bottom: 60rpx;
  468. .product-img {
  469. width: 160rpx;
  470. height: 160rpx;
  471. flex-shrink: 0;
  472. margin-right: 32rpx;
  473. border-radius: 6px;
  474. overflow: hidden;
  475. image {
  476. width: 100%;
  477. height: 100%;
  478. }
  479. }
  480. .product-left {
  481. display: flex;
  482. align-items: flex-start;
  483. .currentPrice {
  484. font-weight: bold;
  485. color: #FE2451;
  486. font-family: DINAlternate, DINAlternate;
  487. .stuff {
  488. padding-right: 2rpx;
  489. font-size: 36rpx;
  490. }
  491. .priceZ {
  492. font-size: 60rpx;
  493. }
  494. .priceF {
  495. font-size: 36rpx;
  496. }
  497. }
  498. .originPrice {
  499. padding-left: 16rpx;
  500. font-size: 32rpx;
  501. color: #AAAAAA;
  502. line-height: 44rpx;
  503. text-decoration: line-through;
  504. padding-top: 32rpx;
  505. }
  506. }
  507. }
  508. .goodsInfo {
  509. flex-direction: column;
  510. align-items: flex-start;
  511. padding-bottom: 90rpx;
  512. .desc {
  513. font-size: 28rpx;
  514. color: #131415;
  515. line-height: 40rpx;
  516. text {
  517. padding-left: 8rpx;
  518. font-size: 28rpx;
  519. color: #AAAAAA;
  520. line-height: 40rpx;
  521. }
  522. }
  523. }
  524. button {
  525. width: 100%;
  526. line-height: 88rpx;
  527. background: linear-gradient(270deg, #FF204B 0%, #FE5B71 100%);
  528. border-radius: 44rpx;
  529. font-weight: 500;
  530. font-size: 32rpx;
  531. color: #FFFFFF;
  532. padding-top: 0;
  533. padding-bottom: 0;
  534. }
  535. }
  536. .popupBottom {
  537. // position: fixed;
  538. // bottom: 0;
  539. // left: 0;
  540. // right: 0;
  541. background: #ffffff;
  542. border-top: 2rpx solid #F0F0F0;
  543. padding: 0 32rpx 58rpx;
  544. }
  545. .current-item {
  546. font-size: 24rpx;
  547. color: #999999;
  548. line-height: 40rpx;
  549. padding: 12rpx 12rpx 20rpx;
  550. .current-select-text {
  551. padding-top: 10rpx;
  552. font-size: 26rpx;
  553. line-height: 36rpx;
  554. }
  555. text {
  556. color: #ff0047;
  557. // font-weight: bold;
  558. }
  559. font-family: DINAlternate,
  560. DINAlternate;
  561. .current-top {
  562. display: flex;
  563. align-items: flex-end;
  564. line-height: 42rpx;
  565. }
  566. .line {
  567. color: #D2D2D2;
  568. padding: 0 12rpx;
  569. }
  570. .prices {
  571. display: flex;
  572. align-items: flex-end;
  573. padding-left: 8rpx;
  574. font-weight: bold;
  575. padding-bottom: 2rpx;
  576. // vertical-align: baseline;
  577. // text {
  578. // display: inline-block;
  579. // }
  580. }
  581. .stuff {
  582. padding-right: 2rpx;
  583. font-size: 36rpx;
  584. line-height: 1.3;
  585. }
  586. .priceZ {
  587. font-size: 56rpx;
  588. line-height: 60rpx;
  589. }
  590. .priceF {
  591. font-size: 36rpx;
  592. line-height: 1.3;
  593. }
  594. }
  595. /* components/buyerInformation/index.wxss */
  596. .icon-close-pop {
  597. position: absolute;
  598. z-index: 2;
  599. top: 28rpx;
  600. left: 20rpx;
  601. padding: 20rpx;
  602. width: 36rpx;
  603. height: 36rpx;
  604. }
  605. .container-pop {
  606. background: linear-gradient(180deg, #FFDEE7 0%, #FFFFFF 12%, #FFFFFF 100%);
  607. border-radius: 32rpx 32rpx 0rpx 0rpx;
  608. height: 86vh;
  609. display: flex;
  610. flex-direction: column;
  611. }
  612. .pop-address-title {
  613. position: relative;
  614. z-index: 1;
  615. text-align: center;
  616. padding-top: 40rpx;
  617. padding-bottom: 20rpx;
  618. font-weight: 600;
  619. font-size: 36rpx;
  620. color: #131415;
  621. line-height: 50rpx;
  622. }
  623. .section {
  624. margin: 24rpx 0;
  625. // background: linear-gradient(180deg, #E3F9FF 0%, #FFFFFF 9%, #FFFFFF 100%);
  626. border-radius: 18rpx;
  627. // overflow-x: hidden;
  628. // overflow-y: auto;
  629. flex: 1 auto;
  630. .section-content {
  631. // background: linear-gradient(180deg, #E3F9FF 0%, #FFFFFF 9%, #FFFFFF 100%);
  632. border-radius: 12rpx;
  633. overflow: hidden;
  634. }
  635. .section-title {
  636. width: 236rpx;
  637. height: 46rpx;
  638. margin: 20rpx 0 18rpx 28rpx;
  639. }
  640. .van-cell {
  641. padding: 40rpx !important;
  642. font-size: 30rpx !important;
  643. line-height: 42rpx;
  644. background-color: transparent !important;
  645. --cell-line-height: 48rpx!important;
  646. .van-field__label {
  647. color: #666666 !important;
  648. line-height: 48rpx;
  649. }
  650. .van-field__body {
  651. color: #000 !important;
  652. font-size: 30rpx !important;
  653. }
  654. .van-icon-arrow {
  655. color: #BBBBBB !important;
  656. // font-weight: 600;
  657. }
  658. }
  659. // .gender-section {
  660. // display: flex;
  661. // .gender-item {
  662. // margin-left: 24rpx;
  663. // background: rgba(28, 172, 241, 0.11);
  664. // border-radius: 12rpx;
  665. // font-weight: 500;
  666. // font-size: 28rpx;
  667. // color: #1CACF1;
  668. // width: 104rpx;
  669. // line-height: 48rpx;
  670. // text-align: center;
  671. // &.active {
  672. // background: #1CACF1;
  673. // color: #FFFFFF;
  674. // }
  675. // }
  676. // }
  677. }
  678. .pop-btn-group {
  679. padding: 24rpx 32rpx 58rpx;
  680. .submit-btn {
  681. width: 100% !important;
  682. margin: 0 !important;
  683. padding: 0 !important;
  684. line-height: 88rpx;
  685. background: linear-gradient(270deg, #FF204B 0%, #FE5B71 100%);
  686. border-radius: 88rpx;
  687. font-weight: 500;
  688. font-size: 32rpx;
  689. color: #fff;
  690. }
  691. }
  692. .van-picker__toolbar,
  693. .toolbar-top {
  694. margin: 0 20px !important;
  695. padding: 0 7px !important;
  696. border-bottom: 1px solid #F2F2F2;
  697. height: auto !important;
  698. line-height: normal !important;
  699. }
  700. .van-picker__cancel,
  701. .van-picker__confirm,
  702. .toolbar-cancel,
  703. .toolbar-confirm {
  704. font-size: 16px !important;
  705. padding: 14px 0 !important;
  706. color: #777777 !important;
  707. }
  708. .van-picker__confirm,
  709. .toolbar-confirm {
  710. color: #FE2451 !important;
  711. }
  712. .toolbar-top {
  713. display: flex;
  714. align-items: center;
  715. justify-content: space-between;
  716. }
  717. .select-school {
  718. .van-cell {
  719. padding: 16px 20px;
  720. font-size: 16px;
  721. --cell-line-height: 21px!important;
  722. .van-icon-arrow {
  723. color: #BBBBBB;
  724. // font-weight: 600;
  725. }
  726. }
  727. }
  728. .searchList {
  729. .icon-search {
  730. width: 16px;
  731. height: 16px;
  732. margin: auto 5px auto auto;
  733. }
  734. .van-search {
  735. margin: 0 13px 0 !important;
  736. padding: 0 !important;
  737. height: 32px !important;
  738. background: #F6F6F6 !important;
  739. border-radius: 18px !important;
  740. border: 1px solid #FFFFFF !important;
  741. --cell-line-height: 24px!important;
  742. }
  743. .van-search__content {
  744. border-top-left-radius: 35rpx !important;
  745. border-bottom-left-radius: 35rpx !important;
  746. }
  747. .van-cell {
  748. font-size: 13px !important;
  749. }
  750. .searchBtn {
  751. width: 56px;
  752. line-height: 27px !important;
  753. padding: 0 !important;
  754. text-align: center;
  755. background: linear-gradient(270deg, #FF204B 0%, #FE5B71 100%);
  756. font-weight: 500;
  757. font-size: 14px;
  758. color: #FFFFFF;
  759. line-height: 20px;
  760. border-radius: 20px;
  761. margin-right: 3px;
  762. }
  763. }
  764. .van-action-sheet__description {
  765. font-size: 16px !important;
  766. color: #777777 !important;
  767. line-height: 22px !important;
  768. padding: 28px 0 !important;
  769. margin: 0 13px !important;
  770. }
  771. .van-action-sheet__cancel {
  772. font-size: 16px!important;
  773. line-height: 22px!important;
  774. }
  775. .one-gender,
  776. .two-gender {
  777. font-weight: 600;
  778. padding: 12px 0 !important;
  779. font-size: 16px !important;
  780. margin: 0 20px 8px !important;
  781. width: calc(100% - 40px) !important;
  782. color: #000000 !important;
  783. line-height: 22px !important;
  784. }
  785. .one-gender {
  786. margin-top: 24rpx !important;
  787. }
  788. .two-gender {
  789. margin-bottom: 24rpx !important;
  790. }
  791. .van-action-sheet__gap {
  792. height: 2rpx !important;
  793. margin: 0 40rpx !important;
  794. }
  795. .cancel-gender {
  796. font-weight: 400 !important;
  797. color: #AAAAAA !important;
  798. }
  799. .van-picker-column__item--selected {
  800. font-weight: 600;
  801. font-size: 16px;
  802. color: #000 !important;
  803. }
  804. .empty-box {
  805. // padding-top: 64rpx;
  806. // padding-bottom: 70rpx;
  807. height: 264px !important;
  808. display: flex;
  809. flex-direction: column;
  810. justify-content: center;
  811. align-items: center;
  812. box-sizing: border-box;
  813. text-align: center;
  814. font-size: 16px;
  815. font-family: PingFangSC-Regular, PingFang SC;
  816. font-weight: 400;
  817. color: #999999;
  818. position: relative;
  819. .empty_loading {
  820. align-items: center;
  821. background-color: var(--picker-loading-mask-color, hsla(0, 0%, 100%, .9));
  822. bottom: 0;
  823. display: flex;
  824. justify-content: center;
  825. left: 0;
  826. position: absolute;
  827. right: 0;
  828. top: 0;
  829. z-index: 4;
  830. }
  831. image {
  832. // width: 364rpx;
  833. height: 95px !important;
  834. }
  835. .empty-text {
  836. font-size: 14px;
  837. color: #777777;
  838. line-height: 20px;
  839. text-align: center;
  840. padding-top: 18px;
  841. }
  842. }