zcm-main.css 12 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199
  1. /* 防止图片闪一下 */
  2. image {
  3. will-change: transform
  4. }
  5. /* scroll-view */
  6. .scroll-row {
  7. width: 100%;
  8. white-space: nowrap;
  9. }
  10. .scroll-row-item {
  11. display: inline-block;
  12. }
  13. .box-sizing {
  14. box-sizing: border-box
  15. }
  16. .dis {
  17. display: flex;
  18. }
  19. .j-s {
  20. justify-content: space-between;
  21. }
  22. .j-c {
  23. justify-content: center;
  24. }
  25. .j-start {
  26. justify-content: flex-start;
  27. }
  28. .j-end {
  29. justify-content: flex-end;
  30. }
  31. .a-c {
  32. align-items: center;
  33. }
  34. .a-start {
  35. align-items: flex-start;
  36. }
  37. .a-end {
  38. align-items: flex-end;
  39. }
  40. .f-c {
  41. flex-direction: column;
  42. }
  43. .f-wrap {
  44. flex-wrap: wrap;
  45. }
  46. body {
  47. --primary: #007bff;
  48. --secondary: #6c757d;
  49. --success: #28a745;
  50. --danger: #dc3545;
  51. --warning: #ffc107;
  52. --info: #17a2b8;
  53. --light: #f8f9fa;
  54. --dark: #343a40;
  55. --muted: #6c757d;
  56. --white: #fff;
  57. --borderColor: #dee2e6;
  58. --lightmuted: #B2B2B2;
  59. }
  60. /* 阴影 */
  61. .shadow-sm {
  62. box-shadow: 0 2upx 4upx rgba(114, 130, 138, 0.2) !important;
  63. }
  64. .shadow {
  65. box-shadow: 0 8upx 16upx rgba(114, 130, 138, 0.2) !important;
  66. }
  67. .shadow-lg {
  68. box-shadow: 0 16upx 48upx rgba(114, 130, 138, 0.2) !important;
  69. }
  70. /* 定位 */
  71. .position-absolute {
  72. position: absolute;
  73. }
  74. .position-fixed {
  75. position: fixed;
  76. }
  77. .position-relative {
  78. position: relative;
  79. }
  80. .left-0 {
  81. left: 0;
  82. }
  83. .top-0 {
  84. top: 0;
  85. }
  86. .bottom-0 {
  87. bottom: 0;
  88. }
  89. .right-0 {
  90. right: 0;
  91. }
  92. /* 宽高 */
  93. .w-100 {
  94. width: 100%;
  95. }
  96. .w-50 {
  97. width: 50%;
  98. }
  99. .h-100 {
  100. height: 1250upx;
  101. }
  102. .h-50 {
  103. width: 625upx;
  104. }
  105. /* 字体 */
  106. .font {
  107. font-size: 25upx;
  108. }
  109. .font-sm {
  110. font-size: 22upx;
  111. }
  112. .font-md {
  113. font-size: 30upx;
  114. }
  115. .font-lg {
  116. font-size: 40upx;
  117. }
  118. .font-lgr {
  119. font-size: 50upx;
  120. }
  121. .font-big {
  122. font-size: 60upx;
  123. }
  124. .font-weight {
  125. font-weight: bold !important;
  126. }
  127. .font-weight-100 {
  128. font-weight: 100 !important;
  129. }
  130. .line-h0 {
  131. line-height: 0 !important;
  132. }
  133. .line-h {
  134. line-height: 1 !important;
  135. }
  136. .line-h-sm {
  137. line-height: 1.2 !important;
  138. }
  139. .line-h-md {
  140. line-height: 1.5 !important;
  141. }
  142. .line-h-lg {
  143. line-height: 2 !important;
  144. }
  145. .line-h-big {
  146. line-height: 3 !important;
  147. }
  148. .line-through {
  149. text-decoration: line-through;
  150. }
  151. .text-center {
  152. text-align: center;
  153. }
  154. .text-left {
  155. text-align: left;
  156. }
  157. .text-right {
  158. text-align: right;
  159. }
  160. .row {
  161. box-sizing: border-box !important;
  162. display: flex !important;
  163. flex-direction: row;
  164. flex-wrap: wrap;
  165. }
  166. [class*='col-'],
  167. [class*='span-'],
  168. [class*='span24-'] {
  169. min-height: 1px;
  170. box-sizing: border-box !important;
  171. }
  172. /* 栅栏一 */
  173. .col-1 {
  174. width: 62.5upx;
  175. }
  176. .col-2 {
  177. width: 125upx;
  178. }
  179. .col-3 {
  180. width: 187.5upx;
  181. }
  182. .col-4 {
  183. width: 250upx;
  184. }
  185. .col-5 {
  186. width: 312.5upx;
  187. }
  188. .col-6 {
  189. width: 375upx;
  190. }
  191. .col-7 {
  192. width: 437.5upx;
  193. }
  194. .col-8 {
  195. width: 500upx;
  196. }
  197. .col-9 {
  198. width: 562.5upx;
  199. }
  200. .col-10 {
  201. width: 625upx;
  202. }
  203. .col-11 {
  204. width: 687.5upx;
  205. }
  206. .col-12 {
  207. width: 750upx;
  208. }
  209. /* 栅栏二 */
  210. .span-1 {
  211. width: 5%;
  212. }
  213. .span-2 {
  214. width: 10%;
  215. }
  216. .span-3 {
  217. width: 15%;
  218. }
  219. .span-4 {
  220. width: 20%;
  221. }
  222. .span-5 {
  223. width: 25%;
  224. }
  225. .span-6 {
  226. width: 30%;
  227. }
  228. .span-7 {
  229. width: 35%;
  230. }
  231. .span-8 {
  232. width: 40%;
  233. }
  234. .span-9 {
  235. width: 45%;
  236. }
  237. .span-10 {
  238. width: 50%;
  239. }
  240. .span-11 {
  241. width: 55%;
  242. }
  243. .span-12 {
  244. width: 60%;
  245. }
  246. .span-13 {
  247. width: 65%;
  248. }
  249. .span-14 {
  250. width: 70%;
  251. }
  252. .span-15 {
  253. width: 75%;
  254. }
  255. .span-16 {
  256. width: 80%;
  257. }
  258. .span-17 {
  259. width: 85%;
  260. }
  261. .span-18 {
  262. width: 90%;
  263. }
  264. .span-19 {
  265. width: 95%;
  266. }
  267. .span-20 {
  268. width: 100%;
  269. }
  270. /* 栅栏三 */
  271. .span24-1 {
  272. width: 4.17%;
  273. }
  274. .span24-2 {
  275. width: 8.33%;
  276. }
  277. .span24-3 {
  278. width: 12.5%;
  279. }
  280. .span24-4 {
  281. width: 16.67%;
  282. }
  283. .span24-5 {
  284. width: 20.83%;
  285. }
  286. .span24-6 {
  287. width: 25%;
  288. }
  289. .span24-7 {
  290. width: 29.17%;
  291. }
  292. .span24-8 {
  293. width: 33.33%;
  294. }
  295. .span24-9 {
  296. width: 37.5%;
  297. }
  298. .span24-10 {
  299. width: 41.67%;
  300. }
  301. .span24-11 {
  302. width: 45.83%;
  303. }
  304. .span24-12 {
  305. width: 50%;
  306. }
  307. .span24-13 {
  308. width: 54.17%;
  309. }
  310. .span24-14 {
  311. width: 58.33%;
  312. }
  313. .span24-15 {
  314. width: 62.5%;
  315. }
  316. .span24-16 {
  317. width: 66.67%;
  318. }
  319. .span24-17 {
  320. width: 70.83%;
  321. }
  322. .span24-18 {
  323. width: 75%;
  324. }
  325. .span24-19 {
  326. width: 79.17%;
  327. }
  328. .span24-20 {
  329. width: 83.33%;
  330. }
  331. .span24-21 {
  332. width: 87.5%;
  333. }
  334. .span24-22 {
  335. width: 91.67%;
  336. }
  337. .span24-23 {
  338. width: 95.83%;
  339. }
  340. .span24-24 {
  341. width: 100%;
  342. }
  343. /* flex布局 */
  344. .d-flex {
  345. display: flex;
  346. }
  347. .d-block {
  348. display: block;
  349. }
  350. .d-inline-block {
  351. display: inline-block;
  352. }
  353. .flex-1 {
  354. flex: 1;
  355. }
  356. .flex-column {
  357. flex-direction: column;
  358. }
  359. .flex-row {
  360. flex-direction: row;
  361. }
  362. .flex-wrap {
  363. flex-wrap: wrap;
  364. }
  365. .flex-nowrap {
  366. flex-wrap: nowrap;
  367. }
  368. .flex-shrink {
  369. flex-shrink: 0;
  370. }
  371. .j-start {
  372. justify-content: flex-start;
  373. }
  374. .j-center {
  375. justify-content: center;
  376. }
  377. .j-end {
  378. justify-content: flex-end;
  379. }
  380. .j-sb {
  381. justify-content: space-between;
  382. }
  383. .a-center {
  384. align-items: center;
  385. }
  386. .a-start {
  387. align-items: flex-start;
  388. }
  389. .a-end {
  390. align-items: flex-end;
  391. }
  392. .a-stretch {
  393. align-items: stretch;
  394. }
  395. .a-self-start {
  396. align-self: flex-start;
  397. }
  398. .a-self-auto {
  399. align-self: auto;
  400. }
  401. .a-self-end {
  402. align-self: flex-end;
  403. }
  404. .a-self-stretch {
  405. align-self: stretch;
  406. }
  407. .a-self-baseline {
  408. align-self: baseline;
  409. }
  410. /* Border */
  411. .border {
  412. border-width: 1px;
  413. border-style: solid;
  414. border-color: var(--borderColor);
  415. }
  416. .border-top {
  417. border-top-width: 1px;
  418. border-top-style: solid;
  419. border-top-color: var(--borderColor);
  420. }
  421. .border-right {
  422. border-right-width: 1px;
  423. border-right-style: solid;
  424. border-right-color: var(--borderColor);
  425. }
  426. .border-bottom {
  427. border-bottom-width: 1px;
  428. border-bottom-style: solid;
  429. border-bottom-color: var(--borderColor);
  430. }
  431. .border-left {
  432. border-left-width: 1px;
  433. border-left-style: solid;
  434. border-left-color: var(--borderColor);
  435. }
  436. .border-0 {
  437. border-width: 0;
  438. }
  439. .border-top-0 {
  440. border-top-width: 0;
  441. }
  442. .border-right-0 {
  443. border-right-width: 0;
  444. }
  445. .border-bottom-0 {
  446. border-bottom-width: 0;
  447. }
  448. .border-left-0 {
  449. border-left-width: 0;
  450. }
  451. .border-primary {
  452. border-color: var(--primary) !important
  453. }
  454. .border-secondary {
  455. border-color: var(--secondary) !important
  456. }
  457. .border-success {
  458. border-color: var(--success) !important
  459. }
  460. .border-danger {
  461. border-color: var(--danger) !important
  462. }
  463. .border-warning {
  464. border-color: var(--warning) !important
  465. }
  466. .border-info {
  467. border-color: var(--info) !important
  468. }
  469. .border-light {
  470. border-color: var(--light) !important
  471. }
  472. .border-dark {
  473. border-color: var(--dark) !important
  474. }
  475. .border-white {
  476. border-color: var(--white) !important
  477. }
  478. .border-light-secondary {
  479. border-color: #F1F1F1 !important;
  480. }
  481. .rounded {
  482. border-radius: 5upx;
  483. }
  484. .rounded-circle {
  485. border-radius: 100%;
  486. }
  487. .rounded-0 {
  488. border-radius: 0;
  489. }
  490. /* color */
  491. .text-primary {
  492. color: var(--primary) !important;
  493. }
  494. .text-secondary {
  495. color: var(--secondary) !important;
  496. }
  497. .text-success {
  498. color: var(--success) !important;
  499. }
  500. .text-danger {
  501. color: var(--danger) !important;
  502. }
  503. .text-warning {
  504. color: var(--warning) !important;
  505. }
  506. .text-info {
  507. color: var(--info) !important;
  508. }
  509. .text-light {
  510. color: var(--light) !important;
  511. }
  512. .text-dark {
  513. color: var(--dark) !important;
  514. }
  515. .text-muted {
  516. color: var(--muted) !important;
  517. }
  518. .text-light-muted {
  519. color: var(--lightmuted) !important;
  520. }
  521. .text-white {
  522. color: var(--white) !important;
  523. }
  524. .bg-primary {
  525. background-color: var(--primary) !important;
  526. }
  527. .bg-secondary {
  528. background-color: var(--secondary) !important;
  529. }
  530. .bg-success {
  531. background-color: var(--success) !important;
  532. }
  533. .bg-danger {
  534. background-color: var(--danger) !important;
  535. }
  536. .bg-warning {
  537. background-color: var(--warning) !important;
  538. }
  539. .bg-info {
  540. background-color: var(--info) !important;
  541. }
  542. .bg-light {
  543. background-color: var(--light) !important;
  544. }
  545. .bg-dark {
  546. background-color: var(--dark) !important;
  547. }
  548. .bg-white {
  549. background-color: var(--white) !important;
  550. }
  551. .bg-light-secondary {
  552. background-color: #F1F1F1 !important;
  553. }
  554. /* Spacing */
  555. .m-0 {
  556. margin-left: 0;
  557. margin-right: 0;
  558. margin-top: 0;
  559. margin-bottom: 0;
  560. }
  561. .m {
  562. margin-left: 5upx;
  563. margin-right: 5upx;
  564. margin-top: 5upx;
  565. margin-bottom: 5upx;
  566. }
  567. .m-1 {
  568. margin-left: 10upx;
  569. margin-right: 10upx;
  570. margin-top: 10upx;
  571. margin-bottom: 10upx;
  572. }
  573. .m-2 {
  574. margin-left: 20upx;
  575. margin-right: 20upx;
  576. margin-top: 20upx;
  577. margin-bottom: 20upx;
  578. }
  579. .m-3 {
  580. margin-left: 30upx;
  581. margin-right: 30upx;
  582. margin-top: 30upx;
  583. margin-bottom: 30upx;
  584. }
  585. .m-4 {
  586. margin-left: 40upx;
  587. margin-right: 40upx;
  588. margin-top: 40upx;
  589. margin-bottom: 40upx;
  590. }
  591. .m-5 {
  592. margin-left: 50upx;
  593. margin-right: 50upx;
  594. margin-top: 50upx;
  595. margin-bottom: 50upx;
  596. }
  597. .mx-0 {
  598. margin-left: 0;
  599. margin-right: 0;
  600. }
  601. .mx {
  602. margin-left: 5upx;
  603. margin-right: 5upx;
  604. }
  605. .mx-1 {
  606. margin-left: 10upx;
  607. margin-right: 10upx;
  608. }
  609. .mx-2 {
  610. margin-left: 20upx;
  611. margin-right: 20upx;
  612. }
  613. .mx-3 {
  614. margin-left: 30upx;
  615. margin-right: 30upx;
  616. }
  617. .mx-4 {
  618. margin-left: 40upx;
  619. margin-right: 40upx;
  620. }
  621. .mx-5 {
  622. margin-left: 50upx;
  623. margin-right: 50upx;
  624. }
  625. .my-0 {
  626. margin-top: 0;
  627. margin-bottom: 0;
  628. }
  629. .my {
  630. margin-top: 5upx;
  631. margin-bottom: 5upx;
  632. }
  633. .my-1 {
  634. margin-top: 10upx;
  635. margin-bottom: 10upx;
  636. }
  637. .my-2 {
  638. margin-top: 20upx;
  639. margin-bottom: 20upx;
  640. }
  641. .my-3 {
  642. margin-top: 30upx;
  643. margin-bottom: 30upx;
  644. }
  645. .my-4 {
  646. margin-top: 40upx;
  647. margin-bottom: 40upx;
  648. }
  649. .my-5 {
  650. margin-top: 50upx;
  651. margin-bottom: 50upx;
  652. }
  653. .mt-0 {
  654. margin-top: 0;
  655. }
  656. .mt {
  657. margin-top: 5upx;
  658. }
  659. .mt-auto {
  660. margin-top: auto;
  661. }
  662. .mt-1 {
  663. margin-top: 10upx;
  664. }
  665. .mt-2 {
  666. margin-top: 20upx;
  667. }
  668. .mt-3 {
  669. margin-top: 30upx;
  670. }
  671. .mt-4 {
  672. margin-top: 40upx;
  673. }
  674. .mt-5 {
  675. margin-top: 50upx;
  676. }
  677. .mb-0 {
  678. margin-bottom: 0;
  679. }
  680. .mb {
  681. margin-bottom: 5upx;
  682. }
  683. .mb-auto {
  684. margin-bottom: auto;
  685. }
  686. .mb-1 {
  687. margin-bottom: 10upx;
  688. }
  689. .mb-2 {
  690. margin-bottom: 20upx;
  691. }
  692. .mb-3 {
  693. margin-bottom: 30upx;
  694. }
  695. .mb-4 {
  696. margin-bottom: 40upx;
  697. }
  698. .mb-5 {
  699. margin-bottom: 50upx;
  700. }
  701. .ml-0 {
  702. margin-left: 0;
  703. }
  704. .ml {
  705. margin-left: 5upx;
  706. }
  707. .ml-auto {
  708. margin-left: auto;
  709. }
  710. .ml-1 {
  711. margin-left: 10upx;
  712. }
  713. .ml-2 {
  714. margin-left: 20upx;
  715. }
  716. .ml-3 {
  717. margin-left: 30upx;
  718. }
  719. .ml-4 {
  720. margin-left: 40upx;
  721. }
  722. .ml-5 {
  723. margin-left: 50upx;
  724. }
  725. .mr-0 {
  726. margin-right: 0;
  727. }
  728. .mr {
  729. margin-right: 5upx;
  730. }
  731. .mr-1 {
  732. margin-right: 10upx;
  733. }
  734. .mr-2 {
  735. margin-right: 20upx;
  736. }
  737. .mr-3 {
  738. margin-right: 30upx;
  739. }
  740. .mr-4 {
  741. margin-right: 40upx;
  742. }
  743. .mr-5 {
  744. margin-right: 50upx;
  745. }
  746. .p-0 {
  747. padding-left: 0;
  748. padding-right: 0;
  749. padding-top: 0;
  750. padding-bottom: 0;
  751. }
  752. .p {
  753. padding-left: 5upx;
  754. padding-right: 5upx;
  755. padding-top: 5upx;
  756. padding-bottom: 5upx;
  757. }
  758. .p-1 {
  759. padding-left: 10upx;
  760. padding-right: 10upx;
  761. padding-top: 10upx;
  762. padding-bottom: 10upx;
  763. }
  764. .p-2 {
  765. padding-left: 20upx;
  766. padding-right: 20upx;
  767. padding-top: 20upx;
  768. padding-bottom: 20upx;
  769. }
  770. .p-3 {
  771. padding-left: 30upx;
  772. padding-right: 30upx;
  773. padding-top: 30upx;
  774. padding-bottom: 30upx;
  775. }
  776. .p-4 {
  777. padding-left: 40upx;
  778. padding-right: 40upx;
  779. padding-top: 40upx;
  780. padding-bottom: 40upx;
  781. }
  782. .p-5 {
  783. padding-left: 50upx;
  784. padding-right: 50upx;
  785. padding-top: 50upx;
  786. padding-bottom: 50upx;
  787. }
  788. .px-0 {
  789. padding-left: 0;
  790. padding-right: 0;
  791. }
  792. .px {
  793. padding-left: 5upx;
  794. padding-right: 5upx;
  795. }
  796. .px-1 {
  797. padding-left: 10upx;
  798. padding-right: 10upx;
  799. }
  800. .px-2 {
  801. padding-left: 20upx;
  802. padding-right: 20upx;
  803. }
  804. .px-3 {
  805. padding-left: 30upx;
  806. padding-right: 30upx;
  807. }
  808. .px-4 {
  809. padding-left: 40upx;
  810. padding-right: 40upx;
  811. }
  812. .px-5 {
  813. padding-left: 50upx;
  814. padding-right: 50upx;
  815. }
  816. .py-0 {
  817. padding-top: 0;
  818. padding-bottom: 0;
  819. }
  820. .py {
  821. padding-top: 5upx;
  822. padding-bottom: 5upx;
  823. }
  824. .py-1 {
  825. padding-top: 10upx;
  826. padding-bottom: 10upx;
  827. }
  828. .py-2 {
  829. padding-top: 20upx;
  830. padding-bottom: 20upx;
  831. }
  832. .py-3 {
  833. padding-top: 30upx;
  834. padding-bottom: 30upx;
  835. }
  836. .py-4 {
  837. padding-top: 40upx;
  838. padding-bottom: 40upx;
  839. }
  840. .py-5 {
  841. padding-top: 50upx;
  842. padding-bottom: 50upx;
  843. }
  844. .pt-0 {
  845. padding-top: 0;
  846. }
  847. .pt {
  848. padding-top: 5upx;
  849. }
  850. .pt-1 {
  851. padding-top: 10upx;
  852. }
  853. .pt-2 {
  854. padding-top: 20upx;
  855. }
  856. .pt-3 {
  857. padding-top: 30upx;
  858. }
  859. .pt-4 {
  860. padding-top: 40upx;
  861. }
  862. .pt-5 {
  863. padding-top: 50upx;
  864. }
  865. .pb-0 {
  866. padding-bottom: 0;
  867. }
  868. .pb {
  869. padding-bottom: 5upx;
  870. }
  871. .pb-1 {
  872. padding-bottom: 10upx;
  873. }
  874. .pb-2 {
  875. padding-bottom: 20upx;
  876. }
  877. .pb-3 {
  878. padding-bottom: 30upx;
  879. }
  880. .pb-4 {
  881. padding-bottom: 40upx;
  882. }
  883. .pb-5 {
  884. padding-bottom: 50upx;
  885. }
  886. .pl-0 {
  887. padding-left: 0;
  888. }
  889. .pl {
  890. padding-left: 5upx;
  891. }
  892. .pl-1 {
  893. padding-left: 10upx;
  894. }
  895. .pl-2 {
  896. padding-left: 20upx;
  897. }
  898. .pl-3 {
  899. padding-left: 30upx;
  900. }
  901. .pl-4 {
  902. padding-left: 40upx;
  903. }
  904. .pl-5 {
  905. padding-left: 50upx;
  906. }
  907. .pr-0 {
  908. padding-right: 0;
  909. }
  910. .pr {
  911. padding-right: 5upx;
  912. }
  913. .pr-1 {
  914. padding-right: 10upx;
  915. }
  916. .pr-2 {
  917. padding-right: 20upx;
  918. }
  919. .pr-3 {
  920. padding-right: 30upx;
  921. }
  922. .pr-4 {
  923. padding-right: 40upx;
  924. }
  925. .pr-5 {
  926. padding-right: 50upx;
  927. }