console.custom.less 16 KB

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