admin.css 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448
  1. body {
  2. color: #333;
  3. font-size: 13px;
  4. }
  5. input,
  6. select,
  7. textarea {
  8. color: #333;
  9. }
  10. .bg {
  11. width: 100%;
  12. height: 100%;
  13. position: absolute;
  14. background: url(../images/bg.jpg)
  15. }
  16. .panel {
  17. background: #fff;
  18. }
  19. form .form-group:last-child {
  20. padding-bottom: 0;
  21. }
  22. .passcode {
  23. position: absolute;
  24. right: 0;
  25. bottom: 0;
  26. height: 32px;
  27. margin: 1px;
  28. border-left: solid 1px #ddd;
  29. text-align: center;
  30. line-height: 32px;
  31. border-radius: 0 4px 4px 0;
  32. }
  33. ul,
  34. li {
  35. list-style-type: none;
  36. }
  37. .lefter {
  38. position: relative;
  39. float: left;
  40. width: 180px;
  41. margin-right: -180px;
  42. background: #e6f2fb;
  43. text-align: center;
  44. }
  45. .righter {
  46. float: right;
  47. width: 100%;
  48. padding-top: 15px;
  49. background: #e6f2fb;
  50. }
  51. .mainer {
  52. margin-left: 180px;
  53. }
  54. .field-icon-right .icon {
  55. bottom: 0px;
  56. top: auto
  57. }
  58. .logo {
  59. float: left;
  60. color: #FFF;
  61. margin-top: 10px;
  62. line-height: 45px;
  63. }
  64. .logo img {
  65. float: left;
  66. margin-right: 10px;
  67. }
  68. .loginbox {
  69. background: url(../images/tmbg-white.png);
  70. border: 0px;
  71. }
  72. /********头部******/
  73. #logOut {
  74. width: 28px;
  75. height: 28px;
  76. display: flex;
  77. align-items: center;
  78. justify-content: center;
  79. border-radius: 50%;
  80. }
  81. .header {
  82. height: 70px;
  83. overflow: hidden;
  84. background: url(../images/bg.jpg) no-repeat 0 -1000px;
  85. }
  86. .head-l {
  87. margin-right: 15px;
  88. display: flex;
  89. align-items: center;
  90. }
  91. .head-l .bg-blue:hover {
  92. background-color: #03b6fd;
  93. }
  94. .leftnav {
  95. width: 180px;
  96. height: calc(100% - 60px);
  97. overflow: auto;
  98. overflow-x: hidden;
  99. position: fixed;
  100. top: 70px;
  101. left: 0px;
  102. background: #077fbb;
  103. }
  104. .leftnav-title {
  105. height: 50px;
  106. background: url(../images/bg.jpg) no-repeat 0 -1000px;
  107. color: #FFF;
  108. padding-left: 22px;
  109. font-size: 14px;
  110. line-height: 50px;
  111. }
  112. .leftnav-title span {
  113. margin-right: 10px;
  114. }
  115. .leftnav h2 {
  116. padding: 10px 0 10px 22px;
  117. transition: all .1s ease-in-out;
  118. display: block;
  119. cursor: pointer;
  120. font-weight: bold;
  121. font-size: 14px;
  122. border-top: 1px solid #F8F8FF;
  123. color: rgba(255,255,255,.7);
  124. }
  125. .leftnav h2.on {
  126. color: white;
  127. }
  128. .leftnav .border-bottom {
  129. border-bottom: 1px solid #b5cfd9;
  130. }
  131. .leftnav h2 span {
  132. margin-right: 10px;
  133. }
  134. .leftnav h2:hover {
  135. color: white;
  136. }
  137. .leftnav ul {
  138. display: none;
  139. border-top: 1px solid #F8F8FF;
  140. padding: 5px 0;
  141. opacity: 1;
  142. }
  143. .leftnav ul li {
  144. list-style-type: none;
  145. color: rgba(255,255,255,.7);
  146. }
  147. .leftnav ul li a {
  148. display: block;
  149. padding-left: 30px;
  150. line-height: 30px;
  151. color: rgba(255,255,255,.7)!important;
  152. }
  153. .bread:after{
  154. content: '';
  155. display: block;
  156. clear: both;
  157. }
  158. .leftnav ul li span {
  159. margin-right: 8px;
  160. }
  161. .leftnav ul li a:hover,
  162. .leftnav ul li a.on {
  163. color: white;
  164. }
  165. /***主要内容***/
  166. .admin {
  167. background: #fff;
  168. position: fixed;
  169. border-left: solid 1px #b5cfd9;
  170. right: 0;
  171. bottom: 0;
  172. top: 110px;
  173. left: 180px;
  174. padding: 15px;
  175. padding-right: 0px;
  176. padding-bottom: 0px;
  177. overflow: auto;
  178. border-top: 1px solid #b5cfd9;
  179. padding-right: 15px;
  180. }
  181. .content {
  182. width: 100%;
  183. }
  184. .body-content {
  185. padding: 20px 0;
  186. overflow: hidden;
  187. }
  188. .content .title {
  189. border-bottom: 1px solid #dfdfdf;
  190. line-height: 35px;
  191. font-size: 14px;
  192. font-weight: bold;
  193. color: #09c
  194. }
  195. .form-x .form-group .label {
  196. width: 10%;
  197. }
  198. .form-x .form-button {
  199. margin-left: 10%;
  200. }
  201. .w50 {
  202. width: 25%;
  203. float: left;
  204. }
  205. .form-x .tipss {
  206. float: left;
  207. padding-left: 10px;
  208. color: #888;
  209. line-height: 42px;
  210. }
  211. .input-help {
  212. float: left;
  213. line-height: 30px;
  214. }
  215. .input-help li {
  216. float: left;
  217. margin-left: 10px;
  218. }
  219. .bread {
  220. margin-left: 185px;
  221. margin-top: 4px;
  222. background: #077fbb;
  223. color: white;
  224. border-radius: 0;
  225. }
  226. .bread li {
  227. float: left;
  228. color: white;
  229. }
  230. .bread a{
  231. color: white!important;
  232. }
  233. .label label {
  234. font-weight: normal;
  235. color: #333;
  236. }
  237. .form-group {
  238. margin-bottom: 12px;
  239. }
  240. /*.button{ padding:10px 15px;}*/
  241. .form-group .field .file {
  242. background: #FFF;
  243. border: 0px;
  244. }
  245. .form-group .field input[type=radio] {
  246. vertical-align: middle;
  247. line-height: 35px;
  248. margin-right: 5px;
  249. }
  250. .form-group .radio {
  251. line-height: 35px;
  252. }
  253. .table th {
  254. text-align: center;
  255. }
  256. .table td {
  257. vertical-align: middle;
  258. }
  259. .tip img {
  260. width: 100px;
  261. height: 100px;
  262. }
  263. .clear {
  264. clear: both;
  265. overflow: hidden;
  266. }
  267. .pagelist {
  268. padding: 10px 0;
  269. text-align: center;
  270. }
  271. .pagelist span,
  272. .pagelist a {
  273. border-radius: 3px;
  274. border: 1px solid #dfdfdf;
  275. display: inline-block;
  276. padding: 5px 12px;
  277. }
  278. .pagelist a {
  279. margin: 0 3px;
  280. }
  281. .pagelist span.current {
  282. background: #09F;
  283. color: #FFF;
  284. border-color: #09F;
  285. margin: 0 2px;
  286. }
  287. .pagelist a:hover {
  288. background: #09F;
  289. color: #FFF;
  290. border-color: #09F;
  291. }
  292. .pagelist label {
  293. padding-left: 15px;
  294. color: #999;
  295. }
  296. .pagelist label b {
  297. color: red;
  298. font-weight: normal;
  299. margin: 0 3px;
  300. }
  301. .search {
  302. overflow: hidden;
  303. }
  304. .search li {
  305. float: left;
  306. margin-right: 15px;
  307. line-height: 35px;
  308. }
  309. .button.bg-main.icon-check-square-o {
  310. padding: 10px 30px;
  311. }
  312. .button.bg-main.icon-check-square-o:hover {
  313. background: #08bbe1;
  314. }
  315. input[type="checkbox"],
  316. input[type="radio"] {
  317. width: 15px;
  318. height: 15px;
  319. vertical-align: -3px;
  320. margin-right: 5px;
  321. }
  322. textarea[name=content] {
  323. width: 100%;
  324. height: 500px;
  325. border: 1px solid #ddd;
  326. border-radius: 3px;
  327. -webkit-border-radius: 3px;
  328. }
  329. .fixed-modal-modify {
  330. padding-top: 30px;
  331. }
  332. td {
  333. border-right: 1px solid #ddd;
  334. }
  335. table {
  336. border-left: 1px solid #ddd;
  337. border-bottom: 1px solid #ddd;
  338. }
  339. #page {
  340. text-align: center;
  341. margin-top: 15px;
  342. }
  343. th {
  344. border-bottom: none!important;
  345. border-right: 1px solid #ddd;
  346. }
  347. .fixed-modal-modify {
  348. width: 600px;
  349. display: none;
  350. padding: 30px;
  351. position: fixed;
  352. top: 10px;
  353. left: calc(50% - 300px);
  354. background: white;
  355. border: 1px solid #ddd!important;
  356. box-shadow: 0 0 10px #ddd!important;
  357. }
  358. .self-sl {
  359. margin-right: 15px;
  360. }
  361. .self-sl select{
  362. width: 80px;
  363. }
  364. .toManage a {
  365. color: #09c;
  366. text-decoration: underline;
  367. }
  368. .toManage span {
  369. color: #626675;
  370. text-decoration: underline;
  371. cursor: pointer;
  372. }