style.css 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361
  1. body{
  2. font-family:"微软雅黑","Tahoma";
  3. height:100%;
  4. background: #fff;
  5. overflow-x: hidden;
  6. }
  7. ul, ol, li, h1 {
  8. line-height:normal;
  9. list-style-image:none;
  10. list-style-position:outside;
  11. list-style-type:none;
  12. }
  13. dl,ul {
  14. margin:0;
  15. padding:0;
  16. }
  17. dd {
  18. margin-left:0
  19. }
  20. a {
  21. outline:none;
  22. text-decoration: none;
  23. }
  24. a img {
  25. border:0 none
  26. }
  27. img {
  28. vertical-align:middle;
  29. border:0px
  30. }
  31. table {
  32. border-collapse:collapse
  33. }
  34. .fL {float:left}
  35. .fR {float:right}
  36. .clearfix:after {
  37. content:".";
  38. display:block;
  39. height:0;
  40. clear:both;
  41. visibility:hidden
  42. }
  43. .clearfix {
  44. display:inline-block;
  45. overflow:hidden
  46. }
  47. .clearfix {
  48. display:block
  49. }
  50. @font-face {
  51. font-family: 'iconMenu';
  52. src: url('fonts/iconMenu.eot?hcw3jq');
  53. src: url('fonts/iconMenu.eot?hcw3jq#iefix') format('embedded-opentype'),
  54. url('fonts/iconMenu.ttf?hcw3jq') format('truetype'),
  55. url('fonts/iconMenu.woff?hcw3jq') format('woff'),
  56. url('fonts/iconMenu.svg?hcw3jq#iconMenu') format('svg');
  57. font-weight: normal;
  58. font-style: normal;
  59. }
  60. [class^="icon-"], [class*=" icon-"] {
  61. /* use !important to prevent issues with browser extensions that change fonts */
  62. font-family: 'iconMenu' !important;
  63. speak: none;
  64. font-style: normal;
  65. font-weight: normal;
  66. font-variant: normal;
  67. text-transform: none;
  68. line-height: 1;
  69. /* Better Font Rendering =========== */
  70. -webkit-font-smoothing: antialiased;
  71. -moz-osx-font-smoothing: grayscale;
  72. }
  73. .loginWrapper{
  74. position: absolute;
  75. width: 430px;
  76. height: 320px;
  77. top: 50%;
  78. left: 50%;
  79. background:#fff;
  80. box-shadow: 0 8px 8px -6px #aaa;
  81. -moz-box-shadow:0 8px 8px -6px #aaa;
  82. -webkit-box-shadow:0 8px 8px -6px #aaa;
  83. border: 1px solid #eee;
  84. border-radius: 5px;
  85. margin-left:-225px;
  86. margin-top: -160px;
  87. }
  88. .loginContent{
  89. padding: 20px 40px;
  90. }
  91. .loginTitle{
  92. text-align: left;
  93. padding-left:10px;
  94. border-left: 4px solid #aaa;
  95. }
  96. .logoTitleTx{
  97. border-left:4px solid #009F86;
  98. }
  99. .loginForm{
  100. margin: 30px 0 20px 0;
  101. }
  102. .btnLogin{
  103. width:100%;
  104. }
  105. .loginTitleMain{
  106. position:relative;
  107. }
  108. .loginOther{
  109. position:absolute;
  110. top:5px;
  111. right:0;
  112. }
  113. /* -------------index start-------------- */
  114. .wrapper{
  115. overflow-x:hidden;
  116. }
  117. .leftWrapper{
  118. position:fixed;
  119. overflow-y:auto;
  120. height:100%;
  121. left:0;
  122. width:56px;
  123. background:#222;
  124. color: #fff;
  125. }
  126. .logo{
  127. width:100%;
  128. background:#000;
  129. text-align: center;
  130. cursor:pointer;
  131. overflow:hidden;
  132. text-overflow:ellipsis;
  133. }
  134. .logoWd{
  135. background:#8D826D;
  136. }
  137. .logoGe{
  138. background:#647B97;
  139. }
  140. .logoTx{
  141. background:#009F86;
  142. }
  143. .logo h2{
  144. margin:0;
  145. height:38px;
  146. padding:10px 0;
  147. font-size: 18px;
  148. }
  149. .logoInfo{
  150. display:none;
  151. }
  152. .logo h2 a{
  153. color:#fff;
  154. }
  155. .logoList{
  156. width:100%;
  157. position:absolute;
  158. z-index: 99;
  159. background:#f1f1f1;
  160. padding:5px 0;
  161. display:none;
  162. }
  163. .logoList ul li{
  164. font-size: 12px;
  165. padding:5px 0;
  166. }
  167. .logoList ul li a{
  168. color:#333;
  169. }
  170. .subMenu{
  171. border-bottom:1px solid #222;
  172. }
  173. .subMenuTitle a:hover{
  174. color:#fff;
  175. text-decoration: none;
  176. }
  177. .subMenuTitle a.active{
  178. color:#fff;
  179. border-left: 2px solid #FF6501;
  180. }
  181. .subMenuTitle a:focus{
  182. text-decoration: none;
  183. }
  184. .subMenuTitle{
  185. position:relative;
  186. margin:0;
  187. background:#2E2D2B;
  188. font-size: 14px;
  189. line-height: 25px;
  190. }
  191. .subMenuTitle a{
  192. padding:15px 0;
  193. color:#ccc;
  194. border-left: solid 2px transparent;
  195. display:block;
  196. cursor: pointer;
  197. }
  198. .subMenuText{
  199. position:absolute;
  200. width:125px;
  201. top:15px;
  202. left:56px;
  203. display:none;
  204. }
  205. .caret-triangle{
  206. margin-top:12px;
  207. }
  208. .userMain{
  209. position:absolute;
  210. bottom:10px;
  211. }
  212. .userImg{
  213. margin:0 12px;
  214. width:32px;
  215. height:32px;
  216. border-radius: 18px;
  217. }
  218. .userName{
  219. display:none;
  220. font-size: 14px;
  221. top:8px;
  222. }
  223. .userName a{
  224. color:#ccc;
  225. }
  226. .userName a:hover{
  227. color:#fff;
  228. text-decoration: none;
  229. }
  230. .exit{
  231. margin:0 0 0 15px;
  232. }
  233. .iconImg{
  234. font-size: 20px;
  235. padding:0 17px;
  236. }
  237. .bg{
  238. background:#2E2D2B;
  239. color:#fff !important;
  240. }
  241. .subMenuContent ul{
  242. padding:10px 0 10px 25px;
  243. text-align: left;
  244. }
  245. .subMenuContent ul li a{
  246. display:block;
  247. padding:5px 0;
  248. color:#ccc;
  249. }
  250. .mainWrapper{
  251. margin:0 0 0 71px;
  252. background:#fff;
  253. }
  254. .pageTop{
  255. margin-top: 20px;
  256. }
  257. .shopContent{
  258. margin:20px 0;
  259. }
  260. .sort{
  261. float:left;
  262. vertical-align: middle;
  263. }
  264. .sort .form-control{
  265. width:110px;
  266. }
  267. .btnGroup{
  268. float:left;
  269. margin:0 20px 0 0;
  270. }
  271. .search{
  272. float:left;
  273. width:465px;
  274. margin:0 20px 0 0;
  275. }
  276. .tableContent{
  277. margin:20px 0 0 0;
  278. }
  279. .tableContent .table{
  280. margin:0;
  281. }
  282. .tabMain,.tabShopContent{
  283. margin:25px 0 0 0;
  284. }
  285. .textCon{
  286. margin:0 10px 0 0;
  287. }
  288. .tabMain .table tr td,.tableContent .table tr td{
  289. vertical-align: middle;
  290. }
  291. .formInfo{
  292. min-height: 27px;
  293. padding-top: 7px;
  294. }
  295. .provinceSelect,.citySelect{
  296. width:100px;
  297. }
  298. .total-main{
  299. margin:20px 0 30px 0;
  300. padding-bottom: 15px;
  301. border-bottom: 1px solid #ddd;
  302. }
  303. .total-main ul li{
  304. float:left;
  305. margin-right: 15px;
  306. }
  307. .total-content{
  308. min-width:225px;
  309. height:113px;
  310. text-align: center;
  311. border-right: 1px solid #ddd;
  312. }
  313. .total-content-balanc{
  314. width:360px;
  315. height:100px;
  316. background:#EEF1EA;
  317. }
  318. .total-title{
  319. margin:0;
  320. padding:15px 30px 10px 30px;
  321. font-size: 20px;
  322. }
  323. .total-content-Y{
  324. border-left:1px solid #ddd;
  325. border-right: 1px solid #ddd;
  326. }
  327. .total-num{
  328. font-size: 24px;
  329. font-weight: bold;
  330. }
  331. .total-num-file{
  332. line-height: 60px;
  333. }
  334. .total-column{
  335. margin:0 18px;
  336. }
  337. .total-column dl dt{
  338. font-size: 14px;
  339. font-weight: normal;
  340. }
  341. .total-balanc-main{
  342. margin-top: 45px;
  343. }
  344. .total-balanc-main ul li{
  345. float:left;
  346. margin-right: 100px;
  347. }
  348. .total-tableY{
  349. margin:25px 0;
  350. width:360px;
  351. text-align: center;
  352. }
  353. .total-tableM{
  354. width: 550px;
  355. text-align: center;
  356. }