-
Notifications
You must be signed in to change notification settings - Fork 0
/
a.txt
2087 lines (1847 loc) · 85.4 KB
/
a.txt
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>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>长安汽车(000625)个股资金流向查询_个股行情_同花顺财经</title>
<meta name="keywords" content="长安汽车(000625)个股点评,长安汽车(000625)个股查询,长安汽车(000625)个股行情,长安汽车(000625)个股资讯,长安汽车(000625)个股数据,长安汽车(000625)个股实时行情">
<meta name="description" content="提供长安汽车(000625)五档盘口、逐笔交易等实时行情数据;汇总长安汽车(000625)基本资料及重大新闻、研究报告及行业资讯,解读长安汽车(000625)主力资金动向、财务数据,为投资长安汽车(000625)提供参考决策">
<meta name="reboot" content="all">
<script type="text/javascript" src="//s.thsi.cn/js/chameleon/chameleon.min.1658200.js"></script> <script>window.onerror = function(){return true;}</script>
<script type="text/javascript" src="http://s.thsi.cn/cb?/js/;excanvas.min.js;jquery-1.7.2.min.js;swfobject.js;storage.js;QeeChart.js;/js/seajs/;sea.1.2.js&20150706"></script>
<script type="text/javascript" src="http://s.thsi.cn/cb?/js/home/;ths_core.js;ths_quote.js&20150706"></script>
<script type="text/javascript" src="http://s.thsi.cn/cb?js/flshhtml5/;s/Html5Util.min.js;c/config.min.js;c/GeGu_lsjxlx/caller.min.js;c/GeGu_sscjfb/caller.min.js;c/YjycHydb.js;c/GeGu_AreaLine/drawchart.min.js;c/GeGu_BarColors/drawchart.min.js;c/PieChart/caller.min.js&20150706"></script>
<script type="text/javascript" src="http://s.thsi.cn/cb?js/stockpage/;new/KeyWizardBranch.min.js;new/KeyWizard4AS.min.js&20150706"></script>
<script type="text/javascript" src="http://s.thsi.cn/cb?/js/stockpage/s2015/;highcharts.js;personkzd.js&20160106"></script>
<script type="text/javascript" src="http://s.thsi.cn/js/stockpage/append.min.js"></script>
<link rel="stylesheet" href="http://s.thsi.cn/cb?css/stockpage/;new/KeyWizard.20130315.css&20150706" type="text/css">
<link rel="stylesheet" href="http://s.thsi.cn/cb?css/stockpage/;new/flot_home.20130204.min.css;home.min.css&20150706" type="text/css">
<link href="http://s.thsi.cn/cb?css/stockpage/append.V4.min.css;css/navigation/;nav_v2.min.css;nav_blue.min.css&20150706" rel="stylesheet" type="text/css" />
<link rel="stylesheet" href="http://s.thsi.cn/cb?/css/stockpage/s2015/;index.css;home.css;personkzd.css;nav_v2.css;append.css&20150716" type="text/css">
<style>
.hide{
display: none !important;
}
</style>
<script type="text/javascript" src="http://cbjs.baidu.com/js/m.js"></script>
<script type="text/javascript" src="http://s.thsi.cn/cb?js/cmsad/cmsadv1.js" charset="utf-8"></script>
<script src="http://dup.baidustatic.com/js/ds.js"></script>
<script type="text/javascript">BAIDU_CLB_preloadSlots("950906","950907", "1096141", "1096142", "950905", "967147", "1106767", "966227", "999711");</script>
<!--[if IE 6]>
<script type="text/javascript" src="http://s.thsi.cn/js/stockpage/new/opacity.ie6.min.js" ></script>
<script type="text/javascript">
DD_belatedPNG.fix('.feedback');
</script>
<![endif]-->
<script>
document.domain = "10jqka.com.cn";
var waplink = 'http://m.10jqka.com.cn/stockpage/hs_000625/';
var JUMP={
"hash":(!window.location.hash)?"":window.location.hash,
"agent":navigator.userAgent,
"to_mobile":function() {
if ((this.agent.indexOf('Android') != -1 ||this.agent.indexOf('Mobile') != -1) && this.hash != '#pc') {
window.location.href = waplink;
}
}
};
JUMP.to_mobile();
</script>
<script>
var protocol = window.location.protocol;
if (protocol == "https:") {
window.location.href = window.location.href.replace("https", "http");
}
</script>
</head>
<body>
<input type="hidden" id="market" value="hs">
<div id="ad1" class="adplace ad1">
</div>
<script>
_cmsad({
appendId:'ad1',
adb_id:'170'
});
</script>
<div id="in_channelhead"><div class="header w960" id="hd">
<div class="header_search">
<div class="logo"><a href="http://www.10jqka.com.cn" class="site_logo"> <img height="29" width="115" alt="同花顺" title="同花顺" src="http://i.thsi.cn/images/navigation/logo/logo_ths.png" /></a> <a href="http://stockpage.10jqka.com.cn" class="sub_logo" title="个股">个股</a></div>
<div class="search_box">
<input autocomplete="off" type="text" value="输入股票/港股代码、简称或关键字" class="search_input" id="search_input" onfocus="(this.value=='输入股票/港股代码、简称或关键字')&&(this.value = '')" onblur="!(this.value) && (this.value='输入股票/港股代码、简称或关键字');" />
<input type="submit" value="搜索" class="search_btn" />
</div>
</div>
</div> </div>
<div class="line"></div>
<div id="in_datachannel">
<div class="interface">
<div class="data-nav clearfix">
<div class="data-nav-l">
<a onclick="TA.log({'id':'f10_sp_sjzx','nj':1})" href="http://data.10jqka.com.cn/ " target="black" class="data-nav-linkhead data-nav-links">数据中心</a>
<a href="http://data.10jqka.com.cn/market/longhu/" target="black" class="data-nav-links">龙虎榜</a>
<a href="http://data.10jqka.com.cn/funds/ddzz/" target="black" class="data-nav-links">大单追踪</a>
<a href="http://data.10jqka.com.cn/market/rzrq/" target="black" class="data-nav-links">融资融券</a>
<a href="http://data.10jqka.com.cn/funds/ggzjl/" target="black" class="data-nav-links">资金流向</a>
<a href="http://data.10jqka.com.cn/ipo/xgsgyzq" target="black" class="data-nav-links">新股申购</a>
</div>
<div class="data-nav-r">
<a onclick="TA.log({'id':'f10_sp_hqzx','nj':1})" href="http://q.10jqka.com.cn/" target="black" class="data-nav-linkhead">行情中心</a>
<a href="http://q.10jqka.com.cn/" target="black" class="data-nav-links">沪深市场</a>
<a href="http://q.10jqka.com.cn/hk/" target="black" class="data-nav-links">香港市场</a>
<a href="http://q.10jqka.com.cn/usa/" target="black" class="data-nav-links">美国市场</a>
<!--<a href="http://q.10jqka.com.cn/global/" target="black" class="data-nav-links">全球市场</a>-->
<a href="http://q.10jqka.com.cn/thshy/" target="black" class="data-nav-links">行业风云</a>
</div>
</div>
<!-- 全球市场开始 -->
<dl class="interface_1" style="display: none;">
<dt>
<a onclick="TA.log({'id':'f10_sp_qqsc','nj':1})" href="http://q.10jqka.com.cn/qqsc/#refCountId=db_509381c1_860" target="_blank">全球市场</a>
</dt>
</dl>
<div class="sub_interface_1" style="display: none;">
<span class="options_btn">
<a class="options_up" href="javascript:void(0);">向上</a>
<a class="options_down" href="javascript:void(0);">向下</a>
</span>
<ul>
</ul>
</div>
</div></div>
<div class="adplace ad2 clearfix">
<div class="ad2-1" >
<script>
(function() {
var s = "_" + Math.random().toString(36).slice(2);
document.write('<div id="' + s + '"></div>');
(window.slotbydup=window.slotbydup || []).push({
id: '1096134',
container: s,
size: '175,90',
display: 'inlay-fix'
});
})();
</script>
</div>
<div class="ad2-2">
<script>
(function() {
var s = "_" + Math.random().toString(36).slice(2);
document.write('<div id="' + s + '"></div>');
(window.slotbydup=window.slotbydup || []).push({
id: '1096135',
container: s,
size: '636,90',
display: 'inlay-fix'
});
})();
</script>
</div>
<div class="ad2-3">
<script>
(function() {
var s = "_" + Math.random().toString(36).slice(2);
document.write('<div id="' + s + '"></div>');
(window.slotbydup=window.slotbydup || []).push({
id: '1096136',
container: s,
size: '175,90',
display: 'inlay-fix'
});
})();
</script>
</div>
</div>
<div style="display:none" id="indexBasicData">99.22|76.04|8.00</div>
<div id="in_squote"><script src="http://dup.baidustatic.com/js/ds.js"></script>
<div class="m_header">
<h1 class="m_logo fl">
<a href="http://stockpage.10jqka.com.cn/000625/" >
<strong stockname="长安汽车" id="stockNamePlace" stockmarket="hs" stockcode="000625" >长安汽车<br>000625</strong>
</a>
<a taid="d_00001" class="self_select fr zxg_1" href="javascript:void(0);">加入自选股</a>
</h1>
<div class="new_detail fl">
<iframe src="http://stockpage.10jqka.com.cn/realHead_v2.html#hs_000625" name="ifm" width="100%" height="100%" marginheight="0" marginwidth="0" frameborder="0" scrolling="no"></iframe>
</div>
<ul class="adplace ad3" >
<li>
<script>
(function() {
var s = "_" + Math.random().toString(36).slice(2);
document.write('<div id="' + s + '"></div>');
(window.slotbydup=window.slotbydup || []).push({
id: '950906',
container: s,
size: '130,22',
display: 'inlay-fix'
});
var codeItem = $('#stockNamePlace');
if((/^(hs|33)/).test(codeItem.attr('stockmarket'))&&(/^(3)/).test(codeItem.attr('stockcode'))){
$.ajax({
url:'//d.10jqka.com.cn/v2/realhead/'+codeItem.attr('stockmarket')+'_'+codeItem.attr('stockcode')+'/last.js',
dataType:'jsonp',
jsonpCallback:'quotebridge_v2_realhead_'+codeItem.attr('stockmarket')+'_'+codeItem.attr('stockcode')+'_last',
cache:!0,
success:function(data){
if(data){
var item = data.items;
var isNewCode = parseInt(item['130']%1000000/100000);
var text = codeItem.text();
if(isNewCode===1){
//次新股
text='C'+text;
}else if(isNewCode===2){
//新股
text='N'+text;
}
codeItem.text(text);
}
}
})
}
})();
</script>
</li>
<li>
<script>
(function() {
var s = "_" + Math.random().toString(36).slice(2);
document.write('<div id="' + s + '"></div>');
(window.slotbydup=window.slotbydup || []).push({
id: '950907',
container: s,
size: '130,22',
display: 'inlay-fix'
});
})();
</script>
</li>
<li>
<script>
(function() {
var s = "_" + Math.random().toString(36).slice(2);
document.write('<div id="' + s + '"></div>');
(window.slotbydup=window.slotbydup || []).push({
id: '1096141',
container: s,
size: '130,22',
display: 'inlay-fix'
});
})();
</script>
</li>
<li>
<script>
(function() {
var s = "_" + Math.random().toString(36).slice(2);
document.write('<div id="' + s + '"></div>');
(window.slotbydup=window.slotbydup || []).push({
id: '1096142',
container: s,
size: '130,22',
display: 'inlay-fix'
});
})();
</script>
</li>
</ul>
</div></div>
<div id="in_menu"><div class="menu">
<div class="top_menu">
<h2 class="nav_list cb">
<a class="stat home nav_current" href="/000625/" stat="f10_stat_1">首页概览</a> <a class="stat " stat="f10_sp_zjlx" href="/000625/funds/">资金流向</a>
<a class="stat " stat="f10_sp_company" href="/000625/company/">公司资料</a>
<a class="stat " stat="f10_sp_news" href="/000625/news/">新闻公告</a>
<a class="stat " stat="f10_sp_finance" href="/000625/finance/">财务分析</a>
<a class="stat " stat="f10_sp_operate" href="/000625/operate/">经营分析</a>
<a class="stat " stat="f10_sp_holder" href="/000625/holder/">股东股本</a>
<a class="stat " stat="f10_sp_position" href="/000625/position/">主力持仓</a>
<a class="stat " stat="f10_sp_event" href="/000625/event/">公司大事</a>
<a class="stat " stat="f10_sp_bonus" href="/000625/bonus/">分红融资</a>
<a class="stat " stat="f10_sp_worth" href="/000625/worth/">价值分析</a>
<a class="stat " stat="f10_sp_field" href="/000625/field/">行业分析</a>
</h2>
<ul class="sub_list " style=" padding-left:11px; ">
<li class="sl_first"><a href="/000625/#hqzs" class="turnto" name="hqzs">行情走势</a></li>
<!-- <li ><a href="/000625/#tbts" class="turnto" name="tbts">特别提示</a></li> -->
<!-- <li><a href="/000625/#zxxx">最新消息</a></li>-->
<li><a href="/000625/#xwgg" class="turnto" name="xwgg">最新消息</a></li>
<!-- <li><a href="http://stockpage.10jqka.com.cn/000625/finance/#finance" class="turnto" name="cwzb">财务指标</a></li> -->
<li><a href="/000625/#lhb" class="turnto" name="lhb">龙虎榜</a></li>
<li><a href="/000625/#dzjy" class="turnto" name="dzjy">大宗交易</a></li>
<li><a href="/000625/#margin" class="turnto" name="rzrq">融资融券</a></li>
<!-- <li><a href="/000625/#gb" class="turnto" name="gb">股吧</a></li> -->
</ul> <ul class="sub_list " style="display:none; padding-left:86px; ">
<li class="sl_first"><a href="/000625/funds/#funds_sszjlx" class="turnto" name="funds_sszjlx">实时资金流向</a></li>
<li><a href="/000625/funds/#funds_zlzjzz" class="turnto" name="funds_zlzjzz">主力资金追踪</a></li>
<li><a href="/000625/funds/#funds_lszjsj" class="turnto" name="funds_lszjsj">历史资金数据一览</a></li>
</ul>
<ul class="sub_list " style="display:none; padding-left:163px; ">
<li class="sl_first"><a href="/000625/company/#detail" class="turnto" name="detail">详细情况</a></li>
<li><a href="/000625/company/#manager" class="turnto" name="manager">高管介绍</a></li>
<li><a href="/000625/company/#publish" class="turnto" name="publish">发行相关</a></li>
<li><a href="/000625/company/#share" class="turnto" name="share">参股控股公司</a></li>
</ul>
<ul class="sub_list " style="display:none; padding-left:240px;">
<!-- <li class="sl_first"><a href="/000625/news/#linkage" class="turnto" name="linkage">新闻与股价联动</a></li> -->
<li><a href="/000625/news/#pubs" class="turnto" name="pubs">公司公告</a></li>
<li><a href="/000625/news/#report" class="turnto" name="report">相关研报</a></li>
</ul>
<ul class="sub_list " style="display:none; padding-left:315px; ">
<li class="sl_first"><a href="/000625/finance/#finance" class="turnto" name="finance">财务指标</a></li>
<li><a href="/000625/finance/#alter" class="turnto" name="alter">指标变动说明</a></li>
<li><a href="/000625/finance/#assetdebt" class="turnto" name="assetdebt">资产负债构成</a></li>
<li><a href="/000625/finance/#view" class="turnto" name="view">财务报表</a></li>
</ul>
<ul class="sub_list " style="display:none; padding-left:392px; "> <li class="sl_first"><a href="/000625/operate/#intro" class="turnto" name="intro">主营介绍</a></li>
<li><a href="/000625/operate/#invest" class="turnto" name="invest">运营业务数据</a></li>
<li><a href="/000625/operate/#analysis" class="turnto" name="analysis">主营构成分析</a></li> <li><a href="/000625/operate/#observe" class="turnto" name="observe">董事会经营评述</a></li>
</ul>
<ul class="sub_list " style="display:none; padding-left:469px; ">
<li class="sl_first"><a href="/000625/holder/#holdernum" class="turnto" name="holdernum">股东人数</a></li>
<li><a href="/000625/holder/#flowholder" class="turnto" name="flowholder">十大流通股东</a></li>
<li><a href="/000625/holder/#tenholder" class="turnto" name="tenholder">十大股东</a></li> <li><a href="/000625/holder/#holdlevel" class="turnto" name="holdlevel">控股层级关系</a></li>
</ul>
<ul class="sub_list " style="display:none; padding-left:544px; ">
<li class="sl_first"><a href="/000625/position/#organhold" class="turnto" name="organhold">机构持股汇总</a></li>
<li><a href="/000625/position/#holdetail" class="turnto" name="holdetail">机构持仓明细</a></li>
</ul>
<ul class="sub_list " style="display:none; padding-left:420px;">
<li class="sl_first"><a href="/000625/event/#remind" class="turnto" name="remind">特别提示</a></li>
<li><a href="/000625/event/#manager" class="turnto" name="manager">高管持股变动</a></li>
<li><a href="/000625/event/#holder" class="turnto" name="holder">股东持股变动</a></li>
<li><a href="/000625/event/#guarantee" class="turnto" name="guarantee">担保明细</a></li>
<li><a href="/000625/event/#violate" class="turnto" name="violate">违规处理</a></li>
</ul>
<ul class="sub_list " style="display:none; padding-left:695px; ">
<li class="sl_first"><a href="/000625/bonus/#bonuslist" class="turnto" name="bonuslist">分红情况</a></li>
<li><a href="/000625/bonus/#additionprofile" class="turnto" name="additionprofile">增发概况</a></li>
<li><a href="/000625/bonus/#stockallot" class="turnto" name="stockallot">配股概况</a></li>
</ul>
<ul class="sub_list " style="display:none; padding-left:695px;">
<li class="sl_first"><a href="/000625/worth/#forecast" class="turnto" name="forecast">业绩预测</a></li>
<li><a href="/000625/worth/#forecastdetail" class="turnto" name="forecastdetail">业绩预测详表</a></li>
<li><a href="/000625/worth/#stockreport" class="turnto" name="stockreport">个股研报</a></li>
<!-- <li><a href="/000625/worth/#tradereport" class="turnto" name="tradereport">同行业研报</a></li> -->
</ul>
<ul class="sub_list " style="display:none; padding-left:810px;">
<li class="sl_first"><a href="/000625/field/#fieldstatus" class="turnto" name="fieldstatus">行业地位</a></li>
<li><a href="/000625/field/#fieldnews" class="turnto" name="fieldnews">行业新闻</a></li>
</ul>
</div>
</div></div>
<div class="m_content">
<div class="m_cont_4">
<div class="main_cont_1" id='tbts'>
<div class="m_cont_2 fl" id="hqzs">
<div class="main_cont_0" style="width:620px">
<div class="interface interface_2">
<dl class="interface_1 stat" stat="f10_sp_tzts">
<dt><a href="http://q.10jqka.com.cn/qqsc/#refCountId=db_509381c1_860" target="_blank">投资提示</a></dt>
</dl>
<div class=" sub_interface_2">
<span class="options_btn">
<a class="options_up" href="javascript:void(0);">向上</a>
<a class="options_down" href="javascript:void(0);">向下</a>
</span>
<ul>
</ul>
</div>
</div>
<!--增加广告 2014-07-23 Stella-->
<span class="adxxdl ad_x1" style="text-indent: 0;">
<script>
(function() {
var s = "_" + Math.random().toString(36).slice(2);
document.write('<div id="' + s + '"></div>');
(window.slotbydup=window.slotbydup || []).push({
id: '950905',
container: s,
size: '40,18',
display: 'inlay-fix'
});
})();
</script>
</span>
<span class="adxxdl ad_x2" style="text-indent: 0;">
<script>
(function() {
var s = "_" + Math.random().toString(36).slice(2);
document.write('<div id="' + s + '"></div>');
(window.slotbydup=window.slotbydup || []).push({
id: '967147',
container: s,
size: '40,18',
display: 'inlay-fix'
});
})();
</script>
</span>
<!--增加广告 End-->
<iframe src="http://stockpage.10jqka.com.cn/HQ_v4.html#hs_000625" width="100%" height="506" marginheight="0" marginwidth="0" frameborder="0" scrolling="no"></iframe>
</div>
</div>
<div class="m_cont_1">
<ul class="news m_title_0 m_title_2 tit">
<li class="tab_current stat" id="newsright_stocknews">
<a href="javascript:void(0)" class="stat" stat="f10_spyk_wdpk">五档盘口</a>
</li>
<li class="tab_last stat" id="newsright_fieldnews">
<a href="#gegugp_zjjp" class="stat" stat="f10_spyk_zjlx" target="_self">资金流向</a>
</li>
</ul>
<div id="newsright_stocknews_table" class="sub_cont_1 fl">
<p class="trade_status">
<span class="wb">委比:<strong class="minus">--</strong></span>
<span class="wc">委差:<strong class="minus">--</strong></span>
</p>
<table class="m_table_6">
<tr><td class="td_left">卖五</td><td class="minus sell5">--</td><td class="sell5data">--</td></tr>
<tr><td class="td_left">卖四</td><td class="minus sell4">--</td><td class="sell4data">--</td></tr>
<tr><td class="td_left">卖三</td><td class="minus sell3">--</td><td class="sell3data">--</td></tr>
<tr><td class="td_left">卖二</td><td class="minus sell2">--</td><td class="sell2data">--</td></tr>
<tr><td class="td_left">卖一</td><td class="minus sell1">--</td><td class="sell1data">--</td></tr>
<tr class="bordert"><td class="td_left">买一</td><td class="plus buy1">--</td><td class="buy1data">--</td></tr>
<tr><td class="td_left">买二</td><td class="plus buy2">--</td><td class="buy2data">--</td></tr>
<tr><td class="td_left">买三</td><td class="plus buy3">--</td><td class="buy3data">--</td></tr>
<tr><td class="td_left">买四</td><td class="plus buy4">--</td><td class="buy4data">--</td></tr>
<tr><td class="td_left">买五</td><td class="plus buy5">--</td><td class="buy5data">--</td></tr>
</table>
<table class="m_table_7">
<tbody>
<tr class="out_in_disk">
<td>外盘:<span class="plus wp">--</span></td>
<td>内盘:<span class="minus np">--</span></td>
</tr>
</tbody>
</table>
<div class="ad09">
<!-- <script type="text/javascript">BAIDU_CLB_fillSlot("950913");</script> -->
<a href="http://activity.10jqka.com.cn/level2/cjmx/default/?code=000625" target="_blank" style="font-size: 12px; color: rgb(255, 0, 0); font-weight: normal; font-style: normal; text-decoration: underline;" onmouseover="this.style.color='#0000FF';this.style.fontWeight='normal';this.style.fontStyle='normal';this.style.textDecoration='underline';" onmouseout="this.style.color='#ff0000';this.style.fontWeight='normal';this.style.fontStyle='normal';this.style.textDecoration='underline';">数据有新异动!</a></div>
</div>
<div id="newsright_fieldnews_table" class="sub_cont_1 fl hidden">
<em class="day_out"></em>
<div class="flash_cont">
<div id="flashContent"></div>
<div id='pie_legend' class="pie_legend">
<table cellpadding="0" cellspacing="0"><tbody></tbody></table>
</div>
</div>
<thead>
<tr><th></th><th>流入(万)</th><th>流出(万)</th></tr>
</thead>
<tbody></tbody>
</table>
</div>
<ul class="m_title_0 m_title_1 tit">
<li class="tab_current" id="cjmx">
<a href="javascript:void(0);" class="stat" stat="f10_spyk_cjmx" >成交明细</a>
</li>
<li class="tab_last stat" stat="dxjl_dj" id ="dxjl">
<a href="javascript:void(0);" class="stat" stat="f10_spyk_dxjl" >短线精灵 </a>
</li>
</ul>
<!-- <div class="sub_cont_2" id="cjmx_table" style="height:190px;"> -->
<div class="sub_cont_2" id="cjmx_table22" style="height:190px;">
<table class="ri_table m_table_0">
<thead>
<tr>
<th>时间</th><th>成交价</th><th>现手</th><th>性质</th>
</tr>
</thead>
<tbody>
<tr><td>1</td><td>1</td><td>1</td><td>1</td><tr>
</tbody>
</table>
</div>
<div class="sub_cont_2 hidden" id="dxjl_table" style="height:190px;">
<table class="m_table_0">
<tbody>
</tbody>
</table>
</div>
</div>
<div style="clear:both"></div>
<div id="ad4" class="adplace ad4">
</div>
<script>
_cmsad({
appendId:'ad4',
adb_id:'171'
});
</script>
<div class="sub_cont_5 m_s_l hSty1" stat="gegugp_zjjp" id="gegugp_zjjp">
<div class="m_title_4" >
<h2 class="fl">实时成交分布</h2>
<ul class="mt_list fr">
<li class="stat" stat="f10_spgd_sscj">
<a href="/000625/funds/" target="_blank">更多></a>
</li>
</ul>
</div>
<div class="cont_sscjfb clearfix">
<div class="cont_txt">
<p>总流入:<i class="cred" id="zjlxzlr">--</i>万元</p>
<p>总流出:<i class="cgreen" id="zjlxzlc">--</i>万元</p>
<p>净 额:<i class="cred" id="zjlxzlje">--</i>万元</p>
</div>
<div class="cont_chart fr " id="container" style="width: 200px; height: 200px;"></div>
<!-- <P class="notips">暂无数据</P> -->
</div>
<table class="table_sscjfb mt4" >
<thead>
<tr><th width="20%"> </th><th width="40%">流入(万元)</th><th width="40%">流出(万元)</th></tr>
</thead>
<tbody></tbody></table>
<div style="clear:both"></div></div>
<div class="sub_cont_6 hSty1" id="sscjfb">
<div class="m_title_4">
<h2 class="fl">资金流向历史统计</h2>
<ul class="mt_list fr">
<li class="stat" stat="f10_spgd_zjlx">
<a href="/000625/funds/" target="_blank" >更多></a>
</li>
</ul>
</div>
<div class="zjlxlstj_chart" id="container2" style="width: 400px; height: 230px;"></div>
<script>
var date = [[257258.04,212119.62,518418.59,255569.14,56991.45],[201475.59,181239.26,397533.86,326912.37,66775.83]];
var date_time = ["07-13","07-14","07-15","07-18","07-19"];
var date_free = [[257258.04,212119.62,518418.59,255570.92,103073.19],[201478.85,181239.26,397534.04,326912.37,93965.84]];
var date_time_free = ["07-13","07-14","07-15","07-18","07-19"];
</script>
<div id="history_funds_analysis" class="hide">
<p class="zjlxlstj_txt">近5日内该股资金总体呈流入状态,高于行业平均水平,5日共流入<i class="cred">126419.95</i>万元。</p>
</div>
<div id="history_funds_analysis_free" class="hide">
<p class="zjlxlstj_txt">近5日内该股资金总体呈流入状态,高于行业平均水平,5日共流入<i class="cred">145310.02</i>万元。</p>
</div>
<p class="zjlxlstj_txt mb14" title="据统计,近10日内主力筹码较分散,呈低度控盘状态。">
据统计,近10日内主力筹码较分散,呈低度控盘状态。 </p>
</div>
<div style="clear:both"></div>
<div class="sub_cont_5 m_s_l hSty3" stat="gegugp_gsxw" id="xwgg">
<div class="m_title_4">
<h2 class="fl">公司新闻</h2>
<ul class="mt_list fr">
<li class="stat" stat="f10_spgd_gsxw">
<a href="http://stockpage.10jqka.com.cn/000625/news/" target="_blank">更多></a>
</li>
</ul>
</div>
<ul class="news_list stat" stat="f10_spqk_gsxw">
<li class="clearfix">
<span class="news_title fl"><a href="http://field.10jqka.com.cn/20220719/c640537982.shtml" target="_blank">16家整车企业仅3家上半年净利预增 两家华为合作</a></span>
<span class="news_date"><em>07-19 10:02</em></span>
</li>
<li class="clearfix">
<span class="news_title fl"><a href="http://stock.10jqka.com.cn/20220719/c640535471.shtml" target="_blank">国泰君安证券:汽车板块走向风险偏好和业绩双轮</a></span>
<span class="news_date"><em>07-19 08:47</em></span>
</li>
<li class="clearfix">
<span class="news_title fl"><a href="http://stock.10jqka.com.cn/20220718/c640509539.shtml" target="_blank">汽车零部股再度爆发,万通智控等大涨,广东鸿图</a></span>
<span class="news_date"><em>07-18 14:16</em></span>
</li>
</ul>
</div>
<div class="sub_cont_6 hSty3">
<div class="m_title_4">
<h2 class="fl">公司公告</h2>
<ul class="mt_list fr">
<li class="stat" stat="f10_spgd_gsgg">
<a href="http://search.10jqka.com.cn/search?preParams=&ts=1&f=1&qs=site_stockpage_more&querytype=&tid=pubnote&bgid=&sdate=&edate=&tid=pubnote&w=000625" target="_blank">更多></a>
</li>
</ul>
</div>
<ul class="news_list stat" stat="f10_spqk_gsgg">
<li class="clearfix">
<span class="news_title fl"><a href="http://notice.10jqka.com.cn/api/pdf/4dbfe587f3689d23.pdf" target="_blank">长安汽车:2022年半年度业绩预告</a></span>
<span class="news_date"><em>2022-07-15</em></span>
</li>
<li class="clearfix">
<span class="news_title fl"><a href="http://notice.10jqka.com.cn/api/pdf/87439fe016b2e2db.pdf" target="_blank">长安汽车:关于新增募集资金专户并签订募集资金</a></span>
<span class="news_date"><em>2022-07-09</em></span>
</li>
<li class="clearfix">
<span class="news_title fl"><a href="http://notice.10jqka.com.cn/api/pdf/2075dccaad19627e.pdf" target="_blank">长安汽车:关于2022年6月份产、销快报的自愿性信</a></span>
<span class="news_date"><em>2022-07-09</em></span>
</li>
<li class="clearfix">
<span class="news_title fl"><a href="http://notice.10jqka.com.cn/api/pdf/14f32f365a249c4.pdf" target="_blank">长安汽车:关于公司董事变更的公告</a></span>
<span class="news_date"><em>2022-07-09</em></span>
</li>
<li class="clearfix">
<span class="news_title fl"><a href="http://notice.10jqka.com.cn/api/pdf/b817e98da312a770.pdf" target="_blank">长安汽车:第八届董事会第四十二次会议决议公告</a></span>
<span class="news_date"><em>2022-07-09</em></span>
</li>
<li class="clearfix">
<span class="news_title fl"><a href="http://notice.10jqka.com.cn/api/pdf/c290b21567658968.pdf" target="_blank">长安汽车:关于召开2022年第二次临时股东大会的</a></span>
<span class="news_date"><em>2022-07-09</em></span>
</li>
<li class="clearfix">
<span class="news_title fl"><a href="http://notice.10jqka.com.cn/api/pdf/ab2fb35bf9ba9d79.pdf" target="_blank">长安汽车:2022年第二次临时股东大会资料</a></span>
<span class="news_date"><em>2022-07-09</em></span>
</li>
<li class="clearfix">
<span class="news_title fl"><a href="http://notice.10jqka.com.cn/api/pdf/c637032d1d5c8404.pdf" target="_blank">长安汽车:独立董事关于第八届董事会第四十二次</a></span>
<span class="news_date"><em>2022-07-09</em></span>
</li>
</ul>
</div>
<div class="rec-pop" style="display:none">
<div class="rec-pop-hd">
<span class="close"></span>
<span class="min"></span>
<a href="http://www.10jqka.com.cn" target="_blank">同花顺推荐</a>
</div>
<div class="rec-pop-main">
<iframe width="100%" height="100%" frameborder="0" scrolling="no" marginwidth="0" marginheight="0" name="zxp" src="http://news.10jqka.com.cn/stockpagePopnews.shtml"></iframe>
</div>
<script type="text/javascript">
$('.rec-pop-hd .min').on('click', function() {
$('.rec-pop-main').toggle('fast');
});
$('.rec-pop-hd .close').on('click', function() {
$('.rec-pop, .rec-pop-main').hide();
});
var checktime = '';
$('.rec-pop').hover(
function(){
checktime = THS.time.microtime();
},
function(){
if (checktime) {
var latime = THS.time.microtime()-checktime;
if (!$('.rec-pop').attr('log') || latime >3) {
if (latime > 3) {
TA.log({id:'gg_visitorvip',fid:'gg_allvisitor', time:latime, nj:1});
$('.rec-pop').attr({'log':'loged'});
} else if (latime > 1) {
TA.log({id:'gg_allvisitor', time:latime, nj:1});
$('.rec-pop').attr({'log':'loged'});
}
}
}
});
$('#xwgg').one('appear',function(){
var nowtime = THS.time.microtime();
var settime = storage.get('tjtime');
if (typeof(settime) == 'undefined') {
settime = 0;
}
if ((nowtime - settime) > 21600) {
storage.set('tjtime', nowtime);
setTimeout("$('.rec-pop').show()", 5000);
}
})
</script>
</div>
<div style="clear:both"></div>
<div class="sub_cont_5 hSty4">
<div class="m_title_4">
<h2 class="fl">行业资讯</h2>
<ul class="mt_list fr">
<li class="stat" stat="f10_spgd_hyzx">
<a href="http://stockpage.10jqka.com.cn/000625/field/#fieldnews" target="_blank">更多></a>
</li>
</ul>
</div>
<ul class="news_list stat" stat="f10_spqk_hyzx">
<li class="clearfix">
<span class="news_title fl"><a href="http://news.10jqka.com.cn/20220718/c640526971.shtml" target="_blank">新买日产新奇骏频繁出故障 车主:不敢开了</a></span>
<span class="news_date"><em>07-18 19:26</em></span>
</li>
<li class="clearfix">
<span class="news_title fl"><a href="http://stock.10jqka.com.cn/usstock/20220718/c640526967.shtml" target="_blank">距离发布不到一周!全新一代本田Type-R官图竟然</a></span>
<span class="news_date"><em>07-18 19:25</em></span>
</li>
<li class="clearfix">
<span class="news_title fl"><a href="http://field.10jqka.com.cn/20220718/c640526952.shtml" target="_blank">新能源汽车市场规模不断上升 机构预测锂产业链一</a></span>
<span class="news_date"><em>07-18 19:25</em></span>
</li>
<li class="clearfix">
<span class="news_title fl"><a href="http://field.10jqka.com.cn/20220718/c640526899.shtml" target="_blank">传统车企战投竞赛加速:北汽集团设立20亿元产投</a></span>
<span class="news_date"><em>07-18 19:20</em></span>
</li>
<li class="clearfix">
<span class="news_title fl"><a href="http://field.10jqka.com.cn/20220718/c640526785.shtml" target="_blank">多重福利馈赠消费者!2022昆明国际车展将于8月4</a></span>
<span class="news_date"><em>07-18 19:17</em></span>
</li>
<li class="clearfix">
<span class="news_title fl"><a href="http://news.10jqka.com.cn/20220718/c640526736.shtml" target="_blank">3年败光84亿后,“中国特斯拉”走向破产</a></span>
<span class="news_date"><em>07-18 19:14</em></span>
</li>
</ul>
</div>
<div class="sub_cont_6 hSty4">
<div class="m_title_4">
<h2 class="fl">研究报告</h2>
<ul class="mt_list fr">
<li class="stat" stat="f10_spgd_yjbg">
<a href="http://search.10jqka.com.cn/search?preParams=&ts=1&f=1&qs=site_stockpage_more&querytype=&tid=report&bgid=&sdate=&edate=&tid=report&w=000625" target="_blank">更多></a>
</li>
</ul>
</div>
<ul class="news_list stat" stat="f10_spqk_yjbg">
<li class="clearfix">
<span class="news_title fl"><a href="http://news.10jqka.com.cn/field/sr/20220719/37373693.shtml" target="_blank">业绩预告超预期,自主品牌强势发力</a></span>
<span class="news_date"><em>07-19 09:13</em></span>
</li>
<li class="clearfix">
<span class="news_title fl"><a href="http://news.10jqka.com.cn/field/sr/20220717/37356227.shtml" target="_blank">2022年中报预告点评:盈利能力靓丽,进一步催化</a></span>
<span class="news_date"><em>07-17 16:40</em></span>
</li>
<li class="clearfix">
<span class="news_title fl"><a href="http://news.10jqka.com.cn/field/sr/20220717/37355775.shtml" target="_blank">2022年半年度业绩预告点评:2Q22延续盈利能力同</a></span>
<span class="news_date"><em>07-17 15:11</em></span>
</li>
<li class="clearfix">
<span class="news_title fl"><a href="http://news.10jqka.com.cn/field/sr/20220715/37348905.shtml" target="_blank">克服疫情影响,Q2扣非业绩同比高增长</a></span>
<span class="news_date"><em>07-15 20:37</em></span>
</li>
<li class="clearfix">
<span class="news_title fl"><a href="http://news.10jqka.com.cn/field/sr/20220715/37347451.shtml" target="_blank">二季度业绩符合预期,静待下半年新能源汽车放量</a></span>
<span class="news_date"><em>07-15 19:12</em></span>
</li>
<li class="clearfix">
<span class="news_title fl"><a href="http://news.10jqka.com.cn/field/sr/20220715/37340435.shtml" target="_blank">2022年半年报业绩预告点评:Q2扣非归母净利润同</a></span>
<span class="news_date"><em>07-15 15:56</em></span>
</li>
</ul>
</div>
<div style="clear:both"></div>
</div>
</div>
<div class="m_cont_3">
<div class="m_cont_0">
<ul class="m_title_0 m_title_1 tit">
<li class="tab_current" id="newsleft_fieldcode">
<a class="related_industry stat" stat="f10_spyk_zjfw" href="javascript:void(0);"> 最近访问 </a>
</li>
<li class="optional_share tab_last stat" stat="zxg_2" id="newsleft_selfstock">
<a href="javascript:void(0);">我的自选股 </a>
</li>
</ul>
<div class="sub_cont_0">
<table class="ri_table m_table_0 stat" stat="f10_spyk_zxg" id="newsleft_fieldcode_table">
<thead>
<tr>
<th>股票名称</th>
<th>最新价</th>
<th>涨跌幅</th>
</tr>
</thead>
<tbody id="zjfw">
</tbody>
<tbody id="rmgg" style="display:none">
<tr><th colspan="3" style="background-color:#dceaf3">以下为热门个股</th></tr>
</tbody>
</table>
<script>
var pagescode = '000625';
function stockRender(){
this.render = function(json){
var resultlist = THS.quote.formatResult(json);
if (resultlist.length > 0) {
var buffer = [],i=0;
var buffer2 = [],i2=0;
var shownum = 10;
$.each(resultlist, function(tag, item) {
if (tag < shownum) {
var stockcode = item.code;
var stockname = item.name;
var nowprice = item.nowprice;
var perc = item.percent;
var color = (perc > 0) ? 'red':'green';
if (typeof(stockname) == 'undefined') {
stockname = '';
}
buffer[i++] ='<tr class="'+color+'"> <td class="gray"><a target="_blank" href="http://stockpage.10jqka.com.cn/'+stockcode+'/">'+stockname+'</a></td><td>'+nowprice+'</td><td>'+perc+'%</td></tr>';
}
});
//alert(buffer.length);
if(buffer.length==0){
//alert('111');
$('#zjfw').html('<centet>暂无访问记录</cneter>');
}else{
$('#zjfw').html(buffer.join(''));
}
}
}
}
function clearVH() {
storage.set('sviewlist', '');
alert('已清空历史,谢谢使用!');
}
var codelist = storage.get('sviewlist');
if (!codelist) {
codelist = '601985,601766,601899,601988,601989,300033';
}
if (codelist) {
THS.quote.getData(codelist, new stockRender());
}
var codes = codelist?codelist.split(','):[];
var ecode = {};
var bpfr = [], j=0;
bpfr[j++] = pagescode;
for(var i = 0; i < codes.length; i++){
if (codes[i]) {
if(!ecode[codes[i]]){
bpfr[j++]=codes[i];
ecode[codes[i]] = 1;
}
}
}
if (bpfr.length > 0) {
storage.set('sviewlist', bpfr.join(','));
}
</script>
<div class="my_share hidden stat" id="newsleft_selfstock_table" stat="wdzxg">
<p class="login_tip"><a style="color:blue" href="http://upass.10jqka.com.cn/login?redir=HTTP_REFERER">暂未登录,请先登录</a></p>
</div>
<span id="qk" class="picking_device stat" stat="#" style="display:block;left:45px">
<a id="clearlis" href="javascript:void(0)" onclick="javascript:clearVH()" target="_self">清空访问记录</a>
</span>
<span id="tj" class="picking_device stat" stat="f10_spgd_tjxg" style="display:none">
<a href="http://data.10jqka.com.cn/souniu/" target="_blank">条件选股</a>
</span>
<span id="gl" class="manage_stock stat" stat="f10_spgd_glzxg" style="display:none">
<a href="javascript:void(0);">管理自选股</a>
</span>
</div>
</div>
<div style="clear:both;"></div>
<div class="sub_cont_3">
<h2 class="m_title_4">公司简介</h2>
<dl class="company_details">
<!-- <dt>公司名称:</dt>
<dd>长安汽车</dd> -->
<dt>所属地域:</dt>
<dd>重庆市</dd>
<dt>涉及概念:</dt>
<dd title="半年报预增,网约车,华为汽车,燃料电池,标普道琼斯A股,MSCI预期,宁德时代概念,超级电容,MSCI概念,车联网,人工智能,深股通,无人驾驶,沪伦通,央企国资改革,融资融券,新能源汽车">半年报预增,网约车,华为汽车,燃...</dd>
<dt>主营业务:</dt>
<dd><a href="/000625/operate/" target="_blank" class="jyfx stat" stat="f10_spgd_jyfx">经营分析</a></dd>
<dd title=" 许可项目:制造、销售汽车(含轿车),制造汽车发动机系列产品。汽车租赁(依法须经批准的项目,经相关部门批准后方可开展经营活动,具体经营项目以相关部门批准文件或许可证件为准)一般项目:汽车(含小轿车)开发,汽车发动机系列产品的开发、销售,配套零部件、模具、工具的、开发,制造,销售,机械安装工程科技技术咨询服务,自营和代理各类商品和技术的进出口(国家限定公司经营或禁止进出口的商品和技术除外),开发、生产、销售计算机软件、硬件产品,计算机应用技术咨询、培训,计算机网络系统设计、安装、维护,代办中国电信股份有限公司重庆分公司委托的电信业务,技术服务、技术开发、技术咨询、技术交流、技术转让、技术推广。(除依法须经批准的项目外,凭营业执照依法自主开展经营活动)">许可项目:制造、销售汽车(含轿车),制造汽车...</dd>
<dt>上市日期:</dt>
<dd>1997-06-10</dd>
<dt>每股净资产:</dt>
<dd>8.00元</dd>
<dt>每股收益:</dt>
<dd>0.59元</dd>
<dt>净利润:</dt>
<dd>45.36亿元</dd>
<dt>净利润增长率:</dt>
<dd>431.45%</dd>
<dt>营业收入:</dt>
<dd>345.76亿元</dd>
<dt>每股现金流:</dt>
<dd>0.10元</dd>
<dt>每股公积金:</dt>
<dd>1.38元</dd>
<dt>每股未分配利润:</dt>
<dd>5.30元</dd>
<dt>总股本:</dt>
<dd>99.22亿</dd>
<dt>流通股:</dt>
<dd>76.04亿</dd>
</dl>
</div>
<div class="sub_cont_3 overhd" stat="lrfx">
<h2 class="m_title_4"><a href="http://stockpage.10jqka.com.cn/000625/finance/#finance" target="_blank" class="moreinfo stat" stat="f10_spgd_lrfx">更多 ></a>利润分析</h2>
<div class="charts-lr" style="height: 143px" >
<p>单位:万元</p>
<div id="lrfxdata" style="display:none">{"year":[2022,2021,2020],"s03":[453635.51,85358.58,""],"s06":["",172924.52,""],"s09":["",299224.56,""],"s12":["",355246.33,332425.12]}</div>
<div id="lrfx-charts"></div>
</div>
<script>
var lrfxdata = eval('(' +$('#lrfxdata').html()+')');
$('#lrfx-charts').highcharts({
chart: {type: 'column',height: 120},
title: null,
subtitle: null,
xAxis: {
categories: lrfxdata.year
},
yAxis: {title: null},
legend:{enabled:false},
credits:{enabled:false},
tooltip: {},
plotOptions: {column: {pointPadding: 0.2,borderWidth: 0}},
series: [{
name: '第一季度',
color: '#ffd7d8',
data: lrfxdata.s03
}, {
name: '第二季度',
color: '#ffd7d8',
data: lrfxdata.s06
}, {
name: '第三季度',
color: '#ed9d9e',
data: lrfxdata.s09
}, {
name: '第四季度',
color: '#dd7677',
data: lrfxdata.s12
}]
});
</script>
</div>
<div class="adplace ad5">
<script>
(function() {
var s = "_" + Math.random().toString(36).slice(2);
document.write('<div id="' + s + '"></div>');
(window.slotbydup=window.slotbydup || []).push({
id: '1096137',
container: s,
size: '180,338',
display: 'inlay-fix'
});
})();
</script>
</div>
<div class="ranking_list sub_cont_3 cb">
<h2 class="m_title_4">
同行业市场表现排行
</h2>