index.less 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946
  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. image {
  262. position: absolute;
  263. top: -14rpx;
  264. right: -14rpx;
  265. width: 56rpx;
  266. height: 28rpx;
  267. display: block;
  268. z-index: 1;
  269. }
  270. }
  271. }
  272. .goodsSection {
  273. // margin-bottom: 156rpx;
  274. padding-bottom: 154rpx;
  275. }
  276. .goodsIntro {
  277. background: #FFFFFF;
  278. border-radius: 20rpx;
  279. overflow: hidden;
  280. margin: 16rpx 16rpx 8rpx;
  281. .title {
  282. font-weight: 600;
  283. font-size: 32rpx;
  284. color: #131415;
  285. line-height: 44rpx;
  286. padding: 28rpx 24rpx;
  287. }
  288. .images {
  289. image {
  290. display: block;
  291. width: 100%;
  292. }
  293. .img1 {
  294. height: 1128rpx;
  295. }
  296. .img2 {
  297. height: 1810rpx
  298. }
  299. .img3 {
  300. height: 1336rpx;
  301. }
  302. .img4 {
  303. height: 1750rpx;
  304. }
  305. }
  306. }
  307. .bottom-section {
  308. position: fixed;
  309. bottom: 0;
  310. left: 0;
  311. width: 100%;
  312. background-color: #FFFFFF;
  313. box-shadow: inset 0rpx 2rpx 0rpx 0rpx #F0F0F0;
  314. padding: 20rpx 32rpx 58rpx 32rpx;
  315. display: flex;
  316. align-items: center;
  317. box-sizing: border-box;
  318. justify-content: space-around;
  319. .orders {
  320. display: flex;
  321. align-items: center;
  322. margin-right: 40rpx;
  323. padding: 8rpx 0 16rpx;
  324. &.active {
  325. text {
  326. color: #131415;
  327. }
  328. }
  329. image {
  330. width: 44rpx;
  331. height: 44rpx;
  332. }
  333. text {
  334. padding-left: 16rpx;
  335. font-weight: 500;
  336. font-size: 28rpx;
  337. color: #AAAAAA;
  338. line-height: 44rpx;
  339. text-align: center;
  340. }
  341. }
  342. .btnSection {
  343. flex: 1 auto;
  344. button {
  345. width: 100%;
  346. line-height: 88rpx;
  347. background: linear-gradient(270deg, #FF204B 0%, #FE5B71 100%);
  348. border-radius: 44rpx;
  349. font-weight: 500;
  350. font-size: 32rpx;
  351. color: #FFFFFF;
  352. padding-top: 0;
  353. padding-bottom: 0;
  354. &[disabled][type=primary] {
  355. opacity: 0.7;
  356. }
  357. }
  358. }
  359. }
  360. // .van-overlay, .van-transition {
  361. // // pointer-events: all !important;
  362. // }
  363. // 'demo-text-1', 'demo-text-2', 'demo-text-3'
  364. .popup-section {
  365. max-height: 86vh;
  366. display: flex;
  367. flex-direction: column;
  368. .popup-container {
  369. // position: fixed;
  370. // bottom: 0;
  371. // left: 0;
  372. // right: 0;
  373. // z-index: 10;
  374. width: 100%;
  375. background: #FFFFFF;
  376. border-radius: 32rpx 32rpx 0rpx 0rpx;
  377. // padding: 40rpx 0 0;
  378. box-sizing: border-box;
  379. // flex: 1;
  380. max-height: 86vh;
  381. .popup-scroll {
  382. overflow-x: hidden;
  383. overflow-y: scroll;
  384. border-radius: 32rpx 32rpx 0rpx 0rpx;
  385. flex: 1 auto;
  386. }
  387. .top-vip-img {
  388. width: 100%;
  389. }
  390. .goodsInfo {
  391. padding: 0 40rpx 48rpx;
  392. }
  393. }
  394. .addBuyer {
  395. margin: 40rpx 40rpx;
  396. background: #F6F6F6;
  397. border-radius: 20rpx;
  398. display: flex;
  399. align-items: center;
  400. justify-content: space-between;
  401. padding: 28rpx 24rpx;
  402. .icon-man {
  403. width: 28rpx;
  404. height: 36rpx;
  405. margin-right: 16rpx;
  406. flex-shrink: 1;
  407. }
  408. .addBuyer-left {
  409. display: flex;
  410. flex: 1;
  411. .info {
  412. flex: 1;
  413. }
  414. }
  415. .users {
  416. font-weight: 600;
  417. font-size: 28rpx;
  418. color: #131415;
  419. line-height: 40rpx;
  420. text {
  421. padding-right: 24rpx;
  422. }
  423. }
  424. .address {
  425. padding-top: 12rpx;
  426. font-size: 24rpx;
  427. color: rgba(19, 20, 21, 0.4);
  428. line-height: 34rpx;
  429. word-break: break-all;
  430. }
  431. .arrow-right {
  432. width: 32rpx;
  433. height: 32rpx;
  434. flex-shrink: 1;
  435. }
  436. }
  437. .iconClose {
  438. position: absolute;
  439. right: 0;
  440. top: 0;
  441. z-index: 1;
  442. padding: 24rpx;
  443. width: 44rpx;
  444. height: 44rpx;
  445. }
  446. .product-section {
  447. display: flex;
  448. padding-bottom: 60rpx;
  449. .product-img {
  450. width: 160rpx;
  451. height: 160rpx;
  452. flex-shrink: 0;
  453. margin-right: 32rpx;
  454. border-radius: 6px;
  455. overflow: hidden;
  456. image {
  457. width: 100%;
  458. height: 100%;
  459. }
  460. }
  461. .product-left {
  462. display: flex;
  463. align-items: flex-start;
  464. .currentPrice {
  465. font-weight: bold;
  466. color: #FE2451;
  467. font-family: DINAlternate, DINAlternate;
  468. .stuff {
  469. padding-right: 2rpx;
  470. font-size: 36rpx;
  471. }
  472. .priceZ {
  473. font-size: 60rpx;
  474. }
  475. .priceF {
  476. font-size: 36rpx;
  477. }
  478. }
  479. .originPrice {
  480. padding-left: 16rpx;
  481. font-size: 32rpx;
  482. color: #AAAAAA;
  483. line-height: 44rpx;
  484. text-decoration: line-through;
  485. padding-top: 32rpx;
  486. }
  487. }
  488. }
  489. .goodsInfo {
  490. flex-direction: column;
  491. align-items: flex-start;
  492. padding-bottom: 90rpx;
  493. .desc {
  494. font-size: 28rpx;
  495. color: #131415;
  496. line-height: 40rpx;
  497. text {
  498. padding-left: 8rpx;
  499. font-size: 28rpx;
  500. color: #AAAAAA;
  501. line-height: 40rpx;
  502. }
  503. }
  504. }
  505. button {
  506. width: 100%;
  507. line-height: 88rpx;
  508. background: linear-gradient(270deg, #FF204B 0%, #FE5B71 100%);
  509. border-radius: 44rpx;
  510. font-weight: 500;
  511. font-size: 32rpx;
  512. color: #FFFFFF;
  513. padding-top: 0;
  514. padding-bottom: 0;
  515. }
  516. }
  517. .popupBottom {
  518. position: fixed;
  519. bottom: 0;
  520. left: 0;
  521. right: 0;
  522. background: #ffffff;
  523. border-top: 2rpx solid #F0F0F0;
  524. padding: 0 32rpx 58rpx;
  525. }
  526. .current-item {
  527. font-size: 24rpx;
  528. color: #999999;
  529. line-height: 40rpx;
  530. padding: 12rpx 12rpx 20rpx;
  531. .current-select-text {
  532. padding-top: 10rpx;
  533. font-size: 26rpx;
  534. line-height: 36rpx;
  535. }
  536. text {
  537. color: #ff0047;
  538. // font-weight: bold;
  539. }
  540. font-family: DINAlternate,
  541. DINAlternate;
  542. .current-top {
  543. display: flex;
  544. align-items: flex-end;
  545. line-height: 42rpx;
  546. }
  547. .line {
  548. color: #D2D2D2;
  549. padding: 0 12rpx;
  550. }
  551. .prices {
  552. display: flex;
  553. align-items: flex-end;
  554. padding-left: 8rpx;
  555. font-weight: bold;
  556. }
  557. .stuff {
  558. padding-right: 2rpx;
  559. font-size: 36rpx;
  560. }
  561. .priceZ {
  562. font-size: 60rpx;
  563. line-height: 1;
  564. }
  565. .priceF {
  566. font-size: 36rpx;
  567. }
  568. }
  569. /* components/buyerInformation/index.wxss */
  570. .icon-close-pop {
  571. position: absolute;
  572. z-index: 2;
  573. top: 28rpx;
  574. left: 20rpx;
  575. padding: 20rpx;
  576. width: 36rpx;
  577. height: 36rpx;
  578. }
  579. .container-pop {
  580. background: linear-gradient(180deg, #FFDEE7 0%, #FFFFFF 12%, #FFFFFF 100%);
  581. border-radius: 32rpx 32rpx 0rpx 0rpx;
  582. height: 86vh;
  583. display: flex;
  584. flex-direction: column;
  585. }
  586. .pop-address-title {
  587. position: relative;
  588. z-index: 1;
  589. text-align: center;
  590. padding-top: 40rpx;
  591. padding-bottom: 20rpx;
  592. font-weight: 600;
  593. font-size: 36rpx;
  594. color: #131415;
  595. line-height: 50rpx;
  596. }
  597. .section {
  598. margin: 24rpx 0;
  599. // background: linear-gradient(180deg, #E3F9FF 0%, #FFFFFF 9%, #FFFFFF 100%);
  600. border-radius: 18rpx;
  601. overflow-x: hidden;
  602. overflow-y: auto;
  603. flex: 1 auto;
  604. .section-content {
  605. // background: linear-gradient(180deg, #E3F9FF 0%, #FFFFFF 9%, #FFFFFF 100%);
  606. border-radius: 12rpx;
  607. overflow: hidden;
  608. }
  609. .section-title {
  610. width: 236rpx;
  611. height: 46rpx;
  612. margin: 20rpx 0 18rpx 28rpx;
  613. }
  614. .van-cell {
  615. padding: 40rpx !important;
  616. font-size: 30rpx !important;
  617. line-height: 42rpx;
  618. background-color: transparent !important;
  619. .van-field__label {
  620. color: #666666;
  621. }
  622. .van-icon-arrow {
  623. color: #BBBBBB;
  624. // font-weight: 600;
  625. }
  626. }
  627. // .gender-section {
  628. // display: flex;
  629. // .gender-item {
  630. // margin-left: 24rpx;
  631. // background: rgba(28, 172, 241, 0.11);
  632. // border-radius: 12rpx;
  633. // font-weight: 500;
  634. // font-size: 28rpx;
  635. // color: #1CACF1;
  636. // width: 104rpx;
  637. // line-height: 48rpx;
  638. // text-align: center;
  639. // &.active {
  640. // background: #1CACF1;
  641. // color: #FFFFFF;
  642. // }
  643. // }
  644. // }
  645. }
  646. .pop-btn-group {
  647. padding: 24rpx 32rpx 58rpx;
  648. .submit-btn {
  649. width: 100% !important;
  650. margin: 0 !important;
  651. padding: 0 !important;
  652. line-height: 88rpx;
  653. background: linear-gradient(270deg, #FF204B 0%, #FE5B71 100%);
  654. border-radius: 88rpx;
  655. font-weight: 500;
  656. font-size: 32rpx;
  657. color: #fff;
  658. }
  659. }
  660. .van-picker__toolbar,
  661. .toolbar-top {
  662. margin: 0 40rpx !important;
  663. padding: 0 14rpx !important;
  664. border-bottom: 2rpx solid #F2F2F2;
  665. height: auto !important;
  666. line-height: normal !important;
  667. }
  668. .van-picker__cancel,
  669. .van-picker__confirm,
  670. .toolbar-cancel,
  671. toolbar-confirm {
  672. font-size: 32rpx !important;
  673. padding: 28rpx 0 !important;
  674. color: #777777 !important;
  675. }
  676. .van-picker__confirm,
  677. .toolbar-confirm {
  678. color: #FE2451 !important;
  679. }
  680. .toolbar-top {
  681. display: flex;
  682. align-items: center;
  683. justify-content: space-between;
  684. }
  685. .select-school {
  686. .van-cell {
  687. padding: 32rpx 40rpx;
  688. font-size: 32rpx;
  689. .van-icon-arrow {
  690. color: #BBBBBB;
  691. // font-weight: 600;
  692. }
  693. }
  694. }
  695. .searchList {
  696. .icon-search {
  697. width: 32rpx;
  698. height: 32rpx;
  699. margin: auto 10rpx auto auto;
  700. }
  701. .van-search {
  702. margin: 0 26rpx 0 !important;
  703. padding: 0 !important;
  704. height: 70rpx !important;
  705. background: #F6F6F6 !important;
  706. border-radius: 35rpx !important;
  707. border: 1rpx solid #FFFFFF !important;
  708. }
  709. .van-search__content {
  710. border-top-left-radius: 35rpx !important;
  711. border-bottom-left-radius: 35rpx !important;
  712. }
  713. .van-cell {
  714. font-size: 26rpx !important;
  715. }
  716. .searchBtn {
  717. width: 112rpx;
  718. line-height: 54rpx !important;
  719. padding: 0 !important;
  720. text-align: center;
  721. background: linear-gradient(270deg, #FF204B 0%, #FE5B71 100%);
  722. font-weight: 500;
  723. font-size: 28rpx;
  724. color: #FFFFFF;
  725. line-height: 40rpx;
  726. border-radius: 40rpx;
  727. margin-right: 6rpx;
  728. }
  729. }
  730. .van-action-sheet__description {
  731. font-size: 32rpx !important;
  732. color: #777777 !important;
  733. line-height: 44rpx !important;
  734. padding: 28 0rpx !important;
  735. margin: 0 26rpx !important;
  736. }
  737. .one-gender,
  738. .two-gender {
  739. font-weight: 600;
  740. padding: 24rpx 0 !important;
  741. font-size: 32rpx !important;
  742. margin: 0 40rpx 16rpx !important;
  743. width: calc(100% - 80rpx) !important;
  744. color: #000000 !important;
  745. line-height: 44rpx !important;
  746. }
  747. .one-gender {
  748. margin-top: 24rpx !important;
  749. }
  750. .two-gender {
  751. margin-bottom: 24rpx !important;
  752. }
  753. .van-action-sheet__gap {
  754. height: 2rpx !important;
  755. margin: 0 40rpx !important;
  756. }
  757. .cancel-gender {
  758. font-weight: 400 !important;
  759. color: #AAAAAA !important;
  760. }
  761. .van-picker-column__item--selected {
  762. font-weight: 600;
  763. font-size: 32rpx;
  764. color: #000 !important;
  765. }
  766. .empty-box {
  767. padding-top: 44rpx;
  768. padding-bottom: 48rpx;
  769. box-sizing: border-box;
  770. text-align: center;
  771. font-size: 32rpx;
  772. font-family: PingFangSC-Regular, PingFang SC;
  773. font-weight: 400;
  774. color: #999999;
  775. position: relative;
  776. .empty_loading {
  777. align-items: center;
  778. background-color: var(--picker-loading-mask-color, hsla(0, 0%, 100%, .9));
  779. bottom: 0;
  780. display: flex;
  781. justify-content: center;
  782. left: 0;
  783. position: absolute;
  784. right: 0;
  785. top: 0;
  786. z-index: 4;
  787. }
  788. image {
  789. width: 364rpx;
  790. height: 190rpx;
  791. }
  792. .empty-text {
  793. font-size: 28rpx;
  794. color: #777777;
  795. line-height: 40rpx;
  796. text-align: center;
  797. padding-top: 36rpx;
  798. }
  799. }