admin.css 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663
  1. body{
  2. font-size: 14px;
  3. font-family: "Monospaced Number", "Chinese Quote", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif;
  4. color: #444;
  5. padding: 0;
  6. margin: 0;
  7. background: #f2f2f2;
  8. height: 100%;
  9. /*position: relative;*/
  10. }
  11. #layuimain{
  12. }
  13. *,:after,:before{
  14. padding: 0;
  15. margin: 0;
  16. list-style: none;
  17. border: none;
  18. background: none;
  19. text-decoration: none;
  20. box-sizing: border-box;
  21. /*transition: all .5s;*/
  22. }
  23. .has-child{
  24. display: block !important;
  25. }
  26. .wechat{
  27. color: #51c332;
  28. }
  29. .yellow{
  30. color: #ffad10;
  31. }
  32. .clearfix:after{
  33. content: '';
  34. display: block;
  35. clear: both;
  36. }
  37. .pad15{
  38. padding: 15px;
  39. }
  40. .center{
  41. text-align: center;
  42. }
  43. .tm-tpl{
  44. margin :0 auto;
  45. position: absolute;
  46. left: 0;
  47. top: 0;
  48. height: 100%;
  49. width: 100%;
  50. }
  51. .tm-tpl:after,.tm-tpl:before{
  52. content: " ";
  53. display: table;
  54. clear: both;
  55. }
  56. .tpl-header-text{
  57. height: 42px;
  58. line-height: 42px;
  59. padding:0 15px;
  60. text-align: left !important;
  61. color: #444;
  62. font-size: 14px;
  63. border-bottom: 1px solid #f6f6f6;
  64. border-radius: 2px 2px 0 0;
  65. }
  66. .tpl-shade{
  67. z-index: 19891017;
  68. background-color: rgb(0, 0, 0);
  69. opacity: 0.1;
  70. position: absolute;
  71. left: 0;
  72. top: 0;
  73. height: 100%;
  74. width: 100%;
  75. }
  76. .tpl-shade div{
  77. width: 100%;
  78. height: 100%;
  79. position: relative;
  80. overflow: hidden;
  81. }
  82. .tpl-shade .shade-close{
  83. color: #fff;
  84. position: absolute;
  85. bottom: 55px;
  86. right: 5px;
  87. opacity: 1
  88. }
  89. .tpl-shade div .shade-load{
  90. width: 50px;
  91. height: 50px;
  92. color: #fff;
  93. font-size: 38px;
  94. line-height: 50px;
  95. text-align: center;
  96. position: absolute;
  97. left:0;
  98. right: 0;
  99. top: 0;
  100. bottom: 0;
  101. margin:auto;
  102. animation:shadeload 2s infinite;
  103. -webkit-animation:shadeload 2s infinite; /*Safari and Chrome*/
  104. }
  105. @keyframes shadeload{
  106. from {
  107. transform: rotate(0deg);
  108. }
  109. to {
  110. transform: rotate(360deg);
  111. }
  112. }
  113. .tpl-left-sidebar{
  114. position: fixed;
  115. left: 0;
  116. top: 0;
  117. display: flex;
  118. transition: all 0.4s ease-in-out;
  119. width: 160px;
  120. height: 100%;
  121. background: #20222a;
  122. box-shadow: 1px 0 2px 0 rgba(0,0,0,0.05);
  123. z-index: 5;
  124. transition: all .5s;
  125. }
  126. .tpl-left-sidebar ul{
  127. width: 100%;
  128. position: relative;
  129. }
  130. .tpl-left-sidebar ul li{
  131. display: inline-block;
  132. width: 100%;
  133. }
  134. .tpl-left-sidebar ul .logo{
  135. padding: 15px 0;
  136. color: #fff;
  137. font-size: 16px;
  138. text-align: center;
  139. }
  140. .tpl-left-sidebar ul .logo img{
  141. width:32px;
  142. height: 32px;
  143. display: none;
  144. }
  145. .tpl-left-sidebar ul .nav-item{
  146. margin: 0;
  147. }
  148. .tpl-left-sidebar ul .nav-item:hover{
  149. background:rgba(0,0,0,0.25);
  150. }
  151. .tpl-left-sidebar ul .active{
  152. color: #fff;
  153. background:rgba(0,0,0,0.25);
  154. }
  155. .tpl-left-sidebar ul li a:hover{
  156. color: #fff;
  157. }
  158. /*.tpl-left-sidebar ul li:hover:after{
  159. content: '';
  160. display: inline-block;
  161. width: 3px;
  162. position: absolute;
  163. left: 0;
  164. top: 0;
  165. height: 100%;
  166. background: #009688;
  167. }*/
  168. .tpl-left-sidebar ul li .nav-icon{
  169. width: 50px;
  170. text-align: center;
  171. line-height: 42px;
  172. font-size: 16px;
  173. box-sizing: border-box;
  174. float: left;
  175. margin-right: 0;
  176. }
  177. .tpl-left-sidebar ul li .a-item{
  178. display: block;
  179. box-sizing: border-box;
  180. width: auto;
  181. color: #fff;
  182. padding: 0;
  183. height: 42px;
  184. line-height: 42px;
  185. font-size: 14px;
  186. color: rgba(255,255,255,0.7);
  187. overflow: hidden;
  188. }
  189. .tpl-left-sidebar ul li a i{
  190. margin-right: 10px;
  191. width: 20px;
  192. font-size: 16px;
  193. display: inline-block;
  194. }
  195. .tpl-left-sidebar ul li:hover .nav-child-item{
  196. top:0;
  197. }
  198. .tpl-left-sidebar ul li .nav-child-item{
  199. width: 120px;
  200. position: absolute;
  201. top: -2500px;
  202. left:160px;
  203. margin: 50px 0 0 0;
  204. height: 100%;
  205. transition: all .3s;
  206. display: none;
  207. }
  208. .tpl-left-sidebar ul li .nav-child-item *{
  209. color: #666 !important;
  210. }
  211. .tpl-left-sidebar ul li .nav-child-item .nav-child-list{
  212. height: 100%;
  213. background:#fff;
  214. border-right: 1px solid #ccc;
  215. border-bottom: 1px solid #ccc;
  216. z-index: 1;
  217. }
  218. .tpl-left-sidebar ul li .nav-child-item .nav-child-list li{
  219. color: #444;
  220. }
  221. .tpl-left-sidebar ul li .nav-child-item .nav-child-list li a{
  222. height: 42px;
  223. line-height: 42px;
  224. display: block;
  225. padding-left: 15px;
  226. color: #444;
  227. position: relative;
  228. }
  229. .tpl-left-sidebar ul li .nav-child-item .nav-child-list li a:hover{
  230. background:rgba(0,0,0,0.08);
  231. }
  232. .tpl-left-sidebar ul li .nav-child-item .nav-child-list li a:hover:after{
  233. content: '';
  234. display: inline-block;
  235. width: 100%;
  236. height: 1px;
  237. position: absolute;
  238. left: 0;
  239. bottom: 0;
  240. background: transparent;
  241. }
  242. .tpl-left-sidebar ul li .nav-child-item .nav-child-list li a i{
  243. margin-right: 3px;
  244. }
  245. .tpl-left-sidebar .sidebar-footer{
  246. width: 100%;
  247. height: 42px;
  248. line-height: 42px;
  249. box-shadow: 0 -2px 2px rgba(0,0,0,0.3);
  250. position: absolute;
  251. bottom: 0;
  252. left: 0;
  253. transition: all .5s;
  254. }
  255. .tpl-left-sidebar .sidebar-footer a{
  256. width: 25%;
  257. box-sizing: border-box;
  258. float: left;
  259. text-align: center;
  260. position: relative;
  261. transition: all .5s;
  262. color: #fff;
  263. }
  264. .tpl-left-sidebar .sidebar-footer a:hover{
  265. background: rgba(0,0,0,0.1);
  266. opacity: .8;
  267. }
  268. .tpl-left-sidebar .sidebar-footer a .badge{
  269. position: absolute;
  270. padding:0 3px;
  271. width: 23px;
  272. overflow: hidden;
  273. height: 16px;
  274. font-size: 12px;
  275. right:0;
  276. top: 0;
  277. display: block;
  278. line-height: 16px;
  279. }
  280. .tpl-right-item{
  281. position: fixed;
  282. width: 100%;
  283. height: 100%;
  284. padding-left: 160px;
  285. top: 0;
  286. transition: all .5s;
  287. /*background: #DE5044;*/
  288. }
  289. .tpl-right-item .tpl-body{
  290. position: relative;
  291. height: 100%;
  292. overflow: auto;
  293. z-index: 1;
  294. }
  295. .content-pannel{
  296. margin: -8px;
  297. }
  298. .content-pannel *{
  299. padding: 7.5px;
  300. }
  301. .tpl-right-item .tpl-body .tpl-header{
  302. height: 50px;
  303. width: 100%;
  304. padding-left: 160px;
  305. line-height: 50px;
  306. position: fixed;
  307. top: 0;
  308. left: 0;
  309. transition: all .5s;
  310. z-index: 999;
  311. }
  312. .tpl-right-item .tpl-body .tpl-header .tpl-header-fluid{
  313. width: 100%;
  314. height: 100%;
  315. padding:0 15px;
  316. background:#fff;
  317. transition: all 0.4s ease-in-out;
  318. box-shadow: 0 1px 2px 0 rgba(0,0,0,0.05);
  319. border-bottom: 1px solid #ccc;
  320. }
  321. .tpl-right-item .tpl-body .tpl-header .tpl-button{
  322. padding: 0 22px 0 0;
  323. line-height: 50px;
  324. float: left;
  325. cursor: pointer;
  326. font-size: 16px;
  327. font-weight: 400;
  328. }
  329. .tpl-right-item .tpl-body .tpl-header .text a{
  330. font-size: 14px;
  331. }
  332. .tpl-right-item .tpl-body .tpl-header .tpl-button:hover{
  333. color: #ccc;
  334. }
  335. .tpl-right-item .tpl-body .tpl-header .tpl-userbar{
  336. float: right;
  337. width: auto;
  338. }
  339. .tpl-right-item .tpl-body .tpl-header .tpl-userbar ul li{
  340. float: left;
  341. }
  342. .tpl-right-item .tpl-body .tpl-header .tpl-userbar ul li:hover{
  343. background:rgba(0,0,0,0.05);
  344. }
  345. .tpl-right-item .tpl-body .tpl-header .tpl-userbar ul li a{
  346. padding: 15px;
  347. }
  348. .tpl-right-item .tpl-body .tpl-header .tpl-userbar ul li a i{
  349. margin-right: 5px;
  350. }
  351. .tpl-right-item .tpl-body .tpl-content{
  352. padding: 0 15px;
  353. padding-top: 60px;
  354. margin-bottom: 50px;
  355. }
  356. .fpl-fluid{
  357. margin:-7.5px;
  358. padding:0;
  359. }
  360. .tpl-card-title{
  361. width: 100%;
  362. height: 42px;
  363. line-height: 42px;
  364. padding: 0 0 0 15px;
  365. text-align: left;
  366. border-bottom: 1px solid #ccc;
  367. position: relative;
  368. }
  369. .tpl-card-title .tpl-icon-tips{
  370. line-height: initial;
  371. position: absolute;
  372. right: 15px;
  373. top: 50%;
  374. margin-top: -15px;
  375. cursor: pointer;
  376. }
  377. .tpl-card{
  378. padding: 0;
  379. background-color: #fff;
  380. }
  381. .card-a{
  382. color: #1B8BF5;
  383. margin-right: 12px;
  384. }
  385. .card-pannel{
  386. padding: 10px 15px;
  387. box-shadow: 0 1px 2px 0 rgba(0,0,0,.05);
  388. box-sizing: border-box;
  389. }
  390. .card-pannel .user-item{
  391. box-sizing: border-box;
  392. padding: 10px 0;
  393. text-align: center;
  394. }
  395. .card-pannel .user-item *{
  396. margin:4.5px;
  397. }
  398. .card-pannel .user-item img{
  399. width: 96px;
  400. height: 96px;
  401. border-radius: 50%;
  402. }
  403. .user-upload{
  404. cursor: pointer;
  405. }
  406. .card-pannel .user-item .user-name{
  407. font-weight: 600;
  408. }
  409. .card-pannel .user-item .user-name span{
  410. color: #999;
  411. }
  412. .tpl-right-item .tpl-body .tpl-content .tpl-pannel{
  413. padding: 15px;
  414. border-radius: 2px;
  415. background-color: #fff;
  416. box-shadow: 0 1px 2px 0 rgba(0,0,0,.05);
  417. margin-bottom: 15px;
  418. }
  419. .tpl-right-item .tpl-body .tpl-content .row-content{
  420. padding: 15px;
  421. background:#f0f0f0;
  422. height: auto;
  423. box-shadow: 0 5px 6px rgba(0,0,0,0.5);
  424. border-radius: 5px;
  425. border:1px solid #f4f4f4;
  426. min-height: 500px;
  427. margin-bottom: 15px;
  428. }
  429. .tpl-right-item .tpl-body .right-bar{
  430. width: 300px;
  431. margin: 50px 0;
  432. position: fixed;
  433. pointer-events: auto;
  434. top: 0;
  435. height: 100%;
  436. z-index: 19891018;
  437. right:-1500px;
  438. transition: all .5s;
  439. }
  440. .tpl-right-item .tpl-body .right-bar .right-bar-fluid{
  441. background:#fff;
  442. width: 100%;
  443. height: 100%;
  444. border-bottom: 1px solid #f4f4f4;
  445. border-left: 1px solid #f4f4f4;
  446. border-radius: 2px;
  447. box-shadow: 1px 1px 20px rgba(0,0,0,.3);
  448. position: relative;
  449. }
  450. .tpl-right-item .tpl-body .right-bar .right-bar-fluid .style-item{
  451. padding: 15px;
  452. }
  453. .tpl-right-item .tpl-body .right-bar .right-bar-fluid .style-item li:hover{
  454. border:1px solid #009688;
  455. }
  456. .tpl-right-item .tpl-body .right-bar .right-bar-fluid .style-item li{
  457. position: relative;
  458. width: 80px;
  459. height: 50px;
  460. box-sizing: border-box;
  461. float: left;
  462. margin:0 8px 8px 0;
  463. cursor: pointer;
  464. border-radius: 0 2px 2px;
  465. background:#f2f2f2;
  466. border:1px solid #ccc;
  467. }
  468. .tpl-right-item .tpl-body .right-bar .right-bar-fluid .style-item li .header-style{
  469. width: 100%;
  470. height: 10px;
  471. border-top: 1px solid #f2f2f2;
  472. border-right: 1px solid #f2f2f2;
  473. background:#fff;
  474. z-index: 1;
  475. }
  476. .tpl-right-item .tpl-body .right-bar .right-bar-fluid .style-item li .left-style{
  477. position: absolute;
  478. left: 0;
  479. top: 0;
  480. width: 20px;
  481. height: 100%;
  482. box-shadow: 1px 0 2px 0 rgba(0,0,0,.05);
  483. z-index: 2;
  484. }
  485. .tpl-right-item .tpl-body .right-bar .right-bar-fluid .style-item li .left-style .logo-style{
  486. position: absolute;
  487. left: 0;
  488. top: 0;
  489. width: 100%;
  490. height: 10px;
  491. box-shadow: 0 1px 2px 0 rgba(0,0,0,.15);
  492. }
  493. .tpl-right-item .tpl-body .tpl-content .video-pannel{
  494. border-radius: 0 2px 2px;
  495. width: 100%;
  496. position: relative;
  497. background:#fff;
  498. margin-bottom: 15px;
  499. }
  500. .tpl-right-item .tpl-body .tpl-content .video-pannel .video-shade{
  501. position: absolute;
  502. width: 100%;
  503. left: 0;
  504. top: 0;
  505. z-index: 1;
  506. height: 100%;
  507. background: #000;
  508. opacity: .5;
  509. filter:alpha(opacity=50);
  510. }
  511. .tpl-right-item .tpl-body .tpl-content .video-pannel img{
  512. width: 100%;
  513. height: 180px;
  514. }
  515. .tpl-right-item .tpl-body .tpl-content .video-pannel .play{
  516. width: 42px;
  517. height: 42px;
  518. line-height: 42px;
  519. position: absolute;
  520. left: 0;
  521. right: 0;
  522. top: 0;
  523. bottom: 0;
  524. margin: auto;
  525. font-size: 42px;
  526. color: #fff;
  527. z-index: 2;
  528. text-align: center;
  529. }
  530. .tpl-layer{
  531. position: fixed;
  532. left: 0;
  533. top: 0;
  534. width: 100%;
  535. height: 100%;
  536. z-index: 19891018;/*比遮罩层高一级*/
  537. }
  538. .tpl-layer .tpl-layer-content{
  539. padding:20px 15px;
  540. background: #fff;
  541. width: 800px;
  542. margin: auto;
  543. margin-top: 100px;
  544. border-radius: 5px;
  545. border:2px solid #009688;
  546. position: relative;
  547. box-shadow: 0 2px 5px rgba(0,0,0,0.5)
  548. }
  549. .tpl-layer .tpl-layer-content video{
  550. width: 100%;
  551. }
  552. .tpl-layer .tpl-layer-content .video-close{
  553. width: 25px;
  554. height: 25px;
  555. font-size: 18px;
  556. position: absolute;
  557. right: -10px;
  558. top: -10px;
  559. border:2px solid #009688;
  560. text-align: center;
  561. line-height: 20px;
  562. border-radius: 50%;
  563. color: #009688;
  564. background:#fff;
  565. transition: all .5s;
  566. }
  567. .tpl-layer .tpl-layer-content .video-close:hover{
  568. transform: scale(1.1);
  569. }
  570. .tpl-right-item .tpl-body .tpl-footer{
  571. position: fixed;
  572. width: 100%;
  573. left: 0;
  574. bottom: 0;
  575. height: 50px;
  576. line-height: 50px;
  577. box-shadow:0 -3px 5px rgba(0,0,0,0.05);
  578. padding-left: 160px;
  579. transition: all .5s;
  580. z-index: 13400;
  581. }
  582. .tpl-right-item .tpl-body .tpl-footer .tpl-footer-fluid{
  583. background: #fff;
  584. padding:0 15px;
  585. }
  586. .tpl-right-item .tpl-body .tpl-footer .tpl-footer-fluid .f-item-text{
  587. display: inline-block;
  588. color: #444;
  589. margin-right: 15px;
  590. cursor: pointer;
  591. }
  592. .layui-form-label{
  593. width: 100px !important;
  594. }
  595. .small-item{
  596. transition: all .5s;
  597. }
  598. .small-item .tpl-left-sidebar{
  599. width: 50px;
  600. }
  601. .small-item .tpl-left-sidebar .a-item{
  602. width: 50px;
  603. }
  604. .small-item .tpl-left-sidebar .sidebar-footer{
  605. height: auto;
  606. }
  607. .small-item .tpl-left-sidebar .sidebar-footer a{
  608. width: 100%;
  609. }
  610. .small-item .tpl-left-sidebar .a-item span{
  611. display: none;
  612. }
  613. .small-item .tpl-left-sidebar .logo span{
  614. display: none;
  615. }
  616. .small-item .tpl-left-sidebar .logo img{
  617. display: inline-block;
  618. border-radius: 50%;
  619. }
  620. .small-item .tpl-left-sidebar .nav-child-item{
  621. left: 50px;
  622. }
  623. .small-item .tpl-right-item{
  624. padding-left: 50px;
  625. }
  626. .small-item .tpl-footer{
  627. padding-left: 50px;
  628. }
  629. .small-item .tpl-header{
  630. padding-left: 50px !important;
  631. }
  632. .small-item .tpl-footer{
  633. z-index: 1347444;
  634. padding-left: 50px !important;
  635. }
  636. .tpl-h-title{
  637. width: 100%;
  638. padding:15px 0;
  639. border-bottom:1px solid #ccc;
  640. margin-bottom: 15px;
  641. }
  642. .tpl-h-title i{
  643. font-size: 12px !important;
  644. }
  645. .item-a a{
  646. color: #1B8BF5;
  647. display: inline-block;
  648. margin-right: 12px;
  649. }
  650. .padleft1{
  651. padding-left: 45px;
  652. }
  653. .padleft2{
  654. padding-left: 90px;
  655. }