main201404.css 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422
  1. @charset "utf-8";
  2. html,body{
  3. font-size:12px;
  4. font-family: '\5fae\8f6f\96c5\9ed1','\5B8B\4F53 ',arial,sans-serif;
  5. width:100%;
  6. height:100%;
  7. margin:0px;
  8. padding:0px;
  9. overflow:hidden;
  10. behavior: url(Plugins/ie6-css.htc); /*可在IE6,7中对非<a>元素使用hover等伪类*/
  11. }
  12. /*a 链接样式*/
  13. a{
  14. color:#000;
  15. text-decoration:none;
  16. }
  17. a:hover {
  18. color:#000;
  19. text-decoration:underline;
  20. }
  21. a:link{
  22. color:#000;
  23. text-decoration:none;
  24. }
  25. a:active{
  26. color:#000;
  27. text-decoration:none;
  28. }
  29. a:visited{
  30. color:#000;
  31. text-decoration:none;
  32. }
  33. /*头部*/
  34. .head_top
  35. {
  36. margin:0;
  37. padding:0;
  38. width:100%;
  39. height:53px;
  40. border-bottom-color:#488fc1;
  41. border-bottom-style:solid;
  42. border-bottom-width:2px;
  43. position: relative;
  44. }
  45. .head_top img{
  46. display:block;
  47. margin:0px;
  48. padding:0px;
  49. width:100%;
  50. height:53px;
  51. }
  52. .head_top_logo{
  53. /*background: url(http://iams.gz.gmcc.net/Img/logo/logo_color_horizontal_medium.png) repeat scroll 0 0 transparent;*/
  54. height: 32px;
  55. left: 26px;
  56. position: absolute;
  57. top: 10px;
  58. width: 104px;
  59. /*IE 6.0 hack
  60. _background:none;
  61. _filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src="http://iams.gz.gmcc.net/Img/logo/logo_color_horizontal_medium.png");*/
  62. }
  63. .head_top_split{
  64. background: url("images/head_top_bg_split.png") repeat scroll 0 0 transparent;
  65. height: 27px;
  66. left: 150px;
  67. position: absolute;
  68. top: 12px;
  69. width: 1px;
  70. }
  71. .head_top_title{
  72. background: url("images/head_top_bg_title.png") repeat scroll 0 0 transparent;
  73. height: 24px;
  74. left: 170px;
  75. position: absolute;
  76. top: 13px;
  77. width: 307px;
  78. /*IE 6.0 hack*/
  79. _background:none;
  80. _filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src="Content/V3/images/head_top_bg_title.png");
  81. }
  82. /*头像*/
  83. .myface-img-div
  84. {
  85. position:absolute;
  86. right:152px;
  87. top:7px;
  88. text-align: center;
  89. border: 1px solid #000;
  90. -moz-box-shadow: 3px 3px 4px #000;
  91. -webkit-box-shadow: 3px 3px 4px #000;
  92. box-shadow: 3px 3px 4px #000;
  93. background: #fff;
  94. filter: progid:DXImageTransform.Microsoft.Shadow(Strength=4,Direction=135,Color='#000000');
  95. width: 36px;
  96. height:36px;
  97. }
  98. .head_userzone_info{
  99. position: absolute;
  100. top:0px;
  101. right:54px;
  102. width:152px;
  103. height:53px;
  104. background:url(images/user_info_bg.png) no-repeat;
  105. }
  106. .head_userzone_info span{
  107. color:#ffffff;
  108. font-size:14px;
  109. }
  110. .head_userzone_exit{
  111. position: absolute;
  112. top:0px;
  113. right:0px;
  114. background:url(images/exit_bg.png) no-repeat;
  115. width:54px;
  116. height:53px;
  117. }
  118. .exit{
  119. background:url(images/exit.png) no-repeat;
  120. width:28px;
  121. height:19px;
  122. margin-top:14px;
  123. margin-left:14px;
  124. cursor:pointer;
  125. /*ie6.0 hack*/
  126. _background:none;
  127. _filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src="Content/V3/images/exit.png");
  128. }
  129. /*左侧导航栏*/
  130. .nav_left{
  131. background-color: #949CA0;
  132. bottom: 0;
  133. left: 0;
  134. position: absolute;
  135. top: 55px;
  136. _height:expression(document.body.offsetHeight - 55 + 'px');
  137. }
  138. #panelLeft ul{margin:0;padding:0;}
  139. #panelLeft ul li{list-style:none; margin:0; *display:inline; *zoom:1; padding:0; overflow:hidden; width:100%;}
  140. .nav_left_unclick{
  141. background-color:#ffffff;
  142. height:34px;
  143. line-height:34px;
  144. }
  145. .nav_left_unclick_left{
  146. float:left;
  147. background:url(images/panel_left1.png);
  148. width:32px;
  149. height:34px;
  150. line-height:34px;
  151. }
  152. .nav_left_unclick_left2{
  153. float:left;
  154. background:url(images/panel_left2.png);
  155. width:32px;
  156. height:34px;
  157. line-height:34px;
  158. }
  159. .nav_left_unclick_left3{
  160. float:left;
  161. background:url(images/panel_left3.png);
  162. width:32px;
  163. height:34px;
  164. line-height:34px;
  165. }
  166. .nav_left_unclick_right{
  167. float:left;
  168. height:34px;
  169. width:131px;
  170. line-height:34px;
  171. padding-left:6px;
  172. cursor:pointer;
  173. }
  174. .nav_left_unclick_right span{
  175. color:#000000;
  176. font-weight:bold;
  177. font-size:14px;
  178. }
  179. /*单击显示菜单*/
  180. .nav_left_click_parent{
  181. float:left;
  182. width:32px;
  183. }
  184. .nav_left_click_parent_mid{
  185. float:left;
  186. height:34px;
  187. line-height:34px;
  188. padding-left:6px;
  189. background-color:#949ca0;
  190. width:124px;
  191. cursor:pointer;
  192. }
  193. .nav_left_click_parent_mid span{
  194. color:#FFFFFF;
  195. font-weight:bold;
  196. font-size:14px;
  197. }
  198. .nav_left_click_parent_right{
  199. float:left;
  200. height:34px;
  201. line-height:34px;
  202. background-color:#949ca0;
  203. width:18px;
  204. }
  205. .nav_left_click_child{
  206. width:148px;
  207. margin-left:32px;
  208. background-color:#949ca0;
  209. }
  210. .nav_left_click_child_liselected{
  211. background-color:#97ce68;
  212. }
  213. /*左侧菜单栏子菜单鼠标移上去后变色*/
  214. .nav_left_click_child ul li:hover{
  215. background-color:#97ce68;
  216. }
  217. .nav_left_click_child ul li{
  218. cursor:pointer;
  219. }
  220. .nav_left_click_childpadding{
  221. padding-left:6px;
  222. }
  223. .nav_left_click_childtext{
  224. float:left;
  225. height:34px;
  226. line-height:34px;
  227. margin-left:6px;
  228. }
  229. .nav_left_click_childtext span{
  230. color:#FFFFFF;
  231. font-weight:bold;
  232. font-size:14px;
  233. }
  234. .home_pic{
  235. background:url(images/home.png);
  236. width:12px;
  237. height:11px;
  238. text-align:center;
  239. margin-top:12px;
  240. margin-left:10px;
  241. _background:none;
  242. _filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src="Content/V3/images/home.png")
  243. }
  244. .report_pic{
  245. background:url(images/report.png);
  246. width:12px;
  247. height:9px;
  248. text-align:center;
  249. margin-top:12px;
  250. margin-left:10px;
  251. _background:none;
  252. _filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src="Content/V3/images/report.png")
  253. }
  254. .help_pic{
  255. background:url(images/help.png);
  256. width:10px;
  257. height:10px;
  258. text-align:center;
  259. margin-top:12px;
  260. margin-left:10px;
  261. _background:none;
  262. _filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src="Content/V3/images/help.png")
  263. }
  264. .mycenter_pic{
  265. background:url(images/mycenter.png);
  266. width:12px;
  267. height:12px;
  268. text-align:center;
  269. margin-top:12px;
  270. margin-left:10px;
  271. _background:none;
  272. _filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src="Content/V3/images/mycenter.png")
  273. }
  274. .left_arrow{
  275. float:right;
  276. background:url(images/left_arrow.png) no-repeat;
  277. width:5px;
  278. height:8px;
  279. margin-top:13px;
  280. margin-right:5px;
  281. /*ie6.0 hack*/
  282. _background:none;
  283. _filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src="Content/V3/images/left_arrow.png");
  284. }
  285. .down_arrow{
  286. float:right;
  287. background:url(images/down_arrow.png) no-repeat;
  288. width:10px;
  289. height:5px;
  290. margin-top:14.5px;
  291. margin-right:3px;
  292. /*ie6.0 hack*/
  293. _background:none;
  294. _filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src="Content/V3/images/down_arrow.png");
  295. }
  296. .node_add{
  297. background:url(images/node_add.png) no-repeat;
  298. width:10px;
  299. height:10px;
  300. float:left;
  301. margin-top:12px;
  302. /*ie6.0 hack*/
  303. _background:none;
  304. _filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src="Content/V3/images/node_add.png");
  305. }
  306. /*渐变*/
  307. .gradient{
  308. width:180px;
  309. min-height:34px;
  310. height:auto;
  311. filter:alpha(opacity=100 finishopacity=50 style=0 startx=0,starty=0,finishx=0,finishy=150) progid:DXImageTransform.Microsoft.gradient(startcolorstr=#4fb7e8,endcolorstr=#a8dfb7,gradientType=0);
  312. -ms-filter:alpha(opacity=100 finishopacity=50 style=0 startx=0,starty=0,finishx=0,finishy=150) progid:DXImageTransform.Microsoft.gradient(startcolorstr=#4fb7e8,endcolorstr=#a8dfb7,gradientType=0);
  313. background:#a8dfb7; /* 一些不支持背景渐变的浏览器 */
  314. /*background:-moz-linear-gradient(top, red, rgba(0, 0, 255, 0.5)); */
  315. background:-moz-linear-gradient(top, rgb(79,183,232), rgba(168, 223, 183, 0.5));
  316. background:-webkit-gradient(linear, 0 0, 0 bottom, from(rgb(79,183,232)), to(rgba(168, 223, 183, 0.5)));
  317. }
  318. .left_heng{
  319. background:url(images/left_heng.png) no-repeat;
  320. width:148px;
  321. height:2px;
  322. /*ie6.0 hack*/
  323. _background:none;
  324. _filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src="Content/V3/images/left_heng.png");
  325. }
  326. #nav ul{list-style-type:none; margin:0;width:100%; }
  327. #nav ul li{float:left; width:98px; cursor:pointer; margin:0; display:inline-block; *display:inline; *zoom:1; overflow:hidden;}
  328. /*左侧导航栏结束*/
  329. /*右边内容顶部*/
  330. .content_nav{
  331. height:67px;
  332. background-color:#5199b8;
  333. }
  334. .content_nav_left{
  335. float:left;
  336. }
  337. .nav_selected{
  338. float:left;
  339. width:95px;
  340. height:67px;
  341. cursor:pointer;
  342. background:url(images/pick_selected.png) no-repeat;
  343. /*ie6.0 hack*/
  344. _background:none;
  345. _filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src="Content/V3/images/pick_selected.png");
  346. }
  347. .nav span{
  348. color:#FFFFFF;
  349. font-weight:bold;
  350. font-size:14px;
  351. }
  352. .nav_selected span{
  353. color:#FFFFFF;
  354. font-weight:bold;
  355. font-size:14px;
  356. }
  357. .Pick_pic{
  358. background:url(images/Pick.png) no-repeat;
  359. width:28px;
  360. height:27px;
  361. /*ie6.0 hack*/
  362. _background:none;
  363. _filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src="Content/V3/images/Pick.png");
  364. }
  365. .Reserved_pic{
  366. background:url(images/Reserved.png) no-repeat;
  367. width:28px;
  368. height:28px;
  369. /*ie6.0 hack*/
  370. _background:none;
  371. _filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src="Content/V3/images/Reserved.png");
  372. }
  373. .review_pic{
  374. background:url(images/review.png) no-repeat;
  375. width:25px;
  376. height:32px;
  377. /*ie6.0 hack*/
  378. _background:none;
  379. _filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src="Content/V3/images/review.png");
  380. }
  381. .Reboot_pic{
  382. background:url(images/Robot.png) no-repeat;
  383. width:30px;
  384. height:27px;
  385. /*ie6.0 hack*/
  386. _background:none;
  387. _filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src="Content/V3/images/Robot.png");
  388. }
  389. .Approval_pic
  390. {
  391. background:url(images/Approval.png) no-repeat;
  392. width:29px;
  393. height:28px;
  394. /*ie6.0 hack*/
  395. _background:none;
  396. _filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src="Content/V3/images/Approval.png");
  397. }
  398. .content_nav_right{
  399. position:relative;
  400. }
  401. .content_nav_right span{
  402. color:#FFFFFF;
  403. font-weight:bold;
  404. font-size:14px;
  405. }
  406. .btn-widget{
  407. cursor:pointer;
  408. width: 71px;
  409. height: 26px;
  410. line-height:26px;
  411. color:#fff;
  412. background: url('images/mobile_btn3.png') no-repeat;
  413. border:0;
  414. /*ie6.0 hack*/
  415. _background:none;
  416. _filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src="Content/V3/images/mobile_btn3.png");
  417. }
  418. #mainFrame
  419. {
  420. display:block;
  421. margin:0px;
  422. padding:0px;
  423. position:absolute;
  424. left:180px;
  425. top:55px;
  426. right:0px;
  427. bottom:0px;
  428. overflow:hidden;
  429. z-index:4;
  430. *HEIGHT: expression(document.body.offsetHeight - 55 + 'px');
  431. _HEIGHT: expression((document.body.offsetHeight - 55 ) + 'px');
  432. _WIDTH: expression((document.body.offsetWidth - 180) + 'px');
  433. /*_background-color:#FFFFFF;*/
  434. /*_border:1px solid red;*/
  435. }
  436. #mainFrameScroll{
  437. display: block;
  438. height: 100%;
  439. margin: 0;
  440. overflow: auto;
  441. padding: 0;
  442. position: relative;
  443. width: 100%;
  444. _width: 100%;
  445. }
  446. .Pick_pic_div{
  447. width:95px;
  448. height:67px;
  449. cursor:pointer;
  450. }
  451. .Pick_pic_div span{
  452. color:#FFFFFF;
  453. font-weight:bold;
  454. font-size:14px;
  455. }
  456. .Pick_pic_div:hover{
  457. width:95px;
  458. height:67px;
  459. background:url(images/pick_selected.png) no-repeat;
  460. _background:none;
  461. _filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src="Content/V3/images/pick_selected.png");
  462. }
  463. .Pick_pic_table_select
  464. {
  465. width:95px;
  466. height:67px;
  467. cursor:pointer;
  468. background:url(images/pick_selected.png) no-repeat;
  469. _background:none;
  470. _filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src="Content/V3/images/pick_selected.png");
  471. }
  472. .Pick_pic_table span{
  473. color:#FFFFFF;
  474. font-weight:bold;
  475. font-size:14px;
  476. }
  477. .Pick_pic_table_select span
  478. {
  479. color:#FFFFFF;
  480. font-weight:bold;
  481. font-size:14px;
  482. }
  483. .Pick_pic_table:hover{
  484. width:95px;
  485. height:67px;
  486. cursor:pointer;
  487. background:url(images/pick_selected.png) no-repeat;
  488. _background:none;
  489. _filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src="Content/V3/images/pick_selected.png");
  490. }
  491. /*
  492. .Reserved_pic_div{
  493. position:absolute;
  494. left:96px;
  495. width:95px;
  496. cursor:pointer;
  497. }
  498. .Reserved_pic_div span{
  499. color:#FFFFFF;
  500. font-weight:bold;
  501. font-size:14px;
  502. }
  503. .Reserved_pic_div:hover{
  504. width:95px;
  505. height:67px;
  506. background:url(images/pick_selected.png) no-repeat;
  507. _background:none;
  508. _filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src="Content/V3/images/pick_selected.png");
  509. }
  510. .review_pic_div{
  511. position:absolute;
  512. left:191px;
  513. width:95px;
  514. cursor:pointer;
  515. }
  516. .review_pic_div span{
  517. color:#FFFFFF;
  518. font-weight:bold;
  519. font-size:14px;
  520. }
  521. .review_pic_div:hover{
  522. width:95px;
  523. height:67px;
  524. background:url(images/pick_selected.png) no-repeat;
  525. _background:none;
  526. _filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src="Content/V3/images/pick_selected.png");
  527. }
  528. .Approval_pic_div{
  529. position:absolute;
  530. left:286px;
  531. width:95px;
  532. cursor:pointer;
  533. }
  534. .Approval_pic_div span{
  535. color:#FFFFFF;
  536. font-weight:bold;
  537. font-size:14px;
  538. }
  539. .Approval_pic_div:hover{
  540. width:95px;
  541. height:67px;
  542. background:url(images/pick_selected.png) no-repeat;
  543. _background:none;
  544. _filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src="Content/V3/images/pick_selected.png");
  545. }
  546. .Reboot_pic_div{
  547. position:absolute;
  548. left:381px;
  549. width:95px;
  550. cursor:pointer;
  551. }
  552. .Reboot_pic_div span{
  553. color:#FFFFFF;
  554. font-weight:bold;
  555. font-size:14px;
  556. }
  557. .Reboot_pic_div:hover{
  558. width:95px;
  559. height:67px;
  560. background:url(images/pick_selected.png) no-repeat;
  561. _background:none;
  562. _filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src="Content/V3/images/pick_selected.png");
  563. }
  564. */
  565. .content_right_receivedMessage{
  566. }
  567. .content_right_receivedMessage span{
  568. color:#FFFFFF;
  569. font-weight:bold;
  570. font-size:14px;
  571. }
  572. .content_right_receivedEmail{
  573. }
  574. .content_right_receivedEmail span{
  575. color:#FFFFFF;
  576. font-weight:bold;
  577. font-size:14px;
  578. }
  579. /*右边内容顶部结束*/
  580. /*右边内容底部*/
  581. .myagant{
  582. height:34px;
  583. position:relative;
  584. line-height:34px;
  585. }
  586. .myagant span{
  587. color:#FFFFFF;
  588. font-weight:bold;
  589. font-size:14px;
  590. }
  591. .myagant_left{
  592. background:url(images/shenhekuai_bg_back.png);
  593. width: 125px;
  594. height: 129px;
  595. position: absolute;
  596. top: 104px;
  597. left: 0px;
  598. }
  599. .myagant_left2{
  600. background:url(images/shenhekuai_bg_back.png);
  601. width: 125px;
  602. height: 130px;
  603. position: absolute;
  604. top: 241px;
  605. left: 0px;
  606. }
  607. .myagant_left3{
  608. background:url(images/shenhekuai_bg_back.png);
  609. width:125px;
  610. height:130px;
  611. position:absolute;
  612. top:362px;
  613. left:0px;
  614. }
  615. .myagant_left_top{
  616. width:125px;
  617. text-align:center;
  618. }
  619. .myagant_left_top span{
  620. font-size:12px;
  621. }
  622. .center_mybtn{
  623. cursor:pointer;
  624. width: 96px;
  625. height: 26px;
  626. line-height:26px;
  627. color:#fff;
  628. font-size:12px;
  629. font-weight:bold;
  630. background: url('images/mobile_btn2.png') no-repeat;
  631. border:0;
  632. /*ie6.0 hack*/
  633. _background:none;
  634. _filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src="Content/V3/images/mobile_btn2.png");
  635. }
  636. .btn-bule{
  637. cursor:pointer;
  638. width: 42px;
  639. height: 18px;
  640. line-height:18px;
  641. color:#fff;
  642. font-size:12px;
  643. background: url('images/btn_bule.png') no-repeat;
  644. border:0;
  645. /*ie6.0 hack*/
  646. _background:none;
  647. _filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src="Content/V3/images/btn_bule.png");
  648. }
  649. .btn-red{
  650. cursor:pointer;
  651. width: 42px;
  652. height: 18px;
  653. line-height:18px;
  654. color:#fff;
  655. font-size:12px;
  656. background: url('images/btn_red.png') no-repeat;
  657. border:0;
  658. /*ie6.0 hack*/
  659. _background:none;
  660. _filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src="Content/V3/images/btn_red.png");
  661. }
  662. .content_c{
  663. position: absolute;
  664. top:1px;
  665. left:0px;
  666. height:31px;
  667. line-height:31px;
  668. width:100%;
  669. }
  670. .content_c_c{
  671. position: absolute;
  672. top:1px;
  673. left:0px;
  674. height:32px;
  675. line-height:32px;
  676. width:100%;
  677. }
  678. /*单个栏目的间隔*/
  679. .content_c .single
  680. {
  681. display:inline-block;
  682. }
  683. .content_c .single
  684. {
  685. width:18%;
  686. _display:inline;
  687. *display:inline;
  688. line-height:31px;
  689. height:31px;
  690. text-align:center;
  691. border-left:1px solid #d7e3ea;
  692. vertical-align:middle;
  693. }
  694. .content_c_c .single
  695. {
  696. display:inline-block;
  697. }
  698. .content_c_c .single
  699. {
  700. width:18%;
  701. _display:inline;
  702. *display:inline;
  703. line-height:32px;
  704. height:32px;
  705. text-align:center;
  706. border-left:1px solid #d7e3ea;
  707. vertical-align:middle;
  708. }
  709. .content_c_c .singleOdd
  710. {
  711. display:inline-block;
  712. }
  713. .content_c_c .singleOdd
  714. {
  715. width:18%;
  716. _display:inline;
  717. *display:inline;
  718. line-height:32px;
  719. height:32px;
  720. text-align:center;
  721. border-left:1px solid #f6f9fb;
  722. vertical-align:middle;
  723. }
  724. .single span{
  725. font-size:12px;
  726. }
  727. .mye_left{
  728. background:url(images/shenhekuai_bg_back.png);
  729. width:125px;
  730. height:130px;
  731. position:absolute;
  732. top:528px;
  733. left:0px;
  734. }
  735. .center_mybtnmore{
  736. cursor:pointer;
  737. width: 44px;
  738. height: 26px;
  739. line-height:26px;
  740. color:#fff;
  741. font-size:12px;
  742. font-weight:bold;
  743. background: url('images/mobile_btn41x26.png') no-repeat;
  744. border:0;
  745. /*ie6.0 hack*/
  746. _background:none;
  747. _filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src="Content/V3/images/mobile_btn41x26.png");
  748. }
  749. /*右边内容底部结束*/
  750. .content_table
  751. {
  752. height: 32px;
  753. left: 0;
  754. line-height: 32px;
  755. margin: 0 0 0 0px;
  756. position: relative;
  757. }
  758. .content_table_title
  759. {
  760. height: 31px;
  761. left: 0;
  762. line-height: 31px;
  763. margin: 0 0 0 0;
  764. position: relative;
  765. }
  766. .content_table_title img{
  767. display: block;
  768. width: 100%;
  769. height: 33px;
  770. padding: 0px;
  771. margin: 0px;
  772. }
  773. .myagant img
  774. {
  775. width:100%;
  776. height:34px;
  777. padding:0px;
  778. margin:0px;
  779. position:relative;
  780. }
  781. .table_kuan
  782. {
  783. background:url(images/shenhekuai_bg_back.png);
  784. width:125px;
  785. height:130px;
  786. }
  787. .table_right_title{
  788. border-left:1px solid #d7e3ea;
  789. line-height:31px;
  790. height:31px;
  791. width:18%;
  792. text-align:center;
  793. background:url('images/content_title_bg.png');
  794. }
  795. .table_right_title span{
  796. font-size:12px;
  797. }
  798. .table_right_dark{
  799. border-left:1px solid #d7e3ea;
  800. line-height:32px;
  801. height:32px;
  802. width:18%;
  803. text-align:center;
  804. }
  805. .table_right_dark span{
  806. font-size:12px;
  807. }
  808. .table_right_Shallow{
  809. border-left:1px solid #f6f9fb;
  810. line-height:32px;
  811. height:32px;
  812. width:18%;
  813. text-align:center;
  814. }
  815. .table_right_Shallow span{
  816. font-size:12px;
  817. }
  818. /*首页table间偶数行变色*/
  819. .stripeOdd
  820. {
  821. background:#fbfcfc;
  822. }
  823. /* 2014-04-21 added by pengbb 菜单样式 begin */
  824. .nav_left_menuitem
  825. {
  826. background-color:#ffffff;
  827. position:relative;
  828. }
  829. .nav_left_menuitem_left
  830. {
  831. float:left;
  832. background:url(images/panel_left1.png);
  833. width:32px;
  834. height:34px;
  835. line-height:34px;
  836. }
  837. .nav_left_menuitem_left2{
  838. float:left;
  839. background:url(images/panel_left2.png);
  840. width:32px;
  841. height:34px;
  842. line-height:34px;
  843. }
  844. .nav_left_menuitem_left3{
  845. float:left;
  846. background:url(images/panel_left3.png);
  847. width:32px;
  848. height:34px;
  849. line-height:34px;
  850. }
  851. .nav_left_menuitem_center{
  852. float:left;
  853. height:34px;
  854. line-height:34px;
  855. padding-left:6px;
  856. background-color:#ffffff;
  857. width:124px;
  858. cursor:pointer;
  859. }
  860. .nav_left_menuitem_center span{
  861. color:#7B7C7E;
  862. font-weight:bold;
  863. font-size:14px;
  864. }
  865. .nav_left_menuitem_right{
  866. float:left;
  867. height:34px;
  868. line-height:34px;
  869. background-color:#FFFFFF;
  870. width:18px;
  871. }
  872. .nav_left_menuitem_right .left_arrow{
  873. float:right;
  874. background:url(images/left_arrow.png) no-repeat;
  875. width:5px;
  876. height:8px;
  877. margin-top:13px;
  878. margin-right:5px;
  879. /*ie6.0 hack*/
  880. _background:none;
  881. _filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src="Content/V3/images/left_arrow.png");
  882. }
  883. .nav_left_menuitem_right .down_arrow{
  884. float:right;
  885. background:url(images/down_arrow.png) no-repeat;
  886. width:10px;
  887. height:5px;
  888. margin-top:14.5px;
  889. margin-right:3px;
  890. /*ie6.0 hack*/
  891. _background:none;
  892. _filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src="Content/V3/images/down_arrow.png");
  893. }
  894. .nav_left_menuitem_child_padding .node_none{
  895. background:none;
  896. height: 10px;
  897. line-height:10px;
  898. width: 10px;
  899. float:left;
  900. margin-top:9px;
  901. margin-right:4px;
  902. }
  903. .nav_left_menuitem_child_padding .node_plus{
  904. background:url(images/node_add.png) no-repeat;
  905. height: 10px;
  906. width: 10px;
  907. float:left;
  908. margin-top:9px;
  909. margin-right:4px;
  910. /*ie6.0 hack*/
  911. _background:none;
  912. _filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src="Content/V3/images/node_add.png");
  913. }
  914. .nav_left_menuitem_child_padding .node_minus{
  915. background:url(images/node_minus.png) no-repeat;
  916. height: 10px;
  917. width: 10px;
  918. float:left;
  919. margin-top:9px;
  920. margin-right:4px;
  921. /*ie6.0 hack*/
  922. _background:none;
  923. _filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src="Content/V3/images/node_minus.png");
  924. }
  925. .nav_left_menuitem_expand .nav_left_menuitem_left{
  926. float:left;
  927. width:32px;
  928. background:none;
  929. }
  930. .nav_left_menuitem_expand .nav_left_menuitem_center{
  931. float:left;
  932. height:34px;
  933. line-height:34px;
  934. padding-left:6px;
  935. background-color:#949ca0;
  936. width:124px;
  937. cursor:pointer;
  938. }
  939. .nav_left_menuitem_expand .nav_left_menuitem_center span{
  940. color:#FFFFFF;
  941. font-weight:bold;
  942. font-size:14px;
  943. }
  944. .nav_left_menuitem_expand .nav_left_menuitem_right{
  945. float:left;
  946. height:34px;
  947. line-height:34px;
  948. background-color:#949ca0;
  949. width:18px;
  950. }
  951. .nav_left_menuitem_left .mycenter_pic{
  952. background:url(images/mycenter.png);
  953. width:12px;
  954. height:12px;
  955. text-align:center;
  956. margin-top:12px;
  957. margin-left:10px;
  958. _background:none;
  959. _filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src="Content/V3/images/mycenter.png");
  960. }
  961. .nav_left_menuitem_left .home_pic{
  962. background:url(images/home.png);
  963. width:12px;
  964. height:11px;
  965. text-align:center;
  966. margin-top:12px;
  967. margin-left:10px;
  968. _background:none;
  969. _filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src="Content/V3/images/home.png");
  970. }
  971. .nav_left_menuitem_child{
  972. width:148px;
  973. margin-left:32px;
  974. background-color:#949ca0;
  975. position:relative;
  976. }
  977. .nav_left_menuitem_child li
  978. {
  979. display:block;
  980. }
  981. .nav_left_menuitem_child_selected{
  982. background-color:#97ce68;
  983. }
  984. /*左侧菜单栏子菜单鼠标移上去后变色
  985. .nav_left_menuitem_second:hover{
  986. background-color:#97ce68;
  987. }
  988. */
  989. .nav_left_menuitem_child ul li{
  990. cursor:pointer;
  991. }
  992. .nav_left_menuitem_child ul li .nav_left_menuitem_second
  993. {
  994. display:block;
  995. margin:0px;
  996. padding:0px;
  997. height: 28px;
  998. line-height: 28px;
  999. }
  1000. .nav_left_menuitem_child ul li .nav_left_menuitem_child_padding
  1001. {
  1002. padding:0px 0px 0px 6px;
  1003. }
  1004. .nav_left_menuitem_child ul li .nav_left_menuitem_child_text
  1005. {
  1006. display:block;
  1007. float: left;
  1008. height: 28px;
  1009. line-height: 28px;
  1010. margin:0px;
  1011. padding:0px;
  1012. width: 118px;
  1013. overflow:hidden;
  1014. }
  1015. .nav_left_menuitem_child ul li .nav_left_menuitem_child_text span{
  1016. color: #FFFFFF;
  1017. font-size: 14px;
  1018. font-weight: bold;
  1019. white-space:nowrap;
  1020. }
  1021. .nav_left_menuitem_second_childpanel
  1022. {
  1023. display:none;
  1024. }
  1025. .nav_left_menuitem_second_childpanel .nav_left_menuitem_child_second_padding
  1026. {
  1027. padding-bottom: 4px;
  1028. }
  1029. .nav_left_menuitem_second_childpanel .nav_left_menuitem_child_second_text
  1030. {
  1031. margin-left: 32px;
  1032. white-space:nowrap;
  1033. line-height:16px;
  1034. height:16px;
  1035. vertical-align:middle;
  1036. }
  1037. .nav_left_menuitem_second_childpanel .nav_left_menuitem_child_second_text span
  1038. {
  1039. color:#FFFFFF;
  1040. font-weight:bold;
  1041. font-size:12px;
  1042. white-space:nowrap;
  1043. line-height:16px;
  1044. height:16px;
  1045. vertical-align:middle;
  1046. }
  1047. .nav_left_menuitem_second_hover
  1048. {
  1049. background-color: #97CE68;
  1050. }
  1051. .nav_left_menuitem_third_hover
  1052. {
  1053. background-color: #97CE68;
  1054. }
  1055. /* 2014-04-21 added by pengbb 菜单样式 end */
  1056. /* 2014-04-24 added by pengbb tabs 样式 begin*/
  1057. .tabs
  1058. {
  1059. *height:31px;
  1060. }
  1061. .tabs li
  1062. {
  1063. bottom: -2px;
  1064. /*_line-height:30px;
  1065. _display:block;
  1066. _height:30px; */
  1067. }
  1068. .tabs li a.tabs-inner
  1069. {
  1070. height: 30px;
  1071. line-height: 30px;
  1072. _display:inline-block;
  1073. }
  1074. .tabs-header, .tabs-tool, .tabs, .tabs-panels, .tabs li a.tabs-inner, .tabs li.tabs-selected a.tabs-inner, .tabs-header-bottom .tabs li.tabs-selected a.tabs-inner, .tabs-header-left .tabs li.tabs-selected a.tabs-inner, .tabs-header-right .tabs li.tabs-selected a.tabs-inner
  1075. {
  1076. background: none repeat scroll 0 0 #65C1DC;
  1077. border-color: #C3D9E0;
  1078. border:0px none;
  1079. }
  1080. .tabs li a.tabs-inner
  1081. ,.tabs li a.tabs-inner:hover
  1082. {
  1083. border:0px none;
  1084. }
  1085. .tabs li a.tabs-inner
  1086. ,.tabs li a.tabs-inner:hover
  1087. {
  1088. background: url("./images/tab_item_bg_left.png") no-repeat scroll left top transparent;
  1089. color: #FFFFFF;
  1090. height: 30px;
  1091. line-height: 30px;
  1092. padding-right: 0;
  1093. }
  1094. .tabs li a.tabs-inner span.tabs-title
  1095. ,.tabs li a.tabs-inner:hover span.tabs-title
  1096. {
  1097. background: url("./images/tab_item_bg_right.png") no-repeat scroll right top transparent;
  1098. display: inline-block;
  1099. height: 30px;
  1100. line-height: 30px;
  1101. padding-right: 24px;
  1102. cursor:default;
  1103. }
  1104. .tabs li.tabs-selected a.tabs-inner
  1105. ,.tabs li.tabs-selected a.tabs-inner:hover
  1106. {
  1107. border:0px none;
  1108. }
  1109. .tabs li.tabs-selected a.tabs-inner
  1110. ,.tabs li.tabs-selected a.tabs-inner:hover
  1111. {
  1112. background: url("./images/tab_item_selected_bg_left.png") no-repeat scroll left top transparent;
  1113. color: #FFFFFF;
  1114. height: 30px;
  1115. line-height: 30px;
  1116. padding-right: 0;
  1117. /*_background:none;*/
  1118. }
  1119. .tabs li.tabs-selected a.tabs-inner span.tabs-title
  1120. ,.tabs li.tabs-selected a.tabs-inner:hover span.tabs-title
  1121. {
  1122. background: url("./images/tab_item_selected_bg_right.png") no-repeat scroll right top transparent;
  1123. display: inline-block;
  1124. height: 30px;
  1125. line-height: 30px;
  1126. padding-right: 24px;
  1127. /*_background:none;*/
  1128. }
  1129. .tabs li a.tabs-close, .tabs-p-tool
  1130. {
  1131. top: 55%;
  1132. }
  1133. .tabs li a.tabs-close
  1134. {
  1135. background: url("./images/tab_item_icon_delete.png") no-repeat scroll 0 0 transparent;
  1136. }
  1137. .tabs li.tabs-selected a.tabs-close
  1138. {
  1139. background: url("./images/tab_item_selected_icon_delete.png") no-repeat scroll 0 0 transparent;
  1140. }
  1141. .tabs-p-tool a:hover,
  1142. .tabs li a:hover.tabs-close,
  1143. .tabs-scroller-over {
  1144. background-color: transparent;
  1145. }
  1146. /* 2014-04-24 added by pengbb tabs 样式 end*/