蓝牙控制阀小程序
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.

3318 lines
57 KiB

3 years ago
  1. @charset "UTF-8";
  2. /**
  3. * 这里是uni-app内置的常用样式变量
  4. *
  5. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  6. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  7. *
  8. */
  9. /**
  10. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  11. *
  12. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  13. */
  14. /* 颜色变量 */
  15. /* 行为相关颜色 */
  16. /* 文字基本颜色 */
  17. /* 背景颜色 */
  18. /* 边框颜色 */
  19. /* 尺寸变量 */
  20. /* 文字尺寸 */
  21. /* 图片尺寸 */
  22. /* Border Radius */
  23. /* 水平间距 */
  24. /* 垂直间距 */
  25. /* 透明度 */
  26. /* 文章场景相关 */
  27. /*每个页面公共css */
  28. .u-relative,
  29. .u-rela {
  30. position: relative;
  31. }
  32. .u-absolute,
  33. .u-abso {
  34. position: absolute;
  35. }
  36. image {
  37. display: inline-block;
  38. }
  39. view,
  40. text {
  41. box-sizing: border-box;
  42. }
  43. .u-font-xs {
  44. font-size: 22rpx;
  45. }
  46. .u-font-sm {
  47. font-size: 26rpx;
  48. }
  49. .u-font-md {
  50. font-size: 28rpx;
  51. }
  52. .u-font-lg {
  53. font-size: 30rpx;
  54. }
  55. .u-font-xl {
  56. font-size: 34rpx;
  57. }
  58. .u-flex {
  59. display: -webkit-box;
  60. display: -webkit-flex;
  61. display: flex;
  62. -webkit-box-orient: horizontal;
  63. -webkit-box-direction: normal;
  64. -webkit-flex-direction: row;
  65. flex-direction: row;
  66. -webkit-box-align: center;
  67. -webkit-align-items: center;
  68. align-items: center;
  69. }
  70. .u-flex-wrap {
  71. -webkit-flex-wrap: wrap;
  72. flex-wrap: wrap;
  73. }
  74. .u-flex-nowrap {
  75. -webkit-flex-wrap: nowrap;
  76. flex-wrap: nowrap;
  77. }
  78. .u-col-center {
  79. -webkit-box-align: center;
  80. -webkit-align-items: center;
  81. align-items: center;
  82. }
  83. .u-col-top {
  84. -webkit-box-align: start;
  85. -webkit-align-items: flex-start;
  86. align-items: flex-start;
  87. }
  88. .u-col-bottom {
  89. -webkit-box-align: end;
  90. -webkit-align-items: flex-end;
  91. align-items: flex-end;
  92. }
  93. .u-row-center {
  94. -webkit-box-pack: center;
  95. -webkit-justify-content: center;
  96. justify-content: center;
  97. }
  98. .u-row-left {
  99. -webkit-box-pack: start;
  100. -webkit-justify-content: flex-start;
  101. justify-content: flex-start;
  102. }
  103. .u-row-right {
  104. -webkit-box-pack: end;
  105. -webkit-justify-content: flex-end;
  106. justify-content: flex-end;
  107. }
  108. .u-row-between {
  109. -webkit-box-pack: justify;
  110. -webkit-justify-content: space-between;
  111. justify-content: space-between;
  112. }
  113. .u-row-around {
  114. -webkit-justify-content: space-around;
  115. justify-content: space-around;
  116. }
  117. .u-text-left {
  118. text-align: left;
  119. }
  120. .u-text-center {
  121. text-align: center;
  122. }
  123. .u-text-right {
  124. text-align: right;
  125. }
  126. .u-flex-col {
  127. display: -webkit-box;
  128. display: -webkit-flex;
  129. display: flex;
  130. -webkit-box-orient: vertical;
  131. -webkit-box-direction: normal;
  132. -webkit-flex-direction: column;
  133. flex-direction: column;
  134. }
  135. .u-flex-0 {
  136. -webkit-box-flex: 0;
  137. -webkit-flex: 0;
  138. flex: 0;
  139. }
  140. .u-flex-1 {
  141. -webkit-box-flex: 1;
  142. -webkit-flex: 1;
  143. flex: 1;
  144. }
  145. .u-flex-2 {
  146. -webkit-box-flex: 2;
  147. -webkit-flex: 2;
  148. flex: 2;
  149. }
  150. .u-flex-3 {
  151. -webkit-box-flex: 3;
  152. -webkit-flex: 3;
  153. flex: 3;
  154. }
  155. .u-flex-4 {
  156. -webkit-box-flex: 4;
  157. -webkit-flex: 4;
  158. flex: 4;
  159. }
  160. .u-flex-5 {
  161. -webkit-box-flex: 5;
  162. -webkit-flex: 5;
  163. flex: 5;
  164. }
  165. .u-flex-6 {
  166. -webkit-box-flex: 6;
  167. -webkit-flex: 6;
  168. flex: 6;
  169. }
  170. .u-flex-7 {
  171. -webkit-box-flex: 7;
  172. -webkit-flex: 7;
  173. flex: 7;
  174. }
  175. .u-flex-8 {
  176. -webkit-box-flex: 8;
  177. -webkit-flex: 8;
  178. flex: 8;
  179. }
  180. .u-flex-9 {
  181. -webkit-box-flex: 9;
  182. -webkit-flex: 9;
  183. flex: 9;
  184. }
  185. .u-flex-10 {
  186. -webkit-box-flex: 10;
  187. -webkit-flex: 10;
  188. flex: 10;
  189. }
  190. .u-flex-11 {
  191. -webkit-box-flex: 11;
  192. -webkit-flex: 11;
  193. flex: 11;
  194. }
  195. .u-flex-12 {
  196. -webkit-box-flex: 12;
  197. -webkit-flex: 12;
  198. flex: 12;
  199. }
  200. .u-font-9 {
  201. font-size: 9px;
  202. }
  203. .u-font-10 {
  204. font-size: 10px;
  205. }
  206. .u-font-11 {
  207. font-size: 11px;
  208. }
  209. .u-font-12 {
  210. font-size: 12px;
  211. }
  212. .u-font-13 {
  213. font-size: 13px;
  214. }
  215. .u-font-14 {
  216. font-size: 14px;
  217. }
  218. .u-font-15 {
  219. font-size: 15px;
  220. }
  221. .u-font-16 {
  222. font-size: 16px;
  223. }
  224. .u-font-17 {
  225. font-size: 17px;
  226. }
  227. .u-font-18 {
  228. font-size: 18px;
  229. }
  230. .u-font-19 {
  231. font-size: 19px;
  232. }
  233. .u-font-20 {
  234. font-size: 20rpx;
  235. }
  236. .u-font-21 {
  237. font-size: 21rpx;
  238. }
  239. .u-font-22 {
  240. font-size: 22rpx;
  241. }
  242. .u-font-23 {
  243. font-size: 23rpx;
  244. }
  245. .u-font-24 {
  246. font-size: 24rpx;
  247. }
  248. .u-font-25 {
  249. font-size: 25rpx;
  250. }
  251. .u-font-26 {
  252. font-size: 26rpx;
  253. }
  254. .u-font-27 {
  255. font-size: 27rpx;
  256. }
  257. .u-font-28 {
  258. font-size: 28rpx;
  259. }
  260. .u-font-29 {
  261. font-size: 29rpx;
  262. }
  263. .u-font-30 {
  264. font-size: 30rpx;
  265. }
  266. .u-font-31 {
  267. font-size: 31rpx;
  268. }
  269. .u-font-32 {
  270. font-size: 32rpx;
  271. }
  272. .u-font-33 {
  273. font-size: 33rpx;
  274. }
  275. .u-font-34 {
  276. font-size: 34rpx;
  277. }
  278. .u-font-35 {
  279. font-size: 35rpx;
  280. }
  281. .u-font-36 {
  282. font-size: 36rpx;
  283. }
  284. .u-font-37 {
  285. font-size: 37rpx;
  286. }
  287. .u-font-38 {
  288. font-size: 38rpx;
  289. }
  290. .u-font-39 {
  291. font-size: 39rpx;
  292. }
  293. .u-font-40 {
  294. font-size: 40rpx;
  295. }
  296. .u-margin-0, .u-m-0 {
  297. margin: 0rpx !important;
  298. }
  299. .u-padding-0, .u-p-0 {
  300. padding: 0rpx !important;
  301. }
  302. .u-m-l-0 {
  303. margin-left: 0rpx !important;
  304. }
  305. .u-p-l-0 {
  306. padding-left: 0rpx !important;
  307. }
  308. .u-margin-left-0 {
  309. margin-left: 0rpx !important;
  310. }
  311. .u-padding-left-0 {
  312. padding-left: 0rpx !important;
  313. }
  314. .u-m-t-0 {
  315. margin-top: 0rpx !important;
  316. }
  317. .u-p-t-0 {
  318. padding-top: 0rpx !important;
  319. }
  320. .u-margin-top-0 {
  321. margin-top: 0rpx !important;
  322. }
  323. .u-padding-top-0 {
  324. padding-top: 0rpx !important;
  325. }
  326. .u-m-r-0 {
  327. margin-right: 0rpx !important;
  328. }
  329. .u-p-r-0 {
  330. padding-right: 0rpx !important;
  331. }
  332. .u-margin-right-0 {
  333. margin-right: 0rpx !important;
  334. }
  335. .u-padding-right-0 {
  336. padding-right: 0rpx !important;
  337. }
  338. .u-m-b-0 {
  339. margin-bottom: 0rpx !important;
  340. }
  341. .u-p-b-0 {
  342. padding-bottom: 0rpx !important;
  343. }
  344. .u-margin-bottom-0 {
  345. margin-bottom: 0rpx !important;
  346. }
  347. .u-padding-bottom-0 {
  348. padding-bottom: 0rpx !important;
  349. }
  350. .u-margin-2, .u-m-2 {
  351. margin: 2rpx !important;
  352. }
  353. .u-padding-2, .u-p-2 {
  354. padding: 2rpx !important;
  355. }
  356. .u-m-l-2 {
  357. margin-left: 2rpx !important;
  358. }
  359. .u-p-l-2 {
  360. padding-left: 2rpx !important;
  361. }
  362. .u-margin-left-2 {
  363. margin-left: 2rpx !important;
  364. }
  365. .u-padding-left-2 {
  366. padding-left: 2rpx !important;
  367. }
  368. .u-m-t-2 {
  369. margin-top: 2rpx !important;
  370. }
  371. .u-p-t-2 {
  372. padding-top: 2rpx !important;
  373. }
  374. .u-margin-top-2 {
  375. margin-top: 2rpx !important;
  376. }
  377. .u-padding-top-2 {
  378. padding-top: 2rpx !important;
  379. }
  380. .u-m-r-2 {
  381. margin-right: 2rpx !important;
  382. }
  383. .u-p-r-2 {
  384. padding-right: 2rpx !important;
  385. }
  386. .u-margin-right-2 {
  387. margin-right: 2rpx !important;
  388. }
  389. .u-padding-right-2 {
  390. padding-right: 2rpx !important;
  391. }
  392. .u-m-b-2 {
  393. margin-bottom: 2rpx !important;
  394. }
  395. .u-p-b-2 {
  396. padding-bottom: 2rpx !important;
  397. }
  398. .u-margin-bottom-2 {
  399. margin-bottom: 2rpx !important;
  400. }
  401. .u-padding-bottom-2 {
  402. padding-bottom: 2rpx !important;
  403. }
  404. .u-margin-4, .u-m-4 {
  405. margin: 4rpx !important;
  406. }
  407. .u-padding-4, .u-p-4 {
  408. padding: 4rpx !important;
  409. }
  410. .u-m-l-4 {
  411. margin-left: 4rpx !important;
  412. }
  413. .u-p-l-4 {
  414. padding-left: 4rpx !important;
  415. }
  416. .u-margin-left-4 {
  417. margin-left: 4rpx !important;
  418. }
  419. .u-padding-left-4 {
  420. padding-left: 4rpx !important;
  421. }
  422. .u-m-t-4 {
  423. margin-top: 4rpx !important;
  424. }
  425. .u-p-t-4 {
  426. padding-top: 4rpx !important;
  427. }
  428. .u-margin-top-4 {
  429. margin-top: 4rpx !important;
  430. }
  431. .u-padding-top-4 {
  432. padding-top: 4rpx !important;
  433. }
  434. .u-m-r-4 {
  435. margin-right: 4rpx !important;
  436. }
  437. .u-p-r-4 {
  438. padding-right: 4rpx !important;
  439. }
  440. .u-margin-right-4 {
  441. margin-right: 4rpx !important;
  442. }
  443. .u-padding-right-4 {
  444. padding-right: 4rpx !important;
  445. }
  446. .u-m-b-4 {
  447. margin-bottom: 4rpx !important;
  448. }
  449. .u-p-b-4 {
  450. padding-bottom: 4rpx !important;
  451. }
  452. .u-margin-bottom-4 {
  453. margin-bottom: 4rpx !important;
  454. }
  455. .u-padding-bottom-4 {
  456. padding-bottom: 4rpx !important;
  457. }
  458. .u-margin-5, .u-m-5 {
  459. margin: 5rpx !important;
  460. }
  461. .u-padding-5, .u-p-5 {
  462. padding: 5rpx !important;
  463. }
  464. .u-m-l-5 {
  465. margin-left: 5rpx !important;
  466. }
  467. .u-p-l-5 {
  468. padding-left: 5rpx !important;
  469. }
  470. .u-margin-left-5 {
  471. margin-left: 5rpx !important;
  472. }
  473. .u-padding-left-5 {
  474. padding-left: 5rpx !important;
  475. }
  476. .u-m-t-5 {
  477. margin-top: 5rpx !important;
  478. }
  479. .u-p-t-5 {
  480. padding-top: 5rpx !important;
  481. }
  482. .u-margin-top-5 {
  483. margin-top: 5rpx !important;
  484. }
  485. .u-padding-top-5 {
  486. padding-top: 5rpx !important;
  487. }
  488. .u-m-r-5 {
  489. margin-right: 5rpx !important;
  490. }
  491. .u-p-r-5 {
  492. padding-right: 5rpx !important;
  493. }
  494. .u-margin-right-5 {
  495. margin-right: 5rpx !important;
  496. }
  497. .u-padding-right-5 {
  498. padding-right: 5rpx !important;
  499. }
  500. .u-m-b-5 {
  501. margin-bottom: 5rpx !important;
  502. }
  503. .u-p-b-5 {
  504. padding-bottom: 5rpx !important;
  505. }
  506. .u-margin-bottom-5 {
  507. margin-bottom: 5rpx !important;
  508. }
  509. .u-padding-bottom-5 {
  510. padding-bottom: 5rpx !important;
  511. }
  512. .u-margin-6, .u-m-6 {
  513. margin: 6rpx !important;
  514. }
  515. .u-padding-6, .u-p-6 {
  516. padding: 6rpx !important;
  517. }
  518. .u-m-l-6 {
  519. margin-left: 6rpx !important;
  520. }
  521. .u-p-l-6 {
  522. padding-left: 6rpx !important;
  523. }
  524. .u-margin-left-6 {
  525. margin-left: 6rpx !important;
  526. }
  527. .u-padding-left-6 {
  528. padding-left: 6rpx !important;
  529. }
  530. .u-m-t-6 {
  531. margin-top: 6rpx !important;
  532. }
  533. .u-p-t-6 {
  534. padding-top: 6rpx !important;
  535. }
  536. .u-margin-top-6 {
  537. margin-top: 6rpx !important;
  538. }
  539. .u-padding-top-6 {
  540. padding-top: 6rpx !important;
  541. }
  542. .u-m-r-6 {
  543. margin-right: 6rpx !important;
  544. }
  545. .u-p-r-6 {
  546. padding-right: 6rpx !important;
  547. }
  548. .u-margin-right-6 {
  549. margin-right: 6rpx !important;
  550. }
  551. .u-padding-right-6 {
  552. padding-right: 6rpx !important;
  553. }
  554. .u-m-b-6 {
  555. margin-bottom: 6rpx !important;
  556. }
  557. .u-p-b-6 {
  558. padding-bottom: 6rpx !important;
  559. }
  560. .u-margin-bottom-6 {
  561. margin-bottom: 6rpx !important;
  562. }
  563. .u-padding-bottom-6 {
  564. padding-bottom: 6rpx !important;
  565. }
  566. .u-margin-8, .u-m-8 {
  567. margin: 8rpx !important;
  568. }
  569. .u-padding-8, .u-p-8 {
  570. padding: 8rpx !important;
  571. }
  572. .u-m-l-8 {
  573. margin-left: 8rpx !important;
  574. }
  575. .u-p-l-8 {
  576. padding-left: 8rpx !important;
  577. }
  578. .u-margin-left-8 {
  579. margin-left: 8rpx !important;
  580. }
  581. .u-padding-left-8 {
  582. padding-left: 8rpx !important;
  583. }
  584. .u-m-t-8 {
  585. margin-top: 8rpx !important;
  586. }
  587. .u-p-t-8 {
  588. padding-top: 8rpx !important;
  589. }
  590. .u-margin-top-8 {
  591. margin-top: 8rpx !important;
  592. }
  593. .u-padding-top-8 {
  594. padding-top: 8rpx !important;
  595. }
  596. .u-m-r-8 {
  597. margin-right: 8rpx !important;
  598. }
  599. .u-p-r-8 {
  600. padding-right: 8rpx !important;
  601. }
  602. .u-margin-right-8 {
  603. margin-right: 8rpx !important;
  604. }
  605. .u-padding-right-8 {
  606. padding-right: 8rpx !important;
  607. }
  608. .u-m-b-8 {
  609. margin-bottom: 8rpx !important;
  610. }
  611. .u-p-b-8 {
  612. padding-bottom: 8rpx !important;
  613. }
  614. .u-margin-bottom-8 {
  615. margin-bottom: 8rpx !important;
  616. }
  617. .u-padding-bottom-8 {
  618. padding-bottom: 8rpx !important;
  619. }
  620. .u-margin-10, .u-m-10 {
  621. margin: 10rpx !important;
  622. }
  623. .u-padding-10, .u-p-10 {
  624. padding: 10rpx !important;
  625. }
  626. .u-m-l-10 {
  627. margin-left: 10rpx !important;
  628. }
  629. .u-p-l-10 {
  630. padding-left: 10rpx !important;
  631. }
  632. .u-margin-left-10 {
  633. margin-left: 10rpx !important;
  634. }
  635. .u-padding-left-10 {
  636. padding-left: 10rpx !important;
  637. }
  638. .u-m-t-10 {
  639. margin-top: 10rpx !important;
  640. }
  641. .u-p-t-10 {
  642. padding-top: 10rpx !important;
  643. }
  644. .u-margin-top-10 {
  645. margin-top: 10rpx !important;
  646. }
  647. .u-padding-top-10 {
  648. padding-top: 10rpx !important;
  649. }
  650. .u-m-r-10 {
  651. margin-right: 10rpx !important;
  652. }
  653. .u-p-r-10 {
  654. padding-right: 10rpx !important;
  655. }
  656. .u-margin-right-10 {
  657. margin-right: 10rpx !important;
  658. }
  659. .u-padding-right-10 {
  660. padding-right: 10rpx !important;
  661. }
  662. .u-m-b-10 {
  663. margin-bottom: 10rpx !important;
  664. }
  665. .u-p-b-10 {
  666. padding-bottom: 10rpx !important;
  667. }
  668. .u-margin-bottom-10 {
  669. margin-bottom: 10rpx !important;
  670. }
  671. .u-padding-bottom-10 {
  672. padding-bottom: 10rpx !important;
  673. }
  674. .u-margin-12, .u-m-12 {
  675. margin: 12rpx !important;
  676. }
  677. .u-padding-12, .u-p-12 {
  678. padding: 12rpx !important;
  679. }
  680. .u-m-l-12 {
  681. margin-left: 12rpx !important;
  682. }
  683. .u-p-l-12 {
  684. padding-left: 12rpx !important;
  685. }
  686. .u-margin-left-12 {
  687. margin-left: 12rpx !important;
  688. }
  689. .u-padding-left-12 {
  690. padding-left: 12rpx !important;
  691. }
  692. .u-m-t-12 {
  693. margin-top: 12rpx !important;
  694. }
  695. .u-p-t-12 {
  696. padding-top: 12rpx !important;
  697. }
  698. .u-margin-top-12 {
  699. margin-top: 12rpx !important;
  700. }
  701. .u-padding-top-12 {
  702. padding-top: 12rpx !important;
  703. }
  704. .u-m-r-12 {
  705. margin-right: 12rpx !important;
  706. }
  707. .u-p-r-12 {
  708. padding-right: 12rpx !important;
  709. }
  710. .u-margin-right-12 {
  711. margin-right: 12rpx !important;
  712. }
  713. .u-padding-right-12 {
  714. padding-right: 12rpx !important;
  715. }
  716. .u-m-b-12 {
  717. margin-bottom: 12rpx !important;
  718. }
  719. .u-p-b-12 {
  720. padding-bottom: 12rpx !important;
  721. }
  722. .u-margin-bottom-12 {
  723. margin-bottom: 12rpx !important;
  724. }
  725. .u-padding-bottom-12 {
  726. padding-bottom: 12rpx !important;
  727. }
  728. .u-margin-14, .u-m-14 {
  729. margin: 14rpx !important;
  730. }
  731. .u-padding-14, .u-p-14 {
  732. padding: 14rpx !important;
  733. }
  734. .u-m-l-14 {
  735. margin-left: 14rpx !important;
  736. }
  737. .u-p-l-14 {
  738. padding-left: 14rpx !important;
  739. }
  740. .u-margin-left-14 {
  741. margin-left: 14rpx !important;
  742. }
  743. .u-padding-left-14 {
  744. padding-left: 14rpx !important;
  745. }
  746. .u-m-t-14 {
  747. margin-top: 14rpx !important;
  748. }
  749. .u-p-t-14 {
  750. padding-top: 14rpx !important;
  751. }
  752. .u-margin-top-14 {
  753. margin-top: 14rpx !important;
  754. }
  755. .u-padding-top-14 {
  756. padding-top: 14rpx !important;
  757. }
  758. .u-m-r-14 {
  759. margin-right: 14rpx !important;
  760. }
  761. .u-p-r-14 {
  762. padding-right: 14rpx !important;
  763. }
  764. .u-margin-right-14 {
  765. margin-right: 14rpx !important;
  766. }
  767. .u-padding-right-14 {
  768. padding-right: 14rpx !important;
  769. }
  770. .u-m-b-14 {
  771. margin-bottom: 14rpx !important;
  772. }
  773. .u-p-b-14 {
  774. padding-bottom: 14rpx !important;
  775. }
  776. .u-margin-bottom-14 {
  777. margin-bottom: 14rpx !important;
  778. }
  779. .u-padding-bottom-14 {
  780. padding-bottom: 14rpx !important;
  781. }
  782. .u-margin-15, .u-m-15 {
  783. margin: 15rpx !important;
  784. }
  785. .u-padding-15, .u-p-15 {
  786. padding: 15rpx !important;
  787. }
  788. .u-m-l-15 {
  789. margin-left: 15rpx !important;
  790. }
  791. .u-p-l-15 {
  792. padding-left: 15rpx !important;
  793. }
  794. .u-margin-left-15 {
  795. margin-left: 15rpx !important;
  796. }
  797. .u-padding-left-15 {
  798. padding-left: 15rpx !important;
  799. }
  800. .u-m-t-15 {
  801. margin-top: 15rpx !important;
  802. }
  803. .u-p-t-15 {
  804. padding-top: 15rpx !important;
  805. }
  806. .u-margin-top-15 {
  807. margin-top: 15rpx !important;
  808. }
  809. .u-padding-top-15 {
  810. padding-top: 15rpx !important;
  811. }
  812. .u-m-r-15 {
  813. margin-right: 15rpx !important;
  814. }
  815. .u-p-r-15 {
  816. padding-right: 15rpx !important;
  817. }
  818. .u-margin-right-15 {
  819. margin-right: 15rpx !important;
  820. }
  821. .u-padding-right-15 {
  822. padding-right: 15rpx !important;
  823. }
  824. .u-m-b-15 {
  825. margin-bottom: 15rpx !important;
  826. }
  827. .u-p-b-15 {
  828. padding-bottom: 15rpx !important;
  829. }
  830. .u-margin-bottom-15 {
  831. margin-bottom: 15rpx !important;
  832. }
  833. .u-padding-bottom-15 {
  834. padding-bottom: 15rpx !important;
  835. }
  836. .u-margin-16, .u-m-16 {
  837. margin: 16rpx !important;
  838. }
  839. .u-padding-16, .u-p-16 {
  840. padding: 16rpx !important;
  841. }
  842. .u-m-l-16 {
  843. margin-left: 16rpx !important;
  844. }
  845. .u-p-l-16 {
  846. padding-left: 16rpx !important;
  847. }
  848. .u-margin-left-16 {
  849. margin-left: 16rpx !important;
  850. }
  851. .u-padding-left-16 {
  852. padding-left: 16rpx !important;
  853. }
  854. .u-m-t-16 {
  855. margin-top: 16rpx !important;
  856. }
  857. .u-p-t-16 {
  858. padding-top: 16rpx !important;
  859. }
  860. .u-margin-top-16 {
  861. margin-top: 16rpx !important;
  862. }
  863. .u-padding-top-16 {
  864. padding-top: 16rpx !important;
  865. }
  866. .u-m-r-16 {
  867. margin-right: 16rpx !important;
  868. }
  869. .u-p-r-16 {
  870. padding-right: 16rpx !important;
  871. }
  872. .u-margin-right-16 {
  873. margin-right: 16rpx !important;
  874. }
  875. .u-padding-right-16 {
  876. padding-right: 16rpx !important;
  877. }
  878. .u-m-b-16 {
  879. margin-bottom: 16rpx !important;
  880. }
  881. .u-p-b-16 {
  882. padding-bottom: 16rpx !important;
  883. }
  884. .u-margin-bottom-16 {
  885. margin-bottom: 16rpx !important;
  886. }
  887. .u-padding-bottom-16 {
  888. padding-bottom: 16rpx !important;
  889. }
  890. .u-margin-18, .u-m-18 {
  891. margin: 18rpx !important;
  892. }
  893. .u-padding-18, .u-p-18 {
  894. padding: 18rpx !important;
  895. }
  896. .u-m-l-18 {
  897. margin-left: 18rpx !important;
  898. }
  899. .u-p-l-18 {
  900. padding-left: 18rpx !important;
  901. }
  902. .u-margin-left-18 {
  903. margin-left: 18rpx !important;
  904. }
  905. .u-padding-left-18 {
  906. padding-left: 18rpx !important;
  907. }
  908. .u-m-t-18 {
  909. margin-top: 18rpx !important;
  910. }
  911. .u-p-t-18 {
  912. padding-top: 18rpx !important;
  913. }
  914. .u-margin-top-18 {
  915. margin-top: 18rpx !important;
  916. }
  917. .u-padding-top-18 {
  918. padding-top: 18rpx !important;
  919. }
  920. .u-m-r-18 {
  921. margin-right: 18rpx !important;
  922. }
  923. .u-p-r-18 {
  924. padding-right: 18rpx !important;
  925. }
  926. .u-margin-right-18 {
  927. margin-right: 18rpx !important;
  928. }
  929. .u-padding-right-18 {
  930. padding-right: 18rpx !important;
  931. }
  932. .u-m-b-18 {
  933. margin-bottom: 18rpx !important;
  934. }
  935. .u-p-b-18 {
  936. padding-bottom: 18rpx !important;
  937. }
  938. .u-margin-bottom-18 {
  939. margin-bottom: 18rpx !important;
  940. }
  941. .u-padding-bottom-18 {
  942. padding-bottom: 18rpx !important;
  943. }
  944. .u-margin-20, .u-m-20 {
  945. margin: 20rpx !important;
  946. }
  947. .u-padding-20, .u-p-20 {
  948. padding: 20rpx !important;
  949. }
  950. .u-m-l-20 {
  951. margin-left: 20rpx !important;
  952. }
  953. .u-p-l-20 {
  954. padding-left: 20rpx !important;
  955. }
  956. .u-margin-left-20 {
  957. margin-left: 20rpx !important;
  958. }
  959. .u-padding-left-20 {
  960. padding-left: 20rpx !important;
  961. }
  962. .u-m-t-20 {
  963. margin-top: 20rpx !important;
  964. }
  965. .u-p-t-20 {
  966. padding-top: 20rpx !important;
  967. }
  968. .u-margin-top-20 {
  969. margin-top: 20rpx !important;
  970. }
  971. .u-padding-top-20 {
  972. padding-top: 20rpx !important;
  973. }
  974. .u-m-r-20 {
  975. margin-right: 20rpx !important;
  976. }
  977. .u-p-r-20 {
  978. padding-right: 20rpx !important;
  979. }
  980. .u-margin-right-20 {
  981. margin-right: 20rpx !important;
  982. }
  983. .u-padding-right-20 {
  984. padding-right: 20rpx !important;
  985. }
  986. .u-m-b-20 {
  987. margin-bottom: 20rpx !important;
  988. }
  989. .u-p-b-20 {
  990. padding-bottom: 20rpx !important;
  991. }
  992. .u-margin-bottom-20 {
  993. margin-bottom: 20rpx !important;
  994. }
  995. .u-padding-bottom-20 {
  996. padding-bottom: 20rpx !important;
  997. }
  998. .u-margin-22, .u-m-22 {
  999. margin: 22rpx !important;
  1000. }
  1001. .u-padding-22, .u-p-22 {
  1002. padding: 22rpx !important;
  1003. }
  1004. .u-m-l-22 {
  1005. margin-left: 22rpx !important;
  1006. }
  1007. .u-p-l-22 {
  1008. padding-left: 22rpx !important;
  1009. }
  1010. .u-margin-left-22 {
  1011. margin-left: 22rpx !important;
  1012. }
  1013. .u-padding-left-22 {
  1014. padding-left: 22rpx !important;
  1015. }
  1016. .u-m-t-22 {
  1017. margin-top: 22rpx !important;
  1018. }
  1019. .u-p-t-22 {
  1020. padding-top: 22rpx !important;
  1021. }
  1022. .u-margin-top-22 {
  1023. margin-top: 22rpx !important;
  1024. }
  1025. .u-padding-top-22 {
  1026. padding-top: 22rpx !important;
  1027. }
  1028. .u-m-r-22 {
  1029. margin-right: 22rpx !important;
  1030. }
  1031. .u-p-r-22 {
  1032. padding-right: 22rpx !important;
  1033. }
  1034. .u-margin-right-22 {
  1035. margin-right: 22rpx !important;
  1036. }
  1037. .u-padding-right-22 {
  1038. padding-right: 22rpx !important;
  1039. }
  1040. .u-m-b-22 {
  1041. margin-bottom: 22rpx !important;
  1042. }
  1043. .u-p-b-22 {
  1044. padding-bottom: 22rpx !important;
  1045. }
  1046. .u-margin-bottom-22 {
  1047. margin-bottom: 22rpx !important;
  1048. }
  1049. .u-padding-bottom-22 {
  1050. padding-bottom: 22rpx !important;
  1051. }
  1052. .u-margin-24, .u-m-24 {
  1053. margin: 24rpx !important;
  1054. }
  1055. .u-padding-24, .u-p-24 {
  1056. padding: 24rpx !important;
  1057. }
  1058. .u-m-l-24 {
  1059. margin-left: 24rpx !important;
  1060. }
  1061. .u-p-l-24 {
  1062. padding-left: 24rpx !important;
  1063. }
  1064. .u-margin-left-24 {
  1065. margin-left: 24rpx !important;
  1066. }
  1067. .u-padding-left-24 {
  1068. padding-left: 24rpx !important;
  1069. }
  1070. .u-m-t-24 {
  1071. margin-top: 24rpx !important;
  1072. }
  1073. .u-p-t-24 {
  1074. padding-top: 24rpx !important;
  1075. }
  1076. .u-margin-top-24 {
  1077. margin-top: 24rpx !important;
  1078. }
  1079. .u-padding-top-24 {
  1080. padding-top: 24rpx !important;
  1081. }
  1082. .u-m-r-24 {
  1083. margin-right: 24rpx !important;
  1084. }
  1085. .u-p-r-24 {
  1086. padding-right: 24rpx !important;
  1087. }
  1088. .u-margin-right-24 {
  1089. margin-right: 24rpx !important;
  1090. }
  1091. .u-padding-right-24 {
  1092. padding-right: 24rpx !important;
  1093. }
  1094. .u-m-b-24 {
  1095. margin-bottom: 24rpx !important;
  1096. }
  1097. .u-p-b-24 {
  1098. padding-bottom: 24rpx !important;
  1099. }
  1100. .u-margin-bottom-24 {
  1101. margin-bottom: 24rpx !important;
  1102. }
  1103. .u-padding-bottom-24 {
  1104. padding-bottom: 24rpx !important;
  1105. }
  1106. .u-margin-25, .u-m-25 {
  1107. margin: 25rpx !important;
  1108. }
  1109. .u-padding-25, .u-p-25 {
  1110. padding: 25rpx !important;
  1111. }
  1112. .u-m-l-25 {
  1113. margin-left: 25rpx !important;
  1114. }
  1115. .u-p-l-25 {
  1116. padding-left: 25rpx !important;
  1117. }
  1118. .u-margin-left-25 {
  1119. margin-left: 25rpx !important;
  1120. }
  1121. .u-padding-left-25 {
  1122. padding-left: 25rpx !important;
  1123. }
  1124. .u-m-t-25 {
  1125. margin-top: 25rpx !important;
  1126. }
  1127. .u-p-t-25 {
  1128. padding-top: 25rpx !important;
  1129. }
  1130. .u-margin-top-25 {
  1131. margin-top: 25rpx !important;
  1132. }
  1133. .u-padding-top-25 {
  1134. padding-top: 25rpx !important;
  1135. }
  1136. .u-m-r-25 {
  1137. margin-right: 25rpx !important;
  1138. }
  1139. .u-p-r-25 {
  1140. padding-right: 25rpx !important;
  1141. }
  1142. .u-margin-right-25 {
  1143. margin-right: 25rpx !important;
  1144. }
  1145. .u-padding-right-25 {
  1146. padding-right: 25rpx !important;
  1147. }
  1148. .u-m-b-25 {
  1149. margin-bottom: 25rpx !important;
  1150. }
  1151. .u-p-b-25 {
  1152. padding-bottom: 25rpx !important;
  1153. }
  1154. .u-margin-bottom-25 {
  1155. margin-bottom: 25rpx !important;
  1156. }
  1157. .u-padding-bottom-25 {
  1158. padding-bottom: 25rpx !important;
  1159. }
  1160. .u-margin-26, .u-m-26 {
  1161. margin: 26rpx !important;
  1162. }
  1163. .u-padding-26, .u-p-26 {
  1164. padding: 26rpx !important;
  1165. }
  1166. .u-m-l-26 {
  1167. margin-left: 26rpx !important;
  1168. }
  1169. .u-p-l-26 {
  1170. padding-left: 26rpx !important;
  1171. }
  1172. .u-margin-left-26 {
  1173. margin-left: 26rpx !important;
  1174. }
  1175. .u-padding-left-26 {
  1176. padding-left: 26rpx !important;
  1177. }
  1178. .u-m-t-26 {
  1179. margin-top: 26rpx !important;
  1180. }
  1181. .u-p-t-26 {
  1182. padding-top: 26rpx !important;
  1183. }
  1184. .u-margin-top-26 {
  1185. margin-top: 26rpx !important;
  1186. }
  1187. .u-padding-top-26 {
  1188. padding-top: 26rpx !important;
  1189. }
  1190. .u-m-r-26 {
  1191. margin-right: 26rpx !important;
  1192. }
  1193. .u-p-r-26 {
  1194. padding-right: 26rpx !important;
  1195. }
  1196. .u-margin-right-26 {
  1197. margin-right: 26rpx !important;
  1198. }
  1199. .u-padding-right-26 {
  1200. padding-right: 26rpx !important;
  1201. }
  1202. .u-m-b-26 {
  1203. margin-bottom: 26rpx !important;
  1204. }
  1205. .u-p-b-26 {
  1206. padding-bottom: 26rpx !important;
  1207. }
  1208. .u-margin-bottom-26 {
  1209. margin-bottom: 26rpx !important;
  1210. }
  1211. .u-padding-bottom-26 {
  1212. padding-bottom: 26rpx !important;
  1213. }
  1214. .u-margin-28, .u-m-28 {
  1215. margin: 28rpx !important;
  1216. }
  1217. .u-padding-28, .u-p-28 {
  1218. padding: 28rpx !important;
  1219. }
  1220. .u-m-l-28 {
  1221. margin-left: 28rpx !important;
  1222. }
  1223. .u-p-l-28 {
  1224. padding-left: 28rpx !important;
  1225. }
  1226. .u-margin-left-28 {
  1227. margin-left: 28rpx !important;
  1228. }
  1229. .u-padding-left-28 {
  1230. padding-left: 28rpx !important;
  1231. }
  1232. .u-m-t-28 {
  1233. margin-top: 28rpx !important;
  1234. }
  1235. .u-p-t-28 {
  1236. padding-top: 28rpx !important;
  1237. }
  1238. .u-margin-top-28 {
  1239. margin-top: 28rpx !important;
  1240. }
  1241. .u-padding-top-28 {
  1242. padding-top: 28rpx !important;
  1243. }
  1244. .u-m-r-28 {
  1245. margin-right: 28rpx !important;
  1246. }
  1247. .u-p-r-28 {
  1248. padding-right: 28rpx !important;
  1249. }
  1250. .u-margin-right-28 {
  1251. margin-right: 28rpx !important;
  1252. }
  1253. .u-padding-right-28 {
  1254. padding-right: 28rpx !important;
  1255. }
  1256. .u-m-b-28 {
  1257. margin-bottom: 28rpx !important;
  1258. }
  1259. .u-p-b-28 {
  1260. padding-bottom: 28rpx !important;
  1261. }
  1262. .u-margin-bottom-28 {
  1263. margin-bottom: 28rpx !important;
  1264. }
  1265. .u-padding-bottom-28 {
  1266. padding-bottom: 28rpx !important;
  1267. }
  1268. .u-margin-30, .u-m-30 {
  1269. margin: 30rpx !important;
  1270. }
  1271. .u-padding-30, .u-p-30 {
  1272. padding: 30rpx !important;
  1273. }
  1274. .u-m-l-30 {
  1275. margin-left: 30rpx !important;
  1276. }
  1277. .u-p-l-30 {
  1278. padding-left: 30rpx !important;
  1279. }
  1280. .u-margin-left-30 {
  1281. margin-left: 30rpx !important;
  1282. }
  1283. .u-padding-left-30 {
  1284. padding-left: 30rpx !important;
  1285. }
  1286. .u-m-t-30 {
  1287. margin-top: 30rpx !important;
  1288. }
  1289. .u-p-t-30 {
  1290. padding-top: 30rpx !important;
  1291. }
  1292. .u-margin-top-30 {
  1293. margin-top: 30rpx !important;
  1294. }
  1295. .u-padding-top-30 {
  1296. padding-top: 30rpx !important;
  1297. }
  1298. .u-m-r-30 {
  1299. margin-right: 30rpx !important;
  1300. }
  1301. .u-p-r-30 {
  1302. padding-right: 30rpx !important;
  1303. }
  1304. .u-margin-right-30 {
  1305. margin-right: 30rpx !important;
  1306. }
  1307. .u-padding-right-30 {
  1308. padding-right: 30rpx !important;
  1309. }
  1310. .u-m-b-30 {
  1311. margin-bottom: 30rpx !important;
  1312. }
  1313. .u-p-b-30 {
  1314. padding-bottom: 30rpx !important;
  1315. }
  1316. .u-margin-bottom-30 {
  1317. margin-bottom: 30rpx !important;
  1318. }
  1319. .u-padding-bottom-30 {
  1320. padding-bottom: 30rpx !important;
  1321. }
  1322. .u-margin-32, .u-m-32 {
  1323. margin: 32rpx !important;
  1324. }
  1325. .u-padding-32, .u-p-32 {
  1326. padding: 32rpx !important;
  1327. }
  1328. .u-m-l-32 {
  1329. margin-left: 32rpx !important;
  1330. }
  1331. .u-p-l-32 {
  1332. padding-left: 32rpx !important;
  1333. }
  1334. .u-margin-left-32 {
  1335. margin-left: 32rpx !important;
  1336. }
  1337. .u-padding-left-32 {
  1338. padding-left: 32rpx !important;
  1339. }
  1340. .u-m-t-32 {
  1341. margin-top: 32rpx !important;
  1342. }
  1343. .u-p-t-32 {
  1344. padding-top: 32rpx !important;
  1345. }
  1346. .u-margin-top-32 {
  1347. margin-top: 32rpx !important;
  1348. }
  1349. .u-padding-top-32 {
  1350. padding-top: 32rpx !important;
  1351. }
  1352. .u-m-r-32 {
  1353. margin-right: 32rpx !important;
  1354. }
  1355. .u-p-r-32 {
  1356. padding-right: 32rpx !important;
  1357. }
  1358. .u-margin-right-32 {
  1359. margin-right: 32rpx !important;
  1360. }
  1361. .u-padding-right-32 {
  1362. padding-right: 32rpx !important;
  1363. }
  1364. .u-m-b-32 {
  1365. margin-bottom: 32rpx !important;
  1366. }
  1367. .u-p-b-32 {
  1368. padding-bottom: 32rpx !important;
  1369. }
  1370. .u-margin-bottom-32 {
  1371. margin-bottom: 32rpx !important;
  1372. }
  1373. .u-padding-bottom-32 {
  1374. padding-bottom: 32rpx !important;
  1375. }
  1376. .u-margin-34, .u-m-34 {
  1377. margin: 34rpx !important;
  1378. }
  1379. .u-padding-34, .u-p-34 {
  1380. padding: 34rpx !important;
  1381. }
  1382. .u-m-l-34 {
  1383. margin-left: 34rpx !important;
  1384. }
  1385. .u-p-l-34 {
  1386. padding-left: 34rpx !important;
  1387. }
  1388. .u-margin-left-34 {
  1389. margin-left: 34rpx !important;
  1390. }
  1391. .u-padding-left-34 {
  1392. padding-left: 34rpx !important;
  1393. }
  1394. .u-m-t-34 {
  1395. margin-top: 34rpx !important;
  1396. }
  1397. .u-p-t-34 {
  1398. padding-top: 34rpx !important;
  1399. }
  1400. .u-margin-top-34 {
  1401. margin-top: 34rpx !important;
  1402. }
  1403. .u-padding-top-34 {
  1404. padding-top: 34rpx !important;
  1405. }
  1406. .u-m-r-34 {
  1407. margin-right: 34rpx !important;
  1408. }
  1409. .u-p-r-34 {
  1410. padding-right: 34rpx !important;
  1411. }
  1412. .u-margin-right-34 {
  1413. margin-right: 34rpx !important;
  1414. }
  1415. .u-padding-right-34 {
  1416. padding-right: 34rpx !important;
  1417. }
  1418. .u-m-b-34 {
  1419. margin-bottom: 34rpx !important;
  1420. }
  1421. .u-p-b-34 {
  1422. padding-bottom: 34rpx !important;
  1423. }
  1424. .u-margin-bottom-34 {
  1425. margin-bottom: 34rpx !important;
  1426. }
  1427. .u-padding-bottom-34 {
  1428. padding-bottom: 34rpx !important;
  1429. }
  1430. .u-margin-35, .u-m-35 {
  1431. margin: 35rpx !important;
  1432. }
  1433. .u-padding-35, .u-p-35 {
  1434. padding: 35rpx !important;
  1435. }
  1436. .u-m-l-35 {
  1437. margin-left: 35rpx !important;
  1438. }
  1439. .u-p-l-35 {
  1440. padding-left: 35rpx !important;
  1441. }
  1442. .u-margin-left-35 {
  1443. margin-left: 35rpx !important;
  1444. }
  1445. .u-padding-left-35 {
  1446. padding-left: 35rpx !important;
  1447. }
  1448. .u-m-t-35 {
  1449. margin-top: 35rpx !important;
  1450. }
  1451. .u-p-t-35 {
  1452. padding-top: 35rpx !important;
  1453. }
  1454. .u-margin-top-35 {
  1455. margin-top: 35rpx !important;
  1456. }
  1457. .u-padding-top-35 {
  1458. padding-top: 35rpx !important;
  1459. }
  1460. .u-m-r-35 {
  1461. margin-right: 35rpx !important;
  1462. }
  1463. .u-p-r-35 {
  1464. padding-right: 35rpx !important;
  1465. }
  1466. .u-margin-right-35 {
  1467. margin-right: 35rpx !important;
  1468. }
  1469. .u-padding-right-35 {
  1470. padding-right: 35rpx !important;
  1471. }
  1472. .u-m-b-35 {
  1473. margin-bottom: 35rpx !important;
  1474. }
  1475. .u-p-b-35 {
  1476. padding-bottom: 35rpx !important;
  1477. }
  1478. .u-margin-bottom-35 {
  1479. margin-bottom: 35rpx !important;
  1480. }
  1481. .u-padding-bottom-35 {
  1482. padding-bottom: 35rpx !important;
  1483. }
  1484. .u-margin-36, .u-m-36 {
  1485. margin: 36rpx !important;
  1486. }
  1487. .u-padding-36, .u-p-36 {
  1488. padding: 36rpx !important;
  1489. }
  1490. .u-m-l-36 {
  1491. margin-left: 36rpx !important;
  1492. }
  1493. .u-p-l-36 {
  1494. padding-left: 36rpx !important;
  1495. }
  1496. .u-margin-left-36 {
  1497. margin-left: 36rpx !important;
  1498. }
  1499. .u-padding-left-36 {
  1500. padding-left: 36rpx !important;
  1501. }
  1502. .u-m-t-36 {
  1503. margin-top: 36rpx !important;
  1504. }
  1505. .u-p-t-36 {
  1506. padding-top: 36rpx !important;
  1507. }
  1508. .u-margin-top-36 {
  1509. margin-top: 36rpx !important;
  1510. }
  1511. .u-padding-top-36 {
  1512. padding-top: 36rpx !important;
  1513. }
  1514. .u-m-r-36 {
  1515. margin-right: 36rpx !important;
  1516. }
  1517. .u-p-r-36 {
  1518. padding-right: 36rpx !important;
  1519. }
  1520. .u-margin-right-36 {
  1521. margin-right: 36rpx !important;
  1522. }
  1523. .u-padding-right-36 {
  1524. padding-right: 36rpx !important;
  1525. }
  1526. .u-m-b-36 {
  1527. margin-bottom: 36rpx !important;
  1528. }
  1529. .u-p-b-36 {
  1530. padding-bottom: 36rpx !important;
  1531. }
  1532. .u-margin-bottom-36 {
  1533. margin-bottom: 36rpx !important;
  1534. }
  1535. .u-padding-bottom-36 {
  1536. padding-bottom: 36rpx !important;
  1537. }
  1538. .u-margin-38, .u-m-38 {
  1539. margin: 38rpx !important;
  1540. }
  1541. .u-padding-38, .u-p-38 {
  1542. padding: 38rpx !important;
  1543. }
  1544. .u-m-l-38 {
  1545. margin-left: 38rpx !important;
  1546. }
  1547. .u-p-l-38 {
  1548. padding-left: 38rpx !important;
  1549. }
  1550. .u-margin-left-38 {
  1551. margin-left: 38rpx !important;
  1552. }
  1553. .u-padding-left-38 {
  1554. padding-left: 38rpx !important;
  1555. }
  1556. .u-m-t-38 {
  1557. margin-top: 38rpx !important;
  1558. }
  1559. .u-p-t-38 {
  1560. padding-top: 38rpx !important;
  1561. }
  1562. .u-margin-top-38 {
  1563. margin-top: 38rpx !important;
  1564. }
  1565. .u-padding-top-38 {
  1566. padding-top: 38rpx !important;
  1567. }
  1568. .u-m-r-38 {
  1569. margin-right: 38rpx !important;
  1570. }
  1571. .u-p-r-38 {
  1572. padding-right: 38rpx !important;
  1573. }
  1574. .u-margin-right-38 {
  1575. margin-right: 38rpx !important;
  1576. }
  1577. .u-padding-right-38 {
  1578. padding-right: 38rpx !important;
  1579. }
  1580. .u-m-b-38 {
  1581. margin-bottom: 38rpx !important;
  1582. }
  1583. .u-p-b-38 {
  1584. padding-bottom: 38rpx !important;
  1585. }
  1586. .u-margin-bottom-38 {
  1587. margin-bottom: 38rpx !important;
  1588. }
  1589. .u-padding-bottom-38 {
  1590. padding-bottom: 38rpx !important;
  1591. }
  1592. .u-margin-40, .u-m-40 {
  1593. margin: 40rpx !important;
  1594. }
  1595. .u-padding-40, .u-p-40 {
  1596. padding: 40rpx !important;
  1597. }
  1598. .u-m-l-40 {
  1599. margin-left: 40rpx !important;
  1600. }
  1601. .u-p-l-40 {
  1602. padding-left: 40rpx !important;
  1603. }
  1604. .u-margin-left-40 {
  1605. margin-left: 40rpx !important;
  1606. }
  1607. .u-padding-left-40 {
  1608. padding-left: 40rpx !important;
  1609. }
  1610. .u-m-t-40 {
  1611. margin-top: 40rpx !important;
  1612. }
  1613. .u-p-t-40 {
  1614. padding-top: 40rpx !important;
  1615. }
  1616. .u-margin-top-40 {
  1617. margin-top: 40rpx !important;
  1618. }
  1619. .u-padding-top-40 {
  1620. padding-top: 40rpx !important;
  1621. }
  1622. .u-m-r-40 {
  1623. margin-right: 40rpx !important;
  1624. }
  1625. .u-p-r-40 {
  1626. padding-right: 40rpx !important;
  1627. }
  1628. .u-margin-right-40 {
  1629. margin-right: 40rpx !important;
  1630. }
  1631. .u-padding-right-40 {
  1632. padding-right: 40rpx !important;
  1633. }
  1634. .u-m-b-40 {
  1635. margin-bottom: 40rpx !important;
  1636. }
  1637. .u-p-b-40 {
  1638. padding-bottom: 40rpx !important;
  1639. }
  1640. .u-margin-bottom-40 {
  1641. margin-bottom: 40rpx !important;
  1642. }
  1643. .u-padding-bottom-40 {
  1644. padding-bottom: 40rpx !important;
  1645. }
  1646. .u-margin-42, .u-m-42 {
  1647. margin: 42rpx !important;
  1648. }
  1649. .u-padding-42, .u-p-42 {
  1650. padding: 42rpx !important;
  1651. }
  1652. .u-m-l-42 {
  1653. margin-left: 42rpx !important;
  1654. }
  1655. .u-p-l-42 {
  1656. padding-left: 42rpx !important;
  1657. }
  1658. .u-margin-left-42 {
  1659. margin-left: 42rpx !important;
  1660. }
  1661. .u-padding-left-42 {
  1662. padding-left: 42rpx !important;
  1663. }
  1664. .u-m-t-42 {
  1665. margin-top: 42rpx !important;
  1666. }
  1667. .u-p-t-42 {
  1668. padding-top: 42rpx !important;
  1669. }
  1670. .u-margin-top-42 {
  1671. margin-top: 42rpx !important;
  1672. }
  1673. .u-padding-top-42 {
  1674. padding-top: 42rpx !important;
  1675. }
  1676. .u-m-r-42 {
  1677. margin-right: 42rpx !important;
  1678. }
  1679. .u-p-r-42 {
  1680. padding-right: 42rpx !important;
  1681. }
  1682. .u-margin-right-42 {
  1683. margin-right: 42rpx !important;
  1684. }
  1685. .u-padding-right-42 {
  1686. padding-right: 42rpx !important;
  1687. }
  1688. .u-m-b-42 {
  1689. margin-bottom: 42rpx !important;
  1690. }
  1691. .u-p-b-42 {
  1692. padding-bottom: 42rpx !important;
  1693. }
  1694. .u-margin-bottom-42 {
  1695. margin-bottom: 42rpx !important;
  1696. }
  1697. .u-padding-bottom-42 {
  1698. padding-bottom: 42rpx !important;
  1699. }
  1700. .u-margin-44, .u-m-44 {
  1701. margin: 44rpx !important;
  1702. }
  1703. .u-padding-44, .u-p-44 {
  1704. padding: 44rpx !important;
  1705. }
  1706. .u-m-l-44 {
  1707. margin-left: 44rpx !important;
  1708. }
  1709. .u-p-l-44 {
  1710. padding-left: 44rpx !important;
  1711. }
  1712. .u-margin-left-44 {
  1713. margin-left: 44rpx !important;
  1714. }
  1715. .u-padding-left-44 {
  1716. padding-left: 44rpx !important;
  1717. }
  1718. .u-m-t-44 {
  1719. margin-top: 44rpx !important;
  1720. }
  1721. .u-p-t-44 {
  1722. padding-top: 44rpx !important;
  1723. }
  1724. .u-margin-top-44 {
  1725. margin-top: 44rpx !important;
  1726. }
  1727. .u-padding-top-44 {
  1728. padding-top: 44rpx !important;
  1729. }
  1730. .u-m-r-44 {
  1731. margin-right: 44rpx !important;
  1732. }
  1733. .u-p-r-44 {
  1734. padding-right: 44rpx !important;
  1735. }
  1736. .u-margin-right-44 {
  1737. margin-right: 44rpx !important;
  1738. }
  1739. .u-padding-right-44 {
  1740. padding-right: 44rpx !important;
  1741. }
  1742. .u-m-b-44 {
  1743. margin-bottom: 44rpx !important;
  1744. }
  1745. .u-p-b-44 {
  1746. padding-bottom: 44rpx !important;
  1747. }
  1748. .u-margin-bottom-44 {
  1749. margin-bottom: 44rpx !important;
  1750. }
  1751. .u-padding-bottom-44 {
  1752. padding-bottom: 44rpx !important;
  1753. }
  1754. .u-margin-45, .u-m-45 {
  1755. margin: 45rpx !important;
  1756. }
  1757. .u-padding-45, .u-p-45 {
  1758. padding: 45rpx !important;
  1759. }
  1760. .u-m-l-45 {
  1761. margin-left: 45rpx !important;
  1762. }
  1763. .u-p-l-45 {
  1764. padding-left: 45rpx !important;
  1765. }
  1766. .u-margin-left-45 {
  1767. margin-left: 45rpx !important;
  1768. }
  1769. .u-padding-left-45 {
  1770. padding-left: 45rpx !important;
  1771. }
  1772. .u-m-t-45 {
  1773. margin-top: 45rpx !important;
  1774. }
  1775. .u-p-t-45 {
  1776. padding-top: 45rpx !important;
  1777. }
  1778. .u-margin-top-45 {
  1779. margin-top: 45rpx !important;
  1780. }
  1781. .u-padding-top-45 {
  1782. padding-top: 45rpx !important;
  1783. }
  1784. .u-m-r-45 {
  1785. margin-right: 45rpx !important;
  1786. }
  1787. .u-p-r-45 {
  1788. padding-right: 45rpx !important;
  1789. }
  1790. .u-margin-right-45 {
  1791. margin-right: 45rpx !important;
  1792. }
  1793. .u-padding-right-45 {
  1794. padding-right: 45rpx !important;
  1795. }
  1796. .u-m-b-45 {
  1797. margin-bottom: 45rpx !important;
  1798. }
  1799. .u-p-b-45 {
  1800. padding-bottom: 45rpx !important;
  1801. }
  1802. .u-margin-bottom-45 {
  1803. margin-bottom: 45rpx !important;
  1804. }
  1805. .u-padding-bottom-45 {
  1806. padding-bottom: 45rpx !important;
  1807. }
  1808. .u-margin-46, .u-m-46 {
  1809. margin: 46rpx !important;
  1810. }
  1811. .u-padding-46, .u-p-46 {
  1812. padding: 46rpx !important;
  1813. }
  1814. .u-m-l-46 {
  1815. margin-left: 46rpx !important;
  1816. }
  1817. .u-p-l-46 {
  1818. padding-left: 46rpx !important;
  1819. }
  1820. .u-margin-left-46 {
  1821. margin-left: 46rpx !important;
  1822. }
  1823. .u-padding-left-46 {
  1824. padding-left: 46rpx !important;
  1825. }
  1826. .u-m-t-46 {
  1827. margin-top: 46rpx !important;
  1828. }
  1829. .u-p-t-46 {
  1830. padding-top: 46rpx !important;
  1831. }
  1832. .u-margin-top-46 {
  1833. margin-top: 46rpx !important;
  1834. }
  1835. .u-padding-top-46 {
  1836. padding-top: 46rpx !important;
  1837. }
  1838. .u-m-r-46 {
  1839. margin-right: 46rpx !important;
  1840. }
  1841. .u-p-r-46 {
  1842. padding-right: 46rpx !important;
  1843. }
  1844. .u-margin-right-46 {
  1845. margin-right: 46rpx !important;
  1846. }
  1847. .u-padding-right-46 {
  1848. padding-right: 46rpx !important;
  1849. }
  1850. .u-m-b-46 {
  1851. margin-bottom: 46rpx !important;
  1852. }
  1853. .u-p-b-46 {
  1854. padding-bottom: 46rpx !important;
  1855. }
  1856. .u-margin-bottom-46 {
  1857. margin-bottom: 46rpx !important;
  1858. }
  1859. .u-padding-bottom-46 {
  1860. padding-bottom: 46rpx !important;
  1861. }
  1862. .u-margin-48, .u-m-48 {
  1863. margin: 48rpx !important;
  1864. }
  1865. .u-padding-48, .u-p-48 {
  1866. padding: 48rpx !important;
  1867. }
  1868. .u-m-l-48 {
  1869. margin-left: 48rpx !important;
  1870. }
  1871. .u-p-l-48 {
  1872. padding-left: 48rpx !important;
  1873. }
  1874. .u-margin-left-48 {
  1875. margin-left: 48rpx !important;
  1876. }
  1877. .u-padding-left-48 {
  1878. padding-left: 48rpx !important;
  1879. }
  1880. .u-m-t-48 {
  1881. margin-top: 48rpx !important;
  1882. }
  1883. .u-p-t-48 {
  1884. padding-top: 48rpx !important;
  1885. }
  1886. .u-margin-top-48 {
  1887. margin-top: 48rpx !important;
  1888. }
  1889. .u-padding-top-48 {
  1890. padding-top: 48rpx !important;
  1891. }
  1892. .u-m-r-48 {
  1893. margin-right: 48rpx !important;
  1894. }
  1895. .u-p-r-48 {
  1896. padding-right: 48rpx !important;
  1897. }
  1898. .u-margin-right-48 {
  1899. margin-right: 48rpx !important;
  1900. }
  1901. .u-padding-right-48 {
  1902. padding-right: 48rpx !important;
  1903. }
  1904. .u-m-b-48 {
  1905. margin-bottom: 48rpx !important;
  1906. }
  1907. .u-p-b-48 {
  1908. padding-bottom: 48rpx !important;
  1909. }
  1910. .u-margin-bottom-48 {
  1911. margin-bottom: 48rpx !important;
  1912. }
  1913. .u-padding-bottom-48 {
  1914. padding-bottom: 48rpx !important;
  1915. }
  1916. .u-margin-50, .u-m-50 {
  1917. margin: 50rpx !important;
  1918. }
  1919. .u-padding-50, .u-p-50 {
  1920. padding: 50rpx !important;
  1921. }
  1922. .u-m-l-50 {
  1923. margin-left: 50rpx !important;
  1924. }
  1925. .u-p-l-50 {
  1926. padding-left: 50rpx !important;
  1927. }
  1928. .u-margin-left-50 {
  1929. margin-left: 50rpx !important;
  1930. }
  1931. .u-padding-left-50 {
  1932. padding-left: 50rpx !important;
  1933. }
  1934. .u-m-t-50 {
  1935. margin-top: 50rpx !important;
  1936. }
  1937. .u-p-t-50 {
  1938. padding-top: 50rpx !important;
  1939. }
  1940. .u-margin-top-50 {
  1941. margin-top: 50rpx !important;
  1942. }
  1943. .u-padding-top-50 {
  1944. padding-top: 50rpx !important;
  1945. }
  1946. .u-m-r-50 {
  1947. margin-right: 50rpx !important;
  1948. }
  1949. .u-p-r-50 {
  1950. padding-right: 50rpx !important;
  1951. }
  1952. .u-margin-right-50 {
  1953. margin-right: 50rpx !important;
  1954. }
  1955. .u-padding-right-50 {
  1956. padding-right: 50rpx !important;
  1957. }
  1958. .u-m-b-50 {
  1959. margin-bottom: 50rpx !important;
  1960. }
  1961. .u-p-b-50 {
  1962. padding-bottom: 50rpx !important;
  1963. }
  1964. .u-margin-bottom-50 {
  1965. margin-bottom: 50rpx !important;
  1966. }
  1967. .u-padding-bottom-50 {
  1968. padding-bottom: 50rpx !important;
  1969. }
  1970. .u-margin-52, .u-m-52 {
  1971. margin: 52rpx !important;
  1972. }
  1973. .u-padding-52, .u-p-52 {
  1974. padding: 52rpx !important;
  1975. }
  1976. .u-m-l-52 {
  1977. margin-left: 52rpx !important;
  1978. }
  1979. .u-p-l-52 {
  1980. padding-left: 52rpx !important;
  1981. }
  1982. .u-margin-left-52 {
  1983. margin-left: 52rpx !important;
  1984. }
  1985. .u-padding-left-52 {
  1986. padding-left: 52rpx !important;
  1987. }
  1988. .u-m-t-52 {
  1989. margin-top: 52rpx !important;
  1990. }
  1991. .u-p-t-52 {
  1992. padding-top: 52rpx !important;
  1993. }
  1994. .u-margin-top-52 {
  1995. margin-top: 52rpx !important;
  1996. }
  1997. .u-padding-top-52 {
  1998. padding-top: 52rpx !important;
  1999. }
  2000. .u-m-r-52 {
  2001. margin-right: 52rpx !important;
  2002. }
  2003. .u-p-r-52 {
  2004. padding-right: 52rpx !important;
  2005. }
  2006. .u-margin-right-52 {
  2007. margin-right: 52rpx !important;
  2008. }
  2009. .u-padding-right-52 {
  2010. padding-right: 52rpx !important;
  2011. }
  2012. .u-m-b-52 {
  2013. margin-bottom: 52rpx !important;
  2014. }
  2015. .u-p-b-52 {
  2016. padding-bottom: 52rpx !important;
  2017. }
  2018. .u-margin-bottom-52 {
  2019. margin-bottom: 52rpx !important;
  2020. }
  2021. .u-padding-bottom-52 {
  2022. padding-bottom: 52rpx !important;
  2023. }
  2024. .u-margin-54, .u-m-54 {
  2025. margin: 54rpx !important;
  2026. }
  2027. .u-padding-54, .u-p-54 {
  2028. padding: 54rpx !important;
  2029. }
  2030. .u-m-l-54 {
  2031. margin-left: 54rpx !important;
  2032. }
  2033. .u-p-l-54 {
  2034. padding-left: 54rpx !important;
  2035. }
  2036. .u-margin-left-54 {
  2037. margin-left: 54rpx !important;
  2038. }
  2039. .u-padding-left-54 {
  2040. padding-left: 54rpx !important;
  2041. }
  2042. .u-m-t-54 {
  2043. margin-top: 54rpx !important;
  2044. }
  2045. .u-p-t-54 {
  2046. padding-top: 54rpx !important;
  2047. }
  2048. .u-margin-top-54 {
  2049. margin-top: 54rpx !important;
  2050. }
  2051. .u-padding-top-54 {
  2052. padding-top: 54rpx !important;
  2053. }
  2054. .u-m-r-54 {
  2055. margin-right: 54rpx !important;
  2056. }
  2057. .u-p-r-54 {
  2058. padding-right: 54rpx !important;
  2059. }
  2060. .u-margin-right-54 {
  2061. margin-right: 54rpx !important;
  2062. }
  2063. .u-padding-right-54 {
  2064. padding-right: 54rpx !important;
  2065. }
  2066. .u-m-b-54 {
  2067. margin-bottom: 54rpx !important;
  2068. }
  2069. .u-p-b-54 {
  2070. padding-bottom: 54rpx !important;
  2071. }
  2072. .u-margin-bottom-54 {
  2073. margin-bottom: 54rpx !important;
  2074. }
  2075. .u-padding-bottom-54 {
  2076. padding-bottom: 54rpx !important;
  2077. }
  2078. .u-margin-55, .u-m-55 {
  2079. margin: 55rpx !important;
  2080. }
  2081. .u-padding-55, .u-p-55 {
  2082. padding: 55rpx !important;
  2083. }
  2084. .u-m-l-55 {
  2085. margin-left: 55rpx !important;
  2086. }
  2087. .u-p-l-55 {
  2088. padding-left: 55rpx !important;
  2089. }
  2090. .u-margin-left-55 {
  2091. margin-left: 55rpx !important;
  2092. }
  2093. .u-padding-left-55 {
  2094. padding-left: 55rpx !important;
  2095. }
  2096. .u-m-t-55 {
  2097. margin-top: 55rpx !important;
  2098. }
  2099. .u-p-t-55 {
  2100. padding-top: 55rpx !important;
  2101. }
  2102. .u-margin-top-55 {
  2103. margin-top: 55rpx !important;
  2104. }
  2105. .u-padding-top-55 {
  2106. padding-top: 55rpx !important;
  2107. }
  2108. .u-m-r-55 {
  2109. margin-right: 55rpx !important;
  2110. }
  2111. .u-p-r-55 {
  2112. padding-right: 55rpx !important;
  2113. }
  2114. .u-margin-right-55 {
  2115. margin-right: 55rpx !important;
  2116. }
  2117. .u-padding-right-55 {
  2118. padding-right: 55rpx !important;
  2119. }
  2120. .u-m-b-55 {
  2121. margin-bottom: 55rpx !important;
  2122. }
  2123. .u-p-b-55 {
  2124. padding-bottom: 55rpx !important;
  2125. }
  2126. .u-margin-bottom-55 {
  2127. margin-bottom: 55rpx !important;
  2128. }
  2129. .u-padding-bottom-55 {
  2130. padding-bottom: 55rpx !important;
  2131. }
  2132. .u-margin-56, .u-m-56 {
  2133. margin: 56rpx !important;
  2134. }
  2135. .u-padding-56, .u-p-56 {
  2136. padding: 56rpx !important;
  2137. }
  2138. .u-m-l-56 {
  2139. margin-left: 56rpx !important;
  2140. }
  2141. .u-p-l-56 {
  2142. padding-left: 56rpx !important;
  2143. }
  2144. .u-margin-left-56 {
  2145. margin-left: 56rpx !important;
  2146. }
  2147. .u-padding-left-56 {
  2148. padding-left: 56rpx !important;
  2149. }
  2150. .u-m-t-56 {
  2151. margin-top: 56rpx !important;
  2152. }
  2153. .u-p-t-56 {
  2154. padding-top: 56rpx !important;
  2155. }
  2156. .u-margin-top-56 {
  2157. margin-top: 56rpx !important;
  2158. }
  2159. .u-padding-top-56 {
  2160. padding-top: 56rpx !important;
  2161. }
  2162. .u-m-r-56 {
  2163. margin-right: 56rpx !important;
  2164. }
  2165. .u-p-r-56 {
  2166. padding-right: 56rpx !important;
  2167. }
  2168. .u-margin-right-56 {
  2169. margin-right: 56rpx !important;
  2170. }
  2171. .u-padding-right-56 {
  2172. padding-right: 56rpx !important;
  2173. }
  2174. .u-m-b-56 {
  2175. margin-bottom: 56rpx !important;
  2176. }
  2177. .u-p-b-56 {
  2178. padding-bottom: 56rpx !important;
  2179. }
  2180. .u-margin-bottom-56 {
  2181. margin-bottom: 56rpx !important;
  2182. }
  2183. .u-padding-bottom-56 {
  2184. padding-bottom: 56rpx !important;
  2185. }
  2186. .u-margin-58, .u-m-58 {
  2187. margin: 58rpx !important;
  2188. }
  2189. .u-padding-58, .u-p-58 {
  2190. padding: 58rpx !important;
  2191. }
  2192. .u-m-l-58 {
  2193. margin-left: 58rpx !important;
  2194. }
  2195. .u-p-l-58 {
  2196. padding-left: 58rpx !important;
  2197. }
  2198. .u-margin-left-58 {
  2199. margin-left: 58rpx !important;
  2200. }
  2201. .u-padding-left-58 {
  2202. padding-left: 58rpx !important;
  2203. }
  2204. .u-m-t-58 {
  2205. margin-top: 58rpx !important;
  2206. }
  2207. .u-p-t-58 {
  2208. padding-top: 58rpx !important;
  2209. }
  2210. .u-margin-top-58 {
  2211. margin-top: 58rpx !important;
  2212. }
  2213. .u-padding-top-58 {
  2214. padding-top: 58rpx !important;
  2215. }
  2216. .u-m-r-58 {
  2217. margin-right: 58rpx !important;
  2218. }
  2219. .u-p-r-58 {
  2220. padding-right: 58rpx !important;
  2221. }
  2222. .u-margin-right-58 {
  2223. margin-right: 58rpx !important;
  2224. }
  2225. .u-padding-right-58 {
  2226. padding-right: 58rpx !important;
  2227. }
  2228. .u-m-b-58 {
  2229. margin-bottom: 58rpx !important;
  2230. }
  2231. .u-p-b-58 {
  2232. padding-bottom: 58rpx !important;
  2233. }
  2234. .u-margin-bottom-58 {
  2235. margin-bottom: 58rpx !important;
  2236. }
  2237. .u-padding-bottom-58 {
  2238. padding-bottom: 58rpx !important;
  2239. }
  2240. .u-margin-60, .u-m-60 {
  2241. margin: 60rpx !important;
  2242. }
  2243. .u-padding-60, .u-p-60 {
  2244. padding: 60rpx !important;
  2245. }
  2246. .u-m-l-60 {
  2247. margin-left: 60rpx !important;
  2248. }
  2249. .u-p-l-60 {
  2250. padding-left: 60rpx !important;
  2251. }
  2252. .u-margin-left-60 {
  2253. margin-left: 60rpx !important;
  2254. }
  2255. .u-padding-left-60 {
  2256. padding-left: 60rpx !important;
  2257. }
  2258. .u-m-t-60 {
  2259. margin-top: 60rpx !important;
  2260. }
  2261. .u-p-t-60 {
  2262. padding-top: 60rpx !important;
  2263. }
  2264. .u-margin-top-60 {
  2265. margin-top: 60rpx !important;
  2266. }
  2267. .u-padding-top-60 {
  2268. padding-top: 60rpx !important;
  2269. }
  2270. .u-m-r-60 {
  2271. margin-right: 60rpx !important;
  2272. }
  2273. .u-p-r-60 {
  2274. padding-right: 60rpx !important;
  2275. }
  2276. .u-margin-right-60 {
  2277. margin-right: 60rpx !important;
  2278. }
  2279. .u-padding-right-60 {
  2280. padding-right: 60rpx !important;
  2281. }
  2282. .u-m-b-60 {
  2283. margin-bottom: 60rpx !important;
  2284. }
  2285. .u-p-b-60 {
  2286. padding-bottom: 60rpx !important;
  2287. }
  2288. .u-margin-bottom-60 {
  2289. margin-bottom: 60rpx !important;
  2290. }
  2291. .u-padding-bottom-60 {
  2292. padding-bottom: 60rpx !important;
  2293. }
  2294. .u-margin-62, .u-m-62 {
  2295. margin: 62rpx !important;
  2296. }
  2297. .u-padding-62, .u-p-62 {
  2298. padding: 62rpx !important;
  2299. }
  2300. .u-m-l-62 {
  2301. margin-left: 62rpx !important;
  2302. }
  2303. .u-p-l-62 {
  2304. padding-left: 62rpx !important;
  2305. }
  2306. .u-margin-left-62 {
  2307. margin-left: 62rpx !important;
  2308. }
  2309. .u-padding-left-62 {
  2310. padding-left: 62rpx !important;
  2311. }
  2312. .u-m-t-62 {
  2313. margin-top: 62rpx !important;
  2314. }
  2315. .u-p-t-62 {
  2316. padding-top: 62rpx !important;
  2317. }
  2318. .u-margin-top-62 {
  2319. margin-top: 62rpx !important;
  2320. }
  2321. .u-padding-top-62 {
  2322. padding-top: 62rpx !important;
  2323. }
  2324. .u-m-r-62 {
  2325. margin-right: 62rpx !important;
  2326. }
  2327. .u-p-r-62 {
  2328. padding-right: 62rpx !important;
  2329. }
  2330. .u-margin-right-62 {
  2331. margin-right: 62rpx !important;
  2332. }
  2333. .u-padding-right-62 {
  2334. padding-right: 62rpx !important;
  2335. }
  2336. .u-m-b-62 {
  2337. margin-bottom: 62rpx !important;
  2338. }
  2339. .u-p-b-62 {
  2340. padding-bottom: 62rpx !important;
  2341. }
  2342. .u-margin-bottom-62 {
  2343. margin-bottom: 62rpx !important;
  2344. }
  2345. .u-padding-bottom-62 {
  2346. padding-bottom: 62rpx !important;
  2347. }
  2348. .u-margin-64, .u-m-64 {
  2349. margin: 64rpx !important;
  2350. }
  2351. .u-padding-64, .u-p-64 {
  2352. padding: 64rpx !important;
  2353. }
  2354. .u-m-l-64 {
  2355. margin-left: 64rpx !important;
  2356. }
  2357. .u-p-l-64 {
  2358. padding-left: 64rpx !important;
  2359. }
  2360. .u-margin-left-64 {
  2361. margin-left: 64rpx !important;
  2362. }
  2363. .u-padding-left-64 {
  2364. padding-left: 64rpx !important;
  2365. }
  2366. .u-m-t-64 {
  2367. margin-top: 64rpx !important;
  2368. }
  2369. .u-p-t-64 {
  2370. padding-top: 64rpx !important;
  2371. }
  2372. .u-margin-top-64 {
  2373. margin-top: 64rpx !important;
  2374. }
  2375. .u-padding-top-64 {
  2376. padding-top: 64rpx !important;
  2377. }
  2378. .u-m-r-64 {
  2379. margin-right: 64rpx !important;
  2380. }
  2381. .u-p-r-64 {
  2382. padding-right: 64rpx !important;
  2383. }
  2384. .u-margin-right-64 {
  2385. margin-right: 64rpx !important;
  2386. }
  2387. .u-padding-right-64 {
  2388. padding-right: 64rpx !important;
  2389. }
  2390. .u-m-b-64 {
  2391. margin-bottom: 64rpx !important;
  2392. }
  2393. .u-p-b-64 {
  2394. padding-bottom: 64rpx !important;
  2395. }
  2396. .u-margin-bottom-64 {
  2397. margin-bottom: 64rpx !important;
  2398. }
  2399. .u-padding-bottom-64 {
  2400. padding-bottom: 64rpx !important;
  2401. }
  2402. .u-margin-65, .u-m-65 {
  2403. margin: 65rpx !important;
  2404. }
  2405. .u-padding-65, .u-p-65 {
  2406. padding: 65rpx !important;
  2407. }
  2408. .u-m-l-65 {
  2409. margin-left: 65rpx !important;
  2410. }
  2411. .u-p-l-65 {
  2412. padding-left: 65rpx !important;
  2413. }
  2414. .u-margin-left-65 {
  2415. margin-left: 65rpx !important;
  2416. }
  2417. .u-padding-left-65 {
  2418. padding-left: 65rpx !important;
  2419. }
  2420. .u-m-t-65 {
  2421. margin-top: 65rpx !important;
  2422. }
  2423. .u-p-t-65 {
  2424. padding-top: 65rpx !important;
  2425. }
  2426. .u-margin-top-65 {
  2427. margin-top: 65rpx !important;
  2428. }
  2429. .u-padding-top-65 {
  2430. padding-top: 65rpx !important;
  2431. }
  2432. .u-m-r-65 {
  2433. margin-right: 65rpx !important;
  2434. }
  2435. .u-p-r-65 {
  2436. padding-right: 65rpx !important;
  2437. }
  2438. .u-margin-right-65 {
  2439. margin-right: 65rpx !important;
  2440. }
  2441. .u-padding-right-65 {
  2442. padding-right: 65rpx !important;
  2443. }
  2444. .u-m-b-65 {
  2445. margin-bottom: 65rpx !important;
  2446. }
  2447. .u-p-b-65 {
  2448. padding-bottom: 65rpx !important;
  2449. }
  2450. .u-margin-bottom-65 {
  2451. margin-bottom: 65rpx !important;
  2452. }
  2453. .u-padding-bottom-65 {
  2454. padding-bottom: 65rpx !important;
  2455. }
  2456. .u-margin-66, .u-m-66 {
  2457. margin: 66rpx !important;
  2458. }
  2459. .u-padding-66, .u-p-66 {
  2460. padding: 66rpx !important;
  2461. }
  2462. .u-m-l-66 {
  2463. margin-left: 66rpx !important;
  2464. }
  2465. .u-p-l-66 {
  2466. padding-left: 66rpx !important;
  2467. }
  2468. .u-margin-left-66 {
  2469. margin-left: 66rpx !important;
  2470. }
  2471. .u-padding-left-66 {
  2472. padding-left: 66rpx !important;
  2473. }
  2474. .u-m-t-66 {
  2475. margin-top: 66rpx !important;
  2476. }
  2477. .u-p-t-66 {
  2478. padding-top: 66rpx !important;
  2479. }
  2480. .u-margin-top-66 {
  2481. margin-top: 66rpx !important;
  2482. }
  2483. .u-padding-top-66 {
  2484. padding-top: 66rpx !important;
  2485. }
  2486. .u-m-r-66 {
  2487. margin-right: 66rpx !important;
  2488. }
  2489. .u-p-r-66 {
  2490. padding-right: 66rpx !important;
  2491. }
  2492. .u-margin-right-66 {
  2493. margin-right: 66rpx !important;
  2494. }
  2495. .u-padding-right-66 {
  2496. padding-right: 66rpx !important;
  2497. }
  2498. .u-m-b-66 {
  2499. margin-bottom: 66rpx !important;
  2500. }
  2501. .u-p-b-66 {
  2502. padding-bottom: 66rpx !important;
  2503. }
  2504. .u-margin-bottom-66 {
  2505. margin-bottom: 66rpx !important;
  2506. }
  2507. .u-padding-bottom-66 {
  2508. padding-bottom: 66rpx !important;
  2509. }
  2510. .u-margin-68, .u-m-68 {
  2511. margin: 68rpx !important;
  2512. }
  2513. .u-padding-68, .u-p-68 {
  2514. padding: 68rpx !important;
  2515. }
  2516. .u-m-l-68 {
  2517. margin-left: 68rpx !important;
  2518. }
  2519. .u-p-l-68 {
  2520. padding-left: 68rpx !important;
  2521. }
  2522. .u-margin-left-68 {
  2523. margin-left: 68rpx !important;
  2524. }
  2525. .u-padding-left-68 {
  2526. padding-left: 68rpx !important;
  2527. }
  2528. .u-m-t-68 {
  2529. margin-top: 68rpx !important;
  2530. }
  2531. .u-p-t-68 {
  2532. padding-top: 68rpx !important;
  2533. }
  2534. .u-margin-top-68 {
  2535. margin-top: 68rpx !important;
  2536. }
  2537. .u-padding-top-68 {
  2538. padding-top: 68rpx !important;
  2539. }
  2540. .u-m-r-68 {
  2541. margin-right: 68rpx !important;
  2542. }
  2543. .u-p-r-68 {
  2544. padding-right: 68rpx !important;
  2545. }
  2546. .u-margin-right-68 {
  2547. margin-right: 68rpx !important;
  2548. }
  2549. .u-padding-right-68 {
  2550. padding-right: 68rpx !important;
  2551. }
  2552. .u-m-b-68 {
  2553. margin-bottom: 68rpx !important;
  2554. }
  2555. .u-p-b-68 {
  2556. padding-bottom: 68rpx !important;
  2557. }
  2558. .u-margin-bottom-68 {
  2559. margin-bottom: 68rpx !important;
  2560. }
  2561. .u-padding-bottom-68 {
  2562. padding-bottom: 68rpx !important;
  2563. }
  2564. .u-margin-70, .u-m-70 {
  2565. margin: 70rpx !important;
  2566. }
  2567. .u-padding-70, .u-p-70 {
  2568. padding: 70rpx !important;
  2569. }
  2570. .u-m-l-70 {
  2571. margin-left: 70rpx !important;
  2572. }
  2573. .u-p-l-70 {
  2574. padding-left: 70rpx !important;
  2575. }
  2576. .u-margin-left-70 {
  2577. margin-left: 70rpx !important;
  2578. }
  2579. .u-padding-left-70 {
  2580. padding-left: 70rpx !important;
  2581. }
  2582. .u-m-t-70 {
  2583. margin-top: 70rpx !important;
  2584. }
  2585. .u-p-t-70 {
  2586. padding-top: 70rpx !important;
  2587. }
  2588. .u-margin-top-70 {
  2589. margin-top: 70rpx !important;
  2590. }
  2591. .u-padding-top-70 {
  2592. padding-top: 70rpx !important;
  2593. }
  2594. .u-m-r-70 {
  2595. margin-right: 70rpx !important;
  2596. }
  2597. .u-p-r-70 {
  2598. padding-right: 70rpx !important;
  2599. }
  2600. .u-margin-right-70 {
  2601. margin-right: 70rpx !important;
  2602. }
  2603. .u-padding-right-70 {
  2604. padding-right: 70rpx !important;
  2605. }
  2606. .u-m-b-70 {
  2607. margin-bottom: 70rpx !important;
  2608. }
  2609. .u-p-b-70 {
  2610. padding-bottom: 70rpx !important;
  2611. }
  2612. .u-margin-bottom-70 {
  2613. margin-bottom: 70rpx !important;
  2614. }
  2615. .u-padding-bottom-70 {
  2616. padding-bottom: 70rpx !important;
  2617. }
  2618. .u-margin-72, .u-m-72 {
  2619. margin: 72rpx !important;
  2620. }
  2621. .u-padding-72, .u-p-72 {
  2622. padding: 72rpx !important;
  2623. }
  2624. .u-m-l-72 {
  2625. margin-left: 72rpx !important;
  2626. }
  2627. .u-p-l-72 {
  2628. padding-left: 72rpx !important;
  2629. }
  2630. .u-margin-left-72 {
  2631. margin-left: 72rpx !important;
  2632. }
  2633. .u-padding-left-72 {
  2634. padding-left: 72rpx !important;
  2635. }
  2636. .u-m-t-72 {
  2637. margin-top: 72rpx !important;
  2638. }
  2639. .u-p-t-72 {
  2640. padding-top: 72rpx !important;
  2641. }
  2642. .u-margin-top-72 {
  2643. margin-top: 72rpx !important;
  2644. }
  2645. .u-padding-top-72 {
  2646. padding-top: 72rpx !important;
  2647. }
  2648. .u-m-r-72 {
  2649. margin-right: 72rpx !important;
  2650. }
  2651. .u-p-r-72 {
  2652. padding-right: 72rpx !important;
  2653. }
  2654. .u-margin-right-72 {
  2655. margin-right: 72rpx !important;
  2656. }
  2657. .u-padding-right-72 {
  2658. padding-right: 72rpx !important;
  2659. }
  2660. .u-m-b-72 {
  2661. margin-bottom: 72rpx !important;
  2662. }
  2663. .u-p-b-72 {
  2664. padding-bottom: 72rpx !important;
  2665. }
  2666. .u-margin-bottom-72 {
  2667. margin-bottom: 72rpx !important;
  2668. }
  2669. .u-padding-bottom-72 {
  2670. padding-bottom: 72rpx !important;
  2671. }
  2672. .u-margin-74, .u-m-74 {
  2673. margin: 74rpx !important;
  2674. }
  2675. .u-padding-74, .u-p-74 {
  2676. padding: 74rpx !important;
  2677. }
  2678. .u-m-l-74 {
  2679. margin-left: 74rpx !important;
  2680. }
  2681. .u-p-l-74 {
  2682. padding-left: 74rpx !important;
  2683. }
  2684. .u-margin-left-74 {
  2685. margin-left: 74rpx !important;
  2686. }
  2687. .u-padding-left-74 {
  2688. padding-left: 74rpx !important;
  2689. }
  2690. .u-m-t-74 {
  2691. margin-top: 74rpx !important;
  2692. }
  2693. .u-p-t-74 {
  2694. padding-top: 74rpx !important;
  2695. }
  2696. .u-margin-top-74 {
  2697. margin-top: 74rpx !important;
  2698. }
  2699. .u-padding-top-74 {
  2700. padding-top: 74rpx !important;
  2701. }
  2702. .u-m-r-74 {
  2703. margin-right: 74rpx !important;
  2704. }
  2705. .u-p-r-74 {
  2706. padding-right: 74rpx !important;
  2707. }
  2708. .u-margin-right-74 {
  2709. margin-right: 74rpx !important;
  2710. }
  2711. .u-padding-right-74 {
  2712. padding-right: 74rpx !important;
  2713. }
  2714. .u-m-b-74 {
  2715. margin-bottom: 74rpx !important;
  2716. }
  2717. .u-p-b-74 {
  2718. padding-bottom: 74rpx !important;
  2719. }
  2720. .u-margin-bottom-74 {
  2721. margin-bottom: 74rpx !important;
  2722. }
  2723. .u-padding-bottom-74 {
  2724. padding-bottom: 74rpx !important;
  2725. }
  2726. .u-margin-75, .u-m-75 {
  2727. margin: 75rpx !important;
  2728. }
  2729. .u-padding-75, .u-p-75 {
  2730. padding: 75rpx !important;
  2731. }
  2732. .u-m-l-75 {
  2733. margin-left: 75rpx !important;
  2734. }
  2735. .u-p-l-75 {
  2736. padding-left: 75rpx !important;
  2737. }
  2738. .u-margin-left-75 {
  2739. margin-left: 75rpx !important;
  2740. }
  2741. .u-padding-left-75 {
  2742. padding-left: 75rpx !important;
  2743. }
  2744. .u-m-t-75 {
  2745. margin-top: 75rpx !important;
  2746. }
  2747. .u-p-t-75 {
  2748. padding-top: 75rpx !important;
  2749. }
  2750. .u-margin-top-75 {
  2751. margin-top: 75rpx !important;
  2752. }
  2753. .u-padding-top-75 {
  2754. padding-top: 75rpx !important;
  2755. }
  2756. .u-m-r-75 {
  2757. margin-right: 75rpx !important;
  2758. }
  2759. .u-p-r-75 {
  2760. padding-right: 75rpx !important;
  2761. }
  2762. .u-margin-right-75 {
  2763. margin-right: 75rpx !important;
  2764. }
  2765. .u-padding-right-75 {
  2766. padding-right: 75rpx !important;
  2767. }
  2768. .u-m-b-75 {
  2769. margin-bottom: 75rpx !important;
  2770. }
  2771. .u-p-b-75 {
  2772. padding-bottom: 75rpx !important;
  2773. }
  2774. .u-margin-bottom-75 {
  2775. margin-bottom: 75rpx !important;
  2776. }
  2777. .u-padding-bottom-75 {
  2778. padding-bottom: 75rpx !important;
  2779. }
  2780. .u-margin-76, .u-m-76 {
  2781. margin: 76rpx !important;
  2782. }
  2783. .u-padding-76, .u-p-76 {
  2784. padding: 76rpx !important;
  2785. }
  2786. .u-m-l-76 {
  2787. margin-left: 76rpx !important;
  2788. }
  2789. .u-p-l-76 {
  2790. padding-left: 76rpx !important;
  2791. }
  2792. .u-margin-left-76 {
  2793. margin-left: 76rpx !important;
  2794. }
  2795. .u-padding-left-76 {
  2796. padding-left: 76rpx !important;
  2797. }
  2798. .u-m-t-76 {
  2799. margin-top: 76rpx !important;
  2800. }
  2801. .u-p-t-76 {
  2802. padding-top: 76rpx !important;
  2803. }
  2804. .u-margin-top-76 {
  2805. margin-top: 76rpx !important;
  2806. }
  2807. .u-padding-top-76 {
  2808. padding-top: 76rpx !important;
  2809. }
  2810. .u-m-r-76 {
  2811. margin-right: 76rpx !important;
  2812. }
  2813. .u-p-r-76 {
  2814. padding-right: 76rpx !important;
  2815. }
  2816. .u-margin-right-76 {
  2817. margin-right: 76rpx !important;
  2818. }
  2819. .u-padding-right-76 {
  2820. padding-right: 76rpx !important;
  2821. }
  2822. .u-m-b-76 {
  2823. margin-bottom: 76rpx !important;
  2824. }
  2825. .u-p-b-76 {
  2826. padding-bottom: 76rpx !important;
  2827. }
  2828. .u-margin-bottom-76 {
  2829. margin-bottom: 76rpx !important;
  2830. }
  2831. .u-padding-bottom-76 {
  2832. padding-bottom: 76rpx !important;
  2833. }
  2834. .u-margin-78, .u-m-78 {
  2835. margin: 78rpx !important;
  2836. }
  2837. .u-padding-78, .u-p-78 {
  2838. padding: 78rpx !important;
  2839. }
  2840. .u-m-l-78 {
  2841. margin-left: 78rpx !important;
  2842. }
  2843. .u-p-l-78 {
  2844. padding-left: 78rpx !important;
  2845. }
  2846. .u-margin-left-78 {
  2847. margin-left: 78rpx !important;
  2848. }
  2849. .u-padding-left-78 {
  2850. padding-left: 78rpx !important;
  2851. }
  2852. .u-m-t-78 {
  2853. margin-top: 78rpx !important;
  2854. }
  2855. .u-p-t-78 {
  2856. padding-top: 78rpx !important;
  2857. }
  2858. .u-margin-top-78 {
  2859. margin-top: 78rpx !important;
  2860. }
  2861. .u-padding-top-78 {
  2862. padding-top: 78rpx !important;
  2863. }
  2864. .u-m-r-78 {
  2865. margin-right: 78rpx !important;
  2866. }
  2867. .u-p-r-78 {
  2868. padding-right: 78rpx !important;
  2869. }
  2870. .u-margin-right-78 {
  2871. margin-right: 78rpx !important;
  2872. }
  2873. .u-padding-right-78 {
  2874. padding-right: 78rpx !important;
  2875. }
  2876. .u-m-b-78 {
  2877. margin-bottom: 78rpx !important;
  2878. }
  2879. .u-p-b-78 {
  2880. padding-bottom: 78rpx !important;
  2881. }
  2882. .u-margin-bottom-78 {
  2883. margin-bottom: 78rpx !important;
  2884. }
  2885. .u-padding-bottom-78 {
  2886. padding-bottom: 78rpx !important;
  2887. }
  2888. .u-margin-80, .u-m-80 {
  2889. margin: 80rpx !important;
  2890. }
  2891. .u-padding-80, .u-p-80 {
  2892. padding: 80rpx !important;
  2893. }
  2894. .u-m-l-80 {
  2895. margin-left: 80rpx !important;
  2896. }
  2897. .u-p-l-80 {
  2898. padding-left: 80rpx !important;
  2899. }
  2900. .u-margin-left-80 {
  2901. margin-left: 80rpx !important;
  2902. }
  2903. .u-padding-left-80 {
  2904. padding-left: 80rpx !important;
  2905. }
  2906. .u-m-t-80 {
  2907. margin-top: 80rpx !important;
  2908. }
  2909. .u-p-t-80 {
  2910. padding-top: 80rpx !important;
  2911. }
  2912. .u-margin-top-80 {
  2913. margin-top: 80rpx !important;
  2914. }
  2915. .u-padding-top-80 {
  2916. padding-top: 80rpx !important;
  2917. }
  2918. .u-m-r-80 {
  2919. margin-right: 80rpx !important;
  2920. }
  2921. .u-p-r-80 {
  2922. padding-right: 80rpx !important;
  2923. }
  2924. .u-margin-right-80 {
  2925. margin-right: 80rpx !important;
  2926. }
  2927. .u-padding-right-80 {
  2928. padding-right: 80rpx !important;
  2929. }
  2930. .u-m-b-80 {
  2931. margin-bottom: 80rpx !important;
  2932. }
  2933. .u-p-b-80 {
  2934. padding-bottom: 80rpx !important;
  2935. }
  2936. .u-margin-bottom-80 {
  2937. margin-bottom: 80rpx !important;
  2938. }
  2939. .u-padding-bottom-80 {
  2940. padding-bottom: 80rpx !important;
  2941. }
  2942. .u-reset-nvue {
  2943. -webkit-box-orient: horizontal;
  2944. -webkit-box-direction: normal;
  2945. -webkit-flex-direction: row;
  2946. flex-direction: row;
  2947. -webkit-box-align: center;
  2948. -webkit-align-items: center;
  2949. align-items: center;
  2950. }
  2951. .u-type-primary-light {
  2952. color: #ecf5ff;
  2953. }
  2954. .u-type-warning-light {
  2955. color: #fdf6ec;
  2956. }
  2957. .u-type-success-light {
  2958. color: #dbf1e1;
  2959. }
  2960. .u-type-error-light {
  2961. color: #fef0f0;
  2962. }
  2963. .u-type-info-light {
  2964. color: #f4f4f5;
  2965. }
  2966. .u-type-primary-light-bg {
  2967. background-color: #ecf5ff;
  2968. }
  2969. .u-type-warning-light-bg {
  2970. background-color: #fdf6ec;
  2971. }
  2972. .u-type-success-light-bg {
  2973. background-color: #dbf1e1;
  2974. }
  2975. .u-type-error-light-bg {
  2976. background-color: #fef0f0;
  2977. }
  2978. .u-type-info-light-bg {
  2979. background-color: #f4f4f5;
  2980. }
  2981. .u-type-primary-dark {
  2982. color: #2b85e4;
  2983. }
  2984. .u-type-warning-dark {
  2985. color: #f29100;
  2986. }
  2987. .u-type-success-dark {
  2988. color: #18b566;
  2989. }
  2990. .u-type-error-dark {
  2991. color: #dd6161;
  2992. }
  2993. .u-type-info-dark {
  2994. color: #82848a;
  2995. }
  2996. .u-type-primary-dark-bg {
  2997. background-color: #2b85e4;
  2998. }
  2999. .u-type-warning-dark-bg {
  3000. background-color: #f29100;
  3001. }
  3002. .u-type-success-dark-bg {
  3003. background-color: #18b566;
  3004. }
  3005. .u-type-error-dark-bg {
  3006. background-color: #dd6161;
  3007. }
  3008. .u-type-info-dark-bg {
  3009. background-color: #82848a;
  3010. }
  3011. .u-type-primary-disabled {
  3012. color: #a0cfff;
  3013. }
  3014. .u-type-warning-disabled {
  3015. color: #fcbd71;
  3016. }
  3017. .u-type-success-disabled {
  3018. color: #71d5a1;
  3019. }
  3020. .u-type-error-disabled {
  3021. color: #fab6b6;
  3022. }
  3023. .u-type-info-disabled {
  3024. color: #c8c9cc;
  3025. }
  3026. .u-type-primary {
  3027. color: #2979ff;
  3028. }
  3029. .u-type-warning {
  3030. color: #ff9900;
  3031. }
  3032. .u-type-success {
  3033. color: #19be6b;
  3034. }
  3035. .u-type-error {
  3036. color: #fa3534;
  3037. }
  3038. .u-type-info {
  3039. color: #909399;
  3040. }
  3041. .u-type-primary-bg {
  3042. background-color: #2979ff;
  3043. }
  3044. .u-type-warning-bg {
  3045. background-color: #ff9900;
  3046. }
  3047. .u-type-success-bg {
  3048. background-color: #19be6b;
  3049. }
  3050. .u-type-error-bg {
  3051. background-color: #fa3534;
  3052. }
  3053. .u-type-info-bg {
  3054. background-color: #909399;
  3055. }
  3056. .u-main-color {
  3057. color: #303133;
  3058. }
  3059. .u-content-color {
  3060. color: #606266;
  3061. }
  3062. .u-tips-color {
  3063. color: #909399;
  3064. }
  3065. .u-light-color {
  3066. color: #c0c4cc;
  3067. }
  3068. page {
  3069. color: #303133;
  3070. font-size: 28rpx;
  3071. }
  3072. /* start--去除webkit的默认样式--start */
  3073. .u-fix-ios-appearance {
  3074. -webkit-appearance: none;
  3075. }
  3076. /* end--去除webkit的默认样式--end */
  3077. /* start--icon图标外层套一个view,让其达到更好的垂直居中的效果--start */
  3078. .u-icon-wrap {
  3079. display: -webkit-box;
  3080. display: -webkit-flex;
  3081. display: flex;
  3082. -webkit-box-align: center;
  3083. -webkit-align-items: center;
  3084. align-items: center;
  3085. }
  3086. /* end-icon图标外层套一个view,让其达到更好的垂直居中的效果--end */
  3087. /* start--iPhoneX底部安全区定义--start */
  3088. .safe-area-inset-bottom {
  3089. padding-bottom: 0;
  3090. padding-bottom: constant(safe-area-inset-bottom);
  3091. padding-bottom: env(safe-area-inset-bottom);
  3092. }
  3093. /* end-iPhoneX底部安全区定义--end */
  3094. /* start--各种hover点击反馈相关的类名-start */
  3095. .u-hover-class {
  3096. opacity: 0.6;
  3097. }
  3098. .u-cell-hover {
  3099. background-color: #f7f8f9 !important;
  3100. }
  3101. /* end--各种hover点击反馈相关的类名--end */
  3102. /* start--文本行数限制--start */
  3103. .u-line-1 {
  3104. overflow: hidden;
  3105. white-space: nowrap;
  3106. text-overflow: ellipsis;
  3107. }
  3108. .u-line-2 {
  3109. -webkit-line-clamp: 2;
  3110. }
  3111. .u-line-3 {
  3112. -webkit-line-clamp: 3;
  3113. }
  3114. .u-line-4 {
  3115. -webkit-line-clamp: 4;
  3116. }
  3117. .u-line-5 {
  3118. -webkit-line-clamp: 5;
  3119. }
  3120. .u-line-2, .u-line-3, .u-line-4, .u-line-5 {
  3121. overflow: hidden;
  3122. word-break: break-all;
  3123. text-overflow: ellipsis;
  3124. display: -webkit-box;
  3125. -webkit-box-orient: vertical;
  3126. }
  3127. /* end--文本行数限制--end */
  3128. /* start--Retina 屏幕下的 1px 边框--start */
  3129. .u-border,
  3130. .u-border-bottom,
  3131. .u-border-left,
  3132. .u-border-right,
  3133. .u-border-top,
  3134. .u-border-top-bottom {
  3135. position: relative;
  3136. }
  3137. .u-border-bottom:after,
  3138. .u-border-left:after,
  3139. .u-border-right:after,
  3140. .u-border-top-bottom:after,
  3141. .u-border-top:after,
  3142. .u-border:after {
  3143. content: ' ';
  3144. position: absolute;
  3145. left: 0;
  3146. top: 0;
  3147. pointer-events: none;
  3148. box-sizing: border-box;
  3149. -webkit-transform-origin: 0 0;
  3150. transform-origin: 0 0;
  3151. width: 199.8%;
  3152. height: 199.7%;
  3153. -webkit-transform: scale(0.5, 0.5);
  3154. transform: scale(0.5, 0.5);
  3155. border: 0 solid #e4e7ed;
  3156. z-index: 2;
  3157. }
  3158. .u-border-top:after {
  3159. border-top-width: 1px;
  3160. }
  3161. .u-border-left:after {
  3162. border-left-width: 1px;
  3163. }
  3164. .u-border-right:after {
  3165. border-right-width: 1px;
  3166. }
  3167. .u-border-bottom:after {
  3168. border-bottom-width: 1px;
  3169. }
  3170. .u-border-top-bottom:after {
  3171. border-width: 1px 0;
  3172. }
  3173. .u-border:after {
  3174. border-width: 1px;
  3175. }
  3176. /* end--Retina 屏幕下的 1px 边框--end */
  3177. /* start--clearfix--start */
  3178. .u-clearfix:after,
  3179. .clearfix:after {
  3180. content: '';
  3181. display: table;
  3182. clear: both;
  3183. }
  3184. /* end--clearfix--end */
  3185. /* start--高斯模糊tabbar底部处理--start */
  3186. .u-blur-effect-inset {
  3187. width: 750rpx;
  3188. height: 0px;
  3189. background-color: #FFFFFF;
  3190. }
  3191. /* end--高斯模糊tabbar底部处理--end */
  3192. /* start--提升H5端uni.toast()的层级,避免被uView的modal等遮盖--start */
  3193. /* end--提升H5端uni.toast()的层级,避免被uView的modal等遮盖--end */
  3194. /* start--去除button的所有默认样式--start */
  3195. .u-reset-button {
  3196. padding: 0;
  3197. font-size: inherit;
  3198. line-height: inherit;
  3199. background-color: transparent;
  3200. color: inherit;
  3201. }
  3202. .u-reset-button::after {
  3203. border: none;
  3204. }
  3205. /* end--去除button的所有默认样式--end */
  3206. /* start--微信小程序编译后页面有组件名的元素,特别处理--start */
  3207. u-td, u-th {
  3208. -webkit-box-flex: 1;
  3209. -webkit-flex: 1;
  3210. flex: 1;
  3211. -webkit-align-self: stretch;
  3212. align-self: stretch;
  3213. }
  3214. .u-td {
  3215. height: 100%;
  3216. }
  3217. u-icon {
  3218. display: -webkit-inline-box;
  3219. display: -webkit-inline-flex;
  3220. display: inline-flex;
  3221. -webkit-box-align: center;
  3222. -webkit-align-items: center;
  3223. align-items: center;
  3224. }
  3225. u-grid {
  3226. width: 100%;
  3227. -webkit-box-flex: 0;
  3228. -webkit-flex: 0 0 100%;
  3229. flex: 0 0 100%;
  3230. }
  3231. u-line {
  3232. -webkit-box-flex: 1;
  3233. -webkit-flex: 1;
  3234. flex: 1;
  3235. }
  3236. u-switch {
  3237. display: -webkit-inline-box;
  3238. display: -webkit-inline-flex;
  3239. display: inline-flex;
  3240. -webkit-box-align: center;
  3241. -webkit-align-items: center;
  3242. align-items: center;
  3243. }
  3244. u-dropdown {
  3245. -webkit-box-flex: 1;
  3246. -webkit-flex: 1;
  3247. flex: 1;
  3248. }
  3249. /* end-微信小程序编译后页面有组件名的元素,特别处理--end */
  3250. /* start--头条小程序编译后页面有组件名的元素,特别处理--start */
  3251. /* end-头条小程序编译后页面有组件名的元素,特别处理--end */