-
Notifications
You must be signed in to change notification settings - Fork 0
/
jingshangfeng.html
2772 lines (2634 loc) · 116 KB
/
jingshangfeng.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>
<!-- saved from url=(0040)https://www.sz-jsf.net/zh-cn/about.html -->
<html lang="zh-CN"><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>精尚锋公司 - 精尚锋 精尚锋</title>
<meta name="keywords" content="精尚锋,精尚锋集团,精尚锋官网,微信,QQ,精尚锋游戏,精尚锋云,精尚锋, 精尚锋 Games, WeChat, 精尚锋 Cloud">
<meta name="description" content="成立于2014年5月吉日,团队伙伴都是来自于ST ,TI, QUALCOMM原厂和双A双W工作经历的资深Sales或FAE,多年来我们专注于研发、生产、销售嵌入式产品和解决方案,包括BMS多节锂电保护板、智能教育机器人、DLP微型投影仪、无人机图传、高清视频图像采集设备、扫地机器人、低功耗WIFI可视门禁、DCDC中大功率电源模块、高清运动摄像机、360全景后视、舞台灯光等领域的应用,以及支持用户进行快速二次开发的配套工具与软件包。">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=0, minimum-scale=1.0, maximum-scale=1.0">
<meta name="format-detection" content="telephone=no">
<meta http-equiv="X-UA-Compatible" content="IE=Edge">
<script>
window.windowLoadList = [];
window.windowLoad = function (call){
windowLoadList.push(call);
}
var _locale = 'zh-cn';
</script>
<script src="./jingshangfeng_files/aq_common.js"></script>
<script type="text/javascript" src="./jingshangfeng_files/jquery.min.js"></script>
<script type="text/javascript" src="./jingshangfeng_files/js.js"></script>
<script type="text/javascript" src="./jingshangfeng_files/js-2.js"></script>
<script type="text/javascript" src="./jingshangfeng_files/swiper.min.js"></script>
<script type="text/javascript" src="./jingshangfeng_files/qrcode.js"></script>
<script type="text/javascript" src="./jingshangfeng_files/tencent.js"></script>
<script type="text/javascript" src="./jingshangfeng_files/imgsize.js"></script>
<script type="text/javascript" src="./jingshangfeng_files/yearpicker.js"></script>
<script type="text/javascript" src="./jingshangfeng_files/jquery-throttle-debounce.js"></script>
<script src="./jingshangfeng_files/aegis.min.js"></script>
<script>
const aegis = new Aegis({
id: 'okypvhbvZrwvRnEg8o', // 上报 id
uin: 'xxx', // 用户唯一 ID(可选)
reportApiSpeed: true, // 接口测速
reportAssetSpeed: true, // 静态资源测速
spa: true, // spa 应用页面跳转的时候开启 pv 计算
});
</script>
<link rel="stylesheet" type="text/css" href="./jingshangfeng_files/base.css">
<link rel="stylesheet" type="text/css" href="./jingshangfeng_files/base-2.css">
<link rel="stylesheet" type="text/css" href="./jingshangfeng_files/index.css">
<link rel="stylesheet" type="text/css" href="./jingshangfeng_files/ten-search.css">
<link rel="stylesheet" href="./jingshangfeng_files/yearpicker.css" type="text/css">
</head>
<body>
<div class="wrap zh-cn">
<!-- 页头区域 -->
<div class="wrap_head head_white ">
<!-- 点击搜索icon 添加类名 search_area_show 隐藏菜单,显示输入框 -->
<!-- 添加类名 submenu_show 显示子菜单 -->
<div class="head_con">
<a class="logo" href="https://www.sz-jsf.net/zh-cn/index.html"><h1>精尚锋精尚锋</h1></a>
<ul class="menu_list">
<li class="menu_item">
<a class="txt" href="https://www.sz-jsf.net/zh-cn/about.html">简介</a>
<ul class="sub_list">
<li><a href="https://www.sz-jsf.net/zh-cn/about.html#about-con-1">公司简介</a></li>
<li><a href="https://www.sz-jsf.net/zh-cn/about.html#about-con-2">愿景及使命</a></li>
<li><a href="https://www.sz-jsf.net/zh-cn/about.html#about-con-3">发展历程</a></li>
<li><a href="https://www.sz-jsf.net/zh-cn/about.html#about-con-4">业务架构</a></li>
<li><a href="https://www.sz-jsf.net/zh-cn/about.html#about-con-5">管理团队</a></li>
<li><a href="https://www.sz-jsf.net/zh-cn/about.html#about-con-6">企业文化</a></li>
<li><a href="https://www.sz-jsf.net/zh-cn/about.html#about-con-7">办公地点</a></li>
</ul>
</li>
<li class="menu_item">
<a class="txt" href="https://www.sz-jsf.net/zh-cn/business.html">业务</a>
<ul class="sub_list">
<li><a href="https://www.sz-jsf.net/zh-cn/business.html">面向用户</a></li>
<li><a href="https://www.sz-jsf.net/zh-cn/business.html?page-active=to-b">面向企业</a></li>
<li><a href="https://www.sz-jsf.net/zh-cn/business.html?page-active=innovation">创新科技</a></li>
</ul>
</li>
<li class="menu_item">
<a class="txt" href="https://www.sz-jsf.net/zh-cn/employees.html">员工</a>
<ul class="sub_list">
<li><a href="https://www.sz-jsf.net/zh-cn/employees.html#staff-con-1">人才发展</a></li>
<li><a href="https://www.sz-jsf.net/zh-cn/employees.html#staff-con-2">精尚锋学堂</a></li>
<li><a href="https://www.sz-jsf.net/zh-cn/employees.html#staff-con-3">工作环境</a></li>
<li><a href="https://www.sz-jsf.net/zh-cn/employees.html#staff-con-4">员工活动</a></li>
</ul>
</li>
<li class="menu_item">
<a class="txt" href="https://www.sz-jsf.net/zh-cn/esg.html">ESG</a>
<ul class="sub_list">
<li><a href="https://www.sz-jsf.net/zh-cn/esg.html#respon-con-1">环境</a></li>
<li><a href="https://www.sz-jsf.net/zh-cn/esg.html#respon-con-2">社会</a></li>
<li><a href="https://www.sz-jsf.net/zh-cn/esg.html#respon-con-3">治理</a></li>
<li><a href="https://www.sz-jsf.net/zh-cn/esg.html#respon-con-6">ESG评级</a></li>
<li><a href="https://www.sz-jsf.net/zh-cn/esg.html#respon-con-7">报告</a></li>
</ul>
</li>
<li class="menu_item">
<a class="txt" href="https://www.sz-jsf.net/zh-cn/investors.html">投资者</a>
<ul class="sub_list">
<li><a href="https://www.sz-jsf.net/zh-cn/investors.html#investors-con-1">季度业绩及投资者新闻</a></li>
<li><a href="https://www.sz-jsf.net/zh-cn/investors.html#investors-con-2">公告及财务报告</a></li>
<li><a href="https://www.sz-jsf.net/zh-cn/investors.html#investors-con-3">业绩电话会及投资者日历</a></li>
<li><a href="https://www.sz-jsf.net/zh-cn/investors.html#investors-con-4">投资者工具包</a></li>
<li><a href="https://www.sz-jsf.net/zh-cn/investors.html#investors-con-5">证券及债券信息</a></li>
<li><a href="https://www.sz-jsf.net/zh-cn/investors.html#investors-con-6">环境、社会及管治</a></li>
</ul>
</li>
<li class="menu_item">
<a class="txt" href="https://www.sz-jsf.net/zh-cn/media.html">媒体</a>
<ul class="sub_list">
<li><a href="https://www.sz-jsf.net/zh-cn/media/news.html?type=media">企业动态</a></li>
<li><a href="https://www.sz-jsf.net/zh-cn/media/news.html?type=financial">财务新闻</a></li>
<li><a href="https://www.sz-jsf.net/zh-cn/media/perspective.html">精尚锋视角</a></li>
<li><a href="https://www.sz-jsf.net/zh-cn/media/library.html">媒体资料库</a></li>
</ul>
</li>
<li class="menu_item menu_item_lan">
<a class="cn" lang="zh-cn">简体</a> <i class="s_line">|</i> <a class="hk" lang="zh-hk">繁体</a> <i class="s_line">|</i> <a class="en" lang="en-us">English</a> </li>
</ul>
<!--<div class="search_area">
<a href="##" class="search_icon"></a>
<input type="text" class="ipt_search" value="" placeholder="请输入您想搜索的关键字" />
</div>-->
<div class="lang_area">
<a class="lang_ch current" lang="zh-cn">简</a> <i class="s_line">|</i> <a class="lang_hk" lang="zh-hk">繁</a> <i class="s_line">|</i> <a class="lang_en" lang="en-us">EN</a> </div>
</div>
<div class="icon_menu">
<a class="i_menu"></a>
<a class="i_close"></a>
</div>
<div class="bg_hover"></div>
</div>
<!-- 页头区域 -->
<div class="header-seat"></div>
<div class="null_content">
<!-- 内容区域 -->
<link rel="stylesheet" type="text/css" href="./jingshangfeng_files/brief.css">
<div class="mod-section-ad" align="center">
<img src="./jingshangfeng_files/3.jpg" style="center" alt="img">
<i class="block"></i>
</div>
<div class="mod-tab-container">
<div class="mod-tab">
<div class="mod-con clearfix">
<div class="mc-left"><img src="./jingshangfeng_files/mc-left-menu.png" alt="img"></div>
<div class="mc-right"><img src="./jingshangfeng_files/mc-right-menu.png" alt="img"></div>
<ul>
<li><a>公司简介</a></li>
<li><a>愿景及使命</a></li>
<li><a>管理团队</a></li>
<li><a>企业文化</a></li>
<li><a>办公地点</a></li>
<div class="line"></div>
</ul>
</div>
</div>
</div>
<div class="mod-tab-content">
<div class="brand-item white-bg pt pc-tab-brand mobile-tab-brand" id="about-con-1">
<div class="mod-con clearfix fjj">
<div class="t-flx clearfix" align="left">
<h3 class="mod-m-title">公司简介</h3>
</div>
<div class="brief-text-box">
<h4>精尚锋是一家专注于用创新的产品和服务提升全球各地人们的生活品质的公司。</h4>
<p class="desc">
<br>公司立于2014年5月吉日,团队伙伴都是来自于ST ,TI, QUALCOMM原厂和双A双W工作经历的资深Sales或FAE,多年来我们专注于研发、生产、销售嵌入式产品和解决方案,包括BMS多节锂电保护板、智能教育机器人、DLP微型投影仪、无人机图传、高清视频图像采集设备、扫地机器人、低功耗WIFI可视门禁、DCDC中大功率电源模块、高清运动摄像机、360全景后视、舞台灯光等领域的应用,以及支持用户进行快速二次开发的配套工具与软件包。<br><br>公司作为德州仪器(TI)、美信(MAXIM)、安森美(ON) 、圣邦微(SGMC)、宝砾微、中科微、博盛、敏芯微等芯片公司的合作伙伴,按OEM/ODM方式为用户提供全面解决方案,在售前售后技术支持、用户培训和系统维护等各个环节为用户提供完善的服务,使客户能以低成本、低风险的方式运作,并加快产品上市时间,实现双赢。<br><br>公司已与多家大中型电子企业及国际性OEM、EMS公司建立战略性的技术及商务合作伙伴关系,提供“一站式采购”解决方案,成为中国广大电子企业客户最满意的合作伙伴之一,我们在2021年会深入汽车ADAS、汽车灯光、便携医疗设备、5G光通讯、HIFI音频、高清微投等最新产品应用开拓。</p>
<i class="more-awant-icon"></i>
</div>
<div class="m-mission clearfix-mission mobile-tab-brand" id="about-con-2-m">
<div class="t-flx clearfix clearfix-mission">
<h3 class="mod-m-title">愿景及使命</h3>
</div>
<div class="brief-text-box clearfix-mission">
<h4>用户为本,科技向善</h4>
<p class="desc">一切以用户价值为依归,<br>将社会责任融入产品及服务之中;<br>推动科技创新与文化传承,<br>助力各行各业升级,<br>促进社会的可持续发展。 </p>
</div>
<img class="text-bg" src="./jingshangfeng_files/text-bg.png" alt="img">
</div>
<div class="mission pc-tab-brand" id="about-con-2">
<div class="l-mess mess">
<p class="label">愿景及使命</p>
</div>
<div class="r-mess mess">
<p class="label">用户为本,科技向善</p>
<p class="desc">一切以用户价值为依归,将社会责任融入产品及服务之中;<br>推动科技创新与文化传承,助力各行各业升级,促进社会的可持续发展。 </p></div>
<img class="text-bg" src="./jingshangfeng_files/text-bg.png" alt="img">
<div class="line"></div>
</div>
</div>
</div>
<div class="brand-item white-bg tuanduiguanli pc-tab-brand mobile-tab-brand" id="about-con-5">
<div class="mod-con clearfix">
<div class="t-flx clearfix">
<h3 class="mod-m-title">管理团队</h3>
</div>
<div class="team-box clearfix">
<div class="li li-1" t-name="马化腾">
<div class="mess">
<p class="label">张金香</p>
<div class="job-mess">
<p>主要创办人</p>
<p>董事会主席兼首席执行官</p>
</div>
</div>
<div class="pic">
<!-- <img src="./jingshangfeng_files/1.jpg" alt="img"> -->
<!-- <i class="block"></i> -->
</div>
</div>
<div class="li li-2" t-name="刘炽平">
<div class="mess">
<p class="label">张丽萍</p>
<div class="job-mess">
<p>董事会执行董事兼公司总裁</p>
</div>
</div>
<div class="pic">
<!-- <img src="./jingshangfeng_files/2.jpg" alt="img"> -->
<!-- <i class="block"></i> -->
</div>
</div>
</div>
</div>
</div>
<div class="brand-item pc-tab-brand mobile-tab-brand" id="about-con-6">
<div class="mod-max-con clearfix culture-wrap">
<div class="culture-box clearfix">
<div class="t-box">
<div class="pic">
<img class="pc-box" src="./jingshangfeng_files/pic.jpg" alt="img">
<img class="mobile-box" src="./jingshangfeng_files/m-pic.jpg" alt="img">
</div>
<div class="mess-box">
<div class="t-flx clearfix">
<div class="label-box">
<h3>企业文化</h3>
</div>
<div class="b-box">
<h4 class="item-title">价值观</h4>
<div class="boxx">
<div class="x-item">
<h5>正直</h5>
<p class="p">坚守底线,以德为先,坦诚公正不唯上</p>
</div>
<div class="x-item">
<h5>进取</h5>
<p class="p">无功便是过,勇于突破有担当</p>
</div>
<div class="x-item">
<h5>协作</h5>
<p class="p">开放协同,持续进化</p>
</div>
<div class="x-item">
<h5>创造</h5>
<p class="p">超越创新,探索未来</p>
</div>
</div>
</div>
</div>
<!--<div class="desc-box">
<div class="item">
<h4 class="item-title">管理理念</h4>
<p class="desc-text max-desc-text">精尚锋坚持“关心员工成长”的管理理念,努力为每一位员工创造更丰厚的物质保障、更广阔的发展空间、更丰富的精神文化世界。</p>
<ul>
<li><i>•</i>为员工提供良好的工作环境和激励机制</li>
<li><i>•</i>完善员工培养体系和职业发展通道,使员工与企业同步成长</li>
<li><i>•</i>充分尊重和信任员工,不断引导和鼓励,帮助其获得成就并分享喜悦</li>
</ul>
</div>
</div>
<div class="desc-box">
<div class="item">
<h4 class="item-title">经营理念</h4>
<p class="desc-text min-desc-text">一切以用户价值为依归</p>
</div>
</div>-->
</div>
</div>
</div>
</div>
</div>
<div class="brand-item white-bg address-wrap-wrap pc-tab-brand mobile-tab-brand" id="about-con-7">
<div class="mod-max-con clearfix address-wrap">
<h3 class="mod-m-title">办公地点</h3>
<div class="mod-con address-box clearfix">
<div class="address-tab clearfix">
<div class="tab-ul-box">
<ul class="tab-ul clearfix" style="right: auto; left: 0px;">
<li class="li-1 active-li">
<p class="label">亚太地区</p>
<div class="box">
<div class="office-container">
<div class="office">
<h4>深圳</h4>
<a href="https://router.map.qq.com/short?l=ffe29aec71f9fa07473dd693a1df169b" target="_blank">
<p><strong style="color: #0052d9">深圳总部</strong></p>
<p>深圳市南山区海南海大道海典居1-20G</p>
<p>邮编:518054</p>
<p>总机电话:+86-755-86017788</p>
</a>
</div>
<!--
<div class="office">
<h4>曼谷</h4>
<p>8 T One Building, 10th,11th and 12th Floor (Unit 4-5), Soi Sukhumvit 40, Sukhumvit Road, Phra Khanong, Khlong Toei, Bangkok</p>
<p>邮编:10110</p>
<p>电话:+66-2-833-3000</p>
<p>网址: <a href="https://www.tencent.co.th/th" class="local-website" target="_blank">https://www.tencent.co.th/th</a></p>
</div>
-->
<div class="office">
<h4>香港</h4>
<p>Jaki International Limited</p>
<p>FLT A 24/F BLK 10 FLORA PLAZA FALLING, New Territories, Hong Kong</p>
<p>TEL : (852) 97600109 FAX : +852-30506769</p>
</div>
<!-- <div class="office">
<h4>古尔冈</h4>
<p>S-31, 3rd floor, Block B, Vatika Atrium, Golf Course Road Sector 53, Gurgaon, 122001 Haryana</p>
<p>邮编:122001</p>
</div>
-->
</div>
</div>
</li>
<!-- <li class="li-2">
<p class="label">北美地区</p>
<div class="box">
<div class="office-container">
<div class="office">
<h4>帕罗奥多</h4>
<p>2747 Park Boulevard, Palo Alto</p>
<p>邮编:94306</p>
<p>电话:+1-650-798-3300</p>
</div>
<div class="office">
<h4>洛杉矶</h4>
<p>12777 Jefferson Blvd, Building E, Los Angeles</p>
<p>邮编:90066</p>>
</div>
<div class="office">
<h4>贝尔维尤</h4>
<p>10900 NE 8th St. Suite 600, Bellevue</p>
<p>邮编:98004</p>
<p>929 108th Ave., Suite 1100, Bellevue</p>
<p>邮编:98004</p>
</div>
<div class="office">
<h4>尔湾</h4>
<p>15201 Laguna Canyon RD, Suite 200 Irvine</p>
<p>邮编:92618</p>
</div>
<div class="office">
<h4>纽约</h4>
<p>7 Bryant Park, Suite 1502, New York, New York</p>
<p>邮编:10018</p>
</div>
<div class="office">
<h4>多伦多</h4>
<p>26 Wellington Street East, Suite 900, Toronto</p>
<p>邮编:M5E 1S2</p>
</div>
<div class="office">
<h4>蒙特利尔</h4>
<p>7450 Mile End Street, Montreal</p>
<p>邮编:H2R 2Z6</p>
<p>7236 rue Waverly, Montreal</p>
<p>邮编:H2R 0C2</p>
</div>
</div>
</div>
</li>
<li class="li-3">
<p class="label">欧洲</p>
<div class="box">
<div class="office-container">
<div class="office">
<h4>阿姆斯特丹</h4>
<p>精尚锋 International Service Europe B.V., Buitenveldertselaan 1-5, 1082 VA, Amsterdam
</p>
<p>邮编:1082 VA</p>
</div>
<div class="office">
<h4>柏林</h4>
<p>C/O Regus Alexanderplatz office, Gontardstrasse 11, Berlin</p>
<p>邮编:10178</p>
</div>
<div class="office">
<h4>法兰克福</h4>
<p>Mindspace Eurotheum, Neue Mainzer Str. 66-68, Frankfurt am Main</p>
<p>邮编:60311</p>
</div>
<div class="office">
<h4>伊斯坦布尔</h4>
<p>1501,1502,1503, Barbaros, Mor Sumbul Sokagi No.1, Atasehir/Istanbul</p>
<p>邮编:34746</p>
</div>
<div class="office">
<h4>伦敦</h4>
<p>Berkeley Square House, Berkeley Square, London</p>
<p>邮编:W1J 6BD</p>
</div>
<div class="office">
<h4>利物浦</h4>
<p>Room 3.06, Clockwise, Edward Pavillion, Royal Albert Dock, Liverpool</p>
<p>邮编:L3 4AF</p>
</div>
<div class="office">
<h4>巴黎</h4>
<p>WeWork La Fayette, 33 rue La Fayette, Paris</p>
<p>邮编:75009</p>
</div>
<div class="office">
<h4>华沙</h4>
<p>WeWork Mennica Legacy Tower, 精尚锋, Prosta 20, Warsaw</p>
<p>邮编:00-850</p>
</div>
</div>
</div>
</li>
<li class="li-4">
<p class="label">中东地区及非洲</p>
<div class="box">
<div class="office-container">
<div class="office">
<h4>开罗</h4>
<p>Room 535, 5/F, Bldg #55, Road 18, Sarayat EI Maddi, In front of gate #3 of Maddi Sporting Clud, Cairo</p>
</div>
<div class="office">
<h4>迪拜</h4>
<p>201, 202, 203, second floor, Innovation Hub Building 2, DIC, Dubai</p>
</div>
</div>
</div>
</li>
-->
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- team弹窗 -->
<!-- team弹窗 -->
<script>
document.body.addEventListener('touchstart', function(){ });
// 禁用or启用背景滑动 isDiff默认为flase是可以滑动,为true是不可以滑动。
var isDiff = false;
var overscroll = function(el){
el.addEventListener('touchstart', function(){
var top = el.scrollTop;
var totalScroll = el.scrollHeight;
var currentScroll = top + el.offsetHeight;
if(top === 0) {
el.scrollTop = 1;
}else if(currentScroll === totalScroll){
el.scrollTop = top - 1;
}
});
el.addEventListener('touchmove', function(evt){
if(el.offsetHeight < el.scrollHeight){
evt._isScroller = true;
}
});
}
document.body.addEventListener('touchmove', function(evt) {
if(isDiff && !evt._isScroller){
evt.preventDefault();
}
}, {passive: false});
function a(){
var minX = {number:999999,object:null};
$('.history-main-box').each(function (){
if(minX.number > Math.abs( $(this).offset().left -$('.history-content .mod-con').offset().left)){
minX.number = Math.abs( $(this).offset().left -$('.history-content .mod-con').offset().left) ;
minX.object = this;
}
});
$('.progress-bar .node').each(function (index){
if($(this).data('year') == $(minX.object).attr('year')){
$('.progress-bar .node').removeClass('active')
$(this).addClass('active')
}
});
var bi = (Math.abs($('.history-main').css('left').split('px')[0])/( ($('.history-main-box').width()+$('.history-main-box').css('margin-right').split('p')[0]*1) * ($('.history-main-box').length - 1 ) ) );
$('.history-button .focus').css('width',bi*100+'%');
}
$('.mod-con .history-main').mousedown(function(e) {
var positionDiv = $(this).offset();
var distenceX = e.pageX;
var startX = $('.mod-con .history-main')[0].style.left.split('px')[0]*1;
$(document).mousemove(function(e) {
var x = startX+(e.pageX - distenceX);
if(x>0){
x = 0;
}
if(x<-( ($('.history-main-box').width()+$('.history-main-box').css('margin-right').split('p')[0]*1) * ($('.history-main-box').length - 1) ) ){
x = -( ($('.history-main-box').width()+$('.history-main-box').css('margin-right').split('p')[0]*1) * ($('.history-main-box').length - 1 ) );
}
$('.mod-con .history-main').css({
'left': x + 'px',
});
a();
});
$(document).mouseup(function() {
$(document).off('mousemove');
});
});
$('.mod-con .history-main')[0].ontouchstart = function(e) {
var positionDiv = $(this).offset();
var distenceX = e.touches[0].pageX;
var startX = $('.mod-con .history-main')[0].style.left.split('px')[0]*1;
$(document)[0].ontouchmove = function(e) {
var x = startX+(e.touches[0].pageX - distenceX);
if(x>0){
x = 0;
}
if(x<-( ($('.history-main-box').width()+$('.history-main-box').css('margin-right').split('p')[0]*1) * ($('.history-main-box').length - 1) ) ){
x = -( ($('.history-main-box').width()+$('.history-main-box').css('margin-right').split('p')[0]*1) * ($('.history-main-box').length - 1 ) );
}
$('.mod-con .history-main').css({
'left': x + 'px',
});
a();
}
$(document)[0].ontouchend = function() {
$(document)[0].ontouchmove = function (){};
}
}
function activeHistory(key){
var yearEle = $('[year="'+key+'"]');
var left = 0;
if (yearEle.offset()) {
let curretYearOffset = $('[year="'+ 2022 +'"]').offset() ? $('[year="'+ 2022 +'"]').offset().left : $('[year=2020]').offset().left;
left = $('[year="'+key+'"]').offset().left - curretYearOffset;
}
$('.history-main').css({'left':'-'+left+'px'});
$('.progress-bar .node').each(function (index){
if($(this).data('year') == key){
$('.progress-bar .node').removeClass('active')
$(this).addClass('active')
}
});
a();
}
var lang = window.location.pathname.match(/^\/(zh\-(cn|hk)|en\-us)/);
//lang = lang ? lang[1] : 'zh-cn';
lang = 'zh-cn';
var montext = '月';
if(lang == 'en-us'){
montext = '';
}else{
montext = '月';
}
let histData = {
"zh-cn": {
"2021":[
{
"month":"4",
"text":"精尚锋发布新蓝图,“可持续社会价值创新”成为核心战略,首期投入500亿元人民币助力发展"
},
{
"month":"1",
"text":"精尚锋宣布启动碳中和计划,成为中国首批启动碳中和规划的互联网企业之一"
},
],
"2020":[
{
"month":"12",
"text":"企业微信服务机构数目突破500万,月活跃账户数逾1.3亿"
},
{
"month":"9",
"text":"精尚锋会议用户数突破1亿,服务覆盖达全球100多个国家与地区"
},
{
"month":"5",
"text":"精尚锋根据全球中期票据计划发行本金总额60亿美元的票据,包括首次发行的40年期票据"
},
{
"month":"3",
"text":"微信小程序日活跃账户数超过4亿"
},
{
"month":"2-3",
"text":"为抗击2019冠状病毒病疫情,设立15亿人民币“抗击新型冠状病毒感染肺炎疫情综合保障基金”及1亿美元“精尚锋全球战疫基金”"
},
{
"month":"1",
"text":"微信视频号上线"
},
],
"2019":[
{
"month":"12",
"text":"精尚锋云全年收入超过170亿人民币,付费客户数破百万"
},
{
"month":"11",
"text":"发布“科技向善”新愿景"
},
{
"month":"9",
"text":"精尚锋视频付费会员数突破1亿"
},
{
"month":"5",
"text":"合资公司获香港金融管理局颁发虚拟银行牌照"
},
{
"month":"4",
"text":"精尚锋根据全球中期票据计划发行本金总额60亿美元的票据"
}
],
"2018":[
{
"month":"12",
"text":"精尚锋移动支付年日均交易笔数超过10亿笔"
},
{
"month":"12",
"text":"旗下精尚锋音乐娱乐集团在美国纽约证券交易所上市,股票代码TME"
},
{
"month":"11",
"text":"精尚锋基金会投入10亿启动奖金创立“科学探索奖”支持基础科学和前沿技术领域的年青科学家"
},
{
"month":"9",
"text":"企业战略升级,扎根消费互联网,拥抱产业互联网"
},
{
"month":"6",
"text":"精尚锋移动支付月活跃账户数超过8亿"
},
{
"month":"1",
"text":"微信和WeChat全球月活跃帐户数超过10亿"
}
],
"2017":[
{
"month":"11",
"text":"承建医疗影像国家人工智能开放创新平台"
},
{
"month":"11",
"text":"旗下阅文集团在香港联合交易所主板上市,股票代码0772.HK"
},
{
"month":"1",
"text":"自主研发全球创新的微信小程序正式上线"
}
],
"2016":[
{
"month":"12",
"text":"精尚锋移动支付月活跃帐户及日均交易笔数均超过6亿"
},
{
"month":"10",
"text":"成立联营公司微民保险"
},
{
"month":"7",
"text":"成立精尚锋音乐娱乐集团"
},
{
"month":"6",
"text":"战略投资Supercell"
}
],
"2015":[
{
"month":"10",
"text":"成为新美大集团的战略股东"
},
{
"month":"9",
"text": "精尚锋公司慈善基金会联合全球知名机构发起全球首个互联网公益日,99公益日为期三天,在精尚锋公益平台上共筹得善款近1.3亿元人民币"
},
{
"month":"9",
"text":"成立精尚锋影业和企鹅影业"
},
{
"month":"3",
"text":"成立阅文集团"
},
{
"month":"2",
"text":"除夕当日微信红包收发总量达到10.1亿次"
}
],
"2014":[
{
"month":"12",
"text":"成立联营公司微众银行"
},
{
"month":"4",
"text":"QQ最高同时在线帐户数超过2亿"
},
{
"month":"3",
"text":"精尚锋控股获穆迪上调评级至A3"
},
{
"month":"3",
"text":"战略投资京东集团"
},
{
"month":"1",
"text":"推出微信红包、理财通,且除夕当日微信红包收发总量近2000万"
}
],
"2013":[
{
"month":"12",
"text":"成为全球收入最高的游戏开发商和运营商"
},
{
"month":"11",
"text":"发布“连接一切”与“互联网+”战略"
},
{
"month":"9",
"text":"精尚锋云正式对外推出云服务"
},
{
"month":"8",
"text":"推出微信支付,微信和QQ手机版游戏中心"
},
{
"month":"6",
"text":"精尚锋控股获标准普尔上调评级至A-"
}
],
"2012":[
{
"month":"3",
"text":"微信用户数超过1亿 "
}
],
"2011":[
{
"month":"11",
"text":"精尚锋控股获标准普尔BBB+评级和穆迪Baa1评级"
},
{
"month":"6",
"text":"发布公司级开放平台战略"
},
{
"month":"3",
"text":"推出精尚锋视频v.qq.com"
},
{
"month":"2",
"text":"战略投资Riot Games"
},
{
"month":"1",
"text":"成立精尚锋产业共赢基金"
},
{
"month":"1",
"text":"推出微信"
}
],
"2010":[
{
"month":"3",
"text":"QQ最高同时在线帐户数超过1亿"
}
],
"2009":[
{
"month":"6",
"text":"精尚锋游戏成为中国最大的网络游戏平台"
},{
"month":"1",
"text":"推出国际版QQ"
}
],
"2008":[
{
"month":"6",
"text":"精尚锋控股成为香港恒生指数成份股之一"
}
],
"2007":[
{
"month":"6",
"text":"成立精尚锋公益慈善基金会,推动公益慈善项目"
}
],
"2006":[
{
"month":"6",
"text":"精尚锋网www.qq.com成为中国第一门户网站"
}
],
"2005":[
{
"month":"12",
"text":"推出首款自研开发的大型多人同时在线游戏QQ幻想"
},{
"month":"7",
"text":"推出在线音乐平台QQ音乐"
},{
"month":"5",
"text":"推出社交网络平台QQ空间"
},{
"month":"3",
"text":"收购中国领先的电邮客户端软件开发商Foxmail"
}
],
"2004":[
{
"month":"12",
"text":"测试首款自研开发的中型休闲游戏QQ堂"
},{
"month":"8",
"text":"QQ游戏成为中国最大的休闲游戏平台,最高同时在线账户数超越100万"
},{
"month":"6",
"text":"精尚锋控股在香港联合交易所主板上市,股票代码0700.HK"
}
],
"2003":[
{
"month":"11",
"text":"推出综合门户网站精尚锋网www.qq.com"
},{
"month":"9",
"text":"推出首款企业实时通信产品精尚锋通(“RTX”)"
},
{
"month":"8",
"text":"推出休闲游戏平台“QQ游戏”"
},
{
"month":"5",
"text":"推出QQ邮箱"
},
{
"month":"1",
"text":"推出在线装扮产品QQ秀"
}
],
"2001":[
{
"month":"6",
"text":"获得MIH投资"
},{
"month":"6",
"text":"推出互联网增值服务(IVAS)"
},
{
"month":"2",
"text":"QQ最高同时在线用户账户数超越100万"
}
],
"2000":[
{
"month":"11",
"text":"推出提供聊天优惠功能的包月服务QQ会员"
},
{
"month":"8",
"text":"推出移动增值服务(MVAS)"
},
{
"month":"6",
"text":"推出手机QQ"
}
],
"1999":[
{
"month":"4",
"text":"推出移动电邮"
},
{
"month":"2",
"text":"QQ诞生"
}
],
"1998":[
{
"month":"11",
"text":"精尚锋在深圳成立"
}
]
},
"zh-hk": {
"2021":[
{
"month":"4",
"text":"騰訊發布新藍圖,「可持續社會價值創新」成為核心戰略,首期投入500億元人民幣助力發展"
},
{
"month":"1",
"text":"騰訊宣布啟動碳中和計劃,成為中國首批啟動碳中和規劃的互聯網企業之一"
},
],
"2020":[
{
"month":"12",
"text":"企業微信服務機構數目突破550萬,月活躍賬戶數逾1.3億"
},
{
"month":"9",
"text":"騰訊會議用戶數突破1億,服務覆蓋達全球100多個國家與地區"
},
{
"month":"5",
"text":"騰訊根據全球中期票據計劃發行本金總額60億美元的票據,包括首次發行的40年期票據"
},
{
"month":"3",
"text":"微信小程序日活躍賬戶數超過4億"
},
{
"month":"2-3",
"text":"為抗擊2019冠狀病毒病疫情,設立15億人民幣「抗擊新型冠狀病毒感染肺炎疫情綜合保障基金」及1億美元「騰訊全球戰疫基金」"
},
{
"month":"1",
"text":"微信視頻號上線"
},
],
"2019":[
{
"month":"12",
"text":"騰訊雲全年收入超過170億人民幣,付費客戶數破百萬"
},
{
"month":"11",
"text":"发布「科技向善」新愿景"