金诚优选前端代码
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.

2270 lines
26 KiB

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