weadmin.css 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623
  1. @charset "utf-8";
  2. @import "../../lib/layui/css/layui.css";
  3. * {
  4. margin: 0px;
  5. padding: 0px;
  6. }
  7. a {
  8. text-decoration: none;
  9. }
  10. html {
  11. width: 100%;
  12. height: 100%;
  13. overflow-x: hidden;
  14. overflow-y: auto;
  15. }
  16. body {
  17. width: 100%;
  18. min-height: 100%;
  19. }
  20. .fr {
  21. float: right;
  22. }
  23. .font16 {
  24. font-size: 16px;
  25. }
  26. .rightMenu {
  27. position: absolute;
  28. width: 120px;
  29. line-height: 24px;
  30. z-index: 999;
  31. background: #FFF;
  32. border: 1px solid #F2F2F2;
  33. border-bottom: none;
  34. border-radius: 3px;
  35. display: none;
  36. }
  37. .rightMenu li {
  38. display: block;
  39. padding: 4px 10px;
  40. color: #CCC;
  41. border-bottom: 1px solid #F2F2F2;
  42. }
  43. .rightMenu li:hover {
  44. background: #EEE;
  45. color: #666;
  46. }
  47. /**treeselect*/
  48. .layui-form-select .layui-tree {
  49. display: none;
  50. position: absolute;
  51. left: 0;
  52. top: 42px;
  53. padding: 5px 0;
  54. z-index: 999;
  55. min-width: 100%;
  56. border: 1px solid #d2d2d2;
  57. max-height: 300px;
  58. overflow-y: auto;
  59. background-color: #fff;
  60. border-radius: 2px;
  61. box-shadow: 0 2px 4px rgba(0, 0, 0, 0.12);
  62. box-sizing: border-box;
  63. }
  64. .layui-form-selected .layui-tree {
  65. display: block;
  66. }
  67. .weadmin-trailer {
  68. position: absolute;
  69. left: 0;
  70. top: 0;
  71. height: 100%;
  72. width: 100%;
  73. padding: 15px;
  74. display: flex;
  75. justify-content: center;
  76. flex-direction: column;
  77. text-align: center;
  78. box-sizing: border-box;
  79. font-size: 20px;
  80. font-weight: 300;
  81. color: #ccc;
  82. }
  83. .login-bg {
  84. /*background: #eeeeee 0 0 no-repeat;*/
  85. background: url(../images/bg.png) no-repeat center;
  86. background-size: cover;
  87. overflow: hidden;
  88. }
  89. .login {
  90. margin: 120px auto 0 auto;
  91. min-height: 420px;
  92. max-width: 420px;
  93. padding: 40px;
  94. background-color: #ffffff;
  95. margin-left: auto;
  96. margin-right: auto;
  97. border-radius: 4px;
  98. /* overflow-x: hidden; */
  99. box-sizing: border-box;
  100. }
  101. .login a.logo {
  102. display: block;
  103. height: 58px;
  104. width: 167px;
  105. margin: 0 auto 30px auto;
  106. background-size: 167px 42px;
  107. }
  108. .login .message {
  109. margin: 10px 0 0 -58px;
  110. padding: 18px 10px 18px 60px;
  111. background: #189F92;
  112. position: relative;
  113. color: #fff;
  114. font-size: 16px;
  115. }
  116. .login #darkbannerwrap {
  117. background: url(../images/aiwrap.png);
  118. width: 18px;
  119. height: 10px;
  120. margin: 0 0 20px -58px;
  121. position: relative;
  122. }
  123. .login input[type=text],
  124. .login input[type=file],
  125. .login input[type=password],
  126. .login input[type=email],
  127. .login select {
  128. border: 1px solid #DCDEE0;
  129. vertical-align: middle;
  130. border-radius: 3px;
  131. height: 50px;
  132. padding: 0px 16px;
  133. font-size: 14px;
  134. color: #555555;
  135. outline: none;
  136. width: 100%;
  137. box-sizing: border-box;
  138. }
  139. .login input[type=text]:focus,
  140. .login input[type=file]:focus,
  141. .login input[type=password]:focus,
  142. .login input[type=email]:focus,
  143. .login select:focus {
  144. border: 1px solid #27A9E3;
  145. }
  146. .login input[type=submit],
  147. .login input[type=button] {
  148. display: inline-block;
  149. padding: 12px 24px;
  150. margin: 0px;
  151. font-size: 18px;
  152. line-height: 24px;
  153. text-align: center;
  154. white-space: nowrap;
  155. vertical-align: middle;
  156. cursor: pointer;
  157. color: #ffffff;
  158. background-color: #189F92;
  159. border-radius: 3px;
  160. border: none;
  161. -webkit-appearance: none;
  162. outline: none;
  163. width: 100%;
  164. }
  165. .login hr {
  166. background: #fff 0 0 no-repeat;
  167. }
  168. .login hr.hr15 {
  169. height: 15px;
  170. border: none;
  171. margin: 0px;
  172. padding: 0px;
  173. width: 100%;
  174. }
  175. .login hr.hr20 {
  176. height: 20px;
  177. border: none;
  178. margin: 0px;
  179. padding: 0px;
  180. width: 100%;
  181. }
  182. .weadmin-body {
  183. padding: 20px;
  184. }
  185. .weadmin-nav {
  186. padding: 0 20px;
  187. position: relative;
  188. z-index: 99;
  189. border-bottom: 1px solid #e5e5e5;
  190. line-height: 39px;
  191. height: 39px;
  192. overflow: hidden;
  193. }
  194. .weadmin-block {
  195. display: block;
  196. margin-bottom: 10px;
  197. padding: 5px;
  198. line-height: 22px;
  199. /* border-left: 5px solid #009688; */
  200. border-radius: 0 2px 2px 0;
  201. background-color: #f2f2f2;
  202. }
  203. .we-search {
  204. margin-bottom: 20px;
  205. font-size: 16px;
  206. }
  207. .we-search input.layui-input {
  208. width: 190px;
  209. }
  210. .we-red {
  211. color: red;
  212. }
  213. .page {
  214. margin-top: 20px;
  215. text-align: center;
  216. }
  217. .page a {
  218. display: inline-block;
  219. background: #fff 0 0 no-repeat;
  220. color: #888;
  221. padding: 10px;
  222. min-width: 15px;
  223. border: 1px solid #E2E2E2;
  224. }
  225. .page span {
  226. display: inline-block;
  227. padding: 10px;
  228. min-width: 15px;
  229. border: 1px solid #E2E2E2;
  230. }
  231. .page span.current {
  232. display: inline-block;
  233. background: #009688 0 0 no-repeat;
  234. color: #fff;
  235. padding: 10px;
  236. min-width: 15px;
  237. border: 1px solid #009688;
  238. }
  239. .page .pagination li {
  240. display: inline-block;
  241. margin-right: 5px;
  242. text-align: center;
  243. }
  244. .page .pagination li.active span {
  245. background: #009688 0 0 no-repeat;
  246. color: #fff;
  247. border: 1px solid #009688;
  248. }
  249. /*登录样式*/
  250. /*头部*/
  251. .container {
  252. width: 100%;
  253. height: 45px;
  254. background-color: #222;
  255. border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  256. }
  257. .container .logo a {
  258. float: left;
  259. color: #fff;
  260. font-size: 18px;
  261. padding-left: 20px;
  262. line-height: 45px;
  263. width: 200px;
  264. }
  265. .container .right {
  266. background-color: rgba(0, 0, 0, 0);
  267. float: right;
  268. }
  269. .container .left_open {
  270. height: 45px;
  271. float: left;
  272. }
  273. .container .left_open i {
  274. display: block;
  275. background: rgba(255, 255, 255, 0.1) 0 0 no-repeat;
  276. color: #fff;
  277. width: 32px;
  278. height: 32px;
  279. line-height: 32px;
  280. border-radius: 3px;
  281. text-align: center;
  282. margin-top: 7px;
  283. cursor: pointer;
  284. }
  285. .container .left_open i:hover {
  286. background: rgba(255, 255, 255, 0.3) 0 0 no-repeat;
  287. }
  288. .container .left {
  289. background-color: rgba(0, 0, 0, 0);
  290. float: left;
  291. }
  292. .container .layui-nav-item {
  293. line-height: 45px;
  294. }
  295. .container .layui-nav-child {
  296. top: 50px;
  297. }
  298. .container .layui-nav-child i {
  299. margin-right: 10px;
  300. }
  301. .layui-nav .layui-nav-item a {
  302. color: #fff;
  303. }
  304. .layui-nav .layui-nav-child a {
  305. color: #333;
  306. }
  307. .left-nav {
  308. position: absolute;
  309. top: 46px;
  310. bottom: 42px;
  311. left: 0;
  312. z-index: 2;
  313. padding-top: 10px;
  314. background-color: #EEEEEE;
  315. width: 220px;
  316. max-width: 220px;
  317. overflow: auto;
  318. overflow-x: hidden;
  319. border-right: 1px solid #e5e5e5;
  320. }
  321. .left-nav #nav .current {
  322. background-color: rgba(0, 0, 0, 0.3);
  323. }
  324. .left-nav #nav li {
  325. border-bottom: 1px solid #e5e5e5;
  326. }
  327. .left-nav #nav li:hover > a {
  328. /*color: blue;*/
  329. }
  330. .left-nav #nav li a {
  331. font-size: 14px;
  332. padding: 10px 15px 10px 20px;
  333. display: block;
  334. cursor: pointer;
  335. }
  336. .left-nav #nav li a cite {
  337. font-size: 14px;
  338. }
  339. .left-nav #nav li .opened {
  340. display: block;
  341. }
  342. .left-nav #nav li .opened:hover {
  343. /*background: #fff 0 0 no-repeat;*/
  344. }
  345. .left-nav #nav li .sub-menu {
  346. display: none;
  347. }
  348. .left-nav #nav li .sub-menu li:hover {
  349. /*color: blue;*/
  350. /*background: #fff 0 0 no-repeat;*/
  351. }
  352. .left-nav #nav li .sub-menu li a {
  353. padding: 12px 15px 12px 30px;
  354. font-size: 14px;
  355. cursor: pointer;
  356. }
  357. .left-nav #nav li .sub-menu li a i {
  358. font-size: 12px;
  359. }
  360. .left-nav #nav li .sub-menu li a:hover {
  361. color: #148cf1;
  362. }
  363. .left-nav #nav li .sub-menu li .sub-menu li a {
  364. padding-left: 45px;
  365. }
  366. .left-nav #nav li .nav_right {
  367. float: right;
  368. font-size: 16px;
  369. transform: rotate(180deg);
  370. }
  371. .left-nav #nav li a i {
  372. padding-right: 10px;
  373. line-height: 14px;
  374. }
  375. .x-slide_left {
  376. width: 17px;
  377. height: 61px;
  378. background: url(../images/icon.png) 0 0 no-repeat;
  379. position: absolute;
  380. top: 200px;
  381. left: 221px;
  382. cursor: pointer;
  383. z-index: 3;
  384. }
  385. .page-content {
  386. position: absolute;
  387. top: 46px;
  388. right: 0;
  389. bottom: 42px;
  390. left: 221px;
  391. overflow: hidden;
  392. z-index: 1;
  393. }
  394. .page-content-bg {
  395. position: absolute;
  396. top: 46px;
  397. right: 0;
  398. bottom: 42px;
  399. left: 221px;
  400. background: rgba(0, 0, 0, 0.5) 0 0 no-repeat;
  401. overflow: hidden;
  402. z-index: 100;
  403. display: none;
  404. }
  405. .page-content .tab {
  406. height: 100%;
  407. width: 100%;
  408. background: #EFEEF0 0 0 no-repeat;
  409. margin: 0px;
  410. }
  411. .page-content .layui-tab-title {
  412. /*padding-top: 5px;*/
  413. height: 35px;
  414. background: #EFEEF0 0 0 no-repeat;
  415. position: relative;
  416. z-index: 100;
  417. }
  418. .page-content .layui-tab-title li {
  419. line-height: 35px;
  420. }
  421. .page-content .layui-tab-title li .layui-tab-close {
  422. border-radius: 50%;
  423. }
  424. .page-content .layui-tab-title .layui-this:after {
  425. height: 36px;
  426. }
  427. .page-content .layui-tab-title .layui-this {
  428. background: #fff 0 0 no-repeat;
  429. }
  430. .page-content .layui-tab-bar {
  431. height: 34px;
  432. line-height: 35px;
  433. }
  434. .page-content .layui-tab-content {
  435. position: absolute;
  436. top: 36px;
  437. bottom: 0px;
  438. width: 100%;
  439. background: #fff 0 0 no-repeat;
  440. padding: 0px;
  441. overflow: hidden;
  442. }
  443. .page-content .layui-tab-content .layui-tab-item {
  444. width: 100%;
  445. height: 100%;
  446. }
  447. .page-content .layui-tab-content .layui-tab-item iframe {
  448. width: 100%;
  449. height: 100%;
  450. }
  451. .welcome-footer {
  452. padding: 30px 0;
  453. line-height: 30px;
  454. text-align: center;
  455. background-color: #eee;
  456. color: #666;
  457. font-weight: 300;
  458. }
  459. body .layui-layout-admin .footer-demo {
  460. height: auto;
  461. padding: 15px 0;
  462. line-height: 26px;
  463. }
  464. .welcome-footer a {
  465. padding: 0 5px;
  466. }
  467. table th,
  468. table td {
  469. word-break: break-all;
  470. }
  471. .footer {
  472. position: fixed;
  473. bottom: 0px;
  474. width: 100%;
  475. background-color: #222;
  476. border-top: 1px solid rgba(255, 255, 255, 0.2);
  477. line-height: 41px;
  478. color: #fff;
  479. /*padding-left: 10px;*/
  480. }
  481. .footer .copyright {
  482. margin-left: 10px;
  483. }
  484. @media screen and (max-width: 768px) {
  485. .fast-add {
  486. display: none;
  487. }
  488. .layui-nav .to-index {
  489. display: none;
  490. }
  491. .container .logo a {
  492. width: 140px;
  493. }
  494. .container .left_open {
  495. /*float: right;*/
  496. }
  497. .left-nav {
  498. left: -221px;
  499. }
  500. .page-content {
  501. left: 0px;
  502. }
  503. .page-content .layui-tab-content .layui-tab-item {
  504. -webkit-overflow-scrolling: touch;
  505. overflow-y: scroll;
  506. }
  507. .we-search input.layui-input {
  508. width: 100%;
  509. margin: 10px;
  510. }
  511. }
  512. .we-changelog .layui-timeline-title h3 {
  513. display: inline-block;
  514. }
  515. .we-changelog .layui-timeline-title .layui-badge-rim {
  516. top: -2px;
  517. left: 10px;
  518. }
  519. .weadmin-shortcut {
  520. height: 185px!important;
  521. background-color: #fff;
  522. }
  523. .weadmin-shortcut .layui-carousel,
  524. .weadmin-shortcut > [carousel-item] > * {
  525. background-color: #fff;
  526. }
  527. .weadmin-shortcut .layui-col-space10 {
  528. margin: 0;
  529. }
  530. .weadmin-shortcut li {
  531. text-align: center;
  532. }
  533. .weadmin-shortcut li a {
  534. display: block;
  535. }
  536. .weadmin-shortcut li .layui-icon {
  537. display: inline-block;
  538. width: 100%;
  539. height: 120px;
  540. line-height: 120px;
  541. text-align: center;
  542. border-radius: 2px;
  543. font-size: 30px;
  544. background-color: #F8F8F8;
  545. color: #333;
  546. transition: all .3s;
  547. -webkit-transition: all .3s;
  548. }
  549. .weadmin-shortcut li:hover .layui-icon {
  550. background-color: #f2f2f2;
  551. }
  552. .weadmin-shortcut li cite {
  553. position: relative;
  554. top: 2px;
  555. display: block;
  556. color: #333333;
  557. text-overflow: ellipsis;
  558. overflow: hidden;
  559. white-space: nowrap;
  560. font-size: 16px;
  561. }
  562. .weadmin-shortcut li p {
  563. font-size: 12px;
  564. line-height: 16px;
  565. color: #666666;
  566. margin-top: 5px;
  567. }
  568. .weadmin-shortcut li p span {
  569. text-align: left;
  570. display: inline-block;
  571. }
  572. .weadmin-shortcut .layui-carousel-ind {
  573. position: absolute;
  574. top: -41px;
  575. text-align: right;
  576. }
  577. .weadmin-shortcut .layui-carousel-ind ul {
  578. background: 0 0;
  579. }
  580. .weadmin-shortcut .layui-carousel-ind ul li {
  581. background-color: #e2e2e2;
  582. }
  583. .weadmin-shortcut .layui-carousel-ind ul li:hover {
  584. background-color: #c2c2c2;
  585. }
  586. .weadmin-shortcut .layui-carousel-ind ul li.layui-this {
  587. background-color: #999;
  588. }
  589. .weadmin-text p {
  590. margin-bottom: 10px;
  591. text-indent: 2em;
  592. }
  593. .layui-card-header.layui-elem-quote {
  594. line-height: 22px;
  595. height: 22px;
  596. padding: 15px;
  597. }
  598. .weadmin-notice {
  599. height: 60px!important;
  600. }
  601. .weadmin-notice a {
  602. display: block;
  603. text-align: center;
  604. line-height: 60px;
  605. }
  606. .weadmin-notice .layui-carousel-ind {
  607. position: absolute;
  608. top: -56px;
  609. text-align: right;
  610. }
  611. .weadmin-notice .layui-carousel-ind ul {
  612. background: 0 0;
  613. }
  614. .weadmin-notice .layui-carousel-ind ul li {
  615. background-color: #e2e2e2;
  616. }
  617. .weadmin-notice .layui-carousel-ind ul li:hover {
  618. background-color: #c2c2c2;
  619. }
  620. .weadmin-notice .layui-carousel-ind ul li.layui-this {
  621. background-color: #999;
  622. }
  623. /*# sourceMappingURL=weadmin.css.map */