console.css 25 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226
  1. @charset "UTF-8";
  2. ::selection {
  3. color: #fff !important;
  4. background-color: #ec494e !important;
  5. }
  6. ::-moz-selection {
  7. color: #fff !important;
  8. background-color: #ec494e !important;
  9. }
  10. ::-webkit-scrollbar-track {
  11. background: #ccc !important;
  12. }
  13. ::-webkit-scrollbar-thumb {
  14. background-color: #666 !important;
  15. }
  16. ::-webkit-input-placeholder {
  17. color: #aaa;
  18. }
  19. div.layui-side > div.layui-side-scroll::-webkit-scrollbar {
  20. width: 3px;
  21. }
  22. div.layui-side > div.layui-side-scroll::-webkit-scrollbar-track {
  23. background: #ccc !important;
  24. }
  25. div.layui-side > div.layui-side-scroll::-webkit-scrollbar-thumb {
  26. background-color: #666 !important;
  27. }
  28. :-webkit-autofill,
  29. :-webkit-autofill:hover,
  30. :-webkit-autofill:focus,
  31. :-webkit-autofill:active {
  32. box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.1) inset !important;
  33. -webkit-transition: color 9999s ease-out, background-color 9999s ease-out !important;
  34. -webkit-transition-delay: 9999s !important;
  35. -webkit-text-fill-color: #333 !important;
  36. }
  37. body {
  38. color: #333;
  39. font-size: 12px;
  40. }
  41. body a {
  42. color: #06C;
  43. cursor: pointer;
  44. }
  45. body a:hover {
  46. color: #039;
  47. }
  48. body input::-ms-clear {
  49. display: none;
  50. }
  51. /* 弹框层表单 */
  52. fieldset {
  53. margin: 0;
  54. border: 1px solid #e6e6e6;
  55. padding: 10px 20px 5px 20px;
  56. }
  57. fieldset legend {
  58. color: #666;
  59. padding: 0 10px;
  60. font-size: 14px;
  61. }
  62. .form-search .layui-btn {
  63. height: 32px;
  64. line-height: 28px;
  65. font-size: 12px;
  66. padding: 0 10px;
  67. }
  68. .form-search .layui-form-label {
  69. width: auto !important;
  70. padding: 0 8px;
  71. height: 32px;
  72. line-height: 30px;
  73. }
  74. .form-search .layui-input-inline {
  75. width: 170px;
  76. }
  77. .form-search .layui-input-inline input,
  78. .form-search .layui-input-inline select {
  79. width: 100%;
  80. height: 32px;
  81. padding: 2px 8px;
  82. line-height: 1em;
  83. }
  84. .form-search .layui-form-select dl {
  85. top: 31px;
  86. padding: 0;
  87. }
  88. .layui-form input.layui-input,
  89. .layui-form select.layui-select {
  90. line-height: 1em;
  91. }
  92. /* 表单验证异常提示 */
  93. .label-required-prev:before {
  94. width: 1em;
  95. color: red;
  96. content: '*';
  97. display: inline-block;
  98. position: absolute;
  99. text-align: left;
  100. font-weight: 700;
  101. line-height: 1.6em;
  102. margin-left: -0.8em;
  103. }
  104. .label-required:after,
  105. .label-required-next:after {
  106. top: 6px;
  107. right: 5px;
  108. color: red;
  109. content: '*';
  110. position: absolute;
  111. margin-left: 4px;
  112. font-weight: 700;
  113. line-height: 1.8em;
  114. }
  115. .label-required-null:before {
  116. content: none !important;
  117. }
  118. /** 自定义表单样式 */
  119. .think-form-label {
  120. padding: 9px 15px;
  121. font-weight: 400;
  122. line-height: 20px;
  123. text-align: right;
  124. }
  125. .think-form-group-right {
  126. border-left: none;
  127. border-top-left-radius: 0;
  128. border-bottom-left-radius: 0;
  129. }
  130. .think-form-group-left input {
  131. border-right: none;
  132. border-top-right-radius: 0;
  133. border-bottom-right-radius: 0;
  134. }
  135. .think-box-shadow {
  136. background: #fff;
  137. padding: 20px 20px !important;
  138. box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.1);
  139. }
  140. /** checkbox & radio */
  141. label.think-checkbox,
  142. label.think-radio {
  143. margin-right: 10px;
  144. display: inline-block;
  145. }
  146. .think-checkbox,
  147. .think-radio {
  148. cursor: pointer;
  149. margin-top: 10px;
  150. font-weight: 400;
  151. line-height: 17px;
  152. }
  153. .think-checkbox input[type=checkbox] {
  154. width: 18px;
  155. height: 18px;
  156. border: 1px solid #dcdcdc;
  157. cursor: pointer;
  158. margin: 0 5px 0 0;
  159. position: relative;
  160. display: inline-block !important;
  161. background: #fff;
  162. appearance: none;
  163. box-sizing: border-box !important;
  164. border-radius: 1px;
  165. vertical-align: bottom;
  166. -webkit-appearance: none;
  167. }
  168. .think-checkbox input[type=checkbox]:checked:after {
  169. color: #666;
  170. padding: 2px;
  171. display: block;
  172. content: "\e605";
  173. font-size: 12px;
  174. font-style: normal;
  175. font-weight: 700;
  176. position: absolute;
  177. font-family: layui-icon !important;
  178. -webkit-font-smoothing: antialiased;
  179. -moz-osx-font-smoothing: grayscale;
  180. }
  181. .think-radio input[type=radio] {
  182. width: 18px;
  183. height: 18px;
  184. cursor: pointer;
  185. margin: 0 5px 0 0;
  186. position: relative;
  187. border: 1px solid #dcdcdc;
  188. display: inline-block !important;
  189. box-sizing: border-box !important;
  190. appearance: none;
  191. background: #fff;
  192. border-radius: 1em;
  193. vertical-align: bottom;
  194. -webkit-appearance: none;
  195. }
  196. .think-radio input[type=radio]:checked:after {
  197. top: 4px;
  198. left: 4px;
  199. width: 8px;
  200. height: 8px;
  201. content: '';
  202. display: block;
  203. position: relative;
  204. background: #666;
  205. border-radius: 1em;
  206. }
  207. bu.layui-form.layui-card {
  208. box-shadow: none;
  209. }
  210. .layui-layer-content .layui-form.layui-card .layui-card-body {
  211. padding: 30px 40px 0 0;
  212. }
  213. .layui-layer-dialog .layui-layer-content .layui-layer-ico {
  214. top: 50% !important;
  215. margin-top: -15px !important;
  216. }
  217. .laydate-footer-btns span {
  218. line-height: 24px !important;
  219. }
  220. /** Layui样式调整 */
  221. .layui-input,
  222. .layui-select {
  223. line-height: 38px;
  224. }
  225. .layui-btn-primary.layui-btn-xs {
  226. line-height: 20px;
  227. }
  228. .layui-btn-primary.layui-btn-sm {
  229. line-height: 28px;
  230. }
  231. .layui-table td,
  232. .layui-table th {
  233. font-size: 12px;
  234. }
  235. .layui-table .list-table-image {
  236. width: 22px;
  237. cursor: pointer;
  238. }
  239. .layui-table .list-table-sort-td {
  240. width: 10px !important;
  241. text-align: center !important;
  242. padding-left: 5px !important;
  243. padding-right: 5px !important;
  244. }
  245. .layui-table .list-table-sort-td button {
  246. width: 56px;
  247. background: #009688;
  248. }
  249. .layui-table .list-table-sort-td input {
  250. width: 50px;
  251. color: #666;
  252. padding: 2px;
  253. border: 1px solid #e6e6e6;
  254. text-align: center;
  255. font-size: 9pt;
  256. line-height: 18px;
  257. }
  258. .layui-table .list-table-check-td {
  259. width: 10px !important;
  260. text-align: center;
  261. padding-left: 15px !important;
  262. padding-right: 15px !important;
  263. }
  264. .layui-table .list-table-check-td input {
  265. margin: 0 !important;
  266. vertical-align: middle;
  267. }
  268. .layui-table td .text-explode {
  269. color: #ccc !important;
  270. margin: 0 4px !important;
  271. }
  272. .layui-table td .text-explode:first-child {
  273. display: none;
  274. opacity: 0;
  275. }
  276. .layui-table td .background-image {
  277. float: left;
  278. width: 40px;
  279. height: 40px;
  280. display: inline-block;
  281. margin-right: 5px;
  282. background: no-repeat center center;
  283. background-size: cover;
  284. vertical-align: middle;
  285. }
  286. /** 手机盒子及微信菜单 */
  287. .mobile-preview {
  288. width: 317px;
  289. height: 580px;
  290. position: relative;
  291. background: url(../img/wechat/mobile_head.png) no-repeat 0 0;
  292. }
  293. .mobile-preview .mobile-header {
  294. color: #fff;
  295. width: auto;
  296. margin: 0 30px;
  297. overflow: hidden;
  298. font-size: 15px;
  299. padding-top: 30px;
  300. text-align: center;
  301. white-space: nowrap;
  302. text-overflow: ellipsis;
  303. word-wrap: normal;
  304. user-select: none;
  305. pointer-events: none;
  306. -moz-user-select: none;
  307. -webkit-user-select: none;
  308. -webkit-pointer-events: none;
  309. }
  310. .mobile-preview .mobile-body {
  311. top: 60px;
  312. left: 0;
  313. right: 0;
  314. bottom: 0;
  315. position: absolute;
  316. border: 1px solid #ccc;
  317. background: #f5f5f5;
  318. }
  319. .mobile-preview .mobile-body iframe {
  320. width: 100%;
  321. height: 100%;
  322. }
  323. .mobile-preview .mobile-footer {
  324. left: 0;
  325. right: 0;
  326. bottom: 0;
  327. margin: 0;
  328. position: absolute;
  329. padding-left: 43px;
  330. border: 1px solid #ccc;
  331. list-style-type: none;
  332. background: url(../img/wechat/mobile_foot.png) no-repeat 0 0;
  333. }
  334. .mobile-preview .mobile-footer li {
  335. float: left;
  336. width: 33.33%;
  337. position: relative;
  338. text-align: center;
  339. line-height: 50px;
  340. }
  341. .mobile-preview .mobile-footer li a {
  342. width: auto;
  343. display: block;
  344. overflow: hidden;
  345. border: 1px solid hsla(0, 0%, 100%, 0);
  346. border-left: 1px solid #e7e7eb;
  347. margin-top: -1px;
  348. margin-bottom: -1px;
  349. color: #616161;
  350. white-space: nowrap;
  351. text-decoration: none;
  352. text-overflow: ellipsis;
  353. word-wrap: normal;
  354. }
  355. .mobile-preview .mobile-footer li a:hover {
  356. background: rgba(0, 0, 0, 0.02);
  357. }
  358. .mobile-preview .mobile-footer li a.active {
  359. border: 1px solid #44b549 !important;
  360. box-shadow: 0 0 1px #44b549;
  361. }
  362. .mobile-preview .mobile-footer li a span:before {
  363. width: 1px;
  364. height: 1px;
  365. content: '';
  366. display: inline-block;
  367. }
  368. .mobile-preview .mobile-footer li > .close {
  369. top: 1px;
  370. right: 1px;
  371. width: 18px;
  372. height: 18px;
  373. display: none;
  374. cursor: pointer;
  375. position: absolute;
  376. text-align: center;
  377. line-height: 18px;
  378. }
  379. .mobile-preview .mobile-footer li:hover > .close {
  380. display: inline-block;
  381. }
  382. .mobile-preview .mobile-footer li:hover > .close:hover {
  383. color: #fff !important;
  384. background: #999 !important;
  385. }
  386. .mobile-preview .mobile-footer .icon-add {
  387. width: 14px;
  388. height: 14px;
  389. border-bottom: none !important;
  390. background: url(../img/wechat/index.png) 0 0 no-repeat;
  391. }
  392. .mobile-preview .mobile-footer .icon-add,
  393. .mobile-preview .mobile-footer .icon-sub {
  394. display: inline-block;
  395. vertical-align: middle;
  396. }
  397. .mobile-preview .mobile-footer .icon-sub {
  398. width: 7px;
  399. height: 7px;
  400. margin-right: 2px;
  401. background: url(../img/wechat/index.png) 0 -3pc no-repeat;
  402. }
  403. .mobile-preview .mobile-footer .sub-menu {
  404. width: 100%;
  405. bottom: 60px;
  406. margin: -1px;
  407. display: block;
  408. position: absolute;
  409. border: 1px solid #d0d0d0;
  410. background-color: #fafafa;
  411. }
  412. .mobile-preview .mobile-footer .sub-menu ul,
  413. .mobile-preview .mobile-footer .sub-menu ul li {
  414. float: none;
  415. padding: 0;
  416. z-index: 11;
  417. display: block;
  418. width: 100%;
  419. }
  420. .mobile-preview .mobile-footer .sub-menu ul li a {
  421. padding: 0 5px;
  422. border: 1px solid hsla(0, 0%, 100%, 0);
  423. }
  424. .mobile-preview .mobile-footer .sub-menu ul li a.bottom-border {
  425. margin: -1px -1px 0;
  426. border-bottom: 1px solid #e7e7eb;
  427. }
  428. .mobile-preview .mobile-footer .sub-menu ul li:last-child a.bottom-border {
  429. border-bottom-color: #fff;
  430. }
  431. .mobile-preview .mobile-footer .arrow {
  432. left: 50%;
  433. position: absolute;
  434. margin-left: -6px;
  435. }
  436. .mobile-preview .mobile-footer .arrow_in,
  437. .mobile-preview .mobile-footer .arrow_out {
  438. width: 0;
  439. height: 0;
  440. z-index: 10;
  441. display: inline-block;
  442. border: 6px dashed transparent;
  443. border-bottom-width: 0;
  444. border-top-style: solid;
  445. }
  446. .mobile-preview .mobile-footer .arrow_in {
  447. z-index: 3;
  448. bottom: -5px;
  449. border-top-color: #fafafa;
  450. }
  451. .mobile-preview .mobile-footer .arrow_out {
  452. z-index: 2;
  453. bottom: -6px;
  454. border-top-color: #d0d0d0;
  455. }
  456. .layui-layout > .layui-side {
  457. top: 50px;
  458. bottom: 0;
  459. overflow: auto;
  460. }
  461. .layui-layout > .layui-body {
  462. top: 50px;
  463. bottom: 0;
  464. overflow: auto;
  465. }
  466. .layui-layout > .layui-body > .layui-card {
  467. overflow: visible;
  468. position: absolute;
  469. min-width: 100%;
  470. min-height: 100%;
  471. box-shadow: none;
  472. background: none !important;
  473. }
  474. .layui-layout > .layui-body > .layui-card > .layui-card-header {
  475. left: 200px;
  476. right: 0;
  477. z-index: 3;
  478. height: 50px;
  479. border: none;
  480. position: fixed;
  481. background: #fff;
  482. line-height: 50px;
  483. box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.22);
  484. }
  485. .layui-layout > .layui-body > .layui-card > .layui-card-header + .layui-card-body {
  486. top: 50px;
  487. }
  488. .layui-layout > .layui-body > .layui-card > .layui-card-body {
  489. z-index: 2;
  490. padding: 15px;
  491. }
  492. .layui-layout > .layui-body > .layui-card > .layui-card-body > .layui-tab.layui-tab-card {
  493. border: none;
  494. box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.22);
  495. }
  496. .layui-layout > .layui-body > .layui-card > .layui-card-body > .layui-tab.layui-tab-card > .layui-tab-content.think-box-shadow {
  497. box-shadow: none;
  498. }
  499. /* 页面布局 - 头部 */
  500. .layui-header {
  501. height: 50px;
  502. background: #393D49 !important;
  503. }
  504. .layui-header [data-target-menu-type] {
  505. border-left: 1px solid rgba(0, 0, 0, 0);
  506. border-right: 1px solid rgba(0, 0, 0, 0.15);
  507. }
  508. .layui-header .layui-layout-left,
  509. .layui-header .layui-layout-right {
  510. margin: 0;
  511. padding: 0;
  512. }
  513. .layui-header .layui-logo {
  514. color: #fff;
  515. width: 199px;
  516. height: auto;
  517. font-size: 18px;
  518. line-height: 49px;
  519. border-right: 1px solid rgba(0, 0, 0, 0.15);
  520. border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  521. }
  522. .layui-header .layui-logo sup {
  523. font-size: 9px;
  524. line-height: 9px;
  525. padding-left: 5px;
  526. }
  527. .layui-header .layui-nav-item {
  528. height: 50px;
  529. line-height: 50px;
  530. }
  531. .layui-header .layui-nav-item.layui-this {
  532. background: #009688;
  533. }
  534. .layui-header .layui-nav-item > a {
  535. color: #fff !important;
  536. }
  537. .layui-header .layui-nav-item .layui-nav-child {
  538. top: 49px;
  539. border: 0;
  540. padding: 0;
  541. background: #eef;
  542. line-height: 45px;
  543. }
  544. .layui-header .layui-nav-item .layui-nav-child + a.layui-elip {
  545. padding-right: 35px;
  546. }
  547. .layui-header .layui-nav-item .layui-nav-child + a.layui-elip img {
  548. width: 20px;
  549. height: 20px;
  550. border-radius: 50%;
  551. }
  552. .layui-header .layui-nav-item .layui-nav-child + a.layui-elip span {
  553. padding-left: 5px;
  554. }
  555. .layui-header .layui-nav-item .layui-nav-child.layui-show + a {
  556. background: #fff;
  557. }
  558. .layui-header .layui-nav-item .layui-nav-child.layui-show + a span {
  559. color: #333;
  560. }
  561. .layui-header .layui-nav-item .layui-nav-child dd {
  562. background: #fff;
  563. }
  564. .layui-header .layui-nav-item .layui-nav-child dd a {
  565. padding: 0;
  566. color: #333;
  567. margin-top: 1px;
  568. text-align: center;
  569. }
  570. .layui-header .layui-nav-item .layui-nav-child dd a .layui-icon {
  571. margin-right: 5px;
  572. }
  573. .layui-header .layui-nav-bar,
  574. .layui-header .layui-nav-item:after {
  575. display: none !important;
  576. }
  577. .layui-header .layui-layout-right > li > a {
  578. border-left: 1px solid rgba(0, 0, 0, 0.15);
  579. border-right: 1px solid rgba(0, 0, 0, 0);
  580. }
  581. /* 页面布局 - 左则 */
  582. .layui-layout > .layui-side .layui-nav-bar {
  583. display: none !important;
  584. }
  585. .layui-layout > .layui-side .layui-side-scroll {
  586. width: 100% !important;
  587. }
  588. .layui-layout > .layui-side .layui-nav-item {
  589. border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  590. }
  591. .layui-layout > .layui-side .layui-nav-item a {
  592. height: 45px;
  593. display: block;
  594. line-height: 45px;
  595. color: #fff !important;
  596. }
  597. .layui-layout > .layui-side .layui-nav-item a:hover {
  598. background: hsla(0, 0%, 39%, 0.2) !important;
  599. }
  600. .layui-layout > .layui-side .layui-nav-item a .nav-icon,
  601. .layui-layout > .layui-side .layui-nav-item a .nav-text {
  602. padding-left: 5px;
  603. }
  604. .layui-layout > .layui-side .layui-nav-itemed {
  605. border-bottom: none !important;
  606. }
  607. .layui-layout > .layui-side .layui-nav-tree-top a {
  608. height: 28px !important;
  609. line-height: 28px !important;
  610. }
  611. .layui-layout.layui-layout-left-mini > .layui-body {
  612. left: 50px;
  613. }
  614. .layui-layout.layui-layout-left-mini > .layui-body > .layui-card > .layui-card-header {
  615. left: 50px;
  616. }
  617. .layui-layout.layui-layout-left-mini > .layui-side .layui-nav-more {
  618. display: none !important;
  619. }
  620. .layui-layout.layui-layout-left-mini > .layui-side .layui-nav-item a {
  621. padding: 0;
  622. }
  623. .layui-layout.layui-layout-left-mini > .layui-side .layui-nav-item .nav-text {
  624. display: none;
  625. }
  626. .layui-layout.layui-layout-left-mini > .layui-side .layui-nav-item .nav-icon {
  627. display: inline-block !important;
  628. padding: 0 !important;
  629. }
  630. .layui-layout.layui-layout-left-mini > .layui-side .layui-nav-item .layui-nav-child {
  631. padding: 0;
  632. display: block !important;
  633. background-color: rgba(0, 0, 0, 0.3) !important;
  634. }
  635. .layui-layout.layui-layout-left-mini > .layui-side,
  636. .layui-layout.layui-layout-left-mini > .layui-side .layui-nav-tree,
  637. .layui-layout.layui-layout-left-mini > .layui-side .layui-side-scroll {
  638. width: 50px;
  639. text-align: center;
  640. }
  641. .layui-layout.layui-layout-left-mini [data-target-menu-type] i {
  642. display: inline-block;
  643. transform: rotate(180deg);
  644. -ms-transform: rotate(180deg);
  645. -webkit-transform: rotate(180deg);
  646. }
  647. .layui-layout.layui-layout-left-hide > .layui-body {
  648. left: 0 !important;
  649. }
  650. .layui-layout.layui-layout-left-hide > .layui-body > .layui-card > .layui-card-header {
  651. left: 0 !important;
  652. }
  653. .layui-layout.layui-layout-left-hide > .layui-side {
  654. display: none;
  655. }
  656. .layui-layout.layui-layout-left-hide [data-target-menu-type] {
  657. display: none;
  658. }
  659. /* 下拉样式 */
  660. .layui-nav .layui-nav-item .layui-nav-more {
  661. top: 0;
  662. right: 15px;
  663. width: auto;
  664. height: auto;
  665. border: none;
  666. margin-top: 0;
  667. font-size: 14px;
  668. font-style: normal;
  669. font-family: "layui-icon" !important;
  670. -moz-osx-font-smoothing: grayscale;
  671. -webkit-font-smoothing: antialiased;
  672. }
  673. .layui-nav .layui-nav-item .layui-nav-more::before {
  674. content: "\e619";
  675. }
  676. .layui-nav .layui-nav-item .layui-nav-mored,
  677. .layui-nav .layui-nav-itemed .layui-nav-more {
  678. border: none;
  679. margin-top: 0;
  680. transform: rotate(180deg);
  681. -o-transform: rotate(180deg);
  682. -ms-transform: rotate(180deg);
  683. -moz-transform: rotate(180deg);
  684. -webkit-transform: rotate(180deg);
  685. }
  686. .iframe-pagination {
  687. padding: 20px 20px 45px 20px;
  688. }
  689. .iframe-pagination .pagination-container {
  690. left: 0;
  691. right: 0;
  692. bottom: 0;
  693. padding: 5px 20px;
  694. position: fixed;
  695. background: #fff;
  696. border-top: 1px solid #ddd;
  697. }
  698. .notdata {
  699. padding: 15px;
  700. display: block;
  701. font-size: 13px;
  702. text-align: center;
  703. line-height: 22px;
  704. letter-spacing: 8px;
  705. border: 1px solid #e6e6e6;
  706. background-color: #f2f2f2;
  707. border-radius: 0 2px 2px 0;
  708. }
  709. .notselect {
  710. user-select: none;
  711. -ms-user-select: none;
  712. -moz-user-select: none;
  713. -webkit-user-select: none;
  714. }
  715. .transition {
  716. transition: all 0.2s linear;
  717. -o-transition: all 0.2s linear;
  718. -moz-transition: all 0.2s linear;
  719. -webkit-transition: all 0.2s linear;
  720. }
  721. .absolute {
  722. position: absolute !important;
  723. }
  724. .relative {
  725. position: relative !important;
  726. }
  727. .block {
  728. display: block !important;
  729. }
  730. .pointer {
  731. cursor: pointer !important;
  732. }
  733. .nowrap {
  734. white-space: nowrap !important;
  735. }
  736. .help-block {
  737. color: #999;
  738. font-size: 12px;
  739. }
  740. .inline-block {
  741. display: inline-block !important;
  742. }
  743. .pull-left {
  744. float: left !important;
  745. }
  746. .pull-right {
  747. float: right !important;
  748. }
  749. .full-width {
  750. width: 100% !important;
  751. }
  752. .full-height {
  753. height: 100% !important;
  754. }
  755. .color-red {
  756. color: #ec494e !important;
  757. }
  758. .color-blue {
  759. color: #2494f2 !important;
  760. }
  761. .color-desc {
  762. color: #999 !important;
  763. }
  764. .color-text {
  765. color: #333 !important;
  766. }
  767. .color-green {
  768. color: #090 !important;
  769. }
  770. .text-top {
  771. vertical-align: top !important;
  772. }
  773. .text-left {
  774. text-align: left !important;
  775. }
  776. .text-right {
  777. text-align: right !important;
  778. }
  779. .text-center {
  780. text-align: center !important;
  781. }
  782. .text-middle {
  783. vertical-align: middle !important;
  784. }
  785. .text-bottom {
  786. vertical-align: bottom !important;
  787. }
  788. .think-bg-white {
  789. background: white !important;
  790. }
  791. .think-bg-blue {
  792. background: linear-gradient(-125deg, #57bdbf, #2f9de2) !important;
  793. }
  794. .think-bg-orig {
  795. background: linear-gradient(-141deg, #ecca1b, #f39526) !important;
  796. }
  797. .think-bg-red {
  798. background: linear-gradient(-125deg, #ff7d7d, #fb2c95) !important;
  799. }
  800. .think-bg-violet {
  801. background: linear-gradient(-113deg, #c543d8, #925cc3) !important;
  802. }
  803. /* 分隔线条 */
  804. .hr-line-dashed {
  805. color: #fff;
  806. height: 1px;
  807. margin: 15px 0;
  808. background-color: #fff;
  809. border-top: 1px dashed #e7eaec;
  810. }
  811. .hr-line-solid {
  812. margin-top: 15px;
  813. margin-bottom: 15px;
  814. border-bottom: 1px solid #e7eaec;
  815. background-color: rgba(0, 0, 0, 0);
  816. }
  817. /* 文字大小 */
  818. .border-0 {
  819. border: 0 !important;
  820. }
  821. .border-radius-0 {
  822. border-radius: 0 !important;
  823. }
  824. .border-radius-left-0 {
  825. border-top-left-radius: 0 !important;
  826. border-bottom-left-radius: 0 !important;
  827. }
  828. .border-radius-right-0 {
  829. border-top-right-radius: 0 !important;
  830. border-bottom-right-radius: 0 !important;
  831. }
  832. .font-s10 {
  833. font-size: 10px !important;
  834. }
  835. .font-s11 {
  836. font-size: 11px !important;
  837. }
  838. .font-s12 {
  839. font-size: 12px !important;
  840. }
  841. .font-s13 {
  842. font-size: 13px !important;
  843. }
  844. .font-s14 {
  845. font-size: 14px !important;
  846. }
  847. .font-s15 {
  848. font-size: 15px !important;
  849. }
  850. .font-s16 {
  851. font-size: 16px !important;
  852. }
  853. .font-s18 {
  854. font-size: 18px !important;
  855. }
  856. .font-s20 {
  857. font-size: 20px !important;
  858. }
  859. .font-s30 {
  860. font-size: 30px !important;
  861. }
  862. .font-s40 {
  863. font-size: 40px !important;
  864. }
  865. .font-w1 {
  866. font-weight: 100 !important;
  867. }
  868. .font-w2 {
  869. font-weight: 200 !important;
  870. }
  871. .font-w3 {
  872. font-weight: 300 !important;
  873. }
  874. .font-w4 {
  875. font-weight: 400 !important;
  876. }
  877. .font-w5 {
  878. font-weight: 500 !important;
  879. }
  880. .font-w6 {
  881. font-weight: 600 !important;
  882. }
  883. .font-w7 {
  884. font-weight: 700 !important;
  885. }
  886. .font-w8 {
  887. font-weight: 800 !important;
  888. }
  889. .font-w9 {
  890. font-weight: 900 !important;
  891. }
  892. .padding-0 {
  893. padding: 0 !important;
  894. }
  895. .padding-5 {
  896. padding: 5px !important;
  897. }
  898. .padding-10 {
  899. padding: 10px !important;
  900. }
  901. .padding-15 {
  902. padding: 15px !important;
  903. }
  904. .padding-20 {
  905. padding: 20px !important;
  906. }
  907. .padding-25 {
  908. padding: 25px !important;
  909. }
  910. .padding-30 {
  911. padding: 30px !important;
  912. }
  913. .padding-40 {
  914. padding: 40px !important;
  915. }
  916. .padding-top-0 {
  917. padding-top: 0 !important;
  918. }
  919. .padding-top-5 {
  920. padding-top: 5px !important;
  921. }
  922. .padding-top-10 {
  923. padding-top: 10px !important;
  924. }
  925. .padding-top-15 {
  926. padding-top: 15px !important;
  927. }
  928. .padding-top-20 {
  929. padding-top: 20px !important;
  930. }
  931. .padding-top-30 {
  932. padding-top: 30px !important;
  933. }
  934. .padding-top-40 {
  935. padding-top: 40px !important;
  936. }
  937. .padding-left-0 {
  938. padding-left: 0 !important;
  939. }
  940. .padding-left-5 {
  941. padding-left: 5px !important;
  942. }
  943. .padding-left-10 {
  944. padding-left: 10px !important;
  945. }
  946. .padding-left-15 {
  947. padding-left: 15px !important;
  948. }
  949. .padding-left-20 {
  950. padding-left: 20px !important;
  951. }
  952. .padding-left-30 {
  953. padding-left: 30px !important;
  954. }
  955. .padding-left-40 {
  956. padding-left: 40px !important;
  957. }
  958. .padding-right-0 {
  959. padding-right: 0 !important;
  960. }
  961. .padding-right-5 {
  962. padding-right: 5px !important;
  963. }
  964. .padding-right-10 {
  965. padding-right: 10px !important;
  966. }
  967. .padding-right-15 {
  968. padding-right: 15px !important;
  969. }
  970. .padding-right-20 {
  971. padding-right: 20px !important;
  972. }
  973. .padding-right-30 {
  974. padding-right: 30px !important;
  975. }
  976. .padding-right-40 {
  977. padding-right: 40px !important;
  978. }
  979. .padding-bottom-0 {
  980. padding-bottom: 0 !important;
  981. }
  982. .padding-bottom-5 {
  983. padding-bottom: 5px !important;
  984. }
  985. .padding-bottom-10 {
  986. padding-bottom: 10px !important;
  987. }
  988. .padding-bottom-15 {
  989. padding-bottom: 15px !important;
  990. }
  991. .padding-bottom-20 {
  992. padding-bottom: 20px !important;
  993. }
  994. .padding-bottom-30 {
  995. padding-bottom: 30px !important;
  996. }
  997. .padding-bottom-40 {
  998. padding-bottom: 40px !important;
  999. }
  1000. .margin-0 {
  1001. margin: 0 !important;
  1002. }
  1003. .margin-5 {
  1004. margin: 5px !important;
  1005. }
  1006. .margin-10 {
  1007. margin: 10px !important;
  1008. }
  1009. .margin-15 {
  1010. margin: 15px !important;
  1011. }
  1012. .margin-20 {
  1013. margin: 20px !important;
  1014. }
  1015. .margin-25 {
  1016. margin: 25px !important;
  1017. }
  1018. .margin-30 {
  1019. margin: 30px !important;
  1020. }
  1021. .margin-40 {
  1022. margin: 40px !important;
  1023. }
  1024. .margin-top-0 {
  1025. margin-top: 0 !important;
  1026. }
  1027. .margin-top-5 {
  1028. margin-top: 5px !important;
  1029. }
  1030. .margin-top-10 {
  1031. margin-top: 10px !important;
  1032. }
  1033. .margin-top-15 {
  1034. margin-top: 15px !important;
  1035. }
  1036. .margin-top-20 {
  1037. margin-top: 20px !important;
  1038. }
  1039. .margin-top-25 {
  1040. margin-top: 25px !important;
  1041. }
  1042. .margin-top-30 {
  1043. margin-top: 30px !important;
  1044. }
  1045. .margin-top-40 {
  1046. margin-top: 40px !important;
  1047. }
  1048. .margin-left-0 {
  1049. margin-left: 0 !important;
  1050. }
  1051. .margin-left-5 {
  1052. margin-left: 5px !important;
  1053. }
  1054. .margin-left-10 {
  1055. margin-left: 10px !important;
  1056. }
  1057. .margin-left-15 {
  1058. margin-left: 15px !important;
  1059. }
  1060. .margin-left-20 {
  1061. margin-left: 20px !important;
  1062. }
  1063. .margin-left-25 {
  1064. margin-left: 25px !important;
  1065. }
  1066. .margin-left-30 {
  1067. margin-left: 30px !important;
  1068. }
  1069. .margin-left-40 {
  1070. margin-left: 40px !important;
  1071. }
  1072. .margin-right-0 {
  1073. margin-right: 0 !important;
  1074. }
  1075. .margin-right-5 {
  1076. margin-right: 5px !important;
  1077. }
  1078. .margin-right-10 {
  1079. margin-right: 10px !important;
  1080. }
  1081. .margin-right-15 {
  1082. margin-right: 15px !important;
  1083. }
  1084. .margin-right-20 {
  1085. margin-right: 20px !important;
  1086. }
  1087. .margin-right-25 {
  1088. margin-right: 25px !important;
  1089. }
  1090. .margin-right-30 {
  1091. margin-right: 30px !important;
  1092. }
  1093. .margin-right-40 {
  1094. margin-right: 40px !important;
  1095. }
  1096. .margin-bottom-0 {
  1097. margin-bottom: 0 !important;
  1098. }
  1099. .margin-bottom-5 {
  1100. margin-bottom: 5px !important;
  1101. }
  1102. .margin-bottom-10 {
  1103. margin-bottom: 10px !important;
  1104. }
  1105. .margin-bottom-15 {
  1106. margin-bottom: 15px !important;
  1107. }
  1108. .margin-bottom-20 {
  1109. margin-bottom: 20px !important;
  1110. }
  1111. .margin-bottom-25 {
  1112. margin-bottom: 25px !important;
  1113. }
  1114. .margin-bottom-30 {
  1115. margin-bottom: 30px !important;
  1116. }
  1117. .margin-bottom-40 {
  1118. margin-bottom: 40px !important;
  1119. }
  1120. /* 浏览器DEBUG */
  1121. .version-debug {
  1122. width: 100%;
  1123. color: #fff;
  1124. height: 100px;
  1125. font-size: 20px;
  1126. text-align: center;
  1127. line-height: 100px;
  1128. margin-bottom: 40px;
  1129. background-color: #E90D24;
  1130. }
  1131. /** 加载进度 */
  1132. .pace-inactive {
  1133. display: none;
  1134. }
  1135. .pace-progress {
  1136. top: 0;
  1137. right: 100%;
  1138. width: 100%;
  1139. height: 2px;
  1140. z-index: 2000;
  1141. position: fixed;
  1142. background: #22df80;
  1143. }
  1144. /* 图片上传 */
  1145. .moxie-shim {
  1146. display: none !important;
  1147. }
  1148. .uploadimage {
  1149. width: 5pc;
  1150. height: 5pc;
  1151. cursor: pointer;
  1152. display: inline-block;
  1153. background: url('../img/image.png') no-repeat center center;
  1154. background-size: cover;
  1155. }
  1156. .uploadimagemtl {
  1157. margin-right: 8px;
  1158. }
  1159. .uploadimagemtl a {
  1160. color: #fff;
  1161. width: 20px;
  1162. height: 20px;
  1163. float: right;
  1164. display: none;
  1165. text-align: center;
  1166. line-height: 22px;
  1167. background: rgba(0, 0, 0, 0.5);
  1168. }
  1169. .uploadimagemtl:hover a {
  1170. cursor: pointer;
  1171. display: inline-block;
  1172. }
  1173. .uploadimagemtl:hover a:hover {
  1174. color: #fff;
  1175. text-decoration: none;
  1176. }
  1177. /* 通用分页 */
  1178. .pagination-container {
  1179. line-height: 40px;
  1180. }
  1181. .pagination-container > span {
  1182. color: #666;
  1183. font-size: 9pt;
  1184. }
  1185. .pagination-container > ul {
  1186. float: right;
  1187. display: inline-block;
  1188. margin: 0;
  1189. padding: 0;
  1190. }
  1191. .pagination-container > ul > li {
  1192. z-index: 1;
  1193. display: inline-block;
  1194. }
  1195. .pagination-container > ul > li.active {
  1196. z-index: 2;
  1197. }
  1198. .pagination-container > ul > li.active > span {
  1199. color: #fff;
  1200. border-color: #098;
  1201. padding-right: 1px;
  1202. background: #009688 !important;
  1203. }
  1204. .pagination-container > ul > li > a,
  1205. .pagination-container > ul > li > span {
  1206. color: #333;
  1207. width: 33px;
  1208. height: 30px;
  1209. border: 1px solid #dcdcdc;
  1210. display: inline-block;
  1211. margin-left: -1px;
  1212. text-align: center;
  1213. line-height: 28px;
  1214. }
  1215. .pagination-container > ul > li > span {
  1216. background: #dcdcdc;
  1217. cursor: default;
  1218. }
  1219. .pagination-container > ul > li > a:hover {
  1220. background: #dcdcdc;
  1221. border-color: #dcdcdc;
  1222. }
  1223. [data-tips-image] {
  1224. cursor: zoom-in !important;
  1225. }
  1226. /*# sourceMappingURL=console.css.map */