index.less 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939
  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. }
  407. .addBuyer-left {
  408. display: flex;
  409. }
  410. .users {
  411. font-weight: 600;
  412. font-size: 28rpx;
  413. color: #131415;
  414. line-height: 40rpx;
  415. text {
  416. padding-right: 24rpx;
  417. }
  418. }
  419. .address {
  420. padding-top: 12rpx;
  421. font-size: 24rpx;
  422. color: rgba(19, 20, 21, 0.4);
  423. line-height: 34rpx;
  424. }
  425. .arrow-right {
  426. width: 32rpx;
  427. height: 32rpx;
  428. }
  429. }
  430. .iconClose {
  431. position: absolute;
  432. right: 0;
  433. top: 0;
  434. z-index: 1;
  435. padding: 24rpx;
  436. width: 44rpx;
  437. height: 44rpx;
  438. }
  439. .product-section {
  440. display: flex;
  441. padding-bottom: 60rpx;
  442. .product-img {
  443. width: 160rpx;
  444. height: 160rpx;
  445. flex-shrink: 0;
  446. margin-right: 32rpx;
  447. border-radius: 6px;
  448. overflow: hidden;
  449. image {
  450. width: 100%;
  451. height: 100%;
  452. }
  453. }
  454. .product-left {
  455. display: flex;
  456. align-items: flex-start;
  457. .currentPrice {
  458. font-weight: bold;
  459. color: #FE2451;
  460. font-family: DINAlternate, DINAlternate;
  461. .stuff {
  462. padding-right: 2rpx;
  463. font-size: 36rpx;
  464. }
  465. .priceZ {
  466. font-size: 60rpx;
  467. }
  468. .priceF {
  469. font-size: 36rpx;
  470. }
  471. }
  472. .originPrice {
  473. padding-left: 16rpx;
  474. font-size: 32rpx;
  475. color: #AAAAAA;
  476. line-height: 44rpx;
  477. text-decoration: line-through;
  478. padding-top: 32rpx;
  479. }
  480. }
  481. }
  482. .goodsInfo {
  483. flex-direction: column;
  484. align-items: flex-start;
  485. padding-bottom: 90rpx;
  486. .desc {
  487. font-size: 28rpx;
  488. color: #131415;
  489. line-height: 40rpx;
  490. text {
  491. padding-left: 8rpx;
  492. font-size: 28rpx;
  493. color: #AAAAAA;
  494. line-height: 40rpx;
  495. }
  496. }
  497. }
  498. button {
  499. width: 100%;
  500. line-height: 88rpx;
  501. background: linear-gradient(270deg, #FF204B 0%, #FE5B71 100%);
  502. border-radius: 44rpx;
  503. font-weight: 500;
  504. font-size: 32rpx;
  505. color: #FFFFFF;
  506. padding-top: 0;
  507. padding-bottom: 0;
  508. }
  509. }
  510. .popupBottom {
  511. position: fixed;
  512. bottom: 0;
  513. left: 0;
  514. right: 0;
  515. background: #ffffff;
  516. border-top: 2rpx solid #F0F0F0;
  517. padding: 0 32rpx 58rpx;
  518. }
  519. .current-item {
  520. font-size: 24rpx;
  521. color: #999999;
  522. line-height: 40rpx;
  523. padding: 12rpx 12rpx 20rpx;
  524. .current-select-text {
  525. padding-top: 10rpx;
  526. font-size: 26rpx;
  527. line-height: 36rpx;
  528. }
  529. text {
  530. color: #ff0047;
  531. // font-weight: bold;
  532. }
  533. font-family: DINAlternate,
  534. DINAlternate;
  535. .current-top {
  536. display: flex;
  537. align-items: flex-end;
  538. line-height: 42rpx;
  539. }
  540. .line {
  541. color: #D2D2D2;
  542. padding: 0 12rpx;
  543. }
  544. .prices {
  545. display: flex;
  546. align-items: flex-end;
  547. padding-left: 8rpx;
  548. font-weight: bold;
  549. }
  550. .stuff {
  551. padding-right: 2rpx;
  552. font-size: 36rpx;
  553. }
  554. .priceZ {
  555. font-size: 60rpx;
  556. line-height: 1;
  557. }
  558. .priceF {
  559. font-size: 36rpx;
  560. }
  561. }
  562. /* components/buyerInformation/index.wxss */
  563. .icon-close-pop {
  564. position: absolute;
  565. z-index: 2;
  566. top: 28rpx;
  567. left: 20rpx;
  568. padding: 20rpx;
  569. width: 36rpx;
  570. height: 36rpx;
  571. }
  572. .container-pop {
  573. background: linear-gradient(180deg, #FFDEE7 0%, #FFFFFF 12%, #FFFFFF 100%);
  574. border-radius: 32rpx 32rpx 0rpx 0rpx;
  575. height: 86vh;
  576. display: flex;
  577. flex-direction: column;
  578. }
  579. .pop-address-title {
  580. position: relative;
  581. z-index: 1;
  582. text-align: center;
  583. padding-top: 40rpx;
  584. padding-bottom: 20rpx;
  585. font-weight: 600;
  586. font-size: 36rpx;
  587. color: #131415;
  588. line-height: 50rpx;
  589. }
  590. .section {
  591. margin: 24rpx 0;
  592. // background: linear-gradient(180deg, #E3F9FF 0%, #FFFFFF 9%, #FFFFFF 100%);
  593. border-radius: 18rpx;
  594. overflow-x: hidden;
  595. overflow-y: auto;
  596. flex: 1 auto;
  597. .section-content {
  598. // background: linear-gradient(180deg, #E3F9FF 0%, #FFFFFF 9%, #FFFFFF 100%);
  599. border-radius: 12rpx;
  600. overflow: hidden;
  601. }
  602. .section-title {
  603. width: 236rpx;
  604. height: 46rpx;
  605. margin: 20rpx 0 18rpx 28rpx;
  606. }
  607. .van-cell {
  608. padding: 40rpx !important;
  609. font-size: 30rpx !important;
  610. line-height: 42rpx;
  611. background-color: transparent !important;
  612. .van-field__label {
  613. color: #666666;
  614. }
  615. .van-icon-arrow {
  616. color: #BBBBBB;
  617. // font-weight: 600;
  618. }
  619. }
  620. // .gender-section {
  621. // display: flex;
  622. // .gender-item {
  623. // margin-left: 24rpx;
  624. // background: rgba(28, 172, 241, 0.11);
  625. // border-radius: 12rpx;
  626. // font-weight: 500;
  627. // font-size: 28rpx;
  628. // color: #1CACF1;
  629. // width: 104rpx;
  630. // line-height: 48rpx;
  631. // text-align: center;
  632. // &.active {
  633. // background: #1CACF1;
  634. // color: #FFFFFF;
  635. // }
  636. // }
  637. // }
  638. }
  639. .pop-btn-group {
  640. padding: 24rpx 32rpx 58rpx;
  641. .submit-btn {
  642. width: 100% !important;
  643. margin: 0 !important;
  644. padding: 0 !important;
  645. line-height: 88rpx;
  646. background: linear-gradient(270deg, #FF204B 0%, #FE5B71 100%);
  647. border-radius: 88rpx;
  648. font-weight: 500;
  649. font-size: 32rpx;
  650. color: #fff;
  651. }
  652. }
  653. .van-picker__toolbar,
  654. .toolbar-top {
  655. margin: 0 40rpx !important;
  656. padding: 0 14rpx !important;
  657. border-bottom: 2rpx solid #F2F2F2;
  658. height: auto !important;
  659. line-height: normal !important;
  660. }
  661. .van-picker__cancel,
  662. .van-picker__confirm,
  663. .toolbar-cancel,
  664. toolbar-confirm {
  665. font-size: 32rpx !important;
  666. padding: 28rpx 0 !important;
  667. color: #777777 !important;
  668. }
  669. .van-picker__confirm,
  670. .toolbar-confirm {
  671. color: #FE2451 !important;
  672. }
  673. .toolbar-top {
  674. display: flex;
  675. align-items: center;
  676. justify-content: space-between;
  677. }
  678. .select-school {
  679. .van-cell {
  680. padding: 32rpx 40rpx;
  681. font-size: 32rpx;
  682. .van-icon-arrow {
  683. color: #BBBBBB;
  684. // font-weight: 600;
  685. }
  686. }
  687. }
  688. .searchList {
  689. .icon-search {
  690. width: 32rpx;
  691. height: 32rpx;
  692. margin: auto 10rpx auto auto;
  693. }
  694. .van-search {
  695. margin: 0 26rpx 0 !important;
  696. padding: 0 !important;
  697. height: 70rpx !important;
  698. background: #F6F6F6 !important;
  699. border-radius: 35rpx !important;
  700. border: 1rpx solid #FFFFFF !important;
  701. }
  702. .van-search__content {
  703. border-top-left-radius: 35rpx !important;
  704. border-bottom-left-radius: 35rpx !important;
  705. }
  706. .van-cell {
  707. font-size: 26rpx !important;
  708. }
  709. .searchBtn {
  710. width: 112rpx;
  711. line-height: 54rpx !important;
  712. padding: 0 !important;
  713. text-align: center;
  714. background: linear-gradient(270deg, #FF204B 0%, #FE5B71 100%);
  715. font-weight: 500;
  716. font-size: 28rpx;
  717. color: #FFFFFF;
  718. line-height: 40rpx;
  719. border-radius: 40rpx;
  720. margin-right: 6rpx;
  721. }
  722. }
  723. .van-action-sheet__description {
  724. font-size: 32rpx !important;
  725. color: #777777 !important;
  726. line-height: 44rpx !important;
  727. padding: 28 0rpx !important;
  728. margin: 0 26rpx !important;
  729. }
  730. .one-gender,
  731. .two-gender {
  732. font-weight: 600;
  733. padding: 24rpx 0 !important;
  734. font-size: 32rpx !important;
  735. margin: 0 40rpx 16rpx !important;
  736. width: calc(100% - 80rpx) !important;
  737. color: #000000 !important;
  738. line-height: 44rpx !important;
  739. }
  740. .one-gender {
  741. margin-top: 24rpx !important;
  742. }
  743. .two-gender {
  744. margin-bottom: 24rpx !important;
  745. }
  746. .van-action-sheet__gap {
  747. height: 2rpx !important;
  748. margin: 0 40rpx !important;
  749. }
  750. .cancel-gender {
  751. font-weight: 400 !important;
  752. color: #AAAAAA !important;
  753. }
  754. .van-picker-column__item--selected {
  755. font-weight: 600;
  756. font-size: 32rpx;
  757. color: #000 !important;
  758. }
  759. .empty-box {
  760. padding-top: 44rpx;
  761. padding-bottom: 48rpx;
  762. box-sizing: border-box;
  763. text-align: center;
  764. font-size: 32rpx;
  765. font-family: PingFangSC-Regular, PingFang SC;
  766. font-weight: 400;
  767. color: #999999;
  768. position: relative;
  769. .empty_loading {
  770. align-items: center;
  771. background-color: var(--picker-loading-mask-color, hsla(0, 0%, 100%, .9));
  772. bottom: 0;
  773. display: flex;
  774. justify-content: center;
  775. left: 0;
  776. position: absolute;
  777. right: 0;
  778. top: 0;
  779. z-index: 4;
  780. }
  781. image {
  782. width: 364rpx;
  783. height: 190rpx;
  784. }
  785. .empty-text {
  786. font-size: 28rpx;
  787. color: #777777;
  788. line-height: 40rpx;
  789. text-align: center;
  790. padding-top: 36rpx;
  791. }
  792. }