index.css 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259
  1. *{
  2. margin:0;
  3. padding:0;
  4. }
  5. .index_top{
  6. height: 82px;
  7. left: 0;
  8. margin: 0;
  9. position: relative;
  10. width: 100%;
  11. z-index: 100;
  12. }
  13. .head_bg{
  14. background: url("../images/other/bg.png") repeat scroll 0 0 transparent;
  15. height: 85px;
  16. margin: 0;
  17. position: absolute;
  18. right: 0;
  19. top: 0;
  20. width: 100%;
  21. z-index: 1;
  22. }
  23. .left_logo{
  24. left: 20px;
  25. position: absolute;
  26. top: 13px;
  27. width: 300px;
  28. z-index: 100;
  29. }
  30. .search_welcome{
  31. position:absolute;
  32. top:-10px;
  33. right:0px;
  34. height:40px;
  35. z-index: 99;
  36. }
  37. .search_panel{
  38. float:left;
  39. margin-top:12px;
  40. padding-right:12px;
  41. }
  42. .search_box{
  43. border:1px solid #b1babd;
  44. width:203px;
  45. height:22px;
  46. background:#fff;
  47. }
  48. .search_text{
  49. width:180px;
  50. height:14px;
  51. background:#fff;
  52. border:none;
  53. }
  54. .search_button{
  55. width:20px;
  56. height:20px;
  57. border:none;
  58. background:url(../images/icons/icons_22.png) no-repeat;
  59. _filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src="../images/icons/icons_22.png");
  60. }
  61. .welcome_panel{
  62. margin-top:12px;
  63. float:right;
  64. margin-right:10px;
  65. }
  66. div.index_menu{
  67. left: 320px;
  68. position: absolute;
  69. top: 1px;
  70. min-width:400px;
  71. z-index: 100;
  72. }
  73. div.nav_button{
  74. height:50px;
  75. width:36px;
  76. float: left;
  77. margin-left:2px;
  78. margin-top: 25px;
  79. }
  80. a.menuItem{
  81. background: url("../images/other/separate_top.png") no-repeat scroll 0 0 transparent;
  82. color: #000000;
  83. cursor: pointer;
  84. display: inline-block;
  85. float: left;
  86. font-size: 14px;
  87. height: 85px;
  88. padding: 10px 16px;
  89. }
  90. a.menuItem span{
  91. display: inline-block;
  92. font-weight: bold;
  93. height: 28px;
  94. padding-top: 3px;
  95. text-decoration: none;
  96. }
  97. a.menuItem_hover{background-color: #FFFFFF;}
  98. a.menuItem_hover span{
  99. }
  100. a.menuItem img{
  101. display: block;
  102. height: 32px;
  103. margin: 0 auto;
  104. width: 32px;
  105. }
  106. div.menuParent{
  107. float: left;
  108. height: 81px;
  109. overflow: hidden;
  110. position: relative;
  111. width: 90%;
  112. z-index: 100;
  113. }
  114. div.menuPanel{
  115. background: url("../images/other/separate_top.png") no-repeat scroll right 0 transparent;
  116. display: block;
  117. height: 77px;
  118. overflow: hidden;
  119. position: absolute;
  120. white-space: nowrap;
  121. z-index: 100;
  122. }
  123. a.nav_left,a.nav_right{
  124. cursor:pointer;
  125. display:none;
  126. height:32px;
  127. width:0px;
  128. padding-left: 18px;
  129. float:left;
  130. z-index: 100;
  131. }
  132. a.nav_left{
  133. background:url(../images/nav_left.png) no-repeat;
  134. }
  135. a.nav_right{
  136. background:url(../images/nav_right.png) no-repeat;
  137. }
  138. a.nav_left:hover{
  139. background:url(../images/nav_left_hover.png) no-repeat;
  140. }
  141. a.nav_right:hover{
  142. background:url(../images/nav_right_hover.png) no-repeat;
  143. }
  144. div.changge_skin{
  145. position: absolute;
  146. right: 10px;
  147. top:55px;
  148. z-index: 100;
  149. }
  150. div.changge_skin img{
  151. margin-left: 2px;
  152. }
  153. .show_sys{
  154. width:192px;
  155. z-index:10000;
  156. border:1px solid #aac9ce;
  157. border-top:none;
  158. background:#FFF;
  159. margin-left:290px;
  160. font-family:"ºÚÌå";
  161. font-size:14px;
  162. font-weight:bold;
  163. color:#35607f;
  164. display:none;
  165. position:absolute;
  166. margin-left:118px;
  167. margin-top:-2px;
  168. }
  169. .select_sys{
  170. width:200px;
  171. height:22px;
  172. border:1px solid #a9b2c3;
  173. background:#fff;
  174. font-family:"ºÚÌå";
  175. font-size:14px;
  176. font-weight:bold;
  177. color:#35607f;
  178. margin-left:290px;
  179. padding-left:10px;
  180. }
  181. .select_sys img{
  182. float:right;
  183. cursor:pointer;
  184. height:22px;
  185. position:absolute;
  186. *+margin-top:-1px;
  187. *+margin-left:34px;
  188. border-left:1px solid #b2bbcc;
  189. }
  190. .select_sys span{
  191. width:132px;
  192. display:inline-block;
  193. height:20px;
  194. }
  195. .show_sys a{
  196. color:#35607f;
  197. }
  198. .show_sys ul{
  199. list-style:none;
  200. }
  201. .show_sys ul li{
  202. width:180px;
  203. height:28px;
  204. padding-top:5px;
  205. padding-left:10px;
  206. border-bottom:1px dashed #aac8d2;
  207. }
  208. .show_sys ul li a{
  209. width:180px;
  210. display:block;
  211. height:28px;
  212. margin-left:-10px;
  213. padding-left:10px;
  214. }
  215. .show_sys ul li a:hover{
  216. background: url("../images/content_bg_hover.jpg") repeat-x scroll 0 0 transparent;
  217. }
  218. .msg_div{
  219. padding:0 5px;
  220. height:20px;
  221. line-height:20px;
  222. }
  223. .msg_div img{
  224. margin:0;
  225. vertical-align:middle;
  226. }
  227. .msg_div a{
  228. margin:0;
  229. vertical-align:middle;
  230. }