-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.html
3136 lines (2998 loc) · 241 KB
/
test.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=gb2312"/>
<title>出团说明书</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0"/>
<style>
@charset "utf-8";
html, body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, input, textarea, p, blockquote, th, td, em, button { margin:0; padding:0; }
html { background-color:#FFF; }
body { background-color:#FFF; font-size:12px; line-height:1.5; font-family:Tahoma,Simsun,sans-serif; color:#333; }
img, fieldset { margin:0; padding:0; border:0; }
input, textarea {font-size:12px;}
table { border-collapse:collapse; }
a { color:#0065bb; text-decoration:none; outline:none; }
a:hover { text-decoration:underline; }
h1, h2, h3, h4, h5 { font-family:Arial,Simsun,sans-serif; }
ul li, ol li { list-style:none; }
dfn { font-style:normal; font-size:12px; font-family:Arial !important; }
select { padding:1px; font-family:Arial,Simsun,sans-serif; border:1px solid #CCC; background-color:#FFF; }
input[type="text"],input[type="number"] { padding:3px; border:solid 1px #CCC; box-shadow: 1px 1px 3px #DDDDDD inset; }
input[type="text"]:focus,input[type="number"]:focus{ background-color:#f1f9ff; border-color:#5d9de5 #67a1e2 #67a1e2 #5d9de5; border-style:solid; border-width:1px;box-shadow: 1px 1px 3px #d0dee6 inset;}
.basefix,.layoutfix { *zoom:1; }
.basefix:after,.layoutfix:after { clear:both; content:'.'; display:block; height:0; overflow:hidden; }
.float_left { float:left !important; }
.float_right { float:right !important; }
.invisible { visibility:hidden !important; }
.hidden { display:none !important; }
.border_none { border:0 none !important; }
.base_price { font-style:normal; font-family: arial; text-decoration:none; }
.base_price dfn { font-family: Arial, Simsun; font-size: 12px; }
.base_price strong {font-family:Verdana;}
.input_error {background-color: #FFF7D9 !important;border-color: #D80000 #E50000 #E50000 #D80000 !important;border-style: solid;}
.input_default { color:#808080 !important; }
.inputSel{ color:#808080;}
/* labels&it's input */
.base_label { _padding-bottom: 1px; *display: inline-block; border-bottom:1px solid transparent; _border-bottom:none; _font-family:Simsun; cursor: pointer; }
.base_label:hover { border-bottom: 1px dashed #aaa; }
.base_label input { margin: -4px 3px 0 0; *margin-top: -2px; width: 12px; height: 12px; overflow:hidden; border: none; font-family:Arial; vertical-align: middle; }
/* alert */
.c_alert { padding-left:7px; background: url(//pic.c-ctrip.com/common/bg_alertinfo.gif) no-repeat 0 -8px; overflow:hidden; }
.c_alertinfo { padding:4px 5px 4px 8px; border:1px solid #ffb533; border-left:0; color:#333;font-size:12px;line-height:20px;background-color:#fff5d1; }
/**bottom_advantage**/
.bottom_advantage_wrap{background-color:#3D95C9;height:80px;padding:30px 0;min-width:1000px;}
.bottom_advantage{width:980px;margin:0 auto;overflow:hidden;}
.bottom_advantage dl{padding-left:80px;float:left;height:80px;border-right:1px dotted #77B5D9;float:left;overflow:hidden;position:relative;}
.bottom_advantage dt{color:#fff;font:16px microsoft yahei;width:100%;float:left;padding-bottom:3px;}
.bottom_advantage dt i{position:absolute;background-color:#3D95C9;}
.bottom_advantage dd{float:left;width:115px;}
.bottom_advantage dd a{color:#fff;}
.bottom_advantage .special_instruct{width:100%;padding-top:2px;color:#9ac7e2;}
.bottom_advantage .security{width:366px;}
.bottom_advantage .security dt i,.bottom_advantage .help dt i,.bottom_advantage .guide dt i{ background:url(//pic.c-ctrip.com/vacation_v1/un_base_common.png?20131118.png) no-repeat;}
.bottom_advantage .security dt i{width:39px;height:42px;background-position:0 -185px;left:25px;}
.bottom_advantage .help{width:230px;}
.bottom_advantage .help dt i{width:47px;height:42px;background-position:-40px -185px;left:19px;top:4px;}
.bottom_advantage .guide{width:142px;border:0 none;}
.bottom_advantage .guide dt i{width:44px;height:39px;background-position:-88px -185px;left:22px;top:4px;}
/* small page */
/*=== 进度条 S ===*/
.tri{position:relative;height:22px;padding-left:11px;margin-left:-11px;background:url(//pic.c-ctrip.com/vacation_v1/bg_process_step02.png) no-repeat left -88px;}
.con{height:22px;padding-right:11px;line-height:22px;text-align:center;color:#b9b9b9;background:url(//pic.c-ctrip.com/vacation_v1/bg_process_step02.png) repeat-x 0 -44px;}
.step1, .step2, .step3, .step4, .step5, .step6, .step7{width:978px;margin:10px auto;border:1px solid #ccc;}
.step_table{table-layout:fixed; width:100%; }
.step1 .first .con, .step2 .second .con, .step3 .third .con, .step4 .fourth .con, .step5 .fif th .con, .step6 .sixth .con, .step7 .seventh .con{background-position:0 0;font-weight:bold;color:#fff;}
.step1 .first .tri, .step2 .second .tri, .step3 .third .tri, .step4 .fourth .tri, .step5 .fifth .tri, .step6 .sixth .tri, .step7 .seventh .tri{background-position:left -66px;}
.step2 .first .con, .step3 .first .con, .step3 .second .con, .step4 .first .con, .step4 .second .con, .step4 .third .con, .step5 .first .con, .step5 .second .con, .step5 .third .con, .step5 .fourth .con, .step6 .first .con, .step6 .second .con, .step6 .third .con, .step6 .fourth .con, .step6 .fifth .con, .step7 .first .con, .step7 .second .con, .step7 .third .con, .step7 .fourth .con, .step7 .fifth .con, .step7 .sixth .con{background-position:left -22px;color:#333;}
.step2 .first .tri, .step3 .first .tri, .step3 .second .tri, .step4 .first .tri, .step4 .second .tri, .step4 .third .tri, .step5 .first .tri, .step5 .second .tri, .step5 .third .tri, .step5 .fourth .tri, .step6 .first .tri, .step6 .second .tri, .step6 .third .tri, .step6 .fourth .tri, .step6 .fifth .tri, .step7 .first .tri, .step7 .second .tri, .step7 .third .tri, .step7 .fourth .tri, .step7 .fifth .tri, .step7 .sixth .tri{background-position:left -110px;}
/*=== 进度条 e ===*/
/*****小分页 开始*****/
.search_sort .float_right { margin:12px 10px 0 0; color:#808080; _display:inline; }
.btn_hotels_search { width:50px; height:22px; background:url(//pic.c-ctrip.com/packages111012/un_detail_btn.png?120206.png) no-repeat -160px -44px; border:none; cursor:pointer; }
.c_page2_pre, .c_page2_next, .c_page2_pre_dis, .c_page2_next_dis { height:18px; float:left; background:url(//pic.c-ctrip.com/vacation_v1/un_base_common.png?20131118.png) no-repeat; background-color:#fff; color:#808080; }
.c_page2_pre, .c_page2_pre_dis { width:18px; background-position:-14px 5px; text-indent:-999em; overflow:hidden; }
.c_page2_next, .c_page2_next_dis { padding-left:3px; background-position:50px 5px; width:57px; text-align:left; }
.c_page2_pre, .c_page2_next{ border:1px solid #ccc;}
.c_page2_pre:hover, .c_page2_next:hover { color:#666; text-decoration:none; border:1px solid #808080;}
.c_page2_pre:hover { background-position:-14px -22px; }
.c_page2_next:hover { background-position:50px -22px; }
.c_page2_pre, .c_page2_pre_dis, .c_page2_pre:hover{ margin-right:1px;}
.c_page2_pre_dis, .c_page2_next_dis { color:#e6e6e6; cursor:default; border:1px solid #f1f1f1;}
.c_page2_pre_dis:hover, .c_page2_next_dis:hover { text-decoration:none; color:#e6e6e6;border:1px solid #f1f1f1; }
.c_page2_pre_dis { background-position:-14px -49px; }
.c_page2_next_dis { background-position:50px -49px; }
.c_page2_numtop { float:left; margin:2px 5px 0 0; }
/*****小分页 结束******/
/* big page=s*/
.sr_page { padding:0 10px; }
/* page */
.c_page { height:26px; padding:10px 0; color:#666; font: 12px/2 Arial; *float:right; }
.c_page a{ border-radius: 2px;}
.c_page_list, .c_up, .c_down, .c_pagevalue, .c_up_nocurrent, .c_down_nocurrent { display:inline-block; vertical-align:middle; *float:left; }
.c_up, .c_down, .c_up_nocurrent, .c_down_nocurrent{ background-image:url(//pic.c-ctrip.com/common/un_vacation_page.png); }
.c_up, .c_down, .c_up_nocurrent, .c_down_nocurrent { width:25px; height:0; overflow:hidden; padding:23px 0 0; border:0; background-position:0 -50px; }
.c_up { margin-right:10px; border: solid 1px #cccccc; background-position: -105px 0; }
.c_up:hover {background-color: #bcddf9; background-position:-105px -25px; text-decoration:none; }
.c_down { width:70px; margin-left:1px; border: solid 1px #ccc; background-position:-41px 0; }
.c_down:hover { background-color: #bcddf9; background-position:-41px -25px; }
.c_page_list { margin-right:10px; }
.c_page_list a, .c_page_list .c_page_ellipsis { float:left; }
.c_page_list a, .c_page_submit { height:23px; margin:0 1px; padding:0 8px; border:solid 1px #bfbdbd; background-color: #fafafa; font-weight:bold; color:#666; text-decoration:none; overflow:hidden; }
.c_page_list a:hover, .c_page_submit:hover { background-color: #bcddf9; color: #fff; text-decoration:none; border-color: #9fbdd7; }
.c_page_list .c_page_ellipsis { margin:0 3px; }
.c_page_list .current, .c_page_list .current:hover {background-color: #77bcf7; cursor:default; border-color:#5295c5; color: #fff;}
.c_up_nocurrent, .c_up_nocurrent:hover { margin-right:10px; border: solid 1px #ccc; background-position: -106px -50px; color:#666; cursor:default; }
.c_down_nocurrent, .c_down_nocurrent:hover { width:70px; border: solid 1px #ccc; background-position: -41px -50px; cursor:default; }
.c_pagevalue { margin-left:20px; }
.c_pagevalue .c_page_num { box-sizing: content-box; width:25px; height:14px; padding:3px; border:1px solid #ccc; margin:0 4px; }
.c_page_submit { width: 40px; margin-left:10px; font-weight:normal; cursor: pointer; line-height:22px; *padding:0 8px 0 6px;}
/********************************New Index**********************************/
.vacation_nav,.hot_destination h2.current,.hot_destination h2.current i,.destination_detail dt .arrow,.right_unfold .close,.month_destination h4 .more,.visa_btn input,.search_box .search_btn,.search_box .advance_search,.search_box .input_notice,.destination_detail h3 .more,.start_city h2,.advance_box .search,.advance_box .close,.destination_box .eurail_detail .eurail_search,.start_city h2 i,.destination_select h2,.destination_select h2 i,.search_box_wrap,.to_top,.destination_detail .local_detail dt,.destination_detail .cruise_detail dt,.destination_detail h4,.more i {background-image:url(//pic.c-ctrip.com/vacation_v1/un_channel.png);background-repeat:no-repeat;}
/**crumbs**/
.crumbs {color: #999999;font-family: verdana,simsun;}
/**to_top**/
.to_top {position:fixed;height:0;width:30px;right:0;bottom:5%;overflow:hidden;padding-top:30px;background-position:-252px -115px;z-index:50;overflow:hidden;_position:absolute;}
.to_top:hover {background-position:-222px -115px;}
/**SEO**/
.bottom_linkbox dt .web_map{float:right;font-weight:normal;margin:0;}
.bottom_linkbox dt .web_map:hover{border:0 none;color:#0082C6;text-decoration:underline;}
.bottom_linkbox dt { margin:0 10px; border-bottom:1px solid #E7E7E7;}
.bottom_linkbox dt a { margin-right:20px; line-height:30px; cursor:pointer; display:block; color:#999; font-weight:bold; height:30px; float:left; position:relative; margin-bottom:-1px;}
.bottom_linkbox dt .current { border-bottom:1px solid #0082C6; }
.bottom_linkbox dt a:hover { border-bottom:1px solid #0082C6; text-decoration:none; }
.bottom_linkbox dd { padding:5px 10px; line-height:18px;}
.bottom_linkbox dd a { color:#999; margin-right:8px; display:inline-block;}
.bottom_linkbox dd a:hover { color:#0082C6; }
.bottom_linkbox .hidden { display:none; }
.bottom_linkbox .bold{ font-weight:bold;color:#999;margin-right:15px;}
.seo_box{margin:10px auto;width:980px;border:1px solid #EAEAEA;}
.seo_box p a {color:#999;}
.seo_box p a:hover {color:#0082c6;}
/**SEO-20130606**/
.bottom_linkModule dt .web_map{float:right;font-weight:normal;margin:0;}
.bottom_linkModule dt .web_map:hover{border:0 none;color:#0082C6;text-decoration:underline;}
.bottom_linkModule dt { margin:0 20px; line-height:24px; border-bottom:1px solid #E7E7E7;}
.bottom_linkModule dt span {font-weight:bold;color:#999;}
.bottom_linkModule dt a {color:#999;}
.bottom_linkModule dd { padding:5px 20px; line-height:18px;}
.bottom_linkModule dd a {color:#999; margin-right:8px; display:inline-block;}
.bottom_linkModule dd a:hover { color:#0082C6; }
.bottom_linkModule .hidden { display:none; }
.bottom_linkModule .bold{ font-weight:bold;color:#999;margin-right:15px;}
.seo_box{margin:10px auto;width:980px;border:1px solid #EAEAEA;padding:15px 0px 10px;}
.seo_box p {color:#999;padding:0 20px 5px;}
/**AD**/
.ad_bottom { width:980px; margin:0 auto 20px; font-size:0; height:86px; overflow:hidden; white-space:nowrap;}
.ad_bottom a {display:inline-block; width:311px; height:86px; margin-right:23px; overflow:hidden; }
.ad_bottom a img {width:311px;height:86px;}
/**base_alert pop**/
.base_alert {position: absolute;z-index: 999;}
.base_alert .alert_info {background-color:#FFF5D1;border:1px solid #FFB533;padding:3px;}
.base_alert b,.base_alert i{position:absolute;height:0;width:0;line-height:0;font-size:0;border-left:0 none;top:8px;}
.base_alert b{border-right:5px solid #FFB533;border-top:5px dashed transparent;border-bottom:5px dashed transparent;left:-5px;}
.base_alert i{border-right:5px solid #FFF5D1;border-top:5px dashed transparent;border-bottom:5px dashed transparent;left:-4px;}
/****20130902liuff**翻页=s******/
.pkg_page{height: 26px; padding: 10px 0; }
.pkg_page a{ float: left; width: 24px; padding: 3px 0 3px 0; text-align: center;color: #0065bb; border:1px solid #ccc; background-color: #fff; margin-right:3px; }
.pkg_page a:hover{ text-decoration: none; color: #0065bb;border:1px solid #3da0e7;}
.pkg_page .current,.pkg_page .current:hover{ color: #fff;border:1px solid #3da0e7; background-color: #64bbfa; font-weight: bold;}
.pkg_page_ellipsis{float: left; margin:0 6px 0 3px;}
.pkg_page .up{ margin-right:10px; *padding: 5px 0 4px 0;}
.pkg_page .down{ margin-left:10px;width: 62px; _padding: 5px 0 3px 0;}
.pkg_page .up b,.pkg_page .down b{ display: inline-block; width: 0; height: 0; line-height:0; vertical-align:-2px;*vertical-align:-4px;}
.pkg_page .up b{ border-width: 6px 6px 6px 0; border-style: dashed solid dashed dashed; border-color: transparent #0065bb transparent transparent; margin-left:-2px; }
.pkg_page .down b{ border-width: 6px 0 6px 6px; border-style: dashed dashed dashed solid; border-color: transparent transparent transparent #0065bb; margin-left:6px;}
.pkg_page .up_nocurrent,.pkg_page .up_nocurrent:hover,.pkg_page .down_nocurrent,.pkg_page .down_nocurrent:hover{cursor: default; border:1px solid #ccc;color: #ccc;}
.pkg_page .up_nocurrent b,.pkg_page .up_nocurrent:hover b{ border-color: transparent #ccc transparent transparent;}
.pkg_page .down_nocurrent b,.pkg_page .down_nocurrent:hover b{border-color: transparent transparent transparent #ccc; }
.pkg_pagevalue { float: left; margin-left:20px; height: 26px; line-height: 26px; }
.pkg_pagevalue .pkg_page_num { width:25px; height:14px; padding:3px; border:1px solid #ccc; margin:0 4px;}
.pkg_page_submit { width: 40px; margin-left:10px; font-weight:normal; cursor: pointer; height: 24px; line-height:24px;border:1px solid #ccc; background-color: #fff; }
.pkg_page_submit:hover{ border:1px solid #3da0e7;}
/******翻页=e******/
/******进度条=s******/
.progress_bar { width: 100%; *zoom:1;padding: 30px 0 10px; }
.progress_bar:after { clear:both; content:'.'; display:block; height:0; overflow:hidden; }
.progress_bar li { float: left; width: 25%;border-top: 6px solid #D7D7D7; text-align: center;color: #999999;position: relative;line-height: 42px; }
.progress_bar li i {position: absolute; left: 50%; margin-left: -10px;top:-13px; height: 20px;width: 20px;background: url(//pic.c-ctrip.com/vacation_v1/un_base_common.png?20131118.png) -64px 0 no-repeat; }
.progress_bar .complete { color: #FF9813;border-top: 6px solid #FF9813; }
.progress_bar .complete i { background-position: -36px 0 ; }
/******进度条=e******/
/****************按钮=s****************/
/****red按钮common=s****/
input.btn_red_big,input.btn_red_middle,input.btn_red_small,input.btn_blue_big,input.btn_blue_middle,input.btn_blue_small,input.btn_big_disabled,input.btn_middle_disabled, input.btn_small_disabled,input.btn_proess_big,input.btn_proess_big:hover,input.btn_proess_big_disabled,input.btn_normal,input.btn_normal_disabled,input.btn_proess_big_disabled:hover
{*overflow:visible;line-height:normal;}
.btn_red_big,
.btn_red_middle,
.btn_red_small{
display: inline-block;
background-color: #fb9125;
background-image: -webkit-linear-gradient(top, #fb9125, #fa8721);
background-image: -moz-linear-gradient(top, #fb9125, #fa8721);
background-image: -ms-linear-gradient(top, #fb9125, #fa8721);
background-image: -o-linear-gradient(top, #fb9125, #fa8721);
background-image: linear-gradient(top, #fb9125, #fa8721);
color: #fff;
border-radius: 3px;
text-align: center;
border: 1px solid #e08821;
-webkit-box-shadow: inset 0 1px 0 0 #fcad5c;
box-shadow: inset 0 1px 0 0 #fcad5c;
}
.btn_red_big:hover,
.btn_red_middle:hover,
.btn_red_small:hover{
background-color: #fd7b2b;
background-image: -webkit-linear-gradient(top, #fd802c, #fd6f29);
background-image: -moz-linear-gradient(top, #fd802c, #fd6f29);
background-image: -ms-linear-gradient(top, #fd802c, #fd6f29);
background-image: -o-linear-gradient(top, #fd802c, #fd6f29);
background-image: linear-gradient(top, #fd802c, #fd6f29);
border: 1px solid #fc6621;
-webkit-box-shadow: inset 0 1px 0 0 #fea161;
box-shadow: inset 0 1px 0 0 #fea161;
cursor: pointer;
text-decoration: none;
}
/****red按钮common=e****/
/****blue按钮common=s****/
.btn_blue_big,
.btn_blue_middle,
.btn_blue_small{
display: inline-block;
background-color: #39a7ee;
background-image: -webkit-linear-gradient(top, #40a8eb, #3ba0e6);
background-image: -moz-linear-gradient(top, #40a8eb, #3ba0e6);
background-image: -ms-linear-gradient(top, #40a8eb, #3ba0e6);
background-image: -o-linear-gradient(top, #40a8eb, #3ba0e6);
background-image: linear-gradient(top, #40a8eb, #3ba0e6);
color: #fff;
border-radius: 3px;
text-align: center;
border: 1px solid #2a93d5;
-webkit-box-shadow: inset 0 1px 0 0 #70bef0;
box-shadow: inset 0 1px 0 0 #70bef0;
}
.btn_blue_big:hover,
.btn_blue_middle:hover,
.btn_blue_small:hover{
background-color: #1d8fd9;
background-image: -webkit-linear-gradient(top, #2790d6, #2388ce);
background-image: -moz-linear-gradient(top, #2790d6, #2388ce);
background-image: -ms-linear-gradient(top, #2790d6, #2388ce);
background-image: -o-linear-gradient(top, #2790d6, #2388ce);
background-image: linear-gradient(top, #2790d6, #2388ce);
border: 1px solid #2183c3;
-webkit-box-shadow: inset 0 1px 0 0 #5dace0;
box-shadow: inset 0 1px 0 0 #5dace0;
cursor: pointer;
text-decoration: none;
}
/****blue按钮common=e****/
/****gray按钮common=s****/
.btn_big_disabled,.btn_big_disabled:hover,
.btn_middle_disabled, .btn_middle_disabled:hover,
.btn_small_disabled,.btn_small_disabled:hover{
display: inline-block;
background-color: #e7e7e7;
background-image: -webkit-linear-gradient(top, #e9e9e9, #e6e6e6);
background-image: -moz-linear-gradient(top, #e9e9e9, #e6e6e6);
background-image: -ms-linear-gradient(top, #e9e9e9, #e6e6e6);
background-image: -o-linear-gradient(top, #e9e9e9, #e6e6e6);
background-image: linear-gradient(top, #e9e9e9, #e6e6e6);
border: 1px solid #d6d6d6;
border-radius: 3px;
-webkit-box-shadow: inset 0 1px 0 0 #efefef;
box-shadow: inset 0 1px 0 0 #efefef;
color: #aaa;
text-align: center;
cursor: default;
text-decoration: none;
text-shadow:1px 1px #fff;
}
/****gray按钮common=e****/
/****按钮私有=s****/
.btn_red_big,
.btn_blue_big,
.btn_big_disabled {height:40px; padding: 0 40px;font: 18px/40px 'microsoft yahei',simsun,sans-serif;}
.btn_red_middle,
.btn_blue_middle,
.btn_middle_disabled {height:34px; padding: 0 18px;font: 16px/34px 'microsoft yahei',simsun,sans-serif;}
.btn_red_small,
.btn_blue_small,
.btn_small_disabled {height:22px; padding: 0 14px;font: 12px/22px 'microsoft yahei',simsun,sans-serif;}
/****按钮私有=e****/
/****流程页按钮私有=s****/
.btn_proess_big,.btn_proess_big:hover,.btn_proess_big_disabled,.btn_proess_big_disabled:hover{height:56px; padding: 0 10px;font: 20px/56px 'microsoft yahei',simsun,sans-serif;}
.btn_proess_big{
display: inline-block;
background-color: #fb9125;
background-image: -webkit-linear-gradient(top, #fb9125, #fa8721);
background-image: -moz-linear-gradient(top, #fb9125, #fa8721);
background-image: -ms-linear-gradient(top, #fb9125, #fa8721);
background-image: -o-linear-gradient(top, #fb9125, #fa8721);
background-image: linear-gradient(top, #fb9125, #fa8721);
color: #fff;
text-align: center;
border: 1px solid #e08821;
-webkit-box-shadow: inset 0 1px 0 0 #fcad5c;
box-shadow: inset 0 1px 0 0 #fcad5c;
}
.btn_proess_big:hover{
background-color: #fd7b2b;
background-image: -webkit-linear-gradient(top, #fd802c, #fd6f29);
background-image: -moz-linear-gradient(top, #fd802c, #fd6f29);
background-image: -ms-linear-gradient(top, #fd802c, #fd6f29);
background-image: -o-linear-gradient(top, #fd802c, #fd6f29);
background-image: linear-gradient(top, #fd802c, #fd6f29);
border: 1px solid #fc6621;
-webkit-box-shadow: inset 0 1px 0 0 #fea161;
box-shadow: inset 0 1px 0 0 #fea161;
cursor: pointer;
text-decoration: none;
}
.btn_proess_big_disabled,.btn_proess_big_disabled:hover{
display: inline-block;
background-color: #e7e7e7;
background-image: -webkit-linear-gradient(top, #e9e9e9, #e6e6e6);
background-image: -moz-linear-gradient(top, #e9e9e9, #e6e6e6);
background-image: -ms-linear-gradient(top, #e9e9e9, #e6e6e6);
background-image: -o-linear-gradient(top, #e9e9e9, #e6e6e6);
background-image: linear-gradient(top, #e9e9e9, #e6e6e6);
border: 1px solid #d6d6d6;
-webkit-box-shadow: inset 0 1px 0 0 #efefef;
box-shadow: inset 0 1px 0 0 #efefef;
color: #aaa;
text-align: center;
cursor: default;
text-decoration: none;
text-shadow:1px 1px #fff;
}
/****流程页按钮私有=e****/
/****normal按钮私有=s****/
.btn_normal,.btn_normal_disabled{ display: inline-block; height: 24px; padding: 0 10px; font: 12px/24px simsun,sans-serif; border-radius: 2px; text-align: center;}
.btn_normal{color: #fff; color: #333333; border: 1px solid #bbbbbb; background-color: #f8f8f8; cursor: pointer;}
.btn_normal:hover{color: #0065bb;text-decoration: none;}
.btn_normal_disabled,.btn_normal_disabled:hover{color: #aaa; border: 1px solid #d6d6d6; background-color: #e7e7e7; text-decoration: none;text-shadow:1px 1px #fff;}
/****normal按钮私有=e****/
/************按钮=e************/
/******=s 产品类型******/
.function_label{ position: fixed; top:50%; right: 0; text-align: right;z-index:99;}
.function_label .disable .label_list_coentent{ display: none;}
.label_list1,.label_list2,.label_list3,.label_list4,.label_route,.label_list1:hover,.label_list2:hover,.label_list3:hover,.label_list4:hover,.label_route:hover{position: relative; width: 45px;height: 45px; background-image: url(//pic.c-ctrip.com/vacation_v1/un_base_common.png?20131118.png);background-repeat: no-repeat; margin-bottom: 2px; *cursor: pointer;}
.label_list1{ background-position: 0 -70px; height: 55px;}
.label_list2{ background-position: -48px -80px;}
.label_list3{ background-position: -96px -80px;}
.label_list4{ background-position: -144px -80px;}
.label_route{ background-position: -96px -13px; height: 64px;margin-bottom: 26px;}
.label_route:hover{ margin-bottom: 26px; }
.label_list1:hover,.label_list2:hover,.label_list3:hover,.label_list4:hover,.label_route{ cursor: pointer;}
.label_list1:hover{ background-position: 0 -127px;height: 55px;}
.label_list2:hover,.function_label .current{ background-position: -48px -137px;}
.label_list3:hover{ background-position: -96px -137px;}
.label_list4:hover{ background-position: -144px -137px;}
.label_route:hover{ background-position: -144px -13px; height: 64px;}
.label_list_coentent{ position: absolute; z-index: 999; left: -173px; background-color: #ffae00; padding:8px 0 7px 10px; border-radius: 3px 0 0 3px;}
.label_xl,.label_hh,.label_rr,.label_xx,.label_yj{ float: left; width: 30px;height: 30px;background-image: url(//pic.c-ctrip.com/vacation_v1/bg_function_icon.png); background-repeat: no-repeat; margin-right: 3px;}
.label_xl{ background-position: 0 0;}
.label_hh{background-position: -31px 0;}
.label_rr{background-position: -62px 0;}
.label_xx{background-position: -93px 0;}
.label_yj{background-position: -124px 0;}
/******=e 产品类型******/
/******=s 蒙版******/
.base_masking{background-color: #fff; border: 1px solid #b1daf5;}
.base_masking h2{ font-size: 14px; background: url(//pic.c-ctrip.com/vacation_v1/un_base_common.png?20131118.png) 0 -230px repeat-x; height: 35px; line-height: 35px; color: #fff; padding:0 10px 0 18px;}
.base_masking h2 a{ float: right; width: 14px; height: 14px; background: url(//pic.c-ctrip.com/vacation_v1/un_base_common.png?20131118.png) -36px -24px no-repeat; margin-top:8px; }
.base_masking h2 a:hover{ background-position: -36px -42px; text-decoration: none;}
.masking_padding{ padding: 15px;}
/******=e 蒙版******/
/**bottom seo**/
.bottom_seo2 a { color: #999; }
.bottom_seo2 dd a,.bottom_seo2 dd span { display: inline-block;margin-right: 6px; }
.bottom_seo2 dd span,.bottom_seo2 dd strong { color: #999; font-weight: bold; }
.bottom_seo2 { padding-bottom: 20px;padding: 10px;border: 1px solid #EAEAEA;margin: 20px auto; }
/**在线客服弹出层**/
.line_cus_pop{ position:relative;width:43px;height:0}
.line_cus_pop .cus_ser_con{padding:54px 20px 0 10px;text-align:left;width:134px;height:80px;background:url(//pic.c-ctrip.com/vacation_v1/line_cus.png);top:-107px;right:45px;position:absolute;}
.line_cus_pop .cus_ser_con a{background:#69bcfb;height:18px;line-height:18px;display:inline-block;margin: 0 2px;border-radius:10px;padding:0 8px;color:#fff;}
.line_cus_pop .cus_ser_con a:hover{text-decoration:none;}
.line_cus_pop .click_line_cus{font-size:14px;}
.line_cus_pop .closed_cus{position:absolute;width:15px;height:15px;cursor:pointer;top:54px;right:20px;background:url(about:blank);}
.line_cus_pop p{padding-top:5px;}
input[type="number"]::-webkit-inner-spin-button {display: none;}
input[type="number"] { -moz-appearance:textfield; }
/*=== 侧边栏弹出层20140819 ===*/
.function_btn i,.function_sub_list i,.function_collect_pop .close,.function_collect_pop .error i{background-image:url(//pic.c-ctrip.com/vacation_v2/un_function.png);background-repeat:no-repeat;}
.function_btn .function_print{background-image:url(//pic.c-ctrip.com/VacationOnlinePic/vacation_v2/detail/un_function.png);background-repeat:no-repeat;}
.side_function{position:fixed;_position:absolute;bottom:25%;right:0;z-index:99;}
.side_function li{zoom:1;position:relative;margin-top:-1px;width:61px;height:62px; vertical-align:top;}
.function_btn{width:60px;height:60px;text-align:center;border:1px solid #e1e1e1;border-right:0;background:#fff;color:#999;display:block;cursor:pointer;}
.function_btn:hover,.function_btn_hover{background:#69bcfb;color:#fff;text-decoration:none;zoom:1;border-color:#69bcfb;}
.function_btn_color:hover{background:#ffb346;border-color:#ffb346;}
.function_btn:hover em{display:none;}
.function_btn:hover span{display:inline;}
.function_btn span{display:none;}
.function_btn em{font-style:normal;}
.function_btn i{width:32px;height:32px;display:block;margin:6px auto 2px;}
.function_btn:hover .function_join{background-position:0 -32px;}
.function_btn .function_cancel{background-position:-32px 0;}
.function_btn:hover .function_cancel{background-position:-32px -32px;}
.function_btn .function_multiplayer{background-position:-64px 0;}
.function_btn:hover .function_multiplayer{background-position:-64px -32px;}
.function_btn .function_collect{background-position:-96px 0;}
.function_btn:hover .function_collect{background-position:-96px -32px;}
.function_btn .function_delete{background-position:-128px 0;}
.function_btn:hover .function_delete{background-position:-128px -32px;}
.function_btn .function_share{background-position:0 -64px;}
.function_btn:hover .function_share,.function_btn_hover .function_share{background-position:0 -96px;}
.function_btn .function_service{background-position:-32px -64px;}
.function_btn:hover .function_service{background-position:-32px -96px;}
.function_btn .function_feedback{background-position:-64px -64px;}
.function_btn:hover .function_feedback{background-position:-64px -96px;}
.function_btn .function_top{background-position:-96px -64px;}
.function_btn:hover .function_top{background-position:-96px -96px;}
.function_btn_color .function_quick{background-position:-128px -63px;}
.function_btn_color:hover .function_quick{background-position:-128px -96px;}
.function_btn .function_connect{background-position:-64px -160px;}
.function_btn:hover .function_connect{background-position:-96px -160px;}
.function_btn .function_phone{background-position:-64px -128px;}
.function_btn:hover .function_phone{background-position:-96px -128px;}
.function_btn .function_print{background-position:-124px -203px;}
.function_btn:hover .function_print{background-position:-124px -243px;}
.function_sub_list{position:absolute;right:61px;top:0;padding:6px 0 4px 10px;background:#69bcfb;width:190px;}
.function_sub_list a{margin-right:10px;float:left;display:inline;color:#fff;text-align:center;width:28px;cursor:pointer;}
.function_sub_list a:hover{text-decoration:none;}
.function_sub_list i{display:block;border:2px solid #85c8fc;width:24px;height:24px;border-radius:2px;margin-bottom:5px;}
.function_sub_list .function_sub_xl{background-position:-160px 0;}
.function_sub_list .function_sub_tx{background-position:-160px -24px;}
.function_sub_list .function_sub_rr{background-position:-160px -48px;}
.function_sub_list .function_sub_kj{background-position:-160px -72px;}
.function_sub_list .function_sub_yx{background-position:-160px -96px;}
.function_code{clear: both;position:absolute;right:0px;top:61px;width:198px;padding:20px 0 16px;text-align:center;background:#fff;border:1px solid #e1e1e1;border-top:none;color:#999;}
.function_code img{vertical-align:top;width:118px;height:118px;margin-bottom:10px;}
.function_collect_pop { position: absolute;width: 370px;right:60px;top:0;background-color: #fff;border: 1px solid #D5D5D5;border-top: 2px solid #69bcfb; text-align: left; }
.function_collect_pop h3 { height: 58px;padding: 0 10px;background-color: #eef8ff;color:#69bcfb;font: 18px/58px microsoft yahei,simsun,sans-serif;position: relative; }
.function_collect_pop .close {width: 25px;height: 25px;position: absolute;right: 20px;background-position:0 -128px;top:16px; }
.function_collect_pop .pop_bd { padding: 10px;zoom:1;}
.function_collect_pop .content_notice { background-color: #fff;position: relative; }
.function_collect_pop dl { padding: 4px 0 10px;border-top: 1px solid #EEEEEE;margin-top: -1px; }
.function_collect_pop dt { padding-bottom: 4px;color: #999999; }
.function_collect_pop .input_text { width: 152px;_padding:3px; }
.function_collect_pop .or { display: inline-block;width: 16px;text-align: center;color: #999; }
.function_collect_pop .error { color: #FF4C4C;padding-bottom: 10px; }
.function_collect_pop .error i { display: inline-block;width: 12px;height: 12px;background-position: -160px -128px;vertical-align: -2px;margin-right: 4px; }
.public_bar_content{ position: absolute; z-index: 120; border:1px solid #69bcfb; background-color: #fff;}
.public_bar_content i{position: absolute; width:0; height:0; line-height:0; top: 50%; right: -10px; margin-top: -10px; border-style:dashed none dashed solid ; border-width:10px 0 10px 10px; border-color: transparent transparent transparent #fff; }
.public_connect_us{width: 220px; height: 90px;padding: 20px;left: -261px; top: -35px;}
.public_connect_us p{font:normal 16px/24px "Microsoft Yahei",Tahoma,Simsun,sans-serif;}
.public_connect_us .phone{ color: #69bcfb; font:normal 30px/30px Tahoma,Simsun,sans-serif; margin-top: 10px;}
.public_twodimension_code{ width: 270px; left: -271px; top: -64px;background:url(//pic.c-ctrip.com/vacation_v2/searchresult/bg_searchcode.png) no-repeat 0 0;height:166px;}
.public_twodimension_code .img{position: absolute;left: 47px;top: 43px;width: 94px;height: 94px;}
.public_twodimension_code .link{display: block; background-color: #f4f7f9; height: 26px; line-height: 26px; color: #333; text-align: center;}
/****search new=s 含产品选择的新版搜索框****/
.new_search_content{ position: relative;float: left; width: 280px; height: 34px; border: 3px solid #FE9813; padding-left: 105px; border-radius: 5px 0 0 5px; box-shadow:1px 1px 3px #DDD inset;}
.new_search_box{position: relative;height: 34px; overflow:hidden;}
.new_search_notice{position: absolute; z-index: -1; top: 0;left: 0; width:280px;height: 34px; font: 16px/34px microsoft yahei,simsun; text-indent: 1em; color: #808080; cursor: text;}
.new_search_content .search_txt{width:272px;height: 27px;font: 16px/27px microsoft yahei,simsun,sans-serif; background-color: transparent; border: 0 none; box-shadow: inherit;}
.catalog_list{position: absolute;z-index: 1; top: 0 ;left: 0; background-color: #fff; width: 102px;border-width: 1px; border-style: solid; }
.catalog_list a{display: block;font: 14px/28px microsoft yahei,simsun,sans-serif; color: #666; padding-left: 10px;}
.catalog_list a:hover{text-decoration: none;}
.catalog_list dt a{position: relative; color: #333; line-height: 32px; height: 33px; }
.catalog_list dt i{position: absolute; width:0; height:0; line-height:0; overflow: hidden; font-size: 0; right: 10px;}
.catalog_list dd a:hover{ background-color: #eee; color: #666;}
.catalog_icon_down{border-color: #FE9813; border-right-width: 2px;}
.catalog_icon_down dt a{ background-color: #fff8d5; }
/*.catalog_icon_down dt a{ background-position: 0 -774px;background-color: #fff; background: -webkit-linear-gradient(#FFF,#f6f6f6);background: -moz-linear-gradient(#FFF,#f6f6f6); background: -ms-linear-gradient(#FFF,#f6f6f6);background: -o-linear-gradient(#FFF,#f6f6f6);background: linear-gradient(#FFF,#f6f6f6); }*/
.catalog_icon_down dt a:hover,.catalog_icon_up dt a:hover{ color: #0066cc;background-color: #fff; }
.catalog_icon_down dt a:hover i{ border-top-color: #0066cc;}
.catalog_icon_up dt a:hover i{ border-bottom-color: #0066cc;}
.catalog_icon_up{ border-color: #fd8d01;}
.catalog_icon_up dt i{border-style:none dashed solid dashed; border-width:0 5px 5px 5px; border-color:transparent transparent #666 transparent; top:14px;}
.catalog_icon_down dt i{border-style:solid dashed none dashed; border-width:4px 4px 0 4px; border-color:#fa8a22 transparent transparent transparent; top:14px;}
/****hack***/
:root .catalog_icon_up dt i{border-width:0 4px 4px 4px;}
:root .catalog_icon_down dt i{top:15px;}
/**/
.place_list{position: absolute; width: 410px; left: 103px; top: 37px; border:1px solid #aaaaaa; background-color: #fff; padding: 5px 0; }
.place_list li a{display: block;height: 28px; overflow: hidden;*zoom:1; font: 12px/28px microsoft yahei,simsun,sans-serif; color: #aaaaaa; text-align: right;padding:0 10px; }
.place_list li span{ float: left; width: 280px; text-align: left; font: 14px/28px microsoft yahei,simsun,sans-serif; color: #666; white-space:nowrap ; overflow: hidden; text-overflow:ellipsis; }
.place_list li span em{font-style: normal; color: #aaa; }
.place_list a:hover{ background-color: #ECF8FD ; text-decoration: none;}
.place_list .place_catalog{ border-bottom: 1px solid #ddd;}
.place_list .place_catalog a{ padding-left: 24px;}
/**/
.search_label_ad{position: absolute; z-index: 10; background-color: #ff4d4d; height: 22px; border-radius: 5px 0 0 5px; top: -20px;left: 50px; padding:0 30px 2px 5px;}
.search_label_ad b{position: absolute; top:24px; left: 22px; height: 0;width: 0; line-height: 0; overflow: hidden; border-width: 4px; border-style: solid dashed dashed solid; border-color: #ff4d4d transparent transparent #ff4d4d; }
.search_content_red{ color: #fff; padding-top: 2px;padding-top\0: 4px;}
.search_content_red .know{ color: #fff4c4; text-decoration: underline; }
.search_content_red .know:hover{ color: #ffcc99;}
.search_content_red .close{position: absolute; top:0; width: 26px; height: 24px; background: url(//pic.c-ctrip.com/vacation_v2/searchresult/icon_close.png) #ff4d4d 7px 7px no-repeat; border-left:solid 1px #ec3a3a; border-radius: 0 5px 5px 0; margin-left: 6px;}
.search_content_red .close:hover{background-color: #ec2626;border-left:solid 1px #ec2626;}
/****search new=e****/
/*====== S : new city search 20141031 ======*/
.station_search{margin-top:10px;}
.station_search_box{height:28px;border:1px solid #D2D2D2;border-radius:4px;box-shadow: 1px 1px 3px #DDDDDD inset;position:relative;z-index:3;}
.station_search_box input{border:0!important;padding:0!important;background-color: transparent;box-shadow: none!important;width:96%;height:22px;line-height:22px\0;*line-height:22px;margin:2px 2%;outline: none;}
.station_search_box input:focus{background-color:#FFFFFF!important;}
.station_search_box p{position:absolute;top:0;left:0;color:#999;text-indent:10px;z-index:-1;line-height:28px;}
.station_wordsselect{margin-top:10px;padding-bottom:10px;background-color:#FFFFFF;position:relative;z-index:2;}
.station_wordsselect a{display:inline-block;padding:0 10px;line-height:22px;height:22px;white-space: nowrap;color:#000;font-family:'Microsoft yahei'}
.station_wordsselect a.on , .station_wordsselect a:hover{color:#FFFFFF!important;background-color:#1D74E6;text-decoration: none;}
.station_search_list{margin-top:-1px;display:none;position:relative;z-index:1;}
.station_search_list li{padding-left:15px;line-height:30px;border-top:1px dotted #EAEAEA;*zoom:1;}
.station_search_list li:after{clear:both; content:'.'; display:block; height:0; overflow:hidden;}
.station_search_list li span{margin-left:-15px;font-size:14px;color:#1D74E6;font-weight:bold;float:left;margin-top:1px;*margin-top:0px;_margin-top:1px;}
.station_search_list li a{display:inline-block;margin-left:15px;color:#000;}
.station_search_list li a:hover{color:#1D74E6;}
.station_search_result{padding:5px 0;font-weight:bold;}
.station_search_result a{display:inline-block;margin-right:10px;line-height:28px;color:#0065BB;}
/*====== E : new city search 20141031 ======*/
/*====== S 国泰港龙航空 ======*/
.pubFlights_ka, .pubFlights_KA{background: url(//pic.c-ctrip.com/VacationOnlinePic/vacation_v2/detail/KA.png) no-repeat 0 0 !important;}
/*====== E 国泰港龙航空 ======*/
@charset "utf-8";
input { overflow:visible;}
i, em { font-style:normal;}
table { border-spacing:0 }
select{font-family: "Microsoft YaHei"; font-size: 12px;}
h1,h2,h3,h4,h5,h6{font-family: "Microsoft YaHei"; font-weight: 100;}
em,i,s{ font-style:normal; text-decoration:none}
.cui_nav, .cui_hd { width:1180px; }
#base_bd { margin-top:-54px; }
.vacation_bd { width:1180px; margin:0 auto; font-family: "Microsoft YaHei";}
.vacation_bd:after { clear:both; content:'.'; display:block; height:0; overflow:hidden; }
.bg_miancolor { padding:40px 0 30px; background:url(//pic.c-ctrip.com/vacation_v1/bg_miancolor.png?20150625.png); border-bottom:1px solid #e2eaef; }
.border_none td { border:0 none!important; }
.icon-red-notice,.icon-check,.icon_ctrip,.icon_check_upitem,.icon-btn-item,.cm-pop .close span{background:url(//pic.c-ctrip.com/vacation_v2/order/icon_unit.png) no-repeat; }
.ico-prof{background:url(//pic.c-ctrip.com/VacationOnlinePic/myctrip/prof_face.png) no-repeat;width: 125px;height: 46px;}
.code_pic .arr_left_1{background: url(//pic.c-ctrip.com/VacationOnlinePic/myctrip/arr_left_1.png) no-repeat; left:0;}
.code_pic .arr_right_1{background: url(//pic.c-ctrip.com/VacationOnlinePic/myctrip/arr_right_1.png) no-repeat; right:0;}
/*====== 公共 =====*/
.crumbs { padding:10px 0; }
.order_box { border:1px solid #ddd; background:#fff; zoom:1; box-shadow:1px 1px 1px #ebeef0; margin-bottom:10px; }
.order_title { border-top:1px solid #d6e5f2; background:#ecf6ff; font:normal 20px/38px "Microsoft YaHei"; padding-left:15px; }
.order_mod {*zoom:1; background:#fcfcfc }
.order_mod:after { clear:both; content:'.'; display:block; height:0; overflow:hidden; }
.mod_main { padding:20px 20px 20px 80px; border-right:1px dotted #dcdcdc; background:#fff; float:left; width:827px; }
.mod_main .sub_title { font:normal 20px "Microsoft YaHei"; margin-bottom:10px; }
.mod_main .sub_title .title_tips { font-size:12px; color:#999; margin-left:15px; }
.mod_main .main_cont { margin-left:-70px; zoom:1; }
.mod_side { float:right; width:250px; padding-top:25px; border-left:1px dotted #dcdcdc; margin-left:-1px; display:inline; }
.mod_side input, .mod_side a { display:block; margin:0 auto 15px; }
.mod_list { overflow:hidden; zoom:1; border-bottom:1px solid #dcdcdc; padding:15px 0; }
.mod_list dt { width:100px; float:left; font:normal 20px "Microsoft YaHei" }
.mod_list dd { overflow:hidden; zoom:1; }
.base_anchor { width:0; height:0; line-height:0; display:block; margin-top:-42px; padding-top:42px; overflow:hidden; }
.base_txtdiv { border-bottom:1px solid #333; color:#333; cursor:pointer; }
.price { color:#ff6600; }
.beston_price { color:#00B600; }
.explain { text-decoration:underline; margin-left:10px; }
.hrs { color:#999; margin-left:10px; }
.grey { color:#999; }
.fred { color: #ff0000 }
.fred1 {color:#ea372c}
.fblack{color:#333;}
.fblue{color:#06c;}
.forg{color:#ff6600;}
.forg_1{color:#ffa024}
.fgreen{color:#92BC70}
.ico_txt_green{color:#689e3d;}
.ico_txt_org{color:#ff9900;}
.required { color:red; margin-right:5px; }
.pt2 { padding-top: 2px; }
.pt15{padding-top: 15px;}
.ml69{margin-left: 69px;}
.step_table td i, .order_info .order_product i, .pubFlights_AL, .icon_transfer, .icon_notice, .icon_yes, .icon_warning, .crosswise_tb .icon_ok,.pay_completed .icon_ok, .order_tips .icon_warning2, .order_tips1 .icon_warning2, .mod_list .ico_notice, .order_item .icon_warning3,.btn_popicon .icon_warning3, .order_append .btn_edit, .order_pay_tips .icon_warning3, .crosswise_tb .icon_warning2, .help_block .ico, .item_vedeo .ico_vedeo ,.icon_tipsgreen,.order_notice .icon_warning3,.cm_ico_warning,.stream_info .icon_deco,.resource_mask .close span,.code_target,.visa_schedule_info .icon_deco, .visa_schedule_info .icon_flag, .mod_visa_schedule .ico_arrow,.btns_visainfo .ico_arrow,.btns_slide .ico_arrow,.visa_progress_info .icon_deco,.visa_status .with_arrowbox .arrow_bt i{ background-image:url(//pic.c-ctrip.com/vacation_v2/order/order_spirit.png?20150625.png); background-repeat:no-repeat; }
.sub_cheple_i li span,.icon_select span{background-image: url(//pic.c-ctrip.com/vacation_v1/bg_book.png?20150619.png);background-repeat:no-repeat; }
.book_delinsurer,.book_addinsurer .add{background-image: url(//pic.c-ctrip.com/vacation_v2/insure/un_bg2.png?20150313b.png);background-repeat: no-repeat;}
.icon-people,.icon-bag,.icon-seat,.icon-notice,.icon-transfer-1,.icon-transfer-2,.icon-transfer-3,.icon-transfer-4,.icon-transfer-5{background-image: url(//pic.c-ctrip.com/VacationOnlinePic/myctrip/unit-1.png?20150530b.png);background-repeat: no-repeat;}
.icon_select span.disable{background-image: url(//pic.c-ctrip.com/VacationOnlinePic/myctrip/icon_select_disable.png);background-repeat: no-repeat;}
.mt10{margin-top: 10px!important;}
.ptb5{padding: 5px 0;}
.tr{text-align:right!important;}
.flink{font-size: 12px;text-decoration: underline;}
.f14{font-size: 14px;}
.tc{text-align: center;}
.label-red{display: inline-block;border:1px solid #ff0000;border-radius: 2px;padding:0 5px 1px 6px;*padding:0 5px;line-height: 18px;font-size: 12px;color:#ff0000;margin-left: 10px;}
/*====== 表单 =======*/
.input_text { padding:3px; border:solid 1px #CCC; width:270px; }
textarea { box-shadow:inset 1px 1px 3px #DDDDDD; padding:3px; border:solid 1px #CCC; }
.input_num1 { width:50px; }
.input_num2 { width:136px; }
.input_num3 { width:60px; }
.input_s { width:166px; }
.input_field_width { width:77px; }
.input_address { width:71px; }
.input_select { width:100px;font-family: 'Microsoft yahei'; font-size: 12px;}
.input_select_1 { width:55px; }
.base_label { margin-right:20px; }
/*====== 按钮 =======*/
.btn_red, .btn_blue, .btn_white { display:inline-block; width:140px; height:35px; text-align:center; font:bold 14px/35px "Microsoft YaHei",simsun, sans-serif; line-height: 34px; border-radius: 3px; -webkit-appearance:none; *line-height:33px;
}
.btn_white { font-weight:normal; }
.btn_red { background-color: #fb9125; background-image: -webkit-linear-gradient(to top, #fb9125, #fa8721); background-image: -moz-linear-gradient(to top, #fb9125, #fa8721); background-image: -ms-linear-gradient(to top, #fb9125, #fa8721); background-image: -o-linear-gradient(to top, #fb9125, #fa8721); background-image: linear-gradient(to top, #fb9125, #fa8721); color: #fff; text-align: center; border: 1px solid #e08821; -webkit-box-shadow: inset 0 1px 0 0 #fcad5c; box-shadow: inset 0 1px 0 0 #fcad5c; }
.btn_red:hover { background-color: #fd7b2b; background-image: -webkit-linear-gradient(to top, #fd802c, #fd6f29); background-image: -moz-linear-gradient(to top, #fd802c, #fd6f29); background-image: -ms-linear-gradient(to top, #fd802c, #fd6f29); background-image: -o-linear-gradient(to top, #fd802c, #fd6f29); background-image: linear-gradient(to top, #fd802c, #fd6f29); border: 1px solid #fc6621; -webkit-box-shadow: inset 0 1px 0 0 #fea161; box-shadow: inset 0 1px 0 0 #fea161; cursor: pointer; text-decoration: none; }
.btn_blue { background-color: #39a7ee; background-image: -webkit-linear-gradient(to top, #40a8eb, #3ba0e6); background-image: -moz-linear-gradient(to top, #40a8eb, #3ba0e6); background-image: -ms-linear-gradient(to top, #40a8eb, #3ba0e6); background-image: -o-linear-gradient(to top, #40a8eb, #3ba0e6); background-image: linear-gradient(to top, #40a8eb, #3ba0e6); color: #fff; text-align: center; border: 1px solid #2a93d5; -webkit-box-shadow: inset 0 1px 0 0 #70bef0; box-shadow: inset 0 1px 0 0 #70bef0; }
.btn_blue:hover { background-color: #1d8fd9; background-image: -webkit-linear-gradient(to top, #2790d6, #2388ce); background-image: -moz-linear-gradient(to top, #2790d6, #2388ce); background-image: -ms-linear-gradient(to top, #2790d6, #2388ce); background-image: -o-linear-gradient(to top, #2790d6, #2388ce); background-image: linear-gradient(to top, #2790d6, #2388ce); border: 1px solid #2183c3; -webkit-box-shadow: inset 0 1px 0 0 #5dace0; box-shadow: inset 0 1px 0 0 #5dace0; cursor: pointer; text-decoration: none; }
.btn_white { background-color: #fff; border:1px solid #99c0e3; -webkit-box-shadow: 0 1px 0 0 #eee; box-shadow: 0 1px 0 0 #eee; color:#333; }
.btn_white:hover { border:1px solid #3a94e5; cursor: pointer; text-decoration: none; }
.btn_cancel { color:#0065bb; background:none; border:0 none; cursor:pointer; display:inline-block; font:16px/34px 'microsoft yahei', simsun, sans-serif }
.btn_disbile, .btn_disbile:hover { background: #e6e6e6; background-image: none; border: 1px solid #ddd; cursor: default; box-shadow: 0 0 0; color: #999; font-weight: 100;}
.btn_popicon{position: relative;}
.btn_popicon .icon_warning3{position: absolute;width: 17px;height: 17px;background-position: -70px -130px;right: -25px;top:10px;}
.underline{text-decoration: underline;}
/*====== 表格 =====*/
.solid_tb { table-layout:fixed; }
.solid_tb td { text-align:left; padding:10px 10px 10px 0; border-bottom:1px solid #dcdcdc; }
.solid_tb td.tc{text-align: center;}
.solid_tb .airport { white-space:nowrap; display:block; overflow:hidden; text-overflow:ellipsis; }
.solid_tb .flight_tip { position:relative; height:18px; margin-top:1px; cursor:pointer; }
.solid_tb .flight_tip.cur{margin-top: 10px;}
.solid_tb .flight_tip span { width:94px; border:1px solid #fff; text-align:center; height:27px; position:absolute; border-bottom:none; }
.solid_tb .cur span { border:1px solid #dcdcdc; border-bottom-color:#f8f8f8; background:#f8f8f8; }
.solid_tb .append_detail td { padding:0; border:none; }
.solid_tb .append_detail .flight_box { margin-left:69px; border-left:1px solid #dcdcdc; border-right:1px solid #dcdcdc; background:#f8f8f8; zoom:1; margin-bottom: 10px; }
.solid_tb .append_detail .flight_box table { table-layout:fixed; }
.solid_tb .append_detail .flight_box td { padding:10px 10px 10px 0; border-bottom:1px solid #dcdcdc }
.train_tb { table-layout:fixed; border-bottom:1px dotted #dcdcdc; }
.train_tb td { text-align:left; padding:10px 10px 10px 0; }
.train_tb .transfer .transfer_line { height:0; overflow:hidden; border-top:1px dotted #dcdcdc; }
.train_tb .transfer span { position:absolute; margin-top:-11px; padding-right:10px; background:#fff; }
.dotted_tb { table-layout:fixed; }
.dotted_tb td { text-align:left; padding:10px 10px 10px 0; border-bottom:1px dotted #dcdcdc; vertical-align: top;}
.dotted_tips{background-color: #F8F8F8;padding: 10px 0 10px 10px;border-top: 1px solid #DCDCDC;border-bottom: 1px solid #DCDCDC;margin:10px 0 0 69px;}
.grey_tb { table-layout:fixed; }
.grey_tb th { font-weight:normal; text-align:left; color:#999; background-color:#f5f5f5; padding:3px 5px }
.grey_tb td { padding:6px 5px; vertical-align: top;}
.info_txtp{padding-top: 8px;color:#999;}
.info_txtlist{color:#999;margin-top: 10px;padding-bottom: 8px;}
.info_txtlist li{position: relative;padding:0 0 0 90px;line-height: 20px;}
.info_txtlist li .tit{position: absolute;width: 85px;left: 0;top: 0;white-space:nowrap;}
.info_txtlist li.no-tit{padding-left: 0;}
.tips_sp{color:#999;text-decoration: underline;padding-top: 5px;display:inline-block;}
.tips_blue{color:#0065bb;padding-top: 5px;display:inline-block;}
.tips_sp:hover{text-decoration: none;}
.crosswise_tb { table-layout:fixed; }
.crosswise_tb th, .crosswise_tb td { padding:5px 0; }
.crosswise_tb th { text-align:right; font-weight:normal; color:#999; padding-right:15px; }
.crosswise_tb .tips_txt { color: #999; }
.crosswise_tb .tips_txt2 { position:relative; zoom:1; display:inline-block; width:240px; min-height:22px; _height:22px; vertical-align:top; color: #999; margin-left:8px; padding-left:20px; }
.crosswise_tb .tips_txt3 { width: 265px; }
.mod_list .crosswise_tb .ico_notice { position:absolute; left:0; top:2px; vertical-align:0; margin: 0; }
.crosswise_tb .btn_link1, .crosswise_tb .btn_link2 { display:inline-block; vertical-align:top; text-align:center; white-space:nowrap; }
.crosswise_tb a.btn_link1, .crosswise_tb a.btn_link2 { height:22px; line-height:22px; }
.crosswise_tb .btn_link1 { min-width:102px; _width:102px; }
.crosswise_tb .btn_link2 { min-width:78px; _width:78px; }
.crosswise_tb .status_txt { color: #669f36; }
.crosswise_tb .status_txt2 { color: #fd9100; }
.crosswise_tb .icon_ok, .crosswise_tb .icon_warning2 { zoom:1; display:inline-block; width:12px; height:12px; vertical-align:middle; margin-right:6px; overflow:hidden; }
.crosswise_tb .icon_ok { background-position: -50px -150px; }
.crosswise_tb .icon_warning2 { background-position: -20px -130px; }
.crosswise_tb .flink{display:inline-block;vertical-align: 0px;*vertical-align: 1px;margin-left: 10px;}
.hidden_box { padding:0!important; border:none!important; }
.hidden_box .hidden_cont { border:1px solid #dcdcdc; position:relative; background:#f8f8f8; padding:10px; margin-top:-1px; line-height:2; color:#666; }
.hidden_box .arrow_l, .hidden_box .arrow_s { position:absolute; height:0; width:0; line-height:0; font-size:0; border-right:6px dashed transparent; border-left:6px dashed transparent; }
.hidden_box .arrow_l { border-bottom:6px solid #dcdcdc; top:-6px; }
.hidden_box .arrow_s { border-bottom:6px solid #f8f8f8; top:-5px; }
.hidden_box .hidden_close { text-align:right; }
.tb_label{color:#ff7800;}
.airport_en{*zoom:1;position: relative;margin-right: -10px;}
.airport_en:after{content: "";display: table;clear: both;}
.airport_en .airport_en_name,.airport_en .airport_figure,.airport_en .linediv{float: left;}
.airport_en .airport_en_name{white-space:nowrap;overflow: hidden;text-overflow: ellipsis;max-width:75px;_width:75px;text-decoration: none;color:#333;cursor: default;}
.airport_oth{padding-top: 3px;}
.airport_oth span{display: inline-block;color: #0065bb;cursor: pointer;}
.airport_oth span.label_info{margin-right: 10px;}
.vb{vertical-align: bottom;}
.product_scroll_wrap {overflow-y:auto;overflow-x:hidden;scrollbar-face-color:#ddd;scrollbar-highlight-color:#ddd;scrollbar-shadow-color:#fff;scrollbar-3dlight-color:#fff;scrollbar-arrow-color:#fff;scrollbar-track-color:#f8f8f8;scrollbar-darkshadow-color:#f8f8f8;position: relative;*zoom:1;}
.product_scroll_wrap::-webkit-scrollbar {width:8px; }
.product_scroll_wrap::-webkit-scrollbar-thumb {background:#ddd; }
.product_scroll_wrap::-webkit-scrollbar-track-piece {background-color:#f8f8f8; }
.tgqjgpsm_cont {width:415px;font-family: "Microsoft Yahei";}
.tgqjgpsm_cont .product_scroll_wrap{*padding-right: 10px;}
.tgqjgpsm_cont .tgq_title01 {font-size:14px;margin-bottom:5px;font-family: "Microsoft Yahei";}
.tgqjgpsm_cont .tgq_title02{font-family: "Microsoft Yahei";}
.tgqjgpsm_cont .tgq_list01 {margin-bottom:20px;}
.tgqjgpsm_cont .tgq_list01 li {position:relative;padding-left:10px;font-size:12px;line-height:16px;word-wrap:break-word;word-break:break-all;}
.tgqjgpsm_cont .tgq_list01 li .disc {position:absolute;top:0;left:0;}
.tgqjgpsm_cont .tgq_table01 {table-layout:fixed;width:100%;margin-bottom:10px;}
.tgqjgpsm_cont .tgq_table01 th,.tgqjgpsm_cont .tgq_table01 td {padding:5px 10px;text-align:left;border-top:1px solid #e2e2e2;border-bottom:1px solid #e2e2e2;vertical-align:top;}
.tgqjgpsm_cont .tgq_table01 th {padding-left:0;width:70px;border-right:1px solid #e2e2e2;}
.tgqjgpsm_cont .tgq_table01 .tgq_icon_cont {position:relative;padding-left:15px;}
.tgqjgpsm_cont .tgq_table01 .tgq_icon_cont .tgq_title02 {position:relative;}
.tgqjgpsm_cont .tgq_table01 .tgq_icon_cont .icon_time02,.tgqjgpsm_cont .tgq_table01 .tgq_icon_cont .icon_xc01 {position:absolute;top:4px;left:-15px;}
.tgqjgpsm_cont .tgq_table01 .tgq_text_cont01 {margin-bottom:10px;}
.tgqjgpsm_cont .tgq_table01 .tgq_text_cont01 .tgq_icon_cont {margin-bottom:5px;}
.icon_time02,.icon_xc01 {display:inline-block;*display:inline;*zoom:1;width:12px;height:11px;background:url(//pic.c-ctrip.com/VacationOnlinePic/taocan/tgq_icon.png) no-repeat;}
.icon_xc01 {background-position:0 0;}
.icon_time02 {background-position:-20px 0;}
/*====== icon =====*/
.pubFlights_AL { padding-left:18px; padding-bottom:2px; text-align:left; line-height:15px; background-position:-74px 0; }
.special_flt { background-color: #FFE8B3; color: #CD800B; display: inline-block; padding: 0 5px; cursor:pointer; }
.icon_limit { padding:2px 3px; border:1px solid #ddd; cursor:pointer; display: inline-block; }
.icon_status { display:inline-block; min-width:30px; _width:30px; height:18px; line-height:16px; padding: 0 2px; text-align:center; vertical-align:top; white-space:nowrap; word-wrap:normal; background:#92bc70; color:#fff; border-radius:2px; }
.icon_down { height:0; width:0; line-height:0; font-size:0; border-top:4px solid #333333; border-left:4px dashed transparent; border-right:4px dashed transparent; display:inline-block; vertical-align:middle; vertical-align:middle; margin-left:5px; }
.icon_up { height:0; width:0; line-height:0; font-size:0; border-bottom:4px solid #333333; border-left:4px dashed transparent; border-right:4px dashed transparent; display:inline-block; vertical-align:middle; vertical-align:middle; margin-left:5px; }
.icon_transfer { display:inline-block; width:12px; height:12px; overflow:hidden; background-position:-43px 0; vertical-align:middle; }
.icon_cancel { display: inline-block; background-color: #82AEE7; height: 16px; line-height: 16px; padding: 0 2px; color: #fff; cursor: pointer; }
.icon_gift { display:inline-block; background-color:#fba52c; height: 16px; line-height:14px; padding: 0 2px; color: #fff; cursor: pointer; border-radius: 2px; }
.icon_notice { display:inline-block; width:12px; height:12px; vertical-align:middle; overflow:hidden; background-position:-57px 0; cursor: pointer; }
.icon_reduce { display:inline-block; background-color:#fba62c; height: 16px; line-height:16px; padding: 0 2px; color:#fff; }
.icon_yes, .icon_warning { display:inline-block; width:32px; height:32px; background-position:0 -40px; }
.icon_warning { background-position:-36px -40px; }
.icon_status.bg_org{background-color: #fba52c;}
.icon_status.bg_red{background-color: #ff6600;}
.pubFlights{padding-bottom: 2px; text-align: left;line-height: 15px;}
.pubFlights img{width: 16px;height: 16px;float: left;margin:1px 2px 0 0;border:0;}
/*====== 支付 ======*/
.bank_img { background:url(//pic.c-ctrip.com/vacation_v2/order/bank/default.png?20150625.png) center center no-repeat; }
.order_pay { border:2px solid #fb9125; background:#fff; margin-bottom:10px; padding:30px 250px 30px 80px; font-size:14px; line-height:32px; position:relative; zoom:1; overflow:hidden; }
.order_pay i { float:left; margin-right:15px; _display:inline; }
.pay_bank { float:right; color:#999; padding-right:20px; }
.pay_bank span, .pay_bank em { display:inline-block; vertical-align:middle; }
.pay_bank span { margin-right:10px; }
.pay_bank em { width:103px; padding:0 10px; line-height:34px; border:1px solid #dcdcdc; text-align:middle; text-align:center; color:#666; height:34px; position:relative; }
.pay_bank .bank_icbc, .pay_bank .bank_ccb, .pay_bank .bank_cmb, .pay_bank .bank_boc, .pay_bank .bank_abc, .pay_bank .bank_spd, .pay_bank .tenpay, .pay_bank .alipay, .pay_bank .union_pay, .pay_bank .bank_psbc, .pay_bank .bank_bocom, .pay_bank .pay_cash, .pay_bank .pay_tmpay, .pay_bank .bank_icbc2, .pay_bank .bank_ccb2, .pay_bank .bank_cmb2, .pay_bank .bank_boc2, .pay_bank .bank_abc2, .pay_bank .bank_spd2, .pay_bank .tenpay2, .pay_bank .alipay2, .pay_bank .union_pay2, .pay_bank .bank_psbc2, .pay_bank .bank_bocom2 { background:url(//pic.c-ctrip.com/pkg_ordermanage/un_card.png?20151216) no-repeat; }
.pay_bank .bank_icbc, .pay_bank .bank_icbc2 { background-position:0 -94px; }
.pay_bank .bank_ccb, .pay_bank .bank_ccb2 { background-position:0 -46px; }
.pay_bank .bank_boc, .pay_bank .bank_boc2 { background-position:0 -142px; }
.pay_bank .bank_abc, .pay_bank .bank_abc2 { background-position:0 -382px; }
.pay_bank .bank_spd, .pay_bank .bank_spd2 { background-position:0 -334px; }
.pay_bank .tenpay, .pay_bank .tenpay2 { background-position:0 -1150px; }
.pay_bank .alipay, .pay_bank .alipay2 { background-position:0 -1198px; }
.pay_bank .union_pay, .pay_bank .union_pay2 { background-position:0 -1246px; }
.pay_bank .bank_psbc, .pay_bank .bank_psbc2 { background-position:0 -1294px; }
.pay_bank .bank_bocom, .pay_bank .bank_bocom2 { background-position:0 -190px; }
.pay_bank .pay_cash { background-position:0 -1630px; }
.pay_bank .pay_tmpay { background-position: 0 -1678px; }
.pay_btn { width:250px; border-left:1px dotted #dcdcdc; background:#fcfcfc; text-align:center; position:absolute; right:0px; top:0; padding:29px 0; height:36px; }
.pay_btn input { width:140px; }
.pay_completed{min-width: 106px; _width: 106px;vertical-align: top;display:inline-block;text-align: center;color:#669f36;font-weight: bold;}
.pay_completed .icon_ok{display:inline-block;width: 16px;height: 16px;background-position: 0 -130px;vertical-align: middle;float: none;margin-right: 8px;}
input.btn_red_middle.pay_ing{padding:0 10px;background-color: #e6e6e6;background-image:none;border:1px solid #e6e6e6;-webkit-box-shadow: inset 0 1px 0 0 #eee;box-shadow: inset 0 1px 0 0 #eee;color:#999;}
input.btn_red_middle.pay_notice{background-color: #ff433e;background-image: -webkit-linear-gradient(to top, #ff433e, #f43b37);border: 1px solid #f42822;-webkit-box-shadow: inset 0 1px 0 0 #ff5f5b;box-shadow: inset 0 1px 0 0 #ff5f5b;}
/*====== 订单导航 ======*/
.order_nav_box { zoom:1; position:relative; min-height:42px; _height:42px; }
.order_nav { overflow:hidden; width:1178px; height:42px; border-bottom:1px solid #ddd; z-index:100; background:#fff; }
.order_nav_col { height:22px; padding:10px 104px 10px 15px; overflow:hidden; zoom:1; position:relative; }
.order_nav_col a { float:left; font-size:14px; color:#333; margin-right:40px; ; line-height:18px; padding-bottom:2px; border-bottom:2px solid #fff; display:none; }
.order_nav_col a:hover, .order_nav_col .cur { color:#0065bb; border-bottom-color:#0065bb; text-decoration:none; }
.order_nav_col .cur { font-weight:bold; }
.order_nav_col .contact_ctrip { position:absolute; right:0; top:0; width:104px; text-align:center; font:bold 16px/42px "Microsoft YaHei"; background-color:#ecf6ff; border-left:1px solid #ddd; color:#6fa9e3; text-decoration:none; margin:0; padding:0; height:42px; border-bottom:0 none; display:block; background-image: -webkit-linear-gradient(to top, #feffff, #eaf5ff); background-image: -moz-linear-gradient(to top, #feffff, #eaf5ff); background-image: -ms-linear-gradient(to top, #feffff, #eaf5ff); background-image: -o-linear-gradient(to top, #feffff, #eaf5ff); background-image: linear-gradient(to top, #feffff, #eaf5ff); cursor:pointer; }
.order_nav_col .contact_ctrip:hover { background:#e3f2fe; color:#0065bb; background-image: -webkit-linear-gradient(to top, #f5faff, #e3f2fe); background-image: -moz-linear-gradient(to top, #f5faff, #e3f2fe); background-image: -ms-linear-gradient(to top, #f5faff, #e3f2fe); background-image: -o-linear-gradient(to top, #f5faff, #e3f2fe); background-image: linear-gradient(to top, #f5faff, #e3f2fe); }
/*====== 订单信息 ======*/
.order_step { border-bottom:1px dotted #dcdcdc; padding:10px 0; background:#fff; }
.order_step .mod_main { border-right:none; }
.order_step .title_price { float:right; font-size:16px; width:230px; padding-top:20px; padding-right:20px; }
.order_step .title_price span { color:#ff6600; }
.order_step .title_price dfn { vertical-align:14px; margin:0 6px 0 15px; }
.order_step .title_price strong { font-size:34px; font-weight:normal; }
.order_num { margin-bottom:20px; }
.order_num span { margin-right:15px; }
.order_num em { margin-right:70px; }
.step_table { table-layout:fixed; width:710px; }
.step_table td { text-align:center; color:#999; vertical-align: top;}
.step_table div { border-top:6px solid #d7d7d7; margin-bottom:10px; position:relative; zoom:1; }
.step_table td i { display:inline-block; width:20px; height:20px; overflow:hidden; background-position:-20px 0; position:absolute; margin:-13px 0 0 -10px; left:50%; }
.step_table .complete { color:#689e3d; font-weight:bold; }
.step_table .complete div { border-top-color:#78b448; }
.step_table .complete i { width:18px; height:18px; background-position:0 0; margin:-12px 0 0 -9px; }
.step_table .step_tips{font-family: "Microsoft Yahei";font-weight: normal;line-height: 16px;margin-top: 5px;}
.order_info {
*zoom:1; position:relative; }
.order_info .order_product { font:normal 22px "Microsoft YaHei"; margin-bottom:5px; }
.order_info .order_product i { display:inline-block; height:10px; width:0px; background-position:0px -25px; overflow:hidden; vertical-align:middle; margin-left:10px; }
.order_info .order_product .diamond_7 { width: 90px; }
.order_info .order_product .diamond_6 { width: 77px; }
.order_info .order_product .diamond_5 { width: 64px; }
.order_info .order_product .diamond_4 { width: 51px; }
.order_info .order_product .diamond_3 { width: 38px; }
.order_info .order_product .diamond_2 { width: 25px; }
.order_info .order_product .diamond_1 { width: 12px; }
.order_info .product_info { font-size:14px; margin-bottom:5px; }
.order_info .product_info span { margin-right:15px; }
.order_info .product_info em { margin-right:60px; }
.order_info .prodect_nav { font-size:14px; margin:20px 0; }
.order_info .prodect_nav a { margin-right:20px; font-family: "Microsoft Yahei" ;}
.order_info .prodect_nav .icon_up{border-bottom-color:#0065bb;vertical-align: middle}
.order_info .border_tb { table-layout:fixed; }
.order_info .border_tb td { padding:5px 10px 5px 0; border-top:1px dotted #dcdcdc; }
.order_info .border_tb .state { color:#689e3d; }
.order_info .border_tb .icon_type { display:inline-block; padding:0 2px; background:#ddefff; }
.order_info .item_vedeo { margin-right: 0; }
.order_info .item_vedeo .ico_vedeo { display:inline-block; width: 19px; height: 16px; vertical-align:middle; margin-right:6px; background-color: #FFF; background-position: -70px -150px; overflow:hidden; }
.order_info .down_doc{position: relative;display:inline-block;}
.icon_tipsgreen{background-position: -20px -170px;display:inline-block; width: 7px;height: 7px;vertical-align: top;}
.base_info{width: 200px;background-color: #fff5d1;border:1px solid #FFB533;position: absolute;}
.base_info p{font-size: 12px;line-height: 18px;color:#333;padding:8px 30px 8px 10px;}
.base_info b,.base_info i{position: absolute;width: 0;height: 0;font-size: 0;line-height: 0;overflow: hidden;}
.base_info b{left: 19px;bottom: -14px;border-width: 7px;border-style: solid dashed dashed; border-color: #ffb533 transparent transparent;}
.base_info i{left: 20px;bottom: -12px; border-width: 6px; border-style: solid dashed dashed;border-color: #fff5d1 transparent transparent;}
.base_info .clo{color:#333;position: absolute;right: 5px;top: 5px;padding:3px 5px;}
.base_info .clo:hover{text-decoration: none;}
.list_viewct li a{color:#0065bb; font-family: "Microsoft Yahei" ;line-height: 20px;}
/*====== 酒店 =======*/
.order_htl .arrow_l, .order_htl .arrow_s { left:450px; }
/*====== 附加产品 ======*/
.order_append dl { overflow:hidden; zoom:1; margin:10px 0; }
.order_append dl dt { float:left; font:normal 20px "Microsoft YaHei"; width:70px; }
.order_append dl dd { overflow:hidden; zoom:1; }
.order_append .btn_blue_small { margin-left: 6px; padding: 0 5px; }
.order_append .btn_edit { display:inline-block; width: 19px; height:18px; vertical-align:middle; background-position: 0 -150px; overflow:hidden; }
.order_append .data-time { display:inline-block; width:77px; white-space:nowrap; word-wrap:normal; vertical-align:middle; overflow:hidden; }
.order_append .input_num4 { width: 62px; }
.insuran_num { color:#666; }
.insuran_num:hover td { background:#e2f2ff }
/***********visa*************/
.visa_detail { margin-bottom:10px; }
.visa_detail td, .visa_detail th { border:1px solid #dcdcdc; padding:5px 24px; color:#666; background-color:#fff }
.visa_detail td { text-align:left; }
.visa_detail th { font-weight:bold; color:#333; text-align:right; }
.visa_detail p { padding-bottom:15px; border-bottom:1px solid #DCE5EC; margin-bottom:15px; line-height:2; color:#666; }
.visa_detail .close { color:#69C; background:url(//pic.c-ctrip.com/common/un_ico_blue.png?20150625.png) 1px -1865px no-repeat; padding-left:15px; padding-right:5px; display:block; position:absolute; border:1px solid #DCE5EC; left:20px; top:536px; }
.visa_detail .close:hover { color:#FFF; background:url(//pic.c-ctrip.com/common/un_ico_blue.png?20150625.png) 1px -1887px #69C no-repeat; cursor:pointer; text-decoration:none; }
.visa_detail_dis { display:none; }
.visa_box { text-align:left; color:#666; }
.visa_box li { padding:0 0 0 5px; overflow:hidden; line-height:20px;/*text-overflow:ellipsis; white-space:nowrap;*/ color:#666; padding-bottom:15px; border-bottom:1px solid #DCE5EC; margin-bottom:15px; line-height:2; color:#666; }
.visa_box_a { margin-bottom: 10px; }
/*====== 联系人 ======*/
.contact_remarks { color:#999; height:55px; line-height: 55px; width:250px; position:absolute; margin-left:10px; }
.contact_remarks span { font-size: 30px; margin-right:10px; vertical-align: -4px; }
/*====== 旅客 ======*/
.order_passenger .mod_main { padding-top:0; padding-bottom:0; overflow:hidden; }
.order_passenger .mod_main .mod_list { border-bottom:0 none; border-top:1px solid #dcdcdc; margin-top:-1px; padding:25px 0; position: relative;}
.adult, .child { color:#60b7ff; font-size:12px; font-weight:normal; }
.label_flatshare { font-size: 12px; display:inline-block; padding:3px 3px 1px; line-height: 12px; background-color: #ff9b12; border-radius:2px; color:#fff; margin-left: 3px; }
:root .label_flatshare { padding:2px 3px 3px; }
.child { color:#eaa432; }
.input_box li { position:relative; padding:5px 0; zoom:1; }
.input_box li label, .input_box li input, .input_box li a, .input_box li span, .input_box li select { display:inline-block; vertical-align:middle; }
.input_box li .product_label { padding-right:15px; color:#999; width:80px; text-align:right; }
.order_passenger .passenger_tips { color:#999; padding-top:25px; }
.input_box .base_alert { left: 385px; top: 2px; }
.order_tips { position:relative; z-index:21; *zoom:1;color: #999; margin-top:20px; padding: 10px; background-color: #fffcf5; border:1px solid #ffcd5d; }
.order_tips .icon_warning2, .order_tips1 .icon_warning2 ,.cm_ico_warning{ display:inline-block; width:12px; height:12px; vertical-align:-2px; *vertical-align:0; background-position: -20px -130px; margin-right: 8px; overflow:hidden; }
.order_passenger .order_tips { margin-bottom: -10px; }
.order_tips1{ position:relative; z-index:21; *zoom:1;color: #999; padding:5px 0 10px;}
.book_delinsurer{position: absolute;right: 15px;top: 30px; background-position: -242px -400px;padding-left: 26px; height: 16px; color: #333; line-height: 14px;font-family:"Microsoft YaHei",hei;}
.book_addinsurer{padding:25px 15px 25px 0;overflow: hidden;*zoom:1;border-top: 1px solid #dcdcdc;}
.book_addinsurer .add{float:left;display:inline;width: 20px;height: 20px;background-position: -242px -427px;margin-right: 5px;}
.book_addinsurer a{ float: right;display:inline;height: 20px; line-height: 20px;font-family:"Microsoft YaHei",hei;overflow: hidden;*zoom:1;padding:2px 8px;border-radius:2px;}
.book_addinsurer .icon_notice{background-position: -70px -130px;width: 17px;height: 17px;display:inline-block;position: relative;*zoom:1;margin-left: 5px;vertical-align: -3px;*vertical-align: middle;}
/*====== 发票 ======*/
.order_invoice .mod_main { min-height:85px; _height:85px; }
.order_invoice .help_block { display: block; position: relative; width:251px; color: #333; text-align: left; background:#E8F4FF; border: 1px solid #67A1E2; padding: 2px 6px 3px 20px; }
.help_block .ico { position: absolute; left: 4px; top: 6px; width: 12px; height: 12px; background-position: 0 -180px; overflow:hidden; }
/*====== 弹层 ======*/
.order_masking { width:640px; background-color:#fff; border:1px solid #b2dbf4; font-family:"Microsoft YaHei",hei;}
.order_masking .order_masking_hd { background-color:#6fc3f8; height:35px; color:#fff; padding:0 10px 0 18px; position:relative; font:bold 14px/35px simsun; }
.order_masking .order_masking_hd a { position:absolute; right:10px; color:#fff; font-family:Tahoma, simsun, sans-serif; font-size:18px; top:0px; }
.order_masking .order_masking_hd a:hover { color:#1F83C4; text-decoration:none; }
.order_masking .order_masking_bd { padding:20px; zoom:1; }
.order_masking .btn_col { margin-top:30px; text-align:center; }
.order_masking .btn_col input { margin:0 10px; width:100px; }
.order_masking .crosswise_tb th { color:#333; }
.order_together p { margin-bottom:10px; }
.order_together .input_text { width:560px; }
.order_print ul li { float:left; width:150px; padding-top:10px; display:none; }
.order_masking_content { padding:30px 0 0 100px; line-height:2em; font-size:14px; min-height:100px; _height:100px; }
.order_masking_content .icon_yes, .order_masking_content .icon_warning { position:absolute; margin-left:-55px; }
.cancel_order_tips{background-color: #fff9ea;padding:10px 0;font-size: 14px;color:#666;text-align: center;margin-bottom: -10px;}
.cancel_order_notice{background-color: #fff9ea;padding:0px 0 10px;}
.cancel_order_notice .tips{font-size: 12px;line-height: 16px;color:#999;}
.cancel_order_notice .tips i{display: inline-block;width: 12px; height: 12px;background: url(//pic.c-ctrip.com/VacationOnlinePic/vacation_v3/flt_turn.png?20170424) -116px -45px no-repeat;vertical-align: -1px;margin-right: 2px;}
.order_masking .order_masking_ft{padding:10px 0 20px;text-align: center;}
.order_masking .order_masking_ft.no-top{padding-top: 0;}
.down_doc_list{max-height:500px;_height:500px;overflow-y: auto;padding:20px 30px 0px;*zoom:1;position: relative;}
.down_doc_list li{border-bottom:1px solid #ddd;position: relative;margin-bottom: 10px;padding-bottom: 10px;*zoom:1;}
.down_doc_list li .icon_tipsgreen{position: absolute;left:-15px;top:7px;display:none;}
.down_doc_list li.newtips .icon_tipsgreen{display:block;}
.down_doc_list li .btn_download{position: absolute;right: 30px;top: 0;}
.down_doc_list li .btn_mailto{position: absolute;right: 0;top: 4px;}
.down_doc_list li .label_gray{position: absolute;left:0;background-color: #f4f4f4;text-align: center;width: 88px;padding:2px 0 3px;top:-2px;}
.down_doc_list li p{padding-right: 80px;}
.going p{padding-left: 100px;line-height: 18px;}
.going li{margin-bottom: 15px;padding-bottom: 15px;}
.label_visa_type{padding:20px 30px 0; *zoom:1;}
.label_visa_type:after{content: ""; display: table; clear: both;}
.label_visa_type a{float:left;display:inline;white-space: nowrap;padding:0 15px;line-height: 28px;border:1px solid #ddd;border-radius:5px;margin:0 5px 5px 0;color:#666;}
.label_visa_type a:hover{text-decoration: none;border-color:#39a7ee}
.label_visa_type a.on{background-color: #39a7ee;color:#fff;border-color:#39a7ee}
.travel_material .down_doc_list li p{color:#333;text-overflow: ellipsis;display: -webkit-box;-webkit-box-orient: vertical;-webkit-line-clamp: 2;overflow: hidden;max-height:36px;}
.travel_material .down_doc_list li p .f_green{color:#689e3d;}
.travel_material .down_doc_list li p .f_org{color:#ff9900;}
.travel_material .down_doc_list li .tips{display:block;padding:5px 80px 0 100px;}
.travel_material .h_text{border-bottom: 1px solid #ddd;margin-bottom: 15px;padding-bottom: 20px;}
/*====== 浮出层 ======*/
.person_passenger02 { background: #fff; border: 1px solid #ccc; color: #bfbfbf; font-size: 12px; overflow: hidden; padding: 0; width: 270px; z-index: 200px; }
.person_passenger02 .base_txtgray { height: 30px; line-height: 30px; padding: 1px 5px 0; cursor:pointer; color: #0065BB; border-bottom: dotted 1px #ddd; }
.person_passenger02 .base_txtgray:hover { background-color:#e6f4ff; }
.person_passenger02 span { float: right; font-family: verdana; overflow: hidden; text-align: right; white-space: nowrap; width: 120px; }
.base_address_warp { background-color: #fff; border: solid 1px #ddd; }
.base_address_list span { float: right; text-align: right; white-space: nowrap; width: 110px; }
.base_address_list a { display: block; cursor: pointer; height: 32px; line-height: 32px; overflow: hidden; text-decoration: none; padding:0 10px; }
.base_address_list a:hover { background-color: #E8F4FF; }
.base_address_message { padding: 5px; background-color: #649FE4; color: #FFFFFF; overflow: hidden; }
.base_address_pagebreak { height: 26px; line-height: 26px; text-align: center; }
.base_address_pagebreak a { color: #0055AA; display: inline-block; font-family: Arial, Simsun, sans-serif; font-size: 14px; margin: 0; padding: 0 4px; text-align: center; text-decoration: underline; width: 15px; }
.person_content { padding: 5px; width: 445px; background: #fff; border: 1px solid #ccc; overflow: hidden; z-index: 200px; }
.person_content p { border-bottom: 1px dashed #aaa; clear: both; color: #aaa; height: 26px; line-height: 26px; margin-bottom: 4px; text-align: left; color: #bfbfbf; }
.person_content a { float: left; width: 137px; border-bottom: 1px solid #fff; border-top: 1px solid #fff; cursor: pointer; display: block; line-height: 22px; min-height: 22px; overflow: hidden; padding: 1px 5px 0; text-align: left; text-decoration: none; white-space: nowrap; }
.person_content a:hover { background-color:#ffe7a2; text-decoration: none; }
.person_content span { margin-left: 5px; overflow: hidden; text-overflow: clip; white-space: nowrap; }
.person_bill { padding: 5px; width: 250px; background: #fff; border: 1px solid #ccc; overflow: hidden; z-index: 200px; }
.person_bill p { border-bottom: 1px dashed #ddd; color: #aaa; height: 26px; line-height: 26px; color: #bfbfbf;}
.has_btn_empty{position: relative;}
.has_btn_empty .btn_empty{position: absolute;right: 5px;top: 0;}
.person_bill a { display: block; height: 26px; line-height: 26px; text-decoration: none; }
.person_bill a:hover { background-color:#e6f4ff; text-decoration: none; }
.mod_search_zipcode { background-color: #fff; border: 1px solid #ccc; width: 320px; z-index: 2; }
.mod_search_zipcode h4 { background-color: #F1F1F1; border-bottom: 1px solid #ccc; font-size: 12px; font-weight: normal; padding: 5px 10px; position: relative; }
.mod_search_zipcode h4 .close { color: #9ABBDE; font-size: 20px; line-height: 20px; padding: 0; position: absolute; right: 5px; text-shadow: 0 1px 0 #fff; top: 2px; }
.mod_search_zipcode ul { margin: 0 10px; }
.mod_search_zipcode li { border-bottom: 1px dotted #ccc; padding: 4px; }
.book_transfer_span li { border-bottom: dotted 1px #ddd; margin-bottom:5px; padding-bottom: 10px; }
.book_transfer_span .transit_visa{text-align: center;border-bottom:0;padding:0;margin:-18px 0 -5px;position: relative;}
.book_transfer_span .transit_visa .txt{color:#0065bb;display:inline-block;background-color: #fff;padding:0 5px;}
.mod_material_td { zoom:1; max-height:290px; overflow-y:auto; }
.material_td { max-height:290px; table-layout:fixed; margin-bottom:5px; }
.material_td td, .material_td th { padding:0 5px; border:1px solid #dcdcdc; }
.material_td th { color:#66a0e1; text-align:center; font-weight:bold; font-size:14px; }
.discount_bd ul { margin:10px 0; padding-left:14px; }
.discount_bd li { float:left; width:170px; }
.discount_bd li div { background:#c6dbf1; text-align:center; padding:0 14px 0 14px; line-height:28px; height:28px; font-weight:bold; position:relative; margin-bottom:10px; }
.discount_bd li div span { width:22px; height:22px; border:3px solid #c6dbf1; border-radius:50% 50%; color:#c6dbf1; float:left; line-height:22px; position:absolute; left:-14px; top:0; background:#fff; }
:root .discount_bd li div span { border-color:#fff; background:#c6dbf1; color:#fff; }
.discount_bd li p { color:#666; padding:0 14px 0 18px; line-height:1.5 }
.discount_bd table { table-layout:fixed; margin-top:3px; }
.discount_bd table td { padding:3px 15px 3px 0; border-bottom:1px dotted #dcdcdc; color:#999; line-height:1.5 }
.base_pop { border:1px solid #67A1E2; padding:20px; position:relative; width:340px; background:#fff; }
.base_pop .pop_close { color:#67a1e2; position:absolute; right:10px; top:5px; font-family:Tahoma, simsun, sans-serif; font-size:16px; }
.base_pop p { font-size:14px; margin-bottom:20px; }
/*============== 打印页样式 =============*/
.print_bd { max-width:1180px; margin:0 auto; padding-top:30px; _width:980px; }
.print_btn { text-align:center; }
.print_btn input { margin:0 15px 15px; }
.print_contain { margin:15px auto 30px; border:1px solid #d5d5d5; line-height:1.8 }
.print_title { font:normal 24px "Microsoft YaHei"; text-align:center; padding:35px 30px; }
.print_subtit { font:bold 14px/34px simsun; height:34px; padding:0 30px; background:#ecf7ff; }
.print_subtit .journey_time { display:inline-block; width:74px; }
.print_info { padding:15px 30px; }
.print_journey { overflow:hidden; zoom:1; padding:0 30px; }
.print_journey li { padding:15px 0 15px 74px; border-top:1px solid #ebebeb; margin-top:-1px; zoom:1; }
.print_journey li .journey_time { position:absolute; margin-left:-74px; _margin-top:-3px; }
.print_td { table-layout:fixed; }
.print_td th, .print_td td { padding:10px; border:1px solid #dadada; text-align:left; }
.print_td th { background:#f8f8f8; font-size:14px; }
.print_top{padding: 0 30px 20px;font-size: 14px;line-height: 2;}
.print_txtlist{overflow:hidden; zoom:1;}
.print_txtlist dt{ font:bold 14px/20px simsun; padding:8px 30px; background:#ecf7ff; }
.print_txtlist dd{padding:8px 30px;border-top:1px solid #ebebeb; margin-top:-1px; zoom:1; }
.direction_tit { font-size:14px; }
.announcement { margin:10px 0 20px; padding:10px 0 10px 10px; overflow-y:auto; _height:300px; max-height:300px; background:#f8f8f8; border:1px solid #dadada; }
/**20140424*修改订单**/
.order_affirmtxt { margin-bottom: 10px; }
.order_option{padding:40px 0;line-height: 28px;}
.order_modify { margin-top:10px; }
.order_modify li { float: left; width: 188px; margin-right: 40px; margin-top: 10px; cursor:default; }
.order_modify li input { display: inline-block; margin-right: 8px; width: 12px; height: 12px; overflow:hidden; border:0 none; font-family:Arial; vertical-align: -1px; }
.delivery_time { width: 129px; }
.order_deliveryinfo { padding-left: 130px; margin-bottom: 10px; }
.order_deliveryinfo dfn { color: #FF6600; }
.bord-top{padding-top: 15px;border-top:1px solid #ddd;margin-top: 15px;}
.order_car{padding-left: 130px;}
.order_car .order_tips{margin-top: 0;}
.order_deliverytip { margin-left: 195px; color: #999; margin-top: 10px; }
.input_deliselect, .input_delivery { display: inline-block; vertical-align: middle; }
.input_deliselect { width: 100px; }
.input_deliselect.w116{width: 116px;}