TabPanel.css 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251
  1. @charset "utf-8";
  2. .tabpanel { /* border: solid 1px #8DB2E3; */
  3. /*border: solid 1px red;*/
  4. }
  5. .tabpanel_tab_content {
  6. width: 100%;
  7. height: 34px;
  8. line-height: 34px;
  9. background-color: #ffffff;
  10. overflow: hidden;
  11. white-space: nowrap;
  12. position: relative;
  13. }
  14. .tabpanel_tab_content .tabpanel_move_content {
  15. width: 0px;
  16. overflow: hidden;
  17. }
  18. .tabpanel_mover {
  19. width: 10000px;
  20. margin: 0;
  21. padding: 0;
  22. position: relative;
  23. margin-left: 10px;
  24. }
  25. .tabpanel_mover li { /*width: 110px;*/
  26. background: url(../image/TabPanel/pop_tab.png) no-repeat;
  27. margin-top: 2px;
  28. height: 34px;
  29. line-height: 22px;
  30. float: left;
  31. margin-left:-40px;
  32. width:136px;
  33. position: relative;
  34. list-style-type: none;
  35. cursor: pointer;
  36. color: #8e9091;
  37. font-family: Microsoft YaHei;
  38. margin-bottom: -1px;
  39. }
  40. .tabpanel_mover li img{
  41. margin-left:30px;
  42. float: left;
  43. margin-top: 8px;
  44. }
  45. .tabpanel_mover li .closer {
  46. background: transparent url(../image/close.png) no-repeat;
  47. position: absolute;
  48. right: 35px;
  49. top: 8px;
  50. float:left;
  51. width: 12px;
  52. z-index:25;
  53. height: 12px;
  54. cursor: pointer;
  55. }
  56. .tabpanel_mover li .closer:hover {
  57. background: transparent url(../image/close_1.png) no-repeat;
  58. position: absolute;
  59. right: 35px;
  60. top: 8px;
  61. float:left;
  62. width: 12px;
  63. z-index:25;
  64. height: 12px;
  65. cursor: pointer;
  66. }
  67. .tabpanel_mover li .title {
  68. font-size: 14px;
  69. padding-right: 15px;
  70. overflow: hidden;
  71. padding-left:5px;
  72. *height: 30px;
  73. *line-height: 30px;
  74. top:3px;
  75. text-align:center;
  76. display:inline;
  77. position:relative;
  78. width: 105px;
  79. }
  80. .tabpanel_mover li .disable {
  81. color: gray;
  82. }
  83. .tabpanel_mover li .icon_title {
  84. font-size: 12px;
  85. color: #23508E;
  86. padding-left: 25px;
  87. background-repeat: no-repeat;
  88. background-position: 5px 4px;
  89. overflow: hidden;
  90. float: left;
  91. letter-spacing:2px;
  92. *height: 30px;
  93. *line-height: 30px;
  94. *margin-top: 2px;
  95. *background-position: 5px 1px;
  96. }
  97. .allCss {
  98. background-image:url(../image/TabPanel/all.gif)
  99. }
  100. .tabpanel_mover li.active {
  101. background: url(../image/TabPanel/pop_tab_hover.png) no-repeat;
  102. font-weight: bold;
  103. z-index:20;
  104. color: #646464;
  105. }
  106. .tabpanel_tab_content .tabpanel_left_scroll {
  107. background: url(../image/TabPanel/scroll-left.gif) no-repeat 0px 0;
  108. position: absolute;
  109. width: 18px;
  110. height: 34px;
  111. left: 0px;
  112. top: 1px;
  113. cursor: pointer;
  114. z-index: 30;
  115. }
  116. .tabpanel_tab_content .tabpanel_right_scroll {
  117. background: transparent url(../image/TabPanel/scroll-right.gif)
  118. no-repeat 0 0;
  119. position: absolute;
  120. width: 18px;
  121. height: 34px;
  122. right: 0px;
  123. top: 1px;
  124. cursor: pointer;
  125. z-index: 30;
  126. }
  127. .tabpanel_tab_content .tabpanel_left_scroll_disabled {
  128. background-position: 0 0;
  129. opacity: .5;
  130. -moz-opacity: .5;
  131. filter: alpha(opacity = 50);
  132. cursor: default;
  133. }
  134. .tabpanel_right_scroll_disabled {
  135. background-position: -36px 0;
  136. opacity: .5;
  137. -moz-opacity: .5;
  138. filter: alpha(opacity = 50);
  139. cursor: default;
  140. }
  141. .display_none {
  142. display: none;
  143. }
  144. .tabpanel_tab_content .tabpanel_tab_spacer {
  145. border-top: 1px solid #8DB2E3;
  146. height: 1px;
  147. background: #DEECFD;
  148. font-size: 1px;
  149. line-height: 1px;
  150. margin-top: -1px;
  151. }
  152. .tabpanel_content {
  153. background-color: #FFF;
  154. overflow: hidden;
  155. position: absolute;
  156. border-top:1px solid #1d6895;
  157. top:33px;
  158. }
  159. .tabpanel_content .html_content {
  160. width: 100%;
  161. height: 100%;
  162. background-color: #FFF;
  163. position: absolute;
  164. z-index: 0;
  165. left: 0;
  166. top: 0;
  167. }
  168. /* iframe {
  169. min-height: 600px;
  170. }
  171. */
  172. html {
  173. height: 100%
  174. }
  175. .n_page_list {
  176. clear: both;
  177. text-align: center;
  178. padding-left: 0;
  179. margin-bottom: 0;
  180. list-style: none;
  181. }
  182. .n_page_list li {
  183. width: 150px;
  184. height: 100px;
  185. text-align: center;
  186. }
  187. .n_page_list li a {
  188. width: 150px;
  189. height: 100px;
  190. background: url(../biz/image/navigation_page_list_bg_.png);
  191. background-size: 150px 100px;
  192. cursor: default;
  193. text-align: center;
  194. display: block;
  195. padding: 10px 15px;
  196. text-decoration: none;
  197. }
  198. .n_page_list li a.n_page_list_cana {
  199. background: url(../biz/image/navigation_page_list_bg_2.png);
  200. background-size: 150px 100px;
  201. cursor: pointer;
  202. }
  203. .n_page_list li a.n_page_list_cana:hover {
  204. background: url(../biz/image/navigation_page_list_bg_3.png);
  205. background-size: 150px 100px;
  206. }
  207. .n_page_list li a p {
  208. text-align: center;
  209. color: #fff;
  210. font-size: 17px;
  211. word-wrap: break-word;
  212. line-height: 120%
  213. }
  214. .n_page_list li ul {
  215. clear: both;
  216. text-align: left;
  217. padding-left: 0;
  218. margin-bottom: 0;
  219. list-style: none;
  220. }
  221. .n_page_list li ul li {
  222. width: 150px;
  223. height: 30px;
  224. text-align: left;
  225. }
  226. .nav-header{display:block;padding:3px 15px;font-size:11px;font-weight:bold;line-height:20px;color:#999;text-shadow:0 1px 0 rgba(255,255,255,0.5);text-transform:uppercase}