-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
5954 lines (5507 loc) · 218 KB
/
index.php
File metadata and controls
5954 lines (5507 loc) · 218 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
<?php
include "sub/php/00_conn.php";
session_cache_expire(30);
session_start();
?>
<!DOCTYPE html>
<html lang="ko">
<head>
<title>Cheese Queen</title>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1"/>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon">
<link rel="icon" href="/favicon.ico" type="image/x-icon">
<style>
/*#### reset ####*/
*{padding:0;margin:0;}
li{list-style-type:none;}
a:link,a:visited{text-decoration:none; color:#333;}
body{font-family:'score400';}
h5{position:absolute; left:-9999px; width:1px; height:1px; font-size:1px; line-height:0; overflow:hidden;}
img{border:none;}
.lineout{display:none;}
@font-face {
font-family:'jalnan';
src: url('font/Jalnan.woff');
}
@font-face {
font-family:'nanummyeongjo';
src: url('font/NanumMyeongjo.woff');
}
@font-face {
font-family:'score400';
src: url('font/scdream4.woff');
}
@font-face {
font-family:'score700';
src: url('font/scdream7.woff');
}
/*##### skipNav #####*/
#skipNav{width:100%; position:absolute; left:0; top:-30px;}
#skipNav p{width:150px; height:30px; line-height:30px; text-align:center;}
#skipNav p a{display:block; width:100%; height:100%; background-color:rgba(0,0,0,0.7); color:#fff; position:absolute;}
#skipNav p a:focus{top:232px; text-decoration:underline; z-index:1;}
/*#### wrap, 전역 ####*/
#wrap{width:100%; color:#333;}
h1{position:absolute; left:-9999px; width:1px; height:1px; font-size:1px; line-height:0; overflow:hidden;}
/*#### 00. 탑배너 ####*/
#top_banner{width:100%; height:40px; line-height:40px; background-color:#ffcc32;}
#top_banner .banner{width:1025px; height:100%; margin:0 auto;}
#top_banner .banner p{float:left; text-align:center;}
#top_banner .banner .text{width:980px; font-size:14px;}
#top_banner .banner .text em{font-style:normal; font-family:'score700'; padding-right:10px;}
#top_banner .banner .text strong{background-color:#cc2935; color:#fff; padding:0 5px;}
#top_banner .banner .btn{width:45px;}
#top_banner .banner .btn a{display:block; width:100%; height:100%; text-align:center;}
#top_banner .banner .btn a img{width:40%; vertical-align:middle;}
/*#### 0. header ####*/
#header{width:100%; background-color:#fff;}
#mobHeader{display:none;}
/*#### 0-1. 상단 ####*/
#topArea{width:100%; height:120px;}
#infoArea{width:1025px; margin:0 auto;}
/*infoMenu*/
#infoMenu{width:100%; margin:0 auto; text-align:right;}
#infoMenu li{display:inline;}
#infoMenu li a{padding-right:5px; font-size:10px;}
#infoMenu .green a{color:#00564d; font-family:'score700';}
/*로고*/
#infoArea .logo{width:250px; height:100%; margin:0 auto;}
#infoArea .logo a{display:block; width:100%; height:100%;}
#infoArea .logo img{width:100%;}
/*#### 0-2. gnb ####*/
#gnb{width:100%;}
/*#### 바 영역 ####*/
#barArea{width:100%; height:40px; line-height:40px; border-top:1px solid #eee;}
#bar{width:1025px; height:100%; margin:0 auto;}
#bar .nav{width:720px; padding-right:100px; height:100%; float:left;}
#bar .nav li{width:180px; float:left;}
#bar .nav li h2{width:100%; text-align:center; font-size:15px; text-transform:uppercase;}
#bar .nav li h2 a{display:block; width:100%;}
/*검색영역*/
#bar .search{width:170px; margin-right:35px;
height:24px; line-height:24px; padding:8px 0;
background-image:url('img/header/back_search.png');
background-position:50% 50%; background-repeat:no-repeat;
float:left;
}
#bar .search form{width:140px; height:100%;
float:left;
}
#bar .search fieldset{width:100%; height:100%; border:none;}
#bar .search legend{display:none;}
#bar .search p{width:100%; height:100%;}
#bar .search p input{width:100%; height:100%; text-indent:10px; font-size:10px; color:#777; border:none; background-color:rgba(0,0,0,0);}
#bar .search .btn{width:14px; height:18px; padding:2px 0; float:left;}
#bar .search .btn img{width:100%;}
/*#### 드랍영역 ####*/
#dropArea{width:100%; height:0;
overflow:hidden;
transition:height 0.5s ease-in-out;
position:absolute; left:0; top:200px;
z-index:1;
background-color:#fff;
}
#drop{width:1025px; height:100%; margin:0 auto;}
#drop ul{width:720px; overflow:hidden; padding-top:10px; float:left;}
#drop li{width:180px; text-align:center; float:left;}
/*드랍 내부 - ul li*/
#drop .subMenu{width:100%;}
#drop .subMenu li{padding:10px 0;}
#drop .subMenu li a{display:block; width:100%; height:100%; font-size:14px; font-weight:400; color:#7c7c7c;}
/*드랍 내부 - event*/
#drop .event{width:205px; padding-left:100px; height:100%; float:left;}
#drop .event .imgs{width:170px; height:208px; margin-top:20px;}
#drop .event .imgs a{display:block; width:100%; height:100%; position:relative;}
#drop .event .imgs a img{width:100%;}
#drop .event a .text{position:absolute; top:5px; left:10px; font-size:10px; line-height:24px; color:#555;}
#drop .event a .text strong{color:#fe6f5f; font-size:16px; /*font-family:'jua';*/}
#drop .event a .text em{font-style:normal;}
/*이벤트 기능*/
#drop .event a:hover em{color:#999;}
/*드랍 기능*/
/*#gnb:hover #dropArea{height:306px;}*/
#drop li a:hover,#drop li a:focus{color:#ffcc32;}
/*#### container ####*/
#container{width:100%;}
/*#### 1. main_wrap ####*/
#visual{width:100%; height:400px; background-color:#cae4f1; transition:background-color 0.2s linear; position:relative;}
/*#### 1. mainVisual / 1025*465 ####*/
#visual_inner{width:1025px; height:100%; margin:0 auto;}
/*슬라이딩윈도우 float붙이기*/
#visual_inner .slidingWindow{width:100%; height:100%;}
#visual_inner .slidingWindow ul{width:100%; height:100%; position:relative;}
#visual_inner .slidingWindow li{width:100%; height:100%; position:absolute; left:0; top:0; display:none;}
#visual_inner .slidingWindow li:first-child{display:block;}
#visual_inner .slidingWindow li a{display:block; width:100%; height:100%; position:relative;}
#visual_inner .slidingWindow li a span{display:block; width:100%; height:100%; position:absolute; left:0; top:0;}
#visual_inner .slidingWindow li img{width:100%;}
/*슬라이딩윈도우 개별작업*/
#visual_inner .li0{background-color:#cae4f1;}
#visual_inner .li0 .text{width:400px; height:150px; color:#555; font-size:16px; left:20px; top:50%; transform:translatey(-50%);}
#visual_inner .li0 .text em{display:block; padding-top:20px; line-height:50px; font-size:20px; font-style:normal;}
#visual_inner .li0 .text b{font-weight:400; color:#628c02; font-size:42px; font-family:'nanummyeongjo';}
#visual_inner .li1{background-color:#2e3a52;}
#visual_inner .li1 .text{width:400px; height:130px; color:#ccc; font-size:16px; left:20px; top:50%; transform:translatey(-50%);}
#visual_inner .li1 .text em{display:block; color:#fff; padding-top:5px; line-height:50px; font-size:40px; font-style:normal;}
#visual_inner .li2{background-color:#fff;}
#visual_inner .li2 .text{width:100%; height:100%; color:#fff;}
#visual_inner .li2 .text em{display:block;
width:350px; height:200px; line-height:100px;
font-style:normal; font-size:80px;
text-align:center;
position:absolute; left:50%; top:20%;
transform:translatex(-50%);
text-shadow:5px 5px 10px rgba(0,0,0,0.5);
font-family:'jalnan';
}
#visual_inner .li2 .text b{display:block;
width:70%; padding:5px 0;
line-height:20px;
font-size:14px;
background-color:#ff6e61;
text-align:center;
position:absolute; left:50%; top:75%;
transform:translatex(-50%);
box-shadow:5px 5px 10px rgba(0,0,0,0.5);
}
#visual_inner .li2 .text b br:first-child{display:none;}
#visual_inner .li3{background-color:#d7d6de;}
#visual_inner .li3 .text{width:400px; height:150px; color:#555; font-size:16px; left:20px; top:50%; transform:translatey(-50%);}
#visual_inner .li3 .text b{font-weight:400; font-size:40px; color:#000;}
#visual_inner .li3 .text em{display:block; padding-top:20px; font-style:normal;}
/*button0 화살표*/
#visual_inner .left, #visual_inner .right{width:35px; height:65px; position:absolute; top:50%; margin-top:-32px;}
#visual_inner a{display:block; width:100%; height:100%;}
#visual_inner a img{width:100%;}
#visual_inner .left{ left:2%; }
#visual_inner .right{ right:2%;}
/*button1 (.....)*/
#visual_inner .button1{width:100%; height:20px; text-align:center; position:absolute; left:0; bottom:20px;}
#visual_inner .button1 a{display:inline; padding:0 5px; color:rgba(255,255,255,0.3); text-shadow:5px 5px 20px rgba(0,0,0,0.3);}
#visual_inner .button1 .selected{color:rgba(255,255,255,0.7);}
/*#### 2. time_wrap ####*/
#time_wrap{width:100%; height:350px; background-color:#efefef; background-image:url('img/basic/pattern_slash.png');}
/*#### 2. timeSale ####*/
#timeSale{width:1025px; height:100%; margin:0 auto;}
/*title 200*300 */
#timeSale .title{width:150px; height:234px; padding:63px 0; padding-left:50px; float:left;}
#timeSale .title h2{font-size:36px; line-height:36px;
background-image:url('img/basic/icon_clock.png'); background-size:40px; background-repeat:no-repeat; background-position:90% 50%;}
#timeSale .title h2 span{font-weight:400;}
#timeSale .title .desc{padding:50px 0 20px; font-size:20px; color:#00564d;}
#timeSale .title .btn{width:100%; height:20px;}
#timeSale .title .btn a{display:inline-block; width:20px; height:100%; overflow:hidden;}
#timeSale .title .btn a img{height:100%; transform:translatex(-50%);}
#timeSale .title .timeBar{width:100%; height:10px; margin-top:50px; text-indent:-9999px; position:relative;}
#timeSale .title .timeBar .bar{width:100%; height:2px; background-color:#ccc; position:absolute; left:0; top:4px;}
#timeSale .title .timeBar .color{width:0%; background-color:#00564d; animation:aniBar 10s infinite;}
#timeSale .title .timeBar .icon{width:4px; height:4px; background-color:#fff; border-radius:3px; border:1px solid #00564d; position:absolute; left:0; top:2px; animation:aniIcon 10s infinite;}
@keyframes aniBar{
0%{width:0%;}
100%{width:100%;}
}
@keyframes aniIcon{
0%{left:0;}
100%{left:100%;}
}
/*itemArea 825*300 */
#timeSale .itemArea{width:780px; height:260px; margin:50px 20px 50px 25px; overflow:hidden; float:left;}
#timeSale .itemArea ul{width:2160px; height:100%;}
#timeSale .itemArea li{width:180px; height:100%; padding-left:60px; float:left;}
#timeSale .itemArea a{display:block; width:100%; height:100%; text-align:center;}
#timeSale .itemArea a span{display:block; width:100%;}
#timeSale .itemArea a .img{height:180px; border-radius:90px; overflow:hidden;}
#timeSale .itemArea a .img img{width:100%;}
#timeSale .itemArea a .text{padding-top:10px; line-height:20px;}
#timeSale .itemArea a .text strong{display:block; width:100%; height:20px; overflow:hidden; font-size:15px;}
#timeSale .itemArea a .text i{color:#777; font-size:12px; font-style:normal;}
#timeSale .itemArea a .text .price{color:#00564d;}
#timeSale .itemArea a .text .line{font-size:12px; font-style:normal; font-weight:400; text-decoration:line-through; padding-right:10px;}
/*##### 3.newBanner_wrap #####*/
#newBanner_wrap{width:100%; height:92px; padding:50px 0; background-color:#fff;}
/*##### 3.newBanner #####*/
#newBanner{width:1025px; height:100%; margin:0 auto;}
#newBanner p{width:900px; height:100%;
margin:0 auto; background-image:url('img/banners/new_back.png'); background-repeat:no-repeat; background-position:50% 100%;
}
#newBanner p a{display:block; width:100%; height:100%; color:#fff;}
#newBanner p a strong{display:block; width:170px; height:50px; line-height:50px; padding-left:50px; padding-top:42px; float:left; font-size:36px; color:#ffcc32;}
#newBanner p a em{display:block; width:510px; height:50px; line-height:50px; padding-top:42px; float:left; font-style:normal;}
#newBanner p a b{padding-left:10px; font-size:20px;}
#newBanner p a span{display:block; width:141px; height:91px; float:left;}
#newBanner p a span img{width:100%; vertical-align:middle;}
/*##### 4. sale_wrap #####*/
#sale_wrap{width:100%; height:900px; padding-bottom:50px; background-color:#fff;}
/*##### 4. sale #####*/
#sale{width:1025px; height:100%; margin:0 auto;}
/*title 200*300 */
#sale .title{width:210px; padding-left:40px; float:left;}
#sale .title h2{font-size:30px; text-transform:uppercase;}
#sale .title h2 span{font-weight:400;}
#sale .title .desc{width:85px; padding-top:20px; font-size:14px; color:#777;}
#sale .title .button{padding-top:20px; line-height:25px;}
#sale .title .button a{background-color:#dcdcdc; padding:0 10px; font-size:12px; font-family:'score700'; border-radius:8px}
#sale .title .button .selected{background-color:#ffcc32; color:#fff;}
#sale .title .button a:not(.selected):hover,#sale .title .button a:not(.selected):focus{background-color:#ccc;}
/*itemArea 825*300 */
#sale .itemArea{width:705px; height:100%; float:left; overflow:hidden;}
#sale .itemArea ul{width:100%;}
#sale .itemArea li{width:180px; height:300px; padding-left:50px; float:left;}
#sale .itemArea li .imgLink{width:100%; height:180px; position:relative;}
#sale .itemArea li .imgLink a{display:block; width:100%; height:100%; overflow:hidden;}
#sale .itemArea li .imgLink img{width:100%; transition:transform 0.3s ease-in-out;}
#sale .itemArea li .imgLink i{display:block; position:absolute;}
#sale .itemArea li .imgLink .dC{width:60px; line-height:60px; background-color:#ffcc32; color:#00564d; font-family:'score700'; font-style:normal; text-align:center; font-size:20px; top:5px; left:5px; border-radius:30px;}
#sale .itemArea li .imgLink .tasty{width:60px; bottom:5px; right:5px; display:none;}
#sale .itemArea li .imgLink:hover img,#sale .itemArea li .imgLink a:focus img{transform:scale(1.1);}
#sale .itemArea li .text{width:100%; line-height:20px; padding-top:10px;}
#sale .itemArea li .textLink{height:22px; font-size:15px; font-family:'score700';}
#sale .itemArea li .textLink a{display:block; width:100%; height:100%; overflow:hidden;}
#sale .itemArea li .desc{font-size:12px; color:#777;}
#sale .itemArea li .price .line{font-size:12px; text-decoration:line-through; padding-right:10px; color:#777;}
#sale .itemArea li .price .green{font-size:15px; color:#00564d;}
/*tasty 아이콘 on*/
#sale .itemArea .tasty .imgLink .tasty{display:block;}
/*ul 높이 막아주기*/
#sale .itemArea ul:after{content:""; display:block; clear:both;}
/*##### 5. vote_wrap #####*/
#vote_wrap{width:100%; height:350px; background-color:#efefef; position:relative;}
/*##### 5. vote #####*/
#vote{width:1025px; height:320px; margin:0 auto; text-align:center; overflow:hidden;}
#vote h2{width:80px; margin:50px auto 0; color:#ffcc32; background-color:#00564d;}
#vote h3{padding:10px 0 20px;}
#voteArea{width:600px; height:150px; margin:0 auto;}
#voteArea div{width:150px; height:150px; border-radius:75px; box-shadow:3px 3px 5px rgba(0,0,0,0.5); overflow:hidden; position:relative; float:left; cursor:pointer;}
#voteArea .vs{width:300px; height:150px; line-height:150px; font-size:30px; color:#ccc; float:left;}
#voteArea div .imgs{display:block; height:100%;}
#voteArea div img{height:100%;}
#voteArea div .text{display:block; width:100%;
height:44px; padding:68px 0 48px; font-style:normal;
color:rgba(0,0,0,0); background-color:rgba(0,0,0,0); transform:translate(0,-150px);
transition:all 0.3s ease-out;
}
/*voteArea 기능*/
#voteArea div:hover .text{background-color:rgba(0,0,0,0.5); transform:translate(0,-160px); color:#fff;}
/*##### 5. result0,1 #####*/
#result0,#result1{width:100%; height:320px; overflow:hidden; position:relative; display:none;}
#result0 h3,#result1 h3{position:absolute; left:50%; top:50px; z-index:1; margin-left:-500px; font-size:24px; font-weight:400;}
#result0 .btn,#result1 .btn{position:absolute; left:50%; bottom:30px; margin-left:-500px; z-index:1; font-size:11px; background-color:#222; color:#fff; padding:5px 10px; cursor:pointer;}
#result1 h3{text-align:right; margin-left:500px;}
#result1 .btn{margin-left:480px;}
/*itemArea*/
#result0 .itemArea,#result1 .itemArea{width:100%; height:100%; /*position:absolute; left:0; top:0;*/}
#result0 .itemArea ul,#result1 .itemArea ul{width:120%; height:100%; margin-left:-20%;}
#result0 .itemArea li,#result1 .itemArea li{width:10%; margin:0 1%; margin-top:30px; height:280px; text-align:center; float:left;}
#result0 .itemArea .li0,#result1 .itemArea .li0{height:220px; margin-top:120px;}
#result0 .itemArea li p,#result1 .itemArea li p{width:100%; height:20px; font-size:12px; color:#00564d;}
#result0 .itemArea li p strong,#result1 .itemArea li p strong{display:none;}
#result0 .itemArea li a,#result1 .itemArea li a{display:block; width:100%; padding-top:30px;}
#result0 .itemArea li img,#result1 .itemArea li img{width:60%;}
/*@keyframes voteAni{
0%{transform:translatex(-100%);}
100%{transform:translatex(100%);}
}*/
/*result 기능*/
#result0 .btn:hover{background-color:#ffcc32; color:#333;}
#result1 .btn:hover{background-color:#00564d;}
/*#### 5. rate ####*/
#rate{width:100%; height:30px;
background:linear-gradient(to right,#00564d 50%,#ffcc32 51%);
position:absolute; left:0; bottom:0;
}
#rateText{width:1025px; height:100%; margin:0 auto; line-height:30px; background-color:#ffcc32; color:#fff; position:relative;}
#rateText p{height:100%; position:absolute; top:0;}
#rateText .vote0{width:64%; text-align:left; background-color:#00564d; left:0;}
#rateText .vote1{text-align:right; right:0;}
#rateText p span{padding:0 30px;}
#rateText p i{font-size:12px; font-style:normal; color:rgba(225,225,225,0.8);}
/*##### 6. pick_wrap #####*/
#pick_wrap{width:100%; padding-top:100px; background-color:#fff;}
/*##### 6. pick #####*/
#pick{width:1025px; overflow:hidden; margin:0 auto; background-color:#fff;}
#pick h2{padding-left:50px; font-weight:400; font-size:26px; text-transform:uppercase;}
#pick .itemArea{width:100%;}
#pick .itemArea ul{width:990px; overflow:hidden; margin:30px auto 0;}
#pick .itemArea li{width:450px; height:300px;
margin-left:30px; margin-bottom:30px;
float:left;
position:relative;
}
#pick .itemArea li a{display:block; width:100%; height:100%;}
#pick .itemArea li a span{display:block; width:100%; overflow:hidden;}
#pick .itemArea li a .imgs{height:230px;}
#pick .itemArea li a img{width:100%; transform:scale(1); transition:transform 0.3s ease-out;}
#pick .itemArea li a .text{width:96%; padding:10px 2% 0; height:60px; font-size:12px; line-height:25px; color:#777;}
#pick .itemArea li a .text strong{font-size:14px; color:#333;}
/*img 기능*/
#pick .itemArea li a:hover img{transform:scale(1.1)}
/*##### 7. review_wrap #####*/
#review_wrap{width:100%; padding-top:50px; height:550px; background-color:#fff;}
/*##### 7. review #####*/
#review{width:1025px; height:100%; margin:0 auto; background-color:#fff;}
/*#### title ####*/
#review .title{width:100%; height:40px; position:relative; overflow:hidden;}
#review .title p{text-align:center; line-height:40px;}
#review .title .line{width:98%; border-top:2px solid #ccc; margin:20px auto;}
#review .title .text{width:100%; position:absolute; left:0; top:0;}
#review .title .text strong{padding:0 20px; background-color:#fff; text-transform:uppercase; font-size:20px; color:#ccc;}
/*#### itemArea ####*/
#review .itemArea{width:1000px; height:400px; margin:30px auto 0; position:relative; overflow:hidden;}
/*button*/
/*button 너비높이 지정하면 아래 이미지 클릭 안되는 이슈있음*/
#review .button p{width:50px; height:100%; background-color:rgba(255,255,255,0.5);}
#review .button a{display:block;
width:100%; height:64px; padding:170px 0;
text-align:center;
font-size:20px; color:rgba(0,86,77,0.7);
}
#review .button .left{position:absolute; top:0; left:0;}
#review .button .right{position:absolute; top:0; right:0;}
/*ul*/
#review .itemArea .film{width:200%; height:100%}
#review .itemArea .scene{width:50%; height:100%; float:left;}
#review .itemArea .scene li{width:200px; height:200px; outline:1px solid #fff; float:left;}
#review .itemArea li a{display:block; width:100%; height:100%;}
#review .itemArea li a img{width:100%;}
#review .itemArea ul:after{content:""; display:block; clear:both;}
/*##### 8. world_wrap #####*/
#world_wrap{width:100%; height:585px;
background-image:url('img/world/world_background.jpg');
background-attachment:fixed;
background-size:100%; overflow:hidden;}
/*##### 8. world #####*/
#world{width:1025px; height:100%; margin:0 auto; position:relative;}
#world h2{text-align:right;
position:absolute; right:40px; bottom:50px; font-family:'jalnan'; font-weight:400; font-size:34px; line-height:45px; text-shadow:0 0 30px #fff;}
#world h2 b{color:#ffcc32;}
#world h2 i{font-style:normal; color:#00564d;}
#world ul{width:100%; height:100%;}
#world li{position:absolute;}
#world li p{width:60px; position:absolute;}
#world li p img{width:100%;}
/* li a*/
#world li a{display:block; outline:2px solid rgba(0,0,0,0); box-shadow:3px 3px 8px rgba(0,0,0,0.5); background-color:#fff; position:absolute;}
/* li 사이즈, 포지션 개별작업*/
/*이탈리아*/
#world .li0{width:222px; height:172px;
left:72px; top:149px;
}
#world .li0 a{width:200px; height:150px;
right:0; top:0;
background-image:url('img/world/greet_italy.png');
background-size:70%;
background-repeat:no-repeat;
background-position:20% 80%;
}
#world .li0 p{left:0; bottom:0;}
/*스위스*/
#world .li1{width:180px; height:230px;
left:280px; top:69px;
}
#world .li1 a{width:160px; height:210px;
right:0; bottom:0;
background-image:url('img/world/greet_switz.png');
background-size:60%;
background-repeat:no-repeat;
background-position:80% 10%;
}
#world .li1 p{left:0; top:0;}
/*네덜란드*/
#world .li2{width:210px; height:170px;
left:466px; top:129px;
}
#world .li2 a{width:200px; height:150px;
left:0; bottom:0;
background-image:url('img/world/greet_neth.png');
background-size:35%;
background-repeat:no-repeat;
background-position:90% 80%;
}
#world .li2 p{right:0; top:0;}
/*미국*/
#world .li3{width:220px; height:160px;
left:210px; top:305px;
}
#world .li3 a{width:200px; height:150px;
right:0; top:0;
background-image:url('img/world/greet_uSA.png');
background-size:50%;
background-repeat:no-repeat;
background-position:90% 90%;
}
#world .li3 p{left:0; bottom:0;}
/*프랑스*/
#world .li4{width:170px; height:220px;
left:436px; top:305px;
}
#world .li4 a{width:150px; height:200px;
left:0; top:0;
background-image:url('img/world/greet_france.png');
background-size:75%;
background-repeat:no-repeat;
background-position:30% 80%;
}
#world .li4 p{right:0; bottom:0;}
/* li 기능 test*/
#world li a:hover,#world li a:focus{outline:2px solid #ffcc32;}
/*#world li:hover p{width:65px;}*/
/* li 내 텍스트 공통작업*/
#world li a .text{display:block; color:#999; font-size:12px; position:absolute;}
#world li a .text strong{color:#333; font-size:18px;}
/* li 내 텍스트 개별작업*/
#world .li0 a .text{text-align:right; right:25px; bottom:70px;}
#world .li0 a .text strong{color:#00564d;}
#world .li1 a .text{text-align:center; left:36px; bottom:70px;}
#world .li1 a .text strong{color:#cc2935}
#world .li2 a .text{text-align:left; left:25px; bottom:70px;}
#world .li2 a .text strong{color:#21468c;}
#world .li3 a .text{text-align:left; left:25px; top:25px;}
#world .li3 a .text strong{color:#ffcc32;}
#world .li4 a .text{text-align:left; left:25px; top:25px;}
#world .li4 a .text strong{color:#af1c87;}
/*##### 9. taste_wrap #####*/
#taste_wrap{width:100%; height:400px; padding-top:100px; background-color:#fff;}
/*##### 9. taste #####*/
#taste{width:1025px; height:100%; margin:0 auto;}
/*##### title #####*/
#taste .title{width:245px; height:370px;
border-right:1px solid #ccc; float:left;
}
#taste .title .text{text-align:right; padding-right:25px; padding-bottom:30px;}
#taste .title .desc{font-size:14px;}
#taste .title .mobNav{display:none;}
#taste .title .pcNav{width:100%; height:250px; position:relative;}
#taste .title .pcNav li{height:40px; line-height:40px;
text-align:left; text-indent:20px; font-size:14px;
position:absolute; right:0; top:0;
}
#taste .title .pcNav li a{display:block;
width:200px; height:100%;
background-color:#ddd;
transition:width 0.3s ease-in-out
}
/*li position 개별작업*/
#taste .title .pcNav .li1{top:50px;}
#taste .title .pcNav .li2{top:100px;}
#taste .title .pcNav .li3{top:150px;}
#taste .title .pcNav .li4{top:200px;}
/*li 기능*/
#taste .title .pcNav .selected a{width:210px; background-color:#00564d; color:#fff;}
#taste .title .pcNav a:hover,#taste .title .pcNav a:focus{width:210px; outline:none;}
/*##### itemArea #####*/
#taste .itemArea{width:750px; height:400px; float:left;}
#taste .itemArea ul{width:100%; height:100%; display:none;}
#taste .itemArea ul:first-child{display:block;}
#taste .itemArea li{width:170px; height:170px; padding-left:10px; padding-top:10px; float:left;}
#taste .itemArea li a{display:block; width:100%; height:100%; overflow:hidden; position:relative;}
#taste .itemArea li a span{display:block; width:100%; height:100%;}
#taste .itemArea li a .img{width:100%; transition:transform 0.5s ease-out;}
#taste .itemArea li a .img img{width:100%;}
#taste .itemArea li a .text{width:80%;
height:80%; padding:10%;
background-color:rgba(0,0,0,0.5); color:#fff;
font-size:13px;
position:absolute; left:0; top:0;
display:none;
}
/*li a img 기능*/
#taste .itemArea li a:hover .img{transform:scale(1.2);}
/*li a text 기능*/
#taste .itemArea li a:hover .text,#taste .itemArea li a:focus .text{display:block;}
#taste .itemArea li a .text .title{display:block; border-right:none; width:100%; height:auto; padding-bottom:10px;}
#taste .itemArea li a .text .desc{display:block; font-style:normal; color:#ccc; font-size:10px; line-height:14px;}
#taste .itemArea li a .text .price{display:block; position:absolute; left:10%; bottom:10%;}
/*큰 li 개별작업 (.big)*/
#taste .itemArea .big{width:350px; height:350px; padding-left:30px;}
#taste .itemArea .big a .text{font-size:16px;}
#taste .itemArea .big a .text .desc{ font-size:12px; line-height:20px;}
/*##### 10.testBanner_wrap #####*/
#testBanner_wrap{width:100%; height:75px; background-color:#fff;}
/*#### 10.testBanner ####*/
#testBanner{width:1025px; height:100%; margin:0 auto;}
#testBanner p{width:100%; height:100%; background-image:url('img/banners/test_back.jpg');}
#testBanner p a{display:block;
width:100%; height:100%;
text-align:center; line-height:33px; background-image:url('img/banners/test_effect.png');
background-repeat:no-repeat;
background-position:50% 50%;
font-family:'score700';
}
#testBanner p a i{font-style:normal;}
#testBanner p a span{font-size:20px;}
#testBanner p a strong{color:#fff; background-color:#00564d; padding:0 5px;}
#testBanner p a b{color:#00564d; font-size:22px;}
/*기능*/
#testBanner p a:hover b,#testBanner p a:focus b{color:#cc2935;}
/*#### 11. combi_wrap ####*/
#combi_wrap{width:100%; height:450px; padding-top:100px; background-color:#fff;}
/*#### 11. combi ####*/
#combi{width:1025px; height:100%; margin:0 auto;}
#combi h2{text-transform:uppercase; font-weight:400; padding:0 0 20px 50px;}
#combi ul{width:925px; height:300px; margin:0 auto; overflow:hidden;}
#combi li{width:20%; height:100%; float:left; background-color:#fff; background-size:410px; overflow:hidden; /*transition:width 0.5s ease-in-out;*/}
#combi .mobTitle{display:none;}
/* li 배경이미지 개별작업 */
#combi .li0{background-image:url('img/combi/combi_0.webp');}
#combi .li1{background-image:url('img/combi/combi_1.jpg');}
#combi .li2{background-image:url('img/combi/combi_2.jpg'); background-size:auto 100%;}
#combi .li3{background-image:url('img/combi/combi_3.jpg');}
#combi .li4{background-image:url('img/combi/combi_4.jpg');}
#combi li a{display:block; width:100%; height:100%; position:relative;}
#combi li a span{color:#fff; font-size:20px; position:absolute; left:20px; bottom:20px; text-shadow:0 0 10px rgba(0,0,0,0.5);}
#combi li a .hover{display:block; width:100%; height:100%; left:auto; right:0; bottom:0; background-image:linear-gradient(to left,#fff 0%, rgba(255,255,255,0) 80%); display:none;}
#combi li a .hover img{position:absolute; bottom:20px;}
#combi li a .hover img:first-child{right:25px}
#combi li a .hover img:last-child{right:90px}
#combi li a em{display:block; width:100%; height:100%; background-image:url('img/combi/back_combiDc.png'); background-repeat:no-repeat; color:#fff; font-family:'score700'; font-size:24px; text-indent:5px; line-height:70px; opacity:0; transition:opacity 0.5s ease-out 0.3s;}
#combi li a em i{font-size:16px;}
/*#### 13. friends_wrap ####*/
#friends_wrap{width:100%; height:1200px;
background-color:#fff;
background-image:url('img/friends/fr_back.jpg'); padding-top:50px;
}
/*#### 13. friends ####*/
#friends{width:1025px; height:100%; margin:0 auto;}
#friends .title{text-transform:uppercase; text-align:center; padding-bottom:50px;}
#friends section{width:100%; height:350px;}
#friends section .titleArea{width:195px; padding-right:40px; height:100%; text-align:right; float:left;}
#friends section .titleArea .h2{font-size:20px;}
#friends section .titleArea span{display:block;}
#friends section .titleArea p{line-height:30px; font-size:12px; color:#555;}
#friends section .itemArea{width:750px; height:100%; float:left; position:relative;}
/*button*/
#friends .itemArea .buttonL,#friends .itemArea .buttonR {width:45px; height:100%; position:absolute; top:0;}
#friends .itemArea .buttonL a,#friends .itemArea .buttonR a{display:block; width:100%; height:64px; padding:68px 0; text-align:center;}
#friends .itemArea .buttonL{left:0}
#friends .itemArea .buttonR{right:0}
/*ul*/
#friends .itemArea .screen{width:660px; height:100%; margin-left:45px; overflow:hidden;}
#friends .itemArea ul{width:1980px; height:100%;}
#friends .itemArea li{width:200px; height:100%; padding:0 10px; float:left;}
#friends .itemArea li .imgLink{width:100%;}
#friends .itemArea li .imgLink img{width:100%;}
#friends .itemArea li .text{width:100%; line-height:20px; padding-top:10px;}
#friends .itemArea li .textLink{font-size:15px; height:20px; overflow:hidden; font-family:'score700';}
#friends .itemArea li .desc{height:40px; padding-top:5px; line-height:18px; font-size:12px; color:#777;}
#friends .itemArea li .price .line{font-size:12px; text-decoration:line-through; padding-right:10px; color:#aaa;}
#friends .itemArea li .price .green{font-size:15px; color:#00564d;}
/*#### 14. pondue_wrap ####*/
#pondue_wrap{width:100%; height:400px; background-image:url('img/pondue/p_00.png'); background-size:auto 100%;}
/*#### 14. pondue ####*/
#pondue{width:1025px; height:100%; margin:0 auto;}
#pondue .left{width:300px; height:300px; padding-top:50px; padding-left:130px; float:left;}
#pondue .right{width:550px; padding-top:50px; padding-left:45px; float:left;}
#pondue .right .title{height:100px; font-size:12px;}
#pondue .right .title h2{font-size:24px; padding-bottom:10px;}
#pondue .itemArea{width:550px; height:130px; padding-top:70px;}
#pondue .itemArea ul{width:100%; height:100%;}
#pondue .itemArea li{width:130px; height:130px; margin-right:20px; float:left;}
/*a태그 공통*/
#pondue a{display:block; width:100%; height:100%; border-radius:20px; box-shadow:3px 3px 7px rgba(0,0,0,0.3); overflow:hidden; position:relative;}
#pondue a span{display:block; width:100%;}
#pondue a .imgs img{width:100%;}
#pondue a .desc{
width:80%; padding:20px 10%; position:absolute; bottom:-50%; left:0; background-color:rgba(0,0,0,0.4);
color:#fff;
transition:bottom 0.5s ease-in-out;
}
#pondue a strong{display:block; width:100%; height:22px; margin-bottom:20px; overflow:hidden; white-space:nowrap; text-overflow:ellipsis;}
#pondue a em{font-style:normal; font-size:14px;}
/*a태그 개별-작은 오브젝트*/
#pondue .right a .desc{padding:10px 10%;}
#pondue .right a strong{height:20px; font-size:14px; margin-bottom:0;}
#pondue a .desc em{font-size:12px;}
/*desc 기능*/
#pondue a:hover .desc,#pondue a:focus .desc{bottom:0;}
/*#### 15. bestHot_wrap ####*/
#bestHot_wrap{width:100%; height:600px; padding-top:50px; background-color:#fff;}
/*#### 15. bestHot ####*/
#bestHot{width:1025px; height:100%; margin:0 auto;}
#bestHot h2{width:99%; height:36px; line-height:36px; padding-left:1%;}
#bestHot h2 strong,#bestHot h2 i{display:inline-block; vertical-align:top;}
#bestHot h2 strong{font-weight:400; font-size:12px;}
#bestHot h2 i{width:16px; height:100%; padding-left:350px;}
#bestHot h2 i img{width:100%;}
#bestHot h2 b{padding-left:125px; font-weight:400; font-size:10px; letter-spacing:3px;}
#best{width:600px; height:100%; padding-left:30px; float:left;}
#best section{width:580px; height:450px; border:1px solid #ccc; overflow:hidden;}
#best ul{width:100%; height:100%;}
#best li{width:47%; height:204px; padding-left:2%; padding-top:14px; float:left;}
#best li .imgLink{width:100%; height:140px; overflow:hidden;}
#best li .imgLink a{display:block; width:100%; height:100%;}
#best li .imgLink a img{width:100%; transform:translatey(-12%);}
@keyframes refresh{
0%{opacity:1; transform:rotate(0deg);}
50%{opacity:0.5;}
100%{opacity:1; transform:rotate(360deg);}
}
#best li .text{width:100%; height:60px; line-height:18px; padding-top:5px;}
#best li .text a{font-size:15px; font-family:'score700';}
#best li .text .desc{font-size:12px; color:#777;}
#best li .text .price .line{font-size:12px; text-decoration:line-through; padding-right:10px; color:#aaa;}
#best li .text .price .green{font-size:15px; color:#00564d;}
#hot{width:395px; height:100%; float:left;}
#hot h2 b a{color:#555;}
#hot .screen{width:365px; height:450px; border:1px solid #ccc; overflow:hidden;}
#hot ul{width:100%;}
#hot li{width:100%; height:130px; padding-top:15px;}
#hot li .imgLink{width:130px; padding-left:15px; height:100%; float:left; overflow:hidden;}
#hot li .imgLink a{display:block; width:100%; height:100%;}
#hot li .imgLink a img{width:100%;}
#hot li .text{width:170px; padding-left:15px; height:100%; line-height:18px; float:left;}
#hot li .text a{font-size:15px; font-family:'score700';}
#hot li .text .num{width:40px; text-align:center; margin-top:15px; background-color:#ffcc32; color:#fff; font-size:16px; font-family:'score700';}
#hot li .text .num:before{content:""; display:block; height:10px; background-color:#fff; background-image:url('img/basic/icon_rank.png'); background-size:auto 100%; background-repeat:no-repeat; background-position:50%;}
#hot li .text .textLink{height:20px; overflow:hidden;}
#hot li .text .desc{font-size:12px; color:#777;}
#hot li .text .price .line{font-size:12px; text-decoration:line-through; padding-right:10px; color:#aaa;}
#hot li .text .price .green{font-size:15px; color:#00564d;}
#hot .btn{display:none;}
/*#### 16. bisDel_wrap ####*/
#bisDel_wrap{width:100%; height:350px; background-color:#fff;}
/*#### 16. bisDel ####*/
#bisDel{width:1025px; height:100%; margin:0 auto;}
#bisDel h2{padding-bottom:20px;}
#bisDel div{width:450px; padding:0 30px; float:left;}
#bisDel div p{width:100%; height:192px; overflow:hidden;}
#bisDel div p a{display:block; width:100%; height:167px; margin-top:25px; text-align:center;}
#bisDel div p a .imgs{display:block; width:200px; height:141px; padding:13px 0; float:left;}
#bisDel div p a .imgs img{height:100%;}
#bisDel div p a .text{display:block; width:250px; height:121px; line-height:60px; padding:23px 0; font-size:48px; float:left; font-family:'jalnan'; color:#fff; text-shadow:0 0 10px rgba(0,0,0,0.3);}
#bisDel .bis p{background-image:url('img/banners/business_back.png');}
#bisDel .del p{background-image:url('img/banners/delivery_back.png');}
#bisDel div p a:hover .imgs img{animation:bisdel 1s infinite alternate;}
@keyframes bisdel{
0%{transform:scale(1);}
100%{transform:scale(1.05);}
}
/*#### 17. fixed_wrap ####*/
#fixed_wrap div{position:fixed;}
#top{width:50px; bottom:50px; right:5%;}
#top img{width:100%;}
#allBack{width:100%; height:100%; background-color:rgba(0,0,0,0.5); left:0; top:0; z-index:1; display:none;}
#sns_modal{width:600px; height:640px;
transform:translate(-50%, -55%);
left:50%; top:50%; z-index:1; display:none;
}
#sns_modal .btn{width:100%; height:40px; text-align:right;}
#sns_modal .btn a{display:inline-block; width:30px; height:30px; color:#fff;}
#sns_modal .btn a img{width:100%;}
#sns_modal div{width:590px; height:590px; border:5px solid #fff; background:url('img/basic/loading.gif') no-repeat 50% 50% #fff;}
#sns_modal iframe{width:100%; height:100%; border:none;}
/*#### 18. footer ####*/
#footer{width:100%; height:360px; background-color:#fff;}
/*#### 18-1. footer_desc ####*/
#footer_desc_wrap{width:100%; height:240px; background-color:#eee; overflow:hidden;}
#footer_desc{width:1025px; height:160px; margin:50px auto;}
#footer_desc div{width:210px; padding:0 20px;
height:100%; line-height:20px;
border-left:1px solid #ccc;
font-size:12px; color:#666;
float:left;
}
#footer_desc div h3{font-size:16px; padding-bottom:10px; color:#333;}
/*개별1_cs*/
#footer_desc .cs{border-left:none;}
#footer_desc .cs .call{line-height:34px;
margin-bottom:10px;
font-size:26px; font-family:'score700'; color:#00564d;
}
#footer_desc .cs .call img{height:20px;}
#footer_desc .cs .desc span{display:block;}
/*개별2_bank*/
#footer_desc .bank .imgs{width:80%; height:34px; padding-bottom:10px;}
#footer_desc .bank .imgs img{width:100%;}
#footer_desc .bank .desc strong{font-size:20px; color:#333;}
#footer_desc .bank .desc em{display:block; padding-top:5px; font-style:normal;}
/*개별3,4_board*/
#footer_desc .board{position:relative;}
#footer_desc .board h3 em{font-style:normal; font-size:12px; padding-left:10px; }
#footer_desc .board .more{font-size:20px; font-family:'score700'; position:absolute; right:20px; top:0;}
#footer_desc .board .more a{padding:0 5px; color:#00564d;}
#footer_desc .board ul{width:100%;}
#footer_desc .board li{width:100%; height:30px; list-style-type:"-";}
#footer_desc .board li a{display:block;
width:100%; height:100%;
text-indent:10px;
line-height:20px; overflow:hidden; white-space:nowrap; text-overflow:ellipsis;
color:#666;
}
/*기능*/
#footer_desc .board li a:hover,#footer_desc .board li a:focus{color:#00564d;}
/*#### 18-2. footer_nav ####*/
#footer_nav_wrap{width:100%; height:40px; line-height:40px; background-color:#fff; border-bottom:1px solid #ccc;}
#footer_nav{width:1025px; height:100%; margin:0 auto;}
#footer_nav ul{width:1005px; height:100%; padding-left:10px;}
#footer_nav ul li{display:inline; font-size:10px; color:#ccc;}
#footer_nav ul li a{font-size:12px; padding:0 10px;}
/*#### 18-3. footer_info ####*/
#footer_info_wrap{width:100%; height:130px; background-color:#fff;}
#footer_info_wrap .more_mob{display:none;}
#footer_info{width:1025px; height:100%; margin:0 auto; display:block;}
#footer_info h2{width:105px; height:80px; padding:25px 0 25px 15px; float:left;}
#footer_info h2 img{height:100%;}
#footer_info div{height:100%; float:left;}
#footer_info .desc{width:765px; height:80px; padding:25px 0; font-size:12px; line-height:20px;}
#footer_info .desc ul{width:73%;}
#footer_info .desc li{display:inline-block;}
#footer_info .desc a:hover,#footer_info .desc a:focus{text-decoration:underline;}
#footer_info .desc i{font-style:normal; color:#ccc;}
#footer_info .pay{width:140px; height:100%;}
#footer_info .pay p{width:100%; height:44px; padding:43px 0;}
#footer_info .pay p a{display:inline-block;}
/*##### 미디어쿼리 - 태블릿 #####*/
@media all and (min-width:768px) and (max-width:1024px){
/*#### 00. 탑배너 ####*/
#top_banner .banner{width:100%; height:100%; margin:0 auto;}
#top_banner .banner .text{width:90%;}
#top_banner .banner .btn{width:10%; text-align:center;}
#top_banner .banner .btn a{display:inline-block; width:45px;}
/*#### 0-1. 상단 ####*/
#infoArea{width:100%;}
#infoMenu{width:100%; margin:0;}
/*#### 0-2. gnb ####*/
/*#### 바 영역 ####*/
#bar{width:100%; margin:0;}
#bar .nav{width:100%; padding:0px; float:none;}
#bar .nav li{width:25%; float:left;}
/*검색영역*/
#bar .search{display:none;}
/*#### 드랍영역 ####*/
#drop{width:100%; margin:0;}
#drop ul{width:100%; float:none;}
#drop li{width:25%;}
/*드랍 내부*/
#drop .subMenu li{width:100%;}
#drop .event{display:none;}
/*#### container ####*/
#container{width:100%;}
/*#### 1. mainVisual ####*/
#visual{overflow:hidden;}
#visual_inner{width:100%;}
#visual_inner .slidingWindow li img{width:auto; height:100%; transform:translatex(-10%);}
/*슬라이딩윈도우 개별작업*/
#visual_inner .li0 .text{left:10%;}
#visual_inner .li1 .text{left:10%;}
#visual_inner .li3 .text{left:10%;}
/*#### 2. timeSale ####*/
#timeSale{width:768px;}
#timeSale .title{width:200px; padding:63px 0; padding-left:40px;}
#timeSale .itemArea{width:528px; height:260px; margin:50px 0;}
/*##### 3.newBanner #####*/
#newBanner_wrap{height:50px;}
#newBanner{width:100%; margin:0;}
#newBanner p{width:700px; background:none;
background-color:#00564d; border-radius:10px;}
#newBanner p a strong{display:inline-block; width:120px; height:100%; line-height:50px; padding:0; text-align:center; font-size:26px;}
#newBanner p a em{display:block; width:430px; height:100%; line-height:50px; padding-top:0; float:left;}