时空网前端
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.

2372 lines
28 KiB

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