public.css 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316
  1. /*// 主题色*/
  2. /*字体主色调*/
  3. /*线条主色调*/
  4. /*按钮主色调*/
  5. /*底纹色*/
  6. body {
  7. background-color: #f7f7f7;
  8. min-width: 900px;
  9. }
  10. .f_themecolor {
  11. color: #389ee1;
  12. }
  13. .f_garycolor {
  14. color: #999999;
  15. }
  16. .f_bluecolor {
  17. color: #389ee1;
  18. }
  19. .f_redcolor {
  20. color: #e47470;
  21. }
  22. .f_greencolor {
  23. color: #30be19;
  24. }
  25. .f_orangecolor {
  26. color: #ff4e00;
  27. }
  28. .layout-header {
  29. min-width: 900px;
  30. }
  31. .content {
  32. width: 100%;
  33. min-width: 1200px;
  34. }
  35. .tree-title {
  36. width: 100%;
  37. height: 40px;
  38. line-height: 40px;
  39. color: #389ee1;
  40. background: #fff;
  41. }
  42. .tree-title em {
  43. color: #435561;
  44. font-weight: bold;
  45. }
  46. .tree-title span {
  47. padding: 0 20px;
  48. }
  49. .tree-content {
  50. padding: 20px;
  51. }
  52. .tree-contenttitle {
  53. width: 100%;
  54. padding: 20px;
  55. position: relative;
  56. border-bottom: 1px solid #e5e4e9;
  57. }
  58. .tree-contenttitle > span {
  59. padding-left: 5px;
  60. line-height: 16px;
  61. border-left: 2px solid #389ee1;
  62. color: #000;
  63. }
  64. .m-withe {
  65. background: #fff;
  66. border: 1px solid #e5e4e9;
  67. width: 100%;
  68. }
  69. .list {
  70. position: relative;
  71. }
  72. .list.error .tip {
  73. display: block;
  74. }
  75. .list .tip {
  76. position: absolute;
  77. top: 0;
  78. right: -260px;
  79. width: 250px;
  80. text-align: left;
  81. line-height: 37px;
  82. font-weight: normal;
  83. color: #e47470;
  84. display: none;
  85. }
  86. .list .tip i {
  87. color: #fc4c24;
  88. margin-right: 5px;
  89. }
  90. /*按钮*/
  91. .pagination > li > a,
  92. .pagination > li > span {
  93. padding: 8px 13px;
  94. }
  95. .pagination > li:first-child > a,
  96. .pagination > li:first-child > span {
  97. margin-left: 0;
  98. border-top-left-radius: 2px;
  99. border-bottom-left-radius: 2px;
  100. }
  101. .pagination > li:last-child > a,
  102. .pagination > li:last-child > span {
  103. border-top-right-radius: 2px;
  104. border-bottom-right-radius: 2px;
  105. }
  106. .btn {
  107. border-radius: 2px;
  108. }
  109. .btn.defaul {
  110. padding: 0 12px;
  111. height: 37px;
  112. line-height: 37px;
  113. }
  114. .btn.fit {
  115. width: 100%;
  116. font-size: 18px;
  117. letter-spacing: 2px;
  118. margin-top: 5px;
  119. }
  120. .btn.line {
  121. padding: 3px 12px;
  122. }
  123. .a-link {
  124. color: #389ee1;
  125. vertical-align: top;
  126. }
  127. .a-link:hover {
  128. color: #389ee1;
  129. text-decoration: underline;
  130. }
  131. .a-linkred {
  132. color: #e47470;
  133. vertical-align: top;
  134. }
  135. .a-linkred:hover {
  136. color: #e47470;
  137. text-decoration: underline;
  138. }
  139. .btn.focus.btn-red,
  140. .btn:focus.btn-red,
  141. .btn:hover.btn-red {
  142. color: #fff;
  143. background: #E06965;
  144. border-color: #E06965;
  145. text-decoration: none;
  146. }
  147. .btn-red {
  148. color: #fff;
  149. background-color: #e47470;
  150. border-color: #e47470;
  151. }
  152. .btn.focus.btn-blue,
  153. .btn:focus.btn-blue,
  154. .btn:hover.btn-blue {
  155. color: #fff;
  156. background: #0293C3;
  157. border-color: #0293C3;
  158. text-decoration: none;
  159. }
  160. .btn-blue {
  161. color: #fff;
  162. background-color: #0099cc;
  163. border-color: #0099cc;
  164. }
  165. .btn-default {
  166. background-color: #f7f7f7;
  167. border-color: #e5e4e9;
  168. }
  169. .btn.focus.btn-default,
  170. .btn:focus.btn-default,
  171. .btn:hover.btn-default {
  172. border-color: #e5e4e9;
  173. background-color: #F3F3F3;
  174. }
  175. /*表格*/
  176. .table > tbody > tr > td,
  177. .table > tbody > tr > th,
  178. .table > tfoot > tr > td,
  179. .table > tfoot > tr > th,
  180. .table > thead > tr > td,
  181. .table > thead > tr > th {
  182. padding: 10px;
  183. vertical-align: middle;
  184. }
  185. .table > thead > tr > th {
  186. background-color: #f5f6fa;
  187. }
  188. .table tbody {
  189. background: #fff;
  190. }
  191. .table {
  192. margin-bottom: 0;
  193. }
  194. .small {
  195. font-size: 12px;
  196. color: #999999;
  197. text-align: right;
  198. }
  199. .table-bordered {
  200. border: none;
  201. }
  202. .table-bordered > thead > tr > td,
  203. .table-bordered > thead > tr > th {
  204. border-bottom-width: 1px;
  205. }
  206. .table > thead:first-child > tr:first-child > th {
  207. border-top: 1px solid #e5e4e9;
  208. }
  209. .table-bordered > tbody > tr > td,
  210. .table-bordered > tbody > tr > th,
  211. .table-bordered > tfoot > tr > td,
  212. .table-bordered > tfoot > tr > th,
  213. .table-bordered > thead > tr > td,
  214. .table-bordered > thead > tr > th {
  215. border: 1px solid #e5e4e9;
  216. }
  217. .textright {
  218. text-align: right;
  219. }
  220. .textcenter {
  221. text-align: center;
  222. }
  223. .tab li a:hover,
  224. .tab li a:active,
  225. .tab li a:visited,
  226. .tab li a:link {
  227. text-decoration: none;
  228. }
  229. .tabcontent {
  230. display: none;
  231. }
  232. .tabcontent.active {
  233. display: block;
  234. }
  235. select.defaul {
  236. height: 40px;
  237. line-height: 40px;
  238. border: 1px solid #ddd;
  239. -webkit-border-radius: 2px;
  240. -moz-border-radius: 2px;
  241. border-radius: 2px;
  242. background-color: #FFF;
  243. position: relative;
  244. width: 145px;
  245. padding: 8px 5px;
  246. }
  247. .wrap {
  248. width: 1200px;
  249. margin: 0 auto;
  250. position: relative;
  251. }
  252. .blank15 {
  253. content: "";
  254. display: block;
  255. width: 100%;
  256. height: 15px;
  257. }
  258. .blank85 {
  259. content: "";
  260. display: block;
  261. width: 100%;
  262. height: 85px;
  263. }
  264. .header {
  265. width: 100%;
  266. height: 85px;
  267. line-height: 85px;
  268. background: #fff;
  269. position: fixed;
  270. top: 0;
  271. left: 0;
  272. z-index: 99999;
  273. }
  274. .logo {
  275. float: left;
  276. }
  277. .header .left {
  278. float: left;
  279. font-size: 23px;
  280. padding-left: 10px;
  281. }
  282. .header .right {
  283. float: right;
  284. }
  285. .header a.right:hover {
  286. text-decoration: underline;
  287. }
  288. .footer {
  289. padding-top: 30px;
  290. text-align: center;
  291. line-height: 40px;
  292. color: #999999;
  293. }
  294. .system_tit {
  295. width: 100%;
  296. padding: 0 20px;
  297. border-bottom: 1px solid #e5e4e9;
  298. height: 60px;
  299. }
  300. .system_tit ul li {
  301. display: inline-block;
  302. padding: 0 15px;
  303. line-height: 58px;
  304. }
  305. .system_tit ul li.active {
  306. border-bottom: 2px solid #389ee1;
  307. }
  308. .system_tit ul li.active a {
  309. color: #389ee1;
  310. font-weight: bold;
  311. }
  312. .system_tit .input-wrap {
  313. width: 275px;
  314. display: inline-block;
  315. margin-right: 15px;
  316. }