-
Notifications
You must be signed in to change notification settings - Fork 0
/
天猫tmall.com--上天猫,就够了.html
6027 lines (4268 loc) · 570 KB
/
天猫tmall.com--上天猫,就够了.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=(0168)https://www.tmall.com/?ali_trackid=2:mm_26632258_3504122_55934697:1493629497_2k8_1496382467&upsid=bf22e523e5986f810949d8595370fe4a&clk1=bf22e523e5986f810949d8595370fe4a -->
<html class="ks-webkit537 ks-webkit ks-chrome49 ks-chrome"><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><script charset="utf-8" src="https://fragment.tmall.com/tmbase/global_qrcode?wh_callback=true&_ksTS=1493629568600_672&callback=global_qrcode" async=""></script><script charset="utf-8" src="https://fragment.tmall.com/tmbase/sn_sitemap?wh_callback=true&_ksTS=1493629555440_647&callback=sn_sitemap" async=""></script><script src="https://ecpm.tanx.com/ex?i=mm_12852562_1778064_37796997&cb=jsonp_callback_32716&callback=&userid=&o=&f=&n=&r=https%3A%2F%2Fs.click.taobao.com%2Ft_js%3Ftu%3Dhttps%253A%252F%252Fs.click.taobao.com%252Ft%253Fe%253Dm%25253D2%252526s%25253D3dknE%25252B5m%25252FQccQipKwQzePCperVdZeJvipRe%25252F8jaAHciLme4nz7IQD%25252BpNUr5o%25252BaVdyTS32oZobhr7%25252Bk46yyCXGms78VMtZKGC9KgIjrZ25ijv9Rbz%25252FZ%25252BcLM7ngtD9XDUvvoet87lGTGGIGrHgCgZNHKist33dC4JQxg5p7bh%25252BFbQ%25253D%2526clk1%253Dbf22e523e5986f810949d8595370fe4a%2526upsid%253Dbf22e523e5986f810949d8595370fe4a%2526sc%253DcjZ8AOx%2526ref%253Dhttp%25253A%25252F%25252Fbzclk.baidu.com%25252Fadrc.php%25253Ft%25253D06KL00c00fA10kb07PNm07OUg00kS6uu000007uM8W300000TyYpfR.THLnenrC0A3qPHmsPW0sPj9xP7qsusK15yDdmyfYP1Ddnj0snH7-uAm0IHYsnYFanW0LwjfdfWfzn1FDrH-afYPaPbfswjP7wbRsn6K95gTqFhdWpyfqnWbYrjn3nHTdPBusThqbpyfqnHm0uHdCIZwsrBtEThNbpgF-mLf8Tv-VmhD8IA7Emh7EQhPEUiqzujqW5gN8FMTqIy4GUv41uyYhp1YvPWDLrAP-ujFbuWczPH9bFM0qUydxnWmvn1czPH9xn1RsPjDzn-tdPHb1Pjm4PzuB5yq5nDC4wAuGiL7sUhssPdPmwgChT1YhuWdCIZwsFHPKFHFAFHFATz4WUA-Wpz4YmyqBmyt8mvqVFHFAmvGprD75X0KWThnqPHDvnjD%252526tpl%25253Dtpl_10144_14402_1%252526l%25253D1052403542%252526attach%25253Dlocation%2525253D%25252526linkName%2525253D%25252525E6%25252525A0%2525252587%25252525E9%25252525A2%2525252598%25252526linkText%2525253D%25252525E5%25252525A4%25252525A9%25252525E7%252525258C%25252525ABTMALL.COM%25252525E6%25252525B1%2525252587%25252525E9%252525259B%2525252586%25252525E5%2525252585%25252525A8%25252525E7%2525252590%2525252583%25252525E5%2525252593%2525252581%25252525E7%2525252589%252525258C%25252525E5%25252525AE%2525252598%25252525E6%2525252596%25252525B9%25252525E6%2525252597%2525252597%25252526xp%2525253Did%252528%2525252522m7285397a%2525252522%252529%252525252FDIV%252525255B1%252525255D%252525252FDIV%252525255B1%252525255D%252525252FDIV%252525255B1%252525255D%252525252FDIV%252525255B1%252525255D%252525252FH2%252525255B1%252525255D%252525252FA%252525255B1%252525255D%25252526linkType%2525253D%25252526checksum%2525253D133%252526ie%25253Dutf-8%252526f%25253D3%252526ch%25253D14%252526tn%25253D56060048_4_pg%252526wd%25253D%252525E5%252525A4%252525A9%252525E7%2525258C%252525AB%252526oq%25253D%25252525E6%25252525B7%25252525B1%25252525E5%25252525BA%25252525A6%25252525E7%25252525B3%25252525BB%25252525E7%25252525BB%252525259F15.4%25252525E6%2525252580%252525258E%25252525E4%25252525B9%2525252588%25252525E5%25252525AE%2525252589%25252525E8%25252525A3%2525252585%25252525E6%25252525AD%25252525A5%25252525E9%25252525AA%25252525A4%252526rqlang%25253Dcn%252526inputT%25253D4111%252526prefixsug%25253Dtioam%252526rsp%25253D0%2526et%253DJcj2MZA7uqciePd%25252F3QA2Zf5qcqKU7Y2J&cg=af5d83afb9d886718047f072a89cd544&pvid=a67ee5d13d8f413a89529988cd2e23ba&u=https%3A%2F%2Fwww.tmall.com%2F%3Fali_trackid%3D2%3Amm_26632258_3504122_55934697%3A1493629497_2k8_1496382467%26upsid%3Dbf22e523e5986f810949d8595370fe4a%26clk1%3Dbf22e523e5986f810949d8595370fe4a&psl=1&nk=&sk=&refpid=&fp=1.HazZA0IzzA3dJc~FWJfLUFHpDgjw8QfUg_8kwp1eO0QcHIgcZ54IO8.UTF-8.pSampnAuC2CGA2MHQGMD2EC0bBQcqQMP-EYdQfE1AwuSA.Q.nrfpei" async=""></script><script src="https://ecpm.tanx.com/ex?i=mm_12852562_1778064_37804005&cb=jsonp_callback_16753&callback=&userid=&o=&f=&n=&r=https%3A%2F%2Fs.click.taobao.com%2Ft_js%3Ftu%3Dhttps%253A%252F%252Fs.click.taobao.com%252Ft%253Fe%253Dm%25253D2%252526s%25253D3dknE%25252B5m%25252FQccQipKwQzePCperVdZeJvipRe%25252F8jaAHciLme4nz7IQD%25252BpNUr5o%25252BaVdyTS32oZobhr7%25252Bk46yyCXGms78VMtZKGC9KgIjrZ25ijv9Rbz%25252FZ%25252BcLM7ngtD9XDUvvoet87lGTGGIGrHgCgZNHKist33dC4JQxg5p7bh%25252BFbQ%25253D%2526clk1%253Dbf22e523e5986f810949d8595370fe4a%2526upsid%253Dbf22e523e5986f810949d8595370fe4a%2526sc%253DcjZ8AOx%2526ref%253Dhttp%25253A%25252F%25252Fbzclk.baidu.com%25252Fadrc.php%25253Ft%25253D06KL00c00fA10kb07PNm07OUg00kS6uu000007uM8W300000TyYpfR.THLnenrC0A3qPHmsPW0sPj9xP7qsusK15yDdmyfYP1Ddnj0snH7-uAm0IHYsnYFanW0LwjfdfWfzn1FDrH-afYPaPbfswjP7wbRsn6K95gTqFhdWpyfqnWbYrjn3nHTdPBusThqbpyfqnHm0uHdCIZwsrBtEThNbpgF-mLf8Tv-VmhD8IA7Emh7EQhPEUiqzujqW5gN8FMTqIy4GUv41uyYhp1YvPWDLrAP-ujFbuWczPH9bFM0qUydxnWmvn1czPH9xn1RsPjDzn-tdPHb1Pjm4PzuB5yq5nDC4wAuGiL7sUhssPdPmwgChT1YhuWdCIZwsFHPKFHFAFHFATz4WUA-Wpz4YmyqBmyt8mvqVFHFAmvGprD75X0KWThnqPHDvnjD%252526tpl%25253Dtpl_10144_14402_1%252526l%25253D1052403542%252526attach%25253Dlocation%2525253D%25252526linkName%2525253D%25252525E6%25252525A0%2525252587%25252525E9%25252525A2%2525252598%25252526linkText%2525253D%25252525E5%25252525A4%25252525A9%25252525E7%252525258C%25252525ABTMALL.COM%25252525E6%25252525B1%2525252587%25252525E9%252525259B%2525252586%25252525E5%2525252585%25252525A8%25252525E7%2525252590%2525252583%25252525E5%2525252593%2525252581%25252525E7%2525252589%252525258C%25252525E5%25252525AE%2525252598%25252525E6%2525252596%25252525B9%25252525E6%2525252597%2525252597%25252526xp%2525253Did%252528%2525252522m7285397a%2525252522%252529%252525252FDIV%252525255B1%252525255D%252525252FDIV%252525255B1%252525255D%252525252FDIV%252525255B1%252525255D%252525252FDIV%252525255B1%252525255D%252525252FH2%252525255B1%252525255D%252525252FA%252525255B1%252525255D%25252526linkType%2525253D%25252526checksum%2525253D133%252526ie%25253Dutf-8%252526f%25253D3%252526ch%25253D14%252526tn%25253D56060048_4_pg%252526wd%25253D%252525E5%252525A4%252525A9%252525E7%2525258C%252525AB%252526oq%25253D%25252525E6%25252525B7%25252525B1%25252525E5%25252525BA%25252525A6%25252525E7%25252525B3%25252525BB%25252525E7%25252525BB%252525259F15.4%25252525E6%2525252580%252525258E%25252525E4%25252525B9%2525252588%25252525E5%25252525AE%2525252589%25252525E8%25252525A3%2525252585%25252525E6%25252525AD%25252525A5%25252525E9%25252525AA%25252525A4%252526rqlang%25253Dcn%252526inputT%25253D4111%252526prefixsug%25253Dtioam%252526rsp%25253D0%2526et%253DJcj2MZA7uqciePd%25252F3QA2Zf5qcqKU7Y2J&cg=a995f02ab6bc12665b9c864e8278bcce&pvid=a67ee5d13d8f413a89529988cd2e23ba&u=https%3A%2F%2Fwww.tmall.com%2F%3Fali_trackid%3D2%3Amm_26632258_3504122_55934697%3A1493629497_2k8_1496382467%26upsid%3Dbf22e523e5986f810949d8595370fe4a%26clk1%3Dbf22e523e5986f810949d8595370fe4a&psl=1&nk=&sk=&refpid=&fp=1.HazZA0IzqU1teFsoYsid5b5~ylIpOetQtB1WC_u~6~CEK86x~~I1O8.UTF-8.pSampnAuC2CGA2MHQGMD2EC0bBQcqQMP-EYdQfE1AwuSA.Q.ueqprp" async=""></script><script src="https://p.tanx.com/ex?i=mm_12852562_1778064_37796997" async=""></script><script src="https://ecpm.tanx.com/ex?i=mm_12852562_1778064_37802118&cb=jsonp_callback_93987&callback=&userid=&o=&f=&n=&r=https%3A%2F%2Fs.click.taobao.com%2Ft_js%3Ftu%3Dhttps%253A%252F%252Fs.click.taobao.com%252Ft%253Fe%253Dm%25253D2%252526s%25253D3dknE%25252B5m%25252FQccQipKwQzePCperVdZeJvipRe%25252F8jaAHciLme4nz7IQD%25252BpNUr5o%25252BaVdyTS32oZobhr7%25252Bk46yyCXGms78VMtZKGC9KgIjrZ25ijv9Rbz%25252FZ%25252BcLM7ngtD9XDUvvoet87lGTGGIGrHgCgZNHKist33dC4JQxg5p7bh%25252BFbQ%25253D%2526clk1%253Dbf22e523e5986f810949d8595370fe4a%2526upsid%253Dbf22e523e5986f810949d8595370fe4a%2526sc%253DcjZ8AOx%2526ref%253Dhttp%25253A%25252F%25252Fbzclk.baidu.com%25252Fadrc.php%25253Ft%25253D06KL00c00fA10kb07PNm07OUg00kS6uu000007uM8W300000TyYpfR.THLnenrC0A3qPHmsPW0sPj9xP7qsusK15yDdmyfYP1Ddnj0snH7-uAm0IHYsnYFanW0LwjfdfWfzn1FDrH-afYPaPbfswjP7wbRsn6K95gTqFhdWpyfqnWbYrjn3nHTdPBusThqbpyfqnHm0uHdCIZwsrBtEThNbpgF-mLf8Tv-VmhD8IA7Emh7EQhPEUiqzujqW5gN8FMTqIy4GUv41uyYhp1YvPWDLrAP-ujFbuWczPH9bFM0qUydxnWmvn1czPH9xn1RsPjDzn-tdPHb1Pjm4PzuB5yq5nDC4wAuGiL7sUhssPdPmwgChT1YhuWdCIZwsFHPKFHFAFHFATz4WUA-Wpz4YmyqBmyt8mvqVFHFAmvGprD75X0KWThnqPHDvnjD%252526tpl%25253Dtpl_10144_14402_1%252526l%25253D1052403542%252526attach%25253Dlocation%2525253D%25252526linkName%2525253D%25252525E6%25252525A0%2525252587%25252525E9%25252525A2%2525252598%25252526linkText%2525253D%25252525E5%25252525A4%25252525A9%25252525E7%252525258C%25252525ABTMALL.COM%25252525E6%25252525B1%2525252587%25252525E9%252525259B%2525252586%25252525E5%2525252585%25252525A8%25252525E7%2525252590%2525252583%25252525E5%2525252593%2525252581%25252525E7%2525252589%252525258C%25252525E5%25252525AE%2525252598%25252525E6%2525252596%25252525B9%25252525E6%2525252597%2525252597%25252526xp%2525253Did%252528%2525252522m7285397a%2525252522%252529%252525252FDIV%252525255B1%252525255D%252525252FDIV%252525255B1%252525255D%252525252FDIV%252525255B1%252525255D%252525252FDIV%252525255B1%252525255D%252525252FH2%252525255B1%252525255D%252525252FA%252525255B1%252525255D%25252526linkType%2525253D%25252526checksum%2525253D133%252526ie%25253Dutf-8%252526f%25253D3%252526ch%25253D14%252526tn%25253D56060048_4_pg%252526wd%25253D%252525E5%252525A4%252525A9%252525E7%2525258C%252525AB%252526oq%25253D%25252525E6%25252525B7%25252525B1%25252525E5%25252525BA%25252525A6%25252525E7%25252525B3%25252525BB%25252525E7%25252525BB%252525259F15.4%25252525E6%2525252580%252525258E%25252525E4%25252525B9%2525252588%25252525E5%25252525AE%2525252589%25252525E8%25252525A3%2525252585%25252525E6%25252525AD%25252525A5%25252525E9%25252525AA%25252525A4%252526rqlang%25253Dcn%252526inputT%25253D4111%252526prefixsug%25253Dtioam%252526rsp%25253D0%2526et%253DJcj2MZA7uqciePd%25252F3QA2Zf5qcqKU7Y2J&cg=a9cd83d3f459594a786709f9e15ed030&pvid=a67ee5d13d8f413a89529988cd2e23ba&u=https%3A%2F%2Fwww.tmall.com%2F%3Fali_trackid%3D2%3Amm_26632258_3504122_55934697%3A1493629497_2k8_1496382467%26upsid%3Dbf22e523e5986f810949d8595370fe4a%26clk1%3Dbf22e523e5986f810949d8595370fe4a&psl=1&nk=&sk=&refpid=&fp=1.HazZA0I0In7~uyksPjWpA-6d0jUCRIagQHA8O34Os7Jw-rVZxmT1n8.UTF-8.pSampnAuC2CGA2MHQGMD2EC0bBQcqQMP-EYdQfE1AwuSA.Q.ks2f7d" async=""></script><script src="https://p.tanx.com/ex?i=mm_12852562_1778064_37804005" async=""></script><script src="https://p.tanx.com/ex?i=mm_12852562_1778064_37802118" async=""></script><script src="https://ecpm.tanx.com/ex?i=mm_12852562_1778064_37676870&cb=jsonp_callback_72674&callback=&userid=&o=&f=&n=&r=https%3A%2F%2Fs.click.taobao.com%2Ft_js%3Ftu%3Dhttps%253A%252F%252Fs.click.taobao.com%252Ft%253Fe%253Dm%25253D2%252526s%25253D3dknE%25252B5m%25252FQccQipKwQzePCperVdZeJvipRe%25252F8jaAHciLme4nz7IQD%25252BpNUr5o%25252BaVdyTS32oZobhr7%25252Bk46yyCXGms78VMtZKGC9KgIjrZ25ijv9Rbz%25252FZ%25252BcLM7ngtD9XDUvvoet87lGTGGIGrHgCgZNHKist33dC4JQxg5p7bh%25252BFbQ%25253D%2526clk1%253Dbf22e523e5986f810949d8595370fe4a%2526upsid%253Dbf22e523e5986f810949d8595370fe4a%2526sc%253DcjZ8AOx%2526ref%253Dhttp%25253A%25252F%25252Fbzclk.baidu.com%25252Fadrc.php%25253Ft%25253D06KL00c00fA10kb07PNm07OUg00kS6uu000007uM8W300000TyYpfR.THLnenrC0A3qPHmsPW0sPj9xP7qsusK15yDdmyfYP1Ddnj0snH7-uAm0IHYsnYFanW0LwjfdfWfzn1FDrH-afYPaPbfswjP7wbRsn6K95gTqFhdWpyfqnWbYrjn3nHTdPBusThqbpyfqnHm0uHdCIZwsrBtEThNbpgF-mLf8Tv-VmhD8IA7Emh7EQhPEUiqzujqW5gN8FMTqIy4GUv41uyYhp1YvPWDLrAP-ujFbuWczPH9bFM0qUydxnWmvn1czPH9xn1RsPjDzn-tdPHb1Pjm4PzuB5yq5nDC4wAuGiL7sUhssPdPmwgChT1YhuWdCIZwsFHPKFHFAFHFATz4WUA-Wpz4YmyqBmyt8mvqVFHFAmvGprD75X0KWThnqPHDvnjD%252526tpl%25253Dtpl_10144_14402_1%252526l%25253D1052403542%252526attach%25253Dlocation%2525253D%25252526linkName%2525253D%25252525E6%25252525A0%2525252587%25252525E9%25252525A2%2525252598%25252526linkText%2525253D%25252525E5%25252525A4%25252525A9%25252525E7%252525258C%25252525ABTMALL.COM%25252525E6%25252525B1%2525252587%25252525E9%252525259B%2525252586%25252525E5%2525252585%25252525A8%25252525E7%2525252590%2525252583%25252525E5%2525252593%2525252581%25252525E7%2525252589%252525258C%25252525E5%25252525AE%2525252598%25252525E6%2525252596%25252525B9%25252525E6%2525252597%2525252597%25252526xp%2525253Did%252528%2525252522m7285397a%2525252522%252529%252525252FDIV%252525255B1%252525255D%252525252FDIV%252525255B1%252525255D%252525252FDIV%252525255B1%252525255D%252525252FDIV%252525255B1%252525255D%252525252FH2%252525255B1%252525255D%252525252FA%252525255B1%252525255D%25252526linkType%2525253D%25252526checksum%2525253D133%252526ie%25253Dutf-8%252526f%25253D3%252526ch%25253D14%252526tn%25253D56060048_4_pg%252526wd%25253D%252525E5%252525A4%252525A9%252525E7%2525258C%252525AB%252526oq%25253D%25252525E6%25252525B7%25252525B1%25252525E5%25252525BA%25252525A6%25252525E7%25252525B3%25252525BB%25252525E7%25252525BB%252525259F15.4%25252525E6%2525252580%252525258E%25252525E4%25252525B9%2525252588%25252525E5%25252525AE%2525252589%25252525E8%25252525A3%2525252585%25252525E6%25252525AD%25252525A5%25252525E9%25252525AA%25252525A4%252526rqlang%25253Dcn%252526inputT%25253D4111%252526prefixsug%25253Dtioam%252526rsp%25253D0%2526et%253DJcj2MZA7uqciePd%25252F3QA2Zf5qcqKU7Y2J&cg=a7ebaf3ce5b54f6734fb0f4294ed009b&pvid=a67ee5d13d8f413a89529988cd2e23ba&u=https%3A%2F%2Fwww.tmall.com%2F%3Fali_trackid%3D2%3Amm_26632258_3504122_55934697%3A1493629497_2k8_1496382467%26upsid%3Dbf22e523e5986f810949d8595370fe4a%26clk1%3Dbf22e523e5986f810949d8595370fe4a&psl=1&nk=&sk=&refpid=&fp=1.HazZA0IzqU1teFchy2SLpmCGpuh7iE1VugkvZ~o_K4pb5d7NBuLXn8.UTF-8.pSampnAuC2CGA2MHQGMD2EC0bBQcqQMP-EYdQfE1AwuSA.Q.1fik7mu" async=""></script><script src="https://p.tanx.com/ex?i=mm_12852562_1778064_37676870" async=""></script><script src="https://ecpm.tanx.com/ex?i=mm_12852562_1778064_37802121&cb=jsonp_callback_27225&callback=&userid=&o=&f=&n=&r=https%3A%2F%2Fs.click.taobao.com%2Ft_js%3Ftu%3Dhttps%253A%252F%252Fs.click.taobao.com%252Ft%253Fe%253Dm%25253D2%252526s%25253D3dknE%25252B5m%25252FQccQipKwQzePCperVdZeJvipRe%25252F8jaAHciLme4nz7IQD%25252BpNUr5o%25252BaVdyTS32oZobhr7%25252Bk46yyCXGms78VMtZKGC9KgIjrZ25ijv9Rbz%25252FZ%25252BcLM7ngtD9XDUvvoet87lGTGGIGrHgCgZNHKist33dC4JQxg5p7bh%25252BFbQ%25253D%2526clk1%253Dbf22e523e5986f810949d8595370fe4a%2526upsid%253Dbf22e523e5986f810949d8595370fe4a%2526sc%253DcjZ8AOx%2526ref%253Dhttp%25253A%25252F%25252Fbzclk.baidu.com%25252Fadrc.php%25253Ft%25253D06KL00c00fA10kb07PNm07OUg00kS6uu000007uM8W300000TyYpfR.THLnenrC0A3qPHmsPW0sPj9xP7qsusK15yDdmyfYP1Ddnj0snH7-uAm0IHYsnYFanW0LwjfdfWfzn1FDrH-afYPaPbfswjP7wbRsn6K95gTqFhdWpyfqnWbYrjn3nHTdPBusThqbpyfqnHm0uHdCIZwsrBtEThNbpgF-mLf8Tv-VmhD8IA7Emh7EQhPEUiqzujqW5gN8FMTqIy4GUv41uyYhp1YvPWDLrAP-ujFbuWczPH9bFM0qUydxnWmvn1czPH9xn1RsPjDzn-tdPHb1Pjm4PzuB5yq5nDC4wAuGiL7sUhssPdPmwgChT1YhuWdCIZwsFHPKFHFAFHFATz4WUA-Wpz4YmyqBmyt8mvqVFHFAmvGprD75X0KWThnqPHDvnjD%252526tpl%25253Dtpl_10144_14402_1%252526l%25253D1052403542%252526attach%25253Dlocation%2525253D%25252526linkName%2525253D%25252525E6%25252525A0%2525252587%25252525E9%25252525A2%2525252598%25252526linkText%2525253D%25252525E5%25252525A4%25252525A9%25252525E7%252525258C%25252525ABTMALL.COM%25252525E6%25252525B1%2525252587%25252525E9%252525259B%2525252586%25252525E5%2525252585%25252525A8%25252525E7%2525252590%2525252583%25252525E5%2525252593%2525252581%25252525E7%2525252589%252525258C%25252525E5%25252525AE%2525252598%25252525E6%2525252596%25252525B9%25252525E6%2525252597%2525252597%25252526xp%2525253Did%252528%2525252522m7285397a%2525252522%252529%252525252FDIV%252525255B1%252525255D%252525252FDIV%252525255B1%252525255D%252525252FDIV%252525255B1%252525255D%252525252FDIV%252525255B1%252525255D%252525252FH2%252525255B1%252525255D%252525252FA%252525255B1%252525255D%25252526linkType%2525253D%25252526checksum%2525253D133%252526ie%25253Dutf-8%252526f%25253D3%252526ch%25253D14%252526tn%25253D56060048_4_pg%252526wd%25253D%252525E5%252525A4%252525A9%252525E7%2525258C%252525AB%252526oq%25253D%25252525E6%25252525B7%25252525B1%25252525E5%25252525BA%25252525A6%25252525E7%25252525B3%25252525BB%25252525E7%25252525BB%252525259F15.4%25252525E6%2525252580%252525258E%25252525E4%25252525B9%2525252588%25252525E5%25252525AE%2525252589%25252525E8%25252525A3%2525252585%25252525E6%25252525AD%25252525A5%25252525E9%25252525AA%25252525A4%252526rqlang%25253Dcn%252526inputT%25253D4111%252526prefixsug%25253Dtioam%252526rsp%25253D0%2526et%253DJcj2MZA7uqciePd%25252F3QA2Zf5qcqKU7Y2J&cg=a2d4da02509536eddd9285f9633dac01&pvid=a67ee5d13d8f413a89529988cd2e23ba&u=https%3A%2F%2Fwww.tmall.com%2F%3Fali_trackid%3D2%3Amm_26632258_3504122_55934697%3A1493629497_2k8_1496382467%26upsid%3Dbf22e523e5986f810949d8595370fe4a%26clk1%3Dbf22e523e5986f810949d8595370fe4a&psl=1&nk=&sk=&refpid=&fp=1.HazZA0IzsD2DM-yLwK-NQBMt9bnYbQXsJojBo7VoSWogB0xtt7--d8.UTF-8.pSampnAuC2CGA2MHQGMD2EC0bBQcqQMP-EYdQfE1AwuSA.Q.11ob3ki" async=""></script><script src="https://p.tanx.com/ex?i=mm_12852562_1778064_37802121" async=""></script><script type="text/javascript" async="" src="https://g.alicdn.com/secdev/entry/index.js?t=207448"></script><script type="text/javascript" async="" src="https://g.alicdn.com/alilog/oneplus/entry.js?t=207448"></script><script type="text/javascript" async="" src="https://g.alicdn.com/pecdn/mlog/agp_heat.min.js?t=207448"></script><script charset="gbk" src="https://fragment.tmall.com/tmbase/mallbar_3_2_16?bizInfo=mallfp..pc&_ksTS=1493629529525_391&callback=__mallbarGetConf&_input_charset=UTF-8" async=""></script><script src="https://ecpm.tanx.com/ex?i=mm_12852562_1778064_37676859&cb=jsonp_callback_81787&callback=&userid=&o=&f=&n=&r=https%3A%2F%2Fs.click.taobao.com%2Ft_js%3Ftu%3Dhttps%253A%252F%252Fs.click.taobao.com%252Ft%253Fe%253Dm%25253D2%252526s%25253D3dknE%25252B5m%25252FQccQipKwQzePCperVdZeJvipRe%25252F8jaAHciLme4nz7IQD%25252BpNUr5o%25252BaVdyTS32oZobhr7%25252Bk46yyCXGms78VMtZKGC9KgIjrZ25ijv9Rbz%25252FZ%25252BcLM7ngtD9XDUvvoet87lGTGGIGrHgCgZNHKist33dC4JQxg5p7bh%25252BFbQ%25253D%2526clk1%253Dbf22e523e5986f810949d8595370fe4a%2526upsid%253Dbf22e523e5986f810949d8595370fe4a%2526sc%253DcjZ8AOx%2526ref%253Dhttp%25253A%25252F%25252Fbzclk.baidu.com%25252Fadrc.php%25253Ft%25253D06KL00c00fA10kb07PNm07OUg00kS6uu000007uM8W300000TyYpfR.THLnenrC0A3qPHmsPW0sPj9xP7qsusK15yDdmyfYP1Ddnj0snH7-uAm0IHYsnYFanW0LwjfdfWfzn1FDrH-afYPaPbfswjP7wbRsn6K95gTqFhdWpyfqnWbYrjn3nHTdPBusThqbpyfqnHm0uHdCIZwsrBtEThNbpgF-mLf8Tv-VmhD8IA7Emh7EQhPEUiqzujqW5gN8FMTqIy4GUv41uyYhp1YvPWDLrAP-ujFbuWczPH9bFM0qUydxnWmvn1czPH9xn1RsPjDzn-tdPHb1Pjm4PzuB5yq5nDC4wAuGiL7sUhssPdPmwgChT1YhuWdCIZwsFHPKFHFAFHFATz4WUA-Wpz4YmyqBmyt8mvqVFHFAmvGprD75X0KWThnqPHDvnjD%252526tpl%25253Dtpl_10144_14402_1%252526l%25253D1052403542%252526attach%25253Dlocation%2525253D%25252526linkName%2525253D%25252525E6%25252525A0%2525252587%25252525E9%25252525A2%2525252598%25252526linkText%2525253D%25252525E5%25252525A4%25252525A9%25252525E7%252525258C%25252525ABTMALL.COM%25252525E6%25252525B1%2525252587%25252525E9%252525259B%2525252586%25252525E5%2525252585%25252525A8%25252525E7%2525252590%2525252583%25252525E5%2525252593%2525252581%25252525E7%2525252589%252525258C%25252525E5%25252525AE%2525252598%25252525E6%2525252596%25252525B9%25252525E6%2525252597%2525252597%25252526xp%2525253Did%252528%2525252522m7285397a%2525252522%252529%252525252FDIV%252525255B1%252525255D%252525252FDIV%252525255B1%252525255D%252525252FDIV%252525255B1%252525255D%252525252FDIV%252525255B1%252525255D%252525252FH2%252525255B1%252525255D%252525252FA%252525255B1%252525255D%25252526linkType%2525253D%25252526checksum%2525253D133%252526ie%25253Dutf-8%252526f%25253D3%252526ch%25253D14%252526tn%25253D56060048_4_pg%252526wd%25253D%252525E5%252525A4%252525A9%252525E7%2525258C%252525AB%252526oq%25253D%25252525E6%25252525B7%25252525B1%25252525E5%25252525BA%25252525A6%25252525E7%25252525B3%25252525BB%25252525E7%25252525BB%252525259F15.4%25252525E6%2525252580%252525258E%25252525E4%25252525B9%2525252588%25252525E5%25252525AE%2525252589%25252525E8%25252525A3%2525252585%25252525E6%25252525AD%25252525A5%25252525E9%25252525AA%25252525A4%252526rqlang%25253Dcn%252526inputT%25253D4111%252526prefixsug%25253Dtioam%252526rsp%25253D0%2526et%253DJcj2MZA7uqciePd%25252F3QA2Zf5qcqKU7Y2J&cg=a7ae1ec5c81187f7c24812ae74face05&pvid=a67ee5d13d8f413a89529988cd2e23ba&u=https%3A%2F%2Fwww.tmall.com%2F%3Fali_trackid%3D2%3Amm_26632258_3504122_55934697%3A1493629497_2k8_1496382467%26upsid%3Dbf22e523e5986f810949d8595370fe4a%26clk1%3Dbf22e523e5986f810949d8595370fe4a&psl=1&nk=&sk=&refpid=&fp=1.HazZA0I2CDT2ArI2iHMEeXpJ~Z5BJk70iQCB_SOPseKPBfJXnxYgd8.UTF-8.pSampnAuC2CGA2MHQGMD2EC0bBQcqQMP-EYdQfE1AwuSA.Q.1p3e17j" async=""></script><script charset="gbk" src="https://bar.tmall.com/getMallBar.htm?sellerNickName=&bizInfo=mallfp..pc&_ksTS=1493629528746_378&callback=__mallbarGetMallBar&shopId=&v=3.2.4&bizId=mallfp&sellerId=&itemId=&_input_charset=UTF-8" async=""></script><script charset="utf8" src="https://g.alicdn.com/sd/data_sufei/1.3.6/sufei/??sufei-min.js" async=""></script><script charset="utf-8" async="" src="https://atanx.alicdn.com/t/tanxssp.js?_v=12"></script><script src="https://p.tanx.com/ex?i=mm_12852562_1778064_37676859" async=""></script><script charset="utf-8" src="https://g.alicdn.com/mui/minicart/3.0.27/??minicart.js,model.js,util.js" async=""></script><script charset="utf-8" src="https://g.alicdn.com/kissy/k/1.4.16/??swf-min.js,xtemplate-min.js,xtemplate/compiler-min.js,overlay-min.js" async=""></script><script charset="utf-8" src="https://g.alicdn.com/mui/??mallbar/3.2.24/index.js,mallbar/3.2.24/conf.js,mallbar/3.2.24/util.js,minilogin/3.1.2/index.js,overlay/3.0.10/dialog.js,mallbar/3.2.24/model.js,mallbar/3.2.24/store.js,storage/3.0.5/index.js,storage/3.0.5/conf.js,storage/3.0.5/util.js,storage/3.0.5/xd.js,storage/3.0.5/name.js,mallbar/3.2.24/mallbar-item.js,mallbar/3.2.24/mallbar-guide.js,mallbar/3.2.24/plugin-prof.js,mallbar/3.2.24/plugin-asset.js,mallbar/3.2.24/plugin-brand.js,mallbar/3.2.24/plugin-live.js,mallbar/3.2.24/plugin-foot.js,mallbar/3.2.24/plugin-top.js,mallbar/3.2.24/plugin-ue.js,mallbar/3.2.24/plugin-qrcode.js,mallbar/3.2.24/plugin-favor.js,mallbar/3.2.24/plugin-charge.js,mallbar/3.2.24/plugin-cart.js,mallbar/3.2.24/plugin-nav.js,mallbar/3.2.24/plugin-worth.js" async=""></script><script charset="utf-8" src="https://g.alicdn.com/mui/brandbar/3.0.6/??brandbar.js" async=""></script><script charset="utf-8" src="https://pages.tmall.com/wow/list/act/search-act?_ksTS=1493629524541_326&callback=Jsonp_fixed_searchbar_act" async=""></script><script charset="utf-8" src="https://fragment.tmall.com/tmbase/global_footer_ensure?wh_callback=true&_ksTS=1493629524480_313&callback=global_footer_ensure" async=""></script><script charset="utf-8" src="https://fragment.tmall.com/tmbase/mui_footer_desc?wh_callback=true&_ksTS=1493629524477_300&callback=mui_footer_desc" async=""></script><script charset="utf-8" src="https://fragment.tmall.com/tmbase/mui_footer_link?wh_callback=true&_ksTS=1493629524471_287&callback=mui_footer_link" async=""></script><script charset="utf-8" src="https://g.alicdn.com/mui/category-menu/3.0.4/??index.js,count-down.js,triangle.js" async=""></script><script charset="utf-8" src="https://g.alicdn.com/zebra-pages/fp5/5.1.76/??pc/js/mods/channel.js,pc/js/js-xtpl/channel-render.js,pc/js/js-xtpl/channel.js,pc/js/mods/new-hot-brand.js,pc/js/js-xtpl/new-hot-brand-render.js,pc/js/js-xtpl/new-hot-brand.js,pc/js/js-xtpl/new-hot-brand-item-render.js,pc/js/js-xtpl/new-hot-brand-item.js,pc/js/mods/video-in-hotbrand.js,pc/js/js-xtpl/live-video-content-render.js,pc/js/js-xtpl/live-video-content.js,pc/js/js-xtpl/live-big-video-cover-render.js,pc/js/js-xtpl/live-big-video-cover.js,pc/js/mods/fix-search.js,pc/js/mods/header.js" async=""></script><script charset="utf-8" src="https://g.alicdn.com/zebra-pages/fp5/5.1.76/??pc/js/mods/tools/fp_lazy_module.js,pc/js/mods/v2_wonderful.js,pc/js/js-xtpl/wonderful-item-render.js,pc/js/js-xtpl/wonderful-item.js,pc/js/js-xtpl/v2_shop_item.js" async=""></script><script charset="utf-8" src="https://g.alicdn.com/mui/view-port-listen/3.0.1/??index.js" async=""></script><script charset="utf-8" src="https://g.alicdn.com/kissy/k/1.4.16/??combobox-min.js,component/control-min.js,component/manager-min.js,xtemplate/runtime-min.js,menu-min.js,component/container-min.js,component/extension/delegate-children-min.js,component/extension/content-render-min.js,component/extension/content-xtpl-min.js,component/extension/align-min.js,component/extension/shim-min.js" async=""></script><script charset="utf-8" src="https://g.alicdn.com/mui/searchbar/3.3.29/??instance/default.js,base.js,plugin/spm.js,plugin/placeholder.js,plugin/hubaccess.js,template/act.js,template/shipShop.js,template/cat.js,template/list.js,template/shop.js,template/quickSearch.js,template/meetingPlace.js" async=""></script><script charset="utf-8" src="https://g.alicdn.com/zebra-pages/fp5/5.1.76/??pc/js/mods/category.js,pc/js/mods/datalazy.js,pc/js/js-xtpl/sub-pannel-render.js,pc/js/js-xtpl/sub-pannel.js,pc/js/mods/floor.js,pc/js/js-xtpl/floor-con-render.js,pc/js/js-xtpl/floor-con.js,pc/js/js-xtpl/lift-render.js,pc/js/js-xtpl/lift.js,pc/js/js-xtpl/floor-render.js,pc/js/js-xtpl/floor.js,pc/js/mods/lift.js,pc/js/mods/area.js,pc/js/js-xtpl/area-render.js,pc/js/js-xtpl/area.js,pc/js/mods/activity.js,pc/js/js-xtpl/activity-render.js,pc/js/js-xtpl/activity.js" async=""></script><script charset="utf-8" src="https://suggest.taobao.com/sug?area=tmall-hq&code=utf-8&actId&type&src=mallfp..pc&_ksTS=1493629522827_25&callback=jsonp26" async=""></script><script charset="utf-8" src="https://g.alicdn.com/kissy/k/1.4.16/??base-min.js,attribute-min.js" async=""></script><script src="https://top-tmm.taobao.com/login_api.do?0.2527657366895544" async=""></script><script charset="utf-8" src="https://g.alicdn.com/kissy/k/1.4.16/??node-min.js" async=""></script><script charset="utf-8" src="https://g.alicdn.com/mui/slider/3.0.7/??index.js,base.js,slide-util.js,kissy2yui.js" async=""></script><script type="text/javascript" async="" src="https://g.alicdn.com/alilog/s/7.3.4/aplus_std.js"></script><script charset="utf-8" src="https://g.alicdn.com/kissy/k/1.4.16/??anim-min.js,anim/base-min.js,promise-min.js,anim/timer-min.js,anim/transition-min.js,io-min.js" async=""></script><script charset="utf-8" src="https://g.alicdn.com/kissy/k/1.4.16/??dom/base-min.js,event-min.js,event/dom/base-min.js,event/base-min.js,event/dom/touch-min.js,event/dom/shake-min.js,event/dom/focusin-min.js,event/custom-min.js,cookie-min.js" async=""></script>
<meta name="renderer" content="webkit">
<meta http-equiv="X-UA-Compatible" content="IE=Edge">
<link rel="dns-prefetch" href="https://g.alicdn.com/">
<link rel="dns-prefetch" href="https://img.alicdn.com/">
<link rel="dns-prefetch" href="https://gm.mmstat.com/">
<link rel="dns-prefetch" href="https://ald.taobao.com/">
<link rel="dns-prefetch" href="https://bar.tmall.com/">
<link href="https://g.alicdn.com/mui/global/1.2.35/file/favicon.ico" rel="shortcut icon" type="image/x-icon">
<link title="天猫Tmall.com" href="https://g.alicdn.com/mui/global/1.2.35/file/search.xml" type="application/opensearchdescription+xml" rel="search">
<meta name="spm-id" content="875.7931836/B">
<title>天猫tmall.com--上天猫,就够了</title>
<script>
window.g_config = {
devId: 'pc',
headerVersion: '1.4.0',
loadModulesLater: true,
bizId: 'mallfp',
sl: 'node'
};
</script>
<!--<base target="_blank">--><base href="." target="_blank">
<link rel="stylesheet" href="https://g.alicdn.com/??mui/global/3.0.24/global.css,zebra-pages/fp5/5.1.76/pc/css/index.css">
<script src="https://g.alicdn.com/??kissy/k/1.4.16/seed-min.js,mui/global/3.0.24/global-pc.js,mui/global/3.0.24/global.js,mui/globalmodule/3.0.69/seed.js,mui/btscfg-g/3.0.0/index.js,mui/bucket/3.0.4/index.js,mui/globalmodule/3.0.69/global-mod-pc.js,mui/globalmodule/3.0.69/global-mod.js,mui/kissy-polyfill/4.0.15/index.js,mui/babel-polyfill/6.2.4/index.js,mui/fetch/4.1.11/fetch.js,mui/fetch/4.1.11/tool.js,mui/fetch/4.1.11/jsonp.js,mui/jquery/4.0.1/jquery.js,zebra-pages/fp5/5.1.76/pc/js/mods/storage.js,zebra-pages/fp5/5.1.76/pc/js/mods/model.js,zebra-pages/fp5/5.1.76/pc/js/mods/webp.js,zebra-pages/fp5/5.1.76/pc/js/mods/util.js,zebra-pages/fp5/5.1.76/pc/js/mods/top.js,zebra-pages/fp5/5.1.76/pc/js/js-xtpl/top-marquee.js,zebra-pages/fp5/5.1.76/pc/js/mods/x-runtime.js,zebra-pages/fp5/5.1.76/pc/js/js-xtpl/top-marquee-render.js,zebra-pages/fp5/5.1.76/pc/js/mods/top-marquee.js,zebra-pages/fp5/5.1.76/pc/js/js-xtpl/main-banner.js,zebra-pages/fp5/5.1.76/pc/js/js-xtpl/main-banner-render.js,mui/zepto/4.0.7/zepto.js,mui/crossimage/4.0.10/index.js,mui/zepto/4.0.7/event.js,mui/datalazyload/4.0.17/index.js,zebra-pages/fp5/5.1.76/pc/js/mods/exposure.js,zebra-pages/fp5/5.1.76/pc/js/js-xtpl/vip.js,zebra-pages/fp5/5.1.76/pc/js/js-xtpl/vip-render.js,zebra-pages/fp5/5.1.76/pc/js/mods/vip.js,zebra-pages/fp5/5.1.76/pc/js/mods/main-banner.js,zebra-pages/fp5/5.1.76/pc/js/js-xtpl/vvip.js,zebra-pages/fp5/5.1.76/pc/js/js-xtpl/vvip-render.js,zebra-pages/fp5/5.1.76/pc/js/mods/vvip.js,zebra-pages/fp5/5.1.76/pc/js/index.js"></script><style type="text/css" adt="123"></style>
<script>KISSY.add("mui/global/global.css",function(){});KISSY.add("zebra-pages/fp5/pc/css/index.css",function(){});KISSY.config({"packages":{"kissy":{"base":"//g.alicdn.com/kissy/k/1.4.16/","version":"1.4.16","name":"kissy"},"mui/babel-polyfill":{"debug":true,"group":"tm","ignorePackageNameInUri":true,"path":"//g.alicdn.com/mui/babel-polyfill/6.2.4/","version":"6.2.4","name":"mui/babel-polyfill","base":"//g.alicdn.com/mui/babel-polyfill/6.2.4/"},"mui/category-menu":{"debug":true,"group":"tm","ignorePackageNameInUri":true,"path":"//g.alicdn.com/mui/category-menu/3.0.4/","version":"3.0.4"},"mui/countdown":{"debug":true,"group":"mui","ignorePackageNameInUri":true,"path":"//g.alicdn.com/mui/countdown/3.0.4/","version":"3.0.4"},"mui/crossimage":{"debug":true,"group":"tm","ignorePackageNameInUri":true,"path":"//g.alicdn.com/mui/crossimage/4.0.10/","version":"4.0.10","name":"mui/crossimage","base":"//g.alicdn.com/mui/crossimage/4.0.10/"},"mui/datalazyload":{"debug":true,"ignorePackageNameInUri":true,"path":"//g.alicdn.com/mui/datalazyload/4.0.17/","version":"4.0.17","name":"mui/datalazyload","base":"//g.alicdn.com/mui/datalazyload/4.0.17/"},"mui/feloader":{"debug":true,"group":"tm","ignorePackageNameInUri":true,"path":"//g.alicdn.com/mui/feloader/4.0.30/","version":"4.0.30"},"mui/fetch":{"debug":true,"group":"tm","ignorePackageNameInUri":true,"path":"//g.alicdn.com/mui/fetch/4.1.11/","version":"4.1.11","name":"mui/fetch","base":"//g.alicdn.com/mui/fetch/4.1.11/"},"mui/jquery":{"debug":true,"group":"tm","ignorePackageNameInUri":true,"path":"//g.alicdn.com/mui/jquery/4.0.1/","version":"4.0.1","name":"mui/jquery","base":"//g.alicdn.com/mui/jquery/4.0.1/"},"mui/kissy-polyfill":{"debug":true,"group":"tm","ignorePackageNameInUri":true,"path":"//g.alicdn.com/mui/kissy-polyfill/4.0.15/","version":"4.0.15","name":"mui/kissy-polyfill","base":"//g.alicdn.com/mui/kissy-polyfill/4.0.15/"},"mui/slider":{"debug":true,"ignorePackageNameInUri":true,"path":"//g.alicdn.com/mui/slider/3.0.7/","version":"3.0.7"},"mui/zebra-superfans-tmallfp":{"debug":true,"group":"tm","ignorePackageNameInUri":true,"path":"//g.alicdn.com/mui/zebra-superfans-tmallfp/4.0.8/","version":"4.0.8"},"mui/zepto":{"debug":true,"group":"tm","ignorePackageNameInUri":true,"path":"//g.alicdn.com/mui/zepto/4.0.7/","version":"4.0.7","name":"mui/zepto","base":"//g.alicdn.com/mui/zepto/4.0.7/"},"zebra-pages/fp5":{"debug":true,"group":"tm","ignorePackageNameInUri":true,"path":"//g.alicdn.com/zebra-pages/fp5/5.1.76/","version":"5.1.76","name":"zebra-pages/fp5","base":"//g.alicdn.com/zebra-pages/fp5/5.1.76/"},"mui/seed-g":{"debug":true,"ignorePackageNameInUri":true,"version":"1.0.80","path":"//g.alicdn.com/mui/seed-g/1.0.80/"},"mui/global":{"debug":true,"ignorePackageNameInUri":true,"version":"3.0.24","path":"//g.alicdn.com/mui/global/3.0.24/","name":"mui/global","base":"//g.alicdn.com/mui/global/3.0.24/"},"mui/globalmodule":{"debug":true,"ignorePackageNameInUri":true,"version":"3.0.68","path":"//g.alicdn.com/mui/globalmodule/3.0.69/","name":"mui/globalmodule","base":"//g.alicdn.com/mui/globalmodule/3.0.69/"},"mui/bucket":{"debug":true,"ignorePackageNameInUri":true,"version":"3.0.4","path":"//g.alicdn.com/mui/bucket/3.0.4/","name":"mui/bucket","base":"//g.alicdn.com/mui/bucket/3.0.4/"},"mui/btscfg-g":{"debug":true,"ignorePackageNameInUri":true,"version":"3.0.0","path":"//g.alicdn.com/mui/btscfg-g/3.0.0/","name":"mui/btscfg-g","base":"//g.alicdn.com/mui/btscfg-g/3.0.0/"},"mui/kissy":{"debug":true,"ignorePackageNameInUri":true,"version":"4.0.5","path":"//g.alicdn.com/mui/kissy/4.0.5/"}},"modules":{"mui/category-menu/count-down":{"requires":["event"]},"mui/category-menu/index":{"requires":["event","node","mui/category-menu/count-down","mui/category-menu/triangle"]},"mui/category-menu/triangle":{"requires":["node"]},"mui/countdown/index":{"requires":["dom","event"]},"mui/crossimage/index":{"requires":["mui/zepto/zepto"]},"mui/datalazyload/index":{"requires":["mui/zepto/zepto","mui/zepto/event"]},"mui/fetch/fetch":{"requires":["mui/babel-polyfill/index"]},"mui/fetch/iframePostForm":{"requires":["mui/zepto/zepto"]},"mui/fetch/jsonp":{"requires":["mui/fetch/fetch","mui/fetch/tool"]},"mui/slider/base":{"requires":["node","json","event","anim","ua","mui/slider/slide-util","mui/slider/kissy2yui"]},"mui/slider/index":{"requires":["mui/slider/base"]},"mui/slider/kissy2yui":{"requires":["node","event"]},"mui/slider/slide-util":{"requires":["node","json","event"]},"mui/zebra-superfans-tmallfp/index":{"requires":["mui/kissy-polyfill/index","mui/zepto/zepto"]},"mui/zebra-superfans-tmallfp/index-pc":{"requires":["mui/kissy-polyfill/index","mui/zepto/zepto"]},"mui/zepto/event":{"requires":["mui/zepto/zepto"]},"mui/zepto/form":{"requires":["mui/zepto/zepto"]},"mui/zepto/fx":{"requires":["mui/zepto/zepto"]},"mui/zepto/fx_methods":{"requires":["mui/zepto/zepto","mui/zepto/fx"]},"mui/zepto/gesture":{"requires":["mui/zepto/zepto"]},"mui/zepto/ie":{"requires":["mui/zepto/zepto"]},"mui/zepto/selector":{"requires":["mui/zepto/zepto"]},"mui/zepto/stack":{"requires":["mui/zepto/zepto"]},"mui/zepto/touch":{"requires":["mui/zepto/zepto","mui/zepto/event"]},"zebra-pages/fp/pc/js/mods/category-tab":{"requires":["node","ua","event","mui/slider/","zebra-pages/fp/pc/js/mods/util"]},"zebra-pages/fp/pc/js/mods/img-load":{"requires":["dom","event"]},"zebra-pages/fp/pc/js/mods/sea-room":{"requires":["dom","node","ua","zebra-pages/fp/pc/js/mods/model","zebra-pages/fp/pc/js/js-xtpl/sea-room-item-render","zebra-pages/fp/pc/js/mods/img-load","zebra-pages/fp/pc/js/mods/bottom-loader","zebra-pages/fp/pc/js/mods/util","zebra-pages/fp/pc/js/mods/exposure"]},"zebra-pages/fp5/pc/js/index":{"requires":["mui/jquery/jquery","zebra-pages/fp5/pc/js/mods/model","zebra-pages/fp5/pc/js/mods/util","mui/fetch/jsonp","mui/fetch/tool","zebra-pages/fp5/pc/js/mods/top","zebra-pages/fp5/pc/js/mods/top-marquee","zebra-pages/fp5/pc/js/mods/main-banner","zebra-pages/fp5/pc/js/mods/vvip"]},"zebra-pages/fp5/pc/js/js-xtpl/activity-render":{"requires":["./activity","zebra-pages/fp5/pc/js/mods/x-runtime"]},"zebra-pages/fp5/pc/js/js-xtpl/area-render":{"requires":["./area","zebra-pages/fp5/pc/js/mods/x-runtime"]},"zebra-pages/fp5/pc/js/js-xtpl/brand-render":{"requires":["./brand","zebra-pages/fp5/pc/js/mods/x-runtime"]},"zebra-pages/fp5/pc/js/js-xtpl/channel-render":{"requires":["./channel","zebra-pages/fp5/pc/js/mods/x-runtime"]},"zebra-pages/fp5/pc/js/js-xtpl/countdown-render":{"requires":["./countdown","zebra-pages/fp5/pc/js/mods/x-runtime"]},"zebra-pages/fp5/pc/js/js-xtpl/floor-con-render":{"requires":["./floor-con","zebra-pages/fp5/pc/js/mods/x-runtime"]},"zebra-pages/fp5/pc/js/js-xtpl/floor-render":{"requires":["./floor","zebra-pages/fp5/pc/js/mods/x-runtime"]},"zebra-pages/fp5/pc/js/js-xtpl/hot-brand-render":{"requires":["./hot-brand","zebra-pages/fp5/pc/js/mods/x-runtime"]},"zebra-pages/fp5/pc/js/js-xtpl/lift-render":{"requires":["./lift","zebra-pages/fp5/pc/js/mods/x-runtime"]},"zebra-pages/fp5/pc/js/js-xtpl/live-big-video-cover-render":{"requires":["./live-big-video-cover","zebra-pages/fp5/pc/js/mods/x-runtime"]},"zebra-pages/fp5/pc/js/js-xtpl/live-video-content-render":{"requires":["./live-video-content","zebra-pages/fp5/pc/js/mods/x-runtime"]},"zebra-pages/fp5/pc/js/js-xtpl/main-banner-render":{"requires":["./main-banner","zebra-pages/fp5/pc/js/mods/x-runtime"]},"zebra-pages/fp5/pc/js/js-xtpl/market-line-render":{"requires":["./market-line","zebra-pages/fp5/pc/js/mods/x-runtime"]},"zebra-pages/fp5/pc/js/js-xtpl/market-render":{"requires":["./market","zebra-pages/fp5/pc/js/mods/x-runtime"]},"zebra-pages/fp5/pc/js/js-xtpl/meeting-render":{"requires":["./meeting","zebra-pages/fp5/pc/js/mods/x-runtime"]},"zebra-pages/fp5/pc/js/js-xtpl/new-hot-brand-item-render":{"requires":["./new-hot-brand-item","zebra-pages/fp5/pc/js/mods/x-runtime"]},"zebra-pages/fp5/pc/js/js-xtpl/new-hot-brand-render":{"requires":["./new-hot-brand","zebra-pages/fp5/pc/js/mods/x-runtime"]},"zebra-pages/fp5/pc/js/js-xtpl/sea-room-item-render":{"requires":["./sea-room-item","zebra-pages/fp5/pc/js/mods/x-runtime"]},"zebra-pages/fp5/pc/js/js-xtpl/shop-render":{"requires":["./shop","zebra-pages/fp5/pc/js/mods/x-runtime"]},"zebra-pages/fp5/pc/js/js-xtpl/sub-pannel-render":{"requires":["./sub-pannel","zebra-pages/fp5/pc/js/mods/x-runtime"]},"zebra-pages/fp5/pc/js/js-xtpl/top-marquee-render":{"requires":["./top-marquee","zebra-pages/fp5/pc/js/mods/x-runtime"]},"zebra-pages/fp5/pc/js/js-xtpl/v2_shop_item-render":{"requires":["./v2_shop_item","zebra-pages/fp5/pc/js/mods/x-runtime"]},"zebra-pages/fp5/pc/js/js-xtpl/vip-render":{"requires":["./vip","zebra-pages/fp5/pc/js/mods/x-runtime"]},"zebra-pages/fp5/pc/js/js-xtpl/vvip-render":{"requires":["./vvip","zebra-pages/fp5/pc/js/mods/x-runtime"]},"zebra-pages/fp5/pc/js/js-xtpl/wonderful-item":{"requires":["./v2_shop_item"]},"zebra-pages/fp5/pc/js/js-xtpl/wonderful-item-render":{"requires":["./wonderful-item","zebra-pages/fp5/pc/js/mods/x-runtime"]},"zebra-pages/fp5/pc/js/mods/activity":{"requires":["mui/jquery/jquery","zebra-pages/fp5/pc/js/js-xtpl/activity-render","zebra-pages/fp5/pc/js/mods/model","./exposure"]},"zebra-pages/fp5/pc/js/mods/area":{"requires":["zebra-pages/fp5/pc/js/js-xtpl/area-render","mui/jquery/jquery","zebra-pages/fp5/pc/js/mods/util","zebra-pages/fp5/pc/js/mods/exposure"]},"zebra-pages/fp5/pc/js/mods/bottom-loader":{"requires":["mui/jquery/jquery","zebra-pages/fp5/pc/js/mods/util"]},"zebra-pages/fp5/pc/js/mods/brand":{"requires":["mui/jquery/jquery","zebra-pages/fp5/pc/js/js-xtpl/brand-render","zebra-pages/fp5/pc/js/mods/util","zebra-pages/fp5/pc/js/mods/model"]},"zebra-pages/fp5/pc/js/mods/category":{"requires":["mui/jquery/jquery","zebra-pages/fp5/pc/js/mods/util","zebra-pages/fp5/pc/js/mods/model","zebra-pages/fp5/pc/js/mods/datalazy","zebra-pages/fp5/pc/js/js-xtpl/sub-pannel-render"]},"zebra-pages/fp5/pc/js/mods/channel":{"requires":["zebra-pages/fp5/pc/js/js-xtpl/channel-render","zebra-pages/fp5/pc/js/mods/util","mui/jquery/jquery"]},"zebra-pages/fp5/pc/js/mods/datalazy":{"requires":["mui/jquery/jquery","mui/datalazyload/index","zebra-pages/fp5/pc/js/mods/model","mui/crossimage/index"]},"zebra-pages/fp5/pc/js/mods/exposure":{"requires":["mui/jquery/jquery","zebra-pages/fp5/pc/js/mods/util","mui/datalazyload/index"]},"zebra-pages/fp5/pc/js/mods/fix-search":{"requires":["mui/jquery/jquery","zebra-pages/fp5/pc/js/mods/util"]},"zebra-pages/fp5/pc/js/mods/floor":{"requires":["zebra-pages/fp5/pc/js/js-xtpl/floor-con-render","zebra-pages/fp5/pc/js/js-xtpl/lift-render","zebra-pages/fp5/pc/js/js-xtpl/floor-render","mui/jquery/jquery","zebra-pages/fp5/pc/js/mods/util","zebra-pages/fp5/pc/js/mods/exposure","zebra-pages/fp5/pc/js/mods/model","zebra-pages/fp5/pc/js/mods/datalazy","zebra-pages/fp5/pc/js/mods/lift"]},"zebra-pages/fp5/pc/js/mods/header":{"requires":["zebra-pages/fp5/pc/js/mods/util","zebra-pages/fp5/pc/js/mods/model"]},"zebra-pages/fp5/pc/js/mods/hot-brand":{"requires":["mui/jquery/jquery","zebra-pages/fp5/pc/js/js-xtpl/hot-brand-render","zebra-pages/fp5/pc/js/mods/util"]},"zebra-pages/fp5/pc/js/mods/lift":{"requires":["mui/jquery/jquery","mui/babel-polyfill/index","zebra-pages/fp5/pc/js/mods/util"]},"zebra-pages/fp5/pc/js/mods/main-banner":{"requires":["mui/jquery/jquery","zebra-pages/fp5/pc/js/js-xtpl/main-banner-render","mui/crossimage/index","zebra-pages/fp5/pc/js/mods/util","zebra-pages/fp5/pc/js/mods/exposure","zebra-pages/fp5/pc/js/mods/model","zebra-pages/fp5/pc/js/mods/vip"]},"zebra-pages/fp5/pc/js/mods/model":{"requires":["mui/jquery/jquery","mui/fetch/jsonp","mui/fetch/tool","zebra-pages/fp5/pc/js/mods/storage"]},"zebra-pages/fp5/pc/js/mods/new-hot-brand":{"requires":["zebra-pages/fp5/pc/js/js-xtpl/new-hot-brand-render","zebra-pages/fp5/pc/js/js-xtpl/new-hot-brand-item-render","mui/jquery/jquery","zebra-pages/fp5/pc/js/mods/util","zebra-pages/fp5/pc/js/mods/model","zebra-pages/fp5/pc/js/mods/exposure","mui/crossimage/index"]},"zebra-pages/fp5/pc/js/mods/new-market":{"requires":["mui/jquery/jquery","zebra-pages/fp5/pc/js/js-xtpl/market-render","zebra-pages/fp5/pc/js/js-xtpl/market-line-render","zebra-pages/fp5/pc/js/mods/util","zebra-pages/fp5/pc/js/mods/model","zebra-pages/fp5/pc/js/mods/bottom-loader","zebra-pages/fp5/pc/js/mods/datalazy","zebra-pages/fp5/pc/js/mods/exposure"]},"zebra-pages/fp5/pc/js/mods/shop":{"requires":["mui/jquery/jquery","zebra-pages/fp5/pc/js/mods/util","zebra-pages/fp5/pc/js/mods/model","zebra-pages/fp5/pc/js/mods/exposure","zebra-pages/fp5/pc/js/js-xtpl/shop-render"]},"zebra-pages/fp5/pc/js/mods/tools/fp_lazy_module":{"requires":["zebra-pages/fp5/pc/js/mods/model","zebra-pages/fp5/pc/js/mods/util"]},"zebra-pages/fp5/pc/js/mods/top":{"requires":["mui/jquery/jquery"]},"zebra-pages/fp5/pc/js/mods/top-marquee":{"requires":["mui/jquery/jquery","zebra-pages/fp5/pc/js/js-xtpl/top-marquee-render","zebra-pages/fp5/pc/js/mods/util","zebra-pages/fp5/pc/js/mods/model"]},"zebra-pages/fp5/pc/js/mods/util":{"requires":["zebra-pages/fp5/pc/js/mods/webp","mui/jquery/jquery"]},"zebra-pages/fp5/pc/js/mods/v2_wonderful":{"requires":["mui/jquery/jquery","zebra-pages/fp5/pc/js/mods/util","zebra-pages/fp5/pc/js/mods/exposure","zebra-pages/fp5/pc/js/js-xtpl/wonderful-item-render"]},"zebra-pages/fp5/pc/js/mods/video-in-hotbrand":{"requires":["mui/jquery/jquery","zebra-pages/fp5/pc/js/mods/util","zebra-pages/fp5/pc/js/mods/model","zebra-pages/fp5/pc/js/mods/exposure","mui/crossimage/index","zebra-pages/fp5/pc/js/js-xtpl/live-video-content-render","zebra-pages/fp5/pc/js/js-xtpl/live-big-video-cover-render"]},"zebra-pages/fp5/pc/js/mods/vip":{"requires":["mui/jquery/jquery","zebra-pages/fp5/pc/js/mods/model","zebra-pages/fp5/pc/js/mods/util","zebra-pages/fp5/pc/js/js-xtpl/vip-render"]},"zebra-pages/fp5/pc/js/mods/vvip":{"requires":["mui/jquery/jquery","zebra-pages/fp5/pc/js/mods/model","mui/fetch/tool","zebra-pages/fp5/pc/js/mods/util","zebra-pages/fp5/pc/js/mods/storage","zebra-pages/fp5/pc/js/js-xtpl/vvip-render"]},"zebra-pages/fp5/pc/js/mods/wonderful":{"requires":["mui/jquery/jquery","zebra-pages/fp5/pc/js/js-xtpl/wonderful-item-render","zebra-pages/fp5/pc/js/mods/util","zebra-pages/fp5/pc/js/mods/model","zebra-pages/fp5/pc/js/mods/bottom-loader","zebra-pages/fp5/pc/js/mods/datalazy","zebra-pages/fp5/pc/js/mods/exposure"]}},"combine":true})</script>
<script src="https://g.alicdn.com/secdev/pointman/js/index.js" app="tmall"></script>
<meta name="format-detection" content="telephone=no">
<meta name="format-detection" content="date=no">
<meta name="format-detection" content="address=no">
<script>
window.g_config = window.g_config || {};
window.g_config.ueUrl = '//feedback.taobao.com/pc/feedbacks?productId=345&source=tmallfp4.0';
window.g_config.clientTime = +new Date();
window.g_config.serverTime = 1493629473099;
window.g_fpConfig = window.g_fpConfig || {}
window.g_fpConfig.bigBannerAmount = 4;
</script>
<script>
window.tmallfp_abtest = "B";
</script>
<!--[if IE 8]>
<style>
.wonderful-con .card-item .item-pic img {
left: 0!important;
top: 0!important;
}
.channel-con .channel-column .img-con img {
left: 0!important;
top: 0!important;
}
.main-nav a .hover-pic {
display:none;
}
.main-nav a:hover {
background-color: #9A1B1B;
}
.banner-con a.small-banner0,a.small-banner1{
background-color:#fff;
}
</style>
<![endif]-->
<link charset="utf-8" href="https://g.alicdn.com/mui/pc-openshow/3.0.40/??index.css" rel="stylesheet"><script>!
function e(t, n, i) {
function o(a, s) {
if (!n[a]) {
if (!t[a]) {
var l = "function" == typeof require && require;
if (!s && l) return l(a, !0);
if (r) return r(a, !0);
var c = new Error("Cannot find module '" + a + "'");
throw c.code = "MODULE_NOT_FOUND",
c
}
var d = n[a] = {
exports: {}
};
t[a][0].call(d.exports, function (e) {
var n = t[a][1][e];
return o(n ? n : e)
}, d, d.exports, e, t, n, i)
}
return n[a].exports
}
for (var r = "function" == typeof require && require, a = 0; a < i.length; a++) o(i[a]);
return o
}({
1: [function (e) {
var t = window.location.href,
n = document.createElement("div"),
i = document.createElement("i");
if (i.setAttribute("id", "ADT-PlayHTML5-btn"), i.innerText = "HTML5\u89c6\u9891", i.setAttribute("style", "display:inline-block;font-size: 20px;padding:5px 10px;font-weight: 700;line-height:34px;color: #fff;text-align: center;vertical-align: baseline;border-radius:10px;background-color: #428bca;cursor: pointer;font-style: normal;"), n.setAttribute("style", "float:right;margin-top:-50px;width:300px;height:50px;padding-top:8px;"), n.appendChild(i), /v\.youku\.com\/v_show\/.*/.test(t)) document.querySelector(".s_main div.base").appendChild(n);
else if (/www\.tudou\.com\/(albumplay|programs)\/.*/.test(t)) document.querySelector("#summary").appendChild(n);
else if (/www\.mgtv\.com\/v\/.*/.test(t)) {
var i = document.createElement("i"),
o = document.createElement("div"),
r = document.createElement("em");
i.setAttribute("style", "display:inline-block;margin:auto 20px;cursor:pointer;"),
i.innerText = "HTML5\u89c6\u9891",
r.innerText = "|",
r.setAttribute("class", "v-panel-dividing"),
o.setAttribute("style", "margin-right: 10px;height: 28px;overflow: hidden;position: relative;top: -1px;float: left;"),
o.appendChild(r),
o.appendChild(i),
document.querySelector("div.v-panel-box").appendChild(o)
}
i.addEventListener("click", function () {
function t(e, t) {
if (!e) return console.log("\u89e3\u6790\u5185\u5bb9\u5730\u5740\u5931\u8d25"),
void delete window[s];
console.log("\u89e3\u6790\u5185\u5bb9\u5730\u5740\u5b8c\u6210" + e.map(function (e) {
return '<a href="' + e[1] + '" target="_blank">' + e[0] + "</a>"
}).join(" "));
var n = o("div", {
appendTo: document.body,
style: {
position: "fixed",
background: "rgba(0,0,0,0.8)",
top: "0",
left: "0",
width: "100%",
height: "100%",
zIndex: "999999"
}
});
o("div", {
appendTo: n,
style: {
width: "1120px",
height: "630px",
position: "absolute",
top: "40%",
left: "50%",
marginTop: "-250px",
marginLeft: "-560px",
borderRadius: "2px",
boxShadow: "0 0 2px #000000, 0 0 200px #000000"
}
}),
o("div", {
appendTo: n,
style: {
position: "absolute",
bottom: "10px",
left: "0",
right: "0",
height: "20px",
lineHeight: "20px",
textAlign: "center",
fontSize: "12px",
fontFamily: "arial, sans-serif"
}
});
var a = o("div", {
appendTo: n,
innerHTML: '<div id="html5_Player_placeHolder"></div>',
style: {
width: "1120px",
height: "630px",
position: "absolute",
backgroundColor: "#000000",
top: "40%",
left: "50%",
marginTop: "-250px",
marginLeft: "-560px",
borderRadius: "2px",
overflow: "hidden"
}
});
o("div", {
appendTo: a,
innerHTML: "×",
style: {
width: "20px",
height: "20px",
lineHeight: "20px",
textAlign: "center",
position: "absolute",
color: "#ffffff",
fontSize: "20px",
top: "5px",
right: "5px",
textShadow: "0 0 2px #000000",
fontWeight: "bold",
fontFamily: 'Garamond, "Apple Garamond"',
cursor: "pointer"
}
}).onclick = function () {
document.body.removeChild(n),
l.video.src = "about:blank",
delete window[s]
};
var l = new r("html5_Player_placeHolder", "1120x630", e, t);
l.iframe.contentWindow.focus(),
i(),
l.iframe.style.display = "block",
window[s] = !0
}
var n, i = e("./flashBlocker"),
o = e("./createElement"),
r = e("./player"),
a = e("./purl"),
s = e("./h5key"),
l = e("./seekers");
if (1 != window[s]) {
var c = a(location.href);
"zythum.sinaapp.com" === c.attr("host") && "/mama2/ps4/" === c.attr("directory") && c.param("url") && (c = a(c.param("url"))),
l.forEach(function (e) {
n !== !0 && !! e.match(c) == !0 && (console.log("\u5f00\u59cb\u89e3\u6790\u5185\u5bb9\u5730\u5740"), n = !0, e.getVideos(c, t))
}),
void 0 === n && console.log("\u627e\u4e0d\u5230\u89e3\u6790")
}
})
},
{
"./createElement": 4,
"./flashBlocker": 5,
"./h5key": 6,
"./player": 9,
"./purl": 10,
"./seekers": 15
}],
2: [function (e, t) {
function n(e, t) {
return void 0 === e ? t : e
}
function i(e, t) {
return 0 === t.length ? e : e + (-1 === e.indexOf("?") ? "?" : "&") + t
}
function o(e) {
var t = n(e.url, ""),
o = s(n(e.param, {})),
l = n(e.method, "GET"),
c = n(e.callback, a),
d = n(e.contentType, "json"),
u = n(e.context, null);
if (e.jsonp) return r(i(t, o), c.bind(u), "string" == typeof e.jsonp ? e.jsonp : void 0);
var h = new XMLHttpRequest;
"get" === l.toLowerCase() && (t = i(t, o), o = ""),
h.open(l, t, !0),
h.setRequestHeader("Content-Type", "application/x-www-form-urlencoded; charset=UTF-8"),
h.send(o),
h.onreadystatechange = function () {
if (4 === h.readyState) {
if (200 === h.status) {
var e = h.responseText;
if ("json" === d.toLowerCase()) try {
e = JSON.parse(e)
} catch (t) {
e = -1
}
return c.call(u, e)
}
return c.call(u, -1)
}
}
}
var r = e("./jsonp"),
a = e("./noop"),
s = e("./queryString");
t.exports = o
},
{
"./jsonp": 7,
"./noop": 8,
"./queryString": 11
}],
3: [function (e, t) {
t.exports = !! document.createElement("video").canPlayType("application/x-mpegURL")
},
{}],
4: [function (e, t) {
function n(e, t) {
var n = document.createElement(e);
if ("function" == typeof t) t.call(n);
else for (var i in t) if (t.hasOwnProperty(i)) switch (i) {
case "appendTo":
t[i].appendChild(n);
break;
case "innerHTML":
case "className":
case "id":
n[i] = t[i];
break;
case "style":
var o = t[i];
for (var r in o) o.hasOwnProperty(r) && (n.style[r] = o[r]);
break;
default:
n.setAttribute(i, t[i] + "")
}
return n
}
t.exports = n
},
{}],
5: [function (e, t) {
var n = '<div style="text-shadow:0 0 2px #eee;letter-spacing:-1px;background:#eee;font-weight:bold;padding:0;font-family:arial,sans-serif;font-size:30px;color:#ccc;width:152px;height:52px;border:4px solid #ccc;border-radius:12px;position:absolute;top:50%;left:50%;margin:-30px 0 0 -80px;text-align:center;line-height:52px;">Flash</div>',
i = 0,
o = {},
r = function () {
var e = this.getAttribute("data-flash-index"),
t = o[e];
t.setAttribute("data-flash-show", "isshow"),
this.parentNode.insertBefore(t, this),
this.parentNode.removeChild(this),
this.removeEventListener("click", r, !1)
},
a = function (e, t, a) {
var s = i++,
l = document.defaultView.getComputedStyle(e, null),
c = l.position;
c = "static" === c ? "relative" : c;
var d = l.margin,
u = "inline" == l.display ? "inline-block" : l.display,
l = ["", "width:" + t + "px", "height:" + a + "px", "position:" + c, "margin:" + d, "display:" + u, "margin:0", "padding:0", "border:0", "border-radius:1px", "cursor:pointer", "background:-webkit-linear-gradient(top, rgba(240,240,240,1)0%,rgba(220,220,220,1)100%)", ""];
o[s] = e;
var h = document.createElement("div");
return h.setAttribute("title", "点我还原Flash"),
h.setAttribute("data-flash-index", "" + s),
e.parentNode.insertBefore(h, e),
e.parentNode.removeChild(e),
h.addEventListener("click", r, !1),
h.style.cssText += l.join(";"),
h.innerHTML = n,
h
},
s = function (e) {
if (e instanceof HTMLObjectElement) {
if ("" == e.innerHTML.trim()) return;
if (e.getAttribute("classid") && !/^java:/.test(e.getAttribute("classid"))) return
} else if (!(e instanceof HTMLEmbedElement)) return;
var t = e.offsetWidth,
n = e.offsetHeight;
t > 160 && n > 60 && a(e, t, n)
};
t.exports = function () {
for (var e = document.getElementsByTagName("embed"), t = document.getElementsByTagName("object"), n = 0, i = t.length; i > n; n++) t[n] && s(t[n]);
for (var n = 0, i = e.length; i > n; n++) e[n] && s(e[n])
}
},
{}],
6: [function (e, t) {
t.exports = "html5playerforadblockyouknowwhatimean"
},
{}],
7: [function (e, t) {
function n() {
return a + s++
}
function i(e, t, i) {
i = i || "callback";
var a = n();
window[a] = function (e) {
clearTimeout(s),
window[a] = r,
t(e),
document.body.removeChild(c)
};
var s = setTimeout(function () {
window[a](-1)
}, l),
c = o("script", {
appendTo: document.body,
src: e + (e.indexOf("?") >= 0 ? "&" : "?") + i + "=" + a
})
}
var o = e("./createElement"),
r = e("./noop"),
a = "MAMA2_HTTP_JSONP_CALLBACK",
s = 0,
l = 1e4;
t.exports = i
},
{
"./createElement": 4,
"./noop": 8
}],
8: [function (e, t) {
t.exports = function () {}
},
{}],
9: [function (e, t) {
var n;
!
function i(t, n, o) {
function r(s, l) {
if (!n[s]) {
if (!t[s]) {
var c = "function" == typeof e && e;
if (!l && c) return c(s, !0);
if (a) return a(s, !0);
throw new Error("Cannot find module '" + s + "'")
}
var d = n[s] = {
exports: {}
};
t[s][0].call(d.exports, function (e) {
var n = t[s][1][e];
return r(n ? n : e)
}, d, d.exports, i, t, n, o)
}
return n[s].exports
}
for (var a = "function" == typeof e && e, s = 0; s < o.length; s++) r(o[s]);
return r
}({
1: [function (e, t) {
function n(e) {
for (var t = [], n = 1; n < arguments.length; n++) {
var o = arguments[n],
r = o.init;
t.push(r),
delete o.init,
i(e.prototype, o)
}
e.prototype.init = function () {
t.forEach(function (e) {
e.call(this)
}.bind(this))
}
}
var i = e("./extend");
t.exports = n
},
{
"./extend": 9
}],
2: [function (e, t) {
var n = e("./player.css"),
i = e("./player.html"),
o = (e("./extend"), e("./createElement")),
r = e("./parseDOMByClassNames");
t.exports = {
init: function () {
var e = function () {
var e = this.iframe.contentDocument.getElementsByTagName("head")[0],
t = this.iframe.contentDocument.body;
o("style", function () {
e.appendChild(this);
try {
this.styleSheet.cssText = n
} catch (t) {
this.appendChild(document.createTextNode(n))
}
}),
o("link", {
appendTo: e,
href: "http://libs.cncdn.cn/font-awesome/4.3.0/css/font-awesome.min.css",
rel: "stylesheet",
type: "text/css"
}),
t.innerHTML = i,
this.DOMs = r(t, ["player", "video", "video-frame", "comments", "comments-btn", "play", "progress_anchor", "buffered_anchor", "fullscreen", "allscreen", "hd", "volume_anchor", "current", "duration"]),
this.video = this.DOMs.video
}.bind(this),
t = document.getElementById(this.id),
a = this.iframe = o("iframe", {
allowTransparency: !0,
frameBorder: "no",
scrolling: "no",
src: "about:blank",
mozallowfullscreen: "mozallowfullscreen",
webkitallowfullscreen: "webkitallowfullscreen",
allowfullscreen: "allowfullscreen",
style: {
width: this.size[0] + "px",
height: this.size[1] + "px",
overflow: "hidden"
}
});
t && t.parentNode ? (t.parentNode.replaceChild(a, t), e()) : (document.body.appendChild(a), e(), document.body.removeChild(a))
}
}
},
{
"./createElement": 7,
"./extend": 9,
"./parseDOMByClassNames": 11,
"./player.css": 12,
"./player.html": 13
}],
3: [function (e, t) {
function n(e) {
e.strokeStyle = "black",
e.lineWidth = 3,
e.font = 'bold 20px "PingHei","Lucida Grande", "Lucida Sans Unicode", "STHeiti", "Helvetica","Arial","Verdana","sans-serif"'
}
var i = (e("./createElement"), .1),
o = 25,
r = 4e3,
a = document.createElement("canvas").getContext("2d");
n(a);
var s = window.requestAnimationFrame || window.mozRequestAnimationFrame || window.webkitRequestAnimationFrame || window.msRequestAnimationFrame || window.oRequestAnimationFrame ||
function (e) {
setTimeout(e, 1e3 / 60)
};
t.exports = {
init: function () {
this.video.addEventListener("play", this.reStartComment.bind(this)),
this.video.addEventListener("pause", this.pauseComment.bind(this)),
this.lastCommnetUpdateTime = 0,
this.lastCommnetIndex = 0,
this.commentLoopPreQueue = [],
this.commentLoopQueue = [],
this.commentButtonPreQueue = [],
this.commentButtonQueue = [],
this.commentTopPreQueue = [],
this.commentTopQueue = [],
this.drawQueue = [],
this.preRenders = [],
this.preRenderMap = {},
this.enableComment = void 0 === this.comments ? !1 : !0,
this.prevDrawCanvas = document.createElement("canvas"),
this.canvas = this.DOMs.comments.getContext("2d"),
this.comments && this.DOMs.player.classList.add("has-comments"),
this.DOMs["comments-btn"].classList.add("enable"),
this.DOMs.comments.display = this.enableComment ? "block" : "none";
var e = 0,
t = function () {
(e = ~e) && this.onCommentTimeUpdate(),
s(t)
}.bind(this);
t()
},
needDrawText: function (e, t, n) {
this.drawQueue.push([e, t, n])
},
drawText: function () {
var e = this.prevDrawCanvas,
t = this.prevDrawCanvas.getContext("2d");
e.width = this.canvasWidth,
e.height = this.canvasHeight,
t.clearRect(0, 0, this.canvasWidth, this.canvasHeight);
var i = [];
this.preRenders.forEach(function (e, t) {
e.used = !1,
void 0 === e.cid && i.push(t)
});
for (var r; r = this.drawQueue.shift();)!
function (e, r) {
var a, s = e[0].text + e[0].color,
l = r.preRenderMap[s];
if (void 0 === l) {
var l = i.shift();
void 0 === l ? (a = document.createElement("canvas"), l = r.preRenders.push(a) - 1) : a = r.preRenders[l];
var c = a.width = e[0].width,
d = a.height = o + 10,
u = a.getContext("2d");
u.clearRect(0, 0, c, d),
n(u),
u.fillStyle = e[0].color,
u.strokeText(e[0].text, 0, o),
u.fillText(e[0].text, 0, o),
a.cid = s,
r.preRenderMap[s] = l
} else a = r.preRenders[l];
a.used = !0,
t.drawImage(a, e[1], e[2])
}(r, this);
this.preRenders.forEach(function (e) {
e.used === !1 && (delete this.preRenderMap[e.cid], e.cid = void 0)
}.bind(this)),
this.canvas.clearRect(0, 0, this.canvasWidth, this.canvasHeight),
this.canvas.drawImage(e, 0, 0)
},
createComment: function (e, t) {
if (void 0 === e) return !1;
var n = a.measureText(e.text);
return {
startTime: t,
text: e.text,
color: e.color,
width: n.width + 20
}
},
commentTop: function (e, t, n) {
this.commentTopQueue.forEach(function (t, i) {
void 0 != t && (n > t.startTime + r ? this.commentTopQueue[i] = void 0 : this.needDrawText(t, (e - t.width) / 2, o * i))
}.bind(this));
for (var i; i = this.commentTopPreQueue.shift();) i = this.createComment(i, n),
this.commentTopQueue.forEach(function (t, n) {
i && void 0 === t && (t = this.commentTopQueue[n] = i, this.needDrawText(t, (e - i.width) / 2, o * n), i = void 0)
}.bind(this)),
i && (this.commentTopQueue.push(i), this.needDrawText(i, (e - i.width) / 2, o * this.commentTopQueue.length - 1))
},
commentBottom: function (e, t, n) {
t -= 10,
this.commentButtonQueue.forEach(function (i, a) {
void 0 != i && (n > i.startTime + r ? this.commentButtonQueue[a] = void 0 : this.needDrawText(i, (e - i.width) / 2, t - o * (a + 1)))
}.bind(this));
for (var i; i = this.commentButtonPreQueue.shift();) i = this.createComment(i, n),
this.commentButtonQueue.forEach(function (n, r) {
i && void 0 === n && (n = this.commentButtonQueue[r] = i, this.needDrawText(n, (e - i.width) / 2, t - o * (r + 1)), i = void 0)
}.bind(this)),
i && (this.commentButtonQueue.push(i), this.needDrawText(i, (e - i.width) / 2, t - o * this.commentButtonQueue.length))
},
commentLoop: function (e, t, n) {
for (var r = t / o | 0, a = -1; ++a < r;) {
var s = this.commentLoopQueue[a];
if (void 0 === s && (s = this.commentLoopQueue[a] = []), this.commentLoopPreQueue.length > 0) {
var l = 0 === s.length ? void 0 : s[s.length - 1];
if (void 0 === l || (n - l.startTime) * i > l.width) {
var c = this.createComment(this.commentLoopPreQueue.shift(), n);
c && s.push(c)
}
}
this.commentLoopQueue[a] = s.filter(function (t) {
var r = (n - t.startTime) * i;
return 0 > r || r > t.width + e ? !1 : (this.needDrawText(t, e - r, o * a), !0)
}.bind(this))
}
for (var d = this.commentLoopQueue.length - r; d-- > 0;) this.commentLoopQueue.pop()
},
pauseComment: function () {
this.pauseCommentAt = Date.now()
},
reStartComment: function () {
if (this.pauseCommentAt) {
var e = Date.now() - this.pauseCommentAt;
this.commentLoopQueue.forEach(function (t) {
t.forEach(function (t) {
t && (t.startTime += e)
})
}),
this.commentButtonQueue.forEach(function (t) {
t && (t.startTime += e)
}),
this.commentTopQueue.forEach(function (t) {
t && (t.startTime += e)
})
}
this.pauseCommentAt = void 0
},
drawComment: function () {
if (!this.pauseCommentAt) {
var e = Date.now(),
t = this.DOMs["video-frame"].offsetWidth,
n = this.DOMs["video-frame"].offsetHeight;
t != this.canvasWidth && (this.DOMs.comments.width = t, this.canvasWidth = t),
n != this.canvasHeight && (this.DOMs.comments.height = n, this.canvasHeight = n);
var i = this.video.offsetWidth,
o = this.video.offsetHeight;
this.commentLoop(i, o, e),
this.commentTop(i, o, e),
this.commentBottom(i, o, e),
this.drawText()
}
},
onCommentTimeUpdate: function () {
if (this.enableComment !== !1) {
var e = this.video.currentTime;
if (Math.abs(e - this.lastCommnetUpdateTime) <= 1 && e > this.lastCommnetUpdateTime) {
var t = 0;
for (this.lastCommnetIndex && this.comments[this.lastCommnetIndex].time <= this.lastCommnetUpdateTime && (t = this.lastCommnetIndex); ++t < this.comments.length;) if (!(this.comments[t].time <= this.lastCommnetUpdateTime)) {
if (this.comments[t].time > e) break;
switch (this.comments[t].pos) {
case "bottom":
this.commentButtonPreQueue.push(this.comments[t]);
break;
case "top":
this.commentTopPreQueue.push(this.comments[t]);
break;
default:
this.commentLoopPreQueue.push(this.comments[t])
}
this.lastCommnetIndex = t
}
}
try {
this.drawComment()
} catch (n) {}
this.lastCommnetUpdateTime = e
}
}
}
},
{
"./createElement": 7
}],
4: [function (e, t) {
function n(e) {
return Array.prototype.slice.call(e)
}
function i(e, t, n, i) {
function o(t) {
var n = (t.clientX - e.parentNode.getBoundingClientRect().left) / e.parentNode.offsetWidth;
return Math.min(Math.max(n, 0), 1)
}
function r(t) {
1 == t.which && (l = !0, e.draging = !0, a(t))
}
function a(e) {
if (1 == e.which && l === !0) {
var t = o(e);
n(t)
}
}
function s(t) {
if (1 == t.which && l === !0) {
var r = o(t);
n(r),
i(r),
l = !1,
delete e.draging
}
}
var l = !1;
n = n ||
function () {},
i = i ||
function () {},
e.parentNode.addEventListener("mousedown", r),
t.addEventListener("mousemove", a),
t.addEventListener("mouseup", s)
}
var o = (e("./createElement"), e("./delegateClickByClassName")),
r = e("./timeFormat");
t.exports = {
init: function () {
var e = this.iframe.contentDocument,
t = o(e);
t.on("play", this.onPlayClick, this),
t.on("video-frame", this.onVideoClick, this),
t.on("source", this.onSourceClick, this),
t.on("allscreen", this.onAllScreenClick, this),
t.on("fullscreen", this.onfullScreenClick, this),
t.on("normalscreen", this.onNormalScreenClick, this),
t.on("comments-btn", this.oncommentsBtnClick, this),
t.on("airplay", this.onAirplayBtnClick, this),
e.documentElement.addEventListener("keydown", this.onKeyDown.bind(this), !1),
this.DOMs.player.addEventListener("mousemove", this.onMouseActive.bind(this)),
i(this.DOMs.progress_anchor, e, this.onProgressAnchorWillSet.bind(this), this.onProgressAnchorSet.bind(this)),
i(this.DOMs.volume_anchor, e, this.onVolumeAnchorWillSet.bind(this))
},
onKeyDown: function (e) {
switch (e.preventDefault(), e.keyCode) {
case 32:
this.onPlayClick();
break;
case 39:
this.video.currentTime = Math.min(this.video.duration, this.video.currentTime + 10);
break;
case 37:
this.video.currentTime = Math.max(0, this.video.currentTime - 10);
break;
case 38:
this.video.volume = Math.min(1, this.video.volume + .1),
this.DOMs.volume_anchor.style.width = 100 * this.video.volume + "%";
break;
case 40:
this.video.volume = Math.max(0, this.video.volume - .1),
this.DOMs.volume_anchor.style.width = 100 * this.video.volume + "%";
break;
case 65:
this.DOMs.player.classList.contains("allscreen") ? this.onNormalScreenClick() : this.onAllScreenClick();
break;
case 70:
this.DOMs.player.classList.contains("fullscreen") || this.onfullScreenClick()
}
},
onVideoClick: function () {
void 0 == this.videoClickDblTimer ? this.videoClickDblTimer = setTimeout(function () {
this.videoClickDblTimer = void 0,
this.onPlayClick()
}.bind(this), 300) : (clearTimeout(this.videoClickDblTimer), this.videoClickDblTimer = void 0, document.fullscreenElement || document.mozFullScreenElement || document.webkitFullscreenElement ? this.onNormalScreenClick() : this.onfullScreenClick())
},
onMouseActive: function () {
this.DOMs.player.classList.add("active"),
clearTimeout(this.MouseActiveTimer),
this.MouseActiveTimer = setTimeout(function () {
this.DOMs.player.classList.remove("active")
}.bind(this), 1e3)
},
onPlayClick: function () {
this.DOMs.play.classList.contains("paused") ? (this.video.play(), this.DOMs.play.classList.remove("paused")) : (this.video.pause(), this.DOMs.play.classList.add("paused"))
},
onSourceClick: function (e) {
e.classList.contains("curr") || (this.video.preloadStartTime = this.video.currentTime, this.video.src = this.sourceList[0 | e.getAttribute("sourceIndex")][1], n(e.parentNode.childNodes).forEach(function (t) {
e === t ? t.classList.add("curr") : t.classList.remove("curr")
}.bind(this)))
},
onProgressAnchorWillSet: function (e) {
var t = this.video.duration,
n = t * e;
this.DOMs.current.innerHTML = r(n),
this.DOMs.duration.innerHTML = r(t),
this.DOMs.progress_anchor.style.width = 100 * e + "%"
},
onProgressAnchorSet: function (e) {
this.video.currentTime = this.video.duration * e
},
onVolumeAnchorWillSet: function (e) {
this.video.volume = e,
this.DOMs.volume_anchor.style.width = 100 * e + "%"
},
onAllScreenClick: function () {
var e = document.documentElement.clientWidth,
t = document.documentElement.clientHeight;
this.iframe.style.cssText = ";position:fixed;top:0;left:0;width:" + e + "px;height:" + t + "px;z-index:999999;",
this.allScreenWinResizeFunction = this.allScreenWinResizeFunction ||
function () {
this.iframe.style.width = document.documentElement.clientWidth + "px",
this.iframe.style.height = document.documentElement.clientHeight + "px"
}.bind(this),
window.removeEventListener("resize", this.allScreenWinResizeFunction),
window.addEventListener("resize", this.allScreenWinResizeFunction),
this.DOMs.player.classList.add("allscreen")
},
onfullScreenClick: function () {
["webkitRequestFullScreen", "mozRequestFullScreen", "requestFullScreen"].forEach(function (e) {
this.DOMs.player[e] && this.DOMs.player[e]()
}.bind(this)),
this.onMouseActive()
},
onNormalScreenClick: function () {
window.removeEventListener("resize", this.allScreenWinResizeFunction),
this.iframe.style.cssText = ";width:" + this.size[0] + "px;height:" + this.size[1] + "px;",
["webkitCancelFullScreen", "mozCancelFullScreen", "cancelFullScreen"].forEach(function (e) {
document[e] && document[e]()
}),
this.DOMs.player.classList.remove("allscreen")
},
oncommentsBtnClick: function () {
this.enableComment = !this.DOMs["comments-btn"].classList.contains("enable"),
this.enableComment ? (setTimeout(function () {
this.DOMs.comments.style.display = "block"
}.bind(this), 80), this.DOMs["comments-btn"].classList.add("enable")) : (this.DOMs.comments.style.display = "none", this.DOMs["comments-btn"].classList.remove("enable"))
},
onAirplayBtnClick: function () {
this.video.webkitShowPlaybackTargetPicker()
}
}
},
{
"./createElement": 7,
"./delegateClickByClassName": 8,
"./timeFormat": 14
}],
5: [function (e, t) {
var n = (e("./extend"), e("./createElement"));
e("./parseDOMByClassNames"),
t.exports = {
init: function () {
var e = 0;
this.sourceList.forEach(function (t, i) {
n("li", {
appendTo: this.DOMs.hd,
sourceIndex: i,
className: "source " + (i === e ? "curr" : ""),
innerHTML: t[0]
})
}.bind(this)),
this.DOMs.video.src = this.sourceList[e][1]
}
}
},
{
"./createElement": 7,
"./extend": 9,
"./parseDOMByClassNames": 11
}],
6: [function (e, t) {
var n = e("./timeFormat");
t.exports = {
init: function () {
this.video.addEventListener("timeupdate", this.onVideoTimeUpdate.bind(this)),
this.video.addEventListener("play", this.onVideoPlay.bind(this)),
this.video.addEventListener("pause", this.onVideoTimePause.bind(this)),
this.video.addEventListener("loadedmetadata", this.onVideoLoadedMetaData.bind(this)),
this.video.addEventListener("webkitplaybacktargetavailabilitychanged", this.onPlaybackTargetAvailabilityChanged.bind(this)),
setInterval(this.videoBuffered.bind(this), 1e3),
this.DOMs.volume_anchor.style.width = 100 * this.video.volume + "%"
},
onVideoTimeUpdate: function () {
var e = this.video.currentTime,
t = this.video.duration;
this.DOMs.current.innerHTML = n(e),
this.DOMs.duration.innerHTML = n(t),
this.DOMs.progress_anchor.draging || (this.DOMs.progress_anchor.style.width = 100 * Math.min(Math.max(e / t, 0), 1) + "%")
},
videoBuffered: function () {
var e = this.video.buffered,
t = this.video.currentTime,
n = 0 == e.length ? 0 : e.end(e.length - 1);
this.DOMs.buffered_anchor.style.width = 100 * Math.min(Math.max(n / this.video.duration, 0), 1) + "%",
0 == n || t >= n ? this.DOMs.player.classList.add("loading") : this.DOMs.player.classList.remove("loading")
},
onVideoPlay: function () {
this.DOMs.play.classList.remove("paused")
},
onVideoTimePause: function () {
this.DOMs.play.classList.add("paused")
},
onVideoLoadedMetaData: function () {
this.video.preloadStartTime && (this.video.currentTime = this.video.preloadStartTime, delete this.video.preloadStartTime)
},
onPlaybackTargetAvailabilityChanged: function (e) {
var t = "support-airplay";
"available" === e.availability ? this.DOMs.player.classList.add(t) : this.DOMs.player.classList.remove(t)
}
}
},
{
"./timeFormat": 14
}],
7: [function (e, t) {
function n(e, t) {
var n = document.createElement(e);
if ("function" == typeof t) t.call(n);
else for (var i in t) if (t.hasOwnProperty(i)) switch (i) {
case "appendTo":
t[i].appendChild(n);
break;
case "text":
var o = document.createTextNode(t[i]);
n.innerHTML = "",
n.appendChild(o);
break;
case "innerHTML":
case "className":
case "id":
n[i] = t[i];
break;
case "style":
var r = t[i];
for (var a in r) r.hasOwnProperty(a) && (n.style[a] = r[a]);
break;
default:
n.setAttribute(i, t[i] + "")
}
return n
}
t.exports = n
},
{}],
8: [function (e, t) {
function n(e) {
return Array.prototype.slice.call(e)
}
function i(e) {
this._eventMap = {},
this._rootElement = e,
this._isRootElementBindedClick = !1,
this._bindClickFunction = function (e) {
!