forked from qiubaiying/qiubaiying.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
2037 lines (1406 loc) · 111 KB
/
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>
<!--[if lt IE 7 ]> <html lang="en" class="ie6"> <![endif]-->
<!--[if IE 7 ]> <html lang="en" class="ie7"> <![endif]-->
<!--[if IE 8 ]> <html lang="en" class="ie8"> <![endif]-->
<!--[if IE 9 ]> <html lang="en" class="ie9"> <![endif]-->
<!--[if (gt IE 9)|!(IE)]><!-->
<html xml:lang="EN" lang="en">
<!--<![endif]-->
<head>
<link rel="canonical" href="https://consumer.huawei.com/en/support/pcassistant/applinks/"/>
<meta http-equiv="X-UA-Compatible" content="IE=edge; charset=utf-8"/>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<meta http-equiv="Access-Control-Allow-Origin" content="http://consumer-res.huaweistatic.com"/>
<meta id="viewport" name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no"/>
<meta name="description" content="">
<meta name="keywords"/>
<meta name="GENERATOR" content=" 8.00.7601.19003"/>
<meta name="robots" content="index,follow"/>
<title>applinks</title>
<script type="text/javascript">window.pageLoadStart = new Date().getTime();</script>
<link rel="shortcut icon" href="//consumer-res.huawei.com/etc/designs/huawei-cbg-site/favicon/favicon.ico" type="image/x-icon"/>
<link rel="icon" href="//consumer-res.huawei.com/etc/designs/huawei-cbg-site/favicon/favicon.ico" type="image/x-icon" sizes="16x16">
<link rel="bookmark" href="//consumer-res.huawei.com/etc/designs/huawei-cbg-site/favicon/favicon.ico" type="image/x-icon"/>
<script type="text/javascript" src="//consumer-res.huawei.com/etc/designs/huawei-cbg-site/statics/jquery-1.11.3.min.js"></script>
<script type="text/javascript" src="//consumer-res.huawei.com/etc/designs/huawei-cbg-site/clientlib-public-header.min.a4cba74d61658a9d392de92fdcb6e719.js"></script>
<link rel="stylesheet" href="//consumer-res.huawei.com/etc/designs/huawei-cbg-site/clientlib-public.min.db56c8dbb09d1cf4c749901ea7bbf73f.css" type="text/css">
<link rel="stylesheet" href="//consumer-res.huawei.com/etc/designs/huawei-cbg-site/clientlib-support-content/headLibs.min.231939fc675e6ee094760c11c742d8f3.css" type="text/css">
<script type="text/javascript" src="//consumer-res.huawei.com/etc/designs/huawei-cbg-site/clientlib-support-content/headLibs.min.4a08d68e8a38585d8f4dd471cbc6c9c3.js"></script>
<link rel="stylesheet" href="//consumer-res.huawei.com/etc/designs/huawei-cbg-site/clientlib-support-content/footLibs.min.c3ea860972287651c55ffb3507bc3258.css" type="text/css">
<script type="text/javascript">
// data layer javascript
window.digitalData={"page":{"pageInfo":{"pageName":"cbg:en:support:pcassistant:applinks","countryCode":"EN","siteCode":"en","siteCode2":"en","siteName":"Global (EN)","appNum":"A59919963","language":"en","site":"cbg","uri":"/en/support/pcassistant/applinks/","siteCodeForAPI":"worldwide"},"category":{"pageType":"support","primaryCategory":"support","subCategory1":"pcassistant","subCategory2":"applinks"}},"event":[]}
</script>
<script src="//assets.adobedtm.com/30c95edb7226071920db6b40eefd0e79e483b995/satelliteLib-20191f243751a799c613d44bdcd3cd3f346d6070.js"></script>
<style>
.conv3_footer .column ul li a[href^='http']:not([href*='huawei.com']):after {
content: "";
display: inline-block;
width: 12px;
height: 12px;
margin-left: 5px;
background-image: url("/content/dam/huawei-cbg-site/en/mkt/retailer-logo/other_site.png");
vertical-align: middle;
}
.conv3_footer .column ul li a[href^='http']:not([href*='huawei.com']):hover {
position: relative;
}
@media screen and (min-width:768px){
.conv3_footer .column ul li a[href^='http']:not([href*='huawei.com']):hover:before {
display: inline-block;
position: absolute;
width: auto;
min-width: 170px;
height: 20px;
line-height: 20px;
padding-top: 0;
padding-left: 15px;
padding-right: 15px;
background-color: white;
border: solid 1px #757575;
top: 30px;
font-size: 12px;
border-radius: 4px;
text-align: center;
color: #333333;
}
.conv3_footer .column ul li a[href^='http']:not([href*='huawei.com']):hover:before {
content: "You will leave Huawei.com";
}
}
</style>
<script type="text/javascript">
var service_sessionuuid_support = "base/basecommonService/sessionuuid"
var SITE_CODE = window.digitalData.page.pageInfo.siteCodeForAPI
var APP_NUM = window.digitalData.page.pageInfo.appNum
var site_language = window.digitalData.page.pageInfo.language
var countryCode = window.digitalData.page.pageInfo.countryCode
</script>
<h1 class="header-tag-title">applinks</h1>
</head>
<body>
<div id="top_nav" class="head_module head_v27"><div id="normal_nav" class="conv3_nav">
<div class="group_tips">
<div class="cookie_tip" style="display: none;">
<div class="cookie_content">
<div class="cookie_txt">
<i>We use cookies to improve our site and your experience. By continuing to browse our site you accept our cookie policy. </i>
<a href="/en/legal/cookie-policy">
Find out more
</a>
</div>
<div class="close_btn"><span></span></div>
</div>
</div>
</div>
<div class="navcon">
<div class="logo_wrap">
<a cat="Navigation" act="Click On Logo" lab="<page title>" href="/en" class="a-common">
<img class="logo" src="//consumer-img.huawei.com/content/dam/huawei-cbg-site/en/mkt/header-menu/img_con_v27_base_logo_svg.svg" alt="HUAWEI LOGO">
</a>
</div>
<div class="menu menu_en">
<ul>
<li class="menu_wrap" wrap="wrap_phones">
<a class="a-common" href="javascript:;" cat="Navigation" act="Click On Phones" lab="<page title>">
PHONES
</a><i></i>
</li>
<li class="menu_wrap" wrap="wrap_others">
<a class="a-common" href="javascript:;" cat="Navigation" act="Click On More Products" lab="<page title>">
MORE PRODUCTS
</a><i></i>
</li>
<li>
<a class="a-common" target="_blank" href="http://emui.huawei.com/en/" cat="Navigation" act="Click On EMUI" lab="<page title>">
EMUI
</a><i></i>
</li>
<li>
<a class="a-common" href="/en/support" cat="Navigation" act="Click On Support" lab="<page title>">
SUPPORT
</a><i></i>
</li>
</ul>
<div class="icon_close"><i></i></div>
</div>
<div class="icon_search menu_wrap" wrap="wrap_search">
<i class="icon_public a-common" cat="Navigation" act="Click On Search" lab="<page title>"></i>
</div>
<div class="icon_menu"><i class="icon_public"></i></div>
</div>
</div></div>
<style>
.conv3_nav .navcon .menu .menu_e_bussiness{display:block;float: right;margin-right: 40px;}
.conv3_nav .navcon .menu .menu_e_bussiness li{margin-right: 0;}
.conv3_nav .navcon .menu .menu_e_bussiness a{padding: 0 15px;letter-spacing: 0;border-bottom:none;}
.conv3_nav .navcon .menu .menu_e_bussiness li:hover a{border-bottom: none;}
.conv3_nav .navcon .menu .menu_e_bussiness .icon_line{float:left;height: 22px;border-right: 1px solid #000000; margin-top: 24px;}
@media screen and (max-width: 767px){
.cookieTipVisible .conv3_nav .menu ul{margin-top: 100px;}
.conv3_nav .navcon .menu .menu_e_bussiness .icon_line{display:none;}
.conv3_nav .navcon .menu .menu_e_bussiness{display:block; margin-top: 235px;}
}
</style>
<div class="conv3_wrap ">
<div>
<div class="html-text-component parbase">
<script type="text/javascript">
(function(win, lib) {
if (lib.callapp) return;
var ua = navigator.userAgent;
var browser = {
isSafari: /Version\/[\d\.]+.*Safari/.test(ua),
// isChrome: /Chrome/i.test(ua),
chromeV: ua.match(/Chrome\/(\d+)/),
isAndroid: /Android/i.test(ua),
isIOS: /iPhone|iPad|iPod/i.test(ua),
isWechat: /MicroMessenger/i.test(ua),
iosVersion: function () {
if (/iP(hone|od|ad)/.test(navigator.platform)) {
var v = (navigator.appVersion).match(/OS (\d+)_(\d+)_?(\d+)?/);
return [parseInt(v[1], 10), parseInt(v[2], 10), parseInt(v[3] || 0, 10)];
}
return null;
}
};
/**
* 插入微信提示
*/
function writeWechatTip(o) {
var divEle = document.createElement("div");
divEle.className = "wechat-tip";
divEle.id = "JwechatTip";
divEle.innerHTML = '<img style="width:100%; height:100%; z-index:-1;background-size: cover;" src=' + o.imageUrl + ' />';
document.body.appendChild(divEle);
}
function G() {
return (((1 + Math.random()) * 0x10000) | 0).toString(16).substring(1);
}
lib.callapp = function(o) {
document.body = document.createElement('body'); //清空浏览器的页面,因为此页面会集成到AEM框架,为了避免显示框架的主框架菜单
if (!o || typeof(o) != "object") return;
if (typeof(o.scheme) == "undefined" || o.scheme == "") return;
if (typeof(o.package) == "undefined" || o.package == "") return;
if (typeof(o.schemeUrl) != "undefined" && o.schemeUrl != "") {
o.dowmloadUrl += G() + G() + "-" + G() + "-" + G() + "-" + G(); //加个随机数防止浏览器缓存
o.imageUrl += G() + G() + "-" + G() + "-" + G() + "-" + G(); //加个随机数防止浏览器缓存
//此处只服务于华为android手机无需进行机型判断了
if (browser.isWechat) {
win.location.href = o.wechatUrl; //先去尝试拉取目标app
var t = Date.now();
var loadTimer = setTimeout(function() {
if (!document.hidden && !document.webkitHidden && Date.now() - t < o.iconnectTime) {
writeWechatTip(o);
}
}, 1000);
} else {
var url = window.location.search; //获取url中"?"符后的字串
url.indexOf('?');
o.schemeUrl += url.substr(0);
win.location.href = o.schemeUrl; //先去尝试拉取目标app
var t = Date.now();
var loadTimer = setTimeout(function() {
if (!document.hidden && !document.webkitHidden && Date.now() - t < o.iconnectTime) {
o.iconnectUrl += url.substr(0);
win.location.href = o.iconnectUrl; //如果目标app拉起不起来,尝试去拉iconnect的app
t = Date.now();
loadTimer = setTimeout(function() {
if (!document.hidden && !document.webkitHidden && Date.now() - t < o.downloadTime) {
win.location.href = o.dowmloadUrl; //如果目标app拉起不起来,尝试去拉iconnect的app
}
}, 1000);
}
}, 1000);
}
// 当本地app被唤起,则页面会隐藏掉,就会触发pagehide与visibilitychange事件
// 在部分浏览器中可行,网上提供方案,作hack处理
var visibilitychange = function() {
var tag = document.hidden || document.webkitHidden;
tag && clearTimeout(loadTimer);
window.history.back(); //消除访问记录,防止浏览器强杀后再打开会重复拉起
};
document.addEventListener('visibilitychange', visibilitychange, false);
document.addEventListener('webkitvisibilitychange', visibilitychange, false);
}
}
})(window, window.lib || (window.lib = {}));
lib.callapp({
"scheme":"com.huawei.pcassistant",
"package":"com.huawei.pcassistant",
"schemeUrl":"com.huawei.pcassistant://mainactivity", //目标app拉取的scheme
"iconnectUrl":"com.huawei.pcassistant.installer://InstallerActivity", //如果目标app不存在首先去拉取华为内置app iconnect的scheme
"iconnectTime":"1200", //等待多久去拉取内置app
"dowmloadUrl":"http://download-c.huawei.com/download/downloadCenter?downloadId=98285&", //目标app的下载地址
"downloadTime":"1200", //等待多久去下载目标app
"imageUrl":"/content/dam/huawei-cbg-site/greate-china/cn/support/applinks/web.png?",
"wechatUrl":"http://sj.qq.com/myapp/detail.htm?apkName=com.huawei.pcassistant"
});
</script>
</div>
</div>
<div>
<div class="support_contact_us">
<h2>CONTACT US</h2>
</div>
</div>
</div>
<!--*/ Adding more modules */-->
<div class="menu_module_phone">
<div class="data-menu-phones" style="display: none;">{"pbi1":"31","products":[{"productName":"HUAWEI Mate 10","marketingName":"HUAWEI Mate 10","colors":"#000000,#e5d1b6,#624938","canBuy":false,"filter":"mate-series,5_0_5_9,8-13megapixels,long-lasting-battery,supercharge,octa-core-cpu,dualcamera","assetPath":"//consumer-img.huawei.com/content/dam/huawei-cbg-site/common/mkt/list-image/phones/mate10/mate10-listimage-gold.png","productDetailPagePath":"http://consumer.huawei.com/en/phones/mate10/","pbi2Value":""},{"productName":"HUAWEI Mate 10 Pro","marketingName":"HUAWEI Mate 10 Pro","colors":"#295094,#7a7a7a,#624938","canBuy":false,"filter":"mate-series,long-lasting-battery,8-13megapixels,6_0,dualcamera,supercharge,octa-core-cpu","assetPath":"//consumer-img.huawei.com/content/dam/huawei-cbg-site/common/mkt/list-image/phones/mate10-pro/mate10pro-listimage-glod.png","productDetailPagePath":"http://consumer.huawei.com/en/phones/mate10-pro/","pbi2Value":""},{"productName":"Porsche Design Mate 10","marketingName":"PORSCHE DESIGN HUAWEI Mate 10","colors":"#000000","canBuy":false,"filter":"mate-series,long-lasting-battery,8-13megapixels,6_0,dualcamera,octa-core-cpu","assetPath":"//consumer-img.huawei.com/content/dam/huawei-cbg-site/common/mkt/list-image/phones/pd-mate10/pd-mate10-listimage-black.png","productDetailPagePath":"http://consumer.huawei.com/en/phones/porsche-design-mate10/","pbi2Value":""},{"productName":"HUAWEI P10","marketingName":"HUAWEI P10","colors":"#f7f7f7,#e9ddb7,#cad583,#425278,#000000,#f4deba,#e7bcb3,#e8e8e8","canBuy":false,"filter":"octa-core-cpu,long-lasting-battery,8-13megapixels,p-series,5_0_5_9,dualcamera,supercharge","assetPath":"//consumer-img.huawei.com/content/dam/huawei-cbg-site/common/mkt/list-image/phones/p10/p10-listimage-black.png","productDetailPagePath":"http://consumer.huawei.com/en/phones/p10/","pbi2Value":""},{"productName":"HUAWEI P10 Plus","marketingName":"HUAWEI P10 Plus","colors":"#f7f7f7,#cad583,#425278,#000000,#f4deba,#e7bcb3,#e8e8e8","canBuy":false,"filter":"octa-core-cpu,long-lasting-battery,p-series,5_0_5_9,dualcamera,supercharge,8-13megapixels","assetPath":"//consumer-img.huawei.com/content/dam/huawei-cbg-site/common/mkt/list-image/phones/p10-plus/p10-plus-listimage-white.png","productDetailPagePath":"http://consumer.huawei.com/en/phones/p10-plus/","pbi2Value":""},{"productName":"Mate 9","marketingName":"HUAWEI Mate 9","colors":"#666666,#be9080,#e5d1b6,#f7f7f7,#e8e8e8","canBuy":false,"filter":"octa-core-cpu,long-lasting-battery,8-13megapixels,mate-series,5_0_5_9,dualcamera,supercharge","assetPath":"//consumer-img.huawei.com/content/dam/huawei-cbg-site/common/mkt/list-image/phones/mate-9/mate-9-listimage-gold.png","productDetailPagePath":"http://consumer.huawei.com/en/phones/mate9/","pbi2Value":""},{"productName":"Mate 9 Pro","marketingName":"HUAWEI Mate 9 Pro ","colors":"#7a7a7a,#e8daac","canBuy":false,"filter":"octa-core-cpu,long-lasting-battery,mate-series,5_0_5_9,dualcamera,supercharge,8-13megapixels","assetPath":"//consumer-img.huawei.com/content/dam/huawei-cbg-site/common/mkt/list-image/phones/mate-9-pro/mate-9-pro-listimage-black.png","productDetailPagePath":"http://consumer.huawei.com/en/phones/mate9-pro/","pbi2Value":""},{"productName":"Porsche Design Mate 9","marketingName":"PORSCHE DESIGN HUAWEI Mate 9","colors":"#000000","canBuy":false,"filter":"octa-core-cpu,long-lasting-battery,8-13megapixels,mate-series,5_0_5_9,dualcamera","assetPath":"//consumer-img.huawei.com/content/dam/huawei-cbg-site/common/mkt/list-image/phones/p-d-mate-9/p-d-mate-9-listimage-black.png","productDetailPagePath":"http://consumer.huawei.com/en/phones/porsche-design-mate9/","pbi2Value":""},{"productName":"Huawei nova 2","marketingName":"HUAWEI nova 2","colors":"#a9b8d9,#000000,#e9ddb7","canBuy":false,"filter":"octa-core-cpu,nova-series,8-13megapixels,5_0_5_9","assetPath":"//consumer-img.huawei.com/content/dam/huawei-cbg-site/common/mkt/list-image/phones/nova2/nova2-listimage-black.png","productDetailPagePath":"http://consumer.huawei.com/en/phones/nova2/","pbi2Value":""},{"productName":"Huawei nova
2 plus","marketingName":"HUAWEI nova 2 Plus","colors":"#a9b8d9,#000000,#e9ddb7","canBuy":false,"filter":"octa-core-cpu,nova-series,8-13megapixels,5_0_5_9","assetPath":"//consumer-img.huawei.com/content/dam/huawei-cbg-site/common/mkt/list-image/phones/nova2-plus/nova2-plus-listimage-white.png","productDetailPagePath":"http://consumer.huawei.com/en/phones/nova2-plus/","pbi2Value":""},{"productName":"HUAWEI P10 lite","marketingName":"HUAWEI P10 lite","colors":"#e9cfb7,#000000,#11a9c1,#f8f8f8","canBuy":false,"filter":"octa-core-cpu,long-lasting-battery,8-13megapixels,p-series,5_0_5_9","assetPath":"//consumer-img.huawei.com/content/dam/huawei-cbg-site/common/mkt/list-image/phones/p10-lite/p10-lite-listimage-blue.png","productDetailPagePath":"http://consumer.huawei.com/en/phones/p10-lite/","pbi2Value":""},{"productName":"HUAWEI nova","marketingName":"HUAWEI nova","colors":"#7a7a7a,#e8e8e8,#e9ddb7","canBuy":false,"filter":"nova-series,5_0_5_9,long-lasting-battery,8-13megapixels","assetPath":"//consumer-img.huawei.com/content/dam/huawei-cbg-site/common/mkt/list-image/phones/nova/nova-listimage-black.png","productDetailPagePath":"http://consumer.huawei.com/en/phones/nova/","pbi2Value":""},{"productName":"HUAWEI nova plus","marketingName":"HUAWEI nova plus","colors":"#7a7a7a,#e8e8e8,#e9ddb7","canBuy":false,"filter":"nova-series,13-16megapixels,5_0_5_9,long-lasting-battery","assetPath":"//consumer-img.huawei.com/content/dam/huawei-cbg-site/common/mkt/list-image/phones/nova-plus/nova-plus-listimage-black.png","productDetailPagePath":"http://consumer.huawei.com/en/phones/nova-plus/","pbi2Value":""},{"productName":"P9","marketingName":"HUAWEI P9","colors":"#e9ddb7,#e8e8e8,#0099ff,#cc0000","canBuy":false,"filter":"octa-core-cpu,8-13megapixels,p-series,5_0_5_9,long-lasting-battery,dualcamera","assetPath":"//consumer-img.huawei.com/content/dam/huawei-cbg-site/common/mkt/list-image/phones/p9/p9-listimage-white.png","productDetailPagePath":"http://consumer.huawei.com/en/phones/p9/","pbi2Value":""},{"productName":"P9 Plus","marketingName":"HUAWEI P9 Plus","colors":"#7a7a7a,#e8daac","canBuy":false,"filter":"octa-core-cpu,long-lasting-battery,8-13megapixels,p-series,5_0_5_9,dualcamera","assetPath":"//consumer-img.huawei.com/content/dam/huawei-cbg-site/common/mkt/list-image/phones/p9-plus/p9-plus-listimage-black.png","productDetailPagePath":"http://consumer.huawei.com/en/phones/p9-plus/","pbi2Value":""},{"productName":"P9 Lite","marketingName":"HUAWEI P9 lite","colors":"#000000,#e8daac","canBuy":false,"filter":"long-lasting-battery,13-16megapixels,p-series,5_0_5_9","assetPath":"//consumer-img.huawei.com/content/dam/huawei-cbg-site/common/mkt/list-image/phones/p9-lite/p9-lite-listimage-white.png","productDetailPagePath":"http://consumer.huawei.com/en/phones/p9-lite/","pbi2Value":""},{"productName":"GR5 2017","marketingName":"HUAWEI GR5 2017","colors":"#e8e8e8,#666666,#e5d1b6","canBuy":false,"filter":"8-13megapixels,g-series,5_0_5_9,long-lasting-battery,octa-core-cpu,dualcamera","assetPath":"//consumer-img.huawei.com/content/dam/huawei-cbg-site/common/mkt/list-image/phones/gr5-2017/gr5-2017-listimage-black.png","productDetailPagePath":"http://consumer.huawei.com/en/phones/gr5-2017/","pbi2Value":""},{"productName":"Y7 Prime","marketingName":"HUAWEI Y7 Prime","colors":"#e5e5e5,#e9ddb7,#a9b8d9,#000000,#666666","canBuy":false,"filter":"y-series,long-lasting-battery,8-13megapixels,5_0_5_9,octa-core-cpu","assetPath":"//consumer-img.huawei.com/content/dam/huawei-cbg-site/common/mkt/list-image/phones/y7-prime/y7-prime-listimage-white.png","productDetailPagePath":"http://consumer.huawei.com/en/phones/y7-prime/","pbi2Value":""},{"productName":"Y7","marketingName":"HUAWEI Y7","colors":"#cccccc,#e9ddb7,#e8e8e8","canBuy":false,"filter":"y-series,long-lasting-battery,8-13megapixels,5_0_5_9,octa-core-cpu","assetPath":"//consumer-img.huawei.com/content/dam/huawei-cbg-site/common/mkt/list-image/phones/y7/y7-listimage-white.png","productDetailPagePath":"http://consumer.huawei.com/en/phones/y7/","pbi2Value":""},{"productName":"HUAWEI Y3 2017","marketingName":"HUAW
EI Y3 2017","colors":"#ffe4f4,#666666,#f7f7f7,#e5d1b6,#0099ff","canBuy":false,"filter":"8-13megapixels,y-series,5_0_5_9","assetPath":"//consumer-img.huawei.com/content/dam/huawei-cbg-site/common/mkt/list-image/phones/y3-2017/y3-2017-listimage-white.png","productDetailPagePath":"http://consumer.huawei.com/en/phones/y3-2017/","pbi2Value":""},{"productName":"HUAWEI Y5 2017","marketingName":"HUAWEI Y5 2017","colors":"#ffe4f4,#666666,#f7f7f7,#e5d1b6,#0099ff","canBuy":false,"filter":"y-series,8-13megapixels,5_0_5_9,long-lasting-battery","assetPath":"//consumer-img.huawei.com/content/dam/huawei-cbg-site/common/mkt/list-image/phones/y5-2017/y5-2017-listimage-white.png","productDetailPagePath":"http://consumer.huawei.com/en/phones/y5-2017/","pbi2Value":""},{"productName":"Mate 8","marketingName":"HUAWEI Mate 8","colors":"#666666,#cccccc,#be9080,#e5d1b6","canBuy":false,"filter":"octa-core-cpu,long-lasting-battery,mate-series,6_0,13-16megapixels","assetPath":"//consumer-img.huawei.com/content/dam/huawei-cbg-site/common/mkt/list-image/phones/mate-8/mate-8-listimage-gold.png","productDetailPagePath":"http://consumer.huawei.com/en/phones/mate8/","pbi2Value":""},{"productName":"Mate S","marketingName":"HUAWEI Mate S","colors":"#cccccc,#e5dcae","canBuy":false,"filter":"octa-core-cpu,13-16megapixels,mate-series,5_0_5_9","assetPath":"//consumer-img.huawei.com/content/dam/huawei-cbg-site/common/mkt/list-image/phones/mate-s/mate-s-listimage-black.png","productDetailPagePath":"http://consumer.huawei.com/en/phones/mate-s/","pbi2Value":""},{"productName":"Nexus 6P","marketingName":"Nexus 6P","colors":"#cccccc,#000000,#e5d1b6","canBuy":false,"filter":"octa-core-cpu,long-lasting-battery,8-13megapixels,nexus-series,5_0_5_9","assetPath":"//consumer-img.huawei.com/content/dam/huawei-cbg-site/common/mkt/list-image/phones/nexus-6p/nexus-6p-listimage-black.png","productDetailPagePath":"http://consumer.huawei.com/en/phones/nexus-6p/","pbi2Value":""},{"productName":"G8","marketingName":"HUAWEI G8","colors":"#cccccc,#e5dcae","canBuy":false,"filter":"long-lasting-battery,13-16megapixels,g-series,5_0_5_9","assetPath":"//consumer-img.huawei.com/content/dam/huawei-cbg-site/common/mkt/list-image/phones/g8/g8-listimage-gold.png","productDetailPagePath":"http://consumer.huawei.com/en/phones/g8/","pbi2Value":""},{"productName":"P8lite","marketingName":"HUAWEI P8 lite","colors":"#000000,#e5d1b6","canBuy":false,"filter":"13-16megapixels,p-series,5_0_5_9","assetPath":"//consumer-img.huawei.com/content/dam/huawei-cbg-site/common/mkt/list-image/phones/p8-lite/p8-lite-listimage-white.png","productDetailPagePath":"http://consumer.huawei.com/en/phones/p8-lite/","pbi2Value":""},{"productName":"GT3","marketingName":"HUAWEI GT3","colors":"#e8e8e8,#666666,#e5d1b6","canBuy":false,"filter":"long-lasting-battery,13-16megapixels,g-series,5_0_5_9","assetPath":"//consumer-img.huawei.com/content/dam/huawei-cbg-site/common/mkt/list-image/phones/gt3/gt3-listimage-white.png","productDetailPagePath":"http://consumer.huawei.com/en/phones/gt3/","pbi2Value":""},{"productName":"Y6II","marketingName":"HUAWEI Y6II","colors":"#ffe4f4,#000000,#e5d1b6,#ffea00,#0099ff","canBuy":false,"filter":"y-series,long-lasting-battery,13-16megapixels,5_0_5_9","assetPath":"//consumer-img.huawei.com/content/dam/huawei-cbg-site/common/mkt/list-image/phones/y6ii/y6ii-listimage-black.png","productDetailPagePath":"http://consumer.huawei.com/en/phones/y6ii/","pbi2Value":""},{"productName":"Y5II","marketingName":"HUAWEI Y5II","colors":"#ffe4f4,#000000,#ffffff,#e5d1b6,#0099ff","canBuy":false,"filter":"y-series,8-13megapixels,5_0_5_9","assetPath":"//consumer-img.huawei.com/content/dam/huawei-cbg-site/common/mkt/list-image/phones/y5ii/y5ii-listimage-black.png","productDetailPagePath":"http://consumer.huawei.com/en/phones/y5ii/","pbi2Value":""},{"productName":"Y3II","marketingName":"HUAWEI Y3II","colors":"#f7f7f7,#ffe4f4,#e5d1b6,#000000,#0099ff","canBuy":false,"filter":"y-series,5-8megapixels,4-0","assetPath":"//consumer-img.huawei.com/content/dam/huawei-cbg-site/common/mkt/list-image/phones/y3ii/y3ii-listimage-black.
png","productDetailPagePath":"http://consumer.huawei.com/en/phones/y3ii/","pbi2Value":""},{"productName":"Y6 Pro","marketingName":"HUAWEI Y6 PRO","colors":"#666666,#e5d1b6","canBuy":false,"filter":"y-series,long-lasting-battery,5_0_5_9,13-16megapixels","assetPath":"//consumer-img.huawei.com/content/dam/huawei-cbg-site/common/mkt/list-image/phones/y6-pro/y6-pro-listimage-black.png","productDetailPagePath":"http://consumer.huawei.com/en/phones/y6-pro/","pbi2Value":""},{"productName":"GR5","marketingName":"HUAWEI GR5","colors":"#e8e8e8,#666666,#e5d1b6","canBuy":false,"filter":"octa-core-cpu,long-lasting-battery,g-series,5_0_5_9,13-16megapixels","assetPath":"//consumer-img.huawei.com/content/dam/huawei-cbg-site/common/mkt/list-image/phones/gr5/gr5-listimage-white.png","productDetailPagePath":"http://consumer.huawei.com/en/phones/gr5/","pbi2Value":""},{"productName":"GR3","marketingName":"HUAWEI GR3","colors":"#e8e8e8,#666666,#e5d1b6","canBuy":false,"filter":"g-series,5_0_5_9,octa-core-cpu,13-16megapixels","assetPath":"//consumer-img.huawei.com/content/dam/huawei-cbg-site/common/mkt/list-image/phones/gr3/gr3-listimage-black.png","productDetailPagePath":"http://consumer.huawei.com/en/phones/gr3/","pbi2Value":""}]}</div>
<div class="see_all_phone common_menu wrap_phones slide_wrap" style="display: none">
<div class="bg"></div>
<div class="see_wrap">
<div class="see_close">
<i class="icon_public"></i>
<span>
<pre class="icon_public"></pre>BACK
</span>
</div>
<ul class="see_phone_uList">
<li class="">
<a cat="Menu: Phones" act="Click on HUAWEI MATE 10" lab="Header - <page title>" href="/en/phones/mate10" class="img_center_word a-common" style="background-size:cover; background-image: url('/content/dam/huawei-cbg-site/en/mkt/header-menu/Mate10_Navigation_bg.jpg');">
<div class="see_rgb">
<h2 style="color: #244E59;">HUAWEI MATE 10</h2>
<span style="background-color: #244E59;"></span>
<em style="color: #244E59;">With world's first Kirin AI processor, HUAWEI Mate 10 delivers a faster, personalized mobile experience.</em>
</div>
<img huawei="HUAWEI" class="pc_phone" alt="HUAWEI MATE 10" data-src="//consumer-img.huawei.com/content/dam/huawei-cbg-site/en/mkt/header-menu/navigation-mate10-black.png" mate="MATE" style="display:none">
</a>
<a class="bottom_word series_filter a-common" href="javascript:;" cat="Menu: Phones" act="Click on / HUAWEI MATE 10" lab="Header - <page title>" select-filter="mate-series">
<i>EXPLORE HUAWEI MATE SERIES</i>
</a>
</li>
<li class="">
<a cat="Menu: Phones" act="Click on HUAWEI P10" lab="Header - <page title>" href="/en/phones/p10" class="img_center_word a-common" style="background-size:cover; background-image: url('/content/dam/huawei-cbg-site/en/mkt/header-menu/img_con_en_nav_mp2_bg1.jpg');">
<div class="see_rgb">
<h2 style="color: #244E59;">HUAWEI P10</h2>
<span style="background-color: #244E59;"></span>
<em style="color: #244E59;">The new Leica Dual Camera 2.0 uses precise 3D facial detection, dynamic illumination, and natural portrait enhancements to produce stunning artistic portrait shots in Leica image style.</em>
</div>
<img huawei="HUAWEI" class="pc_phone" alt="HUAWEI P10" data-src="//consumer-img.huawei.com/content/dam/huawei-cbg-site/en/mkt/header-menu/navigation-p10-pink.png" mate="MATE" style="display:none">
</a>
<a class="bottom_word series_filter a-common" href="javascript:;" cat="Menu: Phones" act="Click on / HUAWEI P10" lab="Header - <page title>" select-filter="p-series">
<i>EXPLORE HUAWEI P SERIES</i>
</a>
</li>
<li class="">
<a cat="Menu: Phones" act="Click on HUAWEI NOVA 2" lab="Header - <page title>" href="/en/phones/nova2" class="img_center_word a-common" style="background-size:cover; background-image: url('/content/dam/huawei-cbg-site/en/mkt/header-menu/img_con_en_nav_mp3_bg2.jpg');">
<div class="see_rgb">
<h2 style="color: #244E59;">HUAWEI NOVA 2</h2>
<span style="background-color: #244E59;"></span>
<em style="color: #244E59;">HUAWEI nova 2’s 20MP front camera shoots higher definition, bolder, more artistic and more beautiful portraits than ever.</em>
</div>
<img huawei="HUAWEI" class="pc_phone" alt="HUAWEI NOVA 2" data-src="//consumer-img.huawei.com/content/dam/huawei-cbg-site/en/mkt/header-menu/img_con_en_nav_mp3.png" mate="MATE" style="display:none">
</a>
<a class="bottom_word series_filter a-common" href="javascript:;" cat="Menu: Phones" act="Click on / HUAWEI NOVA 2" lab="Header - <page title>" select-filter="nova-series">
<i>EXPLORE HUAWEI Nova SERIES</i>
</a>
</li>
</ul>
</div>
<a class="see_all show_all_phones pro_wrap a-common" href="javascript:;" lab="Header - <page title>" act="All Phones" cat="Menu: Phones" pbi1="31" wrap="menu_module_allphone">
<i>SEE ALL PHONES</i>
</a>
</div>
</div>
<div class="menu_module_allphone">
<div class="all_phones common_menu slide_wrap pro_compare" style="display: none">
<div class="see_wrap">
<div class="see_close">
<span>
<pre class="icon_public"></pre>BACK
</span>
<pre>All Phones</pre>
<i class="icon_public"></i></div>
<div class="conv3_global_selector">
<div class="select" t="structured_field_42">
<span>SERIES</span>
<ol _mark="SERIES">
<li v="mate-series">Huawei Mate Series</li>
<li v="p-series">Huawei P Series</li>
<li v="g-series">Huawei G Series</li>
<li v="y-series">Huawei Y Series</li>
<li v="nova-series">Huawei nova Series</li>
</ol>
</div>
<div class="select" t="structured_field_42">
<span>SCREEN SIZE</span>
<ol _mark="SCREEN SIZE">
<li v="4-0">< 4.0"</li>
<li v="4_0_4_9">4.0" - 4.9"</li>
<li v="5_0_5_9">5.0" - 5.9"</li>
<li v="6_0">> 6.0</li>
</ol>
</div>
<div class="select" t="structured_field_42">
<span>FEATURES</span>
<ol _mark="FEATURES">
<li v="long-lasting-battery">Large Battery*</li>
<li v="dualcamera">Dual Camera</li>
<li v="octa-core-cpu">Octa-core CPU</li>
<li v="supercharge">HUAWEI SuperCharge**</li>
</ol>
</div>
<div class="select" t="structured_field_42">
<span>CAMERA</span>
<ol _mark="CAMERA">
<li v="5megapixels">< 5 megapixels</li>
<li v="5-8megapixels">5 - 8 megapixels</li>
<li v="8-13megapixels">8 - 13 megapixels</li>
<li v="13-16megapixels">13 - 16 megapixels</li>
</ol>
</div>
<div class="phone_feature_des">
*TyP ≥ 3000 mAh<br />**HUAWEI SuperCharge is a quick charge technology applied on specific HUAWEI devices using HUAWEI SuperCharger and cable.
</div>
</div>
<ul class="see_phone_uList"></ul>
<style>
.common_menu .see_wrap .see_phone_uList:empty:after { content:"Sorry, No results were found." ;display:block;font-size: 18px; letter-spacing: 6px; text-align: center; margin-top:40px; }
</style>
</div>
<div class="list_compare" style="display: none" data-enable-compare="true">
<div class="list_compare_title">SELECTED</div>
<div class="list_compare_body"></div>
<div class="list_compare_btn" style="display: none" data-compare-link="http://consumer.huawei.com/en/phones/compare/"><a href="javascript:;">Compare</a></div>
</div>
<div class="load_more load_more_products a-common" style="display: none" pbi1="31" cat="Content Interactions" act="LoadMore" lab="<product name> - <page title>">
<div class="text">
<span>+</span>Load More
</div>
</div>
</div>
</div>
<div class="menu_module_products">
<div class="data-menu-more-products" style="display: none;">[{"pbi1":"36","products":[{"productName":"HUAWEI Matebook X","marketingName":"HUAWEI MateBook X","colors":"#cccccc,#e9ddb7,#e7bcb3","canBuy":false,"filter":"","assetPath":"//consumer-img.huawei.com/content/dam/huawei-cbg-site/common/mkt/list-image/pc/matebook-x/matebook-x-listimage-black.png","productDetailPagePath":"http://consumer.huawei.com/en/tablets/matebook-x/","pbi2Value":""},{"productName":"HUAWEI Matebook D","marketingName":"HUAWEI MateBook D","colors":"#a9b8d9,#cccccc,#e5d1b6","canBuy":false,"filter":"","assetPath":"//consumer-img.huawei.com/content/dam/huawei-cbg-site/common/mkt/list-image/pc/matebook-d/matebook-d-listimage-gold.png","productDetailPagePath":"http://consumer.huawei.com/en/tablets/matebook-d/","pbi2Value":""},{"productName":"HUAWEI Matebook E","marketingName":"HUAWEI MateBook E","colors":"#e5dcae","canBuy":false,"filter":"","assetPath":"//consumer-img.huawei.com/content/dam/huawei-cbg-site/common/mkt/list-image/pc/matebook-e/matebook-e-listimage-white.png","productDetailPagePath":"http://consumer.huawei.com/en/tablets/matebook-e/","pbi2Value":""},{"productName":"HUAWEI MateBook B200","marketingName":"HUAWEI MateBook B200","colors":"#000000","canBuy":false,"filter":"","assetPath":"//consumer-img.huawei.com/content/dam/huawei-cbg-site/common/mkt/list-image/pc/matebook-b200/matebook-b200-listimage-balck.png","productDetailPagePath":"http://consumer.huawei.com/en/tablets/matebook-b200/","pbi2Value":""},{"productName":"HUAWEI MediaPad M3 Lite","marketingName":"HUAWEI MediaPad M3 Lite","colors":"#ffffff,#666666,#e5d1b6","canBuy":false,"filter":"","assetPath":"//consumer-img.huawei.com/content/dam/huawei-cbg-site/common/mkt/list-image/tablets/m3-lite-8/m3-lite-8-listimage-black.png","productDetailPagePath":"http://consumer.huawei.com/en/tablets/mediapad-m3-lite/","pbi2Value":""},{"productName":"HUAWEI MediaPad M3 lite 10.0","marketingName":"HUAWEI MediaPad M3 lite 10","colors":"#e5d1b6,#666666,#ffffff","canBuy":false,"filter":"","assetPath":"//consumer-img.huawei.com/content/dam/huawei-cbg-site/common/mkt/list-image/tablets/m3-lite-10/m3-lite-10-listimage-black.png","productDetailPagePath":"http://consumer.huawei.com/en/tablets/mediapad-m3-lite-10/","pbi2Value":""},{"productName":"MediaPad M3","marketingName":"HUAWEI MediaPad M3","colors":"#e8e8e8,#e5d1b6","canBuy":false,"filter":"","assetPath":"//consumer-img.huawei.com/content/dam/huawei-cbg-site/common/mkt/list-image/tablets/m3/m3-listimage-white.png","productDetailPagePath":"http://consumer.huawei.com/en/tablets/mediapad-m3-8/","pbi2Value":""},{"productName":"HUAWEI Matebook","marketingName":"HUAWEI Matebook","colors":"#cccccc,#e5d1b6","canBuy":false,"filter":"","assetPath":"//consumer-img.huawei.com/content/dam/huawei-cbg-site/common/mkt/list-image/pc/matebook/matebook-listimage-white.png","productDetailPagePath":"http://consumer.huawei.com/en/tablets/matebook/","pbi2Value":""},{"productName":"HUAWEI MediaPad T3 10","marketingName":"HUAWEI MediaPad T3 10","colors":"#f4deba,#666666","canBuy":false,"filter":"","assetPath":"//consumer-img.huawei.com/content/dam/huawei-cbg-site/common/mkt/list-image/tablets/t3-10/t3-10-listimage-black.png","productDetailPagePath":"http://consumer.huawei.com/en/tablets/mediapad-t3-10/","pbi2Value":""},{"productName":"HUAWEI MediaPad T3","marketingName":"HUAWEI MediaPad T3","colors":"#666666,#f4deba","canBuy":false,"filter":"","assetPath":"//consumer-img.huawei.com/content/dam/huawei-cbg-site/common/mkt/list-image/tablets/t3-8/t3-8-listimage-white.png","productDetailPagePath":"http://consumer.huawei.com/en/tablets/mediapad-t3/","pbi2Value":""},{"productName":"HUAWEI MediaPad T3 7 3G","marketingName":"HUAWEI MediaPad T3 7 3G","colors":"","canBuy":false,"filter":"","assetPath":"//consumer-img.huawei.com/content/dam/huawei-cbg-site/common/mkt/list-image/tablets/t3-7-3g/T3-7-3G-listimg-black.png","productDetailPagePath":"http://consumer.huawei.com/en/tablets/mediapad-t3-7-3g/","pbi2Value":""},{"productName":"HUAWEI MediaPad T3 7 kids","marketingName":"HUAWEI Me
diaPad T3 7 Kids","colors":"","canBuy":false,"filter":"","assetPath":"//consumer-img.huawei.com/content/dam/huawei-cbg-site/common/mkt/list-image/tablets/t3-7-kids/T3-7-kid-listimg-blue.png","productDetailPagePath":"http://consumer.huawei.com/en/tablets/mediapad-t3-7-kids/","pbi2Value":""},{"productName":"HUAWEI MediaPad T3 7","marketingName":"HUAWEI MediaPad T3 7","colors":"#666666,#e8e8e8","canBuy":false,"filter":"","assetPath":"//consumer-img.huawei.com/content/dam/huawei-cbg-site/common/mkt/list-image/tablets/t3-7/t3-7-listimage-black.png","productDetailPagePath":"http://consumer.huawei.com/en/tablets/mediapad-t3-7/","pbi2Value":""},{"productName":"MediaPad T2 8 Pro","marketingName":"HUAWEI MediaPad T2 8 Pro","colors":"#ffffff","canBuy":false,"filter":"","assetPath":"//consumer-img.huawei.com/content/dam/huawei-cbg-site/common/mkt/list-image/tablets/t2-8-pro/t2-8-pro-listimage-white.png","productDetailPagePath":"http://consumer.huawei.com/en/tablets/mediapad-t2-8-pro/","pbi2Value":""},{"productName":"MediaPad T2 10.0 Pro","marketingName":"HUAWEI MediaPad T2 10.0 Pro","colors":"#000000,#ffffff","canBuy":false,"filter":"","assetPath":"//consumer-img.huawei.com/content/dam/huawei-cbg-site/common/support/list-image/tablets/mediapad-t2-10-pro/mediapad-t2-10-pro-listimage-white.png","productDetailPagePath":"http://consumer.huawei.com/en/tablets/mediapad-t2-10-pro/","pbi2Value":""},{"productName":"MediaPad T2 7.0","marketingName":"HUAWEI MediaPad T2 7.0","colors":"#cccccc,#e5d1b6","canBuy":false,"filter":"","assetPath":"//consumer-img.huawei.com/content/dam/huawei-cbg-site/common/mkt/list-image/tablets/t2-7/t2-7-listimage-black.png","productDetailPagePath":"http://consumer.huawei.com/en/tablets/mediapad-t2-7/","pbi2Value":""},{"productName":"MediaPad M2 8.0","marketingName":"HUAWEI MediaPad M2 8.0","colors":"#cccccc,#e5d1b6","canBuy":false,"filter":"mediapad-series,excellent-camera,stunning-audio,long-lasting-battery,8-13megapixels,6_0","assetPath":"//consumer-img.huawei.com/content/dam/huawei-cbg-site/common/mkt/list-image/tablets/m2-8/m2-8-listimage-gold.png","productDetailPagePath":"http://consumer.huawei.com/en/tablets/mediapad-m2-8/","pbi2Value":""},{"productName":"MediaPad T1 7","marketingName":"HUAWEI MediaPad T1 7.0","colors":"","canBuy":false,"filter":"","assetPath":"//consumer-img.huawei.com/content/dam/huawei-cbg-site/common/mkt/list-image/tablets/t1-7/t1-7-listimage-black.png","productDetailPagePath":"http://consumer.huawei.com/en/tablets/mediapad-t1-7/","pbi2Value":""}]},{"pbi1":"37","products":[{"productName":"HUAWEI TalkBand B3 Lite","marketingName":"HUAWEI TalkBand B3 Lite","colors":"","canBuy":false,"filter":"","assetPath":"//consumer-img.huawei.com/content/dam/huawei-cbg-site/common/mkt/list-image/wearables/talkband-b3-lite/talkband-b3-lite-listimage-black.png","productDetailPagePath":"http://consumer.huawei.com/en/wearables/talkband-b3-lite/","pbi2Value":""},{"productName":"HUAWEI Band 2","marketingName":"HUAWEI Band 2","colors":"","canBuy":false,"filter":"","assetPath":"//consumer-img.huawei.com/content/dam/huawei-cbg-site/common/mkt/list-image/wearables/band2/band2-listimage-blue.png","productDetailPagePath":"http://consumer.huawei.com/en/wearables/band2/","pbi2Value":""},{"productName":"HUAWEI Color Band A2","marketingName":"HUAWEI Color Band A2","colors":"#000000,#a2ee10,#cc0000","canBuy":false,"filter":"","assetPath":"//consumer-img.huawei.com/content/dam/huawei-cbg-site/common/mkt/list-image/wearables/aw61/aw61-listimg-red.png","productDetailPagePath":"http://consumer.huawei.com/en/wearables/color-band-a2/","pbi2Value":""},{"productName":"HUAWEI FIT","marketingName":"HUAWEI FIT","colors":"#blue,#graphite-black","canBuy":false,"filter":"","assetPath":"//consumer-img.huawei.com/content/dam/huawei-cbg-site/common/mkt/list-image/wearables/fit/fit-listimage-blue.png","productDetailPagePath":"http://consumer.huawei.com/en/wearables/fit/","pbi2Value":""},{"productName":"HUAWEI WATCH 2","marketingName":"HUAWEI WATCH 2","colors":"","canBuy":false,"filter":"","assetPath":"//consumer-img.huawei.com/content/dam
/huawei-cbg-site/common/mkt/list-image/wearables/watch2/watch2-listimage-yellow.png","productDetailPagePath":"http://consumer.huawei.com/en/wearables/watch2/","pbi2Value":""},{"productName":"TalkBand B2","marketingName":"HUAWEI TalkBand B2","colors":"","canBuy":false,"filter":"","assetPath":"//consumer-img.huawei.com/content/dam/huawei-cbg-site/common/mkt/list-image/wearables/b2/b2-listimage-black.png","productDetailPagePath":"http://consumer.huawei.com/en/wearables/talkband-b2/","pbi2Value":""},{"productName":"TalkBand B3","marketingName":"HUAWEI TalkBand B3","colors":"","canBuy":false,"filter":"","assetPath":"//consumer-img.huawei.com/content/dam/huawei-cbg-site/en/mkt/pdp/wearables/talkband-b3/B3.png","productDetailPagePath":"http://consumer.huawei.com/en/wearables/talkband-b3/","pbi2Value":""},{"productName":"HUAWEI WATCH","marketingName":"HUAWEI WATCH","colors":"","canBuy":false,"filter":"","assetPath":"//consumer-img.huawei.com/content/dam/huawei-cbg-site/common/mkt/list-image/wearables/watch/watch-listimage-white.png","productDetailPagePath":"http://consumer.huawei.com/en/wearables/watch/","pbi2Value":""}]},{"pbi1":"32","pbi2":"32001","products":[{"productName":"E5771","marketingName":"E5771","colors":"","canBuy":false,"filter":"","assetPath":"//consumer-img.huawei.com/content/dam/huawei-cbg-site/common/mkt/list-image/mobile-broadband/e5771/e5771-listimage-gold.png","productDetailPagePath":"http://consumer.huawei.com/en/mobile-broadband/e5771/","pbi2Value":"32001"},{"productName":"E5577","marketingName":"E5577","colors":"","canBuy":false,"filter":"","assetPath":"//consumer-img.huawei.com/content/dam/huawei-cbg-site/common/mkt/list-image/mobile-broadband/e5577/e5577-listimage-white.png","productDetailPagePath":"http://consumer.huawei.com/en/mobile-broadband/e5577/","pbi2Value":"32001"},{"productName":"E5787","marketingName":"E5787","colors":"","canBuy":false,"filter":"","assetPath":"//consumer-img.huawei.com/content/dam/huawei-cbg-site/common/mkt/list-image/mobile-broadband/e5787/e5787-listimage-black.png","productDetailPagePath":"http://consumer.huawei.com/en/mobile-broadband/e5787/","pbi2Value":"32001"},{"productName":"E5770s-923","marketingName":"E5770","colors":"","canBuy":false,"filter":"","assetPath":"//consumer-img.huawei.com/content/dam/huawei-cbg-site/common/mkt/list-image/mobile-broadband/e5770/e5770-listimage-black.png","productDetailPagePath":"http://consumer.huawei.com/en/mobile-broadband/e5770/","pbi2Value":"32001"},{"productName":"E5373","marketingName":"E5373","colors":"","canBuy":false,"filter":"","assetPath":"//consumer-img.huawei.com/content/dam/huawei-cbg-site/common/mkt/list-image/mobile-broadband/e5373/e5373-listimage-white.png","productDetailPagePath":"http://consumer.huawei.com/en/mobile-broadband/e5373/","pbi2Value":"32001"},{"productName":"E5377s-32","marketingName":"E5377","colors":"","canBuy":false,"filter":"","assetPath":"//consumer-img.huawei.com/content/dam/huawei-cbg-site/common/mkt/list-image/mobile-broadband/e5377/e5377-listimage-white.png","productDetailPagePath":"http://consumer.huawei.com/en/mobile-broadband/e5377/","pbi2Value":"32001"},{"productName":"E5377Ts-32","marketingName":"E5377T","colors":"","canBuy":false,"filter":"","assetPath":"//consumer-img.huawei.com/content/dam/huawei-cbg-site/common/mkt/list-image/mobile-broadband/e5377t/e5377t-listimage-black.png","productDetailPagePath":"http://consumer.huawei.com/en/mobile-broadband/e5377t/","pbi2Value":"32001"},{"productName":"E5730s-2","marketingName":"E5730","colors":"","canBuy":false,"filter":"","assetPath":"//consumer-img.huawei.com/content/dam/huawei-cbg-site/common/mkt/list-image/mobile-broadband/e5730/e5730-listimage-black.png","productDetailPagePath":"http://consumer.huawei.com/en/mobile-broadband/e5730/","pbi2Value":"32001"},{"productName":"E5786s-32a","marketingName":"E5786","colors":"","canBuy":false,"filter":"","assetPath":"//consumer-img.huawei.com/content/dam/huawei-cbg-site/common/mkt/list-image/mobile-broadband/e5786/e5786-listimage-black.png","productDetailPagePath":"http://consumer.huawei.com/en/mobile-broa
dband/e5786s/","pbi2Value":"32001"}]},{"pbi1":"32","pbi2":"32002","products":[{"productName":"E3276","marketingName":"E3276","colors":"","canBuy":false,"filter":"","assetPath":"//consumer-img.huawei.com/content/dam/huawei-cbg-site/common/mkt/list-image/mobile-broadband/e3276/e3276-listimage-white.png","productDetailPagePath":"http://consumer.huawei.com/en/mobile-broadband/e3276/","pbi2Value":"32002"},{"productName":"E3372s-153","marketingName":"E3372","colors":"","canBuy":false,"filter":"","assetPath":"//consumer-img.huawei.com/content/dam/huawei-cbg-site/common/mkt/list-image/mobile-broadband/e3372/e3372-listimage-white.png","productDetailPagePath":"http://consumer.huawei.com/en/mobile-broadband/e3372/","pbi2Value":"32002"},{"productName":"E3531","marketingName":"E3531","colors":"","canBuy":false,"filter":"","assetPath":"//consumer-img.huawei.com/content/dam/huawei-cbg-site/common/mkt/list-image/mobile-broadband/e3531/e3531-listimage-white.png","productDetailPagePath":"http://consumer.huawei.com/en/mobile-broadband/e3531/","pbi2Value":"32002"}]},{"pbi1":"32","pbi2":"32003","products":[{"productName":"E8372h-510","marketingName":"E8372","colors":"","canBuy":false,"filter":"","assetPath":"//consumer-img.huawei.com/content/dam/huawei-cbg-site/common/mkt/list-image/mobile-broadband/e8372/e8372-listimage-white.png","productDetailPagePath":"http://consumer.huawei.com/en/mobile-broadband/e8372/","pbi2Value":"32003"},{"productName":"E8231s-1","marketingName":"E8231","colors":"","canBuy":false,"filter":"","assetPath":"//consumer-img.huawei.com/content/dam/huawei-cbg-site/common/mkt/list-image/mobile-broadband/e8231/e8231-listimage-black.png","productDetailPagePath":"http://consumer.huawei.com/en/mobile-broadband/e8231/","pbi2Value":"32003"}]},{"pbi1":"38","products":[{"productName":"HUAWEI EnVizion 360 Camera","marketingName":"HUAWEI EnVizion 360 Camera","colors":"","canBuy":false,"filter":"","assetPath":"//consumer-img.huawei.com/content/dam/huawei-cbg-site/common/mkt/list-image/accessories/cv60/cv60.png","productDetailPagePath":"http://consumer.huawei.com/en/accessories/envizion-360-camera/","pbi2Value":""},{"productName":"HUAWEI Smart Scale","marketingName":"HUAWEI Smart Scale","colors":"","canBuy":false,"filter":"","assetPath":"//consumer-img.huawei.com/content/dam/huawei-cbg-site/common/mkt/list-image/accessories/smart-scale/smart-scale-listimage-white.png","productDetailPagePath":"http://consumer.huawei.com/en/accessories/smart-scale/","pbi2Value":""},{"productName":"HUAWEI AP09S","marketingName":"HUAWEI AP09S","colors":"#000000","canBuy":false,"filter":"","assetPath":"//consumer-img.huawei.com/content/dam/huawei-cbg-site/common/mkt/list-image/accessories/ap09s/ap09s-listimage-black.png","productDetailPagePath":"http://consumer.huawei.com/en/accessories/ap09s/","pbi2Value":""},{"productName":"HUAWEI Sport Headphones","marketingName":"HUAWEI Sport Headphones","colors":"#000000,#cc0000","canBuy":false,"filter":"","assetPath":"//consumer-img.huawei.com/content/dam/huawei-cbg-site/common/mkt/list-image/accessories/sport-headphones/listimage-Sport-Headphones.png","productDetailPagePath":"http://consumer.huawei.com/en/accessories/sport-headphones/","pbi2Value":""},{"productName":"HUAWEI Sport Headphones Lite","marketingName":"HUAWEI Sport Headphones Lite","colors":"#000000,#cc0000,#0099ff","canBuy":false,"filter":"","assetPath":"//consumer-img.huawei.com/content/dam/huawei-cbg-site/common/mkt/list-image/accessories/am61/listimage-Sport-Headphones-Lite.png","productDetailPagePath":"http://consumer.huawei.com/en/accessories/sport-headphones-lite/","pbi2Value":""},{"productName":"HUAWEI Colortooth","marketingName":"HUAWEI Color Tooth","colors":"","canBuy":false,"filter":"","assetPath":"//consumer-img.huawei.com/content/dam/huawei-cbg-site/common/mkt/list-image/accessories/color-tooth/color-tooth-listimage-black.png","productDetailPagePath":"http://consumer.huawei.com/en/accessories/color-tooth/","pbi2Value":""},{"productName":"HUAWEI Color Cube","marketingName":"HUAWEI Color Cube","colors":"","canBuy":false,"filter":"","assetPath":
"//consumer-img.huawei.com/content/dam/huawei-cbg-site/common/mkt/list-image/accessories/color-cube/color-cube-listimage-white.png","productDetailPagePath":"http://consumer.huawei.com/en/accessories/color-cube/","pbi2Value":""},{"productName":"HUAWEI Color Radio","marketingName":"HUAWEI Color Radio","colors":"","canBuy":false,"filter":"","assetPath":"//consumer-img.huawei.com/content/dam/huawei-cbg-site/common/mkt/list-image/accessories/color-radio/color-radio-listimage-black.png","productDetailPagePath":"http://consumer.huawei.com/en/accessories/color-radio/","pbi2Value":""}]},{"pbi1":"33","pbi2":"33007","products":[{"productName":"B315s-22","marketingName":"LTE CPE B315","colors":"","canBuy":false,"filter":"","assetPath":"//consumer-img.huawei.com/content/dam/huawei-cbg-site/common/mkt/list-image/smart-home/b315/b315-listimage-black.png","productDetailPagePath":"http://consumer.huawei.com/en/smart-home/b315/","pbi2Value":"33007"},{"productName":"B310s","marketingName":"LTE CPE B310","colors":"","canBuy":false,"filter":"","assetPath":"//consumer-img.huawei.com/content/dam/huawei-cbg-site/common/mkt/list-image/smart-home/b310/b310-listimage-black.png","productDetailPagePath":"http://consumer.huawei.com/en/smart-home/b310/","pbi2Value":"33007"}]},{"pbi1":"33","pbi2":"33006","products":[{"productName":"WS331c-10","marketingName":"WS331c","colors":"","canBuy":false,"filter":"","assetPath":"//consumer-img.huawei.com/content/dam/huawei-cbg-site/common/mkt/list-image/smart-home/ws331c/ws331c-listimage-white.png","productDetailPagePath":"http://consumer.huawei.com/en/smart-home/ws331c/","pbi2Value":"33006"}]}]</div>
<div class="explore common_menu wrap_others slide_wrap" style="display: none;">
<div class="see_wrap">
<div class="see_close">
<i class="icon_public"></i>
<span>
<pre class="icon_public"></pre>
BACK
</span>
</div>
<ul class="see_phone_uList">
<li>
<a cat="Menu: More Products" act="Click on HUAWEI MATEBOOK X" lab="Header - <page title>" href="/en/tablets/matebook-x" class="a-common">
<div class="img_center_word" style="background-size:cover; background-image: url('/content/dam/huawei-cbg-site/en/mkt/header-menu/img_con_en_nav_ot1_bg1.jpg');">
<div class="see_rgb">
<h3 style="color: #000;">HUAWEI MATEBOOK X</h3>
<span style="background-color: #000;"></span><em style="color: #000;">Light, powerful, beautiful, portable. Rethink the PC. Rethink your life. 13-inch screen, 12.5 mm thick, 1.05 kg. Effortlessly integrates work and life. Portable enough to change the world from anywhere you want.</em>
</div>
<img class="pc_phone" time="" alt="HUAWEI MATEBOOK X" data-src="//consumer-img.huawei.com/content/dam/huawei-cbg-site/en/mkt/header-menu/img_con_en_nav_mbx.png" style="display:none">
</div>
</a>
<a class="pro_wrap img_bottom_word a-common" href="javascript:;" cat="Menu: More Products" act="Click on HUAWEI MATEBOOK X" lab="Header - <page title>" pbi1="36" wrap="menu_module_tablets"><i> EXPLORE PC & TABLETS</i></a>
</li>
<li>
<a cat="Menu: More Products" act="Click on HUAWEI TALKBAND B3 LITE" lab="Header - <page title>" href="/en/wearables/talkband-b3-lite" class="a-common">
<div class="img_center_word" style="background-size:cover; background-image: url('/content/dam/huawei-cbg-site/en/mkt/header-menu/img_con_en_nav_ot2_bg1.jpg');">
<div class="see_rgb">
<h3 style="color: #fff;">HUAWEI TALKBAND B3 LITE</h3>
<span style="background-color: #fff;"></span><em style="color: #fff;">Stay on track and in touch with the new fitness tracking wristband with removable Bluetooth headset. Multi-tasking has never looked so good.</em>
</div>
<img class="pc_phone" time="" alt="HUAWEI TALKBAND B3 LITE" data-src="//consumer-img.huawei.com/content/dam/huawei-cbg-site/en/mkt/header-menu/navigation-band3-lite.png" style="display:none">
</div>
</a>
<a class="pro_wrap img_bottom_word a-common" href="javascript:;" cat="Menu: More Products" act="Click on HUAWEI TALKBAND B3 LITE" lab="Header - <page title>" pbi1="37" wrap="menu_module_wearables"><i>EXPLORE WEARABLES</i></a>
</li>
<li>
<a cat="Menu: More Products" act="Click on HUAWEI MOBILE WIFI" lab="Header - <page title>" href="/en/mobile-broadband/e5770" class="a-common">
<div class="img_center_word" style="background-size:cover; background-image: url('/content/dam/huawei-cbg-site/en/mkt/header-menu/img_con_en_nav_ot3_bg1.jpg');">
<div class="see_rgb">
<h3 style="color: #fff;">HUAWEI MOBILE WIFI</h3>
<span style="background-color: #fff;"></span><em style="color: #fff;">Compact to fit in your pocket, the HUAWEI Mobile WiFi Pro can support you stay connected while you travel.</em>
</div>
<img class="pc_phone" time="" alt="HUAWEI MOBILE WIFI" data-src="//consumer-img.huawei.com/content/dam/huawei-cbg-site/en/mkt/header-menu/img_con_en_nav_ot3.png" style="display:none">
</div>
</a>
<a class="pro_wrap img_bottom_word a-common" href="javascript:;" cat="Menu: More Products" act="Click on HUAWEI MOBILE WIFI" lab="Header - <page title>" pbi1="33" wrap="menu_module_mobile-broadband"><i>EXPLORE MOBILE BROADBANDS</i></a>
</li>
</ul>
</div>
<ul class="see_all">
<a href="javascript:;" class="a-menu pro_wrap a-common" lab="Header - <page title>" act="Click on EXPLORE ACCESSORIES" cat="Menu: More Products" pbi1="38" wrap="menu_module_accessories"><i>EXPLORE ACCESSORIES</i></a>
<a href="javascript:;" class="a-menu pro_wrap a-common" lab="Header - <page title>" act="Click on EXPLORE SMARTHOME" cat="Menu: More Products" pbi1="33" wrap="menu_module_smart-home"><i>EXPLORE SMARTHOME</i></a>
</ul>
</div>
</div>
<div class="menu_module_tablets">
<div class="tablets common_menu other_products slide_wrap pro_compare" style="display: none">
<div class="see_wrap">
<div class="see_close">
<span><pre class="icon_public"></pre>BACK</span><pre>Tablets</pre><i class="icon_public"></i>
</div>
<ul class="see_phone_uList"></ul>
<style>
.common_menu .see_wrap .see_phone_uList:empty:after { content:"Sorry, No results were found." ;display:block;font-size: 18px; letter-spacing: 6px; text-align: center; margin-top:40px; }
</style>
</div>
<div class="list_compare" style="display: none" data-enable-compare="true">
<div class="list_compare_title">SELECTED</div>
<div class="list_compare_body"></div>
<div class="list_compare_btn" style="display: none" data-compare-link="http://consumer.huawei.com/en/tablets/compare/"><a href="javascript:;">Compare</a></div>
</div>
<div class="load_more load_more_products a-common" style="display: none" pbi1="36" cat="Content Interactions" act="LoadMore" lab="<product name> - <page title>">
<div class="text"><span>+</span>Load More</div>
</div>
</div>
</div>
<div class="menu_module_wearables">
<div class="wearables common_menu other_products slide_wrap " style="display: none">
<div class="see_wrap">
<div class="see_close">
<span><pre class="icon_public"></pre>BACK</span><pre>Wearables</pre><i class="icon_public"></i>
</div>
<ul class="see_phone_uList"></ul>
<style>
.common_menu .see_wrap .see_phone_uList:empty:after { content:"Sorry, No results were found." ;display:block;font-size: 18px; letter-spacing: 6px; text-align: center; margin-top:40px; }
</style>
</div>
<div class="list_compare" style="display: none" data-enable-compare="false">
<div class="list_compare_title">SELECTED</div>
<div class="list_compare_body"></div>
<div class="list_compare_btn" style="display: none" data-compare-link="http://consumer.huawei.com/en/wearables/compare/"><a href="javascript:;">Compare</a></div>
</div>
<div class="load_more load_more_products a-common" style="display: none" pbi1="37" cat="Content Interactions" act="LoadMore" lab="<product name> - <page title>">
<div class="text"><span>+</span>Load More</div>
</div>
</div>
</div>
<div class="menu_module_mobile-broadband">
<div class="mobile-broadband common_menu other_products slide_wrap " style="display: none">
<div class="see_wrap">
<div class="see_close">
<span><pre class="icon_public"></pre>BACK</span><pre>Mobile Broadband</pre><i class="icon_public"></i>
</div>
<ul class="see_all sub_types">
<a href="javascript:;" pbi2="32001"><i>Mobile WIFI</i></a>
<a href="javascript:;" pbi2="32002"><i>Dongles</i></a>
<a href="javascript:;" pbi2="32003"><i>Wingles</i></a>
</ul>
<ul class="see_phone_uList"></ul>
<style>
.common_menu .see_wrap .see_phone_uList:empty:after { content:"Sorry, No results were found." ;display:block;font-size: 18px; letter-spacing: 6px; text-align: center; margin-top:40px; }
</style>
</div>
<div class="list_compare" style="display: none" data-enable-compare="false">
<div class="list_compare_title">SELECTED</div>
<div class="list_compare_body"></div>
<div class="list_compare_btn" style="display: none" data-compare-link="http://consumer.huawei.com/en/mobile-broadband/compare/"><a href="javascript:;">Compare</a></div>
</div>
<div class="load_more load_more_products a-common" style="display: none" cat="Content Interactions" act="LoadMore" lab="<product name> - <page title>">
<div class="text"><span>+</span>Load More</div>
</div>
</div>
</div>
<div class="menu_module_accessories">
<div class="accessories common_menu other_products slide_wrap " style="display: none">
<div class="see_wrap">
<div class="see_close">
<span><pre class="icon_public"></pre>BACK</span><pre>Accessories</pre><i class="icon_public"></i>
</div>
<ul class="see_phone_uList"></ul>
<style>
.common_menu .see_wrap .see_phone_uList:empty:after { content:"Sorry, No results were found." ;display:block;font-size: 18px; letter-spacing: 6px; text-align: center; margin-top:40px; }
</style>
</div>
<div class="list_compare" style="display: none" data-enable-compare="false">
<div class="list_compare_title">SELECTED</div>
<div class="list_compare_body"></div>
<div class="list_compare_btn" style="display: none" data-compare-link="http://consumer.huawei.com/en/accessories/compare/"><a href="javascript:;">Compare</a></div>
</div>
<div class="load_more load_more_products a-common" style="display: none" pbi1="38" cat="Content Interactions" act="LoadMore" lab="<product name> - <page title>">
<div class="text"><span>+</span>Load More</div>
</div>
</div>
</div>
<div class="menu_module_smart-home">
<div class="smart-home common_menu other_products slide_wrap " style="display: none">
<div class="see_wrap">
<div class="see_close">
<span><pre class="icon_public"></pre>BACK</span><pre>Smart Home</pre><i class="icon_public"></i>
</div>
<ul class="see_all sub_types">
<a href="javascript:;" pbi2="33007"><i>4G LTE Routers</i></a>
<a href="javascript:;" pbi2="33006"><i>Wireles Routers</i></a>
</ul>
<ul class="see_phone_uList"></ul>
<style>
.common_menu .see_wrap .see_phone_uList:empty:after { content:"Sorry, No results were found." ;display:block;font-size: 18px; letter-spacing: 6px; text-align: center; margin-top:40px; }
</style>
</div>
<div class="list_compare" style="display: none" data-enable-compare="false">
<div class="list_compare_title">SELECTED</div>
<div class="list_compare_body"></div>
<div class="list_compare_btn" style="display: none" data-compare-link="http://consumer.huawei.com/en/smart-home/compare/"><a href="javascript:;">Compare</a></div>
</div>
<div class="load_more load_more_products a-common" style="display: none" cat="Content Interactions" act="LoadMore" lab="<product name> - <page title>">
<div class="text"><span>+</span>Load More</div>
</div>
</div>
</div>
<!--fixed bug-->
<style>
html[dir="rtl"] .explore .see_all .a-menu {
display: inline-block;
margin: 22px 30px 0;
margin-top: 22px;
margin-right: 30px;
margin-bottom: 0px;
margin-left: 30px;
}
</style>
<div class="search_module wrap_search slide_wrap" style="display: none;" pageSize="4" data-term-lt2="Please enter more term" data-term-gt90="Key length of input cannot be bigger than 90" data-search-api-url="http://api-consup.huawei.com/support/services/service/isearch/open/list">
<div class="conv3_search_wrap">
<div class="bg"></div>
<div class="result_area" style="min-height: 780px;">
<div class="result_phone">
<div class="input_content">
<div class="input"><input> <i class="icon_public glass"></i><i class="arrow"><em class="icon_public"></em></i></div>
<div class="suggested">Suggested searches:
<strong>
<a>P10</a>
<a>MEDIAPAD</a>
<a>WATCH 2</a>
</strong>
</div>
<ul class="associated_list" style="display: none;"></ul>
<div class="tit" style="display: none">RESULT (<span></span>)</div>
<ul class="list rmd_products" style="display: none">
</ul>
<ul class="list hot_products" style="display: none"></ul>
<div class="icon_close see_close"><i></i></div>
</div>
</div>
<div class="result_news_pc" style="display: none">
<div class="conv3_global_selector">
<div class="select">
<span class="top_select">Product</span>
<ol _mark="Product" style="display: none;">
<li t="consumer_product:31" f=""><a href="javascript:;">Phones</a></li>
<li t="consumer_product:36" f=""><a href="javascript:;">PC & Tablets</a></li>
<li t="consumer_product:37" f=""><a href="javascript:;">Wearables</a></li>
<li t="consumer_product:38" f=""><a href="javascript:;">Accessories</a></li>
<li t="consumer_product:32" f=""><a href="javascript:;">Mobile Broadband</a></li>
<li t="consumer_product:33" f=""><a href="javascript:;">Smart Home</a></li>
</ol>
</div>
<div class="select">
<span class="top_select">Support</span>
<ol _mark="Support" style="display: none;">
<li t="support:manual" f=""><a href="javascript:;">Manuals</a></li>
<li t="support:software" f=""><a href="javascript:;">Downloads</a></li>
<li t="support:faqs" f=""><a href="javascript:;">FAQs</a></li>
<li t="support_product:no" f=""><a href="javascript:;">Tech Specs</a></li>
</ol>
</div>
<div class="select">
<span class="top_select">Press</span>
<ol _mark="Press" style="display: none;">
<li t="consumer_press:consumer_news" f=""><a href="javascript:;">News & Events</a></li>
<li t="consumer_press:consumer_media_coverage" f=""><a href="javascript:;">Awards & Coverage</a></li>
</ol>
</div>
</div>
<ul class="list search_list"></ul>
<div class="load_more" style="display: none"><div class="text"><span>+</span>Load more</div></div>
</div>
<style>
@media screen and (max-width: 767px) {
.conv3_search_wrap .result_news_pc .list:empty:after{ content:"NO RESULTS CAN BE FOUND" ;display:block;font-size: 18px; letter-spacing: 6px; text-align: center; margin-top:30px;margin-bottom:30px; }
}
@media screen and (min-width: 768px) {
.conv3_search_wrap .result_news_pc .list:empty:after{ content:"NO RESULTS CAN BE FOUND" ;display:block;font-size: 18px; letter-spacing: 6px; text-align: center; margin-bottom:60px; }
.conv3_search_wrap .result_news_pc .list:empty:after{ content:"NO RESULTS CAN BE FOUND" ;display:block;font-size: 18px; letter-spacing: 6px; text-align: center; margin-top:25px; }
}
</style>
</div>
</div>
</div>
<input type="hidden" id="productLabel" value="Product"/>
<input type="hidden" id="supportLabel" value="Support"/>
<input type="hidden" id="pressLabel" value="Press"/>
<a href="/services/marketing-sites.json" style="display:none" id="marketing_sites"></a>
<div class="region_selector_module slide_wrap" style="display: none;">
<div class="conv3_region_selector">
<div class="icon_close_box">
<div class="close"><i></i></div>
</div>
<div class="conv3_global_selector">
<div class="select">
<span class="show"><input placeholder=""></span>
<ol style="display: block;"></ol>
</div>
<div class="tips">
Use current location: <a href="javascript:;"></a>
</div>
</div>
</div>
</div>
<div class="menu_module_products">
<div class="data-menu-more-products" style="display: none;">[]</div>
<div class="explore common_menu slide_wrap" style="display: none;">
<div class="see_wrap">
<div class="see_close">
<i class="icon_public"></i>
<span>
<pre class="icon_public"></pre>
</span>
</div>
</div>
</div>
</div>
<style>
@media screen and (min-width:768px) {
.other_products .see_all > li { display: inline-block; }
.other_products .see_all > li > a ~ ul { display: none; position: absolute; left: 50%; transform: translateX(-50%); width: 80%; border-top-color: #bbb; border-top-style: solid; border-top-width: 1px; }
.other_products .see_all > li > a ~ ul > li { display: inline-block; }
.other_products .see_all > li > a.active ~ ul { display: block; }
.other_products .see_wrap .see_phone_uList { margin-top: 40px; }
.other_products .see_all > li { display: inline-block; }
.conv3_nav .navcon .icon_search{width:40px;}
.conv3_nav .navcon .icon_search i{right:10px;}
}
@media screen and (min-width:768px) {
.other_products .see_all > ul { display: none; position: absolute; left: 50%; transform: translateX(-50%); width: 80%; border-top-color: #bbb; border-top-style: solid; border-top-width: 1px; }
.other_products .see_all > ul > li { display: inline-block; }
.other_products .see_all > ul { display: block; }
.conv3_nav .navcon .menu_cn ul li{margin-right:16px;}
}
@media screen and (min-width:768px) and (max-width:920px) {
.conv3_nav .navcon .menu_jp ul li{float: left;margin-right: 10px;position: relative;cursor: pointer;}
.conv3_nav .navcon .menu_cn ul li{float: left;margin-right: 11px;position: relative;cursor: pointer;font-size:12px;}
}
@media screen and (max-width:767px) {
.other_products .see_all > li > ul {display: none;}
.wrap_soft .see_wrap .see_phone_uList li {width: 100%;margin: 0;text-align: center;}
}
@media screen and (min-width:1024px) {
.explore.wrap_soft .see_wrap .see_phone_uList li {position: relative;display: inline-block;margin: 0 0px 0 0;width:23%; margin:0 22px 0 0;height:314px;text-align:center;}
.explore.wrap_soft .see_wrap .see_phone_uList li a p{text-align:center;line-height:26px;color:#000;font-size:18px;margin-top:20px;}
.explore.wrap_soft .see_wrap .see_phone_uList {width:100%; padding-bottom: 100px;}
}
@media screen and (max-width: 1023px){
.explore.wrap_soft .see_wrap .see_phone_uList{ padding-bottom: 40px; }
.explore .see_wrap .see_phone_uList li {
position: relative;
width: 100%;
text-align: center;
}
.explore.wrap_soft .see_wrap .see_phone_uList li{ width: 160px; margin-right: 20px; }
.explore.wrap_soft .see_wrap .see_phone_uList li a img{ width: 100%; }
.explore.wrap_soft .see_wrap .see_phone_uList li a p{text-align:center;line-height:26px;color:#000;font-size:18px;}
}
@media screen and (max-width: 767px){
.explore .see_wrap .see_phone_uList{margin-bottom:40px;}
.cookieTipVisible .conv3_nav .menu_cn ul{margin-top:105px;}
.conv3_nav .menu_cn{line-height:40px;}
.explore .see_wrap .see_phone_uList li,.explore.wrap_soft .see_wrap .see_phone_uList li {
position: relative;
width: 100%;
text-align: center;
}
.explore.wrap_soft .see_wrap .see_phone_uList li a p{text-align:center;line-height:26px;color:#000;font-size:18px;}
.explore.wrap_soft .see_wrap .see_phone_uList li a img{ width: auto; }
}
.explore.wrap_soft .see_wrap .see_phone_uList li:last-of-type{ margin-right: 0 }
.explore.wrap_soft .see_wrap .see_phone_uList li a{ height: 314px; background: #ebebeb; }
</style>
<div class="menu_module_products">
<div class="data-menu-more-products" style="display: none;">[]</div>
<div class="explore common_menu slide_wrap" style="display: none;">
<div class="see_wrap">