-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·9894 lines (8333 loc) · 664 KB
/
index.html
File metadata and controls
executable file
·9894 lines (8333 loc) · 664 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<!--[30,69,1] published at 2012-12-01 20:09:08 from #150 by system-->
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>新浪首页</title>
<meta name="description" content="新浪网为全球用户24小时提供全面及时的中文资讯,内容覆盖国内外突发新闻事件、体坛赛事、娱乐时尚、产业资讯、实用信息等,设有新闻、体育、娱乐、财经、科技、房产、汽车等30多个内容频道,同时开设博客、视频、论坛等自由互动交流空间。" />
<meta name="stencil" content="PGLS000022" />
<meta name="publishid" content="30,69,1" />
<meta name="verify-v1" content="6HtwmypggdgP1NLw7NOuQBI2TW8+CfkYCoyeB8IDbn8=" />
<script type="text/javascript">(function(padUrl){if(location.href.indexOf('f=pad')!==-1){return}; if(/\(iPad/i.test(navigator.userAgent)){location.replace(padUrl+'?f=web')};})('http://ipad.sina.com.cn/news/');</script>
<!-- optimization begin -->
<script type="text/javascript">
//js异步加载管理
(function(){var w=this,d=document,version='1.0.7',data={},length=0,cbkLen=0;if(w.jsLoader){if(w.jsLoader.version>=version){return};data=w.jsLoader.getData();length=data.length};var addEvent=function(obj,eventType,func){if(obj.attachEvent){obj.attachEvent("on"+eventType,func)}else{obj.addEventListener(eventType,func,false)}};var domReady=false,ondomReady=function(){domReady=true};if(d.addEventListener){var webkit=navigator.userAgent.match(/AppleWebKit\/(\d+)/);if(webkit&&webkit[1]<525){doReadyStateCheck()}else{d.addEventListener("DOMContentLoaded",function(){d.removeEventListener("DOMContentLoaded",arguments.callee,false);ondomReady()},false)}};function doScrollCheck(){if(domReady){return};try{d.documentElement.doScroll("left")}catch(e){return};ondomReady()};function doReadyStateCheck(){if(domReady){return};if(d.readyState=='loaded'||d.readyState=='complete'){ondomReady();return}else{setTimeout(doReadyStateCheck,1);return}};function createPosNode(){if(jsLoader.caller){return};cbkLen++;if(!domReady&&d.attachEvent){doScrollCheck()};if(!domReady){try{d.write('<div style="display:none" id="_jl_pos_'+cbkLen+'"></div>');s=d.getElementById('_jl_pos_'+cbkLen)}catch(e){var s=d.createElement('div');s.id='_jl_pos_'+cbkLen;s.style.display='none';d.body.insertBefore(s,d.body.firstChild)}}else{var s=d.createElement('div');s.id='_jl_pos_'+cbkLen;s.style.display='none';d.body.appendChild(s)};return s};function getScript(url,dispose,charset){var scriptNode=d.createElement("script");scriptNode.type="text/javascript";if(charset){scriptNode.charset=charset};scriptNode.onreadystatechange=scriptNode.onload=function(){if(!this.readyState||this.readyState=="loaded"||this.readyState=="complete"){if(dispose){dispose()};scriptNode.onreadystatechange=scriptNode.onload=null;scriptNode.parentNode.removeChild(scriptNode)}};scriptNode.src=url;var h=d.getElementsByTagName("head")[0];h.insertBefore(scriptNode,h.firstChild)};var write=d.write,posNode;function cWrite(str){if(posNode.childNodes.length>0){return};if(posNode.innerHTML!=''){while(posNode.childNodes.length){posNode.parentNode.insertBefore(posNode.childNodes[0],posNode)}};posNode.innerHTML=str;while(posNode.childNodes.length){posNode.parentNode.insertBefore(posNode.childNodes[0],posNode)}};var JsObj=function(name,url){this.name=name;this.url=url;this.callback=[]};JsObj.prototype={status:'init',onload:function(){this.status='ok';var errors=[];for(var i=0;i<this.callback.length;i++){if(typeof this.callback[i]=='function'){try{if(this.callback[i].posNode){posNode=this.callback[i].posNode;d.write=cWrite};this.callback[i]();if(this.callback[i].posNode){d.write=write;this.callback[i].posNode.parentNode.removeChild(this.callback[i].posNode)}}catch(e){errors.push(e)}}};this.callback=[];if(errors.length!=0){throw errors[0]}}};w.jsLoader=function(cfg){var url=cfg.url||"";var name=cfg.name||"";var callback=cfg.callback||"";var charset=cfg.charset||"";if(name){if(!data[name]){if(!url){data[name]=new JsObj(name);data[name].status='waiting'}else{data[name]=new JsObj(name,url)};length++}else if(data[name].status=='waiting'&&url){data[name].status='init'};if(cfg.status){data[name].status=cfg.status};if(data[name].status=='loading'||data[name].status=='waiting'){if(typeof callback=='function'){callback.posNode=createPosNode();data[name].callback.push(callback)};return}else if(data[name].status=='ok'){if(typeof callback=='function'){callback()};return}}else{if(!url){return};for(var item in data){if(data[item].url==url){name=item;break}};if(!name){name='noname'+length;data[name]=new JsObj(name,url);length++};if(data[name].status=='loading'){if(typeof callback=='function'){callback.posNode=createPosNode();data[name].callback.push(callback)};return}else if(data[name].status=='ok'){if(typeof callback=='function'){callback()};return}};if(typeof callback=='function'){callback.posNode=createPosNode();data[name].callback.push(callback)};getScript(url,function(){data[name].onload()},charset);data[name].status='loading'};w.jsLoader.version=version;w.jsLoader.getData=function(){return data}})();
</script>
<script type="text/javascript">
jsLoader({
name : 'iplookup',
url : 'http://int.dpool.sina.com.cn/iplookup/iplookup.php?format=js'
});
</script>
<script type="text/javascript" src="http://i1.sinaimg.cn/home/deco/2012/0809/headwww.js"></script>
<script type="text/javascript">
jsLoader({
name : 'headwww',
status : 'ok'
});
</script>
<script type="text/javascript">
jsLoader({
name : 'iplookup',
callback : function(){
jsLoader({
name : 'libweb',
url : 'http://news.sina.com.cn/pfpnews/js/libweb.js'
});
}
});
</script>
<!-- 智投首屏数据,目前只包括1095打折 -->
<script type="text/javascript">
jsLoader({
name : 'res_PGLS000022_FP',
url : 'http://pfp.sina.com.cn/pfpnew/merge/res_PGLS000022_FP.js'
});
</script>
<!-- optimization end -->
<style type="text/css">
/* 全局样式 */
body,ul,ol,li,p,h1,h2,h3,h4,h5,h6,form,fieldset,table,td,img,div{margin:0;padding:0;border:0;}
body{background:#fff;color:#333;font-size:12px; margin-top:5px;font-family:"SimSun","宋体","Arial Narrow";}
ul,ol{list-style-type:none;}
select,input,img,select{vertical-align:middle;}
a{text-decoration:none;}
a:link{color:#009;}
a:visited{color:#800080;}
a:hover,a:active,a:focus{color:#c00;text-decoration:underline;}
/* 自定义颜色 */
a.f_orange:link, a.f_orange:visited{ color:#b33737;}
a.f_orange:hover{ color:#c00}
.clearit{clear:both;}
/* page */
#page{width:950px; overflow: visible; _display:inline-block; margin:0 auto;background:#fff;}
/* 顶部 top */
.top{height:27px; position:relative; z-index:99; padding:1px; border:1px #fdd26c solid; border-bottom:1px #e1a841 solid; color:#000; background:url(http://i3.sinaimg.cn/dy/deco/2012/0914/sinahome_0803_ws_001.gif) repeat-x 0 0 #fff;}
.top a,.top a:visited{color:#000; text-decoration:none;}
.top a:hover,.top a:active{color:#000; text-decoration:underline;}
.topBlk{height:27px; _display:inline-block; background:url(http://i3.sinaimg.cn/dy/deco/2012/0914/sinahome_0803_ws_001.gif) repeat-x 0 -50px #fdc145;}
.logonTxt{float:left;line-height:29px;height:27px;overflow:hidden;padding:0 0 0 15px;}
.mailInfo{margin-left:5px}
.mailInfo a{background:url(http://i3.sinaimg.cn/rny/webface/images/mailincon.png) 1px center no-repeat;padding-left:20px;margin-right:2px;margin-left:2px;background-position:1px -2px\0;*background-position:1px -1px;}
@media only screen
and (min-device-width : 768px)
and (max-device-width : 1024px) {
.mailInfo a{background-position:1px 0;}
}
#logonFldselect{position:relative;float:left;margin:4px 0 0 10px;left:0;top:0;}
.tB03,.tB04{float:left;overflow:hidden;height:27px;}
.tB03 ul,.tB04 ul{line-height:29px;}
.tB03 li,.tB04 li{float:left;}
.tB03 li{padding:0 7px 0 6px;}
.tB04 li{float:left;}
.tB04 a{display:block; padding:0 0 0 12px; background:url(http://i0.sinaimg.cn/dy/deco/2012/0630/sinahome_0803_ws_002_new.gif) no-repeat 0 -142px;}
.tB04 a#setHomePage{background:url(http://i0.sinaimg.cn/dy/deco/2012/0630/sinahome_0803_ws_002_new.gif) no-repeat 0 -92px; padding-right:12px;}
.tB04 a#sinaMobile{background:url(http://i2.sinaimg.cn/dy/deco/2009/0317/sinahome_mobile_icon_01.gif) no-repeat 0 8px; padding-right:12px;}
.tB02{width:445px;float:left;}
.tB03{width:262px; background:url(http://i0.sinaimg.cn/dy/deco/2012/0630/sinahome_0803_ws_002_new.gif) no-repeat 260px -42px;}
.tB04{padding:0 0 0 10px;}
/* 快速登录 */
.loginFld{padding:0 0 0 10px;}
.loginFld legend{display:none;}
.usernameFld,.passwordFld{float:left; width:141px; overflow:hidden;}
.usernameFldlabel,.passwordFldlabel{float:left; padding:0 8px 0 0; line-height:29px;overflow:hidden;height:27px;}
.usernameFldinput,.passwordFldinput{float:left; width:86px; position:relative;}
.usernameFldinput input,.passwordFldinput input{width:84px; height:16px; padding:0; margin:0; position:absolute; top:5px; left:0; border:1px #e7d6a2 solid; color:#444; background:url(http://i0.sinaimg.cn/dy/deco/2012/0630/sinahome_0803_ws_002_new.gif) no-repeat 0 0 #fff; line-height:16px; font-size:12px; text-indent:3px;}
.bottonFld{float:left; width:60px; overflow:hidden; padding:0 0 0 93px;}
#bottonFldsubmit{width:49px; height:19px; overflow:hidden; padding:0; margin:5px 0 0 0; border:1px #ffac32 solid; background:url(http://i3.sinaimg.cn/dy/deco/2012/0914/sinahome_0803_ws_001.gif) repeat-x 0 -100px #ffeccc; font-size:12px; text-align:center; line-height:15px; cursor:pointer;}
.otherFld{float:left; width:64px;}
.otherFldlostpassword{line-height:29px;}
/* select */
.loginFldselect{width:100px; position:absolute; top:6px; left:278px; z-index:9999;}
.loginFldselect .lftit{width:79px; height:17px; overflow:hidden; padding:0 18px 0 0; text-align:center; line-height:17px; background:url(http://i0.sinaimg.cn/dy/deco/2012/0630/sinahome_0803_ws_002_new.gif) no-repeat 0 -200px #fff; border:1px #ffa930 solid; display:block; cursor:pointer;}
.loginFldselect ul{width:97px; padding:5px 0; overflow:hidden; border:1px #fdad34 solid; position:absolute; top:18px; left:0; background:url(http://i3.sinaimg.cn/dy/deco/2012/0914/sinahome_0803_ws_001.gif) repeat-x 0 -150px #fffcf5;filter:progid:DXImageTransform.Microsoft.Alpha(opacity=90); -moz-opacity:.9; opacity:0.9;}
.loginFldselect li{line-height:22px; height:20px; overflow:hidden; text-align:left;}
.loginFldselect li a{display:block; height:20px; overflow:hidden; margin:0 5px; padding-left:12px;}
.loginFldselect li a:hover,.loginFldselect li a:active{background:#fef0e2; text-decoration:none;}
#loginFldselectop_line{height:1px; overflow:hidden; background:#ffc88e; font-size:0; line-height:0; margin:2px 5px 3px;}
.loginFldselect li a.disabled{color:#999;cursor:default;}
.loginFldselect li a.disabled:hover,.loginFldselect li a.disabled:active{background:none;}
/* logo&nav */
.logonav{height:85px; overflow:hidden; border:1px #e0e0e0 solid; border-top:none; margin-bottom:8px; position:relative; z-index:0; background:url(http://i3.sinaimg.cn/dy/deco/2012/0914/sinahome_0803_ws_001.gif) repeat-x 0 -400px #f9f9f9;}
/* logo */
/*
.logo{width:145px; height:52px; position:absolute; top:0; left:10px;}
.logo h1{height:44px;position:absolute; top:10px; *top:8px; left:13px;}
*/
/* weather */
/*
.weather{height:20px; overflow:hidden; position:absolute; top:57px; left:6px; z-index:98;}
*/
/* logo */
.logo{width:145px; height:52px; position:absolute; top:0; left:6px;}
.logo h1{height:44px;position:absolute; top:10px; *top:8px; left:13px;}
/* weather */
.weather{height:20px; overflow:hidden; position:absolute; top:63px; left:6px; z-index:98;}
/* 导航 */
.nav{width:790px; height:85px; overflow:hidden; position:absolute; top:0; right:0;}
.nav_1,.nav_2,.nav_3{overflow:hidden; _display:inline-block; float:left; padding-top:13px;}
.nav_1{width:440px; background:url(http://i0.sinaimg.cn/dy/deco/2012/0630/sinahome_0803_ws_002_new.gif) no-repeat 439px -287px;}
.nav_2{width:108px; background:url(http://i0.sinaimg.cn/dy/deco/2012/0630/sinahome_0803_ws_002_new.gif) no-repeat 106px -287px;margin-left:2px;display:inline;}
.nav_3{width:108px;}
.nav_w{width:120px;background-position:119px -287px;}
.nav ul{height:23px;clear:both;}
.nav li{float:left; padding:0 1px 0 1px;width:35px; margin-left:-1px; text-align:center; line-height:14px; background:url(http://i0.sinaimg.cn/dy/deco/2012/0630/sinahome_0803_ws_002_new.gif) no-repeat 0 -250px;}
.nav .nav_1 li{padding:0 6px 0 7px;}
.nav a,.nav a:visited{color:#000; text-decoration:none;}
.nav a:hover,.nav a:active{color:#c00; text-decoration:none;}
.nav_adw{width:118px;background-position:113px -287px;}
.nav_adw .adw{width:43px;}
/* Part */
.Part{width:950px;zoom:1;padding-bottom:10px; clear:both;}
.Part:after{content:".";display:block;clear:both;height:0;visibility:hidden;}
.left{width:160px; overflow:hidden; float:left; _display:inline-block; background:url(http://i3.sinaimg.cn/home/deco/2008/0329/sinahome_0803_ws_003_new.gif) repeat-y 0 0 #ffd77b; border-bottom:1px #e5b952 solid;}
#PartA{height:879px; overflow:hidden;}
#PartA .left{height:653px;}
#PartB{padding-bottom:0;}
#PartB .left{height:307px;}
#PartC{padding:10px 0; *padding:10px 0 0 0; overflow:visible;}
#PartC .left{height:850px;}
#PartC .rightbox{overflow:visible;}
#PartC .right{overflow:visible;}
#PartD .left{height:403px;}
#PartE .left{height:456px;}
#PartF .left{height:310px;}
#PartG .left{height:1148px;margin-bottom:-900px;position:relative;border-bottom:none;}
#PartH .left{height:384px;}
#PartI .left{height:1017px;}
.rightbox{width:790px; overflow:hidden; float:left; _display:inline-block;}
.middle,.right{width:395px; overflow:hidden; _display:inline-block; float:left;}
.colpadding{padding:0 0 0 10px;}
.md{background:url(http://i3.sinaimg.cn/home/deco/2008/0329/sinahome_0803_ws_003_new.gif) repeat-y -400px 0 #fff; border-bottom:1px #d1d1d1 solid; overflow:hidden; _display:inline-block;}
.md_2{background:url(http://i3.sinaimg.cn/home/deco/2008/0329/sinahome_0803_ws_003_new.gif) repeat-y -400px 0 #fff; border-bottom:1px #d1d1d1 solid; border-top:1px #d1d1d1 solid; overflow:hidden; _display:inline-block; margin-bottom:10px;}
.md_3{}
.md_3 h2{height:28px; overflow:hidden; font-size:14px; margin:0 1px;}
.md_3 h2 .capname{float:left; padding:6px 0 0 14px; line-height:14px;}
.md_purple{background:url(http://i3.sinaimg.cn/home/deco/2008/0329/sinahome_0803_ws_003_new.gif) repeat-y -1200px 0 #fff; border-bottom:1px #cdbff1 solid;}
.md_purple h2{background:url(http://i3.sinaimg.cn/dy/deco/2012/0914/sinahome_0803_ws_001.gif) repeat-x 0 -650px #cdbff1; color:#5d1c9f;}
.md_purple h2 a,.md_purple h2 a:visited{color:#5d1c9f;text-decoration:none;}
.md_purple h2 a:hover,.md_purple h2 a:active{color:#5d1c9f;text-decoration:underline;}
.md_pink{background:url(http://i3.sinaimg.cn/home/deco/2008/0329/sinahome_0803_ws_003_new.gif) repeat-y -1600px 0 #fff; border-bottom:1px #ffb5b5 solid;}
.md_pink h2{background:url(http://i3.sinaimg.cn/dy/deco/2012/0914/sinahome_0803_ws_001.gif) repeat-x 0 -700px #ffb5b5; color:#e84d4d;}
.md_pink h2 a,.md_pink h2 a:visited{color:#e84d4d;text-decoration:none;}
.md_pink h2 a:hover,.md_pink h2 a:active{color:#e84d4d;text-decoration:underline;}
.md_pink h2 ul{float:left;height:27px; padding:1px 0 0;overflow:hidden;}
.md_pink h2 li{float:left; height:27px;cursor:pointer; border-right:solid 1px #ffb5b5;}
.md_pink h2 li.on{background:#fff}
.md_pink h2 li .capname{float:left;line-height:14px;padding: 6px 14px 0;}
.md_orange{background:url(http://i3.sinaimg.cn/home/deco/2008/0329/sinahome_0803_ws_003_new.gif) repeat-y -2000px 0 #fff; border-bottom:1px #ffdeb4 solid;}
.md_orange h2{background:url(http://i3.sinaimg.cn/dy/deco/2012/0914/sinahome_0803_ws_001.gif) repeat-x 0 -750px #ffdeb4; color:#ff6000;}
.md_orange h2 a,.md_orange h2 a:visited{color:#ff6000;text-decoration:none;}
.md_orange h2 a:hover,.md_orange h2 a:active{color:#ff6000;text-decoration:underline;}
.md_green{background:url(http://i3.sinaimg.cn/home/deco/2008/0329/sinahome_0803_ws_003_new.gif) repeat-y -2400px 0 #fff; border-bottom:1px #cfe8c4 solid;}
.md_green h2{background:url(http://i3.sinaimg.cn/dy/deco/2012/0914/sinahome_0803_ws_001.gif) repeat-x 0 -800px #cfe8c4; color:#338e3a;}
.md_green h2 a,.md_green h2 a:visited{color:#338e3a;text-decoration:none;}
.md_green h2 a:hover,.md_green h2 a:active{color:#338e3a;text-decoration:underline;}
.md_yellow{background:url(http://i3.sinaimg.cn/home/deco/2008/0329/sinahome_0803_ws_003_new.gif) repeat-y -2800px 0 #fff; border-bottom:1px #f6d76d solid;}
.md_yellow h2{background:url(http://i3.sinaimg.cn/dy/deco/2012/0914/sinahome_0803_ws_001.gif) repeat-x 0 -850px #f6d76d; color:#ee9802;}
.md_yellow h2 a,.md_yellow h2 a:visited{color:#ee9802;text-decoration:none;}
.md_yellow h2 a:hover,.md_yellow h2 a:active{color:#ee9802;text-decoration:underline;}
.md_blue{background:url(http://i3.sinaimg.cn/home/deco/2008/0329/sinahome_0803_ws_003_new.gif) repeat-y -3200px 0 #fff; border-bottom:1px #b7d0ef solid;}
.md_blue h2{background:url(http://i3.sinaimg.cn/dy/deco/2012/0914/sinahome_0803_ws_001.gif) repeat-x 0 -900px #b7d0ef; color:#005ece;}
.md_blue h2 a,.md_blue h2 a:visited{color:#005ece;text-decoration:none;}
.md_blue h2 a:hover,.md_blue h2 a:active{color:#005ece;text-decoration:underline;}
.hd{height:27px; overflow:hidden; background:url(http://i3.sinaimg.cn/dy/deco/2012/0914/sinahome_0803_ws_001.gif) repeat-x 0 -500px #858585;}
.hd h2{height:27px; overflow:hidden; _display:inline-block; background:url(http://i0.sinaimg.cn/dy/deco/2012/0630/sinahome_0803_ws_002_new.gif) no-repeat right -550px #f6f6f6; float:left; padding:0 3px 0 0;}
.hd h2 .capname{padding:8px 20px 0 23px; height:19px; line-height:14px; font-size:14px; color:#333; display:block; float:left; background:url(http://i0.sinaimg.cn/dy/deco/2012/0630/sinahome_0803_ws_002_new.gif) no-repeat left -600px;}
.hd h2 .capsl{}
.hd h2 .capsr{}
.hd h2 a,.hd h2 a:visited{color:#333; text-decoration:none; cursor:pointer;}
.hd h2 a:hover,.hd h2 a:active{color:#333; text-decoration:underline;}
.hd .hdlink{float:right; padding:7px 6px 0 0; color:#fffae1; line-height:14px;}
.hd .hdlink a,.hd .hdlink a:visited{color:#fffae1; text-decoration:none;}
.hd .hdlink a:hover,.hd .hdlink a:active{color:#ffd77b; text-decoration:underline;}
.hd ul{height:27px; overflow:hidden; float:left;}
.hd li{height:27px; overflow:hidden; _display:inline-block; background:url(http://i0.sinaimg.cn/dy/deco/2012/0630/sinahome_0803_ws_002_new.gif) no-repeat right -850px #797979; float:left; padding:0 3px 0 0; cursor:pointer;}
.hd li .capname{padding:8px 13px 0 16px; height:19px; line-height:14px; font-size:14px; color:#333; display:block; float:left; background:url(http://i0.sinaimg.cn/dy/deco/2012/0630/sinahome_0803_ws_002_new.gif) no-repeat left -800px; font-weight:bold;}
.hd li a,.hd li a:visited{color:#fff; text-decoration:none; cursor:pointer;}
.hd li a:hover,.hd li a:active{color:#fff; text-decoration:underline;}
.hd li .videoNewsLeft{padding:0 0 0 0; background:none;}
.hd li.on{background:url(http://i0.sinaimg.cn/dy/deco/2012/0630/sinahome_0803_ws_002_new.gif) no-repeat right -550px #f6f6f6;}
.hd li.on .capname{background:url(http://i0.sinaimg.cn/dy/deco/2012/0630/sinahome_0803_ws_002_new.gif) no-repeat left -600px;}
.hd li.on .capname_nobg{background:none !important}
.hd li.on .capname_line { background:#707070;float:left;margin:7px 3px; width:1px; height:14px;overflow: hidden;}
.hd li.on a,.hd li.on a:visited{color:#333; text-decoration:none; cursor:pointer;}
.hd li.on a:hover,.hd li.on a:active{color:#333; text-decoration:underline;}
.hd li.on .videoNewsLeft{background:url(http://i2.sinaimg.cn/dy/deco/2012/0926/index/unfcn_mj_01.gif) no-repeat -19982px 50%;padding-left:20px;}
.hd #videomenu li.on .capname{padding-left:4px; padding-right:4px;}
.hd_2{height:24px; overflow:hidden; margin:0 1px; background:url(http://i3.sinaimg.cn/dy/deco/2012/0914/sinahome_0803_ws_001.gif) repeat-x 0 -601px #fff4cb;}
.md_2_menu{width:311px; height:22px; overflow:hidden; padding:1px 1px 0 0; float:right;}
.md_2_menu li{width:60px; height:22px; overflow:hidden; background:url(http://i0.sinaimg.cn/dy/deco/2012/0630/sinahome_0803_ws_002_new.gif) no-repeat 0 -950px; float:left; padding:0 2px 0 0;}
.md_2_menu li a,.md_2_menu li a:visited,.md_2_menu li a:hover,.md_2_menu li a:active{display:block; padding:5px 0 0 0; height:17px; line-height:14px; text-align:center; text-decoration:none; color:#000;}
.md_2_menu li.on{background:url(http://i0.sinaimg.cn/dy/deco/2012/0630/sinahome_0803_ws_002_new.gif) no-repeat 0 -972px;}
.md_2_menu li.on a,.md_2_menu li.on a:visited,.md_2_menu li.on a:hover,.md_2_menu li.on a:active{color:#982e00; font-weight:bold;}
.md2_list{float:left; padding:0 10px 0 0;}
.mdbtmlinkblk1{height:28px; overflow:hidden; padding:2px 0 1px; margin:0 2px; background:url(http://i3.sinaimg.cn/home/deco/2008/0329/sinahome_0803_ws_003_new.gif) no-repeat -802px 0 #fff7e3; text-align:center; line-height:30px; color:#ea3d00;}
.mdbtmlinkblk1 a,.mdbtmlinkblk1 a:visited{color:#ea3d00; text-decoration:none;}
.mdbtmlinkblk1 a:hover,.mdbtmlinkblk1 a:active{color:#c00; text-decoration:underline;}
.h2_lf_s1{height:24px; overflow:hidden; background:url(http://i0.sinaimg.cn/dy/deco/2012/0630/sinahome_0803_ws_002_new.gif) no-repeat 0 -750px #ffe4a6;}
.h2_lf_s1 .capname{line-height:14px; font-size:12px; color:#333; padding:6px 0 0 0; text-align:center; display:block;}
.h2_lf_s1 a,.h2_lf_s1 a:visited{color:#333; text-decoration:none;}
.h2_lf_s1 a:hover,.h2_lf_s1 a:active{color:#333; text-decoration:underline;}
.h2_lf_s2{height:24px; overflow:hidden; clear:both; background:url(http://i0.sinaimg.cn/dy/deco/2012/0630/sinahome_0803_ws_002_new.gif) no-repeat 0 -1150px #c71b1b; color:#fff; font-size:12px;}
.h2_lf_s2 a,.h2_lf_s2 a:visited{color:#fff; text-decoration:none;}
.h2_lf_s2 a:hover,.h2_lf_s2 a:active{color:#fff; text-decoration:underline;}
.h2_lf_s2 .capname{float:left; padding:7px 0 0 22px; line-height:14px;}
.lBlk1{padding:6px 5px 0 2px;}
.lBlk1 ul li{line-height:21px; color:#000; background-position:5px 1px;}
/* 图文 */
.imgtxt01{padding:8px 0 0 10px; height:97px; overflow:hidden; _display:inline-block;}
.it01img{width:111px; float:left; overflow:hidden;background:url(http://i1.sinaimg.cn/dy/deco/2009/0910/sina_m_01.gif) no-repeat 0 0;padding:4px 0 0;height:93px;text-align:center;}
.it01img a,.it01img a:visited{color:#009; text-decoration:none; display:block;}
.it01img a:hover,.it01img a:active{color:#c00; text-decoration:underline;}
.it01img a img{border:1px #ccc solid;}
.it01img a:hover img,.it01img a:active img{border:1px #ffc133 solid;}
.it01ib{display:block;}
.it01tb{display:block; height:18px; padding:4px 0 0 0; line-height:14px; overflow:hidden; cursor:pointer; text-align:center;}
.it01txt{float:left; width:263px;padding-top:2px;}
.it01txt ul li{font-size:14px; line-height:24px; padding-left:14px;}
.imgtxt02{padding:10px 0 0 14px; height:116px; overflow:hidden; _display:inline-block;}
.it02img{width:105px; float:left; overflow:hidden;}
.it02img a,.it02img a:visited{color:#009; text-decoration:none; display:block;}
.it02img a:hover,.it02img a:active{color:#c00; text-decoration:underline;}
.it02img a img{padding:2px 2px 15px; background:url(http://i0.sinaimg.cn/dy/deco/2012/0630/sinahome_0803_ws_002_new.gif) no-repeat 0 -650px; display:block;}
.it02img a:hover img,.it02img a:active img{background:url(http://i0.sinaimg.cn/dy/deco/2012/0630/sinahome_0803_ws_002_new.gif) no-repeat 0 -1350px; display:block;}
.it02ib{display:block; padding-bottom:3px;}
.it02tb{display:block; height:18px; padding:4px 0 0 0; line-height:14px; overflow:hidden; background:url(http://i2.sinaimg.cn/dy/deco/2009/0910/sina_m_02.gif) no-repeat 0 0; cursor:pointer; text-align:center;}
.it02txt{margin-top:-2px; float:left; padding-left:2px; width:263px;}
.it02txt ul li{font-size:14px; line-height:24px; padding-left:14px;}
.imgtxt03{padding:6px 0 0 9px; overflow:hidden; clear:both;}
.it03img{padding:8px 0 10px 3px;}
.it03img img{border:1px #000 solid;}
.it03txt{_display:inline-block; overflow:hidden;}
.it03txt li{float:left; padding:0 5px 0 0; line-height:14px; height:21px;}
/* 列表 */
.mdlist{padding:8px 0 0 9px;}
.mdlist li{font-size:14px; line-height:23px;}
/* 博客 */
#blog{height:308px;}
/* 播客 */
#vlog{height:575px;}
#vlog .mdlist{padding-bottom:8px;padding-top:0;}
#vlog .mdlist li{line-height:23px;}
#vlog .it02txt{padding-top:3px;}
#vlog .it02txt li{line-height:23px;}
#vlog .line-01{margin:8px 10px;}
/* 新闻 */
#news{height:575px;}
#news li{line-height:23px;}
#news #newsListTop{padding-top:8px;}
/*#news #newsListTop li{line-height:24px;}*/
#news #newsListBtm{}
#news #newsListBtm li{line-height:23px;}
/* 视频 */
#video{height:241px;}
#video .md_con{height:241px;}
/* 关注 */
#guanzhu{height:270px;}
/* 体育 */
#sports{height:270px;}
#sportsmenu_2{font-family:Arial;}
#sportsmenu_2 .capname{padding-top:7px;}
#sports .md_con{height:241px;}
/* 娱乐 */
#ent{height:266px;}
#ent .md_con{height:238px;}
/* 财经 */
#finance{height:308px; overflow:visible;}
#finance .md_con{height:267px;}
#finance .hd{overflow: visible}
.financesearch{float:right; width:190px;}
.financesearch select{width:50px; margin:0; padding:0; font-size:12px; margin:2px 0 0 0;}
.financesearch .suggest_input_0{width:83px; border:1px #929292 solid; font-size:12px; margin:3px 0 0 0;}
/* webkit ipad */
@media screen and (-webkit-min-device-pixel-ratio:0){
.financesearch .suggest_input_0{width:70px;}
.line-01{ margin-bottom:5px 10px 0px;}
}
.financesearch .suggest_button_search_0{margin:2px 0 0 0; padding:0;}
/* 社会 */
#society{height:325px;}
#society .md_con{height:297px;}
.societybtmlist{background:url(http://i3.sinaimg.cn/home/deco/2008/0329/sinahome_0803_ws_003_new.gif) no-repeat -802px 0; margin:0 1px; padding:5px 0 0 8px;}
.societybtmlist li{line-height:24px; clear:both; font-size:14px;}
/* 军事 */
#mil{height:403px;}
#mil .md_con{height:263px;}
.milbtmlist{background:url(http://i3.sinaimg.cn/home/deco/2008/0329/sinahome_0803_ws_003_new.gif) no-repeat -802px 0; margin:0 1px; padding:5px 0 0 8px;}
.milbtmlist li{line-height:24px; clear:both; font-size:14px;}
/* 科技 */
#tech{overflow:visible;height:403px;}
#tech .md_con{height:263px;}
#book_tech{height:326px;}
#book_tech .md_con{height:267px;}
/* 房产 */
#house_auto{height:310px;}
/* 手机... */
#mobile_down{height:310px;}
/* 读书 */
#book{height:325px;}
/* 图片 */
#pic{height:356px;}
/* 女性 */
#eladies{height:356px;}
/* 育儿 */
#baby{height:284px;}
/* 游戏 */
#game{height:284px;}
/* 旅游 */
#tavl{height:290px; margin-bottom:10px;}
/* 教育 */
#edu{height:290px; margin-bottom:10px;}
/* 论坛 */
#bbs{height:206px;}
/* 圈子 */
#quanzi{height:206px;}
#jiankang,#huanbao,#shoucang,#shangpin{height: 244px;margin-bottom: 10px;}
/* 搜索 */
#Search{width:780px; height:70px; overflow:hidden; float:left;display:inline; margin:0 0 8px 10px; background:url(http://i0.sinaimg.cn/dy/deco/2011/1231/shome_m_search.png) no-repeat 0 0 #f0f0f0; position:relative;zoom:1;}
.SearchT{height:31px; overflow:hidden; clear:both; _display:inline-block; position:relative;}
.SearchT h2{display: inline;float: left;width:32px; height:22px;margin: 5px 10px 0;}
.SearchT h2 a{display:block; width:32px; height:22px;text-indent: -9999em;outline:none;background:url(http://i0.sinaimg.cn/dy/deco/2011/1231/shome_m_search.png) no-repeat 0 -100px;}
.searchbox_menu{float: left;width: 702px;overflow: hidden;margin-right: 2px;}
.searchbox_menu ul{_display:inline-block; overflow:hidden;}
.searchbox_menu li{float:left;margin-right:4px;width:47px; height:30px; text-align:center; cursor:pointer;}
.searchbox_menu li a{display:block; height:22px; text-decoration:none; overflow:hidden; padding:7px 0 0 0; line-height:14px;}
.searchbox_menu li.active{background:url(http://i0.sinaimg.cn/dy/deco/2011/1231/shome_m_search.png) no-repeat 0 -150px; color:#fff; font-weight:bold;}
.searchbox_menu li.active a{color:#fff;outline: none;}
.searchbox_menu li.bigTaA{background:url(http://i0.sinaimg.cn/dy/deco/2011/1231/shome_m_search.png) no-repeat -100px -150px;color:#982e00;font-weight:bold;width:57px;}
.searchbox_menu li.bigTaA a{color:#fff;outline: none;}
.searchbox_menu li.normal{background:url(http://i0.sinaimg.cn/dy/deco/2011/1231/shome_m_search.png) no-repeat 0 -197px; color:#000;}
.searchbox_menu li.normal a{color:#000;}
.searchbox_menu li.bigTaN{background:url(http://i0.sinaimg.cn/dy/deco/2011/1231/shome_m_search.png) no-repeat 0 -267px; color:#000;width:57px;}
.searchbox_menu li.bigTaN a{color:#000;}
.SearchM{float: left;width:15px; height:15px;margin-top: 5px;}
.SearchM a{display:block; width:15px; height:15px; overflow:hidden; background:url(http://i0.sinaimg.cn/dy/deco/2011/1231/shome_m_search.png) no-repeat 0 -250px; line-height:500px;}
.searchbox_con{overflow:hidden; _display:inline-block; position:absolute; top:29px; left:0; width:780px;}
.searchBtn{width:60px; overflow:hidden; padding:4px 0 0 0; *padding:5px 0 0 0; float:left;}
.searchBtn input{width:54px; height:28px; *line-height:30px; overflow:hidden; background:url(http://i0.sinaimg.cn/dy/deco/2011/1231/shome_m_search.png) no-repeat -150px -100px #ffb725; color:#900; font-size:14px; text-align:center; padding:0; margin:0; border:none; cursor:pointer;}
.hotWordsBlk{float:left; _display:inline-block; overflow:hidden; position:absolute; padding:16px 0 0 14px; line-height:14px; width:380px; top:0; left:382px;}
.hotWordsBlk h4{position:absolute; top:2px; left:14px; width:24px; height:13px; overflow:hidden;}
.hotWordsBlk h4 a{display:block; width:24px; height:13px; overflow:hidden; line-height:500px; background:url(http://i0.sinaimg.cn/dy/deco/2011/1231/shome_m_search.png) no-repeat -756px -100px;}
.hotWordsBlk2{left:382px;}
.search_kw,.searchGoogleIpt,.searchIAskIpt{float:left; width:322px;padding:4px 0 0 9px;}
.search_kw input,.searchGoogleIpt input,.searchIAskIpt input{width:305px; height:22px; line-height:22px;padding: 2px 6px;border:1px #F7970F solid;}
.search_sb{ float:left;width:64px; padding:4px 0 0 0;_padding-top: 5px;}
.search_sb input{width:54px; height:28px; *line-height:30px;overflow: hidden;background:url(http://i0.sinaimg.cn/dy/deco/2011/1231/shome_m_search.png) no-repeat -150px -100px #ffb725; text-align:center;border:none; cursor:pointer;}
.search_kw2{width: 258px;}
.search_kw2 input{width: 240px;}
.searchIAskMapIpt1,.searchIAskMapIpt2{width:161px; overflow:hidden; float:left; padding:4px 0 0 9px;}
.searchIAskMapIpt2{padding:4px 0 0 0;}
.searchIAskMapIpt1 input,.searchIAskMapIpt2 input{width:144px;height:22px; line-height:22px;padding: 2px 6px;border:1px #F7970F solid;}
.searchIAskIpt3{width:258px; overflow:hidden; float:left; padding:4px 0 0 9px;}
.searchIAskIpt3 input{ width: 240px;height:22px; line-height:22px;padding: 2px 6px;border:1px #F7970F solid;}
.searchIAskBtn1,.searchIAskBtn2{float:left;width:64px; padding:4px 0 0 0;_padding-top: 5px;}
.searchIAskBtn1 input,.searchIAskBtn2 input{width:54px; height:28px; *line-height:30px;overflow: hidden;background:url(http://i0.sinaimg.cn/dy/deco/2011/1231/shome_m_search.png) no-repeat -150px -100px #ffb725; text-align:center;border:none; cursor:pointer;}
/* 城市联盟 */
.cityUnion{width:948px; height:76px; overflow:hidden; border:1px #f2dca8 solid; background:#fff8de; margin-bottom:15px;margin-top:6px;}
.cityUnionName{float:left; width:76px; padding:8px 0 0 30px; text-align:center; line-height:20px;}
.cityUnionList{float:left; padding:8px 0 0 0; line-height:20px; text-align:left;}
.cityUnionList a{padding-left:1px;}
/* footer begin */
#footer{width:950px; overflow:hidden; text-align:center; color:#333;}
#footer p{line-height:20px;}
#footer .eng{font-family:Arial, Helvetica, sans-serif;}
#footer p a:link,#footer p a:visited{color:#333; text-decoration:none;}
#footer p a:hover,#footer p a:active{color:#c30; text-decoration:underline;}
#footer table{margin:13px 0;}
#footer td img{border:1px #d2d2d2 solid;}
#footer div a:link,#footer div a:visited{color:#009; text-decoration:none;}
#footer div a:hover,#footer div a:active{color:#c00; text-decoration:underline;}
/* footer end */
/* 广告 */
.topads{height:192px; overflow:hidden; background:#fff; position:relative; border:1px #cbcbcb solid; margin-bottom:8px;}
.topads a,.topads a:visited{color:#009;}
.topads a:hover,.topads a:active{color:#c00;}
.topadsbanner{width:640px; height:90px; overflow:hidden; position:absolute; top:51px; left:160px; background:#ccc;}
.topadsblk01{width:160px; overflow:hidden; _display:inline-block; position:absolute; left:0; top:0;}
#topadsblk01menu{float:left; width:23px; overflow:hidden; padding-top:1px; height:190px; border-bottom:1px #fff solid;}
#topadsblk01menu li{width:19px; height:37px; overflow:hidden; border-bottom:1px #fff solid; line-height:14px; padding:10px 0 0 4px; cursor:pointer; background:url(http://i0.sinaimg.cn/dy/deco/2012/0630/sinahome_0803_ws_002_new.gif) no-repeat 0 -400px #e7edf9; color:#484d51;}
#topadsblk01menu li.on{background:url(http://i0.sinaimg.cn/dy/deco/2012/0630/sinahome_0803_ws_002_new.gif) no-repeat 0 -451px #c5d4f1;}
.topadsblk01_con{width:125px; overflow:hidden; float:right; padding:9px 0 0 0;}
.topadsblk01_con li{height:20px; clear:both; line-height:14px;}
.topadsblk02,.topadsblk03{width:650px; height:43px; overflow:hidden; position:absolute; top:0; left:160px; padding:8px 0 0 0;}
.topadsblk02{padding-top:9px;}
.topadsblk02 ul,.topadsblk03 ul{_display:inline-block; overflow:hidden;}
.topadsblk02 li,.topadsblk03 li{line-height:14px; height:20px; float:left; width:20%; overflow:hidden;}
.topadsblk03{top:141px;}
.topadsblk04{width:128px; overflow:hidden; position:absolute; top:0; right:0; padding:9px 0 0 0;}
.topadsblk04 li{line-height:14px; clear:both; height:20px;}
.txtadsblk01{overflow:hidden; _display:inline-block;}
#txtblk01menu{height:24px; overflow:hidden; _display:inline-block; overflow:hidden;}
#txtblk01menu li{width:40px; height:24px; overflow:hidden; float:left; background:url(http://i0.sinaimg.cn/dy/deco/2012/0630/sinahome_0803_ws_002_new.gif) no-repeat 0 -500px #dfdfdf; cursor:pointer;}
#txtblk01menu li.on{font-weight:bold; background:url(http://i0.sinaimg.cn/dy/deco/2012/0630/sinahome_0803_ws_002_new.gif) no-repeat -40px -500px #eee;}
#txtblk01menu li a,#txtblk01menu li a:visited{color:#333; text-decoration:none; display:block; height:18px; overflow:hidden; text-align:center; line-height:14px; padding:6px 0 0 0;}
#txtblk01menu li a:hover,#txtblk01menu li a:active{color:#333; text-decoration:none;}
.txtblk01_con{width:overflow:hidden;padding:10px 0 5px 10px; margin:0; width:150px; background:url(http://i3.sinaimg.cn/home/deco/2008/0329/sinahome_0803_ws_003_new.gif) no-repeat -190px bottom;}
.txtblk01_con li{text-align:left; height:21px; line-height:14px; clear:both;}
.txtadsblk02{padding:5px 0 5px 9px; color:#009;}
.txtadsblk02 li{height:21px; line-height:14px; text-align:left;}
.PartLBtnAds,.PartLBtnAds3,.PartLBtnAds4{width:140px; overflow:hidden; margin:0 auto; padding:0 0 10px 0;}
.adsblk{background:url(http://i3.sinaimg.cn/home/deco/2008/0329/sinahome_0803_ws_003_new.gif) repeat-y -400px 0 #fff; height:279px; border-bottom:1px #d1d1d1 solid;}
.AD355125{width:370px; height:125px; padding:12px 0 2px 7px;}
.adsblk{height:252px; overflow:hidden;}
.adsblk ul{background:url(http://i3.sinaimg.cn/home/deco/2008/0329/sinahome_0803_ws_003_new.gif) no-repeat -800px 0; padding:9px 0 8px 9px; height:147px;}
.adsblk li{line-height:24px; font-size:14px;}
.adsblk_37075{padding-bottom:6px; width:370px; overflow:hidden; margin:0 auto;}
.txtadsblk03{padding:8px 0 0 10px;}
.txtadsblk03 li{line-height:14px; height:21px; overflow:hidden; clear:both;}
.ads120x180{width:140px; overflow:hidden; margin:0 auto;}
.ads_780x97_01{height:90px; width:750px; overflow:hidden; padding:10px 0 0 10px; margin:0 auto; clear:both;}
.ads_780x97_2{height:90px; width:750px; overflow:hidden; padding:0 0 10px 10px; margin:0 auto; clear:both;}
.txtadsblk04{padding:0 0 0 4px;}
.txtadsblk04 li{line-height:21px; clear:both;}
.techbtmads{background:url(http://i3.sinaimg.cn/home/deco/2008/0329/sinahome_0803_ws_003_new.gif) no-repeat -802px 0; margin:0 1px; padding:10px 0 0 0;text-align:left;}
.ads_120x120_1{width:140px; overflow:hidden; margin:0 auto;}
/* 我的2008 */
.my2008{padding:2px 0 0 0;}
.my2008 h3{padding:0 0 0 4px;}
.my2008 ul{padding-top:1px;}
/* 缤纷下载 */
#bfxz{float: left;height: 143px;margin-bottom: 10px;position: relative;width: 385px;margin-top:10px;}
#bfxz h2{width:66px; height:20px; overflow:hidden; position:absolute; top:1px; left:4px; background:url(http://i0.sinaimg.cn/dy/deco/2012/0630/sinahome_0803_ws_002_new.gif) no-repeat 0 -900px; line-height:500px;}
#bfxz h2 a{display:block; width:58px; height:20px; overflow:hidden;}
/* 乐库 */
.yuekuTop {background: url("http://i0.sinaimg.cn/dy/deco/2012/0630/sinahome_0803_ws_002_new.gif") no-repeat scroll 0 -1468px transparent;height: 10px;position: absolute;width: 25px;top:-10px;z-index:9999;}
#yueku{float: left;height: 143px;margin-bottom: 10px;position: relative;width: 385px;margin-top:10px;}
#yueku h2{width:65px; height:22px; overflow:hidden; background:url(http://i0.sinaimg.cn/dy/deco/2012/0630/sinahome_0803_ws_002_new.gif) no-repeat 0 -1478px; line-height:500px; float:left;}
#yueku h2 a{display:block; width:65px; height:22px; overflow:hidden;}
#PartC{background:url(http://i0.sinaimg.cn/dy/deco/2012/0630/sinahome_0803_ws_002_new.gif) no-repeat 567px -1467px;}
ul.yueku_list_1 li{padding:0 0 0 26px; background:url(http://i0.sinaimg.cn/dy/deco/2012/0630/sinahome_0803_ws_002_new.gif) no-repeat -180px -946px;}
.yueku_search{position:absolute; bottom:13px; right:0; width:247px; height:22px; overflow:hidden;}
.yueku_search_input{width:103px; float:left;}
.yueku_search_input input{width:95px; height:18px; line-height:18px; font-size:12px; border:1px #d6d6d6 solid; padding:0; margin:0; text-indent:3px; color:#616362;}
.yueku_search_select{width:54px; height:18px; overflow:hidden; float:left; border:1px #d6d6d6 solid; *margin-top:1px;}
.yueku_search_select_blk{border:1px #fff solid; display:block; overflow:hidden; height:16px;}
.yueku_search_select_blk select{width:56px; margin:-3px 0 0 -2px; color:#616362; font-size:12px; height:20px;}
.yueku_search_btn{height:18px; overflow:hidden; float:left; padding:1px 0 0 5px; *padding-top:2px;}
.yueku_search_btn input{border:none; padding:0; margin:0; background:url(http://i0.sinaimg.cn/dy/deco/2012/0630/sinahome_0803_ws_002_new.gif) no-repeat 0 -1000px #e1dbd0; width:48px; height:18px; font-size:12px; *padding-top:2px; cursor:pointer;}
#yueku .it01txt h3{float:left; padding:0 0 0 5px; color:#f00; font-size:12px; font-weight:normal; height:18px; line-height:20px;}
#yueku .it01txt span.myalbumbtn{float:left; padding:0 0 0 10px;}
#yueku .it01txt span.myalbumbtn a{display:block; text-decoration:none; color:#000; background:url(http://i0.sinaimg.cn/dy/deco/2012/0630/sinahome_0803_ws_002_new.gif) no-repeat -50px -1000px #e1dbd0; text-align:center; width:91px; height:18px; overflow:hidden; line-height:20px;}
ul.yueku_list_2{clear:both; width:260px; padding:7px 0 0 0;}
ul.yueku_list_2 li{background:url(http://i0.sinaimg.cn/dy/deco/2012/0630/sinahome_0803_ws_002_new.gif) no-repeat -181px -983px; padding-left:24px; overflow:hidden;}
ul.yueku_list_2 li .yueku_list_2_t{float:left; width:100px;}
ul.yueku_list_2 li .yueku_list_2_o{float:left; color:#ccc;}
/* 乐库改 */
.tb_diantai{width: 240px;margin: 0 auto;line-height: 20px;font-size: 14px;text-align: center;}
#yueku .md_2_menu li{background: url(http://i3.sinaimg.cn/dy/deco/2010/1104/yueku_yc.png) 0 0 no-repeat;width: 75px}
#yueku .md_2_menu li.on{background-position: 0 -22px;}
.btn_tingting{display: inline;float: right;margin:4px 20px 0 0;width: 93px;height: 23px;text-indent: -9999em;background: url(http://i3.sinaimg.cn/dy/deco/2010/1104/yueku_yc.png) 0 -60px no-repeat;}
/* 游戏 xuehua 0903 */
#youxi{float: left;height: 143px;margin-bottom: 10px;position: relative;width: 385px;margin-top:10px;}
#youxi h2{width:65px; height:22px; overflow:hidden; background:url(http://i2.sinaimg.cn/dy/deco/2012/0903/sinahome_0803_ws_002_new.png) no-repeat 0 -1550px; line-height:500px; float:left;}
#youxi h2 a{display:block; width:65px; height:22px; overflow:hidden;}
ul.youxi_list_1 li{padding:0 0 0 20px; background:url(http://i0.sinaimg.cn/dy/deco/2007/1211/yocc/unfcn_mj_01.gif) no-repeat 8px 50%}
#youxi .it01txt h3{float:left; padding:0 0 0 5px; color:#f00; font-size:12px; font-weight:normal; height:18px; line-height:20px;}
#youxi .it01txt span.myalbumbtn{float:left; padding:0 0 0 10px;}
#youxi .it01txt span.myalbumbtn a{display:block; text-decoration:none; color:#000; background:url(http://i0.sinaimg.cn/dy/deco/2012/0630/sinahome_0803_ws_002_new.gif) no-repeat -50px -1000px #e1dbd0; text-align:center; width:91px; height:18px; overflow:hidden; line-height:20px;}
#youxi .md_2_menu li{background: url(http://i3.sinaimg.cn/dy/deco/2010/1104/yueku_yc.png) 0 0 no-repeat;width: 75px}
#youxi .md_2_menu li.on{background-position: 0 -22px;}
#youxi .list_009 li{ background-position:8px 50%; padding-left:20px;}
/* 新浪商城 */
.sinamall{padding:3px 0 0 0;}
.sinamall h3{float:left; padding:0 10px 0 14px; font-size:12px; color:#900;}
.sinamall h3 a,.sinamall h3 a:visited{color:#900; text-decoration:none;}
.sinamall h3 a:hover,.sinamall h3 a:active{color:#900; text-decoration:underline;}
.sinamall .caplink{float:left; line-height:14px; padding:0 0 0 1em; background:url(http://i2.sinaimg.cn/dy/deco/2012/0926/index/unfcn_mj_01.gif) no-repeat 5px 50%;}
/* 竞价 */
#jj{height:248px; overflow:hidden;}
#jj h2 .caplink{float:right; padding:9px 10px 0 0; font-size:12px; line-height:14px; font-weight:normal;}
#sinanet_title h2 .caplink{float:right; padding:9px 10px 0 0; font-size:12px; line-height:14px; font-weight:normal;}
.CbsSrh{margin:0 1px; _display:inline-block; overflow:hidden; height:41px;}
.CbsSrh_ipt{width:185px; float:left; padding:10px 0 0 12px; overflow:hidden;}
.CbsSrh_ipt input{width:177px; height:18px; border:1px #d6d6d6 solid; padding:0; margin:0; font-size:12px; color:#848484; line-height:18px;}
.CbsSrh_select{float:left; width:49px; height:18px; overflow:hidden; border:1px #d6d6d6 solid; margin:10px 0 0 0; *margin:11px 0 0 0;}
.CbsSrh_select_b{overflow:hidden; border:1px #fff solid; width:47px; height:16px;}
.CbsSrh_select select{margin:-3px 0 0 -2px; width:53px; *width:52px; font-size:12px; color:#848484; height:21px;}
.CbsSrh_btn{float:left; padding:11px 0 0 5px; overflow:hidden; _display:inline-block;}
.CbsSrh_btn input{width:44px; height:17px; border:none; padding:0; margin:0 5px 0 0; float:left; cursor:pointer;}
.CbsSrhBtn{background:url(http://i0.sinaimg.cn/dy/deco/2012/0630/sinahome_0803_ws_002_new.gif) no-repeat 0 -1200px #333;}
#zhitongBtn{background:url(http://i0.sinaimg.cn/dy/deco/2012/0630/sinahome_0803_ws_002_new.gif) no-repeat 0 -1250px #333;}
.CbsList{_display:inline-block; overflow:hidden; padding:8px 0 0 10px; background:url(http://i3.sinaimg.cn/home/deco/2008/0329/sinahome_0803_ws_003_new.gif) no-repeat -800px 0;}
.CbsList li{font-size:14px; line-height:23px;}
.CL1{float:left; padding:0 20px 0 0;}
.CL2{float:left;}
/* 企业 */
#sinanet{height:248px; overflow:hidden;}
.sinanetList{padding:8px 0 0 9px; _display:inline-block; overflow:hidden; height:145px;}
.sinanetList li{font-size:14px; line-height:23px;}
.sinanetP{padding:11px 0 0 16px; background:url(http://i3.sinaimg.cn/home/deco/2008/0329/sinahome_0803_ws_003_new.gif) no-repeat -800px 0;}
.sinanetP li{font-size:14px; line-height:23px;}
/* Opera */
@media all and (min-width:0px){
.searchGoogleIpt input{padding:2px 0 0 6px; height:24px;}
}
/* 常用链接 begin */
a.linkRed:link,a.linkRed:visited{color:#f00!important;}/* 红色 */
a.linkRed:hover{color:#c00!important;}
a.linkBlack:link,a.linkBlack:visited{color:#000!important;}/* 黑色 */
a.linkBlack:hover{color:#f00!important;}
a.linkWhite:link,a.linkWhite:visited{color:#fff!important;}/* 白色 */
a.linkWhite:hover{color:#f00!important;}
a.linkGray:link,a.linkGray:visited{color:#5d5d5d!important;}/* 灰色 */
a.linkGray:hover{color:#f00!important;}
a.linkCyan:link,a.linkCyan:visited{color:#92e4fa!important;text-decoration:underline;}/* 青色 */
a.linkCyan:hover{color:#f00!important;}
a.videoNews{background:url(http://i2.sinaimg.cn/dy/deco/2012/0926/index/unfcn_mj_01.gif) no-repeat 100% 50%;padding-right:18px;}/* 视频图标链接 */
a.videoNewsLeft{background:url(http://i2.sinaimg.cn/dy/deco/2012/0926/index/unfcn_mj_01.gif) no-repeat -19982px 50%;padding-left:20px;}/* 视频图标链接(左图标) */
a.liveNewsLeft{background:url(http://i2.sinaimg.cn/video/deco/2010/0525/liveNewsLeft.gif) no-repeat 0px 50%; padding-left:22px;}
a.videoNewsNew{background:url(http://i1.sinaimg.cn/video/deco/2010/0527/new.png) no-repeat 0px 50%; padding-left:28px;}
/* 音频图标链接 */
a.audioNewsLeft{background:url(http://i3.sinaimg.cn/dy/deco/2009/0617/LeftAudio.gif) no-repeat ;padding-left:20px}
/* 音频图标链接(左图标) */
a.mobileNews02{background:url(http://i0.sinaimg.cn/dy/home/081223/mobilenewsicon02.gif) no-repeat 100% 50%;padding-right:13px;}/* 视频图标链接(样式2) */
a.mobileNews02Left{background:url(http://i0.sinaimg.cn/dy/home/081223/mobilenewsicon02.gif) no-repeat 0 50%;padding-left:15px;}/* 视频图标链接(样式2,左图标) */
a.logo315News{background:url(http://i3.sinaimg.cn/home/08index/090311/logo315.gif) no-repeat 100% 50%;padding-right:15px;}/* 3.15图标链接(样式2) */
a.logo315NewsLeft{background:url(http://i3.sinaimg.cn/home/08index/090311/logo315.gif) no-repeat 0 50%;padding-left:17px;}/* 3.15图标链接(样式2,左图标) */
/* 常用链接 end */
/* 共用列表 begin */
.list_009 li{padding-left:1em;background:url(http://i2.sinaimg.cn/dy/deco/2012/0926/index/unfcn_mj_01.gif) no-repeat 5px 50%;}
.list_00f li{padding-left:1em;background:url(http://i2.sinaimg.cn/dy/deco/2012/0926/index/unfcn_mj_01.gif) no-repeat -995px 50%;}
.list_000 li{padding-left:1em;background:url(http://i2.sinaimg.cn/dy/deco/2012/0926/index/unfcn_mj_01.gif) no-repeat -1995px 50%;}
.list_333 li{padding-left:1em;background:url(http://i2.sinaimg.cn/dy/deco/2012/0926/index/unfcn_mj_01.gif) no-repeat -2995px 50%;}
.list_666 li{padding-left:1em;background:url(http://i2.sinaimg.cn/dy/deco/2012/0926/index/unfcn_mj_01.gif) no-repeat -3995px 50%;}
.list_999 li{padding-left:1em;background:url(http://i2.sinaimg.cn/dy/deco/2012/0926/index/unfcn_mj_01.gif) no-repeat -4995px 50%;}
li.list_nostyle{background:none;}
li.list_nostyle_title{background:none; padding-left:0}
li.list_nostyle_title .list_link{background:url(http://i1.sinaimg.cn/dy/deco/2012/1113/title.png) no-repeat -999em 0; display:inline-block; margin:0 4px; _margin:2px 4px; width:32px; height:19px; vertical-align:-6px;*vertical-align:-2px !important;_vertical-align:middle}
li.list_nostyle_title .list_link_china{ background-position:-250px -1980px;}
li.list_nostyle_title .list_link_world{ background-position:-300px -1980px;}
li.list_nostyle_title .list_link_finance{ background-position:-350px -1980px;}
li.list_nostyle_title .list_link_tech{ background-position:-400px -1980px;}
/* 共用列表 end */
/* 080328 ws begin */
.hd h2 .capname{padding-top:6px; height:21px;}
.hd li .capname{padding-top:6px; height:21px;}
.md_3 h2 .capname a{float:left; height:15px; display:block; overflow:hidden; width:31px; line-height:500px;}
.hd .cappt{float:left; width:3px; height:3px; margin:12px 0px 0; overflow:hidden; background:url(http://i1.sinaimg.cn/dy/deco/2012/1113/title.png) no-repeat -250px -350px; line-height:500px;}
.md_3 h2 .cappt{float:left; width:3px; height:3px; margin:6px 6px 0; overflow:hidden; background-image:url(http://i1.sinaimg.cn/dy/deco/2012/1113/title.png); background-repeat:no-repeat; line-height:500px; }
.md_pink h2 .cappt{background-position:-250px 0;}
.md_purple h2 .cappt{background-position:-250px -50px;}
.md_blue h2 .cappt{background-position:-250px -100px;}
.md_orange h2 .cappt{background-position:-250px -150px;}
.md_green h2 .cappt{background-position:-250px -200px;}
.md_yellow h2 .cappt{background-position:-250px -250px;}
/* 080330 ws begin */
a.linkRed01:link,a.linkRed01:visited{color:#f00!important;}
a.linkRed01:hover{color:#c00!important;}
li.iNewsListNli{background:none;}
/* 080330 ws end */
a.videoHuoju{background:url(http://i0.sinaimg.cn/dy/deco/2008/0411/huoju.gif) no-repeat 100% bottom; padding:4px 12px 0 0;}
#blk_video_1 .imgtxt01{height:auto;}
#blk_video_1 .it01txt{margin-top:-4px;}
#sports .mdlist li{line-height:23px;}
#blk_video_2 .imgtxt01{height:auto;}
#blk_video_2 .it01txt{margin-top:-4px;}
#blk_video_3 .imgtxt01{height:auto;}
#blk_video_3 .it01txt{margin-top:-4px;}
/* 地域上海 上海 */
/* 上海 */
#wwwTLsh01 .left{height:200px;}
#ShBlk{clear:both;margin:0px auto 0;height:auto;height:213px;min-height:143px;padding-top:10px;}
#ShBlk .ShBlkAd{float:left;display:inline;margin:1px 0 0 11px;width:159px;height:142px;}
#ShBlk .ShBlkAd img{width:138px;height:141px;border:none;}
#ShBlk .ShBlkCont{float:left;display:inline;width:383px;height:210px;border:1px solid #ffb5b5;overflow:hidden;}
#ShBlk .ShBlkCont .ShTit{
clear:both;
padding:5px 0 0 14px;
height:21px;
background:url(http://i1.sinaimg.cn/dy/deco/2009/0213/yocc090213img/sh_zty_002.gif) repeat-x;
border-bottom:1px solid #ffb5b5;
}
#ShBlk .ShBlkCont .ShCon1{float:left;display:inline;margin:10px 2px 0 13px;width:105px;height:104px;overflow:hidden;text-align:center;}
#ShBlk .ShBlkCont .ShCon1 a:link img,#ShBlk .ShBlkCont .ShCon1 a:visited img{width:103px;height:68px;border:1px solid #ccc;}
#ShBlk .ShBlkCont .ShCon1 a:hover img,#ShBlk .ShBlkCont .ShCon1 a:active img{width:103px;height:68px;border:1px solid #ffc133;}
#ShBlk .ShBlkCont .ShCon1 span{clear:both;width:105px;height:22px;display:block;line-height:22px;background:#c00;text-align:center;margin:3px auto 0;}
#ShBlk .ShBlkCont .ShCon1 span a:link,#ShBlk .ShBlkCont .ShCon1 span a:visited{color:#fff;text-decoration:none;}
#ShBlk .ShBlkCont .ShCon1 span a:hover,#ShBlk .ShBlkCont .ShCon1 span a:active{color:#ffa;text-decoration:underline;}
#ShBlk .ShBlkCont .ShCon2{float:left;display:inline;margin-top:10px;width:263px;height:104px;line-height:24px;color:#009;font-size:14px;}
#ShBlk .ShBlkCont .ShCon2 a:link{color:#009;text-decoration:none;}
#ShBlk .ShBlkCont .ShCon2 a:visited{color:#800080;text-decoration:none;}
#ShBlk .ShBlkCont .ShCon2 a:hover,#ShBlk .ShBlkCont .ShCon2 a:active{color:#f00;text-decoration:underline;}
#ShBlk .ShBlkCont .ShCon2 span{color:#000;}
#ShBlk .ShBlkCont .ShCon2 span.ShRed{color:#f00;}
#ShBlk .ShBlkCont .ShCon2 .ShRed a:link,#ShBlk .ShBlkCont .ShCon2 .ShRed a:visited{color:#f00;text-decoration:underline;}
#ShBlk .ShBlkCont .ShCon2 .ShRed a:hover,#ShBlk .ShBlkCont .ShCon2 .ShRed a:active{color:#c00;text-decoration:underline;}
#ShBlk .ShSpac{margin-right:10px;}
#ShBlk .jzBlk02{height:16px;}
#ShBlk .txtadsblk03{padding:10px 0 0 10px;line-height: 20px;}
#ShBlk .ads_140x120_1{width:140px; overflow:hidden; margin:0 auto;}
#ShBlk .split{clear:both;line-height:0;font-size:0;overflow:hidden;height:0;display:block;visibility:hidden;}
/* */
#capname_shnews a{background:url(http://i2.sinaimg.cn/dy/deco/2009/0213/yocc090213img/shnews_out.gif) no-repeat; overflow:hidden; display:block; line-height:500px; width:59px; height:15px;}
ul#newsmenu li.on #capname_shnews a{background:url(http://i1.sinaimg.cn/dy/deco/2012/1113/title.png) 0 -1600px no-repeat;}
/* ul#newsmenu li.on #capname_shnews a:hover{background:url(http://i1.sinaimg.cn/dy/deco/2012/1113/title.png) 0 -1650px no-repeat;} */
#newsmenu_1{width:111px;text-align:center;}
#newsmenu_1 #capname_news{padding:6px 5px 0 17px; float:left;}
#newsmenu_1 #capname_finance_index{padding:6px 0 0 5px; float:left;}
/* */
#capname_shanghai1{background:url(http://i3.sinaimg.cn/dy/deco/2009/0213/yocc090213img/shanghai1.gif)}
#capname_shanghai2{background:url(http://i0.sinaimg.cn/dy/deco/2009/0213/yocc090213img/shanghai2.gif)}
#capname_shanghai3{background:url(http://i1.sinaimg.cn/dy/deco/2009/0213/yocc090213img/shanghai3.gif)}
#capname_shanghai4{background:url(http://i2.sinaimg.cn/dy/deco/2009/0213/yocc090213img/shanghai4.gif)}
#capname_shanghai5{background:url(http://i3.sinaimg.cn/dy/deco/2009/0213/yocc090213img/shanghai5.gif)}
/* 覆盖上面的css */
#capname_UC{background:url(http://i2.sinaimg.cn/dy/deco/2009/0430/sinahome_1113_ws_006_tex.gif) no-repeat -400px -400px;width:21px;}
/* 见证中国力量上海共用 */
.jzBlk02{float:left;display:inline;height:15px;overflow:hidden;margin:5px 9px 0 0;font-size:14px;color:#cb0101;font-weight:bold;}
a.jzBlk02:link,a.jzBlk02:visited{text-decoration:none;color:#cb0101;}
a.jzBlk02:hover,a.jzBlk02:active{text-decoration:none;color:#f00;}
.txtadsblk02{padding:3px 0 3px 9px;*padding:3px 0 3px 9px;_padding:3px 0 3px 9px;color:#009;}
.txtadsblk02 li{height:20px;line-height:20px;overflow:hidden;}
.txtadsblk02 li.tit{text-align:center;}
.txtadsblk02 li.tit a{color:#433417;font-weight:bold;text-decoration:none;}
.txtadsblk02 a:link,.txtadsblk02 a:visited{color:#009;}
.txtadsblk02 a:hover,.txtadsblk02 a:active{color:#c00;}
.PartLBtnAds{padding:0 0 3px 0;*padding:0 0 3px 0;_padding:0 0 3px 0;}
/* 图片字样式 */
/*博客*/
#capname_blog a{background:url(http://i1.sinaimg.cn/dy/deco/2012/1113/title.png) 0 0px no-repeat;display: block; width:30px;height:20px;float:left;display:inline;line-height:500px;}
#capname_blog a:hover{background-position:0 -1000px;}
/*新闻*/
#capname_news a{background:url(http://i1.sinaimg.cn/dy/deco/2012/1113/title.png) 0 -100px no-repeat;overflow:hidden; display:block; line-height:500px; width:30px; height:15px;}
#capname_news a:hover{background-position:0 -1050px;}
li.on #capname_news a:hover{background-position:0 -1050px;}
li.on #capname_news a{background-position:0 -50px;}
/*基金*/
li.on #capname_fund a{background-position:-100px -1050px;}
#capname_fund a{background:url(http://i1.sinaimg.cn/dy/deco/2012/1113/title.png) -100px -50px no-repeat;display: block;overflow:hidden;line-height:500px; width:30px;height:20px;float:left;display:inline;}
li.on #capname_fund a:hover{background-position:-100px -1000px;}
/*社会*/
li.on #capname_society a{background-position:0 -250px;}
#capname_society a{background:url(http://i1.sinaimg.cn/dy/deco/2012/1113/title.png) 0 -300px no-repeat;display: block; width:30px;height:16px;overflow:hidden;line-height:200px;margin:0;float:left;display:inline;}
li.on #capname_society a:hover{background-position:0 -350px;}
/*大片*/
li #capname_dapian{padding-left:8px; padding-right:5px;}
li.on #capname_dapian a{background-position:-100px -1150px;width:52px;}
#capname_dapian a{background:url(http://i1.sinaimg.cn/dy/deco/2012/1113/title.png) 0 -200px no-repeat;display: block; width:52px;height:20px;overflow:hidden;line-height:200px;float:left;display:inline;}
li.on #capname_dapian a:hover{background-position:0 -1150px; width:52px;}
/*乐库*/
li.on #capname_yueku a{background:url(http://i1.sinaimg.cn/dy/deco/2012/1113/title.png) 0 -850px no-repeat;display: block; width:30px;height:17px;overflow:hidden;line-height:200px;}
#capname_yueku a{background:url(http://i1.sinaimg.cn/dy/deco/2012/1113/title.png) -100px -850px no-repeat;display: block; width:30px;height:17px;overflow:hidden;line-height:200px;}
li.on #capname_yueku a:hover{background-position:-200px -850px;}
/*公开课*/
li.on #capname_gongkaike a{background-position:-600px -1050px;width:63px;margin-left:5px;}
#capname_gongkaike a{background:url(http://i1.sinaimg.cn/dy/deco/2012/1113/title.png) no-repeat -600px -1000px;display: block; width:45px;height:20px;overflow:hidden;line-height:200px;float:left;display:inline;}
li.on #capname_gongkaike a:hover{background-position:-600px -1100px; width:63px;}
/*微视频*/
#capname_weishipin a{background:url(http://i1.sinaimg.cn/dy/deco/2012/1113/title.png) -200px -950px no-repeat;display:inline-block;width:45px;height:15px;overflow:hidden;line-height:200px;float:left;display:inline;}
li.on #capname_weishipin a{background-position:-400px -1950px;width:63px;margin-left:4px;}
li.on #capname_weishipin a:hover{background-position:-300px -1950px;width:63px;}
/*军事*/
li.on #capname_mil a{background-position:0 -1250px;}
#capname_mil a{background:url(http://i1.sinaimg.cn/dy/deco/2012/1113/title.png) -100px -250px no-repeat;display: block; width:30px;height:16px;overflow:hidden;line-height:200px;margin:0;float:left;display:inline;}
li.on #capname_mil a:hover{background-position:-100px -1200px;}
/*科技*/
li.on #capname_tech a{background-position:-100px -1350px;}
#capname_tech a{background:url(http://i1.sinaimg.cn/dy/deco/2012/1113/title.png) -100px -350px no-repeat;display: block; width:30px;height:16px;overflow:hidden;line-height:200px;margin:0;float:left;display:inline;}
li.on #capname_tech a:hover{background-position:-100px -1300px;}
/*体育*/
li.on #capname_sports a{background-position:0 -1400px;}
#capname_sports a{background:url(http://i1.sinaimg.cn/dy/deco/2012/1113/title.png) 0 -400px no-repeat;display: block; width:30px;height:16px;overflow:hidden;line-height:200px;margin:0;float:left;display:inline;}
li.on #capname_sports a:hover{background-position:0 -1350px;}
/*综艺*/
li.on #capname_zongyi a{background-position:-150px -1980px;}
#capname_zongyi a{background:url(http://i1.sinaimg.cn/dy/deco/2012/1113/title.png) -200px -1980px no-repeat;display: block; width:30px;height:16px;overflow:hidden;line-height:200px;margin:0;float:left;display:inline;}
li.on #capname_zongyi a:hover{background-position:-100px -1980px;}
/*热门*/
li.on #capname_hot a{background-position:-150px -2000px;}
#capname_hot a{background:url(http://i1.sinaimg.cn/dy/deco/2012/1113/title.png) -200px -2000px no-repeat;display: block; width:30px;height:16px;overflow:hidden;line-height:200px;margin:0;float:left;display:inline;}
li.on #capname_hot a:hover{background-position:-100px -2000px;}
/*家电*/
li.on #capname_jiadian a{background-position:-100px -1450px;}
#capname_jiadian a{background:url(http://i1.sinaimg.cn/dy/deco/2012/1113/title.png) -100px -450px no-repeat;display: block; width:30px;height:16px;overflow:hidden;line-height:200px;margin:0;float:left;display:inline;}
li.on #capname_jiadian a:hover{background-position:-100px -1400px;}
/*关注*/
li.on #capname_guanzhu a{background-position:-300px -2000px;}
#capname_guanzhu a{background:url(http://i1.sinaimg.cn/dy/deco/2012/1113/title.png) -350px -2000px no-repeat;display: block; width:30px;height:17px;overflow:hidden;line-height:200px;margin:0;float:left;display:inline;margin-top:1px}
li.on #capname_guanzhu a:hover{background-position:-250px -2000px;}
/*NBA*/
li.on #capname_nba a{background-position:0 -1500px;}
#capname_nba a{background:url(http://i1.sinaimg.cn/dy/deco/2012/1113/title.png) 0 -500px no-repeat;display: block; width:30px;height:17px;overflow:hidden;line-height:200px;margin:0;float:left;display:inline;margin-top:1px}
li.on #capname_nba a:hover{background-position:0 -1450px;}
/*读书*/
li.on #capname_book a{background:url(http://i1.sinaimg.cn/dy/deco/2012/1113/title.png) -100px -500px no-repeat;display: block; width:30px;height:17px;overflow:hidden;line-height:200px;}
#capname_book a{background:url(http://i1.sinaimg.cn/dy/deco/2012/1113/title.png) -100px -400px no-repeat;display: block; width:30px;height:17px;overflow:hidden;line-height:200px;}
li.on #capname_book a:hover{background-position:-100px -1500px;}
/*原创*/
li.on #capname_yuanchuang a{background:url(http://i1.sinaimg.cn/dy/deco/2012/1113/title.png) -300px -2000px no-repeat;display: block; width:30px;height:17px;overflow:hidden;line-height:200px;}
#capname_yuanchuang a{background:url(http://i1.sinaimg.cn/dy/deco/2012/1113/title.png) -350px -2000px no-repeat;display: block; width:30px;height:17px;overflow:hidden;line-height:200px;}
li.on #capname_yuanchuang a:hover{background-position:-250px -2000px;}
/*文史*/
li.on #capname_wenshi a{background:url(http://i1.sinaimg.cn/dy/deco/2012/1113/title.png) -450px -2000px no-repeat;display: block; width:30px;height:17px;overflow:hidden;line-height:200px;}
#capname_wenshi a{background:url(http://i1.sinaimg.cn/dy/deco/2012/1113/title.png) -500px -2000px no-repeat;display: block; width:30px;height:17px;overflow:hidden;line-height:200px;}
li.on #capname_wenshi a:hover{background-position:-400px -2000px;}
/*图片*/
#capname_pic{background:url(http://i1.sinaimg.cn/dy/deco/2012/1113/title.png) 0 -650px no-repeat;display: block; width:30px;height:17px;overflow:hidden;line-height:200px;margin:0;float:left;display:inline;}
#capname_pic:hover{background-position:0 -950px;}
/*娱乐*/
li.on #capname_ent a{background:url(http://i1.sinaimg.cn/dy/deco/2012/1113/title.png) 0 -550px no-repeat;display: block; width:30px;height:17px;overflow:hidden;line-height:200px;}
#capname_ent a{background:url(http://i1.sinaimg.cn/dy/deco/2012/1113/title.png) -100px -550px no-repeat;display: block; width:30px;height:17px;overflow:hidden;line-height:200px;}
li.on #capname_ent a:hover{background-position:0 -1550px;}
/*公益*/
#capname_gongyi{background:url(http://i1.sinaimg.cn/dy/deco/2012/1113/title.png) -100px -600px no-repeat;display: block; width:30px;height:17px;overflow:hidden;line-height:200px;float:left;display:inline;}
#capname_gongyi:hover{background-position:-100px -1600px;}
/*女性*/
#capname_eladies{background:url(http://i1.sinaimg.cn/dy/deco/2012/1113/title.png) -100px -650px no-repeat;display: block; width:30px;height:17px;overflow:hidden;line-height:200px;float:left;display:inline;}
li.on #capname_eladies, #capname_eladies:hover{background-position:-100px -1650px;}
/*时尚*/
#capname_fashion{background:url(http://i1.sinaimg.cn/dy/deco/2012/1113/title.png) -200px -650px no-repeat;display: block; width:30px;height:17px;overflow:hidden;line-height:200px;float:left;display:inline;}
li.on #capname_fashion, #capname_fashion:hover{background-position:-200px -1650px;}
/*情感*/
#capname_feel{background:url(http://i1.sinaimg.cn/dy/deco/2012/1113/title.png) -300px -650px no-repeat;display: block; width:30px;height:17px;overflow:hidden;line-height:200px;float:left;display:inline;}
li.on #capname_feel, #capname_feel:hover{background-position:-300px -1650px;}
/*美容*/
#capname_meirong{background:url(http://i1.sinaimg.cn/dy/deco/2012/1113/title.png) -100px -750px no-repeat;display:inline-block; width:30px;height:17px;overflow:hidden;line-height:200px;float:left;display:inline;}
#capname_meirong:hover{background-position:-100px -1750px;}
/*财经*/
li.on #capname_finance a{background-position: 0 -1700px;}
#capname_finance a{background:url(http://i1.sinaimg.cn/dy/deco/2012/1113/title.png) 0 -800px no-repeat;display:inline-block; width:30px;height:17px;overflow:hidden;line-height:200px;float:left;display:inline;}
li.on #capname_finance a:hover{background-position: 0 -1750px;}
li.on #capname_finance_index a{background-position: 0 -1700px;}
#capname_finance_index a{background:url(http://i1.sinaimg.cn/dy/deco/2012/1113/title.png) 0 -800px no-repeat;display:inline-block; width:30px;height:17px;overflow:hidden;line-height:200px;float:left;display:inline;}
li.on #capname_finance_index a:hover{background-position: 0 -1750px;}
/*尚品*/
#capname_style{background:url(http://i1.sinaimg.cn/dy/deco/2012/1113/title.png) -100px -800px no-repeat;display:inline-block; width:30px;height:17px;overflow:hidden;line-height:200px;float:left;display:inline;}
#capname_style:hover{background-position:-100px -1800px;}
/*股票*/
li.on #capname_stock a{background-position:0px -1800px;}
#capname_stock a{background:url(http://i1.sinaimg.cn/dy/deco/2012/1113/title.png) 0 -900px no-repeat;display:inline-block; width:30px;height:17px;overflow:hidden;line-height:200px;float:left;display:inline;}
li.on #capname_stock a:hover{background-position:-1px -1850px;}
/*视频*/
li #capname_vlog{padding-left:8px;padding-right:5px;}
li.on #capname_vlog a{background-position:0 -1200px;width:52px;}
#capname_vlog a{background:url(http://i1.sinaimg.cn/dy/deco/2012/1113/title.png) -100px -900px no-repeat;display:inline-block; width:52px;height:15px;overflow:hidden;line-height:200px;float:left;display:inline;}
li.on #capname_vlog a:hover{background-position:0 -1100px;}
/*视频新闻*/
li.on #capname_newsvideo{padding-left:8px;padding-right:5px;}
li.on #capname_newsvideo a{background-position:0 -1900px;width:78px;}
#capname_newsvideo a{background:url(http://i1.sinaimg.cn/dy/deco/2012/1113/title.png) -100px -950px no-repeat;display:inline-block; width:60px;height:20px;overflow:hidden;line-height:200px;float:left;display:inline;}
li.on #capname_newsvideo a:hover{background-position:0 -1950px;width:78px;}
/*房产,家居,汽车,f1,高尔夫,摄影大展*/
#capname_dichan{background:url(http://i1.sinaimg.cn/dy/deco/2012/1113/title.png) -100px 0 no-repeat;display:inline-block; width:45px;height:15px;overflow:hidden;line-height:200px;float:left;display:inline;}
#capname_dichan:hover{background-position:-100px -100px;}
#capname_house{background:url(http://i1.sinaimg.cn/dy/deco/2012/1113/title.png) -300px 0 no-repeat;display:inline-block; width:30px;height:21px;overflow:hidden;line-height:200px;float:left;display:inline;}
#capname_house:hover{background-position:-300px -1000px;}
#capname_jiaju{background:url(http://i1.sinaimg.cn/dy/deco/2012/1113/title.png) -300px -50px no-repeat;display:inline-block; width:30px;height:15px;overflow:hidden;line-height:200px;float:left;display:inline;}
#capname_jiaju:hover{background-position:-300px -1050px;}
#capname_auto{background:url(http://i1.sinaimg.cn/dy/deco/2012/1113/title.png) -300px -100px no-repeat;display:inline-block; width:30px;height:15px;overflow:hidden;line-height:200px;float:left;display:inline;}
#capname_auto:hover{background-position:-300px -1100px;}
#capname_autocenter{background:url(http://i1.sinaimg.cn/dy/deco/2012/1113/title.png) -500px 0px no-repeat;display:inline-block; width:30px;height:15px;overflow:hidden;line-height:200px;float:left;display:inline;}
#capname_autocenter:hover{background-position:-500px -1000px;}
#capname_f1{background:url(http://i1.sinaimg.cn/dy/deco/2012/1113/title.png) -300px -150px no-repeat;display:inline-block; width:14px;height:15px;overflow:hidden;line-height:200px;float:left;display:inline;margin-top:2px;}
#capname_f1:hover{background-position:-300px -1150px;}
#capname_golf{background:url(http://i1.sinaimg.cn/dy/deco/2012/1113/title.png) -400px -700px no-repeat;display:inline-block; width:45px;height:15px;overflow:hidden;line-height:200px;float:left;display:inline;}
#capname_golf:hover{background-position:-400px -1700px;}
#capname_wsslc{background:url(http://i1.sinaimg.cn/dy/deco/2012/1113/title.png) -400px -750px no-repeat;display:inline-block; width:60px;height:15px;overflow:hidden;line-height:200px;float:left;display:inline;}
#capname_wsslc:hover{background-position:-400px -1750px;}
/*手机,数码,笔记本,硬件,台式机,下载*/
#capname_mobile{background:url(http://i1.sinaimg.cn/dy/deco/2012/1113/title.png) -300px -200px no-repeat;display:inline-block; width:30px;height:15px;overflow:hidden;line-height:200px;float:left;display:inline;}
#capname_mobile:hover{background-position:-300px -1200px;}
#capname_shuma{background:url(http://i1.sinaimg.cn/dy/deco/2012/1113/title.png) -300px -400px no-repeat;display:inline-block; width:30px;height:15px;overflow:hidden;line-height:200px;float:left;display:inline;}
#capname_shuma:hover{background-position:-300px -1400px;}
#capname_nb{background:url(http://i1.sinaimg.cn/dy/deco/2012/1113/title.png) -300px -250px no-repeat;display:inline-block; width:45px;height:15px;overflow:hidden;line-height:200px;float:left;display:inline;}
#capname_nb:hover{background-position:-300px -1250px;}
#capname_yingjian{background:url(http://i1.sinaimg.cn/dy/deco/2012/1113/title.png) -400px -550px no-repeat;display:inline-block; width:30px;height:15px;overflow:hidden;line-height:200px;float:left;display:inline;}
#capname_yingjian:hover{background-position:-400px -1550px;}
#capname_pc{background:url(http://i1.sinaimg.cn/dy/deco/2012/1113/title.png) -400px -600px no-repeat;display:inline-block; width:60px;height:15px;overflow:hidden;line-height:200px;float:left;display:inline;}
#capname_pc:hover{background-position:-400px -1600px;}
#capname_download{background:url(http://i1.sinaimg.cn/dy/deco/2012/1113/title.png) -300px -350px no-repeat;display:inline-block; width:30px;height:15px;overflow:hidden;line-height:200px;float:left;display:inline;}
#capname_download:hover{background-position:-300px -1350px;}
/*智投*/
#pfp_content a,#sinanet_content a{color:#009;}
#pfp_content a:visited,#sinanet_content a:visited{color:#009;}
#pfp_content a:hover,#sinanet_content a:hover{color:#c00;}
#capname_zhitou{background:url(http://i1.sinaimg.cn/dy/deco/2012/1113/title.png) -300px -600px no-repeat;display:inline-block; width:30px;height:15px;overflow:hidden;line-height:200px;float:left;display:inline;}
#capname_zhitou:hover{background-position:-300px -1600px;}
/*企业,各地专刊,服饰代购,保健品,婚礼*/
.a033{background:url(http://i1.sinaimg.cn/dy/deco/2012/1113/title.png) -300px -650px no-repeat;display:inline-block; width:30px;height:15px;overflow:hidden;line-height:200px;float:left;display:inline;}
.a033:hover{background-position:-300px -1650px;}
.a034{background:url(http://i1.sinaimg.cn/dy/deco/2012/1113/title.png) -300px -700px no-repeat;display:inline-block; width:60px;height:15px;overflow:hidden;line-height:200px;float:left;display:inline;}
.a034:hover{background-position:-300px -1700px;}
.a035{background:url(http://i1.sinaimg.cn/dy/deco/2012/1113/title.png) -300px -750px no-repeat;display:inline-block; width:60px;height:15px;overflow:hidden;line-height:200px;float:left;display:inline;}
.a035:hover{background-position:-300px -1750px;}
.a036{background:url(http://i1.sinaimg.cn/dy/deco/2012/1113/title.png) -400px -850px no-repeat;display:inline-block; width:42px;height:15px;overflow:hidden;line-height:200px;float:left;display:inline;}
.a036:hover{background-position:-400px -1850px;}
.a037{background:url(http://i1.sinaimg.cn/dy/deco/2012/1113/title.png) -400px -900px no-repeat;display:inline-block; width:30px;height:15px;overflow:hidden;line-height:200px;float:left;display:inline;}
.a037:hover{background-position:-400px -1900px;}
/*生活,通用网址,服务,特价机票,旅游线路*/
#capname_shenghuo{background:url(http://i1.sinaimg.cn/dy/deco/2012/1113/title.png) -500px -300px no-repeat;display:inline-block; width:30px;height:15px;overflow:hidden;line-height:200px;float:left;display:inline;}
#capname_shenghuo:hover{background-position:-500px -1300px;}
#capname_tongyong{background:url(http://i1.sinaimg.cn/dy/deco/2012/1113/title.png) -500px -350px no-repeat;display:inline-block; width:30px;height:15px;overflow:hidden;line-height:200px;float:left;display:inline;}
#capname_tongyong:hover{background-position:-500px -1350px;}
#capname_shepin{background:url(http://i1.sinaimg.cn/dy/deco/2012/1113/title.png) -500px -550px no-repeat;display:inline-block; width:30px;height:15px;overflow:hidden;line-height:200px;float:left;display:inline;}
#capname_shepin:hover{background-position:-500px -1550px;}
#capname_fuwu{background:url(http://i1.sinaimg.cn/dy/deco/2012/1113/title.png) -500px -400px no-repeat;display:inline-block; width:30px;height:15px;overflow:hidden;line-height:200px;float:left;display:inline;}
#capname_fuwu:hover{background-position:-500px -1400px;}
#capname_jipiao{background:url(http://i1.sinaimg.cn/dy/deco/2012/1113/title.png) -500px -450px no-repeat;display:inline-block; width:60px;height:15px;overflow:hidden;line-height:200px;float:left;display:inline;}
#capname_jipiao:hover{background-position:-500px -1450px;}
#capname_lvyouxianlu{background:url(http://i1.sinaimg.cn/dy/deco/2012/1113/title.png) -500px -500px no-repeat;display:inline-block; width:60px;height:15px;overflow:hidden;line-height:200px;float:left;display:inline;}
#capname_lvyouxianlu:hover{background-position:-500px -1500px;}
/*育儿,少儿*/
#capname_baby{background:url(http://i1.sinaimg.cn/dy/deco/2012/1113/title.png) -300px -800px no-repeat;display:inline-block; width:30px;height:15px;overflow:hidden;line-height:200px;float:left;display:inline;}
#capname_baby:hover{background-position:-300px -1800px;}
#capname_kid{background:url(http://i1.sinaimg.cn/dy/deco/2012/1113/title.png) -300px -850px no-repeat;display:inline-block; width:30px;height:15px;overflow:hidden;line-height:200px;float:left;display:inline;}
#capname_kid:hover{background-position:-300px -1850px;}
/*游戏,星座,电子杂志*/
#capname_game{background:url(http://i1.sinaimg.cn/dy/deco/2012/1113/title.png) -400px 0 no-repeat;display:inline-block; width:30px;height:15px;overflow:hidden;line-height:200px;float:left;display:inline;}
#capname_game:hover{background-position:-400px -1000px;}
#capname_xingzuo{background:url(http://i1.sinaimg.cn/dy/deco/2012/1113/title.png) -400px -50px no-repeat;display:inline-block; width:30px;height:15px;overflow:hidden;line-height:200px;float:left;display:inline;}
#capname_xingzuo:hover{background-position:-400px -1050px;}
#capname_dzzz{background:url(http://i1.sinaimg.cn/dy/deco/2012/1113/title.png) -300px -900px no-repeat;display:inline-block; width:60px;height:15px;overflow:hidden;line-height:200px;float:left;display:inline;}
#capname_dzzz:hover{background-position:-300px -1900px;}
#capname_wanwan{background:url(http://i1.sinaimg.cn/dy/deco/2012/1113/title.png) -500px -200px no-repeat;display:inline-block; width:30px;height:15px;overflow:hidden;line-height:200px;float:left;display:inline;}
#capname_wanwan:hover{background-position:-500px -1200px;}
#capname_yeyou{background:url(http://i1.sinaimg.cn/dy/deco/2012/1113/title.png) -600px -200px no-repeat;display:inline-block; width:30px;height:15px;overflow:hidden;line-height:200px;float:left;display:inline;}
#capname_yeyou:hover{background-position:-600px -1200px;}
#capname_xinshouka{background:url(http://i1.sinaimg.cn/dy/deco/2012/1113/title.png) -500px -250px no-repeat;display:inline-block; width:45px;height:15px;overflow:hidden;line-height:200px;float:left;display:inline;}
#capname_xinshouka:hover{background-position:-500px -1250px;}
/*宠物,旅游,美食,地方资讯*/
#capname_chongwu{background:url(http://i1.sinaimg.cn/dy/deco/2012/1113/title.png) -400px -100px no-repeat;display:inline-block; width:30px;height:15px;overflow:hidden;line-height:200px;float:left;display:inline;}
#capname_chongwu:hover{background-position:-400px -1100px;}
#capname_lvyou{background:url(http://i1.sinaimg.cn/dy/deco/2012/1113/title.png) -300px -550px no-repeat;display:inline-block; width:30px;height:15px;overflow:hidden;line-height:200px;float:left;display:inline;}
#capname_lvyou:hover{background-position:-300px -1550px;}
#capname_meishi{background:url(http://i1.sinaimg.cn/dy/deco/2012/1113/title.png) -400px -150px no-repeat;display:inline-block; width:30px;height:15px;overflow:hidden;line-height:200px;float:left;display:inline;}
#capname_meishi:hover{background-position:-400px -1150px;}
#capname_difang{background:url(http://i1.sinaimg.cn/dy/deco/2012/1113/title.png) -400px -250px no-repeat;display:inline-block; width:60px;height:15px;overflow:hidden;line-height:200px;float:left;display:inline;}
/*#capname_difang:hover{background-position:-400px -1250px;}*/
/*教育,高考,出国,uc*/
#capname_kaoshi{background:url(http://i1.sinaimg.cn/dy/deco/2012/1113/title.png) -400px -300px no-repeat;display:inline-block; width:30px;height:15px;overflow:hidden;line-height:200px;float:left;display:inline;}
#capname_kaoshi:hover{background-position:-400px -1300px;}
#capname_tiku{background:url(http://i1.sinaimg.cn/dy/deco/2012/1113/title.png) -400px -350px no-repeat;display:inline-block; width:30px;height:15px;overflow:hidden;line-height:200px;float:left;display:inline;}
#capname_tiku:hover{background-position:-400px -1350px;}
#capname_chuguo{background:url(http://i1.sinaimg.cn/dy/deco/2012/1113/title.png) -400px -800px no-repeat;display:inline-block; width:30px;height:15px;overflow:hidden;line-height:200px;float:left;display:inline;}
#capname_chuguo:hover{background-position:-400px -1800px;}
#capname_UC{background:url(http://i1.sinaimg.cn/dy/deco/2012/1113/title.png) -400px -400px no-repeat;display:inline-block; width:20px;height:15px;overflow:hidden;line-height:200px;float:left;display:inline;margin-top:2px;}
#capname_UC:hover{background-position:-400px -1400px;}