-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patheastmoney-index.html
2652 lines (2425 loc) · 241 KB
/
eastmoney-index.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">
<!--published at 2015-08-31 10:08:01 in #24 by [20121001]-->
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>东方财富网:中国财经第一门户,提供专业的财经、股票、行情、证券、基金、理财、银行、保险、信托、期货、黄金、股吧、博客等各类财经资讯及数据</title>
<meta name="keywords" content="股票,财经,证券,金融,港股,行情,基金,债券,期货,外汇,保险,银行,博客,股吧,财迷,论坛,数据,stock,quote,news,fund,bank,blog,data,bbs" />
<meta name="description" content="东方财富网,中国访问量最大影响力最大的互联网财经媒体,提供7*24小时财经资讯及全球金融市场报价,汇聚全方位的综合财经新闻和金融市场资讯,覆盖股票、财经、证券、金融、美股、港股、行情、基金、债券、期货、外汇、保险、信托、黄金、理财、商业、银行、博客、股吧、财迷、论坛等财经综合信息" />
<meta name="verify-v1" content="4OotIqOe2/hY8CTV9J3OPXM1Xhz8P7vD/FJVXHO7xMo=" />
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" />
<meta http-equiv="Content-Language" content="zh-CN" />
<meta http-equiv="Cache-Control" content="no-cache" />
<meta http-equiv="Expires" content="-1" />
<meta http-equiv="refresh" content="1200" />
<meta name="baidu-site-verification" content="zyr8IXTbh1yML3RW" />
<meta name="sogou_site_verification" content="e52eJYylA9"/>
<meta property="qc:admins" content="134507044665134576516375" />
<link rel="shortcut icon" type="image/x-icon" href="http://g1.dfcfw.com/g1/special/favicon_shortcut.ico" />
<link rel="apple-touch-icon" href="http://g1.dfcfw.com/g1/special/Apple_ico.png" />
<style type="text/css">
/*Reset*/
body,div,ul,ol,dl,li,h1,h2,h3,h4,h5,form,input,button { margin:0; padding:0;}
img { border: 0;}
h1,h2,h3,h4,h5 { font-size:100%; font-weight:normal;}
input,button { font-family:inherit; font-size:inherit; font-style:inherit; font-weight:inherit;}
body { background-color:#FFF; font-size:12px; font-family:"SimSun","宋体","Arial Narrow",HELVETICA; padding-top:38px;-webkit-text-size-adjust:100%}
ul { list-style:none;}
:focus { outline:0;}
a { color:#039; text-decoration:underline;}
a:hover { color:#ff4901 !important;}
.red { color:#e30000;}
a .red, a.red, .red a {color:#ff4901;}
.black,.black a { color:#000;}
.green,.green a { color:#007130;}
.lightblue,.lightblue a { color:#2860FF;}
.gray { color:#bfbfbf;}
.gray a { color:#3f3f3f; text-decoration:none;}
.gray a:hover { text-decoration:underline;}
.bold {font-weight:bold;}
/*容器*/
.wrap { width:950px; margin:0 auto; clear:both;}
.mt0 { margin-top:0 !important;}
.mt7 { margin-top:7px;}
.mt8 { margin-top:8px;}
.mt10 { margin-top:10px;}
.spacer8 { clear:both; height:8px; overflow:hidden;}
.hidden { display:none;}
/*背景&元素*/
/*body { background:url(images/index.png) no-repeat 50% 0;}*/
.topNav ul,
.searchBar button,
.quoteLinks { background:url(http://g1.dfcfw.com/g1/201305/20130524100549.png) repeat-x;}
.logoIco,
.stockNav .flink,.cft-link,
.fl-bx,
.linkArea dt a,
.nlist li,
.fundlink a,.fund-kaihu,.fundbuy-link,
.rlist cite,
.titBar .btn-refresh,
.down-menu .category,.userinfo a.usernick,
.imgList-dot span,
.login-unite a,
.loginArea-title i,
.login-left .tel,
.footer-msg,.footer-icp,.footer-police,.footer-zx110,.footer-shjubao,.footer-cxzx,.footer-shgs,.footer-hgwb { background:url(http://g1.dfcfw.com/g1/201507/20150710170322.png) no-repeat;}
/*盒子*/
.layout168,.layout600,.layout250,.layout340,.layout690 { float:left;}
.layout168,.layout600 { margin-left:7px;}
.layout340,.layout690 { margin-left:10px;}
.layout168.nml,.layout340.nml { margin-left:0;}
.layout168 { width:168px;}
.layout600 { width:600px;}
.layout250 { width:250px;}
.layout340 { width:340px;}
.layout690 { width:690px;}
.lyad{font-size:0;background-color:#FFF;}
.h60{height:60px; overflow:hidden;}
.h90{height:90px; overflow:hidden;}
.h160{height:160px; overflow:hidden;}
.g235{height:235px; overflow:hidden;}
.h90 .lyad { height:90px;}
.titBar { height:29px; border-top:2px solid #ff4901; border-bottom:1px solid #ffdacc; background-color:#f3f3f3;}
.titBar h4 { color:#3f3f3f; float:left; font-size:14px; margin-left:10px; font-weight:bold; margin-top:6px; display:inline; height:18px; line-height:18px;}
.titBar h4 a { color:#3f3f3f; text-decoration:none;}
.titBar h4 a:hover { text-decoration:underline;}
.layout250 .titBar { border-top:2px solid #595959; border-bottom:1px solid #d4d4d4;}
.titBar.blue { border-top-color:#3a5e95; border-bottom-color:#d3dcea;}
.titBar .more { padding:0 6px 0 0; color:#bfbfbf; float:right;}
.titBar .btn-refresh{ margin:9px 6px 0 0; padding-left:16px; color:#535353; float:right; background-position:-124px -104px;}
.titBar .lcy,.titBar .rcy { height:29px; overflow:hidden; margin-left:10px; padding-right:0;}
.titBar .lcy { float:left;}
.titBar .rcy { float:right; margin-left:0;}
.titBar div.txt { float:right; padding-top:8px; padding-left:10px;}
/*内容区域*/
.content { clear:both; border:1px solid #efefef; border-top:0;}
.nlist { clear:both; color:#a0a0a0; font-size:14px; padding:8px 8px 8px 4px;}
.nlist li { background-position:-202px -318px; height:24px; line-height:24px; overflow:hidden; text-indent:16px;}
/*.nlist li.video { background-position:-620px -92px; text-indent:8px;}
.nlist h3 { font-size:18px; height:24px; line-height:24px; padding:4px 0 2px;}
.nlist p { margin:0 0 1px; padding:0; text-align:center; height:24px; line-height:24px; font-size:12px; }
.nlist p a { color:#6b6b6b;}
.nlist p a:hover { color:#c00;}*/
.nlist cite { float:right; font-style:normal; font-size:12px; color:#7f7f7f;}
.nlist.pb6 { padding-bottom:6px;}
.layout250 .content,.layout690 .tb-ggyb { border-color:#d4d4d4;}
.layout250 .nlist { font-size:12px; padding:6px 8px 6px 4px;}
.layout250 .nlist li { font-size:12px; background-position:-202px -319px; height:22px; line-height:22px;}
.layout250 .nlist a { color:#535353;}
.ilist { clear:both; font-size:14px; padding:10px 8px 0 4px; overflow:hidden; height:66px;}
.ilist ul { float:left; height:66px;}
.ilist li { height:24px; line-height:24px; overflow:hidden; text-indent:10px;}
.ilist .img { float:left; margin-right:8px;}
/*.ilist .img img { border:1px solid #fff;}*/
.twBull.ilist { padding:8px 8px 5px 4px;/* height:89px;*/}
.twBull.ilist ul { height:auto; width: 200px; overflow: hidden;}
/*头条*/
h1,h2,h3 { font-size:20px; font-family:'黑体','宋体'; text-align:center;}
h1 a,h2 a,h3 a { margin:0;}
.bulllink h1, .bulllink h2, .bulllink h3{ margin-bottom:1px; height:21px; line-height:21px; }
.headlines {padding:4px 5px 0; color:#039;}
.headlines li { float:none; display:block; height:24px; line-height:24px; text-align:center; color:#888;}
.headlines h1 { padding:10px 0 4px;}
.headlines h2, .headlines h3 { padding:8px 0 4px;}
/*.headlines li a {margin-right:3px;}*/
.headlines .tbull{ text-align:center; margin-top:1px; padding:4px 0;height:22px;line-height:22px;border-top:1px solid #ededed;}
.headlines .tbull a { margin:0 3px;}
.scl-news { height:29px; line-height:30px;border-top:1px solid #ededed; overflow:hidden;}
.scl-news span { float:left;width:264px;}
.scl-news .name { width:60px; text-align:center; color:#393939; background-color:#ededed; margin-right:6px; display:inline;}
.scl-news .name a { display:block;}
.scl-news cite { color:#999; font-style:normal;}
/*图文布告*/
.twBull { height:96px; overflow:hidden; /*margin-bottom:4px;*/}
.twBull .img { float:left; width:111px; height:90px; line-height:24px; font-size:12px; text-align:center; background-color:#3f3f3f; color:#fff; overflow:hidden; margin:2px 2px 0 5px; text-decoration:none;}
.twBull .img:hover { text-decoration:underline; color:#fff !important;}
/*.twBull.blue .img { background-color:#35588d;}*/
.tw250 { padding:5px; padding:5px 0 4px 4px;}
.tw250 .img { margin-right:5px; float:left;}
.tw250 ul { font-size:12px; width:162px; overflow:hidden;}
.tw250 li { text-indent:16px;}
.tw250 .title { float:left; font-weight:bold; margin:5px 0 0 4px;}
.tw250 .info { float:left; width:154px; line-height:22px; margin:5px 0 0 4px; overflow:hidden; }
.tw-dashed { border-bottom:1px dashed #c9c9c9; margin-bottom:4px; padding-bottom:8px;}
.tw-dashed .title { margin-top:0;}
/*标签模型*/
.tabCon { clear:both; }
/*标签区域*/
.tabCon .tabs { height:30px; background-color:#f3f3f3; border:1px solid #ffdacc; border-left:none; border-right:none; position:relative;}
.tabCon .tabs ul { height:32px; overflow:hidden; float:left; position:absolute; top:-1px; z-index:999;}
.tabCon .tabs li { float:left; height:30px; border:1px solid #ffdacc; overflow:hidden;}
.tabCon .tabs .more { float:right;}
.more .titSear { margin:5px 4px 0 0;}
.more .titSear input { width:92px;}
.more .titSear .btnn { float:left; background-color:#959595; margin-left:0; border:none; padding:2px 0;}
.more .titSear .btnn button { background-color:#959595; color:#fff;}
/*.more .orange {}
.more .orange .btnn { background-color:#ff4901;}
.more .orange .btnn button { background-color:#ff4901;}*/
/*三门*/
.tabCon .triple ul { padding-left:1px !important; padding-left:2px;}
.tabCon .triple li { margin-left:-1px; position:relative; z-index:0}
.tabCon .tabs h4 { float:left; width:88px; height:32px; overflow:hidden; text-align:center;}
.tabCon .tabs li.at{ border-top:2px solid; border-color:#ff4901; background-color:#fff; z-index:2;}
.tabCon .tabs li.at h4 { background-color:#fff;}
.tabCon .tabs h4 a { height:32px; font:bold 14px/32px '宋体'; display:block; color:#3f3f3f; text-decoration:none;}
.tabCon .tabs h4 a:hover{ text-decoration:underline;}
.layout250 .tabCon .tabs { border-color:#d4d4d4;}
.layout250 .tabCon .tabs li{ border-color:#d4d4d4;}
.layout250 .tabCon .tabs li.at{ border-color:#595959;}
.tabCon .ul-w123 li h4 { width:123px;}
.tabCon .tabs h4.w82 { width:82px; background:none; }
.tabCon .tabs h4.w82 a { margin-left:0;}
.tabCon .tabs ul#cjdd_24hour { z-index:9 !important;}
.tabCon .tabs ul#cjdd_24hour li h4 { width:100px;}
.cjdd_24hour_more { width:120px; height:29px; overflow:hidden; }
/*热门*/
.hot-list-box { font-size:12px; margin:43px 0 1px 4px; position: relative;}
.hot-list-box dl { margin:0;}
.hot-list-box dt { padding:1px 2px;}
.hot-list-box dt span { height:20px; line-height:20px; display:inline-block; width:58px;}
.hot-list-box ul.tabs { height:26px; border:none; border-bottom:1px solid #d3dcea; background:none; width:340px; position:absolute; top:-35px; left:-10px; margin-left:1px; }
.hot-list-box ul.tabs li { height:26px; width:92px; display:inline-block; position: relative; border:none !important; background:none; text-indent:0; overflow:visible; font-weight:bold;}
.hot-list-box ul.tabs li a { height:24px; line-height:24px; width:90px; display:block; position:absolute; background-color:#f3f3f3; text-align:center; border:1px solid #d3dcea; border-bottom:none; padding-top:1px; overflow:hidden; color:#3f3f3f; text-decoration:none;}
.hot-list-box ul.tabs li a:hover { text-decoration:underline;}
.hot-list-box ul.tabs li.at a { height:25px; border-top:2px solid; border-color:#3a5e95; background-color:#fff; padding-top:0;}
.hot-list-box .txtbull li { height:22px; line-height:22px; background-position: -206px -318px; text-indent: 12px;}
/*衍生热门*/
.hot-list-box-out { margin:0; padding-top:26px; width:100%; }
.hot-list-box-out ul.tabs { width:689px; top:0; left:0; padding-left:0; margin-left:1px;}
.hot-list-box-out ul.tabs li { margin-left:-1px; z-index:0; float:left;}
.hot-list-box-out ul.tabs li.at { z-index:1;}
.header { margin-top: 5px;}
/*LOGO*/
.logoArea { float:left; width:175px;}
.logoIco { float:left; width:175px; height:78px; overflow:hidden; /*text-indent:-999px;*/}
/*导航区域*/
.topNav { float:left; width:775px; height:78px; overflow:hidden; background:#FFF;}
/*导航菜单*/
.topNav ul { padding:0 1px 0 0; margin:0 3px 0 4px; background-position:right 10px; background-repeat:no-repeat; float:left; height:78px; }
.topNav ul.mu101 { margin-left:2px;}
.topNav ul.mu104 { background:none; margin-right:0; padding-right:0;}
.topNav li { /*height:28px;*/ overflow:hidden; height: 16px; margin: 7px 0 12px; line-height:14px; }
.topNav .mu101 li { width:206px;}
.topNav .mu103 li { width:172px;}
.topNav .mu102 li,.topNav .mu104 li { width:184px;}
.topNav li a { margin:0 8px 0 2px; color:#000; display:inline-block; text-decoration:none; }
.topNav li a:hover { text-decoration:underline; }
/*.topNav li span { display:inline-block; border-left:1px solid #d6d6d6; padding-left:7px;}*/
.topNav li i { font-style:normal;}
.topNav li .emphasize { color:#c00;}
.topNavD { clear:both; width:950px; height:37px; overflow:hidden; display:inline-block; }
.toplinks { float:right; display:inline-block; width:775px; background-color:#f3f3f3; color:#3f3f3f; height:28px; text-align:center; margin-top:9px; }
.toplinks a,.toplinks span { display:inline-block; color:#3f3f3f; margin:7px 2px 0; line-height:16px;}
.toplinks a.red { color:#ff4901;}
/*
.topcompany { color:#494949; width:167px; float:left; margin-top:3px; padding-left:8px;}
.topcompany a { color:#494949; text-decoration:none; cursor:pointer;}
.topcompany a:hover { color:#494949 !important; }
.topcompany .tc_row { height:18px; line-height:18px; display:block; }
.topcompany .tc_row strong { color:#000; margin:0 2px;}
.topcompany .tc_row span { float:left; width:90px;}
.topcompany .tc_row span.r { width:72px;}
*/
.top-stock-em { float:left; display:inline-block; width:167px; margin-right:8px; color:#3f3f3f; height:28px; text-align:center; margin-top:9px; background-color:#f3f3f3; }
.top-stock-em a { color:#494949; text-decoration:none; cursor:pointer; display:block;padding-top:7px;line-height: 16px; height:21px;}
.top-stock-em a:hover { color:#494949 !important; }
.top-stock-em a .red {color:#e30000 !important;}
.top-stock-em a .green {color:#007130 !important;}
.bulllinks { height:20px; padding:6px 0 4px; overflow:hidden; line-height:20px; text-align:center;}
.bulllinks a { margin:0 4px; display:inline-block; color:#3f3f3f;}
.toplinks a,.bulllinks a { text-decoration:none;}
.toplinks a:hover,.bulllinks a:hover { text-decoration:underline;}
.bulllinks .red a {color:#ff4901;}
/*行情中心*/
.stockNav { border:1px solid #4f75af; border-top:none; height:122px; position:relative; z-index:999;}
.stockNav a { text-decoration:none;}
.stockNav a:hover { text-decoration:underline;}
.stockNav .flink { float:left; display:inline-block; font-weight:bold; height:29px; border-right:1px solid #b5b5b5; padding:0 4px 0 20px; margin-left:4px; width:56px;}
.stockNav .flink a {color:#5a5a5a; display:inline-block; margin-top:8px; line-height:14px;/* line-height:17px;*/}
.quoteLinks .flink a {color:#FFF; margin-top:11px;}
.dataLinks .flink a {color:#ff4901;}
.quoteLinks,.globalLinks,.dataLinks,.hgtLinks { height:29px;line-height:29px;width:948px;}
.quoteLinks { background-position:0 -77px; height:33px; }
.globalLinks,.dataLinks,.hgtLinks { overflow:hidden; border-top:1px solid #4f75af;}
.globalLinks {}
.quoteLinks .flink { background-position:-200px 8px; height:33px; }
.globalLinks .flink{ background-position:-200px -26px; }
.dataLinks .flink{ background-position:-200px -56px; }
.hgtLinks .flink{ background-position:-202px -563px; color:#5a5a5a; }
.quoteLinks .dhMenu { color:#a0a0a0; float:left; padding:0; margin-left:5px; margin-top: 11px; line-height:14px;}
.quoteLinks .dhMenu a { color:#fff; margin:0 3px 0; height:16px; /* line-height:17px; overflow:hidden; display:inline-block;*/}
.searchBar { float:left; margin:7px 0 0 4px; display:inline;}
.searchBar input { float:left; -webkit-border-radius:0; -webkit-appearance:none; float:left; font-size:12px; border:1px solid #fdfff9; height:16px; line-height:16px; width:110px; color:#666; background-color:#fff; padding:2px 0 0 2px;}
.searchBar button{ float:left; margin:0 0 0 4px; width:51px; height:20px; line-height:21px; overflow:hidden; border:0; font-size:12px; color:#3f3f3f; vertical-align:middle; cursor: pointer; background-position:0 -112px;}
.globalStocks { float:left; width:597px; margin:8px 8px 0; overflow:hidden; height:16px; line-height:14px; /*line-height:21px;*/ }
.globalStocks a { text-decoration:none;}
.globalStocks span { margin-right:8px;}
.cft-link { float:right; width:98px; height:30px; line-height:31px; padding-left:24px; background-position:-200px -95px; overflow:hidden;}
.globalRight { float: right; width: 250px; height: 28px; }
.cft-download { width:250px; height:28px; background:url("http://g1.dfcfw.com/g2/201506/20150610154836.gif") -12px 1px no-repeat;}
.cft-download a { float:left; width:122px; height:28px; text-indent:-999px;}
.cft-download .cft-dl { width:162px; /*width:110px;*/ }
/* .cft-download .cftmb-dl { width:40px; margin-left:12px;} */
.cft-download .qdhq-dl { width:75px; margin-left:12px;}
.dataLinks .bulllinks { float:left; padding:0 0 0 2px; margin-top:8px; height:16px; line-height:14px;/* line-height:17px;*/ }
.dataLinks .bulllinks a { margin:0 4px 0 4px; color:#039;}
.dataLinks .bulllinks a.red { color:#ff4901;}
.hgtLinks .hgt { float:left; padding:0 6px 0 6px; margin-top:8px; height:16px; line-height:14px; width: 850px;/* line-height:17px;*/color:#333; }
.hgtLinks .hgt a { color:#039;text-decoration:underline;}
.hgtLinks .hgt i { display:inline-block; text-align:right; margin-right:2px;}
.hgtLinks .hgt i.hgt-numw { /*width:38px;*/}
.hgtLinks .hgt a i {text-decoration:underline;color:#494949 !important; cursor:pointer; font-weight:bold;}
.hgtLinks .hgt a i.red {color:#ff4901 !important;}
.hgtLinks .hgt a i.green {color:#007130 !important;}
.hgtLinks .hgt span, .hgtLinks .hgt i { font-style:normal;}
.hgtLinks .hgt span { float:left;}
.hgtLinks .hgt .hgt-hg,.hgtLinks .hgt .hgt-gg { width:50%; float:left; }
.hgt-hq-on,.hgt-hq-off {background:url("http://g1.dfcfw.com/g1/201501/20150106162510.gif") 0 0 no-repeat;display:inline-block; width:11px;text-indent:15px; margin:3px 4px 0; height:7px; font-weight:normal !important;}
.hgt-hq-on { background-position:0 -14px;}
.hgtLinks .hgt span.hgt-hq-state { margin-right:4px;}
.hgtLinks .hgt a.hgt-linktxt { }
/*焦点图*/
.actives { width:248px; height:161px; position:relative;border:1px solid #ccc;}
.actives ul { list-style:none;}
.actives li { float:left; width:248px; height:161px;z-index:0;position:absolute;}
.actives li a {display:block;color:#FFF !important;text-decoration:none;}
.actives li a:hover {color:#FFF !important;text-decoration:underline;}
.actives li i { position:absolute; font:18px "黑体"; height:28px; line-height:28px; overflow:hidden; width:100%; color:#FFF; z-index:199; bottom:19px; left:0;text-indent:8px;}
.actives li i.ibg { background-color:#000; filter:alpha(opacity=50); -moz-opacity:0.5; opacity:0.5; z-index:98; height:28px; overflow:hidden; width:100%; bottom:19px; left:0; }
.actives ol { position:absolute; bottom:0; right:0; z-index:99; float:left;}
.actives ol span {float:left; font-family:Verdana; margin-left:1px; height:18px; line-height:18px; width:20px; background:#000; -webkit-text-size-adjust: none;}
.actives ol span.at { background:#FF0000;}
.actives ol a { color:#FFF !important; float:left; text-align:center; text-decoration:none; font-size:10px; width:100%; display:block;}
.actives ol a:hover { text-decoration:none; background:#FF0000;}
/*基金推广*/
/*.fund-login{ padding:1px; border:1px solid #d4d4d4;}
.fl-title { background-color:#fff8cc; height:24px; line-height:24px; color:#343434; text-align:center;}
.fl-title a { display:block; color:#343434; }
.fl-bx { width:231px; height:74px; background-position:0 -394px; margin:10px auto;}
.fl-bx-link { overflow:hidden;}
.fl-bx-link a { float:left; width:114px; height:42px; text-indent:-999px;}
.fl-bx-kh { margin-left:3px;}
.fl-bx-link .fl-bx-bt { clear:both; margin-top:12px; width:231px; height:20px;}
.fl-link { width:232px; margin:0 auto;}
.fl-link div { height:25px; line-height:25px; text-align:center; color:#979797;}
.fl-link a { color:#535353;}
.fl-link .red a { color: #ff4901;}
.fl-link .fl-link-bb {border-top: 1px dashed #d4d4d4; height:24px; line-height:18px; padding-top:6px;}
.fl-link .fl-link-bb .txt{ width:134px;}
.fl-link .fl-link-bb .btnn {padding:0; border-color:#d84600;}
.fl-link .fl-link-bb .btnn button { background-color:#ee7e14; color:#fff; font-weight:bold; height:18px; line-height:19px; width:86px;}*/
/*Fund trade New*/
.fund-pop .fdp-box,.fdp-select-slider li,.fdp-box-blink .blink-jydl,.fdp-box-blink .blink-mfkh { background:url("http://g1.dfcfw.com/g2/201501/20150129115403.png") no-repeat;}
.fund-pop { border:1px solid #ff4901; height:273px; overflow:hidden;}
.fdp-title { background-color:#ff4901; height:29px; line-height:29px; color:#343434; text-align:center; margin:1px; margin-bottom:0px;}
.fdp-title a { display:block; color:#fff; font-size:14px; }
.fdp-title a:hover { color:#fff !important;}
.fund-pop .fdp-box { width:248px; height:243px;}
.fdp-box-btn { width:248px; height:100px;}
.fdp-box-blink { overflow:hidden; height:100px;}
.fdp-box-blink a { float:left; width:114px; height:42px; text-indent:-999px; margin-top:8px;}
.fdp-box-blink .blink-jydl { background-position:-9px -8px; margin-left:9px;}
.fdp-box-blink .blink-jydl:hover { background-position:-9px -328px;}
.fdp-box-blink .blink-mfkh { background-position:-126px -8px; margin-left:3px;}
.fdp-box-blink .blink-mfkh:hover { background-position:-126px -328px;}
.fdp-box-blink .blink-zylc { margin-top:6px; margin-left:9px; width:231px; clear:both;}
.fdp-select { height:143px; overflow:hidden;}
.fdp-select-slider { height:35px; overflow:hidden; padding:0 8px;}
.fdp-select-slider li { float:left; width:77px; height:35px; text-indent:-999px; cursor:pointer; position:relative;}
.fdp-select-slider li i.newest { background:url(http://g1.dfcfw.com/g2/201406/20140624092213.gif) no-repeat; position:absolute; right:-8px; top:0; height:23px; width:23px; overflow:hidden;}
.fdp-select-slider li a { display:block; height:35px; width:77px;}
.fdp-select-slider #fdp-hqb { background-position:-9px -243px;}
.fdp-select-slider #fdp-hqb.at { background-position:-9px -278px;}
.fdp-select-slider #fdp-dqb { background-position:-86px -243px;}
.fdp-select-slider #fdp-dqb.at { background-position:-86px -278px;}
.fdp-select-slider #fdp-zsb { background-position:-163px -243px;}
.fdp-select-slider #fdp-zsb.at { background-position:-163px -278px;}
.fdp-conts { width:220px; margin:0 auto;}
.fdp-conts .fdp-cont-main { height:86px; overflow:hidden; position:relative;}
.fdp-conts .fdp-cont-main a.mask { display:block; width:220px; height:86px; overflow:hidden; position:absolute; text-indent:-999px;filter:alpha(opacity=0);-moz-opacity:0;-khtml-opacity:0;opacity:0; background-color:#fff;}
.fdp-conts .l { float:left;}
.fdp-conts .r { float:right;}
.fdp-conts cite { font-style:normal; font-size:14px;}
.fdp-conts ul { clear:both;}
.fdp-conts ul li { color:#333; height:25px;}
.fdp-conts ul li span.txt { display:inline-block; text-align:right;}
.fdp-conts ul li cite { color:#ff6600; font-size:16px; font-weight:bold; font-style:normal; font-family:Arial,"宋体";}
.fdp-conts ul li cite.num { font-size:20px; margin:0 3px;}
.fdp-conts ul li cite.txt { font-size:14px;}
.fdp-conts .fdp-hqb-date { color: #666; height:24px; line-height:24px; margin-top:5px;}
.fdp-conts ul.hqb-data li span.txt { width:105px;}
.fdp-conts .fdp-dqb-date { color:#333; height:24px; line-height:24px; margin-top:5px;}
.fdp-conts .fdp-dqb-date cite { color:#666; margin:0 8px;}
.fdp-conts ul.dqb-data { height:25px;}
.fdp-conts ul.dqb-data li span.txt { width:30px;}
.fdp-conts .fdp-zsb-date { color:#666; height:24px; line-height:24px;}
.fdp-conts .fdp-zsb-date cite { color:#666; margin:0 8px;}
.fdp-conts ul.zsb-data li { height:20px; clear:both;overflow: hidden; float:left; width:220px;}
.fdp-conts ul.zsb-data li span {float:left; overflow:hidden; line-height:20px;}
.fdp-conts ul.zsb-data li span.txt { text-align:left; width:118px;}
.fdp-conts ul.zsb-data li span.jyn { color:#666;}
.fdp-conts ul.zsb-data li span.jynum { text-align:right; width:70px;}
.fdp-conts ul.zsb-data li cite.num { font-size:16px;}
.fdp-bottom { width:220px; height:18px; margin:0 auto; text-align:center; color:#999;}
.fdp-bottom a { vertical-align: top;}
.fdp-bottom a.f { margin-right:12px;}
.fdp-bottom span { vertical-align: top; margin:0 1px 0 3px;}
.fdp-bottom a.fundapplink { margin:0 0 0 24px;}
/*行情中心*/
.stockCenter { padding-top:1px;}
.sc-tabs { position:relative; width:250px; border-bottom:1px solid #7e7e7e; height:23px; }
.sc-tabs dl { position:absolute; width:100%; height:24px; top:0; left:0; padding-left:1px !important; padding-left:2px;z-index:0;}
.sc-tabs dl dt { float:left; height:22px; line-height:24px; overflow:hidden; background-color:#eee; border:1px solid #bdbdbd; border-bottom:0; text-align:center; background-position:0 -39px; margin-left:-1px; cursor:pointer; position:relative; z-index:1;}
.sc-tabs dl dt.at { height:22px; line-height:22px; background:none; background-color:#FFF; border-top:2px solid; border-color:#7e7e7e; z-index:2; }
.sc-tabs dl dt a { display:block; text-decoration:none; color:#000; width:40px;}
.sc-tabs dl dt.at a { color:#3f3f3f; font-weight:bold; width:43px;}
.sc-cont { border:1px solid #7e7e7e; border-top:0; background-color:#fff; position:relative;}
/*.sc-cont-tabs dt.at,.sc-cont-tabs dt.at span,*/
.sc-cont-tabs { height:21px; padding:5px 5px 0;}
.sc-cont-tabs dt,.sc-cont-tabs dd{ float:left;}
.sc-cont-tabs dd { margin:0 3px; color:#cbcbcb; line-height:19px;}
.sc-cont-tabs dt span { float:left; height:21px; line-height:18px; overflow:hidden;}
.sc-cont-tabs dt a { display:inline-block; height:17px; overflow:hidden; padding:0 3px; text-decoration:none; color:#3f3f3f; }
.sc-cont-tabs dt a:hover { color:#ff4901; }
.sc-cont-tabs dt.at span { background:url(http://g1.dfcfw.com/g1/201305/20130524100633.png) no-repeat center 17px;}
.sc-cont-tabs dt.at span a { background-color:#3a5e95; color:#fff; font-weight:bold;}
.sc-cont-tabs dt.at span a:hover { color:#fff !important;}
.sc-cont-img { height:125px; overflow:hidden; background:url(http://g1.dfcfw.com/g1/201209/20120927171246.gif) 50% 50% no-repeat;}/*Loading*/
.sc-cont-img .piclink { float:left; margin-left:1px; width:215px; overflow:hidden; }
.sc-cont-img img { margin-left:-6px;}
.sc-cont-imglink { position:absolute; float:left; width:34px; height:104px; overflow:hidden; margin:16px 0 0; border-top:1px solid #bdbdbd; left:210px; top:30px; z-index:101;}
.sc-cont-imglink li { border:1px solid #bdbdbd; border-top:0; padding:1px; text-align:center; color:#404040; background-color:#eee;}
.sc-cont-imglink li a { display:block; height:14px; line-height:14px; padding:3px 0 2px; background-position: 0 -36px; color:#333; text-decoration:none; overflow:hidden;}
.sc-cont-imglink li a:hover { color:#c00;}
/*搜索框*/
input.txt {-webkit-border-radius:0;-webkit-appearance:none; background-color:#fff; padding:1px 0 1px 4px; border:1px solid #a4a4a4; font-size:12px; height:16px; line-height:18px; overflow:hidden; float:left; width:105px; color:#868686}
.btnn { float:left; border:1px solid #bdbdbd; background-color:#fff; padding:1px; margin-left:4px;}
.btnn button { float:left; height:16px; line-height:17px; overflow:hidden; border:none; width:50px; vertical-align:middle; background-color:#eee; cursor:pointer; color:#3f3f3f; font-size:12px;}
.sc-search { clear:both; height:20px; padding:5px 6px; border:1px solid #d4d4d4; border-top:none;}
.sc-search cite { float:left; line-height:12px; padding-top:5px; font-style:normal; color:#3f3f3f;}
.sc-search .txt { width:86px;}
.sc-search .btnn { margin-left:2px;}
.sc-search button { width:42px;}
.sc-search-zjlx { width:236px;}
.sc-search-zjlx form { width:160px; z-index:1000;}
.sc-search-zjlx .btnn { margin-left:4px;}
.sc-search-zjlx .txt { width:114px; }
.sc-search-zjlx button { width:32px;}
/*不对称-资金流向*/
.sc-tabs-bdc dl dt { width:auto !important;}
.sc-tabs-bdc dl dt a,.sc-tabs-bdc dl dt.at a { width:38px;}
.sc-tabs-bdc dl dt a.w60 { width:60px;}
.sc-tabs-bdc dl dt a.w45 { width:47px;}
.sc-tabs-bdc dl dt a.w30 { width:30px;}
.sc-cont-img.p1020 { padding:0 0 1px;}
.sc-cont-img.p1020 .sc-cont-imglink { top:8px;}
/*行情&数据&必读*/
.linkArea { border:1px solid #d4d4d4; height:155px; overflow:hidden;}
.linkArea dt,.linkArea dd { float:left; height:51px; margin:0; overflow:hidden; border-bottom:1px solid #d4d4d4;}
.linkArea dt { clear:left; width:48px;}
.linkArea dd { width:200px; height:43px; padding:8px 0 0; }
.linkArea a { color:#535353; text-decoration:none;}
.linkArea a:hover { text-decoration:underline;}
.linkArea dt a { display:inline-block; width:40px; height:17px; line-height:17px; padding-top:22px; text-align:center; margin:5px 4px 0;}
.linkArea dt.quote a{ background-position:-188px -138px;}
.linkArea dt.data a{ background-position:-188px -58px;}
.linkArea dt.bidu a{ background-position:-188px -176px;}
.linkArea dd span { float:left; width:64px; height:17px; line-height:17px; text-indent:8px; margin:1px 0; }
/*财富通产品*/
.softList { height:109px; border-top:none;}
.softList dt,.softList dd { height:54px;}
/*.softList dd span { width:auto; display:inline-block;}*/
.softList dd { height:42px; padding:10px 0 2px; }
.softList dt a { margin:8px 4px 0;}
.softList dt.soft-pc a{ background-position:-188px -216px;}
.softList dt.soft-mobile a{ background-position:-188px -258px;}
.softList dd li { height:19px; line-height:19px; text-indent:7px; }
.softList dd span { width:auto;}
.softList dd span.red a { color:#ff4901;}
/*基金净值&基金估值*/
.fundimg { height:123px; display:block; overflow:hidden;}
.so-fund { height:20px; padding-top:5px; padding-left:10px;}
.fundlink { clear:both; height:48px; overflow:hidden; text-align:center; padding:6px 7px;}
.fundlink a { background-position:0 -320px; background-color:#eee; border:1px solid #c9c9c9; color:#3f3f3f; display:inline-block; width:64px; height:20px; line-height:20px !important; line-height:22px; overflow:hidden; margin:2px 2px; padding-left:8px; text-decoration:none;}
.fund-hot { border-top:1px solid #d4d4d4; padding:6px 4px 4px 8px;}
.fund-hot .title { height:21px; line-height:21px; padding:0 4px 4px 0;}
.fund-hot .title span { font-weight:bold; color:#6b6b6b; float:left;}
.fund-hot .title span a { color:#6b6b6b; text-decoration:none;}
.fund-hot .title span a:hover { color:#CF0000; text-decoration:underline;}
.fund-hot .fund-kaihu,.fund-hot .fundbuy-link { float:left; overflow:hidden;}
.fund-hot .title .fund-kaihu { margin-left:8px; height:21px; width:99px; color:#fff; background-color:#3a5e95; background-position:2px -100px; text-indent:22px;}
.fund-hot .title .fund-kaihu:hover { color:#fff !important; text-decoration:none;}
.fund-hot ul { height:66px; padding:3px 0; clear:both;}
.fund-hot li { color:#333; height:20px; line-height:20px; padding:1px 0; overflow:hidden; clear:both;}
.fund-hot li a {color:#3c3c3c;}
.fund-hot li .fundbuy-link { float:right; height:18px; width:33px; border:1px solid #c9c9c9; background-color:#eee; background-position:4px -140px; padding-left:24px;text-decoration:none;}
.fund-hot li .fundbuy-link:hover { text-decoration:none;}
.more-link { float:right;}
/*数据表格*/
.utable { padding:0; height:auto; overflow:hidden; background-color:#fff;}
.utable ul { clear:both; height:21px; line-height:22px; overflow:hidden; color:#333; border-bottom:1px solid #d4d4d4;}
.utable li { float:left; text-align:center; height:21px; line-height:22px; border-right:1px solid #d4d4d4; width:60px;}
.utable .head { background-position:0 -36px;}
.utable .head li { padding-right:1px; border-right:none; font-weight:normal !important;}
.utable .sinfo { width:70px;}
.utable .linfo { width:65px;}
.utable .zd { width:55px;font-family: Arial; font-weight: bold;}
.utable li.zdf,.utable li.gs,.utable li.date,.utable li.fxl,.utable li.present,.utable li.ssd { width:60px; border-right:none; padding-right:0;}
.utable li.zdf,.utable li.fxl,.utable li.present,.utable li.zlsj,.utable li.price {font-family: Arial; font-weight: bold;}
.utable .info { width:45px;}
.utable li.date { width:80px;}
.utable li.company { width:102px; font-family:Arial;}
.utable li.fxl { width:84px;}
.tb-xgsg ul,.tb-xgsg li { height:22px; line-height:23px;}
.utable .ssrq {width: 79px;border-right: none;}
.tb-moreLink { height:21px; line-height:22px; text-align:right; padding-right:8px; overflow:hidden;}
.tb-moreLink.h23 { height:23px; line-height:24px;}
.col3 li { width:80px;}
.col3 li.present { width:80px;}
.col3 li.gsname { width:104px;}
.tb-xgsg ul,.tb-xgsg li { height:22px; line-height:23px;}
.tb-xgsg .ssrq {width: 79px;border-right: none;}
.layout250 .utable li a,.layout250 .tb-moreLink a{ color:#3c3c3c;}
/*调查*/
.vote-box { height:178px; background:#fff !important;}
/*tab*/
.vote-box .vote-tabs { height:25px; border-bottom:1px solid #545454; position:relative;}
.vote-box .vote-tabs ul { position:absolute; top:3px; padding-left:29px;z-index:0;}
.vote-box .vote-tabs li { position:relative; float:left; border:1px solid #b8b8b8; border-bottom:0; padding:1px; background-color:#eee; margin-left:-1px; z-index:1; cursor:pointer;}
.vote-box .vote-tabs li.at { height:20px; border-top:2px solid; border-color:#545454; padding-bottom:0; z-index:2; overflow:hidden;}
.vote-box .vote-tabs li a { display:inline-block; padding:0 10px; height:19px; line-height:19px; background-position:0 -39px; color:#3f3f3f; text-decoration:none;}
.vote-box .vote-tabs li.at a { height:22px; background:#fff; font-weight:bold;}
.vote-cont { height:140px; padding:6px; overflow:hidden;}
.vote-cont dt,.vote-cont dd { float:left; margin:0; height:140px;}
.vote-cont dt { width:150px; margin-right:4px;}
.vote-cont dd { width:70px; border-left:1px solid #d4d4d4; padding-left:10px;}
.vote-cont dd form { margin-top:10px;}
.vote-cont img,.vote-cont cite,.vote-cont cite span,.vote-cont cite b { float:left; overflow:hidden;}
.vote-cont dt cite { font-style:normal; padding-top:16px;}
.vote-cont dt span { color:#3f3f3f; height:14px; margin:0 2px 0 0;}
.vote-cont dt b { width:8px; height:8px; background-color:#b9b9b9; margin:2px 2px 0;}
.vote-cont .v-gray { background-color:#b9b9b9; }
.vote-cont .v-red { background-color:#ff0b00; }
.vote-cont .v-green { background-color:#0d7600; }
.vote-cont .mon b { margin-left:12px;}
.vote-cont dd label { float:left; clear:both; padding:2px 0 0 5px; margin-bottom:4px; height:18px; width:66px; overflow:hidden; color:#3f3f3f;}
.vote-cont dd input { vertical-align:middle; width:13px; overflow:hidden; margin-right:5px; margin-top:-2px;}
.vote-cont dd .btnn { margin-top:5px;}
.vote-cont dd button { width:56px;}
.vote-pct { padding:0 7px; margin-top:20px; height:94px; overflow:visible; position:relative;}
.vote-pct dt { height:84px; width:100%; height:100%; float:left; display:inline; width:38px; margin:0 20px; text-align:center; position:relative;}
.vote-pct dt span { float:left; width:100%; height:1px; margin:0; position:absolute; bottom:0; left:0;}
.vote-pct dt code,.vote-pct dt cite { position:absolute; padding:0; margin:0; width:38px; left:0;}
.vote-pct dt code { top:-14px;}
.vote-pct dt cite { top:96px; height:28px; bottom:0;}
/*个股研报*/
.tb-ggyb ul { border-top:1px solid #d4d4d4; border-bottom:none;}
.tb-ggyb ul.head { border:none;}
.tb-ggyb li.end { border-right:none; padding-right:0;}
.tb-ggyb li.time, .tb-ggyb li.code { width:50px;}
.tb-ggyb li.name,.tb-ggyb li.info { width:64px;}
.tb-ggyb li.report { width:200px; text-align:left; padding-left:6px; font-family:Arial;}
.tb-ggyb ul.head li.report { text-align:center;}
.tb-ggyb li.price { width:61px;}
/*机构、名家一览列表类*/
.rlist { height:78px; overflow:hidden; border:1px solid #ededed;}
.rlist cite { float:left; width:33px; color:#3f3f3f; font-style:normal; font-size:14px; font-weight:bold; text-align:center; background-position:21px -170px;}
.rlist cite a { color:#3f3f3f; text-decoration:none;}
.rlist cite a:hover { text-decoration:underline;}
.rlist cite b { float:left; width:24px; line-height:15px; height:68px; border-right:1px solid #3a5e95; padding:10px 0 0 4px; overflow:hidden;}
.rlist ul { float:left; margin-left:8px; padding-top:5px; height:66px; width:295px; overflow:hidden;}
.rlist li { height:22px; float:left; width:100%; clear:both; overflow:hidden;}
.rlist li a { float:left; line-height:17px; margin:0 5px;}
/*财富生活*/
.tw332 { width:332px; height:188px; padding:0; float:left; clear:none; overflow:hidden;}
.tw332 .img { background-color:#3f3f3f; width:111px; height:90px; float:left; font-size:12px; text-align:center; line-height:24px; color:#fff; overflow:hidden; margin:2px 2px 0 5px; text-decoration:none;}
.tw332 .img:hover { color:#fff !important; text-decoration:underline;}
.tw332 ul { float:left; width:212px; overflow:hidden;}
.tw332 .tw332-below { width:332px; /*margin-top:4px;*/ clear:both;}
.l-dashed { border-left:1px dashed #c9c9c9; padding-left:5px; width:330px; margin-left:8px;}
.h235 { height:194px; padding-right:0; overflow:hidden; padding-bottom:0;}
.tipform { position:relative; float:left; z-index:998;}
/*浮动头*/
html,html body { _background-image:url(about:blank); _background-attachment:fixed;}
.top-nav-wrap { height:30px; background-color:#f7f7f7; border-top:2px solid #ff4901; border-bottom:1px solid #dfdfdf; position:fixed !important; position:absolute; left:0; top:0; _top:expression(eval(document.documentElement.scrollTop)); z-index:99999; width:100%;}
/*.top-nav-wrap .wrap { position:relative;}*/
.tw-nav { width:564px; height:30px; float:left;}
.top-nav-wrap a,
.top-nav-wrap .down-menu { float:left; }
.top-nav-wrap a { height:16px; padding:7px 5px; line-height:16px; background-color:none; color:#000; text-decoration:none;}
.top-nav-wrap a:hover { background-color:#eaeaea; text-decoration:none;}
.down-menu { position:relative; width:94px; }
.down-menu.wz0 { width:auto; }
.down-menu.wz2 { width:64px; }
.down-menu.wz3 { width:70px; }
.down-menu.wz4 { width:82px; }
.down-menu .category { background-position:right -355px; padding:7px 0; display:block; float:none; text-align:center; text-indent:-8px;}
.down-menu .category.red { color:#ff4900 !important;}
.down-menu ul,.down-menu .loginBox { clear:both; background:#b3d0e4; padding-bottom:1px; width:100%; position:absolute; left:0; -moz-box-shadow: 3px 3px 3px rgba(0, 0, 0, .1); -webkit-box-shadow: 3px 3px 3px rgba(0, 0, 0, .1); box-shadow: 3px 3px 3px rgba(0, 0, 0, .1); display:none;}
.down-menu ul li a { background-color:#fff; margin:1px; margin-top:0; padding:6px 0; display:block; text-align:center; float:none; }
.down-menu ul li { width:100%; }
.down-menu ul li.tit { text-align:center; font-weight:bold;}
.down-menu ul li.blue { color:#315895;}
.down-menu ul li.red { color:#ff4900;}
.down-menu ul li.red a { color:#ff4900 !important;}
.down-menu ul li.tit span { background-color:#f7f7f7; margin:1px; margin-top:0; padding:6px 0; display:block; zoom:1; }
.down-menu.wz5 ul,.down-menu.wz5 ul li { width:145px;}
/*登陆*/
.down-menu .loginBox { width:540px; height:228px; padding-bottom:0; border:1px solid #b3d0e4; margin-left:-258px; background-color:#fff;}
.down-menu .loginBox li { float:left; height:228px;}
/*.down-menu .loginBox .regArea { background-color:#f5fafe; font-size:14px; width:232px;}
.regArea span { text-align:center; display:block; margin-top:36px;}
.regArea .fivereg,.regArea .nowreg { display:block; text-align:center; height:34px; line-height:34px; width:160px; font-weight:bold; padding:0; margin:22px auto 0; cursor:pointer;}
.regArea .fivereg,.regArea .fivereg:hover { color:#fff !important; background-color:#3a5e95;}
.regArea .nowreg,.regArea .nowreg:hover { color:#3f3f3f !important; background-color:#dcdcdc;}
.regArea .label { display:block; width:160px; height:34px; line-height:34px; margin:0 auto; position:relative;}
.regArea input { float:left; width:65px; height:16px; padding:8px 0 8px 4px; line-height:17px; border:1px solid #818181;-webkit-border-radius: 0;-webkit-appearance: none; background-color: #fff;}
.regArea .label label { display:block; position:absolute; top:9px; left:4px; margin:0; padding:0; height:16px; line-height:17px; cursor:text; text-align:left; color:#959595;}*/
.down-menu .loginBox .login-left { background-color:#f5fafe; font-size:14px; width:232px;}
.login-left span { text-align:center; display:block; margin-top:20px;}
.login-left a { display:block; text-align:center; font-weight:bold; cursor:pointer; background-color:#3a5e95 !important; color:#fff;}
.login-left a.linkbtn { background:none; height:36px; line-height:18px; width:160px; margin:14px auto 0; padding:4px 0 2px;}
.login-left a.linkbtn span { margin:0;}
.login-left .f12 { font-size:12px; font-weight:normal;}
.login-left .tel { color: #808080; background-position: -55px -362px; width: 160px; text-indent: 24px; margin:10px auto 0;}
.login-left div { text-align:center; display:block; margin-top:10px; }
.login-left div cite { font-style:normal; margin:0 2px; font-size:12px; color:#535353;}
.login-left div cite b { color:#ff4901; font-size:14px;}
.login-left div.f12 i { font-style:normal; font-family:Arial,Helvetica,sans-serif;}
.login-unite { clear:both; height:28px; background-color:#f0f0f0; border-top:1px solid #b3d0e4;}
.down-menu ul li .login-unite a { font-size:12px; float:left; width:153px; background-color:#f0f0f0; margin:0; text-indent: 20px;}
.login-unite a.login-unite-weibo { background-position: 28px -245px; border-left:1px solid #b3d0e4;}
.login-unite a.login-unite-qq { background-position: 32px -275px;}
.down-menu .loginBox .loginArea { font-size:14px; width:307px; border-left:1px solid #b3d0e4; position:relative;}
.loginArea #loginFrm { height:121px;}
.top-nav-wrap .loginArea_close { margin:0; padding:5px; font-family: SimSun; position:absolute; right:0; top:0; overflow:hidden; font-size:18px; font-weight:700; text-decoration:none;color:#666;}
.loginArea span { text-align:center; display:block; font-size:12px;}
.loginArea .loginTip { margin-bottom:4px; color:#c00; height:16px; line-height:17px; overflow:hidden;}
.loginArea .label { display:block; width:246px; height:30px; line-height:30px; margin:0 auto 12px; position:relative;}
.loginArea .label cite { float:left; width:60px; font-style:normal;}
.loginArea .label .input_tips { display:block; position:absolute; top:7px; left:65px; margin:0; padding:0; height:16px; line-height:17px; cursor:text; text-align:left; color:#959595;}
.loginArea .label .input_tips_hide { display:none;}
.loginArea input { float:left; width:176px; height:16px; padding:6px 0 6px 4px; line-height:17px; border:1px solid #818181;-webkit-border-radius: 0;-webkit-appearance: none; background-color: #fff;}
.loginArea button { clear:both; float:left; border:none; padding:0; margin:0; width:90px; height:30px; line-height:30px; background-color:#ff4901; color:#fff; font-weight:bold; font-size:14px;}
.loginArea .btn-label { padding-left:91px; width:186px; float:left; }
.loginArea .btn-label a { color:#039; font-size:12px; line-height:17px; display:inline-block; padding:0; margin-top:8px;}
.loginArea .btn-label a:hover { background:none !important;}
.loginArea-title { height:48px; overflow:hidden; width:242px; margin:10px auto 0; text-align:left;}
.loginArea-title div { height:20px; font-size:12px; clear:both; margin-top:4px;}
.loginArea-title i { background-position:-39px -198px; float:left; height:19px; width:145px; text-indent:-999px;}
.loginArea-title a { float:right !important; margin:4px 0 0 !important; padding:0 !important; font-size:12px; color:#0033CC; text-decoration:underline;}
.top-nav-wrap .loginArea-title a:hover { background:none !important;}
.userinfo { /*padding:7px 0; margin-right:12px;*/ color:#ff4901; height:30px; line-height:17px; width:170px; }
.userinfo a { margin:0; padding:0; float:none; color:#ff4901; /*margin-left:6px;*/ text-indent:0 !important; display:inline-block !important; padding: 7px 4px; }
.userinfo cite { display:inline-block; padding:7px 0; font-style:normal;}
.userinfo a.usernick { padding-right:16px; background-position: right -355px;}
.userinfo .user-menu { position:relative; display:inline-block;}
.userinfo .user-menu-list { position:absolute; top:30px; left:0; border: 1px solid #b3d0e4;}
.userinfo .user-menu-list div { background-color: #FFF; padding:14px; color:#000; width: 120px; text-align:left;}
.user-menu-list dt,.user-menu-list dd { float:left; margin:0; height:16px; line-height:16px; margin:2px 0; width:60px; overflow:hidden;}
.user-menu-list dt { clear:both;}
.user-menu-list .resetuinfo { display:block; text-align:center; height:30px; line-height:30px; width:120px; font-weight:bold; padding:0; margin-top:8px; background-color:#3a5e95; clear:both; color:#fff;}
.user-menu-list .resetuinfo:hover { color:#fff !important; background-color:#3a5e95;}
.down-menu.show ul, .down-menu.show .loginBox { display:block;}
.down-menu.show .category { background-color:#eaeaea;}
.tw-login { float:right; width:386px; text-align:right;}
.tw-login .down-menu,.tw-login .sitemap { float:right;}
/*尾部*/
.footer { text-align:center; line-height:18px; border-top:1px solid #999;}
.footer a { color:#3d3d3d;}
.footer a:hover { color:#c00;}
.footer p { margin:8px 0 0; color:#3d3d3d;}
.footer .contact { height:30px; line-height:30px; padding:0;}
.footer .contact a { margin:0 4px;}
.footer-msg,.footer-icp { padding:2px 0; overflow:hidden; }
.footer-police,.footer-zx110,.footer-shjubao,.footer-cxzx,.footer-shgs,.footer-hgwb {display:inline-block; overflow:hidden;}
.footer-msg { background-position:0 -480px; padding-left:32px;}
.footer-icp { background-position:-110px -480px; padding-left:22px; /*height:18px;*/}
.footer-police,.footer-zx110,.footer-shjubao,.footer-cxzx,.footer-shgs,.footer-hgwb { width:110px; height:40px; margin:0 4px;}
.footer-police { background-position:0 -512px;}
.footer-zx110 { background-position:-112px -512px;}
.footer-shjubao { background-position:0 -560px;}
.footer-cxzx { background-position:-112px -560px; width:40px;}
.footer-shgs { background-position:0 -608px; width:47px;}
.footer-hgwb { background-position:-52px -608px; width:116px;}
/*图片列表*/
.imgList { overflow:hidden; height:60px; padding-top:6px; }
.imgList ul { width:100%; float:none; height:auto; }
.imgList li { float:left; background:none; text-indent:0; height:60px; width:60px; display:inline-block !important; display:inline; text-align:center; zoom:1; }
.l285 { float:left; width:285px; height:78px; padding-top:0; }
.l285 ul { margin-left:4px; width:285px; padding-top:0;}
.l285 li { clear:none; line-height:24px; width:55px; margin:12px 0 6px;}
.l285 li a { line-height:24px; float:none; display:block; margin:0;}
.imgList-dot { float:left; width:20px;}
.imgList-dot span { display:block; width:20px; height:20px; cursor:pointer;}
.imgList-dot .dotON { background-position:0 -360px; }
.imgList-dot .dotOFF { background-position:-20px -360px; }
#rmbk_box,#djbk_box { width:300px; float:left;}
#hot_blog_conts div { overflow:hidden;}
#scroll_rmbk,#scroll_djbk { margin-left:2px;}
#scroll_jgyl,#scroll_mjyl { height:60px; margin-left:-5px; padding:9px 0;}
@media screen and (max-device-width: 320px) and (max-device-width: 480px){
body{-webkit-text-size-adjust:none;}
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (-webkit-min-device-pixel-ratio: 2){
body{-webkit-text-size-adjust:none;}
}
/*ka*/
.kx_box { width: 100%; }
.kx_box .kx_utils { height: 33px; line-height: 33px; border-bottom: 1px solid #f4f4f4; }
.kx_fontsize { float: left; display: inline; width: 35px; margin-top: 8px; height: 19px; line-height: 19px; cursor: pointer; color: #039; padding-left: 8px; }
.kx_refresh, .kx_auto { background: url(http://g1.dfcfw.com/g1/201411/20141107164622.png) no-repeat; }
.kx_refresh { float: right; display: inline; width: 35px; margin-top: 8px; height: 19px; line-height: 19px; color: #334F9F; padding-left: 30px; background-position: 12px -46px; cursor: pointer; border-left: 1px solid #ededed; }
.kx_refresh:hover { opacity: 0.7; filter: alpha(opacity=70); }
.kx_refreshing { }
.kx_more { float: right; display: inline; margin-top: 8px; width: 58px; height: 19px; line-height: 19px; border-left: 1px solid #ededed; }
.kx_more a, .kx_more a:visited { margin-left: 10px; color: #334F9F; }
.kx_more a:hover { opacity: 0.7; filter: alpha(opacity=70); }
.kx_auto { float: right; display: inline; width: 70px; margin-top: 8px; height: 19px; line-height: 19px; padding-left: 17px; color: #666; background-position: 0px -21px; cursor: pointer; transition: all ease 0.3s; }
.kx_auto:hover { opacity: 0.7; filter: alpha(opacity=70); }
.kx_autoing { color: #334F9F; background-position: 0px 3px; }
.kx_more_e { padding-bottom:10px; background: #fff; }
.kx_more_e a, .kx_more_e a:visited { display: block; margin: 0 auto; width: 300px; height: 32px; overflow: hidden; line-height: 32px; text-align: center; border: 1px solid #DFE6F3; background-color: #EEF1F7; color: #274F97; font-size: 12px; cursor: pointer; transition: all 0.6 ease; }
.kx_more_e a:hover { /*opacity: 0.7; filter:alpha(opacity=70);*/ text-decoration: none; background-color: #DFE6F3; }
.kx_box_main { height: 366px; overflow-x: hidden; overflow-y: auto; }
.kx_loading { height: 50px; background: url(http://g1.dfcfw.com/g1/201411/20141107170053.gif) center center no-repeat; }
.kx_list { font-size: 12px; }
.kx_fz14 { font-size: 14px; }
.kx_list ul { padding: 10px; }
.kx_list li { padding: 10px 0; border-bottom: 1px solid #DFE6F3; line-height: 22px; color: #434343; word-wrap: break-word; break-word: break-all; background: none; height: auto; text-indent: 0; }
.bd_i_txt a { text-decoration: none; color:#434343; }
.bd_i_txt a:hover { text-decoration: underline; color:#ff4901;}
.bd_i_txt.red a { color:#ff4901 !important;}
.bd_i_txt.bold a { color:#434343;}
.bd_i_zt {background: #c83900;color: #fff;font-size: 12px; display:inline-block; height:20px; line-height:20px; padding:0 7px;}
.kx_itime { color: #274F97; }
.kx_itime_older { color: #999; }
.kx_itime_end { padding: 0 4px; color: #a3a3a3; }
/*baokuang class*/
.baokuang{height:800px;width:100%;background:url(http://g1.dfcfw.com/g2/201503/20150302161753.jpg) repeat-x 0 0 #FFF;}
.baokuang .bkImg,.baokuang .bkImg .cImgDiv {background:url(http://g1.dfcfw.com/g2/201503/20150302161359.jpg) no-repeat center top;}
.baokuang .bkImg {width:100%; height:800px;margin:0 auto;}
.baokuang .bkImg .cImgDiv{width:950px; height:40px; margin:0 auto; position:relative;}
.baokuang .bkImg .clickMap { display:block; height:40px; width:100%; text-indent:-100em; overflow:hidden;}
.baokuang .bkImg .close{background:url(http://g1.dfcfw.com/g1/201304/20130403100825.png) no-repeat;width:44px; height:18px;cursor:pointer; position:absolute; right:0px; bottom:0; text-indent:-100em; overflow:hidden;}
.pageCont { background:#FFF; height:0; overflow:hidden; margin-top:-755px;}
/*.wrap { background:#FFF;}*/
</style>
<base target="_blank" />
</head>
<body>
<div class="top-nav-wrap">
<div class="wrap" id="fixMenuBar">
<div class="tw-nav">
<a href="javascript:;" id="sethome_top" hidefocus="true" target="_self" class="sethome">设为首页</a>
<a href="javascript:;" id="addfavor_top" hidefocus="true" target="_self" class="addfavor">加入收藏</a>
<div class="down-menu wz4">
<a href="javascript:;" target="_self" class="category">我的菜单</a>
<ul>
<li><a href="http://quote.eastmoney.com/favor/">我的自选股</a></li>
<li><a href="http://fund.eastmoney.com/favor/">我的基金</a></li>
<li><a href="http://iguba.eastmoney.com/">我的股吧</a></li>
<li><a href="http://blog.eastmoney.com/">我的博客</a></li>
</ul>
</div>
<div class="down-menu wz5">
<a href="http://js5.eastmoney.com/tg.aspx?ID=431" target="_self" class="category red">移动客户端</a>
<ul>
<li class="red"><a href="http://stattg.eastmoney.com/10239">东方财富网iPhone版</a></li>
<li class="red"><a href="http://stattg.eastmoney.com/10240">东方财富网Android版</a></li>
<li><a href="http://stattg.eastmoney.com/10241">东方财富网WinPhone版</a></li>
<li><a href="http://stattg.eastmoney.com/10481">东方财富网Pad版</a></li>
<li><a href="http://js1.eastmoney.com/tg.aspx?ID=3120">天天基金iPhone版</a></li>
<li><a href="http://js1.eastmoney.com/tg.aspx?ID=3121">天天基金安卓版</a></li>
<li><a href="http://js5.eastmoney.com/tg.aspx?ID=1777">股吧iPhone版</a></li>
<li><a href="http://js5.eastmoney.com/tg.aspx?ID=1778">股吧安卓版</a></li>
</ul>
</div>
<div class="down-menu wz4">
<a href="https://trade.1234567.com.cn/Login" class="category">基金交易</a>
<ul>
<li><a href="https://trade.1234567.com.cn/MyAssets/Default">我的资产</a></li>
<li><a href="https://trade.1234567.com.cn/xjb/index">活期宝</a></li>
<li><a href="https://trade.1234567.com.cn/dqb/default">定期宝</a></li>
<li><a href="https://trade.1234567.com.cn/zsb/default">指数宝</a></li>
<li><a href="https://trade.1234567.com.cn/FundtradePage/default2">买基金</a></li>
<li><a href="https://trade.1234567.com.cn/login?direct_url=/FundtradePage/redemption">卖基金</a></li>
<li><a href="https://trade.1234567.com.cn/Investment/default">基金定投</a></li>
<li><a href="https://trade.1234567.com.cn/reg/">免费开户</a></li>
<li><a href="http://fundact.eastmoney.com/app/">手机客户端</a></li>
</ul>
</div>
<div class="down-menu">
<a href="http://stattg.eastmoney.com/10279" class="category">东方财富</a>
<ul>
<li class="tit blue"><span>免费版</span></li>
<li><a href="http://stattg.eastmoney.com/10279">电脑版</a></li>
<li><a href="http://stattg.eastmoney.com/10481">iPad版</a></li>
<li class="tit red"><span>收费增值版</span></li>
<li><a href="http://stattg.eastmoney.com/10202">level-2极速版</a></li>
<li><a href="http://js5.eastmoney.com/tg.aspx?ID=349">level-2决策版</a></li>
<li><a href="http://js5.eastmoney.com/tg.aspx?ID=1483">投资大师</a></li>
<li><a href="http://cp.eastmoney.com/cp20150729_phone.html">专业版</a></li>
</ul>
</div>
<div class="down-menu wz5">
<a href="http://js5.eastmoney.com/tg.aspx?ID=789" class="category">Choice数据</a>
<ul>
<li><a href="http://js5.eastmoney.com/tg.aspx?ID=1928">Choice金融终端</a></li>
<li><a href="http://js5.eastmoney.com/tg.aspx?ID=1929">Choice数据服务</a></li>
</ul>
</div>
</div>
<div class="tw-login">
<a href="http://www.eastmoney.com/sitemap.html" class="sitemap">网站导航</a>
<div class="down-menu">
<a href="http://fund.eastmoney.com/" class="category">天天基金网</a>
<ul>
<li><a href="https://trade.1234567.com.cn/login">基金交易</a></li>
<li><a href="http://huoqibao.1234567.com.cn/">活期宝</a></li>
<li><a href="http://fund.eastmoney.com/favor.html">自选基金</a></li>
<li><a href="http://fund.eastmoney.com/fund.html">基金净值</a></li>
<li><a href="http://fund.eastmoney.com/fundguzhi.html">基金估值</a></li>
<li><a href="http://fund.eastmoney.com/data/fundranking.html">基金排行</a></li>
<li><a href="http://fund.eastmoney.com/data/fundrating.html">基金评级</a></li>
<li><a href="http://fund.eastmoney.com/dingtou/">基金定投</a></li>
<li><a href="http://fund.eastmoney.com/tradeindex.html">基金超市</a></li>
<li><a href="http://fund.eastmoney.com/daogou/">基金导购</a></li>
</ul>
</div>
<div class="down-menu wz2">
<a href="http://guba.eastmoney.com/" class="category">股吧</a>
<ul>
<li><a href="http://js5.eastmoney.com/tg.aspx?ID=1707">手机版下载</a></li>
<li><a href="http://iguba.eastmoney.com/">我的股吧</a></li>
<li><a href="http://guba.eastmoney.com/remenba.aspx?type=2">热门主题</a></li>
<li><a href="http://guba.eastmoney.com/remenba.aspx?type=1">热门个股</a></li>
</ul>
</div>
<div class="down-menu wz2" id="loginMenu">
</div>
</div>
</div>
</div>
<div class="wrap lyad h60">
<textarea class="lyadArea hidden">
<iframe width="950" height="60" frameborder="0" scrolling="no" marginwidth="0" marginheight="0" src="http://same.eastmoney.com/s?z=eastmoney&c=140&op=1" isrc="http://cmsjs.eastmoney.com/same/964.html" ></iframe>
</textarea>
</div>
<div class="wrap header">
<div class="logoArea">
<a href="http://www.eastmoney.com" class="logoIco" target="_self"><img src="http://g1.dfcfw.com/g1/img2011/logo_comm.gif" alt="东方财富网——中国财经第一门户" width="175" height="78" border="0" />财经第一门户</a>
</div>
<div class="topNav">
<ul class="mu101"><li><a href="http://finance.eastmoney.com/" ><strong>财经</strong></a><a href="http://finance.eastmoney.com/yaowen.html" >要闻</a><a href="http://finance.eastmoney.com/pinglun.html" >评论</a><a href="http://finance.eastmoney.com/yaowen_cgnjj.html" >国内</a><a href="http://finance.eastmoney.com/yaowen_cgjjj.html" >国际</a><a href="http://topic.eastmoney.com/" >专题</a></li><li><a href="http://js1.eastmoney.com/tg.aspx?ID=3604" ><strong>股票</strong></a><a href="http://js1.eastmoney.com/tg.aspx?ID=3605" >行情</a><a href="http://js1.eastmoney.com/tg.aspx?ID=3606" >必读</a><a href="http://js1.eastmoney.com/tg.aspx?ID=3608" ><i class="red">数据</i></a><a href="http://js1.eastmoney.com/tg.aspx?ID=3609" >期指</a><a href="http://js1.eastmoney.com/tg.aspx?ID=3653" >期权</a></li><li><a href="http://js1.eastmoney.com/tg.aspx?ID=3625" ><strong>全球</strong></a><a href="http://js1.eastmoney.com/tg.aspx?ID=3626" >美股</a><a href="http://js1.eastmoney.com/tg.aspx?ID=3627" ><i class="red">港股</i></a><a href="http://js1.eastmoney.com/tg.aspx?ID=3628" >外汇</a><a href="http://js1.eastmoney.com/tg.aspx?ID=3629" >期货</a><a href="http://js1.eastmoney.com/tg.aspx?ID=3630" >黄金</a></li></ul><ul class="mu102"><li><a href="http://www.1234567.com.cn/" ><i class="red"><strong>基金</i></strong></a><a href="http://fund.eastmoney.com/fund.html" >净值</a><a href="http://fund.eastmoney.com/fundguzhi.html" >估值</a><a href="http://fund.eastmoney.com/data/fundranking.html" >排行</a><a href=" http://huoqibao.1234567.com.cn/" ><i class="red">活期宝</i></a></li><li><a href="http://js1.eastmoney.com/tg.aspx?ID=3610" ><strong>市场</strong></a><a href="http://js1.eastmoney.com/tg.aspx?ID=3611" >直播</a><a href="http://js1.eastmoney.com/tg.aspx?ID=3607" >主力</a><a href="http://js1.eastmoney.com/tg.aspx?ID=3612" >大盘</a><a href="http://js1.eastmoney.com/tg.aspx?ID=3613" >策 略</a></li><li><a href="http://js1.eastmoney.com/tg.aspx?ID=3631" ><strong>新股</strong></a><a href="http://js1.eastmoney.com/tg.aspx?ID=3632" >融资</a><a href="http://js1.eastmoney.com/tg.aspx?ID=3633" >B 股</a><a href="http://js1.eastmoney.com/tg.aspx?ID=3634" >三板</a><a href="http://js1.eastmoney.com/tg.aspx?ID=3635" >创业板</a></li></ul><ul class="mu103"><li><a href="http://money.eastmoney.com/" ><strong>理财</strong></a><a href="http://bank.eastmoney.com/" >银行</a><a href="http://bond.eastmoney.com/" >债券</a><a href="http://insurance.eastmoney.com/" >保险</a><a href="http://trust.eastmoney.com/" >信托</a></li><li><a href="http://js1.eastmoney.com/tg.aspx?ID=3615" ><strong>个股</strong></a><a href="http://js1.eastmoney.com/tg.aspx?ID=3616" >公司</a><a href="http://js1.eastmoney.com/tg.aspx?ID=3617" >点睛</a><a href="http://js1.eastmoney.com/tg.aspx?ID=3618" >评级</a><a href="http://js1.eastmoney.com/tg.aspx?ID=3619" >公告</a></li><li><a href="http://js1.eastmoney.com/tg.aspx?ID=3636" ><strong>商业</strong></a><a href="http://js1.eastmoney.com/tg.aspx?ID=3637" >创业</a><a href="http://js1.eastmoney.com/tg.aspx?ID=3638" >产经</a><a href="http://js1.eastmoney.com/tg.aspx?ID=3639" >人物</a><a href="http://js1.eastmoney.com/tg.aspx?ID=3640" >媒体</a></li></ul><ul class="mu104"><li><a href="http://guba.eastmoney.com/" ><i class="red"><strong>股吧</i></strong></a><a href="http://jijinba.eastmoney.com/" >基金吧</a><a href="http://blog.eastmoney.com/" >博客</a><a href="http://t.eastmoney.com/" >财迷</a><a href="http://bbs.eastmoney.com/" >论坛</a></li><li><a href="http://js1.eastmoney.com/tg.aspx?ID=3620" ><strong>研报</strong></a><a href="http://js1.eastmoney.com/tg.aspx?ID=3621" >行 业</a><a href="http://js1.eastmoney.com/tg.aspx?ID=3622" >机构</a><a href="http://js1.eastmoney.com/tg.aspx?ID=3623" >名家</a><a href="http://js1.eastmoney.com/tg.aspx?ID=3624" >学校</a></li><li><a href="http://js1.eastmoney.com/tg.aspx?ID=3641" ><strong>视频</strong></a><a href="http://js1.eastmoney.com/tg.aspx?ID=3642" >汽 车</a><a href="http://xianhuo.eastmoney.com/" >现货</a><a href="http://js1.eastmoney.com/tg.aspx?ID=3644" >生活</a><a href="http://js1.eastmoney.com/tg.aspx?ID=3645" >搜索</a></li></ul>
</div>
<div class="topNavD">
<div class="top-stock-em">
<a href="http://quote.eastmoney.com/sz300059.html" title="东方财富">股价:<strong id="emPrice" class="green">33.29</strong>元 市值:<strong id="emMV">566</strong>亿</a>
</div>
<div class="toplinks">
<a href="http://js1.eastmoney.com/tg.aspx?ID=640" >新股申购</a> <a href="http://js1.eastmoney.com/tg.aspx?ID=639" >股市播报</a> <a href="http://js1.eastmoney.com/tg.aspx?ID=643" >财经快讯</a> <a href="http://js1.eastmoney.com/tg.aspx?ID=1878" >股市日历</a> <a href="http://js1.eastmoney.com/tg.aspx?ID=647" >公告大全</a> <a href="http://js1.eastmoney.com/tg.aspx?ID=691" >基金净值</a> | <span>东方财富系列:</span> <a href="http://stattg.eastmoney.com/10303" >电脑版</a> <a href="http://stattg.eastmoney.com/10158" >手机版</a> <a href="http://stattg.eastmoney.com/10478" >ipad版</a> <a href="http://stattg.eastmoney.com/10216" >L2极速版</a> <a href="http://js5.eastmoney.com/tg.aspx?ID=349" >L2决策版</a> <a href="http://js5.eastmoney.com/tg.aspx?ID=369" >投资大师</a>
</div>
</div>
<div class="spacer8"></div>
</div>
<div class="wrap h90">
<div class="layout168 nml lyad">
<textarea class="lyadArea hidden">
<iframe width="168" height="90" frameborder="0" scrolling="no" marginwidth="0" marginheight="0" src="http://cmsjs.eastmoney.com/same/401.html" isrc="http://cmsjs.eastmoney.com/same/954.html"></iframe>
</textarea>
</div>
<div class="layout600 lyad">
<textarea class="lyadArea hidden">
<iframe width="600" height="90" frameborder="0" scrolling="no" marginwidth="0" marginheight="0" src="http://same.eastmoney.com/s?z=eastmoney&c=400&op=1" isrc="http://same.eastmoney.com/s?z=eastmoney&c=965&op=1"></iframe>
</textarea>
</div>
<div class="layout168 lyad">
<textarea class="lyadArea hidden">
<iframe width="168" height="90" frameborder="0" scrolling="no" marginwidth="0" marginheight="0" src="http://same.eastmoney.com/s?z=eastmoney&c=402&op=1" isrc="http://same.eastmoney.com/s?z=eastmoney&c=955&op=1"></iframe>
</textarea>
</div>
</div>
<div class="wrap">
<div class="bulllinks">
<a href="http://kuaixun.eastmoney.com/" >全球财经快讯</a> <a href="http://data.eastmoney.com/xg/gh/default.html?stat=2&st=1" >新股上会表</a> <a href="http://data.eastmoney.com/invest/invest/default.html" >2015东方财富中国最佳分析师排名</a> <a href="http://js5.eastmoney.com/tg.aspx?ID=625" >最专业金融分析工具</a> <a href="http://same.eastmoney.com/c?z=eastmoney&la=0&si=1&ci=278&cg=3&c=9&or=3175&l=12955&bg=12955&b=14695&u=http://finance.eastmoney.com/news/1586,20150829542927814.html" >伊利玩转大数据生态圈</a> <a href="http://data.eastmoney.com/bbsj/201412/szbl.html" >送转比例排行</a> <a href="http://qqmoni.eastmoney.com/" >期权交易大赛</a> <a href="http://quote.eastmoney.com/center/list.html#ah_1" >AH股比价表</a> <a href="http://quote.eastmoney.com/center/hkstock.html#_1" >港股实时行情</a>
</div>
<div class="stockNav">
<div class="quoteLinks">
<span class="flink"><a href="http://quote.eastmoney.com/center/" target="_blank">行情中心</a></span>
<div class="dhMenu">
<a href="http://js1.eastmoney.com/tg.aspx?ID=654">指数</a>|<a href="http://js1.eastmoney.com/tg.aspx?ID=655">期指</a>|<a href="http://js1.eastmoney.com/tg.aspx?ID=3646">期权</a>|<a href="http://js1.eastmoney.com/tg.aspx?ID=656">个股</a>|<a href="http://js1.eastmoney.com/tg.aspx?ID=657" class="red">板块</a>|<a href="http://js1.eastmoney.com/tg.aspx?ID=658">排行</a>|<a href="http://js1.eastmoney.com/tg.aspx?ID=660">新股</a>|<a href="http://js1.eastmoney.com/tg.aspx?ID=661">基金</a>|<a href="http://js1.eastmoney.com/tg.aspx?ID=663">港股</a>|<a href="http://js1.eastmoney.com/tg.aspx?ID=665">美股</a>|<a href="http://js1.eastmoney.com/tg.aspx?ID=666">期货</a>|<a href="http://js1.eastmoney.com/tg.aspx?ID=667">外汇</a>|<a href="http://js1.eastmoney.com/tg.aspx?ID=668">黄金</a>|<a href="http://js1.eastmoney.com/tg.aspx?ID=669" class="red hot">自选股</a>|<a href="http://js1.eastmoney.com/tg.aspx?ID=670">自选基金</a>
</div>
<div class="searchBar">
<form action="" method="get" target="_blank" class="tipform">
<input id="hqBar_txt" type="text" size="17" value="输代码、名称或简拼" />
<button type="button" id="hqBar_btn1">查行情</button>
<button type="button" id="hqBar_btn2" class="red">进股吧</button>
<button type="button" id="hqBar_btn3">搜资讯</button>
</form>
</div>
</div>
<div class="globalLinks">
<span class="flink"><a href="http://quote.eastmoney.com/center/global.html#global_3" target="_blank">全球股市</a></span>
<div class="globalStocks" id="globalData">
<a href="http://stock.eastmoney.com/globalindex/INDU.html" target="_blank">道琼斯</a> 16643.01 <span class="green">↓-11.76 ↓-0.07%</span><a href="http://stock.eastmoney.com/globalindex/CCMP.html" target="_blank">纳斯达克</a> 4828.33 <span class="red">↑15.62 ↑0.32%</span><a href="http://stock.eastmoney.com/globalindex/NKY.html" target="_blank">日经指数</a> 18950.61 <span class="green">↓-185.71 ↓-0.97%</span><a href="http://quote.eastmoney.com/hk/zs110000.html" target="_blank">香港恒指</a> 21568.82 <span class="green">↓-43.57 ↓-0.20%</span><a href="http://stock.eastmoney.com/globalindex/DAX.html" target="_blank">德DAX</a> 10298.53 <span class="green">↓-17.09 ↓-0.17%</span><a href="http://stock.eastmoney.com/globalindex/CAC.html" target="_blank">法CAC</a> 4675.13 <span class="red">↑16.95 ↑0.36%</span><a href="http://stock.eastmoney.com/globalindex/ATX.html" target="_blank">奥ATX</a> 2335.89 <span class="green">↓-13.56 ↓-0.58%</span>
</div>
<div class="globalRight">
<div class="cft-download">
<a href="http://stattg.eastmoney.com/10159" class="cft-dl">东方财富网下载</a>
<a href="http://stattg.eastmoney.com/10200" class="qdhq-dl">千档行情</a>
</div>
</div>
</div>
<div class="dataLinks">
<span class="flink"><a href="http://data.eastmoney.com/center/" target="_blank">数据中心</a></span>
<div class="bulllinks">
<a href="http://js1.eastmoney.com/tg.aspx?ID=542" >新股申购</a><a href="http://js1.eastmoney.com/tg.aspx?ID=612" >资金流向</a><a class="red" href="http://js1.eastmoney.com/tg.aspx?ID=3496" >AH股比价</a><a href="http://js1.eastmoney.com/tg.aspx?ID=613" >主力排名</a><a href="http://js1.eastmoney.com/tg.aspx?ID=634" >板块资金</a><a href="http://js1.eastmoney.com/tg.aspx?ID=638" >个股研报</a><a href="http://data.eastmoney.com/bbsj/201506.html" >中报大全</a><a href="http://data.eastmoney.com/zlsj/2015-06-30.html" >机构持仓</a><a href="http://js1.eastmoney.com/tg.aspx?ID=624" >融资融券</a><a href="http://js1.eastmoney.com/tg.aspx?ID=626" >龙虎榜单</a><a href="http://js1.eastmoney.com/tg.aspx?ID=714" >高管持股</a><a href="http://js1.eastmoney.com/tg.aspx?ID=627" >限售解禁</a><a href="http://js1.eastmoney.com/tg.aspx?ID=629" >大宗交易</a><a href="http://js1.eastmoney.com/tg.aspx?ID=633" >期指持仓</a><a href="http://data.eastmoney.com/gsrl/default.html" >交易提示</a>
</div>
</div>
<div class="hgtLinks">
<span class="flink"><a href="http://quote.eastmoney.com/center/hgtstock.html#_12" target="_blank">沪港通</a></span>