自主项目,食堂系统,前端uniapp
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

2280 lines
26 KiB

5 years ago
5 years ago
5 years ago
5 years ago
  1. /* 公共的 */
  2. /* 常用的 */
  3. .lf-line-through {
  4. text-decoration: line-through;
  5. }
  6. .lf-w-100 {
  7. width: 100%;
  8. }
  9. .lf-h-100 {
  10. height: 100%;
  11. }
  12. .lf-h-maxcontent{
  13. height: max-content;
  14. }
  15. .lf-flex {
  16. display: flex;
  17. align-items: center;
  18. }
  19. .lf-flex-1 {
  20. flex: 1;
  21. }
  22. .lf-flex-wrap {
  23. flex-wrap: wrap;
  24. }
  25. .lf-row-between {
  26. display: flex;
  27. align-items: center;
  28. justify-content: space-between;
  29. }
  30. .lf-row-round {
  31. display: flex;
  32. align-items: center;
  33. justify-content: space-around;
  34. }
  35. .lf-row-center {
  36. display: flex;
  37. align-items: center;
  38. justify-content: center;
  39. }
  40. .lf-row-left {
  41. display: flex;
  42. align-items: center;
  43. justify-content: left;
  44. }
  45. .lf-row-right {
  46. display: flex;
  47. align-items: center;
  48. justify-content: right;
  49. }
  50. .lf-row-flex-end{
  51. display: flex;
  52. align-items: center;
  53. justify-content: flex-end;
  54. }
  55. .lf-flex-column {
  56. display: flex;
  57. flex-direction: column;
  58. }
  59. .lf-flex-wrap {
  60. display: flex;
  61. flex-wrap: wrap;
  62. }
  63. .lf-text-vertical{
  64. vertical-align: middle;
  65. }
  66. .lf-line-1{
  67. overflow: hidden;
  68. white-space: nowrap;
  69. text-overflow: ellipsis;
  70. }
  71. .lf-line-2 {
  72. display: -webkit-box;
  73. overflow: hidden;
  74. text-overflow: ellipsis;
  75. -webkit-line-clamp: 2;
  76. -webkit-box-orient: vertical;
  77. }
  78. .lf-line-3 {
  79. display: -webkit-box;
  80. overflow: hidden;
  81. text-overflow: ellipsis;
  82. -webkit-line-clamp: 3;
  83. -webkit-box-orient: vertical;
  84. }
  85. .lf-line-4 {
  86. display: -webkit-box;
  87. overflow: hidden;
  88. text-overflow: ellipsis;
  89. -webkit-line-clamp: 4;
  90. -webkit-box-orient: vertical;
  91. }
  92. .lf-font-24 {
  93. font-size: 24rpx !important;
  94. }
  95. .lf-font-25 {
  96. font-size: 25rpx !important;
  97. }
  98. .lf-font-26 {
  99. font-size: 26rpx !important;
  100. }
  101. .lf-font-27 {
  102. font-size: 27rpx !important;
  103. }
  104. .lf-font-28 {
  105. font-size: 28rpx !important;
  106. }
  107. .lf-font-29 {
  108. font-size: 29rpx !important;
  109. }
  110. .lf-font-30 {
  111. font-size: 30rpx !important;
  112. }
  113. .lf-font-31 {
  114. font-size: 31rpx !important;
  115. }
  116. .lf-font-32 {
  117. font-size: 32rpx !important;
  118. }
  119. .lf-font-33 {
  120. font-size: 33rpx !important;
  121. }
  122. .lf-font-34 {
  123. font-size: 34rpx !important;
  124. }
  125. .lf-font-35 {
  126. font-size: 35rpx !important;
  127. }
  128. .lf-font-36 {
  129. font-size: 36rpx !important;
  130. }
  131. .lf-font-37 {
  132. font-size: 37rpx !important;
  133. }
  134. .lf-font-38 {
  135. font-size: 38rpx !important;
  136. }
  137. .lf-font-39 {
  138. font-size: 39rpx !important;
  139. }
  140. .lf-font-40 {
  141. font-size: 40rpx !important;
  142. }
  143. .lf-font-41 {
  144. font-size: 41rpx !important;
  145. }
  146. .lf-font-42 {
  147. font-size: 42rpx !important;
  148. }
  149. .lf-font-43 {
  150. font-size: 43rpx !important;
  151. }
  152. .lf-font-44 {
  153. font-size: 44rpx !important;
  154. }
  155. .lf-font-45 {
  156. font-size: 45rpx !important;
  157. }
  158. .lf-font-46 {
  159. font-size: 46rpx !important;
  160. }
  161. .lf-font-47 {
  162. font-size: 47rpx !important;
  163. }
  164. .lf-font-48 {
  165. font-size: 48rpx !important;
  166. }
  167. .lf-font-49 {
  168. font-size: 49rpx !important;
  169. }
  170. .lf-font-50 {
  171. font-size: 50rpx !important;
  172. }
  173. .lf-font-60 {
  174. font-size: 60rpx !important;
  175. }
  176. .lf-font-70 {
  177. font-size: 70rpx !important;
  178. }
  179. .lf-font-80 {
  180. font-size: 80rpx !important;
  181. }
  182. .lf-font-bold {
  183. font-weight: bold;
  184. }
  185. .lf-line-through{
  186. text-decoration: line-through;
  187. }
  188. .lf-opacity{
  189. opacity: .5;
  190. }
  191. .lf-text-left {
  192. text-align: left !important;
  193. }
  194. .lf-text-center {
  195. text-align: center !important;
  196. }
  197. .lf-text-right {
  198. text-align: right !important;
  199. }
  200. .lf-border {
  201. border: 1px solid #EEEEEE;
  202. }
  203. .lf-border-radius {
  204. border-radius: 8rpx;
  205. }
  206. .lf-border-top {
  207. border-top: 1px solid #EEEEEE;
  208. }
  209. .lf-border-right {
  210. border-right: 1px solid #EEEEEE;
  211. }
  212. .lf-border-bottom {
  213. border-bottom: 1px solid #EEEEEE;
  214. }
  215. .lf-border-left {
  216. border-left: 1px solid #EEEEEE;
  217. }
  218. .lf-border-box{
  219. box-sizing: border-box;
  220. }
  221. .lf-m-1 {
  222. margin: 1rpx !important;
  223. }
  224. .lf-p-1 {
  225. padding: 1rpx !important;
  226. }
  227. .lf-m-2 {
  228. margin: 2rpx !important;
  229. }
  230. .lf-p-2 {
  231. padding: 2rpx !important;
  232. }
  233. .lf-m-3 {
  234. margin: 3rpx !important;
  235. }
  236. .lf-p-3 {
  237. padding: 3rpx !important;
  238. }
  239. .lf-m-4 {
  240. margin: 4rpx !important;
  241. }
  242. .lf-p-4 {
  243. padding: 4rpx !important;
  244. }
  245. .lf-m-5 {
  246. margin: 5rpx !important;
  247. }
  248. .lf-p-5 {
  249. padding: 5rpx !important;
  250. }
  251. .lf-m-6 {
  252. margin: 6rpx !important;
  253. }
  254. .lf-p-6 {
  255. padding: 6rpx !important;
  256. }
  257. .lf-m-7 {
  258. margin: 7rpx !important;
  259. }
  260. .lf-p-7 {
  261. padding: 7rpx !important;
  262. }
  263. .lf-m-8 {
  264. margin: 8rpx !important;
  265. }
  266. .lf-p-8 {
  267. padding: 8rpx !important;
  268. }
  269. .lf-m-9 {
  270. margin: 9rpx !important;
  271. }
  272. .lf-p-9 {
  273. padding: 9rpx !important;
  274. }
  275. .lf-m-10 {
  276. margin: 10rpx !important;
  277. }
  278. .lf-p-10 {
  279. padding: 10rpx !important;
  280. }
  281. .lf-m-11 {
  282. margin: 11rpx !important;
  283. }
  284. .lf-p-11 {
  285. padding: 11rpx !important;
  286. }
  287. .lf-m-12 {
  288. margin: 12rpx !important;
  289. }
  290. .lf-p-12 {
  291. padding: 12rpx !important;
  292. }
  293. .lf-m-13 {
  294. margin: 13rpx !important;
  295. }
  296. .lf-p-13 {
  297. padding: 13rpx !important;
  298. }
  299. .lf-m-14 {
  300. margin: 14rpx !important;
  301. }
  302. .lf-p-14 {
  303. padding: 14rpx !important;
  304. }
  305. .lf-m-15 {
  306. margin: 15rpx !important;
  307. }
  308. .lf-p-15 {
  309. padding: 15rpx !important;
  310. }
  311. .lf-m-16 {
  312. margin: 16rpx !important;
  313. }
  314. .lf-p-16 {
  315. padding: 16rpx !important;
  316. }
  317. .lf-m-17 {
  318. margin: 17rpx !important;
  319. }
  320. .lf-p-17 {
  321. padding: 17rpx !important;
  322. }
  323. .lf-m-18 {
  324. margin: 18rpx !important;
  325. }
  326. .lf-p-18 {
  327. padding: 18rpx !important;
  328. }
  329. .lf-m-19 {
  330. margin: 19rpx !important;
  331. }
  332. .lf-p-19 {
  333. padding: 19rpx !important;
  334. }
  335. .lf-m-20 {
  336. margin: 20rpx !important;
  337. }
  338. .lf-p-20 {
  339. padding: 20rpx !important;
  340. }
  341. .lf-m-21 {
  342. margin: 21rpx !important;
  343. }
  344. .lf-p-21 {
  345. padding: 21rpx !important;
  346. }
  347. .lf-m-22 {
  348. margin: 22rpx !important;
  349. }
  350. .lf-p-22 {
  351. padding: 22rpx !important;
  352. }
  353. .lf-m-23 {
  354. margin: 23rpx !important;
  355. }
  356. .lf-p-23 {
  357. padding: 23rpx !important;
  358. }
  359. .lf-m-24 {
  360. margin: 24rpx !important;
  361. }
  362. .lf-p-24 {
  363. padding: 24rpx !important;
  364. }
  365. .lf-m-25 {
  366. margin: 25rpx !important;
  367. }
  368. .lf-p-25 {
  369. padding: 25rpx !important;
  370. }
  371. .lf-m-26 {
  372. margin: 26rpx !important;
  373. }
  374. .lf-p-26 {
  375. padding: 26rpx !important;
  376. }
  377. .lf-m-27 {
  378. margin: 27rpx !important;
  379. }
  380. .lf-p-27 {
  381. padding: 27rpx !important;
  382. }
  383. .lf-m-28 {
  384. margin: 28rpx !important;
  385. }
  386. .lf-p-28 {
  387. padding: 28rpx !important;
  388. }
  389. .lf-m-29 {
  390. margin: 29rpx !important;
  391. }
  392. .lf-p-29 {
  393. padding: 29rpx !important;
  394. }
  395. .lf-m-30 {
  396. margin: 30rpx !important;
  397. }
  398. .lf-p-30 {
  399. padding: 30rpx !important;
  400. }
  401. .lf-m-31 {
  402. margin: 31rpx !important;
  403. }
  404. .lf-p-31 {
  405. padding: 31rpx !important;
  406. }
  407. .lf-m-32 {
  408. margin: 32rpx !important;
  409. }
  410. .lf-p-32 {
  411. padding: 32rpx !important;
  412. }
  413. .lf-m-33 {
  414. margin: 33rpx !important;
  415. }
  416. .lf-p-33 {
  417. padding: 33rpx !important;
  418. }
  419. .lf-m-34 {
  420. margin: 34rpx !important;
  421. }
  422. .lf-p-34 {
  423. padding: 34rpx !important;
  424. }
  425. .lf-m-35 {
  426. margin: 35rpx !important;
  427. }
  428. .lf-p-35 {
  429. padding: 35rpx !important;
  430. }
  431. .lf-m-36 {
  432. margin: 36rpx !important;
  433. }
  434. .lf-p-36 {
  435. padding: 36rpx !important;
  436. }
  437. .lf-m-37 {
  438. margin: 37rpx !important;
  439. }
  440. .lf-p-37 {
  441. padding: 37rpx !important;
  442. }
  443. .lf-m-38 {
  444. margin: 38rpx !important;
  445. }
  446. .lf-p-38 {
  447. padding: 38rpx !important;
  448. }
  449. .lf-m-39 {
  450. margin: 39rpx !important;
  451. }
  452. .lf-p-39 {
  453. padding: 39rpx !important;
  454. }
  455. .lf-m-40 {
  456. margin: 40rpx !important;
  457. }
  458. .lf-p-40 {
  459. padding: 40rpx !important;
  460. }
  461. .lf-m-41 {
  462. margin: 41rpx !important;
  463. }
  464. .lf-p-41 {
  465. padding: 41rpx !important;
  466. }
  467. .lf-m-42 {
  468. margin: 42rpx !important;
  469. }
  470. .lf-p-42 {
  471. padding: 42rpx !important;
  472. }
  473. .lf-m-43 {
  474. margin: 43rpx !important;
  475. }
  476. .lf-p-43 {
  477. padding: 43rpx !important;
  478. }
  479. .lf-m-44 {
  480. margin: 44rpx !important;
  481. }
  482. .lf-p-44 {
  483. padding: 44rpx !important;
  484. }
  485. .lf-m-45 {
  486. margin: 45rpx !important;
  487. }
  488. .lf-p-45 {
  489. padding: 45rpx !important;
  490. }
  491. .lf-m-46 {
  492. margin: 46rpx !important;
  493. }
  494. .lf-p-46 {
  495. padding: 46rpx !important;
  496. }
  497. .lf-m-47 {
  498. margin: 47rpx !important;
  499. }
  500. .lf-p-47 {
  501. padding: 47rpx !important;
  502. }
  503. .lf-m-48 {
  504. margin: 48rpx !important;
  505. }
  506. .lf-p-48 {
  507. padding: 48rpx !important;
  508. }
  509. .lf-m-49 {
  510. margin: 49rpx !important;
  511. }
  512. .lf-p-49 {
  513. padding: 49rpx !important;
  514. }
  515. .lf-m-50 {
  516. margin: 50rpx !important;
  517. }
  518. .lf-p-50 {
  519. padding: 50rpx !important;
  520. }
  521. .lf-m-t-1 {
  522. margin-top: 1rpx !important;
  523. }
  524. .lf-p-t-1 {
  525. padding-top: 1rpx !important;
  526. }
  527. .lf-m-r-1 {
  528. margin-right: 1rpx !important;
  529. }
  530. .lf-p-r-1 {
  531. padding-right: 1rpx !important;
  532. }
  533. .lf-m-b-1 {
  534. margin-bottom: 1rpx !important;
  535. }
  536. .lf-p-b-1 {
  537. padding-bottom: 1rpx !important;
  538. }
  539. .lf-m-l-1 {
  540. margin-left: 1rpx !important;
  541. }
  542. .lf-p-l-1 {
  543. padding-left: 1rpx !important;
  544. }
  545. .lf-m-t-2 {
  546. margin-top: 2rpx !important;
  547. }
  548. .lf-p-t-2 {
  549. padding-top: 2rpx !important;
  550. }
  551. .lf-m-r-2 {
  552. margin-right: 2rpx !important;
  553. }
  554. .lf-p-r-2 {
  555. padding-right: 2rpx !important;
  556. }
  557. .lf-m-b-2 {
  558. margin-bottom: 2rpx !important;
  559. }
  560. .lf-p-b-2 {
  561. padding-bottom: 2rpx !important;
  562. }
  563. .lf-m-l-2 {
  564. margin-left: 2rpx !important;
  565. }
  566. .lf-p-l-2 {
  567. padding-left: 2rpx !important;
  568. }
  569. .lf-m-t-3 {
  570. margin-top: 3rpx !important;
  571. }
  572. .lf-p-t-3 {
  573. padding-top: 3rpx !important;
  574. }
  575. .lf-m-r-3 {
  576. margin-right: 3rpx !important;
  577. }
  578. .lf-p-r-3 {
  579. padding-right: 3rpx !important;
  580. }
  581. .lf-m-b-3 {
  582. margin-bottom: 3rpx !important;
  583. }
  584. .lf-p-b-3 {
  585. padding-bottom: 3rpx !important;
  586. }
  587. .lf-m-l-3 {
  588. margin-left: 3rpx !important;
  589. }
  590. .lf-p-l-3 {
  591. padding-left: 3rpx !important;
  592. }
  593. .lf-m-t-4 {
  594. margin-top: 4rpx !important;
  595. }
  596. .lf-p-t-4 {
  597. padding-top: 4rpx !important;
  598. }
  599. .lf-m-r-4 {
  600. margin-right: 4rpx !important;
  601. }
  602. .lf-p-r-4 {
  603. padding-right: 4rpx !important;
  604. }
  605. .lf-m-b-4 {
  606. margin-bottom: 4rpx !important;
  607. }
  608. .lf-p-b-4 {
  609. padding-bottom: 4rpx !important;
  610. }
  611. .lf-m-l-4 {
  612. margin-left: 4rpx !important;
  613. }
  614. .lf-p-l-4 {
  615. padding-left: 4rpx !important;
  616. }
  617. .lf-m-t-5 {
  618. margin-top: 5rpx !important;
  619. }
  620. .lf-p-t-5 {
  621. padding-top: 5rpx !important;
  622. }
  623. .lf-m-r-5 {
  624. margin-right: 5rpx !important;
  625. }
  626. .lf-p-r-5 {
  627. padding-right: 5rpx !important;
  628. }
  629. .lf-m-b-5 {
  630. margin-bottom: 5rpx !important;
  631. }
  632. .lf-p-b-5 {
  633. padding-bottom: 5rpx !important;
  634. }
  635. .lf-m-l-5 {
  636. margin-left: 5rpx !important;
  637. }
  638. .lf-p-l-5 {
  639. padding-left: 5rpx !important;
  640. }
  641. .lf-m-t-6 {
  642. margin-top: 6rpx !important;
  643. }
  644. .lf-p-t-6 {
  645. padding-top: 6rpx !important;
  646. }
  647. .lf-m-r-6 {
  648. margin-right: 6rpx !important;
  649. }
  650. .lf-p-r-6 {
  651. padding-right: 6rpx !important;
  652. }
  653. .lf-m-b-6 {
  654. margin-bottom: 6rpx !important;
  655. }
  656. .lf-p-b-6 {
  657. padding-bottom: 6rpx !important;
  658. }
  659. .lf-m-l-6 {
  660. margin-left: 6rpx !important;
  661. }
  662. .lf-p-l-6 {
  663. padding-left: 6rpx !important;
  664. }
  665. .lf-m-t-7 {
  666. margin-top: 7rpx !important;
  667. }
  668. .lf-p-t-7 {
  669. padding-top: 7rpx !important;
  670. }
  671. .lf-m-r-7 {
  672. margin-right: 7rpx !important;
  673. }
  674. .lf-p-r-7 {
  675. padding-right: 7rpx !important;
  676. }
  677. .lf-m-b-7 {
  678. margin-bottom: 7rpx !important;
  679. }
  680. .lf-p-b-7 {
  681. padding-bottom: 7rpx !important;
  682. }
  683. .lf-m-l-7 {
  684. margin-left: 7rpx !important;
  685. }
  686. .lf-p-l-7 {
  687. padding-left: 7rpx !important;
  688. }
  689. .lf-m-t-8 {
  690. margin-top: 8rpx !important;
  691. }
  692. .lf-p-t-8 {
  693. padding-top: 8rpx !important;
  694. }
  695. .lf-m-r-8 {
  696. margin-right: 8rpx !important;
  697. }
  698. .lf-p-r-8 {
  699. padding-right: 8rpx !important;
  700. }
  701. .lf-m-b-8 {
  702. margin-bottom: 8rpx !important;
  703. }
  704. .lf-p-b-8 {
  705. padding-bottom: 8rpx !important;
  706. }
  707. .lf-m-l-8 {
  708. margin-left: 8rpx !important;
  709. }
  710. .lf-p-l-8 {
  711. padding-left: 8rpx !important;
  712. }
  713. .lf-m-t-9 {
  714. margin-top: 9rpx !important;
  715. }
  716. .lf-p-t-9 {
  717. padding-top: 9rpx !important;
  718. }
  719. .lf-m-r-9 {
  720. margin-right: 9rpx !important;
  721. }
  722. .lf-p-r-9 {
  723. padding-right: 9rpx !important;
  724. }
  725. .lf-m-b-9 {
  726. margin-bottom: 9rpx !important;
  727. }
  728. .lf-p-b-9 {
  729. padding-bottom: 9rpx !important;
  730. }
  731. .lf-m-l-9 {
  732. margin-left: 9rpx !important;
  733. }
  734. .lf-p-l-9 {
  735. padding-left: 9rpx !important;
  736. }
  737. .lf-m-t-10 {
  738. margin-top: 10rpx !important;
  739. }
  740. .lf-p-t-10 {
  741. padding-top: 10rpx !important;
  742. }
  743. .lf-m-r-10 {
  744. margin-right: 10rpx !important;
  745. }
  746. .lf-p-r-10 {
  747. padding-right: 10rpx !important;
  748. }
  749. .lf-m-b-10 {
  750. margin-bottom: 10rpx !important;
  751. }
  752. .lf-p-b-10 {
  753. padding-bottom: 10rpx !important;
  754. }
  755. .lf-m-l-10 {
  756. margin-left: 10rpx !important;
  757. }
  758. .lf-p-l-10 {
  759. padding-left: 10rpx !important;
  760. }
  761. .lf-m-t-11 {
  762. margin-top: 11rpx !important;
  763. }
  764. .lf-p-t-11 {
  765. padding-top: 11rpx !important;
  766. }
  767. .lf-m-r-11 {
  768. margin-right: 11rpx !important;
  769. }
  770. .lf-p-r-11 {
  771. padding-right: 11rpx !important;
  772. }
  773. .lf-m-b-11 {
  774. margin-bottom: 11rpx !important;
  775. }
  776. .lf-p-b-11 {
  777. padding-bottom: 11rpx !important;
  778. }
  779. .lf-m-l-11 {
  780. margin-left: 11rpx !important;
  781. }
  782. .lf-p-l-11 {
  783. padding-left: 11rpx !important;
  784. }
  785. .lf-m-t-12 {
  786. margin-top: 12rpx !important;
  787. }
  788. .lf-p-t-12 {
  789. padding-top: 12rpx !important;
  790. }
  791. .lf-m-r-12 {
  792. margin-right: 12rpx !important;
  793. }
  794. .lf-p-r-12 {
  795. padding-right: 12rpx !important;
  796. }
  797. .lf-m-b-12 {
  798. margin-bottom: 12rpx !important;
  799. }
  800. .lf-p-b-12 {
  801. padding-bottom: 12rpx !important;
  802. }
  803. .lf-m-l-12 {
  804. margin-left: 12rpx !important;
  805. }
  806. .lf-p-l-12 {
  807. padding-left: 12rpx !important;
  808. }
  809. .lf-m-t-13 {
  810. margin-top: 13rpx !important;
  811. }
  812. .lf-p-t-13 {
  813. padding-top: 13rpx !important;
  814. }
  815. .lf-m-r-13 {
  816. margin-right: 13rpx !important;
  817. }
  818. .lf-p-r-13 {
  819. padding-right: 13rpx !important;
  820. }
  821. .lf-m-b-13 {
  822. margin-bottom: 13rpx !important;
  823. }
  824. .lf-p-b-13 {
  825. padding-bottom: 13rpx !important;
  826. }
  827. .lf-m-l-13 {
  828. margin-left: 13rpx !important;
  829. }
  830. .lf-p-l-13 {
  831. padding-left: 13rpx !important;
  832. }
  833. .lf-m-t-14 {
  834. margin-top: 14rpx !important;
  835. }
  836. .lf-p-t-14 {
  837. padding-top: 14rpx !important;
  838. }
  839. .lf-m-r-14 {
  840. margin-right: 14rpx !important;
  841. }
  842. .lf-p-r-14 {
  843. padding-right: 14rpx !important;
  844. }
  845. .lf-m-b-14 {
  846. margin-bottom: 14rpx !important;
  847. }
  848. .lf-p-b-14 {
  849. padding-bottom: 14rpx !important;
  850. }
  851. .lf-m-l-14 {
  852. margin-left: 14rpx !important;
  853. }
  854. .lf-p-l-14 {
  855. padding-left: 14rpx !important;
  856. }
  857. .lf-m-t-15 {
  858. margin-top: 15rpx !important;
  859. }
  860. .lf-p-t-15 {
  861. padding-top: 15rpx !important;
  862. }
  863. .lf-m-r-15 {
  864. margin-right: 15rpx !important;
  865. }
  866. .lf-p-r-15 {
  867. padding-right: 15rpx !important;
  868. }
  869. .lf-m-b-15 {
  870. margin-bottom: 15rpx !important;
  871. }
  872. .lf-p-b-15 {
  873. padding-bottom: 15rpx !important;
  874. }
  875. .lf-m-l-15 {
  876. margin-left: 15rpx !important;
  877. }
  878. .lf-p-l-15 {
  879. padding-left: 15rpx !important;
  880. }
  881. .lf-m-t-16 {
  882. margin-top: 16rpx !important;
  883. }
  884. .lf-p-t-16 {
  885. padding-top: 16rpx !important;
  886. }
  887. .lf-m-r-16 {
  888. margin-right: 16rpx !important;
  889. }
  890. .lf-p-r-16 {
  891. padding-right: 16rpx !important;
  892. }
  893. .lf-m-b-16 {
  894. margin-bottom: 16rpx !important;
  895. }
  896. .lf-p-b-16 {
  897. padding-bottom: 16rpx !important;
  898. }
  899. .lf-m-l-16 {
  900. margin-left: 16rpx !important;
  901. }
  902. .lf-p-l-16 {
  903. padding-left: 16rpx !important;
  904. }
  905. .lf-m-t-17 {
  906. margin-top: 17rpx !important;
  907. }
  908. .lf-p-t-17 {
  909. padding-top: 17rpx !important;
  910. }
  911. .lf-m-r-17 {
  912. margin-right: 17rpx !important;
  913. }
  914. .lf-p-r-17 {
  915. padding-right: 17rpx !important;
  916. }
  917. .lf-m-b-17 {
  918. margin-bottom: 17rpx !important;
  919. }
  920. .lf-p-b-17 {
  921. padding-bottom: 17rpx !important;
  922. }
  923. .lf-m-l-17 {
  924. margin-left: 17rpx !important;
  925. }
  926. .lf-p-l-17 {
  927. padding-left: 17rpx !important;
  928. }
  929. .lf-m-t-18 {
  930. margin-top: 18rpx !important;
  931. }
  932. .lf-p-t-18 {
  933. padding-top: 18rpx !important;
  934. }
  935. .lf-m-r-18 {
  936. margin-right: 18rpx !important;
  937. }
  938. .lf-p-r-18 {
  939. padding-right: 18rpx !important;
  940. }
  941. .lf-m-b-18 {
  942. margin-bottom: 18rpx !important;
  943. }
  944. .lf-p-b-18 {
  945. padding-bottom: 18rpx !important;
  946. }
  947. .lf-m-l-18 {
  948. margin-left: 18rpx !important;
  949. }
  950. .lf-p-l-18 {
  951. padding-left: 18rpx !important;
  952. }
  953. .lf-m-t-19 {
  954. margin-top: 19rpx !important;
  955. }
  956. .lf-p-t-19 {
  957. padding-top: 19rpx !important;
  958. }
  959. .lf-m-r-19 {
  960. margin-right: 19rpx !important;
  961. }
  962. .lf-p-r-19 {
  963. padding-right: 19rpx !important;
  964. }
  965. .lf-m-b-19 {
  966. margin-bottom: 19rpx !important;
  967. }
  968. .lf-p-b-19 {
  969. padding-bottom: 19rpx !important;
  970. }
  971. .lf-m-l-19 {
  972. margin-left: 19rpx !important;
  973. }
  974. .lf-p-l-19 {
  975. padding-left: 19rpx !important;
  976. }
  977. .lf-m-t-20 {
  978. margin-top: 20rpx !important;
  979. }
  980. .lf-p-t-20 {
  981. padding-top: 20rpx !important;
  982. }
  983. .lf-m-r-20 {
  984. margin-right: 20rpx !important;
  985. }
  986. .lf-p-r-20 {
  987. padding-right: 20rpx !important;
  988. }
  989. .lf-m-b-20 {
  990. margin-bottom: 20rpx !important;
  991. }
  992. .lf-p-b-20 {
  993. padding-bottom: 20rpx !important;
  994. }
  995. .lf-m-l-20 {
  996. margin-left: 20rpx !important;
  997. }
  998. .lf-p-l-20 {
  999. padding-left: 20rpx !important;
  1000. }
  1001. .lf-m-t-21 {
  1002. margin-top: 21rpx !important;
  1003. }
  1004. .lf-p-t-21 {
  1005. padding-top: 21rpx !important;
  1006. }
  1007. .lf-m-r-21 {
  1008. margin-right: 21rpx !important;
  1009. }
  1010. .lf-p-r-21 {
  1011. padding-right: 21rpx !important;
  1012. }
  1013. .lf-m-b-21 {
  1014. margin-bottom: 21rpx !important;
  1015. }
  1016. .lf-p-b-21 {
  1017. padding-bottom: 21rpx !important;
  1018. }
  1019. .lf-m-l-21 {
  1020. margin-left: 21rpx !important;
  1021. }
  1022. .lf-p-l-21 {
  1023. padding-left: 21rpx !important;
  1024. }
  1025. .lf-m-t-22 {
  1026. margin-top: 22rpx !important;
  1027. }
  1028. .lf-p-t-22 {
  1029. padding-top: 22rpx !important;
  1030. }
  1031. .lf-m-r-22 {
  1032. margin-right: 22rpx !important;
  1033. }
  1034. .lf-p-r-22 {
  1035. padding-right: 22rpx !important;
  1036. }
  1037. .lf-m-b-22 {
  1038. margin-bottom: 22rpx !important;
  1039. }
  1040. .lf-p-b-22 {
  1041. padding-bottom: 22rpx !important;
  1042. }
  1043. .lf-m-l-22 {
  1044. margin-left: 22rpx !important;
  1045. }
  1046. .lf-p-l-22 {
  1047. padding-left: 22rpx !important;
  1048. }
  1049. .lf-m-t-23 {
  1050. margin-top: 23rpx !important;
  1051. }
  1052. .lf-p-t-23 {
  1053. padding-top: 23rpx !important;
  1054. }
  1055. .lf-m-r-23 {
  1056. margin-right: 23rpx !important;
  1057. }
  1058. .lf-p-r-23 {
  1059. padding-right: 23rpx !important;
  1060. }
  1061. .lf-m-b-23 {
  1062. margin-bottom: 23rpx !important;
  1063. }
  1064. .lf-p-b-23 {
  1065. padding-bottom: 23rpx !important;
  1066. }
  1067. .lf-m-l-23 {
  1068. margin-left: 23rpx !important;
  1069. }
  1070. .lf-p-l-23 {
  1071. padding-left: 23rpx !important;
  1072. }
  1073. .lf-m-t-24 {
  1074. margin-top: 24rpx !important;
  1075. }
  1076. .lf-p-t-24 {
  1077. padding-top: 24rpx !important;
  1078. }
  1079. .lf-m-r-24 {
  1080. margin-right: 24rpx !important;
  1081. }
  1082. .lf-p-r-24 {
  1083. padding-right: 24rpx !important;
  1084. }
  1085. .lf-m-b-24 {
  1086. margin-bottom: 24rpx !important;
  1087. }
  1088. .lf-p-b-24 {
  1089. padding-bottom: 24rpx !important;
  1090. }
  1091. .lf-m-l-24 {
  1092. margin-left: 24rpx !important;
  1093. }
  1094. .lf-p-l-24 {
  1095. padding-left: 24rpx !important;
  1096. }
  1097. .lf-m-t-25 {
  1098. margin-top: 25rpx !important;
  1099. }
  1100. .lf-p-t-25 {
  1101. padding-top: 25rpx !important;
  1102. }
  1103. .lf-m-r-25 {
  1104. margin-right: 25rpx !important;
  1105. }
  1106. .lf-p-r-25 {
  1107. padding-right: 25rpx !important;
  1108. }
  1109. .lf-m-b-25 {
  1110. margin-bottom: 25rpx !important;
  1111. }
  1112. .lf-p-b-25 {
  1113. padding-bottom: 25rpx !important;
  1114. }
  1115. .lf-m-l-25 {
  1116. margin-left: 25rpx !important;
  1117. }
  1118. .lf-p-l-25 {
  1119. padding-left: 25rpx !important;
  1120. }
  1121. .lf-m-t-26 {
  1122. margin-top: 26rpx !important;
  1123. }
  1124. .lf-p-t-26 {
  1125. padding-top: 26rpx !important;
  1126. }
  1127. .lf-m-r-26 {
  1128. margin-right: 26rpx !important;
  1129. }
  1130. .lf-p-r-26 {
  1131. padding-right: 26rpx !important;
  1132. }
  1133. .lf-m-b-26 {
  1134. margin-bottom: 26rpx !important;
  1135. }
  1136. .lf-p-b-26 {
  1137. padding-bottom: 26rpx !important;
  1138. }
  1139. .lf-m-l-26 {
  1140. margin-left: 26rpx !important;
  1141. }
  1142. .lf-p-l-26 {
  1143. padding-left: 26rpx !important;
  1144. }
  1145. .lf-m-t-27 {
  1146. margin-top: 27rpx !important;
  1147. }
  1148. .lf-p-t-27 {
  1149. padding-top: 27rpx !important;
  1150. }
  1151. .lf-m-r-27 {
  1152. margin-right: 27rpx !important;
  1153. }
  1154. .lf-p-r-27 {
  1155. padding-right: 27rpx !important;
  1156. }
  1157. .lf-m-b-27 {
  1158. margin-bottom: 27rpx !important;
  1159. }
  1160. .lf-p-b-27 {
  1161. padding-bottom: 27rpx !important;
  1162. }
  1163. .lf-m-l-27 {
  1164. margin-left: 27rpx !important;
  1165. }
  1166. .lf-p-l-27 {
  1167. padding-left: 27rpx !important;
  1168. }
  1169. .lf-m-t-28 {
  1170. margin-top: 28rpx !important;
  1171. }
  1172. .lf-p-t-28 {
  1173. padding-top: 28rpx !important;
  1174. }
  1175. .lf-m-r-28 {
  1176. margin-right: 28rpx !important;
  1177. }
  1178. .lf-p-r-28 {
  1179. padding-right: 28rpx !important;
  1180. }
  1181. .lf-m-b-28 {
  1182. margin-bottom: 28rpx !important;
  1183. }
  1184. .lf-p-b-28 {
  1185. padding-bottom: 28rpx !important;
  1186. }
  1187. .lf-m-l-28 {
  1188. margin-left: 28rpx !important;
  1189. }
  1190. .lf-p-l-28 {
  1191. padding-left: 28rpx !important;
  1192. }
  1193. .lf-m-t-29 {
  1194. margin-top: 29rpx !important;
  1195. }
  1196. .lf-p-t-29 {
  1197. padding-top: 29rpx !important;
  1198. }
  1199. .lf-m-r-29 {
  1200. margin-right: 29rpx !important;
  1201. }
  1202. .lf-p-r-29 {
  1203. padding-right: 29rpx !important;
  1204. }
  1205. .lf-m-b-29 {
  1206. margin-bottom: 29rpx !important;
  1207. }
  1208. .lf-p-b-29 {
  1209. padding-bottom: 29rpx !important;
  1210. }
  1211. .lf-m-l-29 {
  1212. margin-left: 29rpx !important;
  1213. }
  1214. .lf-p-l-29 {
  1215. padding-left: 29rpx !important;
  1216. }
  1217. .lf-m-t-30 {
  1218. margin-top: 30rpx !important;
  1219. }
  1220. .lf-p-t-30 {
  1221. padding-top: 30rpx !important;
  1222. }
  1223. .lf-m-r-30 {
  1224. margin-right: 30rpx !important;
  1225. }
  1226. .lf-p-r-30 {
  1227. padding-right: 30rpx !important;
  1228. }
  1229. .lf-m-b-30 {
  1230. margin-bottom: 30rpx !important;
  1231. }
  1232. .lf-p-b-30 {
  1233. padding-bottom: 30rpx !important;
  1234. }
  1235. .lf-m-l-30 {
  1236. margin-left: 30rpx !important;
  1237. }
  1238. .lf-p-l-30 {
  1239. padding-left: 30rpx !important;
  1240. }
  1241. .lf-m-t-31 {
  1242. margin-top: 31rpx !important;
  1243. }
  1244. .lf-p-t-31 {
  1245. padding-top: 31rpx !important;
  1246. }
  1247. .lf-m-r-31 {
  1248. margin-right: 31rpx !important;
  1249. }
  1250. .lf-p-r-31 {
  1251. padding-right: 31rpx !important;
  1252. }
  1253. .lf-m-b-31 {
  1254. margin-bottom: 31rpx !important;
  1255. }
  1256. .lf-p-b-31 {
  1257. padding-bottom: 31rpx !important;
  1258. }
  1259. .lf-m-l-31 {
  1260. margin-left: 31rpx !important;
  1261. }
  1262. .lf-p-l-31 {
  1263. padding-left: 31rpx !important;
  1264. }
  1265. .lf-m-t-32 {
  1266. margin-top: 32rpx !important;
  1267. }
  1268. .lf-p-t-32 {
  1269. padding-top: 32rpx !important;
  1270. }
  1271. .lf-m-r-32 {
  1272. margin-right: 32rpx !important;
  1273. }
  1274. .lf-p-r-32 {
  1275. padding-right: 32rpx !important;
  1276. }
  1277. .lf-m-b-32 {
  1278. margin-bottom: 32rpx !important;
  1279. }
  1280. .lf-p-b-32 {
  1281. padding-bottom: 32rpx !important;
  1282. }
  1283. .lf-m-l-32 {
  1284. margin-left: 32rpx !important;
  1285. }
  1286. .lf-p-l-32 {
  1287. padding-left: 32rpx !important;
  1288. }
  1289. .lf-m-t-33 {
  1290. margin-top: 33rpx !important;
  1291. }
  1292. .lf-p-t-33 {
  1293. padding-top: 33rpx !important;
  1294. }
  1295. .lf-m-r-33 {
  1296. margin-right: 33rpx !important;
  1297. }
  1298. .lf-p-r-33 {
  1299. padding-right: 33rpx !important;
  1300. }
  1301. .lf-m-b-33 {
  1302. margin-bottom: 33rpx !important;
  1303. }
  1304. .lf-p-b-33 {
  1305. padding-bottom: 33rpx !important;
  1306. }
  1307. .lf-m-l-33 {
  1308. margin-left: 33rpx !important;
  1309. }
  1310. .lf-p-l-33 {
  1311. padding-left: 33rpx !important;
  1312. }
  1313. .lf-m-t-34 {
  1314. margin-top: 34rpx !important;
  1315. }
  1316. .lf-p-t-34 {
  1317. padding-top: 34rpx !important;
  1318. }
  1319. .lf-m-r-34 {
  1320. margin-right: 34rpx !important;
  1321. }
  1322. .lf-p-r-34 {
  1323. padding-right: 34rpx !important;
  1324. }
  1325. .lf-m-b-34 {
  1326. margin-bottom: 34rpx !important;
  1327. }
  1328. .lf-p-b-34 {
  1329. padding-bottom: 34rpx !important;
  1330. }
  1331. .lf-m-l-34 {
  1332. margin-left: 34rpx !important;
  1333. }
  1334. .lf-p-l-34 {
  1335. padding-left: 34rpx !important;
  1336. }
  1337. .lf-m-t-35 {
  1338. margin-top: 35rpx !important;
  1339. }
  1340. .lf-p-t-35 {
  1341. padding-top: 35rpx !important;
  1342. }
  1343. .lf-m-r-35 {
  1344. margin-right: 35rpx !important;
  1345. }
  1346. .lf-p-r-35 {
  1347. padding-right: 35rpx !important;
  1348. }
  1349. .lf-m-b-35 {
  1350. margin-bottom: 35rpx !important;
  1351. }
  1352. .lf-p-b-35 {
  1353. padding-bottom: 35rpx !important;
  1354. }
  1355. .lf-m-l-35 {
  1356. margin-left: 35rpx !important;
  1357. }
  1358. .lf-p-l-35 {
  1359. padding-left: 35rpx !important;
  1360. }
  1361. .lf-m-t-36 {
  1362. margin-top: 36rpx !important;
  1363. }
  1364. .lf-p-t-36 {
  1365. padding-top: 36rpx !important;
  1366. }
  1367. .lf-m-r-36 {
  1368. margin-right: 36rpx !important;
  1369. }
  1370. .lf-p-r-36 {
  1371. padding-right: 36rpx !important;
  1372. }
  1373. .lf-m-b-36 {
  1374. margin-bottom: 36rpx !important;
  1375. }
  1376. .lf-p-b-36 {
  1377. padding-bottom: 36rpx !important;
  1378. }
  1379. .lf-m-l-36 {
  1380. margin-left: 36rpx !important;
  1381. }
  1382. .lf-p-l-36 {
  1383. padding-left: 36rpx !important;
  1384. }
  1385. .lf-m-t-37 {
  1386. margin-top: 37rpx !important;
  1387. }
  1388. .lf-p-t-37 {
  1389. padding-top: 37rpx !important;
  1390. }
  1391. .lf-m-r-37 {
  1392. margin-right: 37rpx !important;
  1393. }
  1394. .lf-p-r-37 {
  1395. padding-right: 37rpx !important;
  1396. }
  1397. .lf-m-b-37 {
  1398. margin-bottom: 37rpx !important;
  1399. }
  1400. .lf-p-b-37 {
  1401. padding-bottom: 37rpx !important;
  1402. }
  1403. .lf-m-l-37 {
  1404. margin-left: 37rpx !important;
  1405. }
  1406. .lf-p-l-37 {
  1407. padding-left: 37rpx !important;
  1408. }
  1409. .lf-m-t-38 {
  1410. margin-top: 38rpx !important;
  1411. }
  1412. .lf-p-t-38 {
  1413. padding-top: 38rpx !important;
  1414. }
  1415. .lf-m-r-38 {
  1416. margin-right: 38rpx !important;
  1417. }
  1418. .lf-p-r-38 {
  1419. padding-right: 38rpx !important;
  1420. }
  1421. .lf-m-b-38 {
  1422. margin-bottom: 38rpx !important;
  1423. }
  1424. .lf-p-b-38 {
  1425. padding-bottom: 38rpx !important;
  1426. }
  1427. .lf-m-l-38 {
  1428. margin-left: 38rpx !important;
  1429. }
  1430. .lf-p-l-38 {
  1431. padding-left: 38rpx !important;
  1432. }
  1433. .lf-m-t-39 {
  1434. margin-top: 39rpx !important;
  1435. }
  1436. .lf-p-t-39 {
  1437. padding-top: 39rpx !important;
  1438. }
  1439. .lf-m-r-39 {
  1440. margin-right: 39rpx !important;
  1441. }
  1442. .lf-p-r-39 {
  1443. padding-right: 39rpx !important;
  1444. }
  1445. .lf-m-b-39 {
  1446. margin-bottom: 39rpx !important;
  1447. }
  1448. .lf-p-b-39 {
  1449. padding-bottom: 39rpx !important;
  1450. }
  1451. .lf-m-l-39 {
  1452. margin-left: 39rpx !important;
  1453. }
  1454. .lf-p-l-39 {
  1455. padding-left: 39rpx !important;
  1456. }
  1457. .lf-m-t-40 {
  1458. margin-top: 40rpx !important;
  1459. }
  1460. .lf-p-t-40 {
  1461. padding-top: 40rpx !important;
  1462. }
  1463. .lf-m-r-40 {
  1464. margin-right: 40rpx !important;
  1465. }
  1466. .lf-p-r-40 {
  1467. padding-right: 40rpx !important;
  1468. }
  1469. .lf-m-b-40 {
  1470. margin-bottom: 40rpx !important;
  1471. }
  1472. .lf-p-b-40 {
  1473. padding-bottom: 40rpx !important;
  1474. }
  1475. .lf-m-l-40 {
  1476. margin-left: 40rpx !important;
  1477. }
  1478. .lf-p-l-40 {
  1479. padding-left: 40rpx !important;
  1480. }
  1481. .lf-m-t-41 {
  1482. margin-top: 41rpx !important;
  1483. }
  1484. .lf-p-t-41 {
  1485. padding-top: 41rpx !important;
  1486. }
  1487. .lf-m-r-41 {
  1488. margin-right: 41rpx !important;
  1489. }
  1490. .lf-p-r-41 {
  1491. padding-right: 41rpx !important;
  1492. }
  1493. .lf-m-b-41 {
  1494. margin-bottom: 41rpx !important;
  1495. }
  1496. .lf-p-b-41 {
  1497. padding-bottom: 41rpx !important;
  1498. }
  1499. .lf-m-l-41 {
  1500. margin-left: 41rpx !important;
  1501. }
  1502. .lf-p-l-41 {
  1503. padding-left: 41rpx !important;
  1504. }
  1505. .lf-m-t-42 {
  1506. margin-top: 42rpx !important;
  1507. }
  1508. .lf-p-t-42 {
  1509. padding-top: 42rpx !important;
  1510. }
  1511. .lf-m-r-42 {
  1512. margin-right: 42rpx !important;
  1513. }
  1514. .lf-p-r-42 {
  1515. padding-right: 42rpx !important;
  1516. }
  1517. .lf-m-b-42 {
  1518. margin-bottom: 42rpx !important;
  1519. }
  1520. .lf-p-b-42 {
  1521. padding-bottom: 42rpx !important;
  1522. }
  1523. .lf-m-l-42 {
  1524. margin-left: 42rpx !important;
  1525. }
  1526. .lf-p-l-42 {
  1527. padding-left: 42rpx !important;
  1528. }
  1529. .lf-m-t-43 {
  1530. margin-top: 43rpx !important;
  1531. }
  1532. .lf-p-t-43 {
  1533. padding-top: 43rpx !important;
  1534. }
  1535. .lf-m-r-43 {
  1536. margin-right: 43rpx !important;
  1537. }
  1538. .lf-p-r-43 {
  1539. padding-right: 43rpx !important;
  1540. }
  1541. .lf-m-b-43 {
  1542. margin-bottom: 43rpx !important;
  1543. }
  1544. .lf-p-b-43 {
  1545. padding-bottom: 43rpx !important;
  1546. }
  1547. .lf-m-l-43 {
  1548. margin-left: 43rpx !important;
  1549. }
  1550. .lf-p-l-43 {
  1551. padding-left: 43rpx !important;
  1552. }
  1553. .lf-m-t-44 {
  1554. margin-top: 44rpx !important;
  1555. }
  1556. .lf-p-t-44 {
  1557. padding-top: 44rpx !important;
  1558. }
  1559. .lf-m-r-44 {
  1560. margin-right: 44rpx !important;
  1561. }
  1562. .lf-p-r-44 {
  1563. padding-right: 44rpx !important;
  1564. }
  1565. .lf-m-b-44 {
  1566. margin-bottom: 44rpx !important;
  1567. }
  1568. .lf-p-b-44 {
  1569. padding-bottom: 44rpx !important;
  1570. }
  1571. .lf-m-l-44 {
  1572. margin-left: 44rpx !important;
  1573. }
  1574. .lf-p-l-44 {
  1575. padding-left: 44rpx !important;
  1576. }
  1577. .lf-m-t-45 {
  1578. margin-top: 45rpx !important;
  1579. }
  1580. .lf-p-t-45 {
  1581. padding-top: 45rpx !important;
  1582. }
  1583. .lf-m-r-45 {
  1584. margin-right: 45rpx !important;
  1585. }
  1586. .lf-p-r-45 {
  1587. padding-right: 45rpx !important;
  1588. }
  1589. .lf-m-b-45 {
  1590. margin-bottom: 45rpx !important;
  1591. }
  1592. .lf-p-b-45 {
  1593. padding-bottom: 45rpx !important;
  1594. }
  1595. .lf-m-l-45 {
  1596. margin-left: 45rpx !important;
  1597. }
  1598. .lf-p-l-45 {
  1599. padding-left: 45rpx !important;
  1600. }
  1601. .lf-m-t-46 {
  1602. margin-top: 46rpx !important;
  1603. }
  1604. .lf-p-t-46 {
  1605. padding-top: 46rpx !important;
  1606. }
  1607. .lf-m-r-46 {
  1608. margin-right: 46rpx !important;
  1609. }
  1610. .lf-p-r-46 {
  1611. padding-right: 46rpx !important;
  1612. }
  1613. .lf-m-b-46 {
  1614. margin-bottom: 46rpx !important;
  1615. }
  1616. .lf-p-b-46 {
  1617. padding-bottom: 46rpx !important;
  1618. }
  1619. .lf-m-l-46 {
  1620. margin-left: 46rpx !important;
  1621. }
  1622. .lf-p-l-46 {
  1623. padding-left: 46rpx !important;
  1624. }
  1625. .lf-m-t-47 {
  1626. margin-top: 47rpx !important;
  1627. }
  1628. .lf-p-t-47 {
  1629. padding-top: 47rpx !important;
  1630. }
  1631. .lf-m-r-47 {
  1632. margin-right: 47rpx !important;
  1633. }
  1634. .lf-p-r-47 {
  1635. padding-right: 47rpx !important;
  1636. }
  1637. .lf-m-b-47 {
  1638. margin-bottom: 47rpx !important;
  1639. }
  1640. .lf-p-b-47 {
  1641. padding-bottom: 47rpx !important;
  1642. }
  1643. .lf-m-l-47 {
  1644. margin-left: 47rpx !important;
  1645. }
  1646. .lf-p-l-47 {
  1647. padding-left: 47rpx !important;
  1648. }
  1649. .lf-m-t-48 {
  1650. margin-top: 48rpx !important;
  1651. }
  1652. .lf-p-t-48 {
  1653. padding-top: 48rpx !important;
  1654. }
  1655. .lf-m-r-48 {
  1656. margin-right: 48rpx !important;
  1657. }
  1658. .lf-p-r-48 {
  1659. padding-right: 48rpx !important;
  1660. }
  1661. .lf-m-b-48 {
  1662. margin-bottom: 48rpx !important;
  1663. }
  1664. .lf-p-b-48 {
  1665. padding-bottom: 48rpx !important;
  1666. }
  1667. .lf-m-l-48 {
  1668. margin-left: 48rpx !important;
  1669. }
  1670. .lf-p-l-48 {
  1671. padding-left: 48rpx !important;
  1672. }
  1673. .lf-m-t-49 {
  1674. margin-top: 49rpx !important;
  1675. }
  1676. .lf-p-t-49 {
  1677. padding-top: 49rpx !important;
  1678. }
  1679. .lf-m-r-49 {
  1680. margin-right: 49rpx !important;
  1681. }
  1682. .lf-p-r-49 {
  1683. padding-right: 49rpx !important;
  1684. }
  1685. .lf-m-b-49 {
  1686. margin-bottom: 49rpx !important;
  1687. }
  1688. .lf-p-b-49 {
  1689. padding-bottom: 49rpx !important;
  1690. }
  1691. .lf-m-l-49 {
  1692. margin-left: 49rpx !important;
  1693. }
  1694. .lf-p-l-49 {
  1695. padding-left: 49rpx !important;
  1696. }
  1697. .lf-m-t-50 {
  1698. margin-top: 50rpx !important;
  1699. }
  1700. .lf-p-t-50 {
  1701. padding-top: 50rpx !important;
  1702. }
  1703. .lf-m-r-50 {
  1704. margin-right: 50rpx !important;
  1705. }
  1706. .lf-p-r-50 {
  1707. padding-right: 50rpx !important;
  1708. }
  1709. .lf-m-b-50 {
  1710. margin-bottom: 50rpx !important;
  1711. }
  1712. .lf-p-b-50 {
  1713. padding-bottom: 50rpx !important;
  1714. }
  1715. .lf-m-l-50 {
  1716. margin-left: 50rpx !important;
  1717. }
  1718. .lf-p-l-50 {
  1719. padding-left: 50rpx !important;
  1720. }