console.css 24 KB

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