console.custom.less 16 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135
  1. @charset "UTF-8";
  2. @import "console.config.less";
  3. // +----------------------------------------------------------------------
  4. // | ThinkAdmin
  5. // +----------------------------------------------------------------------
  6. // | 版权所有 2014~2021 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
  7. // +----------------------------------------------------------------------
  8. // | 官方网站: http://demo.thinkadmin.top
  9. // +----------------------------------------------------------------------
  10. // | 开源协议 ( https://mit-license.org )
  11. // +----------------------------------------------------------------------
  12. // | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
  13. // | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
  14. // +----------------------------------------------------------------------
  15. .notdata {
  16. padding: 15px;
  17. display: block;
  18. font-size: 13px;
  19. text-align: center;
  20. line-height: 22px;
  21. border-radius: @BoxBorderRadius;
  22. letter-spacing: 6px;
  23. border: 1px solid @BoxBorderColor;
  24. background-color: #f2f2f2;
  25. }
  26. .notselect {
  27. user-select: none;
  28. -ms-user-select: none;
  29. -moz-user-select: none;
  30. -webkit-user-select: none
  31. }
  32. .transition {
  33. transition: all .2s linear;
  34. -o-transition: all .2s linear;
  35. -moz-transition: all .2s linear;
  36. -webkit-transition: all .2s linear;
  37. }
  38. .overhide {
  39. overflow: hidden !important;
  40. }
  41. .fixed {
  42. position: fixed !important;
  43. }
  44. .absolute {
  45. position: absolute !important
  46. }
  47. .relative {
  48. position: relative !important
  49. }
  50. .block {
  51. display: block !important
  52. }
  53. .pointer {
  54. cursor: pointer !important
  55. }
  56. .nowrap {
  57. white-space: nowrap !important
  58. }
  59. .shadow {
  60. box-shadow: @ShadowMaxOuter;
  61. }
  62. .shadow-mini {
  63. box-shadow: @ShadowMinOuter;
  64. }
  65. .shadow-none {
  66. box-shadow: none !important;
  67. }
  68. .help-block {
  69. color: #999;
  70. font-size: 12px
  71. }
  72. .table-block {
  73. width: 100%;
  74. display: table !important;
  75. box-sizing: border-box;
  76. }
  77. .inline-block {
  78. display: inline-block !important
  79. }
  80. .think-box-shadow {
  81. padding: 20px !important;
  82. background: #fff !important;
  83. box-shadow: @ShadowMaxOuter;
  84. border-radius: @BoxBorderRadius;
  85. > form.layui-card {
  86. box-shadow: none;
  87. }
  88. }
  89. .input-right-icon {
  90. top: 1px;
  91. right: 1px;
  92. color: #098;
  93. width: 36px;
  94. height: 36px;
  95. display: inline-block;
  96. position: absolute;
  97. background: #E9E9E9;
  98. text-align: center;
  99. line-height: 38px;
  100. &:hover {
  101. color: #009080;
  102. background: #E0E0E0;
  103. }
  104. }
  105. [data-tips-image] {
  106. cursor: zoom-in !important
  107. }
  108. [data-lazy-src] {
  109. overflow: hidden;
  110. position: relative;
  111. background-size: cover;
  112. background-position: center center;
  113. }
  114. /** 加载进度 */
  115. .pace-inactive {
  116. display: none
  117. }
  118. .pace-progress {
  119. top: 0;
  120. right: 100%;
  121. width: 100%;
  122. height: 2px;
  123. z-index: 2000;
  124. position: fixed;
  125. background: #22df80
  126. }
  127. .uploadimage {
  128. width: 76px;
  129. height: 76px;
  130. cursor: pointer;
  131. position: relative;
  132. display: inline-block;
  133. border: 1px dashed #e2e2e2;
  134. background: url('../img/upimg.png') no-repeat center center;
  135. background-size: cover;
  136. span.layui-icon {
  137. right: 0;
  138. color: #fff;
  139. width: 20px;
  140. height: 20px;
  141. display: none;
  142. position: absolute;
  143. text-align: center;
  144. line-height: 22px;
  145. background: rgba(0, 0, 0, .5)
  146. }
  147. &:hover span.layui-icon {
  148. display: inline-block;
  149. }
  150. }
  151. .uploadimagemtl {
  152. margin-right: 8px;
  153. a {
  154. float: right;
  155. color: #EEE;
  156. width: 20px;
  157. height: 20px;
  158. margin: 4px 4px 0 0;
  159. display: none;
  160. text-align: center;
  161. line-height: 20px;
  162. background: rgba(0, 0, 0, 0.6);
  163. }
  164. &:hover a {
  165. cursor: pointer;
  166. display: inline-block;
  167. &:hover {
  168. color: #FFF;
  169. text-decoration: none
  170. }
  171. }
  172. }
  173. .upload-image-smbox,
  174. .upload-image-mdbox,
  175. .upload-image-lgbox {
  176. a {
  177. width: 30px;
  178. height: 30px;
  179. margin: 1px 1px 0 0;
  180. line-height: 30px;
  181. }
  182. }
  183. .upload-image-smbox .uploadimage {
  184. width: 120px;
  185. height: 120px;
  186. }
  187. .upload-image-mdbox .uploadimage {
  188. width: 180px;
  189. height: 180px;
  190. }
  191. .upload-image-lgbox .uploadimage {
  192. width: 260px;
  193. height: 260px;
  194. }
  195. .portal-block-container {
  196. font-size: 14px;
  197. margin-bottom: 10px;
  198. letter-spacing: 1px;
  199. .portal-block {
  200. &-icon {
  201. top: 45%;
  202. right: 8%;
  203. font-size: 65px;
  204. position: absolute;
  205. color: rgba(255, 255, 255, 0.4);
  206. }
  207. &-item {
  208. color: #fff;
  209. padding: 15px 25px;
  210. position: relative;
  211. line-height: 3em;
  212. border-radius: @BoxBorderRadius;
  213. box-shadow: 0 2px 3px 0 rgba(0, 0, 0, .2);
  214. > div:nth-child(2) {
  215. font-size: 46px;
  216. line-height: 46px;
  217. }
  218. }
  219. }
  220. }
  221. /* 通用分页 */
  222. .pagination-container {
  223. margin-top: 20px;
  224. line-height: 30px;
  225. padding-top: 5px;
  226. padding-bottom: 5px;
  227. span {
  228. color: #666;
  229. font-size: 9pt
  230. }
  231. ul {
  232. float: right;
  233. height: 30px;
  234. margin: 0;
  235. padding: 0;
  236. display: inline-block;
  237. li {
  238. z-index: 1;
  239. height: 30px;
  240. line-height: 30px;
  241. display: inline-block;
  242. a, span {
  243. color: #333;
  244. width: 30px;
  245. height: 30px;
  246. border: 1px solid @BoxBorderColor;
  247. overflow: hidden;
  248. font-size: 12px;
  249. text-align: center;
  250. line-height: 30px;
  251. margin-right: 3px;
  252. display: inline-block;
  253. box-sizing: border-box;
  254. }
  255. span {
  256. cursor: default;
  257. background: #DCDCDC;
  258. }
  259. a:hover {
  260. border-color: #009688;
  261. }
  262. &.active {
  263. z-index: 2;
  264. span {
  265. color: #fff;
  266. border-color: #009688;
  267. background: #009688 !important
  268. }
  269. }
  270. &.disabled {
  271. span {
  272. font-size: 16px;
  273. font-weight: 700;
  274. line-height: 22px;
  275. }
  276. }
  277. &:last-child, &:first-child {
  278. a, span {
  279. font-size: 16px;
  280. font-weight: 700;
  281. line-height: 28px;
  282. }
  283. }
  284. }
  285. }
  286. }
  287. /* 分隔线条 */
  288. .hr-line- {
  289. &dashed {
  290. color: #fff;
  291. height: 1px;
  292. margin: 15px 0;
  293. background-color: #fff;
  294. border-top: 1px dashed #e7eaec
  295. }
  296. &solid {
  297. margin-top: 15px;
  298. margin-bottom: 15px;
  299. border-bottom: 1px solid #e7eaec;
  300. background-color: rgba(0, 0, 0, 0)
  301. }
  302. }
  303. .pull- {
  304. &left {
  305. float: left !important
  306. }
  307. &right {
  308. float: right !important
  309. }
  310. }
  311. .full- {
  312. &width {
  313. width: 100% !important
  314. }
  315. &height {
  316. height: 100% !important
  317. }
  318. }
  319. .color- {
  320. &red {
  321. color: #e44 !important
  322. }
  323. &blue {
  324. color: #29f !important
  325. }
  326. &desc {
  327. color: #999 !important
  328. }
  329. &text {
  330. color: #333 !important
  331. }
  332. &green {
  333. color: #090 !important
  334. }
  335. }
  336. .sub-span- {
  337. &red span {
  338. color: #e44 !important
  339. }
  340. &blue span {
  341. color: #29f !important
  342. }
  343. &desc span {
  344. color: #999 !important
  345. }
  346. &text span {
  347. color: #333 !important
  348. }
  349. &green span {
  350. color: #090 !important
  351. }
  352. }
  353. .sub-strong- {
  354. &s10 b {
  355. font-size: 10px;
  356. }
  357. &s12 b {
  358. font-size: 12px;
  359. }
  360. &s14 b {
  361. font-size: 14px;
  362. }
  363. &red b {
  364. color: #ec494e !important
  365. }
  366. &blue b {
  367. color: #2494f2 !important
  368. }
  369. &desc b {
  370. color: #999 !important
  371. }
  372. &text b {
  373. color: #333 !important
  374. }
  375. &green b {
  376. color: #090 !important
  377. }
  378. }
  379. .think-bg- {
  380. &white {
  381. background: white !important
  382. }
  383. &blue {
  384. background: linear-gradient(-125deg, #57bdbf, #2f9de2) !important
  385. }
  386. &orig {
  387. background: linear-gradient(-141deg, #ecca1b, #f39526) !important
  388. }
  389. &red {
  390. background: linear-gradient(-125deg, #ff7d7d, #fb2c95) !important
  391. }
  392. &gray {
  393. background: linear-gradient(-113deg, #EEEEEE, #EFEFEF) !important
  394. }
  395. &violet {
  396. background: linear-gradient(-113deg, #c543d8, #925cc3) !important
  397. }
  398. }
  399. .text- {
  400. &top {
  401. vertical-align: top !important
  402. }
  403. &left {
  404. text-align: left !important
  405. }
  406. &right {
  407. text-align: right !important
  408. }
  409. &center {
  410. text-align: center !important
  411. }
  412. &middle {
  413. vertical-align: middle !important
  414. }
  415. &bottom {
  416. vertical-align: bottom !important
  417. }
  418. }
  419. .font- {
  420. &s10 {
  421. font-size: 10px !important
  422. }
  423. &s11 {
  424. font-size: 11px !important
  425. }
  426. &s12 {
  427. font-size: 12px !important
  428. }
  429. &s13 {
  430. font-size: 13px !important
  431. }
  432. &s14 {
  433. font-size: 14px !important
  434. }
  435. &s15 {
  436. font-size: 15px !important
  437. }
  438. &s16 {
  439. font-size: 16px !important
  440. }
  441. &s18 {
  442. font-size: 18px !important
  443. }
  444. &s20 {
  445. font-size: 20px !important
  446. }
  447. &s30 {
  448. font-size: 30px !important
  449. }
  450. &s40 {
  451. font-size: 40px !important
  452. }
  453. &w1 {
  454. font-weight: 100 !important;
  455. }
  456. &w2 {
  457. font-weight: 200 !important;
  458. }
  459. &w3 {
  460. font-weight: 300 !important;
  461. }
  462. &w4 {
  463. font-weight: 400 !important;
  464. }
  465. &w5 {
  466. font-weight: 500 !important;
  467. }
  468. &w6 {
  469. font-weight: 600 !important;
  470. }
  471. &w7 {
  472. font-weight: 700 !important;
  473. }
  474. &w8 {
  475. font-weight: 800 !important;
  476. }
  477. &w9 {
  478. font-weight: 900 !important;
  479. }
  480. }
  481. .border {
  482. &-0 {
  483. border: 0 !important
  484. }
  485. &-line {
  486. border: 1px solid @BoxBorderColor;
  487. }
  488. &-bottom-line {
  489. border-bottom: 1px solid @BoxBorderColor;
  490. }
  491. &-top-0 {
  492. border-top: 0 !important;
  493. }
  494. &-left-0 {
  495. border-left: 0 !important;
  496. }
  497. &-right-0 {
  498. border-right: 0 !important;
  499. }
  500. &-bottom-0 {
  501. border-bottom: 0 !important;
  502. }
  503. &-radius {
  504. border-radius: 50% !important;
  505. &-0 {
  506. border-radius: 0 !important
  507. }
  508. &-5 {
  509. border-radius: 5px !important;
  510. }
  511. &-6 {
  512. border-radius: 6px !important;
  513. }
  514. &-left-0 {
  515. border-top-left-radius: 0 !important;
  516. border-bottom-left-radius: 0 !important
  517. }
  518. &-right-0 {
  519. border-top-right-radius: 0 !important;
  520. border-bottom-right-radius: 0 !important
  521. }
  522. }
  523. }
  524. .margin {
  525. &-0 {
  526. margin: 0 !important
  527. }
  528. &-5 {
  529. margin: 5px !important
  530. }
  531. &-10 {
  532. margin: 10px !important
  533. }
  534. &-15 {
  535. margin: 15px !important
  536. }
  537. &-20 {
  538. margin: 20px !important
  539. }
  540. &-25 {
  541. margin: 25px !important
  542. }
  543. &-30 {
  544. margin: 30px !important
  545. }
  546. &-40 {
  547. margin: 40px !important
  548. }
  549. &-col {
  550. &-0 {
  551. margin-left: 0 !important;
  552. margin-right: 0 !important;
  553. }
  554. &-5 {
  555. margin-left: 5px !important;
  556. margin-right: 5px !important;
  557. }
  558. &-10 {
  559. margin-left: 10px !important;
  560. margin-right: 10px !important;
  561. }
  562. &-15 {
  563. margin-left: 15px !important;
  564. margin-right: 15px !important;
  565. }
  566. &-20 {
  567. margin-left: 20px !important;
  568. margin-right: 20px !important;
  569. }
  570. &-25 {
  571. margin-left: 25px !important;
  572. margin-right: 25px !important;
  573. }
  574. &-30 {
  575. margin-left: 30px !important;
  576. margin-right: 30px !important;
  577. }
  578. &-40 {
  579. margin-left: 40px !important;
  580. margin-right: 40px !important;
  581. }
  582. }
  583. &-row {
  584. &-0 {
  585. margin-top: 0 !important;
  586. margin-bottom: 0 !important;
  587. }
  588. &-5 {
  589. margin-top: 5px !important;
  590. margin-bottom: 5px !important;
  591. }
  592. &-10 {
  593. margin-top: 10px !important;
  594. margin-bottom: 10px !important;
  595. }
  596. &-15 {
  597. margin-top: 15px !important;
  598. margin-bottom: 15px !important;
  599. }
  600. &-20 {
  601. margin-top: 20px !important;
  602. margin-bottom: 20px !important;
  603. }
  604. &-25 {
  605. margin-top: 25px !important;
  606. margin-bottom: 25px !important;
  607. }
  608. &-30 {
  609. margin-top: 30px !important;
  610. margin-bottom: 30px !important;
  611. }
  612. &-40 {
  613. margin-top: 40px !important;
  614. margin-bottom: 40px !important;
  615. }
  616. }
  617. &-top {
  618. &-0 {
  619. margin-top: 0 !important
  620. }
  621. &-5 {
  622. margin-top: 5px !important
  623. }
  624. &-10 {
  625. margin-top: 10px !important
  626. }
  627. &-15 {
  628. margin-top: 15px !important
  629. }
  630. &-20 {
  631. margin-top: 20px !important
  632. }
  633. &-25 {
  634. margin-top: 25px !important
  635. }
  636. &-30 {
  637. margin-top: 30px !important
  638. }
  639. &-40 {
  640. margin-top: 40px !important;
  641. }
  642. }
  643. &-left {
  644. &-0 {
  645. margin-left: 0 !important
  646. }
  647. &-5 {
  648. margin-left: 5px !important
  649. }
  650. &-10 {
  651. margin-left: 10px !important
  652. }
  653. &-15 {
  654. margin-left: 15px !important
  655. }
  656. &-20 {
  657. margin-left: 20px !important
  658. }
  659. &-25 {
  660. margin-left: 25px !important
  661. }
  662. &-30 {
  663. margin-left: 30px !important
  664. }
  665. &-40 {
  666. margin-left: 40px !important
  667. }
  668. }
  669. &-right {
  670. &-0 {
  671. margin-right: 0 !important
  672. }
  673. &-5 {
  674. margin-right: 5px !important
  675. }
  676. &-10 {
  677. margin-right: 10px !important
  678. }
  679. &-15 {
  680. margin-right: 15px !important
  681. }
  682. &-20 {
  683. margin-right: 20px !important
  684. }
  685. &-25 {
  686. margin-right: 25px !important
  687. }
  688. &-30 {
  689. margin-right: 30px !important
  690. }
  691. &-40 {
  692. margin-right: 40px !important
  693. }
  694. }
  695. &-bottom {
  696. &-0 {
  697. margin-bottom: 0 !important
  698. }
  699. &-5 {
  700. margin-bottom: 5px !important
  701. }
  702. &-10 {
  703. margin-bottom: 10px !important
  704. }
  705. &-15 {
  706. margin-bottom: 15px !important
  707. }
  708. &-20 {
  709. margin-bottom: 20px !important
  710. }
  711. &-25 {
  712. margin-bottom: 25px !important
  713. }
  714. &-30 {
  715. margin-bottom: 30px !important
  716. }
  717. &-40 {
  718. margin-bottom: 40px !important
  719. }
  720. }
  721. }
  722. .padding {
  723. &-0 {
  724. padding: 0 !important
  725. }
  726. &-5 {
  727. padding: 5px !important
  728. }
  729. &-10 {
  730. padding: 10px !important
  731. }
  732. &-15 {
  733. padding: 15px !important
  734. }
  735. &-20 {
  736. padding: 20px !important
  737. }
  738. &-25 {
  739. padding: 25px !important
  740. }
  741. &-30 {
  742. padding: 30px !important
  743. }
  744. &-40 {
  745. padding: 40px !important
  746. }
  747. &-col {
  748. &-0 {
  749. padding-left: 0 !important;
  750. padding-right: 0 !important;
  751. }
  752. &-5 {
  753. padding-left: 5px !important;
  754. padding-right: 5px !important;
  755. }
  756. &-10 {
  757. padding-left: 10px !important;
  758. padding-right: 10px !important;
  759. }
  760. &-15 {
  761. padding-left: 15px !important;
  762. padding-right: 15px !important;
  763. }
  764. &-20 {
  765. padding-left: 20px !important;
  766. padding-right: 20px !important;
  767. }
  768. &-25 {
  769. padding-left: 25px !important;
  770. padding-right: 25px !important;
  771. }
  772. &-30 {
  773. padding-left: 30px !important;
  774. padding-right: 30px !important;
  775. }
  776. &-40 {
  777. padding-left: 40px !important;
  778. padding-right: 40px !important;
  779. }
  780. }
  781. &-row {
  782. &-0 {
  783. padding-top: 0 !important;
  784. padding-bottom: 0 !important;
  785. }
  786. &-5 {
  787. padding-top: 5px !important;
  788. padding-bottom: 5px !important;
  789. }
  790. &-10 {
  791. padding-top: 10px !important;
  792. padding-bottom: 10px !important;
  793. }
  794. &-15 {
  795. padding-top: 15px !important;
  796. padding-bottom: 15px !important;
  797. }
  798. &-20 {
  799. padding-top: 20px !important;
  800. padding-bottom: 20px !important;
  801. }
  802. &-25 {
  803. padding-top: 25px !important;
  804. padding-bottom: 25px !important;
  805. }
  806. &-30 {
  807. padding-top: 30px !important;
  808. padding-bottom: 30px !important;
  809. }
  810. &-40 {
  811. padding-top: 40px !important;
  812. padding-bottom: 40px !important;
  813. }
  814. }
  815. &-top {
  816. &-0 {
  817. padding-top: 0 !important
  818. }
  819. &-5 {
  820. padding-top: 5px !important
  821. }
  822. &-10 {
  823. padding-top: 10px !important
  824. }
  825. &-15 {
  826. padding-top: 15px !important
  827. }
  828. &-20 {
  829. padding-top: 20px !important
  830. }
  831. &-30 {
  832. padding-top: 30px !important
  833. }
  834. &-40 {
  835. padding-top: 40px !important
  836. }
  837. }
  838. &-left {
  839. &-0 {
  840. padding-left: 0 !important
  841. }
  842. &-5 {
  843. padding-left: 5px !important
  844. }
  845. &-10 {
  846. padding-left: 10px !important
  847. }
  848. &-15 {
  849. padding-left: 15px !important
  850. }
  851. &-20 {
  852. padding-left: 20px !important
  853. }
  854. &-30 {
  855. padding-left: 30px !important
  856. }
  857. &-40 {
  858. padding-left: 40px !important
  859. }
  860. }
  861. &-right {
  862. &-0 {
  863. padding-right: 0 !important
  864. }
  865. &-5 {
  866. padding-right: 5px !important
  867. }
  868. &-10 {
  869. padding-right: 10px !important
  870. }
  871. &-15 {
  872. padding-right: 15px !important
  873. }
  874. &-20 {
  875. padding-right: 20px !important
  876. }
  877. &-30 {
  878. padding-right: 30px !important
  879. }
  880. &-40 {
  881. padding-right: 40px !important
  882. }
  883. }
  884. &-bottom {
  885. &-0 {
  886. padding-bottom: 0 !important
  887. }
  888. &-5 {
  889. padding-bottom: 5px !important
  890. }
  891. &-10 {
  892. padding-bottom: 10px !important
  893. }
  894. &-15 {
  895. padding-bottom: 15px !important
  896. }
  897. &-20 {
  898. padding-bottom: 20px !important
  899. }
  900. &-30 {
  901. padding-bottom: 30px !important
  902. }
  903. &-40 {
  904. padding-bottom: 40px !important
  905. }
  906. }
  907. }