-
Notifications
You must be signed in to change notification settings - Fork 0
/
wangyi.html
6533 lines (6476 loc) · 489 KB
/
wangyi.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>
<!--[if IE 6 ]> <html class="ne_ua_ie6 ne_ua_ielte8" id="ne_wrap"> <![endif]-->
<!--[if IE 7 ]> <html class="ne_ua_ie7 ne_ua_ielte8" id="ne_wrap"> <![endif]-->
<!--[if IE 8 ]> <html class="ne_ua_ie8 ne_ua_ielte8" id="ne_wrap"> <![endif]-->
<!--[if IE 9 ]> <html class="ne_ua_ie9" id="ne_wrap"> <![endif]-->
<!--[if (gte IE 10)|!(IE)]><!--> <html phone="1" id="ne_wrap"> <!--<![endif]-->
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gbk">
<meta name="google-site-verification" content="PXunD38D6Oui1T44OkAPSLyQtFUloFi5plez040mUOc" />
<meta name="baidu-site-verification" content="oiT8OEfzes" />
<meta name="360-site-verification" content="527ad00f66a93c31134d6a20b2246950" />
<meta name="shenma-site-verification" content="12c2d7067c72735f0bd75c8dcd26b0d8_1509937417"/>
<meta name="sogou_site_verification" content="tCLG1xJc76"/>
<meta name="model_url" content="http://www.163.com/special/0077rt/index.html" />
<title>网易</title>
<link rel="dns-prefetch" href="//static.ws.126.net" />
<base target="_blank" />
<meta name="Keywords" content="网易,邮箱,游戏,新闻,体育,娱乐,女性,亚运,论坛,短信,数码,汽车,手机,财经,科技,相册" />
<meta name="Description" content="网易是中国领先的互联网技术公司,为用户提供免费邮箱、游戏、搜索引擎服务,开设新闻、娱乐、体育等30多个内容频道,及博客、视频、论坛等互动交流,网聚人的力量。" />
<meta name="robots" content="index, follow" />
<meta name="googlebot" content="index, follow" />
<link rel="apple-touch-icon-precomposed" href="//static.ws.126.net/www/logo/logo-ipad-icon.png" >
<script type="text/javascript" _keep="true">
var matchStr =window.location.href;
var reURL = /^(https):\/\/.+$/;
if(!reURL.test(matchStr)){
window.location.href = "https://www.163.com/";
}
</script>
<script type="text/javascript" _keep="true">
(function() {
//if(/s=noRedirect/i.test(location.search)) return;
if(/AppleWebKit.*Mobile/i.test(navigator.userAgent) || (/MIDP|SymbianOS|NOKIA|SAMSUNG|LG|NEC|TCL|Alcatel|BIRD|DBTEL|Dopod|PHILIPS|HAIER|LENOVO|MOT-|Nokia|SonyEricsson|SIE-|Amoi|ZTE/.test(navigator.userAgent))) {
try {
if(/Android|Windows Phone|webOS|iPhone|iPod|BlackBerry/i.test(navigator.userAgent)) {
window.location.href = "https://3g.163.com";
} else if(/iPad/i.test(navigator.userAgent)) {
window.location.href = "https://www.163.com/ipad/";
}
} catch(e) {}
}
})();
//if(navigator.platform.indexOf("Mac") > -1) document.documentElement.classList.add("ua-mac");
</script>
<!-- 广告样式 -->
<style>
.channel_relative_2016{
position:relative;
line-height: 0px;
}
.channel_relative_2016_lh{
line-height: 0px;
}
.channel_ad_2016{
height: 17px;
display:none;
background: rgba(0,0,0,0.6);
background: #000\9;
color: #fff;
border-radius: 0 8px 0px 0px;
line-height: 17px;
width: 30px;
text-align: left;
overflow: hidden;
font-size: 12px;
font-family: Arial;
position:absolute;
left:0;
bottom:0;
z-index:3;
}
.channel_ad_text_2016{
position: absolute;
right: 1px;
bottom: -2px;
color: #999999;
z-index:3;
font-size: 12px;
font-family: Arial;
display:none;
line-height: 18px;
}
.channel_relative_2016 .channel_ad_2016,.channel_relative_2016 .channel_ad_text_2016{
display: inline-block;
}
</style>
<!-- 全站频道首页通用样式小图标v2.0 样式 -->
<style type="text/css" _keep="true">
/*列表前的小图标*/
.I_V_, .I_N_V_,.I_NV_, .I_A_, .I_N_G_, .I_N_PIC_,.I_PIC_, .I_C_, .I_R_, .I_SN_,.I_T_,.I_NM_,.I_L_,.I_TN_,.I_DV_{ padding:2px 0 2px 20px; background-image:url(http://static.ws.126.net/cnews/news2012/img/icons-new-v6.png); background-repeat:no-repeat; }
.I_V_, .I_N_V_,.I_NV_ { background-position:0 center; } /*视频小图标 Icon-video*/
.I_DV_ { background-position: -4400px center; } /*视频小图标黑色 Icon-video-dark*/
.I_A_, .I_N_G_ { background-position:-440px center; }/*图集小图标 Icon-news-gallery*/
.I_N_PIC_,.I_PIC_ { background-position:-880px center; }/*图片小图标 Icon-news-picture*/
.I_C_ { background-position:-1320px center; } /*评论小图标Icon-comment*/
.I_R_ { background-position:-1760px center; }/*专题小图标 Icon-report*/
.I_SN_ { background-position:-2200px center; } /*滚动小图标 Icon-scroll-news*/
.I_T_{background-position:-2640px center;} /*访谈小图标*/
.I_NM_ { background-position:-3080px center; } /*试听小图标*/
.I_L_ { background-position:-3520px center; } /*live直播小图标 Icon-live*/
.I_TN_ { background-position:-3960px center; } /*头条小图标 Icon-top-news*/
/*列表前的小图标*/
</style>
<link rel="stylesheet" href="https://static.ws.126.net/163/f2e/www/index20170701/css/head~f9b917c166435.css">
</head>
<body ne-plugin="/modules/plugins/lazyload/lazyload.js">
<!--[if lte IE 8]><![endif]-->
<div class="index2017_wrap" ne-module="/www/index20170701/modules/index2017.js" ne-class="{{myState.isNs9 ? 'index2017_960_wrap' : 'index2017_1200_wrap'}}" id="js_index2017_wrap">
<script type="text/javascript" _keep="true">
var js_index2017_wrap = document.getElementById("js_index2017_wrap");
var winWidth = window.innerWidth || document.documentElement.clientWidth;
if (!("classList" in document.documentElement)) {
Object.defineProperty(HTMLElement.prototype, 'classList', {
get: function() {
var self = this;
function update(fn) {
return function(value) {
var classes = self.className.split(/\s+/g),
index = classes.indexOf(value);
fn(classes, index, value);
self.className = classes.join(" ");
}
}
return {
add: update(function(classes, index, value) {
if (!~index) classes.push(value);
}),
remove: update(function(classes, index) {
if (~index) classes.splice(index, 1);
}),
toggle: update(function(classes, index, value) {
if (~index)
classes.splice(index, 1);
else
classes.push(value);
}),
contains: function(value) {
return !!~self.className.split(/\s+/g).indexOf(value);
},
item: function(i) {
return self.className.split(/\s+/g)[i] || null;
}
};
}
});
}
if(winWidth < 1420 || /\?narrow/.test(location.search)) {
js_index2017_wrap.classList.add("index2017_960_wrap");
}
</script>
<!-- festival_wrap_qp 第二套方案全飘 -->
<div >
<!-- 节日动画 start -->
<!-- 节日动画 end -->
<div class="common_nav">
<link rel="stylesheet" href="//static.ws.126.net/163/f2e/commonnav2019/css/commonnav_headcss-f6610810f3.css"/>
<!-- urs -->
<script _keep="true" src="https://urswebzj.nosdn.127.net/webzj_cdn101/message.js" type="text/javascript"></script>
<div class="ntes_nav_wrap" id="js_N_NTES_wrap">
<div class="ntes-nav" id="js_N_nav">
<div class="ntes-nav-main clearfix">
<div class="c-fl">
<a class="ntes-nav-index-title ntes-nav-entry-wide c-fl" href="http://www.163.com/" title="网易首页">网易首页</a>
<!-- 应用 -->
<div class="js_N_navSelect ntes-nav-select ntes-nav-select-wide ntes-nav-app c-fl">
<a href="http://www.163.com/#f=topnav" class="ntes-nav-select-title ntes-nav-entry-bgblack JS_NTES_LOG_FE">应用
<em class="ntes-nav-select-arr"></em>
</a>
<div class="ntes-nav-select-pop">
<ul class="ntes-nav-select-list clearfix">
<li>
<a href="http://m.163.com/newsapp/#f=topnav">
<span>
<em class="ntes-nav-app-newsapp">网易新闻</em>
</span>
</a>
</li>
<li>
<a href="http://open.163.com/#f=topnav">
<span>
<em class="ntes-nav-app-open">网易公开课</em>
</span>
</a>
</li>
<li>
<a href="https://hongcai.163.com/?from=pcsy-button">
<span>
<em class="ntes-nav-app-hongcai">网易红彩</em>
</span>
</a>
</li>
<li>
<a href="https://gulu.163.com">
<span>
<em class="ntes-nav-app-gulu-video">网易新闻视频版</em>
</span>
</a>
</li>
<li>
<a href="http://u.163.com/aosoutbdbd8">
<span>
<em class="ntes-nav-app-yanxuan">网易严选</em>
</span>
</a>
</li>
<li>
<a href="http://mail.163.com/client/dl.html?from=mail46">
<span>
<em class="ntes-nav-app-mail">邮箱大师</em>
</span>
</a>
</li>
<li class="last">
<a href="http://study.163.com/client/download.htm?from=163app&utm_source=163.com&utm_medium=web_app&utm_campaign=business">
<span>
<em class="ntes-nav-app-study">网易云课堂</em>
</span>
</a>
</li>
</ul>
</div>
</div>
</div>
<div class="c-fr">
<!-- 片段开始 -->
<div class="ntes-nav-quick-navigation">
<a href="javascript:void(0);" class="ntes-nav-quick-navigation-btn" id="js_N_ntes_nav_quick_navigation_btn" target="_self">
<em>快速导航
<span class="menu1"></span>
<span class="menu2"></span>
<span class="menu3"></span>
</em>
</a>
<div class="ntes-quicknav-pop" id="js_N_ntes_quicknav_pop">
<div class="ntes-quicknav-list">
<div class="ntes-quicknav-content">
<ul class="ntes-quicknav-column ntes-quicknav-column-1">
<li>
<h3><a href="https://news.163.com">新闻</a></h3>
</li>
<li>
<a href="http://news.163.com/domestic">国内</a>
</li>
<li>
<a href="http://news.163.com/world">国际</a>
</li>
<li>
<a href="http://news.163.com/photo">图片</a>
</li>
<li>
<a href="http://view.163.com">评论</a>
</li>
<li>
<a href="http://discovery.163.com">探索</a>
</li>
<li>
<a href="http://war.163.com">军事</a>
</li>
<li>
<a href="http://news.163.com/localnews/">本地新闻</a>
</li>
<li>
<a href="http://news.163.com/special/wangsansanhome/">王三三</a>
</li>
</ul>
<ul class="ntes-quicknav-column ntes-quicknav-column-2">
<li>
<h3><a href="http://sports.163.com">体育</a></h3>
</li>
<li>
<a href="http://sports.163.com/nba">NBA</a>
</li>
<li>
<a href="http://sports.163.com/cba">CBA</a>
</li>
<li>
<a href="http://sports.163.com/allsports">综合</a>
</li>
<li>
<a href="http://sports.163.com/zc">中超</a>
</li>
<li>
<a href="http://sports.163.com/world">国际足球</a>
</li>
<li>
<a href="http://sports.163.com/yc">英超</a>
</li>
<li>
<a href="http://sports.163.com/xj">西甲</a>
</li>
<li>
<a href="http://sports.163.com/yj">意甲</a>
</li>
</ul>
<ul class="ntes-quicknav-column ntes-quicknav-column-3">
<li>
<h3><a href="http://ent.163.com">娱乐</a></h3>
</li>
<li>
<a href="http://ent.163.com/star">明星</a>
</li>
<li>
<a href="http://ent.163.com/photo">图片</a>
</li>
<li>
<a href="http://ent.163.com/movie">电影</a>
</li>
<li>
<a href="http://ent.163.com/tv">电视</a>
</li>
<li>
<a href="http://ent.163.com/music">音乐</a>
</li>
<li>
<a href="http://ent.163.com/special/gsbjb/">稿事编辑部</a>
</li>
<li>
<a href="http://ent.163.com/special/focus_ent/">娱乐FOCUS</a>
</li>
<li><a href="http://ent.163.com/special/xbkhz/">星捕快</a></li>
</ul>
<ul class="ntes-quicknav-column ntes-quicknav-column-4">
<li>
<h3><a href="http://money.163.com">财经</a></h3>
</li>
<li>
<a href="http://money.163.com/stock">股票</a>
</li>
<li>
<a href="http://quotes.money.163.com/stock">行情</a>
</li>
<li>
<a href="http://money.163.com/chanjing">产经</a>
</li>
<li>
<a href="http://money.163.com/ipo">新股</a>
</li>
<li>
<a href="http://money.163.com/finance">金融</a>
</li>
<li>
<a href="http://money.163.com/fund">基金</a>
</li>
<li>
<a href="http://biz.163.com">商业</a>
</li>
<li>
<a href="http://money.163.com/licai">理财</a>
</li>
</ul>
<ul class="ntes-quicknav-column ntes-quicknav-column-5">
<li>
<h3><a href="http://auto.163.com">汽车</a></h3>
</li>
<li>
<a href="http://auto.163.com/buy">购车</a>
</li>
<li>
<a href="http://auto.163.com/depreciate">行情</a>
</li>
<li>
<a href="http://product.auto.163.com/finder">选车</a>
</li>
<li>
<a href="http://product.auto.163.com">车型库</a>
</li>
<li>
<a href="http://auto.163.com/news">行业</a>
</li>
<li>
<a href="http://auto.163.com/chezhu">用车</a>
</li>
<li>
<a href="http://auto.163.com/photo">汽车图片</a>
</li>
<li>
</li>
</ul>
<ul class="ntes-quicknav-column ntes-quicknav-column-6">
<li>
<h3><a href="http://tech.163.com">科技</a></h3>
</li>
<li>
<a href="http://tech.163.com/telecom/">通信</a>
</li>
<li>
<a href="http://tech.163.com/it">IT</a>
</li>
<li>
<a href="http://tech.163.com/internet">互联网</a>
</li>
<li>
<a href="http://tech.163.com/special/ydhlw">移动互联网</a>
</li>
<li>
<a href="http://tech.163.com/special/chzt">特别策划</a>
</li>
<li>
<a href="http://tech.163.com/special/wudaokou">五道口沙龙</a>
</li>
<li>
<a href="http://tech.163.com/special/yyzd">易语中的</a>
</li>
<li>
<a href="http://tech.163.com/special">专题</a>
</li>
</ul>
<ul class="ntes-quicknav-column ntes-quicknav-column-7">
<li>
<h3><a href="http://lady.163.com">女人</a></h3>
</li>
<li>
<a href="http://baby.163.com">亲子</a>
</li>
<li>
<a href="http://fashion.163.com/art">艺术</a>
</li>
<li>
<a href="http://fashion.163.com">时尚</a>
</li>
<li>
<a href="http://shoucang.163.com">收藏</a>
</li>
<li>
<a href="http://lady.163.com/sense">情感</a>
</li>
<li>
<a href="http://lady.163.com/astro">星座</a>
</li>
<li>
<a href="http://lady.163.com/beauty">美容</a>
</li>
</ul>
<ul class="ntes-quicknav-column ntes-quicknav-column-8">
<li>
<h3><a href="http://mobile.163.com">手机</a><span>/</span><a href="http://digi.163.com/">数码</a></h3>
</li>
<li>
<a href="http://mobile.163.com/mi">移动</a>
</li>
<li>
<a href="http://digi.163.com/pc">电脑</a>
</li>
<li>
<a href="http://product.mobile.163.com">手机库</a>
</li>
<li>
<a href="http://hea.163.com/">家电</a>
</li>
<li>
<a href="http://digi.163.com/smart">智能硬件</a>
</li>
<li>
<a href="http://digi.163.com/dc">相机</a>
</li>
<li>
<a href="http://v.mobile.163.com">手机视频</a>
</li>
<li>
</li>
</ul>
<ul class="ntes-quicknav-column ntes-quicknav-column-9">
<li>
<h3><a href="http://house.163.com">房产</a><span>/</span><a href="http://home.163.com">家居</a></h3>
</li>
<li>
<a href="http://bj.house.163.com">北京房产</a>
</li>
<li>
<a href="http://sh.house.163.com">上海房产</a>
</li>
<li>
<a href="http://gz.house.163.com">广州房产</a>
</li>
<li>
<a href="http://house.163.com/city">全部分站</a>
</li>
<li>
<a href="http://xf.house.163.com">楼盘库</a>
</li>
<li>
<a href="http://home.163.com/jiaju/">家具</a>
</li>
<li>
<a href="http://home.163.com/weiyu/">卫浴</a>
</li>
<li>
<a href="http://home.163.com/special/jiajuyigui">衣柜</a>
</li>
</ul>
<ul class="ntes-quicknav-column ntes-quicknav-column-10">
<li>
<h3><a href="http://travel.163.com">旅游</a></h3>
</li>
<li>
<a href="http://travel.163.com/outdoor">户外</a>
</li>
<li>
<a href="http://guizhou.travel.163.com">贵州</a>
</li>
<li>
<a href="http://travel.163.com/food">美食</a>
</li>
<li>
<a href="http://jingdian.travel.163.com/domestic/1000066937">四川</a>
</li>
<li>
<a href="http://jingdian.travel.163.com">景点</a>
</li>
<li>
<a href="http://jingdian.travel.163.com/domestic/1000066944">新疆</a>
</li>
<li>
<a href="http://travel.163.com/special/travellist/#f=endnav">专题</a>
</li>
<li>
<a href="http://jingdian.travel.163.com/domestic/1000066926/#f=endnav">西藏</a>
</li>
</ul>
<ul class="ntes-quicknav-column ntes-quicknav-column-11">
<li>
<h3><a href="http://edu.163.com">教育</a></h3>
</li>
<li>
<a href="http://edu.163.com/yimin">移民</a>
</li>
<li>
<a href="http://edu.163.com/kaoyan">考研</a>
</li>
<li>
<a href="http://edu.163.com/liuxue">留学</a>
</li>
<li>
<a href="http://edu.163.com/special/official">公务员</a>
</li>
<li>
<a href="http://edu.163.com/en">外语</a>
</li>
<li>
<a href="http://kids.163.com">中小学</a>
</li>
<li>
<a href="http://edu.163.com/gaokao">高考</a>
</li>
<li>
<a href="http://daxue.163.com">校园</a>
</li>
</ul>
<div class="ntes-nav-sitemap"><a href="http://sitemap.163.com/"><i></i>查看网易地图</a></div>
</div>
</div>
</div>
</div>
<div class="c-fr">
<div class="c-fl" id="js_N_navLoginBefore">
<div id="js_N_navHighlight" class="js_loginframe ntes-nav-login ntes-nav-login-normal">
<a href="http://reg.163.com/" class="ntes-nav-login-title" id="js_N_nav_login_title">登录</a>
<div class="ntes-nav-loginframe-pop" id="js_N_login_wrap">
<!--加载登陆组件-->
</div>
</div>
<div class="js_N_navSelect ntes-nav-select ntes-nav-select-wide JS_NTES_LOG_FE c-fl">
<a class="ntes-nav-select-title ntes-nav-select-title-register" href="https://mail.163.com/register/index.htm?from=163navi®Page=163">注册免费邮箱
<em class="ntes-nav-select-arr"></em>
</a>
<div class="ntes-nav-select-pop">
<ul class="ntes-nav-select-list clearfix" style="width:210px;">
<li>
<a href="https://reg1.vip.163.com/newReg1/reg?from=new_topnav&utm_source=new_topnav">
<span style="width:190px;">注册VIP邮箱(特权邮箱,付费)</span>
</a>
</li>
<li class="last JS_NTES_LOG_FE">
<a href="http://mail.163.com/client/dl.html?from=mail46">
<span style="width:190px;">免费下载网易官方手机邮箱应用</span>
</a>
</li>
</ul>
</div>
</div>
</div>
<div class="c-fl" id="js_N_navLoginAfter" style="display:none">
<div id="js_N_logined_warp" class="js_N_navSelect ntes-nav-select ntes-nav-logined JS_NTES_LOG_FE">
<span class="ntes-nav-select-title ntes-nav-logined-userinfo">
<span id="js_N_navUsername" class="ntes-nav-logined-username"></span>
<em class="ntes-nav-select-arr"></em>
</span>
<div id="js_login_suggest_wrap" class="ntes-nav-select-pop">
<ul id="js_logined_suggest" class="ntes-nav-select-list clearfix"></ul>
</div>
</div>
<a class="ntes-nav-entry-wide c-fl" target="_self" id="js_N_navLogout">安全退出</a>
</div>
</div>
<ul class="ntes-nav-inside">
<li>
<div class="js_N_navSelect ntes-nav-select c-fl">
<a href="http://www.163.com/newsapp/#f=163nav" class="ntes-nav-mobile-title ntes-nav-entry-bgblack">
<em class="ntes-nav-entry-mobile">移动端</em>
</a>
<div class="qrcode-img">
<a href="http://www.163.com/newsapp/#f=163nav">
<img src="//static.ws.126.net/f2e/include/common_nav/images/topapp.jpg">
</a>
</div>
</div>
</li>
<li>
<div class="js_N_navSelect ntes-nav-select c-fl">
<a id="js_love_url" href="https://open.163.com/" class="ntes-nav-select-title ntes-nav-select-title-huatian ntes-nav-entry-bgblack">
<em class="ntes-nav-entry-huatian">网易公开课</em>
<em class="ntes-nav-select-arr"></em>
<span class="ntes-nav-msg">
<em class="ntes-nav-msg-num"></em>
</span>
</a>
<div class="ntes-nav-select-pop ntes-nav-select-pop-huatian">
<ul class="ntes-nav-select-list clearfix">
<li>
<a href="https://vip.open.163.com">
<span>付费精品</span>
</a>
</li>
<li>
<a href="https://open.163.com/ted/">
<span>TED</span>
</a>
</li>
<li>
<a href="https://open.163.com/ocw/">
<span>国际名校公开课</span>
</a>
</li>
<li>
<a href="http://open.163.com/cuvocw/">
<span>中国大学视频公开课</span>
</a>
</li>
<li>
<a href="https://open.163.com/appreciation">
<span>赏课</span>
</a>
</li>
<li>
<a href="https://open.163.com/khan/">
<span>可汗学院</span>
</a>
</li>
<li class="last">
<a href="http://open.163.com/special/appdownload_pc/">
<span>下载公开课</span>
</a>
</li>
</ul>
</div>
</div>
</li>
<li>
<div class="js_N_navSelect ntes-nav-select c-fl">
<a id="js_lofter_icon_url" href="http://you.163.com/?from=web_fc_menhu_xinrukou_1" class="ntes-nav-select-title ntes-nav-select-title-lofter ntes-nav-entry-bgblack">
<em class="ntes-nav-entry-lofter">网易严选</em>
<em class="ntes-nav-select-arr"></em>
<span class="ntes-nav-msg" id="js_N_navLofterMsg">
<em class="ntes-nav-msg-num"></em>
</span>
</a>
<div class="ntes-nav-select-pop ntes-nav-select-pop-lofter">
<ul id="js_lofter_pop_url" class="ntes-nav-select-list clearfix">
<li>
<a href="https://act.you.163.com/act/pub/ABuyLQKNmKmK.html?from=planEE460F5FA536DE23plan&channel_type=2">
<span>爆品新人特价包邮</span>
</a>
</li>
<li>
<a href="http://you.163.com/manufacturer/list?from=web_fc_menhu_xinrukou_3">
<span>品牌制造商爆款</span>
</a>
</li>
<li>
<a href="http://you.163.com/item/recommend?from=web_fc_menhu_xinrukou_4">
<span>999+人气好评品</span>
</a>
</li>
<li>
<a href="http://you.163.com/flashSale/index?from=web_fc_menhu_xinrukou_5">
<span>限时特惠</span>
</a>
</li>
<li>
<a href="http://you.163.com/item/list?categoryId=1005000&from=web_fc_menhu_xinrukou_7">
<span>居家床品</span>
</a>
</li>
<li>
<a href="http://you.163.com/item/list?categoryId=1005001&from=web_fc_menhu_xinrukou_8">
<span>精致餐厨</span>
</a>
</li>
<li>
<a href="http://you.163.com/item/list?categoryId=1008000&from=web_fc_menhu_xinrukou_9">
<span>箱包鞋类</span>
</a>
</li>
<li>
<a href="http://you.163.com/item/list?categoryId=1010000&from=web_fc_menhu_xinrukou_10">
<span>经典服饰</span>
</a>
</li>
<li class="last">
<a href="http://you.163.com/item/list?categoryId=1005002&from=web_fc_menhu_xinrukou_11">
<span>健康美食</span>
</a>
</li>
</ul>
</div>
</div>
</li>
<li>
<div class="js_N_navSelect ntes-nav-select c-fl">
<a href="http://pay.163.com/" class="ntes-nav-select-title
ntes-nav-select-title-money ntes-nav-entry-bgblack">
<em class="ntes-nav-entry-money">支付</em>
<em class="ntes-nav-select-arr"></em>
</a>
<div class="ntes-nav-select-pop ntes-nav-select-pop-temp">
<ul class="ntes-nav-select-list clearfix">
<li>
<a href="http://pay.163.com/#f=topnav">
<span>一卡通充值</span>
</a>
</li>
<li>
<a href="http://ecard.163.com/script/index#f=topnav">
<span>一卡通购买</span>
</a>
</li>
<li>
<a href="https://k.163.com/?product=163&trackid=01">
<span>网易白金卡</span>
</a>
</li>
<li>
<a href="https://epay.163.com/">
<span>我的网易支付</span>
</a>
</li>
<li>
<a href="https://3c.163.com/?from=wangyimenhu16">
<span>网易智造</span>
</a>
</li>
<li class="last">
<a href="http://lq.163.com?from=neteasemoney">
<span>网易来钱-借现金</span>
</a>
</li>
</ul>
</div>
</div>
</li>
<li>
<div class="js_N_navSelect ntes-nav-select c-fl">
<a href="http://baoxian.163.com/car/?from=mhgwc" class="ntes-nav-select-title
ntes-nav-select-title-cart ntes-nav-entry-bgblack">
<em class="ntes-nav-entry-cart">电商</em>
<em class="ntes-nav-select-arr"></em>
</a>
<div class="ntes-nav-select-pop ntes-nav-select-pop-temp">
<ul class="ntes-nav-select-list clearfix">
<li>
<a href="http://you.163.com?from=web_in_wydaohang">
<span>严选</span>
</a>
</li>
<li class="last">
<a href="http://lq.163.com?from=neteasebuy">
<span>我要借钱</span>
</a>
</li>
</ul>
</div>
</div>
</li>
<li>
<div class="js_N_navSelect ntes-nav-select c-fl">
<a id="js_mail_url" class="ntes-nav-select-title
ntes-nav-select-title-mail ntes-nav-entry-bgblack">
<em class="ntes-nav-entry-mail">邮箱</em>
<em class="ntes-nav-select-arr"></em>
<span class="ntes-nav-msg" id="js_N_navMailMsg">
<em class="ntes-nav-msg-num" id="js_N_navMailMsgNum"></em>
</span>
</a>
<div class="ntes-nav-select-pop ntes-nav-select-pop-mail">
<ul class="ntes-nav-select-list clearfix">
<li>
<a href="http://email.163.com/#f=topnav">
<span>免费邮箱</span>
</a>
</li>
<li>
<a href="http://vipmail.163.com/#f=topnav">
<span>VIP邮箱</span>
</a>
</li>
<li>
<a href="http://qiye.163.com/#f=topnav">
<span>企业邮箱</span>
</a>
</li>
<li>
<a href="https://mail.163.com/register/index.htm?from=ntes_nav®Page=163">
<span>免费注册</span>
</a>
</li>
<li class="last">
<a href="http://mail.163.com/dashi/dlpro.html?from=mail46">
<span>客户端下载</span>
</a>
</li>
</ul>
</div>
</div>
</li>
</ul>
</div>
</div>
</div>
</div>
<script src="//static.ws.126.net/163/f2e/commonnav2019/js/commonnav_headjs-125e1cbda2.js"></script>
<!-- 导航结束 -->
</div>
<div class="ne_area ne_index_area " ne-plugin="/www/index20170701/js/plugins/modvisible.js">
<!-- 网易首页顶通 -->
<div class="cm_area ns_area_top">
<div class="hd">
<h1>
<a href="http://www.163.com/">网易 有态度</a>
</h1>
<a id="wljd" class="wljd" href="http://www.12377.cn">网络监督专区</a>
<div class="head_ad">
<!--450*40-->
<div style="position:relative;height:40px;">
<a href="http://gb.corp.163.com/gb/legal.html" class="ad_hover_href"></a>
<iframe _src="https://g.163.com/r?site=netease&affiliate=homepage&cat=homepage&type=logo450x40&location=1" width="450" height="40" frameborder="0" border="0" marginwidth="0" marginheight="0" scrolling="no" class="cmIframe_js_ad"></iframe>
</div>
</div>
</div>
<div class="bd">
<!-- 配置定向城市 -->
<script type="text/javascript" _keep="true">
var HouseNavBendiTxt = {
"province": [
{
"name": "北京市",
"shortName": "北京",
"url":"http://bj.news.163.com/"
},
{
"name": "上海市",
"shortName": "上海",
"url":"http://sh.news.163.com/"
},
{
"name": "天津市",
"shortName": "天津",
"url":"http://tj.news.163.com/"
},
{
"name": "广东省",
"shortName": "广东",
"url":"http://gd.news.163.com/"
},
{
"name": "江苏省",
"shortName": "江苏",
"url":"http://js.news.163.com/"
},
{
"name": "浙江省",
"shortName": "浙江",
"url":"http://zj.news.163.com/"
},
{
"name": "四川省",
"shortName": "四川",
"url":"http://sc.news.163.com/"
},
{
"name": "黑龙江省",
"shortName": "黑龙江",
"url":"http://hlj.news.163.com/"
},
{
"name": "吉林省",
"shortName": "吉林",
"url":"http://jl.news.163.com/"
},
{
"name": "辽宁省",
"shortName": "辽宁",
"url":"http://liaoning.news.163.com/"
},
{
"name": "内蒙古自治区",
"shortName": "内蒙古",
"url":"http://hhht.news.163.com/"
},
{
"name": "河北省",
"shortName": "河北",
"url":"http://hebei.news.163.com/"
},
{
"name": "河南省",
"shortName": "河南",
"url":"http://henan.163.com/"
},
{
"name": "山东省",
"shortName": "山东",
"url":"http://sd.news.163.com/"
},
{
"name": "陕西省",
"shortName": "陕西",
"url":"http://shanxi.news.163.com/"
},
{
"name": "甘肃省",
"shortName": "甘肃",
"url":"http://gs.news.163.com/"
},
{
"name": "宁夏回族自治区",
"shortName": "宁夏",
"url":"http://ningxia.news.163.com/"
},
{
"name": "新疆维吾尔自治区",
"shortName": "新疆",
"url":"http://xj.news.163.com/"
},
{
"name": "安徽省",
"shortName": "安徽",
"url":"http://ah.news.163.com/"
},
{
"name": "福建省",
"shortName": "福建",
"url":"http://fj.news.163.com/"
},
{
"name": "广西壮族自治区",
"shortName": "广西",
"url":"http://gx.news.163.com/"
},
{
"name": "重庆市",
"shortName": "重庆",
"url":"http://chongqing.163.com/"
},
{
"name": "湖北省",
"shortName": "湖北",
"url":"http://hb.news.163.com/"
},
{
"name": "江西省",
"shortName": "江西",
"url":"http://jx.news.163.com/"
},
{
"name": "海南省",
"shortName": "海南",
"url":"http://hn.news.163.com/"
},
{
"name": "贵州省",
"shortName": "贵州",
"url":"http://gz.news.163.com/"
},
{
"name": "云南省",
"shortName": "云南",
"url":"http://yn.news.163.com/"
},
{
"name": "湖南省",
"shortName": "上海",