zcm-main.css 12 KB

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