weadmin.css 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625
  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: hidden;
  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: #ffffff 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: #ffffff 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 {
  258. float: left;
  259. color: #fff;
  260. font-size: 18px;
  261. padding-left: 20px;
  262. line-height: 45px;
  263. width: 200px;
  264. height: 100%;
  265. }
  266. .container .right {
  267. background-color: rgba(0, 0, 0, 0);
  268. float: right;
  269. }
  270. .container .left_open {
  271. height: 45px;
  272. float: left;
  273. }
  274. .container .left_open i {
  275. display: block;
  276. background: rgba(255, 255, 255, 0.1) 0 0 no-repeat;
  277. color: #fff;
  278. width: 32px;
  279. height: 32px;
  280. line-height: 32px;
  281. border-radius: 3px;
  282. text-align: center;
  283. margin-top: 7px;
  284. cursor: pointer;
  285. }
  286. .container .left_open i:hover {
  287. background: rgba(255, 255, 255, 0.3) 0 0 no-repeat;
  288. }
  289. .container .left {
  290. background-color: rgba(0, 0, 0, 0);
  291. float: left;
  292. }
  293. .container .layui-nav-item {
  294. line-height: 45px;
  295. }
  296. .container .layui-nav-child {
  297. top: 50px;
  298. }
  299. .container .layui-nav-child i {
  300. margin-right: 10px;
  301. }
  302. .layui-nav .layui-nav-item a {
  303. color: #fff;
  304. }
  305. .layui-nav .layui-nav-child a {
  306. color: #333;
  307. }
  308. .left-nav {
  309. position: absolute;
  310. top: 46px;
  311. bottom: 42px;
  312. left: 0;
  313. z-index: 2;
  314. padding-top: 10px;
  315. background-color: #EEEEEE;
  316. width: 220px;
  317. max-width: 220px;
  318. overflow: auto;
  319. overflow-x: hidden;
  320. border-right: 1px solid #e5e5e5;
  321. }
  322. .left-nav #nav .current {
  323. background-color: rgba(0, 0, 0, 0.3);
  324. }
  325. .left-nav #nav li {
  326. border-bottom: 1px solid #e5e5e5;
  327. }
  328. .left-nav #nav li:hover > a {
  329. /*color: blue;*/
  330. }
  331. .left-nav #nav li a {
  332. font-size: 14px;
  333. padding: 10px 15px 10px 20px;
  334. display: block;
  335. cursor: pointer;
  336. }
  337. .left-nav #nav li a cite {
  338. font-size: 14px;
  339. }
  340. .left-nav #nav li .opened {
  341. display: block;
  342. }
  343. .left-nav #nav li .opened:hover {
  344. /*background: #fff 0 0 no-repeat;*/
  345. }
  346. .left-nav #nav li .sub-menu {
  347. display: none;
  348. }
  349. .left-nav #nav li .sub-menu li:hover {
  350. /*color: blue;*/
  351. /*background: #fff 0 0 no-repeat;*/
  352. }
  353. .left-nav #nav li .sub-menu li a {
  354. padding: 12px 15px 12px 30px;
  355. font-size: 14px;
  356. cursor: pointer;
  357. }
  358. .left-nav #nav li .sub-menu li a i {
  359. font-size: 12px;
  360. }
  361. .left-nav #nav li .sub-menu li a:hover {
  362. color: #148cf1;
  363. }
  364. .left-nav #nav li .sub-menu li .sub-menu li a {
  365. padding-left: 45px;
  366. }
  367. .left-nav #nav li .nav_right {
  368. float: right;
  369. font-size: 16px;
  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 li:first-child .layui-tab-close {
  425. display: none;
  426. }
  427. .page-content .layui-tab-title .layui-this:after {
  428. height: 36px;
  429. }
  430. .page-content .layui-tab-title .layui-this {
  431. background: #ffffff 0 0 no-repeat;
  432. }
  433. .page-content .layui-tab-bar {
  434. height: 34px;
  435. line-height: 35px;
  436. }
  437. .page-content .layui-tab-content {
  438. position: absolute;
  439. top: 36px;
  440. bottom: 0px;
  441. width: 100%;
  442. background: #ffffff 0 0 no-repeat;
  443. padding: 0px;
  444. overflow: hidden;
  445. }
  446. .page-content .layui-tab-content .layui-tab-item {
  447. width: 100%;
  448. height: 100%;
  449. }
  450. .page-content .layui-tab-content .layui-tab-item iframe {
  451. width: 100%;
  452. height: 100%;
  453. }
  454. .welcome-footer {
  455. padding: 30px 0;
  456. line-height: 30px;
  457. text-align: center;
  458. background-color: #eee;
  459. color: #666;
  460. font-weight: 300;
  461. }
  462. body .layui-layout-admin .footer-demo {
  463. height: auto;
  464. padding: 15px 0;
  465. line-height: 26px;
  466. }
  467. .welcome-footer a {
  468. padding: 0 5px;
  469. }
  470. table th,
  471. table td {
  472. word-break: break-all;
  473. }
  474. .footer {
  475. position: fixed;
  476. bottom: 0px;
  477. width: 100%;
  478. background-color: #222;
  479. border-top: 1px solid rgba(255, 255, 255, 0.2);
  480. line-height: 41px;
  481. color: #fff;
  482. /*padding-left: 10px;*/
  483. }
  484. .footer .copyright {
  485. margin-left: 10px;
  486. }
  487. @media screen and (max-width: 768px) {
  488. .fast-add {
  489. display: none;
  490. }
  491. .layui-nav .to-index {
  492. display: none;
  493. }
  494. .container .logo {
  495. width: 140px;
  496. }
  497. .container .left_open {
  498. /*float: right;*/
  499. }
  500. .left-nav {
  501. left: -221px;
  502. }
  503. .page-content {
  504. left: 0px;
  505. }
  506. .page-content .layui-tab-content .layui-tab-item {
  507. -webkit-overflow-scrolling: touch;
  508. overflow-y: scroll;
  509. }
  510. .we-search input.layui-input {
  511. width: 100%;
  512. margin: 10px;
  513. }
  514. }
  515. .we-changelog .layui-timeline-title h3 {
  516. display: inline-block;
  517. }
  518. .we-changelog .layui-timeline-title .layui-badge-rim {
  519. top: -2px;
  520. left: 10px;
  521. }
  522. .weadmin-shortcut {
  523. height: 185px!important;
  524. background-color: #fff;
  525. }
  526. .weadmin-shortcut .layui-carousel,
  527. .weadmin-shortcut > [carousel-item] > * {
  528. background-color: #ffffff;
  529. }
  530. .weadmin-shortcut .layui-col-space10 {
  531. margin: 0;
  532. }
  533. .weadmin-shortcut li {
  534. text-align: center;
  535. }
  536. .weadmin-shortcut li a {
  537. display: block;
  538. }
  539. .weadmin-shortcut li .layui-icon {
  540. display: inline-block;
  541. width: 100%;
  542. height: 120px;
  543. line-height: 120px;
  544. text-align: center;
  545. border-radius: 2px;
  546. font-size: 30px;
  547. background-color: #F8F8F8;
  548. color: #333;
  549. transition: all .3s;
  550. -webkit-transition: all .3s;
  551. }
  552. .weadmin-shortcut li:hover .layui-icon {
  553. background-color: #f2f2f2;
  554. }
  555. .weadmin-shortcut li cite {
  556. position: relative;
  557. top: 2px;
  558. display: block;
  559. color: #333333;
  560. text-overflow: ellipsis;
  561. overflow: hidden;
  562. white-space: nowrap;
  563. font-size: 16px;
  564. }
  565. .weadmin-shortcut li p {
  566. font-size: 12px;
  567. line-height: 16px;
  568. color: #666666;
  569. margin-top: 5px;
  570. }
  571. .weadmin-shortcut li p span {
  572. text-align: left;
  573. display: inline-block;
  574. }
  575. .weadmin-shortcut .layui-carousel-ind {
  576. position: absolute;
  577. top: -41px;
  578. text-align: right;
  579. }
  580. .weadmin-shortcut .layui-carousel-ind ul {
  581. background: 0 0;
  582. }
  583. .weadmin-shortcut .layui-carousel-ind ul li {
  584. background-color: #e2e2e2;
  585. }
  586. .weadmin-shortcut .layui-carousel-ind ul li:hover {
  587. background-color: #c2c2c2;
  588. }
  589. .weadmin-shortcut .layui-carousel-ind ul li.layui-this {
  590. background-color: #999;
  591. }
  592. .weadmin-text p {
  593. margin-bottom: 10px;
  594. text-indent: 2em;
  595. }
  596. .layui-card-header.layui-elem-quote {
  597. line-height: 22px;
  598. height: 22px;
  599. padding: 15px;
  600. }
  601. .weadmin-notice {
  602. height: 60px!important;
  603. }
  604. .weadmin-notice a {
  605. display: block;
  606. text-align: center;
  607. line-height: 60px;
  608. }
  609. .weadmin-notice .layui-carousel-ind {
  610. position: absolute;
  611. top: -56px;
  612. text-align: right;
  613. }
  614. .weadmin-notice .layui-carousel-ind ul {
  615. background: 0 0;
  616. }
  617. .weadmin-notice .layui-carousel-ind ul li {
  618. background-color: #e2e2e2;
  619. }
  620. .weadmin-notice .layui-carousel-ind ul li:hover {
  621. background-color: #c2c2c2;
  622. }
  623. .weadmin-notice .layui-carousel-ind ul li.layui-this {
  624. background-color: #999;
  625. }