-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhubei.html
1982 lines (1656 loc) · 92.8 KB
/
hubei.html
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">
<!-- saved from url=(0041)http://news.cntv.cn/20120808/105413.shtml -->
<html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=GBK">
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7">
<meta name="keywords" content="王生铁 逝世 政协主席 享年 湖北省 ">
<meta name="description" content="湖北省政协原主席王生铁同志逝世 享年81岁,一届全国人大常务委员会委员,湖北省政协原主席、省人大常委会原主任王生铁同志,因病医治无效,于2012年6月17日在武汉逝世,享年81岁。王生铁同志病重期间和逝世后,中央有关领导同志以不同方式表示慰问和哀悼。 ">
<title>湖北省政协原主席王生铁同志逝世 享年81岁_新闻台_中国网络电视台</title>
<script language="JavaScript">
var commentTitle = '湖北省政协原主席王生铁同志逝世 享年81岁'; //评论标题
/* 评论对象ID 20位以内的字符串 每个被评论对象不同 */
var itemid1='20120808105413';//正文页id,赋值给留言评论模块的参数之一
var commentUrl = 'http://news.cntv.cn/20120808/105413.shtml';
var column_id = 'C15621000003'.substring(0,6);
var sub_column_id = 'C15621000003';
var domainname = 'http://news.cntv.cn'.substring(7);
var sobey_video_flag = '';
var pindao = "115";
var pindao_1 = "115";
if(pindao=="1" || pindao=="115"){
pindao = "_新闻台";
}else if(pindao=="2" || pindao=="116"){
pindao = "_体育台";
}else if(pindao=="10" || pindao=="126"){
pindao = "_经济台";
}else if(pindao=="132"){
pindao = "_游戏台";
}else if(pindao=="166"){
pindao = "_英语台";
}else if(pindao=="171"){
pindao = "_南非世界杯";
}else if(pindao=="168"){
pindao = "_汽车台";
}else if(pindao=="175"){
pindao = "_爱公益台";
}else if(pindao=="170"){
pindao = "_时尚台";
}else if(column_id=="C26510" || column_id=="C26509" || column_id=="C26496" || column_id=="C25824" ){
pindao = "_IT频道";
}else if(pindao=="185"){
pindao = "_艺术台";
}else if(pindao=="208"){
pindao = "_旅游台";
}else{
pindao = "";
}
var type="news";
var dateNum = (new Date()).toLocaleDateString() + " " + (new Date()).toLocaleTimeString();
var times_str = dateNum.replace(/年/g,'-').replace(/月/g,'-').replace(/日/g,'-').replace(/:/g,'-');
var new_str = times_str.replace(/ /g,'-');
var arr = new_str.split("-");
var datum = new Date(Date.UTC(arr[0],arr[1]-1,arr[2]-2,arr[3]-8,arr[4],arr[5]));
var timeint=datum.getTime()/1000;
</script>
<script language="JavaScript">
var flvImgUrl="";
</script>
<link href="./hubei_files/style20120517.css" rel="stylesheet" type="text/css">
<!--专题模版通用脚本统一调用-->
<script type="text/javascript" src="./hubei_files/jquery-1.7.2.min.js.下载"></script>
<script type="text/javascript" src="./hubei_files/page.js.下载"></script>
<script type="text/javascript" src="./hubei_files/a2.js.下载"></script>
<script type="text/javascript" src="./hubei_files/swfobject.js.下载"></script>
<script type="text/javascript" src="./hubei_files/pfdc.js.下载"></script><script src="./hubei_files/showMsg.jsp" type="text/javascript"></script>
<script type="text/javascript" src="./hubei_files/share.js.下载"></script>
<script type="text/javascript" src="./hubei_files/repaste_js.php"></script>
<script src="./hubei_files/subGrade.jsp" type="text/javascript"></script><script async="" src="./hubei_files/ge.js.下载"></script><script async="" src="./hubei_files/ge.js.下载"></script></head><remove-web-limits-iqxin id="rwl-iqxin" class="rwl-exempt" style="position: fixed; top: 67px; left: 0px;"><qxinbutton type="qxinbutton" id="rwl-setbtn"> set </qxinbutton> <lalala style="cursor:move; font-size:12px;">限制解除</lalala> <input type="checkbox" name="" id="black_node"><style type="text/css">#rwl-iqxin{position:fixed;transform:translate(-95%,0);width:85px;height:25px;font-size:12px;font-weight: 500;font-family:Verdana, Arial, '宋体';color:#fff;background:#333;z-index:2147483647;margin: 0;opacity:0.05;transition:0.3s;overflow:hidden;user-select:none;text-align:center;white-space:nowrap;line-height:25px;padding:0 16px;border:1px solid #ccc;border-width:1px 1px 1px 0;border-bottom-right-radius:5px;box-sizing: content-box;}#rwl-iqxin input{margin: 0;padding: 0;vertical-align:middle;-webkit-appearance:checkbox !important;-moz-appearance:checkbox;position: static;clip: auto;opacity: 1;cursor: pointer;}#rwl-iqxin.rwl-active-iqxin{left: 0px;transform:translate(0,0);opacity: 0.9;height: 32px;line-height: 32px}#rwl-iqxin label{margin:0;padding:0;font-weight:500;}#rwl-iqxin #rwl-setbtn{margin: 0 4px 0 0;padding: 0 0 0 4px;border: none;border-radius: 2px;cursor: pointer;background: #fff;color: #000;} </style></remove-web-limits-iqxin>
<body data-spm-anchor-id="0.0.0.i3"><script id="tb-beacon-aplus" src="./hubei_files/__aplus_plugin_cctv.js,aplus_plugin_aplus_u.js.下载" exparams="v_id=&aplus&"></script>
<!-- START WRating v1.0 --><script type="text/javascript">
var vjAcc="860010-1102017700";
var wrUrl="http://cntv.wrating.com/";
var wrVideoUrl="http://cntv.wrating.com/";
</script>
<!-- END WRating v1.0 -->
<!--登录条-->
<script>
with(document)with(body)with(insertBefore(createElement("script"),firstChild))setAttribute("exparams","v_id=&aplus&",id="tb-beacon-aplus",src=(location>"https"?"//js":"//js")+".data.cctv.com/__aplus_plugin_cctv.js,aplus_plugin_aplus_u.js")
</script>
<style type="text/css">
<!--
.cntv_topbar_bg {background:#fff;position:relative;z-index:9999;_position:static;}
.cntv_topbar {background:#fff;border:solid 1px #ccc;clear:both;font-family:"宋体";height:77px;margin:0 auto;width:958px;z-index:999;}
.cntv_topbar .main {background:#f1f1f1;border:solid 1px #fff;height:26px;position:relative;z-index:199;}
.cntv_topbar a {color:#585252;}
.cntv_topbar a.red {color:#900;}
.cntv_topbar img {vertical-align:middle;}
.cntv_topbar td {color:#585252;height:26px;}
.cntv_topbar td a {color:#585252;padding:0 5px;}
.cntv_topbar td a:hover {color:#D30A18;}
.cntv_topbar span {display:block;}
.cntv_topbar .pl {float:right;}
.cntv_topbar .pl span {display:block;float:left;}
.cntv_topbar .pr {float:right;text-align:right;}
.cntv_topbar .have_msg {background:url(http://p5.img.cctvpic.com/10/2012/01/09/content201111/style/img/icon_111104.gif) no-repeat 5px 0;display:block;float:left;height:14px;padding:0px 0 2px 0px;width:26px; }
.cntv_topbar .have_msg:hover {color:#000;}
.cntv_topbar .pl span.have_msg {display:inline-block;float:none;}
.cntv_topbar .pl span.namebox {height:19px;margin-top:0px;padding:0;position:relative;width:auto;}
.cntv_topbar .pl span.namebox p {background:url(http://p5.img.cctvpic.com/10/2012/01/09/content201111/style/img/icon_111102.gif) no-repeat 56px 8px;cursor:pointer;line-height:17px;padding:2px 0 0 5px;*padding-top:1px;_padding-top:2px;}
.cntv_topbar .pl span.namebox #name_btn {background:#fff;border:solid 1px #cdcdcd;border-top:none;display:none;right:10px;position:absolute;top:24px;width:71px;z-index:2147483647;}
.cntv_topbar .pl span.namebox #name_btn a {display:block;height:19px;line-height:19px;width:61px;}
.cntv_topbar .pl span.namebox #name_btn a:hover {background:#f0472b;color:#fff;cursor:pointer;text-decoration:none;}
.cntv_topbar .inputbox {background:url(http://p5.img.cctvpic.com/10/2012/01/09/content201111/style/img/bg_111102.gif) no-repeat;border-color:#9a9a9a #cdcdcd #cdcdcd #9a9a9a;border-style:solid;border-width:1px;height:18px;margin-right:5px;padding:1px 0 0 2px;width:55px;}
.cntv_topbar .pl #logon2 span {/*display:inline-block;*/line-height:19px;margin-top:2px;}
.cntv_topbar .pl #logon2 span.btnbox {margin-top:0;}
.cntv_topbar .inputbox input {background:none;border:none;height:17px;line-height:17px;width:54px;_height:16px;_line-height:16px;_padding-top:1px;}
.cntv_topbar .inputbox input.c1 {color:#b2b2b2;}
.cntv_topbar .inputbox input.c2 {color:#000;}
.cntv_topbar .btnbox {background:url(http://p5.img.cctvpic.com/10/2012/01/09/content201111/style/img/btn_111102.gif) repeat-x;border:solid 1px #cdcdcd;height:17px;margin-right:5px;padding:2px 0px 0 1px;*height:18px;*padding-top:1px;_padding-top:2px;}
.cntv_topbar .btnbox a {display:inline-block;line-height:17px;}
.cntv_topbar .gotobox {height:19px;padding:0;position:relative;width:68px;_height:19px;}
.cntv_topbar .gotobox p {background:url(http://p5.img.cctvpic.com/10/2012/01/09/content201111/style/img/icon_111102.gif) no-repeat 56px 8px;cursor:pointer;line-height:17px;padding:2px 0 0 5px;*padding-top:1px;_padding-top:2px;}
.cntv_topbar .gotobox #goto_btn {background:#fff;border:solid 1px #cdcdcd;border-top:none;display:none;left:-1px;position:absolute;top:19px;width:68px;z-index:2147483647;}
.cntv_topbar .gotobox #goto_btn a {display:block;height:19px;line-height:19px;width:58px;}
.cntv_topbar .gotobox #goto_btn a:hover {background:#f0472b;color:#fff;cursor:pointer;text-decoration:none;}
.cntv_topbar .gotobox #goto_btn .unusable {color:#ccc;}
.cntv_topbar .gotobox #goto_btn .unusable:hover {background:#fff;color:#ccc;}
.cntv_topbar .lang {float:left;width:420px;}
.cntv_topbar .lang td {color:#ccc;}
.cntv_topbar .lang td a {color:#333;}
.cntv_topbar .lang td a:hover {color:#585252;}
.cntv_topbar .lang td a.red {color:#900;}
.cntv_topbar .lang td span.dw {color:#585252;display:inline-block;padding:0 5px;}
.cntv_topbar .lang td span.temup {color:#e40c1a;display:inline-block;}
.cntv_topbar .lang td span.temdown {color:#429afc;display:inline-block;}
.cntv_topbar .subbg {border-top:solid 1px #ccc;font:normal 12px/14px "宋体";height:38px;padding:8px 0 2px 5px;_padding:10px 0 0 5px;}
.cntv_topbar .sub {margin-bottom:8px;}
.cntv_topbar .sub, .cntv_topbar .sub a {color:#333;}
.cntv_topbar .sub a {margin-left:11px;}
.cntv_topbar .sub a.first {margin-left:0;}
.cntv_topbar .sub a.sub_a_01 {margin-left:12px;}
.cntv_topbar .sub a.last {margin-left:11px;}
.cntv_topbar dl, .cntv_topbar dt, .cntv_topbar dd {color:#ccc;float:left;}
.cntv_topbar dt a, .cntv_topbar dd a {color:#666;}
.cntv_topbar dt a {font-weight:bold;margin:0 10px;}
.cntv_topbar dt a.first {margin:0;}
.cntv_topbar dt.dt_01 {margin-left:9px;}
.cntv_topbar dt.dt_01 a {margin:0 5px 0 15px;}
.cntv_topbar dd a {margin-left:13px;}
.cntv_topbar dd a.a_zbzg {background:url(http://p5.img.cctvpic.com/10/2012/01/09/content201111/style/img/icon_zbzg.gif) no-repeat;display:inline-block;padding-left:17px;}
.cntv_topbar dd a.a_cbox {background:url(http://p5.img.cctvpic.com/10/2012/01/09/content201111/style/img/icon_cbox.png) no-repeat;padding-left:38px;display:inline-block;z-index:10;_background:none;_filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled=true, sizingMethod=crop, src="http://p5.img.cctvpic.com/10/2012/01/09/content201111/style/img/icon_cbox.png");}
.cntv_topbar dd.dd_01 {margin-right:9px;}
.cntv_topbar dd.dd_01 a.first {margin:0 7px 0 9px;}
.cntv_topbar dd.dd_02 a.first {margin-left:15px;}
.cntv_topbar .pl #tc{ position:absolute; left:618px; background:#fff; top:25px; z-index:99; display:none; border:1px solid #dddddd;box-shadow:-1px 1px 3px #dddddd,1px 1px 3px #dddddd; -webkit-box-shadow:1px 1px 3px #dddddd; -moz-box-shadow:1px 1px 3px #dddddd;}
.cntv_topbar #tc ul{ width:200px; padding-top:0px;}
.cntv_topbar #tc ul li{ height:34px; padding:6px 0; margin-right:2px; margin-left:3px; padding-left:2px; background:url(http://p5.img.cctvpic.com/10/2012/01/09/content201111/style/img/li_line_03.png) no-repeat center bottom; vertical-align:middle; width:192px;}
.cntv_topbar #tc ul li .sp_1{ float:left; width:21px; padding-left:5px; text-align:center; padding-top:5px;}
.cntv_topbar #tc ul li .d_2{ width:155px; float:left; padding-left:5px;}
.cntv_topbar #tc ul li .d_2 p{ height:16px; line-height:16px;}
.cntv_topbar #tc ul li .d_2 .p_1{ font-size:12px; font-family:"宋体"; color:#333333;}
.cntv_topbar #tc ul li .d_2 .p_1 a{color:#333333; padding:0;}
.cntv_topbar #tc ul li .d_2 .p_2{ color:#AEAEAE; font-size:12px; font-family:"宋体";}
.cntv_topbar #tc ul .li_ts{ background:none; height:20px; line-height:20px;}
.cntv_topbar #tc ul .li_ts p{ height:20px; line-height:20px; text-align:right; padding:0px;}
.cntv_topbar #tc ul .li_ts p a{ color:#0066FF;}
.cntv_topbar .pl .gc{ background:url(http://p5.img.cctvpic.com/10/2012/01/09/content201111/style/img/gc_bj_03.jpg) no-repeat 54px 9px; width:61px; height:24px; line-height:22px !important; margin-top:2px !important; margin-left:4px; margin-right:4px; display:block; float:left; padding-left:4px; cursor:pointer;}
.cntv_topbar .pl .gc1{ width:60px; margin-top:4px; height:26px; margin-left:3px; margin-right:4px; line-height:22px !important; margin-top:2px !important; display:block; float:left; padding-left:4px; cursor:pointer; background:url(http://p5.img.cctvpic.com/10/2012/01/09/content201111/style/img/gc_bj_03.jpg) no-repeat 54px 9px #fff; border:1px solid #dddddd; border-bottom:none; top:-1px; box-shadow:1px -2px 3px #dddddd; -webkit-box-shadow:1px 1px 3px #dddddd; -moz-box-shadow:1px 1px 3px #dddddd; position: relative; z-index:999;}
-->
</style>
<div class="cntv_topbar_bg"><div class="cntv_topbar">
<div class="main"><span class="lang">
<table cellpadding="0" cellspacing="0">
<tbody><tr>
<td><a target="_blank" href="http://www.cntv.cn/">央视网</a>|<a target="_blank" href="http://tv.cntv.cn/">中国网络电视台</a>|<a href="http://www.cntv.cn/map/" target="_blank">网站地图</a></td>
</tr>
</tbody></table>
</span>
<span class="pr">
<table cellpadding="0" cellspacing="0">
<tbody><tr>
<td><a href="http://help.cntv.cn/" target="_blank">客服</a><a class="red" onclick="SetHome(this,window.location)" target="_self" style="cursor:pointer">设为首页</a></td>
</tr>
</tbody></table>
</span>
<span class="pl">
<table cellpadding="0" cellspacing="0" id="logon1" style="display:none;">
<tbody><tr>
<td>
<input type="hidden" id="cookid">
<input type="hidden" id="nicknm">
您好,帐号未激活<strong><a id="cookie_user_name" target="_blank" style="display:none"></a></strong> <a href="http://passport.cntv.cn/o_activation.jsp" style="color:#D30A18;" target="_blank" id="jihuoyourmail">马上激活</a> <a href="javascript:void(0);" onclick="logout_20111107()">退出</a>
</td>
</tr>
</tbody></table>
<table cellpadding="0" cellspacing="0" id="logon2" style="display:none;">
<tbody><tr>
<td><span><input type="hidden" id="cookid2"><input type="hidden" id="nicknm2"></span><span class="namebox">您好,<strong id="cookie_user_name2"></strong>
<span id="name_btn" style="display: none;">
<a id="vip_yx_f" style="color: #CCCCCC;">VIP邮箱</a>
<a id="yx_f" style="color: #CCCCCC;">免费邮箱</a>
<a href="http://t.cntv.cn/index.php?m=index" target="_blank">微博</a><a href="http://my.cntv.cn/" target="_blank">社区</a><a href="http://blog.cntv.cn/spacecp.php?docp=me" target="_blank">博客</a><a id="xy1" target="_blank">播客</a><a href="http://bbs.cntv.cn/my.php" target="_blank">论坛</a></span>
</span><span><a href="http://my.cntv.cn/" class="have_msg" id="msg_1" target="_blank"></a></span>
<span class="gc" onclick="showSelect5(this)">
观看记录
</span>
<span style="display:inline"> <a href="javascript:void(0);" onclick="logout_20111107()" id="logout_20111107">退出</a></span>
<span id="tc">
<ul id="gkjl">
</ul>
</span>
</td>
</tr>
</tbody></table>
<form name="send201111">
<table cellpadding="0" cellspacing="0" id="login" style="display:block;">
<tbody><tr style="position:relative;">
<td style=""><span class="inputbox"><input type="text" name="usrid2011" id="usrid2011" class="c1" value="帐号" onblur="if(this.value==''){this.value=this.defaultValue;};this.className='c1';target_email()" onfocus="if(this.value==this.defaultValue){this.value='';};this.className='c2';"></span>
<span class="inputbox">
<input type="text" name="passwd_view" id="passwd_view" class="c1" value="密码" onblur="if(this.value==''){this.value=this.defaultValue;}" onfocus="if(this.value==this.defaultValue){this.value='';};show_pwd()" style="display:block">
<input type="password" name="passwd2011" id="passwd2011" class="c1" value="" onblur="if(this.value==''){document.getElementById('passwd_view').style.display='block';document.getElementById('passwd2011').style.display='none';}" onfocus="document.getElementById('passwd_view').style.display='none'" style="display:none">
</span><span class="btnbox gotobox" style="display:none;" onclick="showSelect2(this)"><p id="g_txt">选择去向</p><span id="goto_btn" style="display: none;">
<a id="vipyx" href="javascript:void(0);">VIP邮箱</a>
<a id="yx" href="javascript:void(0);">免费邮箱</a>
<a href="javascript:void(0);" onclick="javascript:document.getElementById('g_txt').innerHTML='微博';" id="wb">微博</a><a href="javascript:void(0);" onclick="javascript:document.getElementById('g_txt').innerHTML='社区';">社区</a><a href="javascript:void(0);" onclick="javascript:document.getElementById('g_txt').innerHTML='博客';">博客</a><a id="xy" href="javascript:void(0);" onclick="javascript:document.getElementById('g_txt').innerHTML='播客';">播客</a><a href="javascript:void(0);" onclick="javascript:document.getElementById('g_txt').innerHTML='论坛';">论坛</a></span></span><span class="btnbox"><a href="javascript:void(0);" onclick="check_form1(); return false;">登录</a></span><span class="btnbox" style="margin-right:0;"><script language="JavaScript" type="text/javascript">document.write('<a href="http://passport.cntv.cn/reg.jsp?backurl='+window.location.href.replace(/>|</g,"")+'" target="_blank">注册</a>');</script><a href="http://passport.cntv.cn/reg.jsp?backurl=http://news.cntv.cn/20120808/105413.shtml" target="_blank">注册</a></span></td>
</tr>
</tbody></table></form>
</span>
<div id="passport" style="display: none;"></div>
<div id="message"></div>
<div style="display:none">
<div id="lightBoxOpen4" style="display:none"></div>
<a id="user_name" style="display:none"></a>
<div id="lightBoxOpen1" style="display:none"></div>
<div id="logout" style="display:none"></div>
</div>
<iframe src="./hubei_files/saved_resource.html" id="logoutIfream" style="display:none"></iframe>
<!--start-->
<script language="JavaScript" src="./hubei_files/login_yetou201306.js.下载" type="text/javascript" charset="utf-8"></script>
</div>
<div class="subbg">
<div class="sub"><a class="first" href="http://www.cntv.cn/" target="_blank">首页</a><a class="sub_a_01" href="http://news.cntv.cn/" target="_blank">新闻</a><a class="sub_a_01" href="http://jingji.cntv.cn/" target="_blank">经济</a><a class="sub_a_01" href="http://sports.cntv.cn/" target="_blank">体育</a><a class="sub_a_01" href="http://ent.cntv.cn/" target="_blank">综艺</a><a class="sub_a_01" href="http://chunwan.cctv.com/" target="_blank">春晚</a><a class="sub_a_01" href="http://xiqu.cntv.cn/" target="_blank">戏曲</a><a class="sub_a_01" href="http://music.cntv.cn/" target="_blank">音乐</a><a class="sub_a_01" href="http://kejiao.cntv.cn/" target="_blank">科教</a><a class="sub_a_01" href="http://shaoer.cntv.cn/" target="_blank">青少</a><a class="sub_a_01" href="http://culture.cntv.cn/" target="_blank">文化</a><a class="sub_a_01" href="http://arts.cntv.cn/" target="_blank">艺术</a><a class="sub_a_01" href="http://igongyi.cntv.cn/" target="_blank">公益</a><a class="sub_a_01" href="http://chanjing.cntv.cn/" target="_blank">产经</a><a class="" href="http://auto.cntv.cn/" target="_blank">汽车</a><a class="" href="http://travel.cntv.cn/" target="_blank">旅游</a><a class="" href="http://jiankang.cntv.cn/" target="_blank">健康</a><a class="" href="http://style.cntv.cn/" target="_blank">时尚</a><a class="" href="http://sannong.cntv.cn/" target="_blank">三农</a><a class="" href="http://mall.cntv.cn/" target="_blank">商城</a><a class="" href="http://my.cntv.cn/" target="_blank">社区</a><a class="" href="http://t.cntv.cn/" target="_blank">微博</a><a class="" href="http://blog.cntv.cn/" target="_blank">博客</a><a class="" href="http://bbs.cntv.cn/" target="_blank">论坛</a><a class="" href="http://fangtan.cntv.cn/" target="_blank">访谈</a><a class="" href="http://mail.cntv.cn/" target="_blank">邮箱</a><a class="last" href="http://games.cntv.cn/" target="_blank">游戏</a></div>
<dl>
<dt><a class="first" href="http://tv.cntv.cn/" target="_blank">电视</a></dt>
<dd class="dd_01"><a class="first" href="http://tv.cntv.cn/pindao/" target="_blank">频道大全</a><a href="http://tv.cntv.cn/jiemu/" target="_blank">栏目大全</a><a href="http://tv.cntv.cn/jiemu/" target="_blank">节目大全</a><a class="a_zbzg" href="http://tv.cntv.cn/live/" target="_blank">直播中国</a><a href="http://live.sports.cntv.cn/" target="_blank">赛事直播</a><a class="a_cbox" href="http://cbox.cntv.cn/" target="_blank">网络电视客户端</a></dd>
<dd class="dd_02">|<a class="first" href="http://hd.cntv.cn/" target="_blank">高清</a><a href="http://dianying.cntv.cn/" target="_blank">电影</a><a href="http://dianshiju.cntv.cn/" target="_blank">电视剧</a><a href="http://jishi.cntv.cn/" target="_blank">纪录片</a><a href="http://donghua.cntv.cn/" target="_blank">动画片</a><a href="http://opencla.cntv.cn/" target="_blank">公开课</a><a href="http://xiyou.cntv.cn/" target="_blank">播客</a></dd>
<dt class="dt_01">|<a href="http://cctv.cntv.cn/" target="_blank">CCTV</a></dt>
<dd><a class="first" href="http://cctv1.cntv.cn/" target="_blank">频道</a><a href="http://cctv.cntv.cn/lm/" target="_blank">栏目</a></dd>
</dl>
</div>
</div></div>
<style type="text/css">
.table th, table td {
vertical-align: middle;
}
</style>
<!--remian-->
<div id="header" style="height:90px;" data-spm-anchor-id="0.0.0.i2">
<a href="http://www.cntv.cn/" target="_blank"><img src="./hubei_files/logo20131113.jpg" id="logo" alt="中国网络电视台"></a>
<div style="float:right;">
<center>
</center>
</div>
</div>
<!--
<style type="text/css">
#content_body .content_ad{float:left;padding-right:10px;}
#content_body .c_ad_c{float:none; text-align:center;}
</style>
<script type="text/javascript">
var jq = jQuery;
jq(function(){
/*图文内容广告区*/
(function(n){
var ad = '<p class="content_ad"><iframe marginheight="0" marginwidth="0" frameborder="0" width="300" height="250" scrolling="no" src="http://a.cntv.cn/main/s?user=cntv|dicengye|tuwenneibanner2&db=cntv&border=0&local=yes&kv=subsite|'+domainname.split('.')[0]+';channel|'+column_id+';sorts|'+sub_column_id+'"></iframe></p>';
var adPrev = jq('#content_body').children();
var nIndex = function(nn){
return nn<jq(adPrev).length?nn:jq(adPrev).length-1;
};
var addAd = function(n){
var _index = nIndex(n);
if (_index == jq(adPrev).length-1){
if (_index == -1){
jq('#content_body').html(ad);
}else{
jq(adPrev[_index]).after(ad);
}
jq('#content_body .content_ad').addClass('c_ad_c');
}else if (jq(adPrev[_index]).find('object').attr('data') !== undefined || jq(adPrev[_index]).find('img').attr('src') !== undefined){
_index += 3;
addAd(_index);
}else if (jq(adPrev[_index-1]).find('object').attr('data') !== undefined || jq(adPrev[_index-1]).find('img').attr('src') !== undefined){
_index += 3;
addAd(_index);
}else{
jq(adPrev[_index]).before(ad);
}
};
if (domainname.split('.')[0] !== 'sports' && (jq('#video_player').css('display') == undefined || jq('#video_player').css('display') == 'none')){
addAd(n);
}
})(3);
});
</script>
-->
<script language="JavaScript">
<!--
javascript:document.getElementById("passport").style.display = "none";void(0);
//-->
</script>
<div id="crumb">
<p class="f-l" id="xiaodaohang">
<a href="http://www.cntv.cn/" target="_blank">中国网络电视台</a> > <a href="http://news.cntv.cn/" target="_blank">新闻台</a> > <a href="http://news.cntv.cn/update/index.shtml" target="_blank">新闻中心</a> >
</p>
<script type="text/javascript">
var daohang_content = document.getElementById("xiaodaohang").innerHTML;
if(daohang_content.length>1){
if(daohang_content.endWith(" > ")){
daohang_content = daohang_content.substring(0,daohang_content.length-3);
document.getElementById("xiaodaohang").innerHTML = daohang_content;
}
}
</script>
<div class="f-r">
<script language="javascript" type="text/javascript">
function check_search(obj){
var loc = location.href;
var searchUrl="";
if(loc.indexOf("big5.cntv.cn")>-1){
searchUrl = 'http://search.cntv.cn/new/netall/index.shtml?qtext='+escape(obj);
window.open(searchUrl,"_blank");
}else{
searchUrl ="http://so.cntv.cn/search.php?qtext=" + encodeURIComponent(obj)+"";
window.open(searchUrl,"_blank");
}
}
if(document.addEventListener){
document.addEventListener("keypress",fireFoxHandler, true);
}else{
document.attachEvent("onkeypress",ieHandler);
}
function fireFoxHandler(evt){
if(evt.keyCode==13){
Info = document.getElementById("searchInfo_new").value;
if(Info=="" || Info.substring(0,4)=="视频搜索"){
document.getElementById("searchInfo_new").focus();
return false;
}else{
check_search(Info);
}
}
}
function ieHandler(evt){
if(evt.keyCode==13){
Info = document.getElementById("searchInfo_new").value;
if(Info=="" || Info.substring(0,4)=="视频搜索"){
document.getElementById("searchInfo_new").focus();
return false;
}else{
check_search(Info);
}
}
}
function Search_new(){
Info = document.getElementById("searchInfo_new").value;
if(Info=="" || Info.substring(0,4)=="视频搜索"){
document.getElementById("searchInfo_new").focus();
return false;
}else{
check_search(Info);
}
}
</script>
<form class="fm2">
<input type="text" class="ip1" id="searchInfo_new" value="王生铁" onfocus="if(this.value==this.defaultValue){this.value='';}" onblur="if(this.value==''){this.value=this.defaultValue;}">
<input type="image" class="ip2" src="./hubei_files/search.jpg" onclick="Search_new();return false;">
</form>
</div><!--remian-->
</div>
<!--end crumb-->
<div id="container">
<div class="top_title" id="top_title" style="width: 637px;">
<h1 class="b-tit"><!--repaste.title.begin-->湖北省政协原主席王生铁同志逝世 享年81岁<!--repaste.title.end--></h1>
<h1 class="m-tit"></h1>
<p class="art-info">发布时间:2023年01月25日 08:36 | <a href="http://fuxing.bbs.cctv.com/" class="u_link" target="_blank">进入复兴论坛</a> | 来源:人民日报 | <a href="http://www.cntv.cn/mobile/special/mobile/special/C21785/04/01/index.shtml" target="_blank">手机看视频</a></p>
<br>
<!--下面是播放器 start player-->
<div class="player m-b-10 has_ad" id="video_player" style="display: none; height: 565px;">
<script type="text/javascript" src="./hubei_files/video_content.js.下载"></script>
<script type="text/javascript">
var channelId = channelId_115;
var adcalldomain = adcalldomain_115;
var width = width_115;
var height = height_115;
var sysSource = sysSource_115;
var isLogin = isLogin_115;
var userId = userId_115;
var hour24DataURL = hour24DataURL_115;
var isCycle = isCycle_115;
var wideMode = wideMode_115;
var defaultRate = defaultRate_115;
var isAutoPlay = isAutoPlay_115;
</script>
<!--播放器 begin-->
<div class="back_ad">
<!--video_acticle-->
<script type="text/javascript">
var video_acticle = "no";
if(video_acticle=="yes" && video_acticle!="no"){
document.getElementById("video_player").style.display="";
document.getElementById("top_title").style.width="960px";//960/637
}else{
document.getElementById("video_player").style.display="none";
document.getElementById("top_title").style.width="637px";//960/637
}
</script>
</div>
<style type="text/css">
.yaodai{background:#e9e9e9;height:33px;margin:0 auto;position:relative;width:960px; top:480px;}
.yaodai .yd_link{display:block;position:absolute;left:0;top:0;height:36px;width:200px;}
.yaodai #yd_roll{height:33px;overflow:hidden;}
.yaodai ul li{color:#838383;font:bold 14px/30px "微软雅黑", "宋体", "黑体";height:33px; }
.yaodai ul li a{color:#838383;display:inline-block;padding:3px 0 0 10px;}
.player .cp2{top:510px;height:65px;}
.has_ad {height: 700px;}
</style>
<div class="yaodai">
<a class="yd_link"></a>
<div id="yd_roll">
<!--AdForward Begin:-->
<!-- web_cntv/dicengye_wenzilianfanpai -->
<!--
<div id="div-gpt-ad-1367991525820-10">
<script type="text/javascript">
if((dfp_subsite=="sannong"||dfp_subsite=="chanjing")&&(document.getElementById("video_player").style.display=="none")){
}else{
document.getElementById('div-gpt-ad-1367991525820-10').innerHTML="<iframe marginheight='0' marginwidth='0' frameborder='0' width='635' height='33' scrolling='no' id='dicengye_wenzilianfanpai_1' src=''></iframe>";
document.getElementById('dicengye_wenzilianfanpai_1').src="http://pubads.g.doubleclick.net/gampad/adx?iu=/8962/web_cntv/dicengye_wenzilianfanpai&t=subsite%3D"+dfp_subsite+"%26channel%3D"+column_id+"%26sorts%3D"+sub_column_id+"&sz=1x1&c="+(new Date()).getTime();
}
</script>
</div>
-->
<!--AdForward End-->
</div>
</div>
<!--remian-->
<!--播放器 end-->
<!--repaste.video.desc.begin--><!--repaste.video.desc.end-->
<div class="cp2">
<div class="in">
<div class="tb tb1">
<table width="100%">
<tbody><tr>
<td style="width:35px; text-align:left;">评分</td>
<td style="width:105px; padding:0px;">
<div class="rating">
<table>
<tbody><tr>
<td>
<div class="pinfen" id="mark">
<span class="l star">
<i id="fenshu"></i>
<span class="pf">
<a href="javascript:void(0);" title="2"></a>
<a href="javascript:void(0);" title="4"></a>
<a href="javascript:void(0);" title="6"></a>
<a href="javascript:void(0);" title="8"></a>
<a href="javascript:void(0);" title="10"></a>
</span>
</span>
<span class="fen l" id="fenshu1"></span>
</div>
</td>
</tr>
</tbody></table>
</div>
<script type="text/javascript">
<!--调用评分start-->
sendRate('VIDE0020120808105413','no','http://news.cntv.cn/20120808/105413.shtml');
<!--调用评分end-->
var jq=jQuery;
var rate = false;
function makeData(divid){
this.emId=divid;
var obj=jq("#"+divid),
data=jq("#"+divid+" .star i"),
links=jq("#"+divid+" .star a"),
fen=jq("#"+divid+" .fen");
var data_val=parseFloat(data.html())/2;
function p_data(){
data.css("width",data_val*15+"px");
}
p_data();
links.each(function(i,li){
li=jq(li);
li.bind("mouseover",function(){
data.css("width",(i+1)*15+"px");
}).bind("mouseout",function(){
p_data();
});
li.bind("click",function(){
if(!rate){
rate = true;
data_val=(i+1);
p_data();
fen.html(li.attr("title"));
sendRate('VIDE0020120808105413',li.attr("title"),'http://news.cntv.cn/20120808/105413.shtml')
alert("感谢评论");
}else{
alert("您已经评论过了!");
}
});
});
}
function disData(){
makeData("mark");
}
</script>
</td>
<script language="JavaScript">
document.write("<td style=\"width:95px;\" class=\"border\"><a href=\"/nettv/news/top/index.shtml\"><img src=\"/Library/content2010/image/icon/paihang.gif\" height=\"14\" alt=\"排行榜\" /> 排行榜</a></td>");
</script><td style="width:95px;" class="border"><a href="http://news.cntv.cn/nettv/news/top/index.shtml"><img src="./hubei_files/paihang.gif" height="14" alt="排行榜"> 排行榜</a></td>
<td style="width:95px;" class="border"><a href="http://www.cntv.cn/special/csc/jubao/index.shtml" target="\"_blank\""><img src="./hubei_files/fankui.gif" height="14" alt="意见反馈"> 意见反馈</a></td>
<td style="width:95px;" class="border"><a href="javascript:dojsp('VIDE0020120808105413',1,'http://news.cntv.cn/20120808/105413.shtml')"><img src="./hubei_files/ding.gif" height="14" alt="顶"> 顶</a></td>
<td style="width:95px;" class="border"><a href="javascript:dojsp('VIDE0020120808105413',2,'http://news.cntv.cn/20120808/105413.shtml')"><img src="./hubei_files/cai.gif" height="14" alt="踩"> 踩</a></td>
<td><a href="javascript:addBookmark('湖北省政协原主席王生铁同志逝世 享年81岁','http://news.cntv.cn/20120808/105413.shtml');"><img src="./hubei_files/shoucang.gif" width="15" height="15" alt="收藏"> 收藏</a></td>
</tr>
</tbody></table>
</div>
<div class="tb tb2">
<table>
<tbody><tr>
<td style="width:55px;">分享</td>
<td style="width:125px;"><a href="Javascript:copyTextToClipboard('湖北省政协原主席王生铁同志逝世 享年81岁http://news.cntv.cn/20120808/105413.shtml')"><img src="./hubei_files/haoyou.gif" height="14" alt="MSN或QQ好友"> MSN或QQ好友</a></td>
<td style="width:135px;"><a href="Javascript:document.getElementById('vplayer').jsToFlashShare();"><img src="./hubei_files/zhuantie.gif" height="14" alt="贴到博客或论坛"> 贴到博客或论坛</a></td>
<td style="width:95px;"><a href="javascript:void(window.open('http://mail.apps.cntv.cn/application_search/program06/contact/cntv_email.jsp?header=湖北省政协原主席王生铁同志逝世 享年81岁&url=http://news.cntv.cn/20120808/105413.shtml'));"><img src="./hubei_files/youjian.gif" height="14" alt="转发邮件"> 转发邮件</a></td>
<td style="width:195px; padding-top:3px;">一键转帖
<a class="tmblog" style="cursor:hand" id="share_btn_1329728259995" onclick="postToWb(); return false;" alt="分享到腾讯微薄"><img src="./hubei_files/weiboicon32.png" style="height:16px;" border="0" alt="" valign="middle"></a>
<a onclick="addToKaixin('http://news.cntv.cn/20120808/105413.shtml','湖北省政协原主席王生铁同志逝世 享年81岁'); return false;" href="http://news.cntv.cn/20120808/105413.shtml#" target="_blank" alt="转发至开心网" title="转发至开心网"><img src="./hubei_files/kaixin.gif" alt="开心网"></a>
<a title="转发至QQ空间" alt="转发至QQ空间" id="share_qq" href="http://news.cntv.cn/20120808/105413.shtml#" target="_blank" onclick="addToQQ('http://news.cntv.cn/20120808/105413.shtml');return false;"><img src="./hubei_files/qq.gif" alt="QQ"></a>
<a title="转发至人人网" alt="转发至人人网" id="share_renren" href="http://news.cntv.cn/20120808/105413.shtml#" onclick="addToRenRen('http://news.cntv.cn/20120808/105413.shtml','湖北省政协原主席王生铁同志逝世 享年81岁'); return false;" target="_blank"><img src="./hubei_files/renren.gif" alt="人人网"></a>
<a title="转发至i贴吧" alt="转发至i贴吧" id="share_itieba" href="http://news.cntv.cn/20120808/105413.shtml#" onclick="addToiTieba('http://news.cntv.cn/20120808/105413.shtml','湖北省政协原主席王生铁同志逝世 享年81岁','http://news.cntv.cn'); return false;" target="_blank"><img src="./hubei_files/i.gif" alt="i贴吧"></a>
<a title="转发至新浪微博" alt="转发至新浪微博" id="share_sina" href="http://news.cntv.cn/20120808/105413.shtml#" onclick="addToSina('http://news.cntv.cn/20120808/105413.shtml','湖北省政协原主席王生铁同志逝世 享年81岁','http://news.cntv.cn'); return false;" target="_blank"><img src="./hubei_files/sina.gif" alt="新浪微博"></a>
<a alt="转帖到网易微博" style="cursor:hand" onclick="(function(){var url = 'link=encodeURIComponent(window.location.href)&source='+ encodeURIComponent('中国国家网络电视台')+ '&info='+ encodeURIComponent(document.title) + ' ' + encodeURIComponent(document.location.href)+'&images=&togImg= true';window.open('http://t.163.com/article/user/checkLogin.do?'+url+'&'+new Date().getTime(),'newwindow','height=330,width=550,top='+(screen.height-280)/2+',left='+(screen.width-550)/2+', toolbar=no, menubar=no, scrollbars=no,resizable=yes,location=no, status=no');})()"><img src="./hubei_files/logo16.png" alt="转帖到网易微博"></a>
</td>
</tr>
</tbody></table>
</div>
<div class="clear"></div>
</div><!--end in-->
</div><!--end cp-->
<div style="display:none">
<!--repaste.video.channel.begin-->channelId<!--repaste.video.channel.end-->
<!--repaste.bizId.begin-->1<!--repaste.bizId.end-->
<!--repaste.subBizId.begin-->1<!--repaste.subBizId.end-->
<!--repaste.contentType.begin-->1<!--repaste.contentType.end-->
</div>
<div class="md md_55494_01 has_ad_2">
<div class="md_hdc"><b></b></div>
<div class="md_hd"></div>
<script language="JavaScript">
var videopreview = '<ul></ul>';
if(videopreview.length > 10){
document.write('<div class="img_scroll" id="mousewheel" ><div class="img_left"><img src="http://www.cntv.cn/nettv/sports/image/roll_pic.jpg"/></div><div class="img_mid" id = "videoPreview" >');
document.write(videopreview);
document.write('</div><div class="img_right"><img src="http://www.cntv.cn/nettv/sports/image/roll_pic_r.jpg" /></div></div>');
}else{
document.getElementById("video_player").style.height="542px";
}
</script>
</div>
</div><!--播放器结束 end player-->
<script language="javascript">
if(document.getElementById("video_player").style.height=="602px"){
document.getElementById("video_player").style.height="565px";
}
if(document.getElementById("video_player").style.height=="542px"){
document.getElementById("video_player").style.height="565px";
}
</script>
<!--remian-->
</div><!--end top_title-->
<div id="side">
<!--右部包含页开始20110529-->
<div class="mw_custom">
<div class="vspace"></div>
<style type="text/css">
<!--
.md_bd .title_list_box ul.float_2col{font-size:12px;margin:8px -5px 8px 8px;height:1%;}
.md_bd .title_list_box ul.float_2col li{width:135px;margin-right:6px;float:left;line-height:23px;padding-left:10px}
-->
</style>
<!--画中画01开始-->
<div>
<!--AdForward Begin:-->
锘�<!-- /8962/web_cntv/dicengye_huazhonghua01 -->
<!-- <script type="text/javascript">
if (typeof dfp_subsite == "undefined") { dfp_subsite = ""}
if (typeof column_id == "undefined") { column_id = ""}
if (typeof sub_column_id == "undefined") {sub_column_id = ""}
document.write('<scr'+'ipt type="text/javasc'+'ript" src=//galaxy.bjcathay.com/s?z=cathay&c=149&_sz=313x260&_subsite='+dfp_subsite+'&_channel='+sub_column_id+'&_sorts='+column_id+'></scr'+'ipt>');
</script> -->
<!--AdForward End-->
</div>
<div class="vspace"></div>
<!--画中画01结束:-->
<div class="m1 m-b-10 fs_14 zoom1" style="height:270px">
<h2 class="fs_14">
<span class="more">
<a href="http://pinglun.cntv.cn/" class="more_btn" target="_blank">
更多
</a>
</span>
央视网评
</h2>
<ul class="m4">
<li>
<a href="http://opinion.cntv.cn/2013/02/24/ARTI1361693562570797.shtml" target="_blank"><img src="./hubei_files/137244_1361781980234.jpg" width="120" height="68" class="pic" alt=""></a>
<h3><a href="http://opinion.cntv.cn/2013/02/24/ARTI1361693562570797.shtml" target="_blank" class="cl29">不戴口罩的元宵节彰显责任</a></h3>
<p class="p1"><a href="http://opinion.cntv.cn/2013/02/24/ARTI1361693562570797.shtml" target="_blank"></a></p>
</li>
</ul>
<ul class="ul1-1 c-b">
<li><a href="http://opinion.cntv.cn/2013/02/24/ARTI1361670206673759.shtml" target="_blank">第650期:谁来医治“环保焦虑症”</a></li>
<li><a href="http://opinion.cntv.cn/2013/02/22/ARTI1361526926083272.shtml" target="_blank">第649期:无视公厕现状谈苍蝇是本末倒置 </a></li>
<li><a href="http://opinion.cntv.cn/2013/02/21/ARTI1361447147955671.shtml" target="_blank">第648期:环保逼出真相才能唤回碧水蓝天</a></li>
<li><a href="http://opinion.cntv.cn/2013/02/20/ARTI1361357105106918.shtml" target="_blank">第647期:别让社会信用体系成医改羁绊</a></li>
<li><a href="http://opinion.cntv.cn/2013/02/19/ARTI1361271566930576.shtml" target="_blank">第646期:何时有能力实现带薪假? </a></li>
<li><a href="http://opinion.cntv.cn/2013/02/18/ARTI1361188421313773.shtml" target="_blank">第645期:严控以人查房因何引热议</a></li>
</ul>
</div><!--防止文件为空不发外网-->
<!--文字链01开始:-->
<!-- 文字链01 -->
<!--AdForward Begin:-->
<!-- web_cntv/dicengye_wenzilian02 -->
<div id="div-gpt-ad-wenzilian02">
<iframe marginheight="0" marginwidth="0" frameborder="0" width="313" height="165" scrolling="no" id="dicengye_wenzilian02_1" src="./hubei_files/saved_resource(1).html">
</iframe>
<script type="text/javascript">
function hide_dicengye_wenzilian02(){document.getElementById("div-gpt-ad-wenzilian02").style.display="none";}
document.getElementById('dicengye_wenzilian02_1').src="http://pubads.g.doubleclick.net/gampad/adx?iu=/8962/web_cntv/dicengye_wenzilian02&t=subsite%3D"+dfp_subsite+"%26channel%3D"+sub_column_id+"%26sorts%3D"+column_id+"&sz=1x1&c="+(new Date()).getTime();
</script>
</div>
<!--AdForward End-->
<div class="vspace"></div>
<!--文字链01结束:-->
<div class="m1 m-b-10 fs_14 zoom1" style="height:280px">
<h2 class="fs_14">
<span class="more">
<a href="http://bbs.cntv.cn/forum-932-1.html" class="more_btn" target="_blank">
更多
</a>
</span>
今日话题
</h2>
<ul class="m4">
<li>
<a href="http://news.cntv.cn/special/wywy2012/445/index.shtml" target="_blank"><img src="./hubei_files/149789_1359901613340.jpg" width="100" height="56" class="pic" alt="#"></a>
<h3><a href="http://news.cntv.cn/special/wywy2012/445/index.shtml" target="_blank">网言网语</a></h3>
<p class="p1 cl66">病童候诊痛苦躺地无人让,悲!</p>
</li>
<li>
<a href="http://mindiao.cntv.cn/diaocha/guozu/index.shtml" target="_blank"><img src="./hubei_files/149776_5023_1360142829570.jpg" width="100" height="56" class="pic" alt="#"></a>
<h3><a href="http://mindiao.cntv.cn/diaocha/guozu/index.shtml" target="_blank">民声调查</a></h3>
<p class="p1 cl66">您还看国足比赛吗?</p>
</li>
<li>
<a href="http://news.cntv.cn/special/wywy2012/444/index.shtml" target="_blank"><img src="./hubei_files/120891_1359806016006.jpg" width="100" height="56" class="pic" alt="#"></a>
<h3><a href="http://news.cntv.cn/special/wywy2012/444/index.shtml" target="_blank">网言网语</a></h3>
<p class="p1 cl66">交警拔枪逼停酒驾该不该?</p>
</li>
</ul>
<div class="clear"></div>
</div><!--防止文件为空不发外网-->
<!--文字链02开始:-->
<!-- 文字链02 -->
<!--文字链03结束:-->
<!-- 微博 -->
<div class="m1 m-b-10 fs_14 zoom1">
<h2 class="fs_14">
<span class="more"><a href="http://t.cntv.cn/">更多>></a></span>
微博推荐
</h2>
<ul class="p-list p-w120 md_list_5">
<li>
<a href="http://t.cntv.cn/topicList/%E4%B8%AD%E5%9B%BD%E5%9F%8E%E5%B8%82%E5%B9%B8%E7%A6%8F%E6%84%9F" target="_blank"><img width="120" height="68" src="./hubei_files/101047_3422_1383186716513.jpg" class="pic"></a>
<p class="p1"><a href="http://t.cntv.cn/topicList/%E4%B8%AD%E5%9B%BD%E5%9F%8E%E5%B8%82%E5%B9%B8%E7%A6%8F%E6%84%9F" target="_blank" class="cl29">中国城市幸福感</a></p>
</li>
<li>
<a href="http://t.cntv.cn/topicList/%E4%B8%8D%E5%AD%9D%E4%B8%83%E5%AE%97%E7%BD%AA" target="_blank"><img width="120" height="68" src="./hubei_files/100975_5238_1383186860959.jpg" class="pic"></a>
<p class="p1"><a href="http://t.cntv.cn/topicList/%E4%B8%8D%E5%AD%9D%E4%B8%83%E5%AE%97%E7%BD%AA" target="_blank" class="cl29">不孝七宗罪</a></p>
</li>
</ul>
<p class="md_p_3">
<a href="http://t.cntv.cn/talk" target="_blank" class="cl66">微访谈</a>
|
<a href="http://t.cntv.cn/live" target="_blank" class="cl66">微直播</a>
|
<a href="http://t.cntv.cn/pub" target="_blank" class="cl66">微广场</a>
|
<a href="http://t.cntv.cn/fame" target="_blank" class="cl66">名人墙</a>
|
<a href="http://t.cntv.cn/rank" target="_blank" class="cl66">排行榜</a>
</p>
<p class="md_p_4">
<a href="http://t.cntv.cn/show/49832103" target="_blank">• 橙子打蜡该如何识别</a>
<a href="http://t.cntv.cn/show/49817739" target="_blank">• 揭秘歼十研制全过程</a>
</p>
<p class="md_p_4">
<a href="http://t.cntv.cn/show/49831892" target="_blank">• 十种贵人可遇不可求 </a>
<a href="http://t.cntv.cn/show/49831564" target="_blank">• 抽烟是如何毁掉健康</a>
</p>
<p class="md_p_4">
<a href="http://t.cntv.cn/show/49825102" target="_blank">• 老人为病妻搭40米扶手</a>
<a href="http://t.cntv.cn/show/49831793" target="_blank">• 拒绝浪费从我做起</a>
</p>
<ul class="p-list p-w60 md_list_3">
<li>
<a href="http://t.cntv.cn/30630580" target="_blank"><img width="60" height="60" src="./hubei_files/110752_945_1376014528485.jpg" class="pic"></a>
<p class="p1"><a href="http://t.cntv.cn/30630580" target="_blank" class="cl29">美丽中国·湿地行</a></p>
</li>
<li>
<a href="http://t.cntv.cn/18027148" target="_blank"><img width="60" height="60" src="./hubei_files/110749_6432_1376014597904.jpg" class="pic"></a>
<p class="p1"><a href="http://t.cntv.cn/18027148" target="_blank" class="cl29">梦想星搭档</a></p>
</li>
<li>
<a href="http://t.cntv.cn/14114318" target="_blank"><img width="60" height="60" src="./hubei_files/110750_2330_1376014659628.jpg" class="pic"></a>
<p class="p1"><a href="http://t.cntv.cn/14114318" target="_blank" class="cl29">我要上春晚</a></p>
</li>
<li>
<a href="http://t.cntv.cn/21836214" target="_blank"><img width="60" height="60" src="./hubei_files/110754_8396_1376014728860.jpg" class="pic"></a>
<p class="p1"><a href="http://t.cntv.cn/21836214" target="_blank" class="cl29">开门大吉</a></p>
</li>
</ul>
</div><!--remian-->
<!-- 推荐博文开始 -->
<style type="text/css">
.m1 {
border: 1px solid #C7C7C7;
}
.zoom1 {
}
.m-b-10 {
margin-bottom: 10px;
}
.fs_14, .fs_14 a {
font-size: 14px;
}
.m1 h2.fs_14 {
font-size: 14px;
}
.m1 h2 {
background: url("http://p5.img.cctvpic.com/10/2012/10/18/C23582/img/m1-h2.gif") repeat-x scroll 0 0 transparent;
border-bottom: 1px solid #C7C7C7;
font-size: 12px;
height: 26px;
line-height: 26px;
padding-left: 17px;
}
.m1 h2 .more {
float: right;
font-family: "宋体";
font-weight: normal;
padding-right: 15px;
}
a{color:#000; text-decoration:none;}
a:link, a:visited{}
a:hover, a:active{text-decoration: underline;}
a.on:hover, a.cur:hover, .on a:hover, .cur a:hover{text-decoration:none;}
ul:after, ol:after {
clear: both;
content: ".";
display: block;
font-size: 0;
height: 0;
line-height: 0;
visibility: hidden;
}
.c-b {
clear: both;
}
.ul1-1 {
font-size: 14px;
height: 1%;
margin: 10px;
}
ul, ol {
list-style-type: none;
}
.ul1-1 li {
background: url("http://p5.img.cctvpic.com/10/2012/10/18/C23582/img/li1.gif") no-repeat scroll 0 10px transparent;
line-height: 23px;
padding-left: 10px;
}
.p-w80 {
margin-left: 3px;
}
.p-list {
}
.p-w80 li {
padding: 15px 6px;
width: 90px;
}
.p-list li {
float: left;
overflow: hidden;
}
.pic {
border: 1px solid #D9D9D9;
padding: 2px;
}
img {
display: block;
}
.p-list li .p1 {
margin-top: 5px;
text-align: center;
}
p {
line-height: 1.25em;
}
.cl29, a.cl29:link, a.cl29:visited {
color: #292929;
}
</style>
<div class="m1 m-b-10 fs_14 zoom1">
<h2 class="fs_14">
<span class="more"><a href="http://blog.cntv.cn/" target="_blank" class="more_btn">更多 >></a></span>
博客劲爆点
</h2>
<ul class="ul1-1 c-b">
<li><a href="http://blog.cntv.cn/10435555-4854978.html" target="_blank">盘点娱乐圈10大衰神附体的明星</a><br><a class="zcx" href="http://blog.cntv.cn/chenshouxue" target="_blank">陈守学</a></li>
<li><a href="http://blog.cntv.cn/10444953-4854434.html" target="_blank">男人出轨前最好要深思的三个问题</a><br><a class="zcx" href="http://blog.cntv.cn/10444953" target="_blank">宋宝和</a></li>
<li><a href="http://blog.cntv.cn/10416314-4854432.html" target="_blank">韩雪领衔拥有神秘身份背景的明星</a><br><a class="zcx" href="http://blog.cntv.cn/10416314" target="_blank">陈立飞飞哥</a></li>
<li><a href="http://blog.cntv.cn/11411288-4854814.html" target="_blank">新疆姑娘迪拉娜:把压力变成动力</a><br><a class="zcx" href="http://blog.cntv.cn/c416059802" target="_blank">悠然小卒</a></li>
<li><a href="http://blog.cntv.cn/9323279-4854674.html" target="_blank">专访青奥会俏主播陈滢:年轻真好</a><br><a class="zcx" href="http://blog.cntv.cn/hillwusax" target="_blank">小山和溪水</a></li>
</ul>
<ul class="p-list p-w80">
<li>
<a href="http://blog.cntv.cn/13923373-4854977.html" target="_blank"><img width="80" height="60" class="pic" src="./hubei_files/100100_1408673204070.jpg"></a>
<p class="p1"><a class="cl29" href="http://blog.cntv.cn/13923373-4854977.html" target="_blank">王宁:别人的故事难讲</a></p>
</li>
<li>
<a href="http://blog.cntv.cn/10525832-4854677.html" target="_blank"><img width="80" height="60" class="pic" src="./hubei_files/100096_1408673185952.jpg"></a>
<p class="p1"><a class="cl29" href="http://blog.cntv.cn/10525832-4854677.html" target="_blank">央视知性美女主播文馨</a></p>
</li>
<li>
<a href="http://blog.cntv.cn/14155333-4854734.html" target="_blank"><img width="80" height="60" class="pic" src="./hubei_files/100095_1408673171240.jpg"></a>
<p class="p1"><a class="cl29" href="http://blog.cntv.cn/14155333-4854734.html" target="_blank">智慧树:谨防芒果皮炎</a></p>
</li>
<li>
<a href="http://blog.cntv.cn/9356904-4854986.html" target="_blank"><img width="80" height="60" class="pic" src="./hubei_files/100102_1408587562665.jpg"></a>
<p class="p1"><a class="cl29" href="http://blog.cntv.cn/9356904-4854986.html" target="_blank">宋英杰:古人描述处暑</a></p>
</li>
<li>
<a href="http://blog.cntv.cn/10525832-4853868.html" target="_blank"><img width="80" height="60" class="pic" src="./hubei_files/100103_1408587575013.jpg"></a>
<p class="p1"><a class="cl29" href="http://blog.cntv.cn/10525832-4853868.html" target="_blank">张泉灵:完成冰桶挑战</a></p>
</li>
<li>
<a href="http://blog.cntv.cn/10435555-4853794.html" target="_blank"><img width="80" height="60" class="pic" src="./hubei_files/100101_1408587547189.jpg"></a>
<p class="p1"><a class="cl29" href="http://blog.cntv.cn/10435555-4853794.html" target="_blank">爆红网络十大正太萝莉</a></p>
</li>
</ul>
</div><!--remian-->
<!-- 推荐博文结束 -->
<div class="m1 m-b-10 fs_14" style="height:360px">
<h2 class="fs_14">
第一视频推荐
</h2>
<ul class="p-list p-w110 md_list_4">
<li>
<a href="http://news.v1.cn/mil/i/2012-12-4/135458895766v.shtml?vf=cntv" target="_blank"><img src="./hubei_files/101295_9537_1354591797360.jpg" class="pic" alt="#" width="110"></a>
<p class="p1"><a href="http://news.v1.cn/mil/i/2012-12-4/135458895766v.shtml?vf=cntv" target="_blank" class="cl29">解放军三体舰曝光</a></p>
</li>
<li>
<a href="http://news.v1.cn/mil/i/2012-12-4/135458695297v.shtml?vf=cntv" target="_blank"><img src="./hubei_files/104144_945_1354591948181.jpg" class="pic" alt="#" width="110"></a>
<p class="p1"><a href="http://news.v1.cn/mil/i/2012-12-4/135458695297v.shtml?vf=cntv" target="_blank" class="cl29">美国太空武器</a></p>
</li>
</ul>
<ul class="p-list p-w110 md_list_4">
<li>
<a href="http://news.cntv.cn/2013/01/03/PHOA1357178619880513.shtml" target="_blank"><img src="./hubei_files/100593_5169_1357184610838.jpg" class="pic" alt="#" width="110"></a>