index.less 16 KB

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