-
Notifications
You must be signed in to change notification settings - Fork 1
/
nb.html
1518 lines (1449 loc) · 67.7 KB
/
nb.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>
<html>
<!---
//\ //\ //\ //////////\ ////////\ //\ //\ /////////\
//\/ //\/ //\/ \\\//\\\\\/ //\\\\//\/ //\/ //\/ /// //\/
/////////\/ //\/ //\/ //\/ //\/ //\/ //\/ /////////\/
//\/\\\//\/ //\/ //\/ //\/ //\/ //\/ //\/ //\/ //\\\/
//\/ //\/ //\/ //\/ ////////\/ ////////\/ //\/ \/\\
\\/ \\/ \\/ \\/ \\\\\\\\/ \\\\\\\\/ \\/ \/\\
!-->
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<base href="http://test.hitour.cc/"/>
<title>伦敦通票_London Pass_伦敦景点套票_优惠预订_玩途自由行</title>
<meta name="keywords" content="伦敦城市通票,伦敦景点套票,伦敦自由行">
<meta name="description" content="玩途自由行提供伦敦城市通票的优惠预订,精华景点,优惠折扣,特色体验,免费指南,快速通道.">
<meta name="viewport" content="width=device-width,initial-scale=1,user-scalable=no,minimal-ui" />
<script src="http://localhost:63342/xCube/XParser.js"></script>
<!--globals definition-->
<script type="text/javascript">
var $header_info = eval('('+ '{"product_type":"3","country":{"cn_name":"\u82f1\u56fd","country_code":"GB","link_url":""},"city":{"cn_name":"\u4f26\u6566","city_code":"LON","link_url":""}}' +')');
var $request_urls = eval( '('+'{"headerInfo":"\/home\/cities","headerCityInfo":"\/home\/citiesInGroup","headerLogin":"\/account\/login","headerLogout":"\/account\/logout","headerForget":"\/account\/resetPassword","headerRegister":"\/account\/register","headerRegisterByPhone":"\/account\/registerByPhone","verifyPhone":"\/mobile\/verifyPhone","headerAccount":"\/account\/account#account","headerOrders":"\/account\/account#orders","headerFavorite":"\/account\/favorite","headerCoupon":"\/account\/account#coupon","headerFund":"\/account\/tourfund","home":"\/","bindThird":"\/account\/bindThird","error":"\/error","addFavoriteProduct":"\/account\/addFavoriteProduct","deleteFavoriteProduct":"\/account\/deleteFavoriteProduct","getFavoriteProducts":"\/account\/getFavoriteProducts","productData":"\/product\/productData?product_id=690&spc=","productScenes":"\/product\/landData?product_id=690","getBizData":"\/product\/saleData?product_id=690","addCart":"\/checkout\/addCart","commentStatData":"\/product\/commentStatData?product_id=690","commentsData":"\/product\/commentsData?product_id=690","bindingProduct":"\/product\/bindingProduct"}' +')');
var $current_page = 'product';
</script>
<!--resource locate-->
<link rel="dns-prefetch" href="//hitour.qiniudn.com/">
<link rel="shortcut icon" href="/favicon.ico">
<link rel="apple-touch-icon-precomposed" sizes="144x144"
href="/image/common/apple-touch-icon-144x144-precomposed.png">
<link rel="apple-touch-icon-precomposed" sizes="114x114"
href="/image/common/apple-touch-icon-114x114-precomposed.png">
<link rel="apple-touch-icon-precomposed" sizes="72x72"
href="/image/common/apple-touch-icon-72x72-precomposed.png">
<link rel="stylesheet" href="themes/public/stylesheets/custom-bootstrap.css"/>
<link rel="stylesheet" href="themes/public/stylesheets/icons.css"/>
<link rel="stylesheet" href="themes/public/stylesheets/extremities.css"/>
<script type="text/javascript" src="themes/public/javascripts/lib/html5.js"></script>
<script type="text/javascript" src="themes/public/bower_components/avalon/dist/avalon.js"></script>
<script type="text/javascript" src="themes/public/bower_components/jquery/jquery.min.js"></script>
<script type="text/javascript" src="themes/public/javascripts/lib/rex.js"></script>
<script type="text/javascript" src="themes/public/javascripts/common.js"></script>
<script type="text/javascript" src="themes/public/javascripts/module/header_menu.js"></script><link rel="stylesheet" href="themes/public/bower_components/HiUI/Modal/modal.css" />
<link rel="stylesheet" href="themes/public/lib/Tab/tab.css" />
<link rel="stylesheet" href="themes/public/lib/xCalendar/xCalendar-detail.css" />
<link rel="stylesheet" href="themes/public/stylesheets/product-new.css" />
<link rel="stylesheet" href="themes/public/views/product/modules/buy_section/stylesheets/buy.css" />
<link rel="stylesheet" href="themes/public/views/product/modules/product_tour/stylesheets/product_tour.css" />
<link rel="stylesheet" href="themes/public/views/product/modules/product_notice/stylesheets/product_notice.css" />
<link rel="stylesheet" href="themes/public/views/product/modules/product_comments/stylesheets/product_comments.css" />
<link rel="stylesheet" href="themes/public/views/product/modules/product_tour_detail/stylesheets/product_tour_detail.css" />
<link rel="stylesheet" href="themes/public/views/common/modules/back_to_top/stylesheets/back_to_top.css" />
<script src="themes/public/bower_components/HiUI/Modal/modal.js"></script>
<script src="themes/public/lib/Tab/tab.js"></script>
<script src="themes/public/lib/xCalendar/xCalendar.js"></script>
<script src="themes/public/javascripts/favorite.js"></script>
<script type="text/javascript" src="themes/public/bower_components/HiUI/Carousel/carousel.js"></script>
<script src="themes/public/views/product/modules/product_tour/javascripts/product_tour.js"></script>
<script src="themes/public/views/product/modules/product_notice/javascripts/product_notice.js"></script>
<script src="themes/public/views/product/modules/product_comments/javascripts/product_comments.js"></script>
<script src="themes/public/views/product/modules/product_tour_detail/javascripts/product_tour_detail.js"></script>
<script src="themes/public/views/common/modules/back_to_top/javascripts/back_to_top.js"></script>
<script src="themes/public/javascripts/product-new.js"></script>
<script src="themes/public/views/product/modules/buy_section/javascripts/biz.js"></script>
<script src="themes/public/views/product/modules/buy_section/javascripts/buy.js"></script>
</head>
<body>
<header id="hi-header" ms-controller="header">
<div class="main-header clearfix">
<div class="logo-navigator">
<a href="/" class="icon-slogan"></a>
<div class="navigate-ctn">
<div class="btn-dropdown">
<span class="btn-srh" id="header_info">英国 — 伦敦</span>
<span class="toggle-drop-icon"></span>
</div>
<ul class="navigate-overlay">
<li class="sub-menu" data-submenu-id="submenu-1">
<div class="nav-menu">
<h3>亚洲 Asia</h3>
<h4><a href="/Taiwan">台湾地区</a></h4>
<h4><a href="/Japan">日本</a></h4>
<h4><a href="/Thailand">泰国</a></h4>
<h4><a href="/South_Korea">韩国</a></h4>
<h4><a href="/HongKong">中国香港</a></h4>
<h4><a href="/Singapore">新加坡</a></h4>
<span class="enter-symbol icon-arrow-right"></span>
</div>
<div class="nav-popover" id="submenu-1">
<h3>亚洲 Asia</h3>
<div class="country-ctn">
<h4><a href="/Taiwan">台湾地区</a></h4>
<div class="cities-ctn">
<span><a href="/Taiwan/Tainan">台南</a></span>
<span><a href="/Taiwan/Kaohsiung">高雄</a></span>
<span><a href="/Taiwan/Hua_Lian">花莲</a></span>
<span><a href="/Taiwan/Kenting">垦丁</a></span>
<span><a href="/Taiwan/Taipei">台北</a></span>
<span><a href="/Taiwan/Taichung">台中</a></span>
</div>
</div>
<div class="country-ctn">
<h4><a href="/United_Arab_Emirates">阿联酋</a></h4>
<div class="cities-ctn">
<span><a href="/United_Arab_Emirates/Abu_Dhabi">阿布扎比</a></span>
<span><a href="/United_Arab_Emirates/Dubai">迪拜</a></span>
</div>
</div>
<div class="country-ctn">
<h4><a href="/Japan">日本</a></h4>
<div class="cities-ctn">
<span><a href="/Japan/Osaka">大阪</a></span>
<span><a href="/Japan/Tokyo">东京</a></span>
<span><a href="/Japan/Kyoto">京都</a></span>
<span><a href="/Japan/Nara">奈良</a></span>
<span><a href="/Japan/Sapporo">札幌</a></span>
<span><a href="/Japan/Ehime">爱瑗</a></span>
<span><a href="/Japan/Nagasaki">长崎</a></span>
<span><a href="/Japan/Okinawa">冲绳</a></span>
</div>
</div>
<div class="country-ctn">
<h4><a href="/Macau">中国澳门</a></h4>
<div class="cities-ctn">
<span><a href="/Macau/Macau">澳门</a></span>
</div>
</div>
<div class="country-ctn">
<h4><a href="/Indonesia">印度尼西亚</a></h4>
<div class="cities-ctn">
<span><a href="/Indonesia/Bali">巴厘岛</a></span>
</div>
</div>
<div class="country-ctn">
<h4><a href="/Thailand">泰国</a></h4>
<div class="cities-ctn">
<span><a href="/Thailand/Pattaya_Beach">芭堤雅</a></span>
<span><a href="/Thailand/Krabi">甲米岛</a></span>
<span><a href="/Thailand/Bangkok">曼谷</a></span>
<span><a href="/Thailand/Phuket">普吉岛</a></span>
<span><a href="/Thailand/Chiangmai">清迈</a></span>
</div>
</div>
<div class="country-ctn">
<h4><a href="/Malaysia">马来西亚</a></h4>
<div class="cities-ctn">
<span><a href="/Malaysia/Penang">槟城</a></span>
<span><a href="/Malaysia/Langkawi">兰卡威</a></span>
<span><a href="/Malaysia/JOHOR_BAHRU">新山</a></span>
</div>
</div>
<div class="country-ctn">
<h4><a href="/South_Korea">韩国</a></h4>
<div class="cities-ctn">
<span><a href="/South_Korea/Jeju_Island">济州岛</a></span>
<span><a href="/South_Korea/Seoul">首尔</a></span>
</div>
</div>
<div class="country-ctn">
<h4><a href="/HongKong">中国香港</a></h4>
<div class="cities-ctn">
<span><a href="/HongKong/Kowloon">九龙</a></span>
<span><a href="/HongKong/Hong_Kong">香港</a></span>
</div>
</div>
<div class="country-ctn">
<h4><a href="/Maldives">马尔代夫</a></h4>
<div class="cities-ctn">
<span><a href="/Maldives/Maldives">马尔代夫</a></span>
</div>
</div>
<div class="country-ctn">
<h4><a href="/Singapore">新加坡</a></h4>
<div class="cities-ctn">
<span><a href="/Singapore/Singapore">新加坡</a></span>
</div>
</div>
</div>
</li>
<li class="sub-menu" data-submenu-id="submenu-2">
<div class="nav-menu">
<h3>欧洲 Europe</h3>
<h4><a href="/France">法国</a></h4>
<h4><a href="/United_Kingdom">英国</a></h4>
<span class="enter-symbol icon-arrow-right"></span>
</div>
<div class="nav-popover" id="submenu-2">
<h3>欧洲 Europe</h3>
<div class="country-ctn">
<h4><a href="/Netherlands">荷兰</a></h4>
<div class="cities-ctn">
<span><a href="/Netherlands/Amsterdam">阿姆斯特丹</a></span>
</div>
</div>
<div class="country-ctn">
<h4><a href="/France">法国</a></h4>
<div class="cities-ctn">
<span><a href="/France/Avignon">阿维尼翁</a></span>
<span><a href="/France/Paris">巴黎</a></span>
<span><a href="/France/Paris-Disneyland">巴黎-迪士尼</a></span>
<span><a href="/France/Lyon">里昂</a></span>
<span><a href="/France/Marseille">马赛</a></span>
<span><a href="/France/Nice">尼斯</a></span>
</div>
</div>
<div class="country-ctn">
<h4><a href="/United_Kingdom">英国</a></h4>
<div class="cities-ctn">
<span><a href="/United_Kingdom/Edinburgh">爱丁堡</a></span>
<span><a href="/United_Kingdom/London">伦敦</a></span>
</div>
</div>
<div class="country-ctn">
<h4><a href="/Norway">挪威</a></h4>
<div class="cities-ctn">
<span><a href="/Norway/Oslo">奥斯陆</a></span>
</div>
</div>
<div class="country-ctn">
<h4><a href="/Spain">西班牙</a></h4>
<div class="cities-ctn">
<span><a href="/Spain/Barcelona">巴塞罗那</a></span>
<span><a href="/Spain/Madrid">马德里</a></span>
<span><a href="/Spain/SEVILLA">塞维利亚</a></span>
</div>
</div>
<div class="country-ctn">
<h4><a href="/Germany">德国</a></h4>
<div class="cities-ctn">
<span><a href="/Germany/Berlin">柏林</a></span>
<span><a href="/Germany/Frankfurt">法兰克福</a></span>
<span><a href="/Germany/Munich">慕尼黑</a></span>
<span><a href="/Germany/Stuttgart">斯图加特</a></span>
</div>
</div>
<div class="country-ctn">
<h4><a href="/Czech_Republic">捷克</a></h4>
<div class="cities-ctn">
<span><a href="/Czech_Republic/Prague">布拉格</a></span>
</div>
</div>
<div class="country-ctn">
<h4><a href="/Belgium">比利时</a></h4>
<div class="cities-ctn">
<span><a href="/Belgium/Brussels">布鲁塞尔</a></span>
</div>
</div>
<div class="country-ctn">
<h4><a href="/Ireland">爱尔兰</a></h4>
<div class="cities-ctn">
<span><a href="/Ireland/Dublin">都柏林</a></span>
</div>
</div>
<div class="country-ctn">
<h4><a href="/Italy">意大利</a></h4>
<div class="cities-ctn">
<span><a href="/Italy/Florence">佛罗伦萨</a></span>
<span><a href="/Italy/Rome">罗马</a></span>
<span><a href="/Italy/Milan">米兰</a></span>
</div>
</div>
<div class="country-ctn">
<h4><a href="/Austria">奥地利</a></h4>
<div class="cities-ctn">
<span><a href="/Austria/Vienna">维也纳</a></span>
<span><a href="/Austria/INNSBRUCK">因斯布鲁克</a></span>
</div>
</div>
</div>
</li>
<li class="sub-menu" data-submenu-id="submenu-3">
<div class="nav-menu">
<h3>非洲 Africa</h3>
<h4><a href="/Mauritius">毛里求斯</a></h4>
<span class="enter-symbol icon-arrow-right"></span>
</div>
<div class="nav-popover" id="submenu-3">
<h3>非洲 Africa</h3>
<div class="country-ctn">
<h4><a href="/Seychelles">塞舌尔</a></h4>
<div class="cities-ctn">
<span><a href="/Seychelles/Mahe_Island">马埃岛</a></span>
<span><a href="/Seychelles/PRASLIN_ISLAND">普拉兰岛</a></span>
</div>
</div>
<div class="country-ctn">
<h4><a href="/Mauritius">毛里求斯</a></h4>
<div class="cities-ctn">
<span><a href="/Mauritius/Mauritius">毛里求斯</a></span>
</div>
</div>
</div>
</li>
<li class="sub-menu" data-submenu-id="submenu-4">
<div class="nav-menu">
<h3>北美 North America</h3>
<h4><a href="/United_States">美国</a></h4>
<span class="enter-symbol icon-arrow-right"></span>
</div>
<div class="nav-popover" id="submenu-4">
<h3>北美 North America</h3>
<div class="country-ctn">
<h4><a href="/United_States">美国</a></h4>
<div class="cities-ctn">
<div>
<h5>美国西部</h5>
<span><a href="/United_States/Alaska">阿拉斯加</a></span>
<span><a href="/United_States/ANAHEIM">阿纳海姆</a></span>
<span><a href="/United_States/San_Francisco">旧金山</a></span>
<span><a href="/United_States/Las_Vegas">拉斯维加斯</a></span>
<span><a href="/United_States/Los_Angeles">洛杉矶</a></span>
<span><a href="/United_States/San_Diego">圣地亚哥</a></span>
<span><a href="/United_States/Seattle">西雅图</a></span>
</div>
<div>
<h5>美国东部</h5>
<span><a href="/United_States/Orlando">奥兰多</a></span>
<span><a href="/United_States/Boston">波士顿</a></span>
<span><a href="/United_States/Philadelphia">费城</a></span>
<span><a href="/United_States/Washington">华盛顿</a></span>
<span><a href="/United_States/Miami">迈阿密</a></span>
<span><a href="/United_States/New_York">纽约</a></span>
<span><a href="/United_States/Houston">休斯敦</a></span>
<span><a href="/United_States/Atlanta">亚特兰大</a></span>
<span><a href="/United_States/Chicago">芝加哥</a></span>
</div>
<div>
<h5>夏威夷州</h5>
<span><a href="/United_States/Big_Island">夏威夷·大岛</a></span>
<span><a href="/United_States/Hawaii-Maui">夏威夷·茂宜岛</a></span>
<span><a href="/United_States/Honolulu">夏威夷·欧胡岛</a></span>
</div>
</div>
</div>
<div class="country-ctn">
<h4><a href="/Canada">加拿大</a></h4>
<div class="cities-ctn">
<span><a href="/Canada/Toronto">多伦多</a></span>
<span><a href="/Canada/Calgary">卡尔加里</a></span>
<span><a href="/Canada/Montreal">蒙特利尔</a></span>
<span><a href="/Canada/Vancouver">温哥华</a></span>
</div>
</div>
</div>
</li>
<li class="sub-menu" data-submenu-id="submenu-6">
<div class="nav-menu">
<h3>大洋洲 Oceania</h3>
<h4><a href="/New_Zealand">新西兰</a></h4>
<span class="enter-symbol icon-arrow-right"></span>
</div>
<div class="nav-popover" id="submenu-6">
<h3>大洋洲 Oceania</h3>
<div class="country-ctn">
<h4><a href="/New_Zealand">新西兰</a></h4>
<div class="cities-ctn">
<div>
<h5>北岛</h5>
<span><a href="/New_Zealand/Auckland">奥克兰</a></span>
<span><a href="/New_Zealand/Bay_of_Islands">岛屿湾</a></span>
<span><a href="/New_Zealand/Waikato">怀卡托</a></span>
<span><a href="/New_Zealand/Rotorua">罗托鲁瓦</a></span>
</div>
<div>
<h5>南岛</h5>
<span><a href="/New_Zealand/DUNEDIN">达尼丁</a></span>
<span><a href="/New_Zealand/LAKE_TEKAPO">蒂卡普</a></span>
<span><a href="/New_Zealand/QUEENSTOWN">皇后镇</a></span>
<span><a href="/New_Zealand/CHRISTCHURCH">基督城</a></span>
<span><a href="/New_Zealand/KAIKOURA">凯库拉</a></span>
<span><a href="/New_Zealand/WANAKA">瓦纳卡</a></span>
<span><a href="/New_Zealand/West_Coast">西海岸</a></span>
</div>
</div>
</div>
<div class="country-ctn">
<h4><a href="/Guam">关岛</a></h4>
<div class="cities-ctn">
<span><a href="/Guam/Guam">关岛</a></span>
</div>
</div>
<div class="country-ctn">
<h4><a href="/Australia">澳大利亚</a></h4>
<div class="cities-ctn">
<span><a href="/Australia/Goldcoast">黄金海岸</a></span>
<span><a href="/Australia/Cairns">凯恩斯</a></span>
<span><a href="/Australia/Launceston">朗塞斯顿</a></span>
<span><a href="/Australia/Melbourne">墨尔本</a></span>
<span><a href="/Australia/Sydney">悉尼</a></span>
</div>
</div>
<div class="country-ctn">
<h4><a href="/Palau">帕劳</a></h4>
<div class="cities-ctn">
<span><a href="/Palau/KOROR">科罗尔</a></span>
</div>
</div>
</div>
</li>
</ul>
<div class="clear-shadow"></div>
</div>
</div>
<div class="account-panel" id="account_panel" data-is-logged="1" ms-controller="accountPanel">
<div ms-if="!isLogged" class="access-ctn">
<a id="login" ms-click="buildOverlay('login')">登录</a>
<a id="register" ms-click="buildOverlay('register')">注册</a>
</div>
<div ms-if="isLogged" class="account-ctn clearfix">
<div class="account-menu">
<a class="my-account">我的</a>
<ul class="action-list">
<li><a href="/account/account#account" ref="nofollow">我的账户</a></li>
<li><a href="/account/account#coupon" ref="nofollow">我的优惠券</a></li>
<li><a ref="nofollow" class="logout" ms-click="logout()">退出</a></li>
</ul>
</div>
<a href="/account/account#orders" ref="nofollow" class="my-order">
我的订单
</a>
<a href="/account/favorite" ref="nofollow" class="my-favorite">
我的收藏
</a>
</div>
</div>
</div>
</header>
<div class="page-product" ms-controller="productInfo">
<div class="main-wrap">
<section class="product-main">
<div class="nav-ctn">
<nav>
<a href="/">首页</a><span class="sep">></span>
<a ms-attr-href="{{country_url}}" ms-text="country_name"></a><span class="sep">></span>
<a ms-attr-href="{{city_url}}" ms-text="city_name"></a>
<div class="tel-me">您有任何问题,请拨打:<em>400-010-1900</em></div>
</nav>
</div>
<div class="product-title">
<h1 ms-html="description.name"></h1>
<div class="favorite-ctn">
<span ms-class-1="icon-heart-empty:is_favorite == 0"
ms-class-2="icon-heart-filled:is_favorite == 1"
ms-click="toggleFavor(this.$vmodel, 0)">{{is_favorite == 0?'加入收藏':'已收藏'}}</span>
</div>
<div class="user-mark"></div>
</div>
<section class="buy-section">
<!--GTA request-->
<div class="GTA-notice">
<div class="notice-content">
<div class="single-p">
<div class="super-circle"></div>
<div class="p-content">亲爱的顾客,商品预订名额有限,玩途会第一时间帮您预订,并以邮件形式通知您预定结果。</div>
</div>
<div class="single-p">
<div class="super-circle"></div>
<div class="p-content">如果预订失败,玩途会48小时内为您协调门票时间或处理退款,让您后顾无忧。</div>
</div>
</div>
</div>
<div class="hi-carousel fade" id="base_carousel">
<div class="fix-ctn">
<div class="carousel-list">
<div class="carousel-item" ms-repeat-item="sliders"
ms-class="active : $index == 0"
ms-css-background-image="url('{{ item.image_url }}?imageView/5/w/688/h/419')"
data-repeat-rendered="initSlider">
<div class="item-above">
<div class="text-wrap">
<h3 class="item-name">{{ item.name }}</h3>
<p class="item-desc">{{ item.short_desc }}</p>
</div>
</div>
</div>
</div>
<div class="to to-prev"><i class="icon-arrow-left"></i></div>
<div class="to to-next"><i class="icon-arrow-right"></i></div>
<div class="index-list">
<i class="to to-index" ms-repeat-index="sliders"
ms-class="active : $index == 0"></i>
</div>
<img ms-class="activity-tag-{{activity_info.activity_id}}"
ms-if="activity_info && activity_info.length != 0 && activity_info.show_activity_tag == 1"
ms-src="themes/public/images/activities/activity_tag_{{activity_info.activity_id}}.png">
</div>
</div>
<div class="order-panel">
<div class="price-ctn">
<div class="sum-price" >{{show_prices.title}}<em>¥{{show_prices.price}}</em><i>{{ activity_info && activity_info.length != 0 && (activity_info.activity_id == 165 || activity_info.activity_id == 166) ? '' : '起'}}</i></div>
<div class="orig-price"><i>{{activity_info && activity_info.length != 0 && (activity_info.activity_id == 165 || activity_info.activity_id == 166)?'玩途价':'门市价'}}</i><em>¥{{show_prices.orig_price}}</em></div>
</div>
<div class="field-ctn" ms-controller="TourDate" ms-if="flag">
<div class="field-title">您的出行日期</div>
<div class="field-wrap" ms-class="{{status}}" id="tour_date" ms-click="open">
<i class="head-icon icon-calendar"></i>
<div class="input-preview">{{date_text}}</div>
<i class="i-arrow-down"></i>
</div>
<div class="error-tips" ms-visible="status=='empty'">请选择出行日期
<div class="arrow-right"></div>
</div>
</div>
<div class="field-ctn" ms-controller="TicketType">
<div class="field-title">出行人数选择</div>
<div class="field-wrap quantity" ms-class="{{status}}" ms-click="open">
<i class="head-icon icon-empty-person"></i>
<div class="input-preview">
<div class="ticket-wrap" ms-visible="status=='complete'" ms-repeat-el="ticket_types">{{el.name}}
{{el.quantity}}
</div>
</div>
<i class="i-arrow-down"></i>
</div>
<div class="quantity-selector" ms-visible="show">
<div class="arrow-up"></div>
<div class="ticket-ctn" ms-class="border-top:$first" ms-repeat-el="ticket_types">
<div class="ticket-type">
{{el.name}}
<div class="ticket-range" ms-if="el.age_range">({{el.age_range}})</div>
</div>
<div class="ticket-price"><em>¥{{el.price}}</em></div>
<div class="num-counter">
<span class="reduce" ms-click="counterReduce($index,$event)"></span>
<input type="text" ms-value="{{el.quantity}}" readonly="true" />
<span class="add" ms-click="counterAdd($index,$event)"></span>
</div>
<div class="ticket-desc">{{el.description}}</div>
<div ms-if="!$last" class="line-seperator"></div>
</div>
<div class="confirm">确定</div>
<div class="ticket-rule icon-exclamation-circle" ms-class="ticket-tips-show:ticket_tips"><span>{{ticket_tips}}</span>
</div>
</div>
<div class="error-tips" ms-visible="status=='empty'">请选择出行人数
<div class="arrow-right"></div>
</div>
</div>
<div class="field-ctn" ms-controller="Departure" ms-if="flag">
<div class="field-title">{{departure_title}}</div>
<div class="field-wrap" ms-attr-title="{{status=='disable'?'请先选择出行日期':''}}" ms-click="open"
ms-class="{{status}}">
<i class="head-icon icon-menu"></i>
<div class="input-preview">{{departure_text}}</div>
<i class="i-arrow-down"></i>
</div>
<div class="select-box" ms-visible="show">
<div class="select-box-ctn">
<div class="option" ms-repeat-dp="departures" ms-click="selectDeparture(dp)">{{dp.showTime}} {{dp.departure_point}}
</div>
</div>
<i class="arrow-up"></i>
</div>
<div class="error-tips" ms-visible="status=='empty'">请选择{{departure_title}}
<div class="arrow-right"></div>
</div>
</div>
<div class="field-ctn special-ctn " ms-if="flag" ms-class="collapse-special:selected_index>=0"
ms-css-height="{{30+(special_codes.length)*53}}" ms-controller="SpecialCode">
<div class="field-title">{{special_title}}<span class="special-title-desc">(共有<em>{{special_codes.length}}</em>个套餐供选择)</span></div>
<div class="special" ms-repeat-sp="special_codes" ms-mouseenter="mousein($index,sp)"
ms-mouseleave="mouseout($index,sp.description)" ms-css-top="{{30+$index*53}}"
ms-css-z-index="{{100-Math.abs(special_code.index-$index)}}" ms-class="checked:sp.checked"
ms-css-transition="{{0.1+(0.5/(special_codes.length-1))*$index}}s" ms-click="select(sp)"><i
class="radio"><i class="radio-inner"></i></i><span class="special-wrap">{{sp.cn_name}}</span><span
class="special-price">¥{{sp.price.price}}</span><i ms-visible="selected_index!=-1" class="i-arrow-down"></i></div>
<div class="special-desc" ms-class="fadein:show_desc" ms-css-top="top">
<h3>{{cur_special.cn_name}}</h3>
<p ms-visible="cur_special.description">*{{cur_special.description}}</p>
<div class="ticket-holder" >
<div class="ticket-item" ms-repeat-tk="ticket_prices"><span>{{tk.name}}</span><em>¥{{tk.price}}</em><strong>¥{{tk.orig_price}}</strong></div>
</div>
<div class="arrow-right"></div>
</div>
<div class="special-stack-ctn">
<div class="special-stack special-stack-1"></div>
<div class="special-stack special-stack-2"></div>
</div>
</div>
<div class="summary-holder" ms-controller="TicketType">
<div class="summary" ms-visible="show_panel">
<div class="seperator"></div>
<div class="summary-line">
<ul>
<li ms-repeat-tk="ticket_types"><span>{{tk.name}} x{{tk.quantity}} </span><em>¥{{tk.price}}</em><strong>¥{{tk.orig_price}}</strong>
</li>
</ul>
</div>
<div class="summary-price">总计:<em>¥{{sum_price}}</em></div>
</div>
<button class="buy-btn" id="buy_btn" ms-class="disable:!show_panel" ms-click="addCart">{{buy_label||'预订'}}</button>
</div>
</div>
</section> <!-- <div class="slider-ctn">
<div id="slider" class="ht-slider" ms-click="setSlideImgsWidths">
<div ms-repeat-el="sliders" class="slider-img">
<img ms-attr-src="{{el.image_url}}?imageView/5/w/1000/h/450" alt="" />
<div class="slider-cover">
<div class="slider-ps" ms-if="el.name && el.desc"><em>{{el.name}}</em><br>{{el.desc}}</div>
</div>
</div>
</div>
<img ms-class="activity-tag-{{activity_info.activity_id}}"
ms-if="activity_info && activity_info.length != 0 && activity_info.show_activity_tag == 1"
ms-src="themes/public/images/activities/activity_tag_{{activity_info.activity_id}}.png">
<div class="left-op">
<button class="left-left" ms-click="slideLeft"></button>
</div>
<div class="right-op">
<button class="right-right" ms-click="slideRight"></button>
</div>
<div class="container" style="position: relative;">
<div class="special-tag"
ms-if="(!activity_info || activity_info.length == 0 || activity_info.show_activity_tag !=1 ) && show_prices.special_info">
<h4>立减</h4>
<div><span class="rmb"></span><em>{{show_prices.discount}}</em></div>
<div class="channel">{{show_prices.special_info.reseller}}<br>{{show_prices.special_info.slogan}}</div>
</div>
</div>
</div>-->
<div class="ad-ctn" ms-if="ad_info && ad_info.length != 0">
<a id="summer_link" ms-attr-href="ad_info.link_url" target="_blank">
<img class="qr-code" ms-if="ad_info.qr_code_link" ms-src="{{ad_info.qr_code_link}}">
<img ms-src="ad_info.image_url+'ab\'c'">
</a>
</div>
<div class="tab-ctn">
<div class="fix-wrap">
<div class="container">
<div class="hi-nav left-ctn" data-bind="nav-content" ms-controller="buyNotice">
<div class="nav-item active" data-target="tab0">商品信息</div>
<div class="nav-item" data-target="tab_service_include" ms-controller="productNoticeCtrl" ms-if="data.please_read">服务包含</div>
<div class="nav-item" data-target="tab_please_read">购买须知</div>
<div class="nav-item" data-target="tab_redeem_usage" ms-controller="productNoticeCtrl" ms-if="data.please_read">
兑换及使用
</div>
<div class="nav-item" data-target="tab_comments" ms-controller="productCommentsCtrl" ms-if="data.comments.length > 0">
用户点评<span>({{ data.score.avg_hitour_service_level }}分)</span>
</div>
</div>
<div class="right-ctn">
<div class="price-ctn">
<div>
<span ms-text="show_prices.title"></span>
<span class="price-wrap">
<strong ms-html="a+'¥'+show_prices.price"></strong>
</span>
</div>
</div>
<button class="fixed-buy-btn" ms-click="openBuy">{{buy_label}}</button>
</div>
</div>
</div>
</div>
</section>
<!-- 服务包含和地图 -->
<section class="service_include-map" ms-if="type == 3 || type == 4 || type == 5">
<div class="clearfix">
<div class="map-img" ms-css-background-image="url({{gmap_url}})">
<div class="map-point">游玩项目</div>
</div>
<div class="service_include" ms-controller="buyNotice">
<div ms-repeat-el="service_include">
<div ms-if="$index == 0">
<div class="service-title">{{el.key|html}}</div>
{{el.val|html}}
<div class="in-cover"></div>
</div>
</div>
</div>
</div>
</section>
<div class="hi-tab-content" id="nav-content">
<!-- multiday_tour -->
<div ms-if="type == 9 && multi_day_general.recommendation" class="content-item" id="tab0" ms-controller="productTourCtrl">
<div class="product-tour">
<div class="tour-brief-ctn">
<div class="brief-img">
<img ms-src="{{ data.recommendation.brief_avatar + '?imageView2/5/w/124/h/124' }}" alt="" />
<p ms-text="data.recommendation.brief_author"></p>
</div>
<div class="split-decoration"></div>
<div class="brief-ctn">
<h4 class="brief-title" ms-text="data.recommendation.brief_title"></h4>
<p class="brief-desc" ms-text="data.recommendation.brief_description"></p>
</div>
</div>
<div class="tour-schedule-map"
ms-css-background-image="url({{ data.recommendation.brief_image + '?imageView2/5/w/1000/h/400' }})">
</div>
<div class="tour-intro-ctn">
<div class="tour-intro-img"
data-target="product_tour_detail"
ms-css-background-image="url({{ data.recommendation.trip_intro_image + '?imageView2/5/w/1000/h/254' }})"></div>
<div class="access-btn" data-target="product_tour_detail">查看行程详情</div>
</div>
<div class="tour-outline">
<h4 class="outline-title">行程概览</h4>
<div class="outline-abstract">
<ul class="clearfix">
<li class="first">
<p class="text-center">
<span class="abstract-title abstract-head" ms-text="data.trip_highlight.total_days"></span>天
</p>
<p class="text-center" ms-text="data.trip_highlight.distance + '公里'"></p>
</li>
<li>
<p class="abstract-title">行程</p>
<p ms-text="data.trip_highlight.start_location"></p>
<p>到</p>
<p ms-text="data.trip_highlight.finish_location"></p>
</li>
<li>
<p class="abstract-title">您会看到</p>
<p ms-repeat-desc="data.trip_highlight.highlight_summary" ms-text="desc"></p>
</li>
<li class="last fix-border">
<p class="abstract-title">最佳旅游时间</p>
<p ms-text="data.trip_highlight.suitable_time"></p>
</li>
</ul>
</div>
<div class="outline-detail">
<table>
<thead>
<tr>
<th width="10%">时间</th>
<th width="20%">地点</th>
<th width="50%">行程亮点</th>
<th width="20%">住宿</th>
</tr>
</thead>
<tbody>
<tr ms-repeat-refs="data.trip_highlight.highlight_refs">
<td ms-text="'D' + refs.date" class="text-center"></td>
<td style="border-left: 1px solid #eee" ms-text="refs.location"></td>
<td style="border-left: 1px solid #eee">
<ul class="detail-highlights">
<li ms-repeat-highlight="refs.local_highlight" ms-text="highlight"></li>
</ul>
</td>
<td style="border-left: 1px solid #eee" ms-text="refs.lodging"></td>
</tr>
</tbody>
</table>
</div>
<div class="show-detail-btn" data-target="product_tour_detail">查看行程详情 ></div>
</div>
</div> </div>
<!-- 商品详情 -->
<section class="content-item product-scenes" ms-if="type != 9 || !multi_day_general.recommendation" ms-controller="productScenes" id="tab0">
<div class="section-title" ms-if="type == 3 || type == 4">
<h2>商品详情</h2>
<div class="back-line"></div>
</div>
<div class="desc-ctn"><span>{{description.description}}</span></div>
<!-- 通票包含景点 -->
<div class="section-title" ms-if="landinfo_groups.length > 0 && type == 3">
<h2>{{album_info.album_name}}</h2>
<div class="back-line"></div>
</div>
<div class="scenes-ctn" ms-if="type == 3">
<div class="group-wrap" ms-repeat-gp="landinfo_groups">
<div class="scene" ms-repeat-el="gp">
<img ms-src="{{el.image_url}}?imageView2/1/w/458/h/205" alt="" />
<div class="scene-info">
<div class="scene-name-ctn">
<h3>{{el.name}}</h3>
<h4>{{el.en_name}}</h4>
</div>
<div class="seq">{{$outer.$index|seq($outer.gp.length)}}</div>
<p class="scene-summary">{{el.pass_benefit}}</p>
<p class="scene-desc">{{el.reason}}</p>
</div>
</div>
<div class="linked-circle" ms-if="gp.length>1">2选1</div>
</div>
</div>
<!-- 行程计划 -->
<div class="section-title" ms-if="tour_plan.length > 0 && tour_plan_type == 1">
<h2>{{description.schedule}}</h2>
<div class="back-line"></div>
</div>
<div class="tour-ctn" ms-if="tour_plan.length > 0 && tour_plan_type == 1">
<div class="brief" ms-if="tour_plan.length>1&&patch">
本旅行将包含<em>{{tour_plan.length}}</em>天的精彩内容,下面就让玩途小编详细的为大家介绍行程安排吧!
</div>
<div class="day-list" ms-if="tour_plan.length>1">
<ul>
<li ms-repeat-el="tour_plan"><i class="seq"><span>D{{$index+1}}</span></i><span>{{el.title}}</span></li>
</ul>
</div>
<div class="day-nav-ctn" ms-if="tour_plan.length>1" ms-mouseleave="mouseleave()">
<ul>
<li ms-repeat-el="tour_plan" ms-mouseover="mousein($index,el.title,$event)"
ms-mouseout="mouseout()"
ms-class-1="active:el.active" ms-click="switchDay(el)" ms-class-3="no-line:$index%4==3||$last">
<i class="x-circle"></i><span>D{{$index+1}}</span>
<div class="dline"></div>
</li>
<div class="day-prompt" ms-controller="dayPrompt" ms-css-left="x" ms-css-top="y" ms-visible="show">
<span>{{prompt}}</span><span class="v-mock">a</span>
<div class="arrow"></div>
</div>
</ul>
</div>
<div class="day-tour-ctn">
<div class="one-time" ms-repeat-el="dayTour">
<i class="x-clock"></i>
<div class="time-time" ms-visible="el.time">{{el.time}}</div>
<div class="time-head">{{el.title}}</div>
<div class="time-content">
<div class="time-content-wrap" ms-repeat-ct="el.items">
<img ms-src="{{ct.image_url}}" alt="" onerror="this.parentNode.removeChild(this);" />
<h4>{{ct.title}}</h4>
<p>{{ct.description}}</p>
</div>
</div>
</div>
</div>
<div class="day-nav-ctn" ms-if="tour_plan.length>1" ms-mouseleave="mouseleave()">
<ul>
<li ms-repeat-el="tour_plan"
ms-mouseover="mousein($index,el.title,$event)"
ms-mouseout="mouseout()"
ms-class-1="active:el.active" ms-click="switchDay(el)" ms-class-3="no-line:$index%4==3||$last">
<i class="x-circle"></i><span>D{{$index+1}}</span>
<div class="dline"></div>
</li>
<div class="day-prompt" ms-controller="dayPrompt" ms-css-left="x" ms-css-top="y" ms-visible="show">
<span>{{prompt}}</span><span class="v-mock">a</span>
<div class="arrow"></div>
</div>
</ul>
</div>
</div>
<div class="simple-tour-ctn" ms-if="tour_plan.length > 0 && tour_plan_type == 2">
<div class="tour-content" ms-repeat-el="tour_plan">
<div class="tour-content-ctn" ms-repeat-ct="el.items">
<div class="tour-content-wrap">
<h4 ms-visible="ct.title">{{ct.title}}</h4>
<img ms-src="{{ct.image_url}}" alt="" onerror="this.parentNode.removeChild(this);" />
<p ms-if="ct.description">{{ct.description}}</p>
</div>
</div>
</div>
</div>
<div class="section-title" ms-if="communications.length>0||all_landinfo.length>0">
<h2>{{album_info.landinfo_md_title}}</h2>
<div class="back-line"></div>
</div>
<div class="one-communication" ms-visible="communications.length > 0" ms-repeat-item="communications">
<i class="icon icon-bus-circle-bg"></i>
<div class="communication-text">
<h3 class="title">{{ item.title }}</h3>
<p class="desc">{{ item.description | html }}</p>
</div>
</div>
<div class="all-land-ctn" ms-if="all_landinfo.length>0">
<div class="one-all-land" ms-class="first-all-land:$first" ms-repeat-el="all_landinfo">
<div class="all-land-name">
<h3>{{el.title}}</h3>
</div>
<div class="all-land-list">
{{el.list|html}}
</div>
</div>
</div>
</section>
<!-- 买前必看 + 兑换及使用 老 -->
<div class="content-item" ms-controller="productNoticeCtrl" id="tab_please_read" ms-if="!data.please_read">
<section class="buy-notice tab-content" ms-controller="buyNotice">
<div id="buy_notice">
<div class="section-title">
<h2>服务包含/购买须知</h2>
<div class="back-line"></div>
</div>
<div class="product-rule col-ctn">
<ul>
<li class="r-redeem">
<h3>兑换规则</h3>
<p>{{rules.redeem_desc|html}}</p>
</li>
<li class="r-buy">
<h3>购买时间</h3>
<p>{{rules.sale_desc}}</p>
</li>
<li class="r-return">
<h3>退款限制</h3>
<p>{{rules.return_desc}}</p>
</li>
<li class="r-shipping">
<h3>发货限制</h3>
<p>{{rules.shipping_desc}}</p>
</li>
</ul>
</div>
<div class="service-include col-ctn" ms-repeat-el="service_include" ms-class="no-border:$first">
<div class="left-column">{{el.key|html}}</div>
<div class="content-list plain-list">{{el.val|html}}</div>
</div>
<div class="how-it-works col-ctn" ms-repeat="how_it_works">
<div class="left-column">{{$key|html}}</div>
<div class="content-list plain-list">{{$val|html}}</div>
</div>
</div>
<div class="exchange-places" id="exchange-places">
<div class="section-title" ms-if="pick_landinfo_groups.length>0">
<h2>兑换地点</h2>
<div class="back-line"></div>
</div>
<div class="gmap-ctn" ms-if="pick_landinfo_groups.length>0">
<img ms-src="{{gmap_url}}" alt="" />
</div>
<div class="redeem-places col-ctn" ms-if="pick_landinfo_groups.length>0">
<div ms-repeat-el="pick_landinfo_groups">
<div class="left-column">{{el.title}}</div>
<div class="content-list plain-list">
<div class="redeem-place" ms-repeat-pl="el.landinfos">
<h3>{{pl.seq}}. {{pl.name}}</h3>
<p ms-if="pl.address">详细地址:{{pl.address}}</p>
<p ms-if="pl.communication">到达方式:{{pl.communication}}</p>
<p ms-if="pl.phone">联系电话:{{pl.phone}}</p>
<p ms-if="pl.open_time">开放时间:{{pl.open_time}}</p>
<p ms-if="pl.close_time">关闭时间:{{pl.close_time}}</p>
</div>
</div>
</div>
</div>
</div>
</section>
</div>
<!-- 买前必看 + 兑换及使用 新 -->
<div class="content-item product-service-include" id="tab_service_include" ms-controller="productNoticeCtrl"
ms-if="data.please_read && local.type != 8">
<div class="container">
<div class="part-title-row">
<div class="part-title">服务包含</div>
</div>
<div class="services clearfix" ms-repeat-service="data.service_include" ms-class="border-top : $index != 0">
<div class="title-col">
<div class="title-text" ms-html="service.title"></div>
</div>
<div class="content-col">
<div class="service-include-md" ms-html="service.detail"></div>
</div>
</div>
</div>
</div>
<div class="content-item product-please-read" id="tab_please_read" ms-controller="productNoticeCtrl"
ms-if="data.please_read">
<div class="container">
<div class="part-title-row">
<div class="part-title">购买须知</div>
</div>
<div class="notes clearfix">
<div class="title-col">
<div class="title-text">购买须知</div>
</div>
<div class="content-col">
<div class="markdown-text" ms-visible="data.please_read.rules.sale_desc != ''">
<div>
<h4>购买时间</h4>
<ul>
<li ms-html="data.please_read.rules.sale_desc"></li>
</ul>
</div>
</div>
<div class="markdown-text" ms-visible="data.please_read.rules.redeem_desc">
<div>