Просмотр исходного кода

Merge branch 'sowon' into develop

sowon4187 5 лет назад
Родитель
Сommit
23eba50e87

+ 3 - 3
src/main/webapp/WEB-INF/views/web/planning/PlanningDetailFormWeb.html

@@ -303,7 +303,7 @@ if(goods1 != null || goods1 != ''){
 			html += '	<div>';
 			html += '        <h4>';
 			if (template[i].linkUrl != null && template[i].linkUrl != '') { /* 링크 변경 예정 */
-				html += '        <a href="http://'+template[i].linkUrl+'" target="_blank">'+template[i].title+'</a>';
+				html += '        <a href="http://'+template[i].linkUrl+'" target="_blank">'+template[i].title+' <i class="ico_arrow"></i></a>';
 			}else{
 				html += '        <a href="javascript:void(0)">'+template[i].title+'</a>';
 			}
@@ -368,7 +368,7 @@ if(goods2 != null || goods2 != ''){
 			html += '	<div>';
 			html += '        <h4>';
 				if (template[i].linkUrl != null && template[i].linkUrl != '') { /* 링크 변경 예정 */
-					html+='            <a href="http://'+template[i].linkUrl+'" target="_blank">'+template[i].title+'</a>';
+					html+='            <a href="http://'+template[i].linkUrl+'" target="_blank">'+template[i].title+'<i class="ico_arrow"></i></a>';
 				}else{
 					html+='            <a href="javascript:void(0)">'+template[i].title+'</a>';
 				}
@@ -436,7 +436,7 @@ if(goods4 != null || goods4 != ''){
 			html += '<div>';
 			html += '        <h4>';
 			if (template[i].linkUrl != null && template[i].linkUrl != '') { /* 링크 변경 예정 */
-				html+='            <a href="http://'+template[i].linkUrl+'" target="_blank">'+template[i].title+'</a>';
+				html+='            <a href="http://'+template[i].linkUrl+'" target="_blank">'+template[i].title+' <i class="ico_arrow"></i></a>';
 			}else{
 				html+='            <a href="javascript:void(0)">'+template[i].title+'</a>';
 			}

+ 58 - 64
src/main/webapp/WEB-INF/views/web/planning/PlanningMainFormWeb.html

@@ -43,15 +43,12 @@
 							</ul>
 						</div>
 					</div>
-					<div class="ui_row">
-						<div class="ui_col_12">
-							<div class="form_count">
-								<p id="planningTotCnt"></p>
-<!-- 								<p><span th:text="${planCount}"></span>개의 기획전</p> -->
-							</div>
-						</div>
-					</div>
-					<div class="list_content nodata" style="display: none;" id="divPlanningNoData"> <!-- 데이터 없을시 클래스 nodata 추가 -->
+					  <div class="count_wrap">
+                        <div>
+                            <p id="planningTotCnt"><span></span>개의 기획전</p>
+                        </div>
+                    </div>
+					 <div class="list_content nodata" style="display: none;" id="divPlanningNoData"> 데이터 없을시 클래스 nodata 추가
 						<div class="list_defult">
 							<div>
 								<img src="/images/pc/ico_content_find.png" alt=""/>
@@ -61,7 +58,7 @@
 								<button type="button" class="btn btn_default" onclick="cfnGoToPage(_PAGE_MAIN);"><span>홈으로 가기</span></button>
 							</div>
 						</div>
-					</div>
+					</div> 
 					<div class="exhi_list" style="display: none;" id="divPlanningList">
 						<!-- <div class="itemsGrp">
 							<div class="exhi_item">
@@ -121,72 +118,69 @@
 		let actionUrl = '/planning/main/list';
 		if (!gagajf.isNull(cateNo)) actionUrl += '?cateNo=' + cateNo;
 		
-		$.getJSON(actionUrl
-			, function(result, status) {
+		$.getJSON(actionUrl	, function(result, status) {
 				if (status == 'success') {
-					if (result.length > 0) {
-						$('#planningTotCnt').html('<span>' + result.length.addComma() + '</span>개의 기획전');
+
+                    if (result.length > 0) {
+                       $('#planningTotCnt').html('<span>' + result.length.addComma() + '</span>개의 기획전');
 						
 						$('#divPlanningList').html('');
 						
-						let tag = '<div class="itemsGrp">\n';
-						
+						let tag ='';
 						$.each(result, function(idx, item) {
-							tag += '	<div class="exhi_item">\n';
-							tag += '		<div class="exhi_item_img">\n';
-							tag += '			<a onclick="cfnGoToPlanDetail(\'' + item.planSq + '\')">\n';
-							
-							if (item.newYn == 'Y') {
-								tag += '				<div class="shape ranker"><span>NEW</span></div>\n';
-							}
-							
-							tag += '				<img src="' + _uploadImageUrl + item.mainImg + '" alt="">\n';
-							tag += '				<div class="exhi_detail">\n';
-// 							tag += '					<p class="brand">TBJ 외</p>\n'; // 브랜드 검색조건 삭제에 따라 필요 없어 주석 처리
-							tag += '					<h3 class="tit">' + item.planNm + '</h3>\n';
-							tag += '					<p class="sale">' + item.dtlTitle1 + '</p>\n';
-							tag += '				</div>\n';
-							tag += '			</a>\n';
-							tag += '		</div>\n';
-							
-							if (item.planningGoodsList.length > 0) {
-								tag += '			<div class="exhi_item_pr">\n';
-	 							tag += '				<ul class="prod_list clear">\n';
+						    tag += '  <div class="exhi_item">\n';
+						    tag += '       <div class="exhi_item_img">\n';
+						    tag += '           <a onclick="cfnGoToPlanDetail(\'' + item.planSq + '\')">\n'; 
+                            if (item.newYn == 'Y') {
+						    	tag += '				<div class="shape ranker"><span>NEW</span></div>\n';
+						    }
+                            tag += '               <div class="thumb">\n';
+						    tag += '                   <img src="' + _uploadImageUrl + item.mainImg + '" alt="">\n';
+						    tag += '               </div>\n';
+						    tag += '               <div class="exhi_detail">\n';
+						    tag += '                   <h3 class="tit">' + item.planNm + '</h3>\n';
+						    tag += '                   <p class="sale">' + item.dtlTitle1 + '</p>\n';
+						    tag += '               </div>\n';
+						    tag += '           </a>\n';
+						    tag += '       </div>\n';
+                        	if (item.planningGoodsList.length > 0) {
+								tag += '       <div class="exhi_item_pr">\n';
+								tag += '           <ul class="prod_list clear">\n';
+                                $.each(item.planningGoodsList, function(idx2, goods) {
+                                    tag += '               <li>\n';
+								    tag += '                   <div class="item_prod">\n';
+								    tag += '                       <div class="item_state">\n';
+								    tag += '                           <a  onclick="cfnGoToGoodsDetail(\'' + goods.goodsCd + '\');" class="itemLink">\n';
+								    tag += '                               <div class="itemPic">\n';
+								    tag += '                                   <img alt="" class="vLHTC pd_img" src="' + _uploadGoodsUrl + '/' + goods.sysImgNm + '">\n';
+								    tag += '                               </div>\n';
+								    tag += '                               <div class="itemName">' + goods.goodsNm + '</div>\n';
+								    tag += '                               <p class="itemPrice"' + goods.currPrice.addComma() + '</p>\n';
+								    tag += '                           </a>\n';
+								    tag += '                       </div>\n';
+								    tag += '                   </div>\n';
+								    tag += '               </li>\n';
+                                });
+                            }
+                            tag += '           </ul>\n';
+						    tag += '       </div>\n';
+						    tag += '   </div>';
 
-	 							$.each(item.planningGoodsList, function(idx2, goods) {
-		 							tag += '				<li>\n';
-		 							tag += '					<div class="item_prod">\n';
-		 							tag += '						<div class="item_state">\n';
-		 							tag += '							<a href="javascript:void(0);" class="itemLink" onclick="cfnGoToGoodsDetail(\'' + goods.goodsCd + '\');">\n';
-		 							tag += '								<div class="itemPic">\n';
-		 							tag += '									<img alt="" class="vLHTC pd_img" src="' + _uploadGoodsUrl + '/' + goods.sysImgNm + '">\n';
-		 							tag += '								</div>\n';
-		 							tag += '								<div class="itemName">' + goods.goodsNm + '</div>\n';
-		 							tag += '								<p class="itemPrice">' + goods.currPrice.addComma() + '</p>\n';
-		 							tag += '							</a>\n';
-		 							tag += '						</div>\n';
-		 							tag += '					</div>\n';
-		 							tag += '				</li>\n';
-								});
-		 						
-								tag += '			</ul>\n';
-		 						tag += '		</div>\n';
-							}
-							
-							tag += '	</div>\n';
-						});
+                        });    
 						
 						tag += '</div>\n';
 						$('#divPlanningList').html(tag);
 						
 						$('#divPlanningNoData').hide();
 						$('#divPlanningList').show();
-					} else {
-						$('#divPlanningNoData').show();
-						$('#divPlanningList').hide();
-					}
-				}
-			});
+
+                    }else{
+                    	$('#divPlanningNoData').show();
+    					$('#divPlanningList').hide();
+                    
+                	}
+                }
+		});											
 	}
 	
 	$(document).ready(function() {

+ 1 - 1
src/main/webapp/ux/pc/css/common.css

@@ -1252,7 +1252,7 @@ input[type="file"] {
 .quick_menu_group .area > div:first-child span:first-child a{margin-left:0}
 .quick_menu_group .area > div:first-child span:first-child a:after{display:none}
 .quick_menu_group .area > div:first-child span a:after{position:absolute;top:13px;left:0;width:1px;height:13px;background:#959596;content:''}
-.quick_menu_group .inr a{margin-left:16px;color:#eeeeee;}
+.quick_menu_group .inr a{margin-left:16px;color:#eeeeee;}*/
 
 
 

+ 246 - 14
src/main/webapp/ux/pc/css/layout.css

@@ -647,7 +647,7 @@ ul.maintabs li [class^='box_depth'] {display:none; position:absolute; left:100%;
 .filter_content .sort.tap08 ul li {float: left; margin-left: 20px;}
 .filter_content .sort.tap08 ul li:first-child {margin-left: 0;}
 .filter_content .sort.tap08 ul li .color-check input {position:absolute; display:block; overflow:hidden; height:1px; width:1px; clip:rect(1px, 1px, 1px, 1px);}
-.filter_content .sort.tap08 ul li .color-check [class*="pdColor"],
+.filter_content .sort.tap08 ul li .color-check [class*="pdColor"], 
 .filter_content [class*="pdColor"] {position: relative; display: inline-block; width:26px; height: 26px; cursor: pointer;}
 .filter_content .sort.tap08 ul li [class*="pdColor"]:before {content: ""; display: inline-block; width: 100%; height: 100%; border-radius: 50%; box-sizing: border-box; }
 
@@ -824,7 +824,7 @@ ul.maintabs li [class^='box_depth'] {display:none; position:absolute; left:100%;
 .lnb .lnb_category {padding-bottom:30px; border-bottom:1px solid #ddd; line-height:1;}
 .lnb .lnb_category .category > li > a.on,
 .lnb .lnb_category .sub_cate ul > li > a.on {color:#fd4800; /*border-bottom:1px solid #fd4800;*/ font-weight:300;}
-.lnb .lnb_category .category > li > a.on::before,
+.lnb .lnb_category .category > li > a.on::before, 
 .lnb .lnb_category .sub_cate ul > li > a.on::before {content:''; position:absolute; bottom:1px; left:0; right:0; width:100%; border-bottom:1px solid #fd4800;}
 .lnb .lnb_category .category > li {margin-top:20px}
 .lnb .lnb_category .category > li:first-child {margin-top:0;}
@@ -1714,7 +1714,7 @@ ul.maintabs li [class^='box_depth'] {display:none; position:absolute; left:100%;
 	.dp .announce_txt {position: relative; max-width: 1580px; margin: 0 auto; padding-top: 60px; padding-left: 315px;}
 	.dp .announce_txt:before {content:''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width:100%; height: 1px; background: #ddd;}
 	.dp .announce_txt .note_txt {top: 60px; left: 190px;}
-
+	
 	/* dp_sticky_nav_리스트 */
 	.dp .sticky_nav_list {margin-top:60px}
 	.dp .sticky_nav_list .sticky_nav {}
@@ -1735,9 +1735,9 @@ ul.maintabs li [class^='box_depth'] {display:none; position:absolute; left:100%;
 	.dp .dp_category {margin:120px 0; padding:80px 0; background: #f5f5f5; text-align: center;}
 	.dp .dp_category h4 {margin-bottom:40px}
 	.dp .dp_category .cont_body {text-align:center;}
-	.dp .dp_category .dp_cate_list {width:1370px; display:inline-block; margin-top:-10px}
+	.dp .dp_category .dp_cate_list {width:1370px; display:inline-block; margin-top:-10px} 
 	.dp .dp_category .dp_cate_list:after {content:''; display: block; clear: both;}
-	.dp .dp_category .dp_cate_list a {float:left; display:inline-block; width:calc((100% - 50px) / 6); height:60px; margin-left:10px; margin-top:10px; padding:21px 25px 0; border:1px solid #ddd; border-radius:30px; color:#666; font-size:18px; font-weight:500; text-align:left; background:#fff url('/images/pc/ico_more_lg.png') no-repeat 90% 50%; line-height:1;}
+	.dp .dp_category .dp_cate_list a {float:left; display:inline-block; width:calc((100% - 50px) / 6); height:60px; margin-left:10px; margin-top:10px; padding:21px 25px 0; border:1px solid #ddd; border-radius:30px; color:#666; font-size:18px; font-weight:500; text-align:left; background:#fff url('/images/pc/ico_more_lg.png') no-repeat 90% 50%; line-height:1;} 	
 	.dp .dp_category .dp_cate_list a:nth-child(6n-5) {margin-left:0;}
 
 	/* dp_submain 상단배너 스크롤바 슬라이드 */
@@ -1821,7 +1821,7 @@ ul.maintabs li [class^='box_depth'] {display:none; position:absolute; left:100%;
 	.dp_Exhibition .exhi_list::after {content:''; clear:both; display:block;}
 	.dp_Exhibition .exhi_list .exhi_item {float:left; width:calc((100% - 60px)/4); overflow: hidden; margin-bottom:60px; margin-left:20px;}
 	.dp_Exhibition .exhi_list .exhi_item:nth-child(4n-3) {margin-left:0;}
-	.dp_Exhibition .exhi_list .exhi_item .exhi_item_img .thumb {position: relative; width: 100%; height:0; display: block; padding-bottom: 100%;}
+	.dp_Exhibition .exhi_list .exhi_item .exhi_item_img .thumb {position: relative; width: 100%; height:0; display: block; padding-bottom: 100%;} 
 	.dp_Exhibition .exhi_list .exhi_item .exhi_item_img img {position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 100%; height:auto;}
 	.dp_Exhibition .exhi_list .exhi_item .exhi_item_img a {position: relative; width: 100%; display: block;}
 	.dp_Exhibition .exhi_list .exhi_item .exhi_item_img a .shape {max-width:52px; min-height:52px; width: 42px;}
@@ -1890,7 +1890,7 @@ ul.maintabs li [class^='box_depth'] {display:none; position:absolute; left:100%;
 	.dp_review .review_list .reviw_box .review_item .item_prod .itemName {margin:0}
 	.dp_review .review_list .reviw_box .review_item .item_prod .itemPrice {margin:15px 0 0}
 	.dp_review .review_list .reviw_box .review_item .item_prod .itemPic {position:absolute; left:0; top:0; padding:0; width:80px; height:120px; margin:0; z-index:2;}
-
+	
 	/* dp_기획전상세 : 중간 배너 */	
 	.dp .dp_mid_banner {padding-top:60px; padding-bottom:60px;}	
 	.dp .dp_mid_banner .mid_banner {position:relative;}
@@ -1919,7 +1919,7 @@ ul.maintabs li [class^='box_depth'] {display:none; position:absolute; left:100%;
 	.dp_special .dp_listItems_cont.type1 .dp_listItems .dp_listItems_info .dp_listItems_name {margin-top:15px; color:#222; font-size:22px; font-weight:200; line-height:28px;}
 	.dp_special .dp_listItems_cont.type1 .dp_listItems .dp_listItems_info .dp_listItems_price {margin-top:20px; font-size:24px; font-weight:300;}
 	.dp_special .dp_listItems_cont.type1 .dp_listItems .dp_listItems_info .dp_listItems_price::after {content:''; clear:both; display:block;}
-	.dp_special .dp_listItems_cont.type1 .dp_listItems .dp_listItems_info .dp_listItems_price .price {float:left; color:#222;}
+	.dp_special .dp_listItems_cont.type1 .dp_listItems .dp_listItems_info .dp_listItems_price .price {float:left; color:#222;} 
 	.dp_special .dp_listItems_cont.type1 .dp_listItems .dp_listItems_info .dp_listItems_price del {float:left; position:relative; color:#888; font-size:22px; margin-left:10px; text-decoration:none;}
 	.dp_special .dp_listItems_cont.type1 .dp_listItems .dp_listItems_info .dp_listItems_price del::after {content:''; position:absolute; left:0; right:0; top:50%; border-top:1px solid #888;}
 	.dp_special .dp_listItems_cont.type1 .dp_listItems .dp_listItems_info .dp_listItems_price .percent {float:left; color:#fd4802; margin-left:20px}
@@ -1942,7 +1942,7 @@ ul.maintabs li [class^='box_depth'] {display:none; position:absolute; left:100%;
 	.dp .other_dp_slide .brand {display: inline-block; font-size: 12px; color:#888; font-weight: 300;}
 	.dp .other_dp_slide .txt {margin:0 6px;}
 	.dp .other_dp_slide .txt .tit {display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; margin: 20px 0 0; min-height:50px; max-height:50px; overflow: hidden; text-overflow: ellipsis; font-size: 18px; line-height: 1.5; color: #222; font-weight: 300; word-break: keep-all;}
-
+	
 	/* dp_hotdeal 타임딜 리스트 */
 	.dp .dp_hotdeal {}
 	.dp_hotdeal .hotdeal {position: relative; width:100%; margin-bottom: 120px; overflow:hidden; /*height: 378px; background: url(/images/pc/thumb/hotdeal_bg2.jpg)no-repeat center center;*/}
@@ -1978,7 +1978,7 @@ ul.maintabs li [class^='box_depth'] {display:none; position:absolute; left:100%;
 	.dp .event_list .list li .txt .brand {color: #888; font-weight: 300;}
 	.dp .event_list .list li .txt .tit {display: -webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; margin: 20px 0 0; min-height:66px; max-height:66px; overflow: hidden; text-overflow: ellipsis; font-size: 24px; line-height: 1.4; color: #222; font-weight: 300; word-break: keep-all;}
 	.dp .event_list .list .no_con {display: none;}
-	.dp .event_list.no_data .list .event_con {display: none;}
+	.dp .event_list.no_data .list .event_con {display: none;} 
 	.dp .event_list.no_data .list .no_con {display: block; padding:100px 0;}
 	.dp .event_list.no_data .list .no_con li {width: 100%; text-align: center; margin-right: 0;}
 	.dp .event_list.no_data .list .no_con li span {display: block; margin: 25px 0 40px; font-size: 16px; color: #666; font-weight: 300;}
@@ -2042,7 +2042,7 @@ ul.maintabs li [class^='box_depth'] {display:none; position:absolute; left:100%;
 	.modal.bulletShip_pop .modal-body .pop_cont .txt_result .address {display:block; margin-top:25px; padding:20px 30px; background:#f5f5f5; color:#666; font-size:16px; font-weight:200; line-height:26px; word-break:keep-all;}
 	.modal.bulletShip_pop .modal-body .pop_cont .txt_result .info {margin-top:30px; color:#888; font-size:14px;}
 	.modal.bulletShip_pop .modal-footer {margin-top:40px}
-	.modal.bulletShip_pop .modal-footer .btn {width:220px; font-size:16px; font-weight:300;}
+	.modal.bulletShip_pop .modal-footer .btn {width:220px; font-size:16px; font-weight:300;}	
 
 
 	/* od 공통 */
@@ -4176,12 +4176,12 @@ ul.maintabs li [class^='box_depth'] {display:none; position:absolute; left:100%;
 	.myOrderList .part_goods {margin-top:40px} 
 	.myOrderList .part_goods:first-child {margin-top:0}
 	.myOrderList .my_information + .my_order_progress {border-top:none}
-
+	
 	/* my_myOrderList.non : 비회원 주문,취소,교환,반품 리스트 */
 	.myOrderList.non .lnb .lnb_list ul li:nth-child(n+3){display: none;}
 
 
-	/* my_myOrderView : 주문,취소,교환,반품 상세보기 */
+	/* my_myOrderView : 주문,취소,교환,반품 상세보기 */	
 	.my .myOrderView {}
 	.myOrderView .sec_head {margin-bottom:40px;}
 	.myOrderView .sec_head h3 {float:left; margin-bottom:0;}
@@ -4778,4 +4778,236 @@ ul.maintabs li [class^='box_depth'] {display:none; position:absolute; left:100%;
 
 
 
-
+	
+	/******* 지울예정 *******/
+	/* 핫딜 전용 아이템 리스트 */
+	/*.dp .itemsGrp.rowtype .item_prod {width: 49.43%; margin-bottom: 1.12%; height: 420px; border:1px solid #ddd; overflow: hidden;}
+	.dp .itemsGrp.rowtype .item_prod:nth-child(2n) {margin-right: 0;}
+	.dp .itemsGrp.rowtype .item_prod:nth-child(5n) {margin-right: 1.12%;}
+	.dp .itemsGrp.rowtype .item_prod .itemBadge, .dp .itemsGrp.rowtype .item_prod .itemcolorchip {display: none;}
+	.dp .itemsGrp.rowtype .item_prod .item_state {display: table; padding-left: 330px; padding-right: 50px; padding-bottom: 0; height: 420px; width: 100%;}
+	.dp .itemsGrp.rowtype .item_prod .itemLink {display: table-cell; position: static; vertical-align: middle;}
+	.dp .itemsGrp.rowtype .item_prod .itemLink > * {margin:0;}
+	.dp .itemsGrp.rowtype .item_prod .itemLike {z-index: 99;}
+	.dp .itemsGrp.rowtype .item_prod .itemPic {position: absolute; top: 0; left: 0; margin-bottom: 0; padding-top: 0; width: 280px; height: 420px;}
+	.dp .itemsGrp.rowtype .item_prod .itemPic .shape {z-index: 89;}
+	.dp .itemsGrp.rowtype .item_prod .itemPic::after {background: #f5f5f5; opacity:1; z-index: 87;}
+	.dp .itemsGrp.rowtype .item_prod .itemPic .pd_img {z-index: 88;}
+	.dp .itemsGrp.rowtype .item_prod.soldout .itemPic:before {content:'SOLD OUT'; position: absolute; top: 50%; left: 50%; font-size: 20px; color:#fff; background: rgba(0,0,0,.5); width: 100%; height: 100%; transform:translate(-50%, -50%); line-height: 420px; z-index: 99; text-align: center;}
+	.dp .itemsGrp.rowtype .item_prod .itemBrand {margin:0px 6px 65px; font-size: 16px; font-weight: 300;}
+	.dp .itemsGrp.rowtype .item_prod .itemComment {position: static; left: 340px; top: 150px; font-size: 16px; font-weight: 300; margin:0;} 
+	.dp .itemsGrp.rowtype .item_prod .itemName {margin:0px 6px 40px; font-size: 30px; font-weight: 200; line-height: 1.2; max-height:70px; height: 70px;}
+	.dp .itemsGrp.rowtype .item_prod .itemPrice {font-size: 30px; line-height: 1; font-weight: 500;}
+	.dp .itemsGrp.rowtype .item_prod .itemPrice_original {font-size: 20px; font-weight: 200;}
+	.dp .itemsGrp.rowtype .item_prod .itemPercent {font-size: 42px; line-height: 0.8;}
+	.dp .itemSpecialPrice {font-size: 14px;}*/
+
+	/* dp_detail_casePOPUP */
+	/*.modal.dp_coupon_pop {max-width: 600px; padding: 60px;}
+	.modal.dp_coupon_pop .modal-header {padding-bottom: 40px; margin-bottom: 0; border-bottom: 1px solid #222;}
+	.modal.dp_coupon_pop .modal-header h5 {margin: 0;}
+	.modal.dp_coupon_pop .modal-body {padding: 30px 20px; border-bottom: 1px solid #ddd;}
+	.modal.dp_coupon_pop .modal-body p {margin-bottom: 20px;}
+	.modal.dp_coupon_pop .modal-body p:last-child {margin-bottom: 0;}
+	.modal.dp_coupon_pop .modal-body p strong {margin-right: 60px; color:#222;}
+	.modal.dp_coupon_pop .modal-footer {margin-top: 20px;}
+	.modal.dp_coupon_pop .modal-footer p {position: relative; padding: 0 14px;}
+	.modal.dp_coupon_pop .modal-footer p::before {content:''; position: absolute; width:3px; height: 3px; top:8px; left:0; background: #888;}
+	.modal.dp_coupon_pop .modal-footer p:first-child {margin-bottom: 10px;}*/
+	/*.dp .list_content .item_header {text-align: center; padding: 78px 0 68px;}
+	.dp .bulletship_list {max-width:1780px; margin:0 auto;}
+	.dp .bulletship_list .cont_head {display: block;}*/
+	/*.dp .bullet_sticky_nav {margin-bottom: 0px !important; padding:20px 0; background: #fff; border-top:1px solid #222; border-bottom:1px solid #222; z-index: 20;}
+	.container.dp .bullet_sticky_nav.sticky {position: fixed; width:100%; top: -1px; left: 50%; transform: translateX(-50%); z-index: 100;}
+	.container.dp .bullet_sticky_nav.sticky > ul {max-width: 1780px; margin: 0 auto;}
+	.dp .bullet_sticky_nav ul {overflow-x: scroll; white-space: nowrap; -ms-overflow-style: none; cursor: grab;}
+	.dp .bullet_sticky_nav ul::-webkit-scrollbar {display: none;} 
+	.dp .bullet_sticky_nav ul li {position: relative; display: inline-block; padding: 20px 40px;}
+	.dp .bullet_sticky_nav ul li:last-child::after {display: none;}
+	.dp .bullet_sticky_nav ul li::after {content:''; position: absolute; top:50%; right: 0; transform: translateY(-50%); width:1px; height: 14px; background: #ddd;}
+	.dp .bullet_sticky_nav ul li a {font-weight: 500;}
+	.dp .bullet_sticky_nav ul li a.active {color:#fd4800;}*/
+	/* dp_detail_case1 */
+	/*.dp .wide .cont_body .coner_content .coner_front .big_banner {width:100%; height: 1378px; background: url(/images/pc/thumb/detail_case_bg.png)no-repeat; background-size:100%;}
+	.dp .wide .cont_body .coner_content .coner_item01 {padding: 120px 0 60px;}
+	.dp .wide .cont_body .coner_content .coner_item01 .dp_listItems_wrap > div:first-child {margin-bottom: 54px; text-align: center;}
+	.dp .wide .cont_body .coner_content .coner_item01 .dp_listItems_wrap > div:first-child p {font-size: 30px; line-height: 1;}
+	.dp .wide .cont_body .coner_content .coner_item01 .dp_listItems_wrap > div:first-child a {padding-right: 30px; font-size: 30px; color: #222; font-weight: 500; background:url(/images/pc/ico_dp_arrow.png) no-repeat right top 2px;}
+	.dp .wide .coner_item01 .dp_listItems_cont ul > .ui_row {padding: 60px 0; margin: 0; justify-content: center;}
+	.dp .wide .dp_listItems_cont {display: flex; justify-content: center;}
+	.dp .wide .dp_listItems_cont ul li:first-child {margin-bottom: 40px;}
+	.dp .wide .dp_listItems_cont ul li .dp_listItems::after {content: ''; display: block; clear: both;}
+	.dp .wide .dp_listItems_cont ul li .dp_listItems > div {float: left;}
+	.dp .wide .dp_listItems_cont ul li .dp_listItems .dp_listItems_info { padding: 184px 0 0 50px;}
+	.dp .wide .dp_listItems_info .dp_listItems_brand {margin-bottom: 20px;}
+	.dp .wide .dp_listItems_info .dp_listItems_brand,.dp_listItems_info .dp_listItems_price del {color:#888;}
+	.dp .wide .dp_listItems_cont ul li .dp_listItems .dp_listItems_name {margin-bottom: 26px;}
+	.dp .wide .dp_listItems_info .dp_listItems_price {margin-bottom: 30px;}
+	.dp .wide .dp_listItems_info .dp_listItems_price del {margin: 0 8px;}
+	.dp .wide .dp_listItems_info .dp_listItems_price .percent{color:#fd4802;}
+	.dp .wide .dp_lookbook_case1 {position: relative;}
+	.dp .wide .dp_lookbook_case1 .slick-prev{display:block; position:absolute; left:50px; top:50%; width:26px; height:50px; background:url(/images/pc/slide_prev.png) no-repeat left; text-indent:-9999px; z-index:10; transform:translateY(-50%);}
+	.dp .wide .dp_lookbook_case1 .slick-next{display:block; position:absolute; right:50px; top:50%; width:26px; height:50px; background:url(/images/pc/slide_next.png) no-repeat right; text-indent:-9999px; z-index:10; transform:translateY(-50%);}
+	.dp .wide .dp_lookbook_case1 .slick-dots{position:absolute; left:0; bottom:-40px; width:100%; text-align:center; z-index:10;}
+	.dp .wide .dp_lookbook_case1 .slick-dots li{display:inline-block; width:10px; height:10px; margin:0 5px; text-align:center;}
+	.dp .wide .dp_lookbook_case1 .slick-dots li button{display:inline-block; width:10px; height:10px; background:#ddd; border-radius: 50%; text-indent:-9999em;}
+	.dp .wide .dp_lookbook_case1 .slick-dots li.slick-active button{background:#fd4802;}*/
+	/* dp_detail_case2 */
+	/*.dp .wide .cont_body .coner_content .coner_item02 {padding-top: 120px;}
+	.dp .wide .cont_body .coner_content .coner_item02 .dp_coupon_wrap > div:first-child {margin-bottom: 60px; text-align: center;}
+	.dp .wide .cont_body .coner_content .coner_item02 .dp_coupon_wrap > div:first-child p {font-size: 30px; line-height: 1; font-weight: 500;}*/
+	/* dp_detail_case2 쿠폰 */
+	/*.dp .coupon_list {margin:0 auto 60px; max-width:1200px;}
+	.dp .coupon_list ul {margin:0 -10px;}
+	.dp .coupon_list li {float:left; width: 285px; margin:0 10px 60px;  position: relative; position: relative; overflow: hidden;}
+	.dp .coupon_list li .cp_top {position: relative; overflow: hidden;}
+	.dp .coupon_list li .cp_detail { z-index: 99; border:1px solid #ddd; border-bottom: 0; padding:30px 20px 18px; padding-right: 5px;}
+	.dp .coupon_list li .cp_detail .tit {margin-bottom: 13px; font-size: 14px;}
+	.dp .coupon_list li .cp_detail .sale_t {display: block; color: #fd4802; font-size: 30px; margin-bottom: 15px;}
+	.dp .coupon_list li .cp_detail .sale_t span {font-weight: 600;}
+	.dp .coupon_list li .cp_detail .sale_t.won_t {font-size: 22px;}
+	.dp .coupon_list li .cp_detail .sale_t.won_t span {font-size: 30px;}
+	.dp .coupon_list li .cp_detail .cp_cont {margin-bottom: 0; font-weight: 300; color: #888; font-size: 12px; line-height: 1.5; height: 36px; word-break: keep-all;}
+	.dp .coupon_list li .cp_detail .cp_cnt {display: none; background: #fff5f3; padding:5px 8px; border:1px solid #fd4802; font-size: 10px; color: #fd4802 !important; font-weight: 500;}
+	.dp .coupon_list li .cp_shape {position: absolute; top: 50%; right: -13px; z-index: 101; width: 26px; height: 26px; margin-top: -13px; border:1px solid #ddd; background: #fff; border-radius: 50%; z-index: 96;}
+	.dp .coupon_list li .cp_date {border:1px solid #222; background: #222; font-weight: 300; text-align: center;}
+	.dp .coupon_list li .cp_date button {display: block; width: 100%; padding:13px 5px; font-size: 16px; font-weight: 300; color: #fff;}
+	.dp .coupon_list li .cp_date button span {background: url(/images/pc/ico_cp_down.png) no-repeat right top; padding-right: 28px;}
+	.dp .coupon_list li.off .cp_date {border:1px solid #aaa; background: #aaa;}
+	.dp .coupon_list li.off .cp_date button span {background:none; padding-right: 0;}
+	.dp .coupon_list li .cp_info {text-align: center; margin-top: 20px;}
+	.dp .coupon_list li .cp_info button span {display: inline-block; border-bottom: 1px solid #888; color: #888;}*/
+	/*.dp_coupon_list {display: flex; justify-content: center; flex-wrap: wrap; max-width: 1580px; min-width: 1580px; padding: 0 260px 120px; margin: 0 auto; box-sizing: border-box;}
+	.dp_coupon_list .dp_coupon_item {text-align: center;}
+	.dp_coupon_list .dp_coupon_item div:last-child {margin-top: 18px;}
+	.dp_coupon_list .dp_coupon_item div:last-child a {padding-bottom: 2px; border-bottom: 1px solid #888;}
+	.dp_coupon_list .dp_coupon_item:nth-child(1) {margin-bottom: 78px;}
+	.dp_coupon_list .dp_coupon_item:nth-child(2) {margin: 0 0 0 100px;}
+	.dp_coupon_list .dp_coupon_item:nth-child(3) {margin: 0 0 0 100px;}
+	.dp_coupon_list .dp_coupon_item:nth-child(5) {margin: 0 0 0 100px;}
+	.dp_coupon_list .dp_coupon_item:nth-child(6) {margin: 0 0 0 100px;}
+	.dp_coupon_list .dp_coupon {position: relative; width:286px;  padding: 36px 40px; box-sizing: border-box; background: #f5f5f5;}
+	.dp_coupon_list .dp_coupon::before {content:''; position: absolute; width: 0px; height: 0px; top:-26px; left:-26px; border-top:26px solid transparent; border-bottom:26px solid #fff; border-right: 26px solid transparent; border-left: 26px solid  transparent; transform: rotate(-45deg);}
+	.dp_coupon_list .dp_coupon::after {content:'';  position: absolute;  width: 0px; height: 0px; bottom:-26px; right: -26px; border-top:26px solid transparent; border-bottom:26px solid #fff; border-right: 26px solid transparent; border-left: 26px solid  transparent; transform: rotate(135deg);}
+	.dp_coupon_list .dp_coupon p:first-child {overflow: hidden; text-overflow: ellipsis; white-space: nowrap;}
+	.dp_coupon_list .dp_coupon p:last-of-type {margin-top: 22px; font-size: 40px; line-height: 1; color:#fd4802;}
+	.dp_coupon_list .dp_coupon button {position: absolute; width:50px; height: 50px; top:-16px; right: -16px; background: url(/images/pc/ico_down_btn.png)no-repeat;}*/
+	/*.dp_coupon_tip {max-width: 1580px; margin: 0 auto; padding: 60px 60px 0 60px; box-sizing: border-box; display: flex;  border-top: 1px solid #ddd;}
+	.dp_coupon_tip .dp_coupon_notice::before {content:''; display: block; width:36px; height: 46px; margin: 0 auto; background: url(/images/pc/ico_null.png)no-repeat;}
+	.dp_coupon_tip .dp_coupon_notice::after {content:'유의사항'; display: inline-block; margin-top: 20px; color:#888;}
+	.dp_coupon_tip ul {margin-left: 90px;}
+	.dp_coupon_tip ul li {position: relative; padding-left: 12px; margin-bottom: 12px; color:#888;}
+	.dp_coupon_tip ul li:last-child {margin-bottom: 0;}
+	.dp_coupon_tip ul li::before {content:''; position: absolute; width:2px; height: 2px; top:46%; left:0; transform: scaleY(-50%); background: #888;}
+	.dp .wide .coner_visual .dp_banner_slide {padding-bottom: 170px;} 
+	.dp .coner_visual .dp_banner_slide .slide_head {position: relative; width:810px; margin: 0 auto; padding:120px 0 60px; text-align: center;}
+	.dp .coner_visual .dp_banner_slide .slide_head p {font-size: 30px; line-height: 1;}
+	.dp .coner_visual .dp_banner_slide .slide_head a {padding-right: 27px; font-size: 30px; color: #222; font-weight: 500; background:url(/images/pc/ico_dp_arrow.png) no-repeat right top 2px;}
+	.dp .coner_visual .dp_lookbook_case2 {width:810px; margin: 0 auto;}
+	.dp .coner_visual .dp_lookbook_case2 .item_prod {width: 100%;}
+	.dp .coner_visual {position: relative; padding-bottom: 60px; margin:0 auto 120px; max-width: 1780px;}
+	.dp .coner_visual img {width: 100%; height:auto;}
+	.dp .coner_visual .swiper-pagination {width: 100%; bottom: 0;}
+	.dp .coner_visual .swiper-button-prev {display:block; position:absolute; left:50px; top:50%; width:26px; height:50px; background:url(/images/pc/slide_prev.png) no-repeat left; text-indent:-9999px; z-index:10; transform:translateY(-50%); margin-top: 0;}
+	.dp .coner_visual .swiper-button-next {display:block; position:absolute; right:50px; top:50%; width:26px; height:50px; background:url(/images/pc/slide_next.png) no-repeat right; text-indent:-9999px; z-index:10; transform:translateY(-50%); margin-top: 0;}	
+	.dp .dp_recommend_item .slide_head {position: relative; padding:120px 0 60px; text-align: center;}
+	.dp .dp_recommend_item .slide_head a {padding-right: 27px; font-size: 30px; color: #222; font-weight: 500; background:url(/images/pc/ico_dp_arrow.png) no-repeat right top 2px;}
+	.dp .dp_recommend_item {width: 810px;}
+	.dp .dp_recommend_item .dp_banner_slide {margin:0 -10px;}
+	.dp .dp_recommend_item .dp_banner_slide .item_state {padding-bottom: 0;}
+	.dp .dp_recommend_item .swiper-button-prev {display:block; position:absolute; left:-70px; top:50%; width:26px; height:50px; background:url(/images/pc/ico_arr_md.png) no-repeat left; text-indent:-9999px; z-index:10; transform:translateY(-50%); margin-top: 0;}
+	.dp .dp_recommend_item .swiper-button-next {display:block; position:absolute; right:-70px; top:50%; width:26px; height:50px; background:url(/images/pc/ico_arr_md.png) no-repeat right; text-indent:-9999px; z-index:10; transform:translateY(-50%); margin-top: 0;}	
+	.dp .dp_lookbook_case2 .itemPrice::after {content:''; display: block; clear: both;}
+	.dp .dp_lookbook_case2 .itemPrice p:first-child,.dp .wide .dp_lookbook_case2 .itemPrice del {float: left;}
+	.dp .dp_lookbook_case2 .itemPrice del {color:#888;}
+	.dp .dp_lookbook_case2 .itemPrice p:last-child {float: right; color: #fd4802;}
+	.dp .dp_lookbook_item > div:last-child {max-width: 395px; padding: 18px 0 56px;}*/
+	/*.dp .dp_foot_banner {margin: 0 auto 100px;padding:0 70px;}
+	.dp .dp_foot_banner > div:first-child {position: relative; text-align: center; padding: 60px 0;}
+	.dp .dp_foot_banner > div:first-child p {font-size: 30px; line-height: 1; font-weight: 500;}
+	.dp .dp_foot_banner > div:first-child a {position: absolute; top:50%; right:0; transform: translateY(-50%); padding-right: 16px; color:#888; background: url(/images/pc/ico_bread_root.png)no-repeat right top;}
+	.dp .dp_foot_banner .dp_lookbook_case3 .dp_lookbook_item > div {width:312px;}
+	.dp .dp_foot_banner .dp_lookbook_case3 .dp_lookbook_item > div:last-child {padding: 22px 0 104px;}
+	.dp .dp_foot_banner .slick-slide img {width: 100%; height:auto;}
+	.dp .dp_foot_banner .dp_lookbook_case3 .slick-prev{display:block; position:absolute; left:-65px; top:31%; width:26px; height:50px; background:url(/images/pc/slide_prev.png) no-repeat left; text-indent:-9999px; z-index:10; transform:translateY(-50%); opacity: 0.5;}
+	.dp .dp_foot_banner .dp_lookbook_case3 .slick-next{display:block; position:absolute; right:-65px; top:31%; width:26px; height:50px; background:url(/images/pc/slide_next.png) no-repeat right; text-indent:-9999px; z-index:10; transform:translateY(-50%); opacity: 0.5;}
+	.dp .dp_foot_banner .foot_banner_slide {position: relative; margin-bottom: 120px;}
+	.dp .dp_foot_banner .swiper-button-prev {display:block; position:absolute; left:-70px; top:130px; width:26px; height:50px; background:url(/images/pc/ico_arr_md.png) no-repeat left; text-indent:-9999px; z-index:10; margin-top: 0;}
+	.dp .dp_foot_banner .swiper-button-next {display:block; position:absolute; right:-70px; top:130px; width:26px; height:50px; background:url(/images/pc/ico_arr_md.png) no-repeat right; text-indent:-9999px; z-index:10; margin-top: 0;}
+	.dp .dp_foot_banner .thumb {margin-bottom: 22px; position: relative; width: 100%; height: auto; padding-top: 100%;}
+	.dp .dp_foot_banner .thumb img {position: absolute; top: 50%; left: 50%; transform:translate(-50%, -50%); width: 100%; height: auto;}
+	.dp .dp_foot_banner .brand {display: inline-block; font-size: 12px; color:#888; font-weight: 300;}
+	.dp .dp_foot_banner .txt {margin:0 6px;}
+	.dp .dp_foot_banner .txt .tit {display: -webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; margin: 20px 0 0; min-height:50px; max-height:50px; overflow: hidden; text-overflow: ellipsis; font-size: 18px; line-height: 1.5; color: #222; font-weight: 300; word-break: keep-all;}*/
+	/* dp_detail_case3 */
+	/*.dp .dp_banner_slide03 .coner_visual {max-width:1920px; padding-bottom: 0;}
+	.dp .dp_banner_slide03 .coner_visual .swiper-button-prev {left: 70px;}
+	.dp .dp_banner_slide03 .coner_visual .swiper-button-next {right: 70px;}
+	.dp .dp_banner_slide03 .coner_visual .swiper-pagination {bottom: 40px;}
+	.dp .wide .dp_lookbook_case4 {position: relative;}
+	.dp .wide .dp_lookbook_case4 .slick-prev{display:block; position:absolute; left:70px; top:50%; width:26px; height:50px; background:url(/images/pc/slide_prev.png) no-repeat left; text-indent:-9999px; z-index:10; transform:translateY(-50%); opacity: 0.5;}
+	.dp .wide .dp_lookbook_case4 .slick-next{display:block; position:absolute; right:70px; top:50%; width:26px; height:50px; background:url(/images/pc/slide_next.png) no-repeat right; text-indent:-9999px; z-index:10; transform:translateY(-50%); opacity: 0.5;}
+	.dp .wide .dp_lookbook_case4 .slick-dots{position:absolute; left:0; bottom:40px; width:100%; text-align:center; z-index:10;}
+	.dp .wide .dp_lookbook_case4 .slick-dots li{display:inline-block; width:10px; height:10px; margin:0 5px; text-align:center;}
+	.dp .wide .dp_lookbook_case4 .slick-dots li button{display:inline-block; width:10px; height:10px; background:#ddd; border-radius: 50%; text-indent:-9999em;}
+	.dp .wide .dp_lookbook_case4 .slick-dots li.slick-active button{background:#fd4802;}
+	.dp .coner_item03 .slide_head {position: relative; width:1640px; margin: 0 auto; text-align: center; padding:0 0 60px;}
+	.dp .coner_item03 .slide_head p {font-size: 30px;}
+	.dp .coner_item03 .slide_head a {padding-right: 30px; font-size: 30px; color: #222; font-weight: 500; background:url(/images/pc/ico_dp_arrow.png) no-repeat right top 2px;}
+	.dp .wide .coner_item03 {padding-top: 120px;}
+	.dp .wide .coner_item03 .dp_lookbook_case5 {width:1640px; margin: 0 auto;}
+	.dp .wide .coner_item03 .dp_lookbook_case5 .slider .slick-list {margin:0 -10px;}
+	.dp .wide .coner_item03 .dp_lookbook_case5 .slick-slide {margin:0 10px;}
+	.dp .wide .coner_item03 .dp_lookbook_case5 .dp_lookbook_item > div:last-child {text-align: left;}
+	.dp .wide .dp_lookbook_case5 .slick-prev{display:block; position:absolute; left:-65px; top:40%; width:26px; height:50px; background:url(/images/pc/slide_prev.png) no-repeat left; text-indent:-9999px; z-index:10; transform:translateY(-50%); opacity: 0.5;}
+	.dp .wide .dp_lookbook_case5 .slick-next{display:block; position:absolute; right:-65px; top:40%; width:26px; height:50px; background:url(/images/pc/slide_next.png) no-repeat right; text-indent:-9999px; z-index:10; transform:translateY(-50%); opacity: 0.5;}
+	.dp .wide .dp_lookbook_case5 .slick-dots{position:absolute; left:0; bottom:-20px; width:100%; text-align:center; z-index:10;}
+	.dp .wide .dp_lookbook_case5 .slick-dots li{display:inline-block; width:10px; height:10px; margin:0 5px; text-align:center;}
+	.dp .wide .dp_lookbook_case5 .slick-dots li button{display:inline-block; width:10px; height:10px; background:#ddd; border-radius: 50%; text-indent:-9999em;}
+	.dp .wide .dp_lookbook_case5 .slick-dots li.slick-active button{background:#fd4802;}
+	.dp .wide .dp_lookbook_case5 .itemPrice::after {content:''; display: block; clear: both;}
+	.dp .wide .dp_lookbook_case5 .itemPrice p:first-child,.dp .wide .dp_lookbook_case5 .itemPrice del {float: left;}
+	.dp .wide .dp_lookbook_case5 .itemPrice del {color:#888;}
+	.dp .wide .dp_lookbook_case5 .itemPrice p:last-child {float: right; color: #fd4802;}
+	.dp .dp_review_cont {padding: 120px 0; margin:120px 0 0; background: #f5f5f5;}
+	.dp .dp_banner_slide03 .dp_recommend_item {width: 1640px; margin:0 auto; position: relative;}
+	.dp .dp_banner_slide03 .dp_recommend_item .item_prod {width: 100%;}
+	.dp .dp_banner_slide03 .swiper-pagination {width: 100%;}*/
+	/* 기획전리뷰 */
+	/*.dp .dp_review {text-align:center; max-width: 1780px; margin: 0 auto;}*/
+	/*.dp .dp_exhibition .review .swiper-container{overflow: initial;}
+	.riview_box .swiper-pagination {display:inline-block; width:auto; padding:0.2rem 1rem; border-radius:2rem; font-size:1.2rem; color:#fff; background-color:rgba(34,34,34,.5);}
+	.riview_box .area_slider{text-align:center;}
+	.dp .dp_exhibition .review .swiper-container .swiper-slide > div{border:1px solid #eee;}
+	.dp .review_list:after {content:''; clear:both; display:block;}
+	.dp .dp_exhibition .dp_listItems_slide .swiper-container.item01 .swiper-pagination{position:relative; margin-top:2.4rem; bottom:0;}
+	.dp .dp_exhibition .dp_listItems_slide .swiper-container.item01 .swiper-pagination .swiper-pagination-bullet-active{background-color:#fd4802;}
+	.dp .dp_exhibition .dp_listItems_slide .swiper-container.item03{overflow: initial;}
+	.dp .dp_exhibition .dp_banner_slide .swiper-container.dp_lookbook_case1 .swiper-pagination{position:relative; margin-top:2.4rem; bottom:0;}
+	.dp .dp_exhibition .dp_banner_slide .swiper-container.dp_lookbook_case1 .swiper-pagination-bullet-active{background-color:#fd4802;}
+	.dp .dp_exhibition .dp_listItems_wrap .btn{width:100%;}
+	.dp .dp_exhibition .dp_listItems_wrap .list_content .itemsGrp .item_prod{width: 48.75%; float: left; margin-right: 2.5%; margin-bottom: 4rem;}
+	.dp .dp_exhibition .dp_listItems_wrap .list_content .itemsGrp .item_prod:nth-child(3n){margin-right: 2.5%;}
+	.dp .dp_exhibition .dp_listItems_wrap .list_content .itemsGrp .item_prod:nth-child(2n){margin-right: 0;}	
+	.dp .dp_exhibition .dp_listItems_slide .swiper-container.item01 .swiper-pagination{position:relative; margin-top:2.4rem; bottom:0;}
+	.dp .dp_exhibition .dp_listItems_slide .swiper-container.item01 .swiper-pagination .swiper-pagination-bullet-active{background-color:#fd4802;}
+	.dp .dp_exhibition .dp_listItems_slide .swiper-container.item03{overflow: initial;}
+	.dp .dp_exhibition .dp_banner_slide .swiper-container.dp_lookbook_case1 .swiper-pagination{position:relative; margin-top:2.4rem; bottom:0;}
+	.dp .dp_exhibition .dp_banner_slide .swiper-container.dp_lookbook_case1 .swiper-pagination-bullet-active{background-color:#fd4802;}
+	.dp .dp_exhibition .dp_listItems_wrap .btn{width:100%;}
+	.dp .dp_exhibition .dp_listItems_wrap .list_content .itemsGrp .item_prod{width: 48.75%; float: left; margin-right: 2.5%; margin-bottom: 4rem;}
+	.dp .dp_exhibition .dp_listItems_wrap .list_content .itemsGrp .item_prod:nth-child(3n){margin-right: 2.5%;}
+	.dp .dp_exhibition .dp_listItems_wrap .list_content .itemsGrp .item_prod:nth-child(2n){margin-right: 0;}
+	.dp .main_trendy {background: #fff; padding:0 70px;}
+	.dp .main_trendy .item_prod {margin-bottom: 0; width: 100%;}
+	.dp .main_trendy .cont_head {margin-bottom: 60px;}
+	.dp .main_trendy .cont_body {padding:0;}
+	.dp .main_trendy .slick-dots {bottom: 0;}
+	.dp .main_recomm {padding: 0; max-width:1640px !important;}*/	
+	/* 간편결제 팝업 지울것 
+	.modal.qPayAgree_pop {}
+	.modal.qPayAgree_pop .area_QpayCk {margin-top:10px;}
+	.modal.qPayAgree_pop .area_QpayCk:first-child {margin-top:0;}
+	.modal.qPayAgree_pop .area_QpayCk .agr_select {position:relative; padding:13px 20px; border:1px solid #ddd}
+	.modal.qPayAgree_pop .area_QpayCk .agr_select button {position:absolute; right:0; top:0; bottom:0; z-index:2;}
+	.modal.qPayAgree_pop .area_QpayCk .info_agrQpay {display:none; padding:13px 20px; border:1px solid #ddd; border-top:none} */