buy.css
51.5 KB
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
1001
1002
1003
/*购物流程谭雄*/
.cart_browsealert{width:968px; height:20px; line-height:20px; background:#FDFCDD;padding:5px 10px; border:#efdda6 solid 1px; margin:10px auto 0px auto;}
.cart_title{width:990px; margin:0 auto; height:32px; overflow:hidden; margin:30px auto;}
.cart_title h2{height:32px; width:200px; overflow:hidden; text-indent:-3000px; background-image:url(http://static.yohobuy.com/images/cart_logo.gif); background-repeat:no-repeat;}
.cart_title .step1{background-position:0 0;}
.cart_title .step2{background-position:0 -32px;}
.cart_title .step3{background-position:0 -64px;}
.cart_title .step4{background-position:0 -96px;}
.cart_flow{width:366px; height:32px; position:relative;}
.bg_line{width:100%; height:2px; position:absolute; top:5px; left:0; background:#000; overflow:hidden;}
.dot01{width:12px; height:12px; position:absolute; left:0; top:0; display:block;}
.dot02{width:12px; height:12px; position:absolute; left:50%; top:0; margin-left:-6px; display:block;}
.dot03{width:12px; height:12px; position:absolute; right:0; top:0; display:block;}
.dot_black{background:url(http://static.yohobuy.com/images/cart_flow_black.gif) no-repeat;}
.dot_white{background:url(http://static.yohobuy.com/images/cart_flow_white.gif) no-repeat;}
.words01{position:absolute; left:0; bottom:0; margin-left:-22px;}
.words02{position:absolute; left:50%; bottom:0; margin-left:-22px;}
.words03{position:absolute; right:0; bottom:0;}
.cart_table{width:990px; height:auto; margin:10px auto;}
.cart_table th{height:32px; background:#000; color:#fff; border:none; vertical-align:middle;}
.th01{width:346px;}
.th02{width:120px;}
.th03{width:116px;}
.th04{width:120px;}
.th05{width:100px;}
.th06{width:188px;}
.cart_table td{border-right:#ccc solid 1px; border-bottom:#ccc solid 1px; padding:10px 0; text-align:center;}
.cart_ques01{width:12px; height:12px; display:inline-block; background:url(http://static.yohobuy.com/images/icons01.gif) -12px 0; text-indent:-3000px; overflow:hidden; cursor:pointer; vertical-align:middle; margin-left:2px;}
.cart_ques02{width:12px; height:12px; display:inline-block; background:url(http://static.yohobuy.com/images/icons01.gif) 0 0; text-indent:-3000px; overflow:hidden; cursor:pointer; vertical-align:middle; margin-left:2px;}
.cart_table td.cart_tableimg{padding-left:0;}
.cart_tableimg img{float:left; margin-right:10px; width:60px;}
.cart_tableimg .cart_discount{margin-right:10px;}
.cart_tableimg .cart_discount img{margin-right:0px;}
.cart_tableimg p{float:left; padding-top:15px; text-align:left; width:200px;}
.cart_table .cart_zeng{background:#f8f8f8;}
.cart_table .cart_zeng td{border-right:#f8f8f8 1px solid;}
.cart_table .cart_zeng .cart_tableimg{padding-left:30px;background:url(http://static.yohobuy.com/images/ico_xs.png) 10px 35px no-repeat #f8f8f8;}
.cart_btns{display:block; padding-left:30px;}
.cart_btns label{float:left; margin-right:3px;}
.cart_table .cart_zeng_title{border-right:0px;font-weight:bold;text-align:left;padding-left:35px;background:url(http://static.yohobuy.com/images/ico_cart_gift.gif) 10px 8px no-repeat #f8f8f8;}
.cart_table .cart_outlet_title{border-right:0px;font-weight:bold;text-align:left;padding-left:20px;color:#fff;background:#f50;}
.cart-title{width:990px;margin:0 auto;line-height:50px;line-height:50px;font-size:22px;font-family:Arial,helvetica,sans-serif;color:#000;font-weight:bold;}
.cart_summ{background:#efefef; border-bottom:#ccc solid 1px; width:970px; padding:20px 10px; margin:0 auto; overflow:hidden;}
.cart_summ .left p{margin-top:5px;}
.cart_summ .left label{vertical-align:middle; margin-right:5px;}
.cart_summ .right{text-align:right;}
.cart_summ .right small{margin-top:5px; display:block; text-align:right;}
.cart_summ .right p b{padding-right:5px; vertical-align:sub; *vertical-align:auto;}
.cart_sales{width:990px; height:auto; margin:0 auto 20px auto;}
.table_left{text-align:left; padding-left:10px;}
.table_right{text-align:right; padding-right:10px;}
.cart_sales td{height:36px; line-height:36px; border-bottom:#ccc solid 1px;}
.table_left p{height:22px;padding:7px 0px 7px 16px; line-height:22px; background:url(http://static.yohobuy.com/images/icons01.gif) no-repeat; }
.sales_sale{background-position:0 -31px !important;}
.sales_free{background-position:0 -64px !important;}
.sales_present{background-position:0 -97px !important;}
.cart_sales .on td{background:#fef5f2;}
.cart_sales .icon_redselect{height:17px; line-height:17px; background:url(http://static.yohobuy.com/images/icons01.gif) no-repeat 0 -235px; padding-left:16px;display:inline-block; vertical-align:middle;}
.cart_sales label{vertical-align:middle; margin-left:5px;}
.cart_sales_zeng{background:#f8f8f8;}
.cart_sales_zeng ul{padding:10px 10px 0px 10px;}
.cart_sales_zeng li{width:320px;height:65px;padding-top:10px;float:left;}
.cart_sales_zeng .cart_select{width:25px;padding-top:20px;}
.cart_sales_zeng .cart_discount{margin-right:10px;}
.cart_sales_zeng .cart_discount img{margin-right:0px;}
.cart_sales_zeng p{float:left; padding-top:10px; text-align:left; width:200px;height:60px;font-size:12px;font-family:Arial,helvetica,sans-serif;line-height:18px; }
.cart_sales_zeng .selected-box{width:90px; vertical-align:top;position:relative;z-index:1;display:inline-block;margin:5px 5px 0px 0px;display:inline-block;}
.cart_sales_zeng .selected{ position:absolute;top:0px;left:0px;height:18px;line-height:18px; border:1px #999 solid;padding:0px 15px 0px 5px;background:url(http://static.yohobuy.com/images/ico_select_down.png) right 7px no-repeat #fff;color:#666;z-index:3;display:inline-block;cursor:pointer;}
.cart_sales_zeng .over{border-bottom:0px;z-index:3;}
.cart_sales_zeng .color-box{ position:absolute;top:18px;left:0px;border:1px #999 solid;padding:5px;background:#fff;z-index:2;display:none;}
.cart_sales_zeng .color-box a{display:block;width:80px;margin-bottom:5px;cursor:pointer;}
.cart_sales_zeng .color-box a:hover{ text-decoration:none;}
.cart_sales_zeng .color-box img{width:40px;height:40px;border:1px #eee solid;display:inline-block;margin-right:2px;float:none;}
.cart_sales_zeng .color-box a:hover img{filter: alpha(opacity=80); -moz-opacity:0.8; opacity:0.8;border:1px #ccc solid;}
.cart_sales_zeng .size-box{ position:absolute;width:58px;top:18px;left:0px;border:1px #999 solid;padding:5px;background:#fff;z-index:2;display:none;}
.cart_sales_zeng .size-box a{display:block;width:56px;border:1px #eee solid;margin-bottom:5px;text-align:center;cursor:pointer;}
.cart_sales_zeng .size-box a:hover{ text-decoration:none;border:1px #ccc solid;}
.cart_bigbtns{width:970px; height:35px; margin:20px auto; text-align:right;}
.sales_anything{width:990px; margin:0 auto 10px;}
.sales_addsale{width:988px; margin:0 auto 10px; border:#ccc solid 1px; border-top:none;}
.sales_addsale h2{height:36px; background-color:#efefef; border-top:#ccc solid 1px; line-height:36px; background-image:url(http://static.yohobuy.com/images/icons01.gif); background-repeat:none; background-repeat:no-repeat; padding-left:26px; position:relative; }
.addsale_retract{background-position:10px -129px;}
.addsale_expand{background-position:10px -161px;}
.sales_addsale h2 .pageprev{position:absolute; right:42px; top:8px;}
.sales_addsale h2 .pagenext{position:absolute; right:10px; top:8px;}
.pageprev a span{width:4px; height:7px; background:url(http://static.yohobuy.com/images/icons01.gif) 0 -318px no-repeat; text-indent:-3000px; overflow:hidden; margin-top:7px; padding-right:4px; display:block;}
.pagenext a span{width:4px; height:7px; background:url(http://static.yohobuy.com/images/icons01.gif) -496px -412px no-repeat; text-indent:-3000px; overflow:hidden; margin-top:7px; padding-right:4px; display:block;}
.addsale_cnt{width:988px; display:block; border-top:#e3e3e3 solid 1px;}
.addsale_cnt li{width:164px; border-right:#e3e3e3 solid 1px; float:left; height:230px; display:block; position:relative;}
.addsale_cnt li.bdrnone{width:163px;}
.addsale_cnt li a img{width:100px; margin:25px 0 0 32px;}
.addsale_cnt li a strong{font-size:12px; color:#333; font-weight:normal; text-decoration:underline; width:100px; display:block; margin:5px 0 0 32px; line-height:16px;height:32px;overflow:hidden;cursor:pointer;}
.addsale_cnt li b{margin:10px 5px 5px 32px;display:block;}
.addsale_cnt li b del{color:#999;}
.addsale_cnt li .addtocart{display:block; height:22px; background:#333; color:#fff; line-height:22px; text-align:center; position:absolute; bottom:0; left:0; width:100%; cursor:pointer;}
.addsale_cnt li .addtocart b{font-weight:normal; color:#fff; display:inline-block; background:url(http://static.yohobuy.com/images/icons01.gif) 0 -274px; padding-left:17px; margin:0;}
.sales_addsale .cart_alert{width:988px; border-top:#e3e3e3 solid 1px; padding:50px 0;}
.cart_alert span{height:36px; line-height:36px; background:url(http://static.yohobuy.com/images/icons01.gif) no-repeat 0 -193px; padding-left:16px; display:block;}
.sales_addsale .cart_alert span{ margin-left:360px;}
.receiver td, .receipt td {padding: 5px 0;}
.cart-empty{border:none !important; padding:100px 0 !important; background:url(http://static.yohobuy.com/images/cart_empty.gif) no-repeat 200px 56px; padding-left:260px !important;}
.cart_main{width:990px; margin:0 auto;}
.cart_main h2{height:30px; border-top:#ccc solid 1px;border-bottom:#ccc solid 1px; background:#f4f4f4; line-height:30px; padding:0 10px;font-size:12px;font-weight:normal;margin-bottom:10px;}
.cart_main .buy_title{color:#fff; background:#000;font-weight:bold;}
.cart_main .ds_single{width:968px;padding:10px;margin:0px auto 10px auto; background:#fdfcdd; border:#efdda6 solid 1px; }
.cart_main .ds_single h3{font-size:12px;}
.cart_main .ds_single p{margin-left:10px; line-height:24px;}
.receiver select{display:inline-block;}
.rec_choose{width:990px; border-bottom:#c9c9c9 dotted 1px; padding:10px 0;}
.rec_choose p{height:12px; line-height:12px; display:block; padding:9px 10px;}
.rec_choose p input{vertical-align:text-bottom; margin-right:5px;}
.rec_choose p.on{height:14px; line-height:14px; font-weight:bold; background:#f0f5f8; padding:12px 10px 18px;}
.receiver table{margin:10px;}
.payment h4{margin:10px; border:#e6e6e6 solid 1px; background:url(http://static.yohobuy.com/images/roundgreybtn.gif) no-repeat 10px center #efefef; height:24px; line-height:24px; padding-left:25px; font-size:12px; font-weight:normal;}
.payment label input{vertical-align:text-bottom;}
.choose_pay{margin:0 30px; }
.pay_ol{border-bottom:#c9c9c9 dotted 1px;}
.cp_list{width:600px;border-left:#c9c9c9 dotted 1px; padding-left:10px; margin:0 0 10px 10px;}
.cp_list p{margin-bottom:5px;}
.cp_list img{float:left; border:#e5e5e5 solid 1px; margin-right:5px; margin-bottom:5px;}
.pay_onarrival{padding-top:10px;}
.pay_onarrival p{padding:5px 0 0 20px;}
.payor_info{margin:0 30px;}
.payor_info label,.payor_info p{margin-top:10px; display:block;}
.payor_info p label{margin-top:0; display:inline;}
.payor_info td p{width:400px;}
.checkout h2{position:relative;}
.checkout h2 b{position:absolute; right:10px; top:0;}
.checkout h2 b a{color:#fff; text-decoration:underline;}
.checkout_sales{padding:20px 10px 0 0;}
.checkout_sales p{margin-bottom:5px;}
.checkout_sales .checkout_left{width:500px;float:left;}
.checkout_sales .checkout_right{width:400px;float:right;}
.fp_info{margin-bottom:10px;}
.fp_info .title{height:30px;padding:0px 0px 0px 25px;background:url(http://static.yohobuy.com/images/fp_zk.png) left 0px no-repeat;cursor:pointer;}
.fp_info .title span{height:30px;line-height:30px;font-family:Arial,helvetica,sans-serif;padding:0px 10px 0px 0px;background:url(http://static.yohobuy.com/images/fp_zk.png) right 0px no-repeat;display:block;}
.fp_info .zk{background:url(http://static.yohobuy.com/images/fp_zk.png) left -30px no-repeat;}
.fp_info .main {width:400px;border:1px #ccc solid;margin-top:5px;}
.fp_info .main td{padding:5px 0 5px 5px; overflow:hidden;}
.beizhu_info {width:400px;border:1px #ccc solid;}
.beizhu_info .title{height:20px;line-height:20px;font-family:Arial,helvetica,sans-serif;padding:2px 0px 0px 25px;background:url(http://static.yohobuy.com/images/ico_zk.png) 9px 5px no-repeat;}
.beizhu_info .main{padding:5px 25px;display:block;}
.beizhu_info textarea{border:#ccc solid 1px; background:url(http://static.yohobuy.com/images/inputbg.gif) -1px -1px no-repeat; width:345px; height:60px;margin-bottom:5px;}
.choose_check{width:990px; border-bottom:#ccc solid 1px; padding-bottom:20px; float:right;}
.cc_final{width:990px; float:right; text-align:right; padding-right:10px; padding-top:20px;}
.checkout .btn_type6{margin-bottom:5px;}
.checkout .cart_bigbtns{padding-bottom:30px;}
.checkout .font_24{padding-right:5px; vertical-align:sub; *vertical-align:auto;}
.choose_check .btn_type10{float:right;}
.cc_wrap{width:970px; margin:5px 10px 0;}
.billcheck{background:#fdfcdd; border:#efdda6 solid 1px; width:230px; text-align:right; float:right; padding:10px;}
.billcheck p{font-weight:bold;}
.billcheck_input{height:18px; line-height:18px; width:65px; border:#ccc solid 1px; background:url(http://static.yohobuy.com/images/inputbg.gif) -1px -1px no-repeat; vertical-align:middle; margin-right:5px;}
.billcheck small{margin:6px 0 0; display:block;}
.billcheck .single_wrongalert{margin-top:5px;}
.bc_btns{margin-top:5px;}
.bc_done{width:46px; height:20px; line-height:20px; background:url(http://static.yohobuy.com/images/icons01.gif) no-repeat -132px 0; text-align:center; color:#fff; border:none; cursor:pointer;}
.bc_cancel{width:46px; height:20px; line-height:20px; background:url(http://static.yohobuy.com/images/icons01.gif) no-repeat -178px 0; text-align:center; color:#666; border:none; cursor:pointer;}
.ticketcheck p{text-align:left; padding-bottom:10px;}
.ticketcheck label{display:block; text-align:left; margin-bottom:5px;}
.ticketcheck label input.bc_done,.ticketcheck label input.billcheck_input{vertical-align:middle;}
.cc_done{background:#fdfcdd; border:#efdda6 solid 1px; height:30px; line-height:30px; display:inline-block; float:right; padding:0 10px; cursor:pointer;}
.cc_done span{display:inline-block; background:url(http://static.yohobuy.com/images/icons01.gif) 0 -587px no-repeat; padding-left:16px;}
.pay_style{border-top:#000 solid 2px; width:990px; margin:0 auto; padding-top:10px;}
.paydone{font-size:14px; font-weight:bold; color:#000; background:url(http://static.yohobuy.com/images/icons01.gif) 0 -660px no-repeat; height:22px; line-height:22px; padding-left:26px;}
.paydoneok{font-size:14px; font-weight:bold; color:#000; background:url(http://static.yohobuy.com/images/ico_war.png) no-repeat; line-height:22px; padding-left:26px;}
.paydoneok .info{font-size:12px;font-weight:normal;padding:10px 0px;display:block;color:#666;}
.paydoneok .info b{font-size:14px;font-weight:bold;color:#e8044f;}
.payerror{font-size:14px; font-weight:bold; color:#000; background:url(http://static.yohobuy.com/images/icons01.gif) 0 -735px no-repeat; height:22px; line-height:22px; padding-left:26px;}
.ps_icons{background:#fdfcdd; border:#efdda6 solid 1px; width:948px; padding:20px; margin:20px 0 0 ; position:relative;}
.ps_iconsli{margin-top:10px;}
.ps_icons span{ width:140px; height:31px; float:left;margin-bottom:5px; cursor:pointer;}
.ps_icons span img{width:102px; height:29px;border:#e5e5e5 solid 1px;}
.ps_icons .ifarrow{bottom:-7px; left:850px;}
.pay_done1{width:990px !important; overflow:hidden;}
.pay_done1 .paydone{margin:50px 0 0 250px;}
.pay_done1 .cart_bigbtns{padding-left:350px; padding-top:20px;}
.pay_done1 .cart_bigbtns span{margin-right:5px;}
.pay_done1 .cart_bigbtns .btn_type6 a{color:#fff !important;}
.pay_done1 .cart_bigbtns .btn_type5 a{color:#666 !important;}
.pay_done1 .cart_alert span{height:36px; line-height:36px; background:url(http://static.yohobuy.com/images/icons01.gif) no-repeat 0 -193px; padding-left:16px; display:block; margin-left:400px;}
.pay_done2 .paydone{margin:50px 0 0 300px;}
.arrivaltime{margin:10px 0 0 325px;}
.arrivaltime a{font-family:Simsun;}
.pay_done2 .cart_bigbtns{padding-left:325px;}
.pay_done2 .cart_alert span{margin-left:325px;}
.pay_done2 .payerror{margin:50px 0 0 300px;}
.pay_done2 .payerror a{color:#e8044f;}
.but_modify, .but_modify:hover{background:url(http://static.yohobuy.com/images/but-modify.png) no-repeat; width:49px; height:18px; display:block; float:left; color:#FFF; vertical-align:middle; line-height:16px; padding-left:12px; font-family:Arial,helvetica,sans-serif; font-size:12px; font-weight:normal; margin-left:10px; text-decoration:none;}
/*购物流程谭雄end*/
/*赠品提示*/
.buy-win{width:300px; background:#fff; z-index:99;}
.buy-win .title {border:0px;}
.buy-win p {padding: 0 0 30px 30px;}
.buy-win .btn_type6 a{padding:0 20px;}
.cuxiaoxinxi{ margin:0 auto; width:990px; height:100%;}
.cuxiaoxinxi img{ margin-bottom:10px;}
.summer_cart{width:990px;height:58px;padding:40px 0px 0px 0px;background:url(http://static.yohobuy.com/images/summer/summer_cart.png) no-repeat;margin:0 auto;}
.summer_cart p{width:730px;height:46px;line-height:46px;padding:0px 0px 0px 98px;float:left;}
.summer_cart p span{color:#FE531B;}
.summer_cart .btn_enter_summer{width:160px;height:46px;float:left; cursor:pointer;}
/**/
.cart_browsealert_new{width:968px; height:20px; line-height:20px; background:#FDFCDD;padding:5px 10px; border:#efdda6 solid 1px; margin:10px auto 20px auto; color:#615e4b; clear:both;}
.cart_browsealert_new span.pay_detail{ float:left;}
.cart_browsealert_new span.cartprice_detail{ float:right; color:#999999; }
.cart_tips{width:968px; height:20px; line-height:20px; background:#fdcfe2;padding:5px 10px; border:#E8044F solid 1px; margin:10px auto 20px auto; color:#E8044F; clear:both;text-align:center;font-weight:bold;}
/*购物流程new*/
.cartnew-browser{width:968px; height:20px; line-height:20px; background:#FDFCDD;padding:5px 10px; border:#efdda6 1px solid; font-size:14px; margin:10px auto 0px auto;}
.cartnew-browser a{font-weight:bold;color:#468fa2;text-decoration:underline;}
.cartnew-title{width:990px;height:52px; overflow:hidden; padding:20px 0px 0px 0px;margin:0px auto;}
.cartnew-title h2{height:32px; width:200px; overflow:hidden; text-indent:-3000px; background:url(http://static.yohobuy.com/images/cart_logo.gif) no-repeat;float:left;}
.cartnew-title .step1{background-position:0 0;}
.cartnew-title .step2{background-position:0 -32px;}
.cartnew-title .step3{background-position:0 -64px;}
.cartnew-title .step4{background-position:0 -96px;}
.cartnew-title ul{width:446px;height:30px;background:url(http://static.yohobuy.com/images/cartnew_flow.png) no-repeat top right;float:right;}
.cartnew-title li{width:176px;height:30px;text-align:center;color:#999;float:left;}
.cartnew-title li span{display:block;height:15px;padding:15px 0px 0px 0px;line-height:15px;}
.cartnew-title .act{background:url(http://static.yohobuy.com/images/cart_flow_black.gif) no-repeat top center;color:#000;}
.cartnew-title .end{width:94px; text-align:right;}
.cartnew-title .end .act{background:url(http://static.yohobuy.com/images/cart_flow_black.gif) no-repeat top right;}
.cartnew-tips{width:990px;zoom:1;margin:0 auto 5px auto;}
.cartnew-tips:after{content: ""; display: block; clear: both; height: 0px;}
.cartnew-tips .right{float:right;}
.cartnew-tips .tipsbox{width:648px;height:23px;line-height:18px;padding:4px 5px 4px 10px;color:#666;background:url(http://static.yohobuy.com/images/cartnew_tipsbox.png) no-repeat; position:relative;float:left;}
.cartnew-tips .tipsbox strong{color:#000;}
.cartnew-tips .tipsbox .btn_close{width:17px;height:17px;padding:0px;background:url(http://static.yohobuy.com/images/i_close_f.png) no-repeat;float:right;cursor:pointer;}
.cartnew-tips .tipsbox .btn_down{width:17px;height:17px;background:url(http://static.yohobuy.com/images/i_mycartupdown.png) no-repeat 0px 0px;float:right;cursor:pointer; position:absolute;z-index:2;right:5px;top:4px;}
.cartnew-tips .tipsbox .btn_up{width:17px;height:17px;background:url(http://static.yohobuy.com/images/i_mycartupdown.png) no-repeat 0px -17px;float:right;cursor:pointer; position:absolute;z-index:2;right:5px;top:4px;}
.cartnew-tips .tipsbox dt{width:65px;font-weight:bold;color:#000;background:url(http://static.yohobuy.com/images/i_warning.png) no-repeat 0px 2px;padding:0px 0px 0px 18px;float:left;}
.cartnew-tips .tipsbox dd{width:520px;float:left;}
.cartnew-tips .tipsbox dl{ position:absolute;width:646px;padding:4px 6px 4px 11px;top:0px;left:0px;border:0px;backgroud:none;}
.cartnew-tips .tipsbox .textmore{display:none;}
.cartnew-tips .tipsbox-open dl{width:646px;padding:3px 5px 5px 10px;top:0px;left:0px;border:1px #cecece solid;background:#f8f8f8;}
.cartnew-main{width:990px;zoom:1;margin:0 auto;}
.cartnew-main:after{content: ""; display: block; clear: both; height: 0px;}
.cartnew_table{border-collapse:collapse;border:1px solid #ccc; margin-top:-1px;}
.cartnew_table th{height:32px;background:#000;color:#fff;vertical-align:middle; text-align:center;}
.cartnew_table td{border:1px solid #ccc;padding:10px; text-align:center;*padding-right:0;*padding-left:0;}
.cartnew_table .th1{width:346px;padding:0px;}
.cartnew_table .th2{width:120px;padding:0px;}
.cartnew_table .th3{width:116px;padding:0px;}
.cartnew_table .th4{width:120px;padding:0px;}
.cartnew_table .th5{width:100px;padding:0px;}
.cartnew_table .th6{width:188px;padding:0px;}
.cartnew_table .trbg{background:#f8f8f8;text-align:left;}
.cartnew_table .trbg strong{color:#000;}
.cartnew_table .trbg_h{background:#f2f2f2;}
.cartnew_table .trbg_h .cartnew_mark_zeng{border:2px #c2c2c2 solid;}
.cartnew_table .trbg_h .cartnew_mark_zeng span{background:#c2c2c2;}
.cartnew_table .right{height:20px;line-height:20px;float:right;}
.cartnew_table .right .pc_pre,.cartnew_table .right .pc_next{ vertical-align:middle;}
.cartnew_table .i_open{height:20px;line-height:20px;background:url(http://static.yohobuy.com/images/i_-.png) no-repeat 0px 2px;font-size:12px;padding:0px 0px 0px 20px;display:inline-block; cursor:pointer;}
.cartnew_table .i_close{height:20px;line-height:20px;background:url(http://static.yohobuy.com/images/i_+.png) no-repeat 0px 2px;font-size:12px;padding:0px 0px 0px 20px;display:inline-block; cursor:pointer;}
.cartnew-img img{float:left; margin-right:10px;display:inline;width:60px;}
.cartnew-img p{float:left; padding-top:15px; text-align:left; width:210px;}
.cartnew-img .cart_discount{margin-right:10px;}
.cartnew-img .cart_discount img{margin-right:0px;}
.cartnew-sum{background:#efefef;border:1px #ccc solid;padding:10px;margin-bottom:10px;zoom:1;}
.cartnew-sum:after{content: ""; display: block; clear: both; height: 0px;}
.cartnew-sum .left{float:left;}
.cartnew-sum .right{text-align:right;float:right;}
.cartnew-sum .sum{color:#333;font-weight:bold;padding-bottom:5px;}
.cartnew-sum strong{color:#e8044f;font-size:18px;}
.cartnew-submit{padding:10px 0px 40px 0px;text-align:right;}
.cartnew-submit a,.cartnew-submit input{ vertical-align:middle;}
.cartnew-goodslist{border:1px #ccc solid;margin-bottom:10px;}
.cartnew-goodslist .title{height:20px;padding:8px 10px;background:#efefef;}
.cartnew-goodslist .title h2{height:20px;line-height:20px;background:url(http://static.yohobuy.com/images/i_+.png) no-repeat 0px 2px;font-size:12px;padding:0px 0px 0px 20px;float:left; cursor:pointer;}
.cartnew-goodslist .title .right{float:right;}
.cartnew-goodslist .main{height:230px;border-top:1px #e3e3e3 solid;display:none;}
.cartnew-goodslist .main li{width:163px;height:230px;border-right:1px #e3e3e3 solid;float:left;}
.cartnew-goodslist .main .list{width:100px;padding:10px 0px 0px 0px;margin:0 auto;}
.cartnew-goodslist .main .list .thumb{height:110px;}
.cartnew-goodslist .main .list .thumb img{width:100px;height:100px;}
.cartnew-goodslist .main .list .name{height:35px; overflow:hidden;}
.cartnew-goodslist .main .list .name h3{height:30px;line-height:15px;font-size:12px;font-weight:normal;color:#333; cursor:pointer;overflow:hidden;}
.cartnew-goodslist .main .list .name a{color:#333;text-decoration:underline;}
.cartnew-goodslist .main .list .price{color:#333;height:25px;line-height:15px;font-weight:bold; white-space:nowrap;overflow:hidden;}
.cartnew-goodslist .main .list .price del{color:#999;}
.cartnew-goodslist .main .list .op{text-align:center;padding:0px 0px 5px 0px;}
.cartnew-goodslist .main .list .f_outlet{display:block;text-align:center;}
.cartnew-goodslist .main .end{border:0px;}
.cartnew-goodslist-open .title h2{background:url(http://static.yohobuy.com/images/i_-.png) no-repeat 0px 2px;}
.cartnew-goodslist-open .main{display:block;}
.cartnew-goodslist .list-none{padding:100px 0px;}
.cartnew-sumfinal{padding:10px 0px;font-size:14px;text-align:right;color:#000;zoom:1;}
.cartnew-sumfinal:after{content: ""; display: block; clear: both; height: 0px;}
.cartnew-sumfinal strong{color:#e8044f;font-size:24px;}
.cartnew-checkout{zoom:1;}
.cartnew-checkout:after{content: ""; display: block; clear: both; height: 0px;}
.cartnew-checkout .left{width:405px;padding:10px 0px 0px 10px; text-align:left;float:left;}
.cartnew-checkout .fp{}
.cartnew-checkout .fp .title{height:35px;}
.cartnew-checkout .fp .main{border:1px #ccc solid;padding:10px 15px;margin-bottom:10px;}
.cartnew-checkout .fp dl{height:25px;padding:10px 0px;line-height:22px;}
.cartnew-checkout .fp dt{width:70px;float:left;}
.cartnew-checkout .fp dd{width:290px;float:left;}
.cartnew-checkout .fp dd .input_1{width:200px;}
.cartnew-checkout .bz .title{height:35px;}
.cartnew-checkout .bz .main{border:1px #ccc solid;padding:10px 15px;margin-bottom:10px;}
.cartnew-checkout .bz dt{height:80px;}
.cartnew-checkout .bz dt .textarea_1{width:369px;height:70px;}
.cartnew-checkout .bz p{padding-bottom:5px;}
.cartnew-checkout .right{width:420px;padding:10px 0px 0px 0px; text-align:right;height:auto;float:right;}
.cartnew-checkout .right .sum{line-height:1.8;padding:0px 0px 20px 0px;color:#000;}
.cartnew-checkout .right .sum dl{clear:both;height:20px;}
.cartnew-checkout .right .sum dt{width:330px; text-align:right;float:left;}
.cartnew-checkout .right .sum dd{width:80px; padding-left:10px;text-align:left;float:left;}
.cartnew-checkout .right .pay .title{height:35px;}
.cartnew-checkout .right .pay .main{border:1px #ccc solid;padding:10px 15px 5px 15px;margin:0px 0px 10px 100px;}
.cartnew-checkout .right .pay .main .input_1{width:70px; vertical-align:middle;}
.cartnew-checkout .right .pay .main strong{color:#000;}
.cartnew-checkout .right .pay .main p{padding:0px 0px 5px 0px;color:#666;}
.cartnew-checkout .right .pay .main .list-t{text-align:left;font-weight:bold;color:#000;padding:0px 0px 10px 0px;}
.cartnew-checkout .right .pay .main .list-m{text-align:left;}
.cartnew-checkout .right .pay .main .list-m dl{clear:both;padding:0px 0px 15px 0px;zoom:1;}
.cartnew-checkout .right .pay .main .list-m dl:after{content: ""; display: block; clear: both; height: 0px;}
.cartnew-checkout .right .pay .main .list-m dt{width:25px;float:left;}
.cartnew-checkout .right .pay .main .list-m dd{width:260px;float:left;}
.cartnew-checkout .right .pay p{padding:0px 0px 10px 0px;color:#000;}
.cartnew-info{border:1px #ccc solid;margin-bottom:15px;}
.cartnew-info .title{height:25px;background:#000;padding:5px 10px 0px 10px;}
.cartnew-info .title h2{font-size:12px;line-height:20px;color:#fff;float:left;}
.cartnew-info .title .right{float:right;}
.cartnew-info .main{padding:20px 30px; color:#333;}
.cartnew-info .box {border-bottom:1px #ccc dashed;margin-bottom:20px;padding-bottom:10px;}
.cartnew-info .box h3{height:30px;font-size:14px;color:#000;font-family:Arial,helvetica,sans-serif;}
.cartnew-info .box .a_rzu{font-size:12px;font-weight:normal;font-family:Arial,helvetica,sans-serif;}
.cartnew-info .box .list-box{border:1px #f5a7b2 solid;background:#fff2e8;padding:10px;margin-bottom:10px;}
.cartnew-info .box .list-box .list-info dl{border:1px #fff2e8 solid;}
.cartnew-info .box .list-box .list-info .over{background:#dbedf7;border:1px #8fb8e0 solid;}
.cartnew-info .box .list-info{width:906px;}
.cartnew-info .box .list-info dl{clear:both;padding:5px;border:1px #fff solid;zoom:1;}
.cartnew-info .box .list-info dl:after{content: ""; display: block; clear: both; height: 0px;}
.cartnew-info .box .list-info dt{width:790px;padding:0px 0px 1px 0px;float:left;}
.cartnew-info .box .list-info dd{width:100px;text-align:right;float:left;}
.cartnew-info .box .list-info .over{background:#dbedf7;border:1px #8fb8e0 solid;}
.cartnew-info .box .list-info .over strong{color:#E8044F;}
.cartnew-info .box .input_s{width:170px;height:22px; line-height:22px;border:#ccc solid 1px; background:url(http://static.yohobuy.com/images/inputbg.gif) -1px -1px no-repeat; vertical-align:middle;}
.cartnew-info .box .list-table{border-top:1px #ccc dashed;margin:10px 0px;padding:10px 0px 0px 0px;}
.cartnew-info .box .list-table select{display:inline-block;width:145px;}
.cartnew-info .box .submit{padding:10px 20px;}
.cartnew-info .box .tips{padding:0px 0px 0px 20px;margin-left:10px;font-family:Arial,helvetica,sans-serif;background:url(http://static.yohobuy.com/images/i_tips_ar.png) no-repeat;height:15px;line-height:15px;color:#eb004c;display:inline-block;}
.cartnew-info .box h4{clear:both;height:24px; line-height:24px; padding-left:25px;margin-bottom:10px;border:#e6e6e6 solid 1px; background:url(http://static.yohobuy.com/images/roundgreybtn.gif) no-repeat 10px center #efefef;font-size:12px; font-weight:normal;}
.cartnew-info .box .list-pay{margin-bottom:10px;padding:0px 20px;}
.cartnew-info .box .list-pay dl{clear:both;padding:5px 0px;border-bottom:1px #ccc dashed;zoom:1;}
.cartnew-info .box .list-pay dl:after{content: ""; display: block; clear: both; height: 0px;}
.cartnew-info .box .list-pay dt{width:130px;float:left;}
.cartnew-info .box .list-pay dd{width:730px;padding:0px 10px;border-left:1px #ccc dashed;float:right;}
.cartnew-info .box .list-pay p{clear:both;padding-bottom:5px;color:#666;}
.cartnew-info .box .list-pay li{width:115px;height:40px;float:left;}
.cartnew-info .box .list-pay li img{width:105px;height:30px;border:1px #ccc solid;}
.cartnew-info .box .list-payarrival{margin-bottom:10px;padding:0px 20px;}
.cartnew-info .box .list-payarrival .f_g{padding:5px 0px 0px 35px;}
.cartnew-info .box .list-paytime p{padding:0px 0px 5px 20px;}
.cartnew-info .box .list-paytime .f_g{border-bottom:1px #ccc dashed;margin-bottom:5px;}
.cartnew-info .box .list-express p{padding:0px 0px 5px 20px;}
.cartnew-info .box .list-express .f_g{padding:0px 0px 5px 35px;}
.cartnew-info .box .list-ok{}
.cartnew-info .box .list-ok .tips-gr{height:22px;background:url(http://static.yohobuy.com/images/tips_gr_ar.png) no-repeat left center;padding:0px 0px 0px 3px;display:inline-block;}
.cartnew-info .box .list-ok .tips-gr-inner{height:20px;padding:0px 10px;line-height:20px;color:#6ca547;border:1px #d2f19b solid;background:#f2fbe1;display:inline-block;}
.cartnew-info .box .list-ok .tips-gr-inner a{color:#6ca547; text-decoration:underline;}
.cartnew-info .box .list-ok p{padding:0px 0px 5px 20px;}
.cartnew-info .box .list-ok strong{color:#E8044F;}
.cartnew-info .end{border:0px;margin:0px;}
.cartnew-pay{border-top:2px #000 solid;padding:20px;}
.cartnew-pay h2{height:40px;padding:0px 0px 0px 30px;line-height:40px;color:#000;font-size:20px;font-family:Arial,helvetica,sans-serif;background:url(http://static.yohobuy.com/images/i_ok.png) no-repeat 0px 11px;}
.cartnew-pay h3{height:40px;line-height:40px;font-weight:normal;color:#666;font-size:12px;}
.cartnew-pay h3 strong{color:#E8044F;font-size:14px;}
.cartnew-pay h4{height:30px;line-height:30px;color:#000;font-size:14px;}
.cartnew-pay .box{background:#f2f2f2;border:1px #d6d6d6 solid;padding:15px;margin:20px 0px 0px 0px;zoom:1;}
.cartnew-pay .box:after{content: ""; display: block; clear: both; height: 0px;}
.cartnew-pay .box p{clear:both;height:30px;line-height:30px;}
.cartnew-pay .box li{width:145px;height:40px;float:left; cursor:pointer;}
.cartnew-pay .box li img{width: 102px;height: 29px;border: 1px solid #E5E5E5;}
.cartnew-order-success{width:860px;zoom:1;margin:70px auto;}
.cartnew-order-success:after{content: ""; display: block; clear: both; height: 0px;}
.cartnew-order-success h1{height:70px;line-height:40px;color:#333;text-align:center;font-size:20px;font-family:Arial,helvetica,sans-serif;}
.cartnew-order-success .list-box{border:1px #dadada solid;border-top:10px #000 solid;border-bottom:0px;margin-bottom:20px;}
.cartnew-order-success .list-t{height:36px;line-height:36px;background:#f3f3f3;text-align:center;color:#333;border-bottom:1px #dadada solid;}
.cartnew-order-success .list{height:36px;line-height:36px;background:#fff;text-align:center;border-bottom:1px #dadada solid;}
.cartnew-order-success .list-box .li-1{width:170px;height:36px;border-right:1px #dadada solid;font-size:14px;font-weight:bold;float:left;}
.cartnew-order-success .list-box .li-2{width:170px;height:36px;border-right:1px #dadada solid;float:left;}
.cartnew-order-success .list-box .li-3{width:170px;height:36px;border-right:1px #dadada solid;float:left;}
.cartnew-order-success .list-box .li-4{width:170px;height:36px;border-right:1px #dadada solid;float:left;}
.cartnew-order-success .list-box .li-5{width:172px;height:36px;float:left;}
.cartnew-order-success .list-box strong{font-size:14px;}
.cartnew-order-success .list-b{border:1px #fdcf74 solid;background:#fcfbdd;color:#976637;padding:20px;line-height:1.8;margin-bottom:20px;}
.cartnew-order-success .submit{text-align:center;padding:20px 0px;}
.cartnew-order-success .submit a{ vertical-align:middle;}
.i_ok_br{width:30px;height:30px;background:url(http://static.yohobuy.com/images/i_ok_br.png) no-repeat; display:inline-block; vertical-align:middle;}
.btn_continue{width:60px;height:33px;padding:0px 0px 0px 33px;text-align:left;border:0px;line-height:33px;font-size:14px;color:#333;font-weight:bold;background:url(http://static.yohobuy.com/images/btns.png) no-repeat 0px 0px;display:inline-block;cursor:pointer;}
.btn_continue:hover{color:#333; text-decoration:none;}
.btn_account{width:133px;height:33px;padding:0px;text-align:center;border:0px;line-height:33px;font-size:14px;color:#fff;font-weight:bold;background:url(http://static.yohobuy.com/images/btns.png) no-repeat 0px -33px;display:inline-block; cursor:pointer;}
.btn_account:hover{color:#fff; text-decoration:none;}
.btn_backcart{width:90px;height:22px;border:0px;background:url(http://static.yohobuy.com/images/btn_backcart.png) no-repeat;display:inline-block;}
.cartnew-main .btn_open{width:105px;height:30px;padding:0px 0px 0px 30px;line-height:30px;text-align:left;border:0px;color:#000;background:url(http://static.yohobuy.com/images/btn_openclose.png) no-repeat 0px 0px;display:inline-block;cursor:pointer;}
.cartnew-main .btn_close{width:105px;height:30px;padding:0px 0px 0px 30px;line-height:30px;text-align:left;border:0px;color:#000;background:url(http://static.yohobuy.com/images/btn_openclose.png) no-repeat 0px -30px;display:inline-block;cursor:pointer;}
.cartnew-main .btn_open2{width:105px;height:30px;padding:0px 0px 0px 30px;line-height:30px;text-align:left;border:0px;color:#fff;background:url(http://static.yohobuy.com/images/btn_openclose.png) no-repeat 0px -60px;display:inline-block;cursor:pointer;}
.cartnew-main .btn_open2:hover{color:#fff;}
.btn_ss1{width:46px;height:20px;line-height:20px;text-align:center;border:0px;color:#fff;background:url(http://static.yohobuy.com/images/btn_ss.png) no-repeat 0px 0px;display:inline-block;cursor:pointer;}
.btn_ss2{width:46px;height:20px;line-height:20px;text-align:center;border:0px;color:#000;background:url(http://static.yohobuy.com/images/btn_ss.png) no-repeat 0px -20px;display:inline-block;cursor:pointer;}
.btn_sb1{width:140px;padding:0px 0px 0px 10px;height:33px;line-height:33px;border:0px;color:#fff;text-align:left;font-size:12px;font-weight:bold;background:url(http://static.yohobuy.com/images/btn_sb.png) no-repeat 0px 0px;display:inline-block;cursor:pointer;}
.btn_sb1:hover{color:#fff;text-decoration:none}
.btn_sb2{width:110px;padding:0px 9px 0px 0px;height:33px;line-height:33px;border:0px;color:#fff;text-align:center;font-size:14px;font-weight:bold;background:url(http://static.yohobuy.com/images/btn_sb.png) no-repeat 0px -33px;display:inline-block;cursor:pointer;}
.btn_sb2:hover{color:#fff;text-decoration:none}
.btn_sb3{width:170px;padding:0px 0px 0px 30px;height:33px;line-height:33px;border:0px;color:#fff;text-align:left;font-size:14px;font-weight:bold;background:url(http://static.yohobuy.com/images/btn_sb.png) no-repeat 0px -66px;display:inline-block;cursor:pointer;}
.btn_sb3:hover{color:#fff;text-decoration:none}
.btn_sb{padding:0px 0px 0px 25px;height:33px;line-height:33px;border:0px;color:#fff;text-align:center;font-size:14px;font-weight:bold;background:url(http://static.yohobuy.com/images/btn_sb.png) no-repeat left -99px;display:inline-block;cursor:pointer;}
.btn_sb b{padding:0px 35px 0px 0px;height:33px;line-height:33px;color:#fff;text-align:center;font-size:14px;font-weight:bold;background:url(http://static.yohobuy.com/images/btn_sb.png) no-repeat right -99px;display:inline-block;cursor:pointer;}
.btn_sb:hover{color:#fff;text-decoration:none}
.btn_sbr{padding:0px 0px 0px 40px;height:34px;line-height:34px;border:0px;color:#fff;text-align:center;font-size:14px;font-weight:bold;background:url(http://static.yohobuy.com/images/btn_sbr.png) no-repeat left 0px;display:inline-block;cursor:pointer;}
.btn_sbr b{padding:0px 40px 0px 0px;height:34px;line-height:34px;color:#fff;text-align:center;font-size:14px;font-weight:bold;background:url(http://static.yohobuy.com/images/btn_sbr.png) no-repeat right 0px;display:inline-block;cursor:pointer;}
.btn_sbr:hover{color:#fff;text-decoration:none}
.btn_sbh{padding:0px 0px 0px 20px;height:34px;line-height:34px;border:0px;color:#333;text-align:center;font-size:14px;font-weight:bold;background:url(http://static.yohobuy.com/images/btn_sbr.png) no-repeat left -34px;display:inline-block;cursor:pointer;}
.btn_sbh b{padding:0px 20px 0px 0px;height:34px;line-height:34px;color:#333;text-align:center;font-size:14px;font-weight:bold;background:url(http://static.yohobuy.com/images/btn_sbr.png) no-repeat right -34px;display:inline-block;cursor:pointer;}
.btn_sbh:hover{color:#333;text-decoration:none}
/*礼品包装 add by csj at 20130104*/
.btn_blue1 {
height: 20px;
background: url(http://static.yohobuy.com/images/v2/common/btn_blue1.png) no-repeat left 0px;
padding-left: 8px;
border: 0px;
color: white;
display: inline-block;
text-decoration: none;
}
.btn_blue1 span {
height: 20px;
line-height: 20px;
background: url(http://static.yohobuy.com/images/v2/common/btn_blue1.png) no-repeat right 0px;
padding-right: 10px;
display: inline-block;
cursor: pointer;
color: white;
text-decoration: none;
}
.cartnew_table .cartnew_gift_header{
height:50px;
/*background:url(http://static.yohobuy.com/images/v2/common/cart_gift_bg.png) repeat-x;*/
}
.cartnew_table .cartnew_gift_header td{width:988px;}
.cartnew_table .cartnew_gift_header td{
/*background:#000 url(http://static.yohobuy.com/images/v2/activity/cart_gift_banner.jpg) no-repeat center;*/
background:url(http://static.yohobuy.com/images/v2/common/cart_gift_bg.png) repeat-x;
height:50px;
padding-top:0;
padding-bottom:0;
}
.cartnew_table .cartnew_gift_header div{
width:100%;
height:100%;
background:url(http://static.yohobuy.com/images/v2/activity/cart_gift_banner.jpg) no-repeat center;
}
.cartnew_table .cartnew_gift_header .switch{
display:block;
height:30px;
width:100%;
float:right;
margin-right:10px; -margin-right:5px;
margin-top:10px;
background:url(http://static.yohobuy.com/images/v2/activity/btn_gift_switch.png) no-repeat 940px -30px;
outline:none;
}
.cartnew_table .cartnew_gift_header .switch_closed{
background:url(http://static.yohobuy.com/images/v2/activity/btn_gift_switch.png) no-repeat 940px 0px;
}
.cartnew_table .gift_div{padding:10px; position:relative;}
.cartnew_table .th1 .gift_div{padding:20px;}
.cartnew_table .gift_div .cartnew-img img{float:none;}
.cartnew_table .gift_div .cartnew-img .gift_a{float:left;}
.cartnew_table .a_blue1{color:#024d9a; text-decoration:none; display:block; padding-bottom:8px;}
.cartnew_table .a_blue1:hover{color:#024d9a; text-decoration:underline;}
.cartnew_table .th1 .gift_div span.f_g{line-height:20px;}
.cartnew_table .gift_tbody .cartnew-img p{padding-top:10px;}
/*add by csj at 20130114*/
.cartnew_table .cartnew_img_layer{
position:absolute;
z-index:10;
left:240px;
_left:75px;
top:-25px;
text-align:left;
background:url(http://static.yohobuy.com/images/v2/activity/gift_layer_leftbg.png) repeat-y;
}
.cartnew_table .cartnew_img_layer dl{
padding:15px;
border-width:1px 1px 1px 0;
border-color:#ccc;
border-style:solid;
background:#fff;
}
.cartnew_table .cartnew_img_layer dl dt{
padding-bottom:10px;
width:100%;
}
.cartnew_table .cartnew_img_layer .left_arrow{
background:url(http://static.yohobuy.com/images/v2/activity/gift_layer_arrow.png) no-repeat;
padding-left:15px;
}
.cartnew_table .cartnew_img_layer .arrow1{
background-position:0 66px
}
.cartnew_table .th1 .cartnew_img_layer{
top:-15px;
}
/*二维码按钮*/
.btn_2dcode{padding:0px 0px 0px 45px;height:34px;line-height:34px;border:0px;color:#fff;text-align:center;font-size:14px;font-weight:bold;background:url(http://static.yohobuy.com/images/v2/common/btn_2dcode_view.png) no-repeat left 0px;display:inline-block;cursor:pointer;}
.btn_2dcode b{padding:0px 25px 0px 0px;height:34px;line-height:34px;color:#fff;text-align:center;font-size:14px;font-weight:bold;background:url(http://static.yohobuy.com/images/v2/common/btn_2dcode_view.png) no-repeat right 0px;display:inline-block;cursor:pointer;}
.btn_2dcode:hover{color:#fff;text-decoration:none}
/*yohood购物车样式 at 20130615*/
.cartnew-main .cartnew_table{
border: none;
}
.cartnew-main .presale_tr_space td{
padding: 0;
border: none;
line-height: 18px;
height: 18px;
}
.cartnew-main .presale_tr td{
text-align: left;
background: #fff9d9;
border: none;
color:#373526;
padding:0px 10px;
height:32px;
}
.cartnew-main .presale_tr td span{
line-height: 16px;
}
.cartnew-main .presale_tr td input{
vertical-align: middle;
margin-right: 5px;
}
.cartnew-main .presale_tr td img{
vertical-align: middle;
margin: -2px 8px 0 12px;
}
.cartnew-main .presale_tr_common td{
text-align: left;
background: #f8f8f8;
}
.cartnew-main .presale_tr_common td input{
vertical-align: middle;
margin-right: 5px;
}
.cartnew-main .cartnew-img input{
float: left;
margin: 25px 15px 0 15px;
}
.cartnew-main .cartnew_mark_pre_sale {
width: 60px;
height: 60px;
margin-right: 10px;
display: inline;
float: left;
overflow: hidden;
position: relative;
}
.cartnew-main .cartnew_mark_pre_sale span {
width: 100%;
height: 15px;
line-height: 15px;
position: absolute;
left: 0px;
bottom: 0px;
text-align: center;
color: #fff;
/*background: #a788c8;*/
/*background:url(http://static.yohobuy.com/images/v2/common/yohood_goods_icon.png) no-repeat;*/
display: block;
cursor: pointer;
}
.cartnew-submit{
position: relative;
}
.cartnew-submit .btn_account_disabled {
width: 133px;
height: 33px;
padding: 0px;
text-align: center;
border: 0px;
line-height: 33px;
font-size: 14px;
color: #ccc;
font-weight: bold;
background: url(http://static.yohobuy.com/images/v2/common/go_cash_disabled.png) no-repeat 0px 0px;
display: inline-block;
cursor: pointer;
display: none;
}
.cartnew-submit .btn_account_disabled:hover{
color:#ccc;
text-decoration:none;
}
.cartnew-submit .go_cash_tips{
width: 200px;
padding: 5px 7px 0 28px;
height: 45px;
position: absolute;
right: 135px;
_right: 235px;
top: 10px;
text-align: left;
color: #e8044f;
background: url(http://static.yohobuy.com/images/v2/common/go_cash_tips_bg.png);
display: none;
}
.cartnew-submit-no .btn_account_disabled{
display:inline-block;
}
.cartnew-submit-no .go_cash_tips{
display: inline-block;
}
.cartnew-submit-no .btn_account{
display: none;
}
.cartnew-main .cartnew_table .cartnew_mark_outlet{
border:none;
}
.cartnew-main .cartnew_table .cartnew_mark_zeng{
border:none;
}
.cart_common_goods th{
background:#f8f8f8;
}
.cart_common_goods .cart_common_tr{
border:1px solid #ccc;
border-bottom:none;
height:30px;
}
.cart_common_goods .cart_common_tr td{
padding:6px 10px;
}
.cart_common_goods .cart_common_tr .th1{
color:#333;
text-align:left;
font-weight:normal;
*border-left:1px solid #CCC;
}
.cart_common_goods .cart_common_tr .th6{
*border-right:1px solid #CCC;
}
.cart_common_goods .cart_common_tr .th1 input{
margin:0 5px 0 10px;
}
.cartnew-main .cart_pre_sale{
}
.cartnew-main .cart_pre_sale .presale_tr_space{
border:none;
}
.cartnew_table .cart_gift_td{
padding-left:52px;
}
.cartnew_table .cart_line_tr td{
border:0;
}
.cartnew-main .cart_delete_div{
background:#fff8d9;
border:1px solid #fcd081;
padding:0 10px;
margin-bottom:18px;
}
.cartnew-main .cart_delete_table td{
border:none;
}
.cartnew-main .cart_delete_table{
margin:0;
}
.cartnew-main .cart_delete_table .th1{
width:336px
}
.cartnew-main .cart_delete_table .th6{
width:178px;
}
.cartnew-main .cart_delete_table .cart_line_del td{
border-bottom:1px dashed #fcd081;
}
.cartnew-main .cart_delete_table .cart_del_td{
text-align:left;
padding-left:0;
}
.cartnew-main .cart_delete_table .cart_del_td span{
padding-right:15px;
}
.cartnew-main .cart_delete_table .cart_del_td_r{
text-align:right;
padding-right:0;
}
.cartnew-main div.cart_delete_none{
margin-bottom:0;
border:0;
}
.cartnew-main .cart_pre_sale td .pre_sale_date{
color:#e8044f;
display:inline-block;
}
.cartnew-main .cart_pre_sale td{
border-top: 0;
}
.cartnew-main .cartnew_table .gift_tr .cartnew-img{
padding-left: 40px;
}
.cartnew-sum .batch_div input{
margin-right:5px;
}
.cartnew-sum .batch_div span{
color:#333;
}
.cartnew-sum .batch_div a{
color:#333;
margin-left:20px;
}
.cartnew-submit .btn_continue{
float:left;
}
.cartnew-img p{
}
/*预售按钮 20130616*/
.btn_pre_sale {
width: 225px;
height: 45px;
background: url(http://static.yohobuy.com/images/v2/common/btn_pre_sale.png) no-repeat;
display: inline-block;
overflow: hidden;
border: 0px;
cursor: pointer;
}
/*coupon*/
.cartnew-checkout .right .pay .main .list-m dt{
padding-top:3px;
}
/*填写订单20130903*/
.cartnew-info .box .list-pay dd{
border-left:none;
float:left;
padding:0;
}
.cartnew-info .box .list-pay dd .support_link{
padding-bottom:5px;
}
.cartnew-info .box .list-pay dd .support_link img{
vertical-align:text-top;
}
.cartnew-info .box .list-pay dd .support_link img.arrar_up{
display:none;
}
.cartnew-info .box .list-pay dd .support_link a{
color:#468fa2;
}
.cartnew-info .box .list-pay dd .support_link a:hover{
text-decoration:none;
}
.cartnew-info .box .list-pay dd .support_detail{
border-left:1px dashed #ccc;
padding:5px 0 0 10px;
display:none;
}
.cartnew-info .box .list-pay dd.support_show .support_detail{
display:block;
}
.cartnew-info .box .list-pay dd.support_show .support_link img.arrar_up{
display:inherit;
}
.cartnew-info .box .list-pay dd.support_show .support_link img.arrar_down{
display:inherit;
}
.cartnew-info .box .cod_detail{
background:#f4f4f4;
color:#666;
margin-top:15px;
position:relative;
border:1px solid #f4f4f4;
}
.cartnew-info .box .cod_red{
background:#fef2e6;
border:1px solid #f2a8b2;
}
.cartnew-info .box .cod_green{
background:#f2fce1;
border:1px solid #dbe6c0;
}
.cartnew-info .box .cod_detail .arrow_top_gray{
position:absolute;
width:18px;
height:8px;
background:url(http://static.yohobuy.com/images/v2/common/icon_arrow_top.png) no-repeat;
top:-7px;
left:35px;
}
.cartnew-info .box .cod_red .arrow_top_gray{
background-position:0 -8px;
}
.cartnew-info .box .cod_green .arrow_top_gray{
background-position:0 -16px;
}
.cartnew-info .box .cod_detail dl{
padding:20px;
}
.cartnew-info .box .cod_detail dt{
border-bottom:1px dashed #ccc;
padding-bottom:5px;
}
.cartnew-info .box .cod_detail dd p{
color:#000;
font-size:20px;
padding:12px 0;
font-weight:bold;
}
.cartnew-info .box .cod_detail dd p span{
color:#e8044f;
}
.cartnew-info .box .cod_detail dd .check_code{
position:relative;
}
.cartnew-info .box .cod_detail dd .check_code u{
position:absolute;
line-height:34px;
text-decoration:none;
}
.cartnew-info .box .cod_detail dd .check_code input{
height:30px;
width:70px;
border:1px solid #ccc;
vertical-align:middle;
margin:0 8px 0 60px;
}
.cartnew-info .box .cod_detail dd .check_code i{
font-style:normal;
padding-left:5px;
}
.cartnew-info .box .cod_detail dd .check_submit{
padding:12px 0 0 60px;
}
.cartnew-info .box .cod_detail dd .check_submit span{
color:#e8044f;
background:url(http://static.yohobuy.com/images/formvalidator/onError.png) no-repeat;
padding-left:16px;
line-height:12px;
margin-left:6px;
}
.cartnew-info .box .cod_detail .btn_retry{
cursor:default;
}
.cartnew-info .box .cod_detail .btn_retry:hover{
text-decoration:none;
color:#999;
}
.cartnew-info .box .cod_detail .error_tips{
padding:10px 15px;
color:#e8044f;
}
.cartnew-info .box .cod_detail .success_tips{
padding:10px 15px;
color:#6f9856;
}
/* 微信支付 start */
.w_order_box{padding-bottom: 50px;font-family: "Microsoft Yahei";}
.w_order{width:990px;margin:0 auto;}
.w_order .w_title{padding:25px 0 12px;overflow:hidden;border-top:2px solid #000000;}
.w_order .w_left{width:670px;float: left;}
.w_order .w_left h3, .w_order .w_right p{line-height: 26px;height: 26px;margin-bottom: 4px;overflow: hidden;font-size: 14px;}
.w_order .w_left p, .w_order .w_right a{height:22px;line-height: 22px;color:#9b9b9b;}
.w_order .w_left p span, .w_order .w_right strong{color: #ff5d5b;}
.w_order .w_right{margin-left:670px;overflow: hidden;text-align: right;}
.w_order .w_right strong{font-size: 18px;vertical-align: bottom;margin: 0 3px;}
.w_order .w_right a{color:#2ea7e7;padding-right:14px;position: relative;display:inline-block;}
.w_order .w_right a i{width:0;height:0;font-size:0;position: absolute;top:9px;right:4px;z-index:1;cursor:pointer;}
.w_order .w_right a i.up{border-width:4px 3px 0;border-style:solid dashed dashed;border-color:#2ea7e7 transparent transparent;}
.w_order .w_right a i.down{border-width:0 3px 4px;border-style:dashed dashed solid;border-color:transparent transparent #2ea7e7;}
.w_order .w_addrinfo{padding:12px 0;font-size:12px;color:#9b9b9b;line-height: 22px;border-top:1px solid #e4e5eb;display:none;}
.w_order .w_addrinfo span{padding:0 20px;}
.w_order .w_payment{border:1px solid #e5e5e5;border-top: 3px solid #4b5b78;background-color: #fff;padding: 26px 30px 30px;margin-top:6px;}
.w_order .w_payment h2{font-size: 18px;}
.w_order .w_p_weixin{width:300px;height:380px;padding:20px 370px 30px 0;margin:0 auto;overflow:hidden;background:url(http://static.yohobuy.com/static/images/payment_weixin/phone_bg.png) no-repeat right top;}
.w_order .w_p_erm{width:250px;height:250px;padding:24px;margin-bottom:20px;border: 1px solid #ddd;overflow:hidden;}
.w_order .w_p_word{height: 44px;padding: 8px 0 8px 125px;background: url(http://static.yohobuy.com/static/images/payment_weixin/icon_v1.png) 50px 8px no-repeat #090909;}
.w_order .w_p_word p{margin: 0;font-size: 14px;line-height: 22px;color: #fff;font-weight: 700;}
.w_order .w_paychange{display: block;height: 30px;line-height: 30px;margin-top:50px;color:#0aaefa;cursor: pointer;font-size:14px;}
.w_order .w_paychange i{float: left;margin-right: 14px;font-family: "arial";font-style: normal;font-size: 16px;}
/* 微信支付 end */
/* 支付完成时的弹出框 start */
#lightbox{position: fixed;width:100%;height:100%;z-index:10000;top:0;left:0;font-family: "Microsoft Yahei";display:none;}
#lightbox .opacity{width: 100%;height: 100%;background: #000;filter: Alpha(Opacity=50);opacity: 0.50;overflow: hidden;}
#lightbox .content{padding:50px 40px;background-color: #FFFFFF;position: absolute;top:50%;left:50%;box-shadow: 0 0 8px #e8e8e8;}
#lightbox .content h2{font-size:18px;color:#000000;padding:0 14px;}
#lightbox .content .notice{padding:26px 14px;line-height: 20px;font-size: 13px;color:#9f9f9f;}
#lightbox .content .btns a{width:134px;height:38px;line-height: 38px;color:#FFFFFF;font-size: 14px;margin:0 14px;display: inline-block;text-align: center;}
#lightbox .content .btns a.over{background-color: #da0040;}
#lightbox .content .btns a.change{background-color: #bdbdbd;}
#lightbox .content .close{width:30px;height:30px;line-height: 30px;position: absolute;top:0;right: 0;font-size: 16px;font-family: arial;text-align: center;}
/* 支付完成时的弹出框 end */