Explorar o código

모바일 상품상세 레이아웃 생성

eskim %!s(int64=5) %!d(string=hai) anos
pai
achega
f8f1e824a7

+ 81 - 0
src/main/webapp/WEB-INF/views/mob/common/advertisements/GoodsDetailScriptsMob.html

@@ -0,0 +1,81 @@
+<!DOCTYPE html>
+<html lang="ko"
+	xmlns:th="http://www.thymeleaf.org">
+<!--
+ *******************************************************************************
+ * @source  : GoodsDetailScriptsWeb.html
+ * @desc    : 상품상세 광고 스크립트
+ *============================================================================
+ * pastelmall.com
+ * Copyright(C) 2020 TSIT, All rights reserved.
+ *============================================================================
+ * VER  DATE         AUTHOR      DESCRIPTION
+ * ===  ===========  ==========  =============================================
+ * 1.0  2021.03.18   eskim     최초 작성
+ *******************************************************************************
+ -->
+<th:block th:fragment="scripts">
+	<script th:inline="javascript">
+
+		window._eglqueue = window._eglqueue || [];
+		_eglqueue.push(['setVar', 'cuid', eglqueueCuid]);
+		_eglqueue.push(['setVar', 'itemId', [[${goodsInfo.goodsCd}]]]);
+		_eglqueue.push(['setVar', 'userId', hCustId]);
+		_eglqueue.push(['setVar', 'categoryId', cateNm]);
+		_eglqueue.push(['setVar', 'brandId', [[${goodsInfo.brandGroupNo}]]]);
+		_eglqueue.push(['track', 'view']);
+		_eglqueue.push(['track', 'product']);
+		(function (s, x) {
+		s = document.createElement('script'); s.type = 'text/javascript';
+		s.async = true; s.defer = true; s.src = (('https:' == document.location.protocol) ? 'https' : 'http') + '://logger.eigene.io/js/logger.min.js';
+		x = document.getElementsByTagName('script')[0]; x.parentNode.insertBefore(s, x);
+		})();
+		
+	</script>
+
+	<!-- Criteo 상품 태그 --> <!-- 적용완료 --> 
+<!-- 	<script type="text/javascript" src="//static.criteo.net/js/ld/ld.js" async="true"></script>
+	<script type="text/javascript">
+	window.criteo_q = window.criteo_q || [];
+	var deviceType = /iPad/.test(navigator.userAgent) ? "t" : /Mobile|iP(hone|od)|Android|BlackBerry|IEMobile|Silk/.test(navigator.userAgent) ? "m" : "d";
+	window.criteo_q.push(
+	 { event: "setAccount", account: 6762}, // 이 라인은 업데이트하면 안됩니다
+	 { event: "setEmail", email: hEmail}, // 유저가 로그인이 안되 있는 경우 빈 문자열을 전달
+	 { event: "setSiteType", type: deviceType},
+	 { event: "viewItem", item:  [[${goodsInfo.goodsCd}]]+''}); 
+-->
+	</script>
+	<!-- END Criteo 상품 태그 -->
+
+	<!-- 모비온 -->
+	<!-- Withpan]g Shop Log Tracker v3.0 strat -->
+<!-- 	<script src="http://cdn.megadata.co.kr/js/enliple_min2.js"></script>
+	Withpang Tracker v3.0 start
+	<script type="text/javascript">
+	var sh = new EN();
+	sh.setData("sc", "b3663f40e0088be0fc9041fa372a3afc");
+	sh.setData("userid", "is24");
+	sh.setData("pcode", [[${goodsInfo.goodsCd}]]);
+	sh.setData("pnm", encodeURIComponent(encodeURIComponent(snsGoodsFullNm)));
+	sh.setData("img", encodeURIComponent(snsGoodsImg));   //전체URL
+	sh.setData("price",[[${goodsInfo.currPrice}]]);
+	sh.setData("cate1", encodeURIComponent(encodeURIComponent(cateNm))); 
+	 
+	sh.sendRfShop();
+	
+	//위시담기
+	document.getElementById("btnGoodsWish").onmouseup = sendWish;
+    function sendWish() {
+        sh.sendWish();
+    } 
+    
+    //장바구니
+    document.getElementById("btnGoodsCart").onmouseup = sendCart;
+    function sendCart() {
+      sh.sendCart(); 
+-->
+	</script>
+	<!-- END 모비온 상품 태그 -->
+	
+</th:block>
+</html>

+ 1 - 0
src/main/webapp/WEB-INF/views/mob/common/fragments/HeadMob.html

@@ -60,6 +60,7 @@
 	<script src="/ux/mo/js/swiper.min.js"></script>
 	<script src="/ux/plugins/jquery.serializeObject.min.js"></script>
 	<script src="/ux/plugins/mcxdialog/mcxdialog_ui.js"></script>
+	
 
 	<!-- Global site tag (gtag.js) - Google Analytics -->
 <!-- 	<script async src="https://www.googletagmanager.com/gtag/js?id=UA-168660512-1"></script> -->

+ 0 - 1
src/main/webapp/WEB-INF/views/mob/common/fragments/ScriptsMob.html

@@ -16,7 +16,6 @@
  -->
 <th:block th:fragment="scripts">
 <script th:src="@{'/ux/mo/js/common_m.js?v=' + ${#calendars.format(#calendars.createNow(), 'yyyyMMddHHmmss')}}" src="/ux/mo/js/common_m.js"></script>
-<script th:src="@{'/ux/mo/js/main_m.js?v=' + ${#calendars.format(#calendars.createNow(), 'yyyyMMddHHmmss')}}" src="/ux/mo/js/main_m.js"></script>
 <script th:src="@{'/ux/style24_link.js?v=' + ${#calendars.format(#calendars.createNow(), 'yyyyMMddHHmmss')}}" src="/ux/style24_link.js"></script>
 <script type="text/javascript" th:src="@{'/ux/plugins/gaga/gaga.common.js?v=' + ${#calendars.format(#calendars.createNow(), 'yyyyMMddHHmmss')}}" src="/ux/plugins/gaga/gaga.common.js"></script>
 <script type="text/javascript" th:src="@{'/ux/plugins/gaga/gaga.validation.js?v=' + ${#calendars.format(#calendars.createNow(), 'yyyyMMddHHmmss')}}" src="/ux/plugins/gaga/gaga.validation.js"></script>

+ 49 - 0
src/main/webapp/WEB-INF/views/mob/common/layout/GoodsLayoutMob.html

@@ -0,0 +1,49 @@
+<!DOCTYPE html>
+<html lang="ko"
+	xmlns:th="http://www.thymeleaf.org"
+	xmlns:layout="http://www.ultraq.net.nz/thymeleaf/layout">
+
+<head th:replace="~{mob/common/fragments/HeadMob :: head}"></head>
+
+<body>
+
+	<th:block th:replace="~{mob/common/fragments/VariablesMob :: variables}"></th:block>
+	
+	<div class="app">
+		<!-- GNB -->
+		<header class=" "> <!-- 서브페이지에서는 <header>의 클래스.main 제거 -->
+			<section class="htop" id="htopSub" style="background: #fff;">
+				<button type="button" class="btn_back" title="이전페이지로">
+					<span>
+						<i class="gl1"></i>
+						<i class="gl2"></i>
+						<i class="gl3"></i>
+					</span>
+				</button>
+				<h1 id="htopTitle">PAGE TITLE</h1>
+			</section>
+		</header>
+
+		<!--// GNB -->
+		
+		<!-- CONTENT AREA -->
+		<th:block layout:fragment="content"></th:block>
+		<!-- // CONTENT AREA -->
+
+		<!-- Footer -->
+		<th:block th:replace="~{mob/common/fragments/FooterMob :: footer}"></th:block>
+
+		<th:block th:replace="~{mob/common/fragments/ScriptsMob :: scripts}"></th:block>
+
+<script th:inline="javascript">
+/*<![CDATA[*/
+	$(document).ready(function() {
+		
+	});
+/*]]>*/
+</script>
+
+	</div>
+	
+</body>
+</html>

+ 4564 - 0
src/main/webapp/WEB-INF/views/mob/goods/GoodsDetailFormMob.html

@@ -0,0 +1,4564 @@
+<!DOCTYPE html>
+<html lang="ko"
+	xmlns:th="http://www.thymeleaf.org"
+	xmlns:layout="http://www.ultraq.net.nz/thymeleaf/layout"
+	layout:decorator="mob/common/layout/GoodsLayoutMob">
+<!--
+ *******************************************************************************
+ * @source  : GoodsDetailFormMob.html
+ * @desc	: 상품상세 Page
+ *============================================================================
+ * STYLE24
+ * Copyright(C) 2020 TSIT, All rights reserved.
+ *============================================================================
+ * VER  DATE		 AUTHOR	  DESCRIPTION
+ * ===  ===========  ==========  =============================================
+ * 1.0  2021.04.02   eskim	   최초 작성
+ *******************************************************************************
+ -->
+<body>
+<th:block layout:fragment="content">
+<main role="" id="" class="container pd">
+
+	<!-- ★ 컨텐츠 시작 -->
+	<section class="pd_detail">
+
+		<div class="inner wide">
+			<!-- 제품사진영역 -->
+			<div class="thumb_box">
+				<div class="area_slider">
+					<div class="swiper-container thumb_list">
+						<div class="swiper-wrapper">
+							<div class="swiper-slide"><div class="thumb mov"><img src="/images/mo/thumb/tmp_pdDetail1.jpg" alt=""></div></div>
+							<div class="swiper-slide"><div class="thumb"><img src="/images/mo/thumb/tmp_pdDetail1.jpg" alt=""></div></div>
+							<div class="swiper-slide"><div class="thumb"><img src="/images/mo/thumb/tmp_pdDetail1.jpg" alt=""></div></div>
+							<div class="swiper-slide"><div class="thumb"><img src="/images/mo/thumb/tmp_pdDetail1.jpg" alt=""></div></div>
+							<div class="swiper-slide"><div class="thumb"><img src="/images/mo/thumb/tmp_pdDetail1.jpg" alt=""></div></div>
+							<div class="swiper-slide"><div class="thumb"><img src="/images/mo/thumb/tmp_pdDetail1.jpg" alt=""></div></div>
+							<div class="swiper-slide"><div class="thumb"><img src="/images/mo/thumb/tmp_pdDetail1.jpg" alt=""></div></div>
+							<div class="swiper-slide"><div class="thumb"><img src="/images/mo/thumb/tmp_pdDetail1.jpg" alt=""></div></div>
+							<div class="swiper-slide"><div class="thumb"><img src="/images/mo/thumb/tmp_pdDetail1.jpg" alt=""></div></div>
+							<div class="swiper-slide"><div class="thumb"><img src="/images/mo/thumb/tmp_pdDetail1.jpg" alt=""></div></div>
+						</div>
+						<!-- Add Pagination -->
+						<div class="swiper-pagination"></div>
+					</div>
+				</div>
+			</div>
+			<!-- //제품사진영역 -->
+		</div>
+
+		<div class="inner">
+			<div class="timer_box">
+				<p>
+					<span class="tt">남은시간</span>
+					<span class="timer">
+						<em id="d-days">15</em>
+						<em id="d-hours">08</em>
+						<em id="d-minutes">22</em>
+						<em id="d-seconds">50</em>
+					</span>
+				</p>
+			</div>
+			<div class="descript_box">
+				<p class="name">유니 삼단블록 플리스 집업</p>
+				<p class="comment">#가을 느낌 물씬!</p>
+				<p class="price_blk">
+					<span class="sale_price"><em>134,100</em>원</span>
+					<span class="org_price"><del><em>149,000</em>원</del></span>
+					<span class="sale_percent">30%</span>
+				</p>
+				<p class="save_point">스타일포인트 9,999P 적립예정</p>
+				<div class="btn_group_flex">
+					<div><button class="btn btn_default" id="btn_saleCoupon_pop">쿠폰받기</button></div>
+				</div>
+			</div>
+		</div>
+
+		<div class="inner wide">
+			<div class="desc_status">예약판매 상품 - <em>2020.12.30</em> 출고예정</div>
+		</div>
+
+	    <div class="inner">
+			<div class="option_box">
+				<div class="opt_color">
+					<div class="opt_header">
+						<span class="title">컬러</span>
+						<span class="color">그레이</span>
+					</div>
+					<ul>
+						<li>
+							<a href="" class="on">  <!-- 해당 컬러 상품페이지로 이동 -->
+								<img src="/images/mo/thumb/tmp_cartColor1.jpg" alt="그레이">
+							</a>
+						</li>
+						<li>
+							<a href="">
+								<img src="/images/mo/thumb/tmp_cartColor1.jpg" alt="베이지">
+							</a>
+						</li>
+						<li>
+							<a href="">
+								<img src="/images/mo/thumb/tmp_cartColor1.jpg" alt="그린">
+							</a>
+						</li>
+						<li>
+							<a href="">
+								<img src="/images/mo/thumb/tmp_cartColor1.jpg" alt="핑크">
+							</a>
+						</li>
+						<li>
+							<a href="">
+								<img src="/images/mo/thumb/tmp_cartColor1.jpg" alt="민트">
+							</a>
+						</li>
+						<li>
+							<a href="">
+								<img src="/images/mo/thumb/tmp_cartColor1.jpg" alt="블랙">
+							</a>
+						</li>
+					</ul>
+				</div>
+				<div class="opt_size">
+					<div class="opt_header">
+						<span class="title">사이즈</span>
+					</div>
+					<div class="form_field2">
+						<div class="lap">
+							<div>
+								<label><input type="radio" name="rdi-optsize" value="" checked=""><span>90</span></label>
+							</div>
+							<div>
+								<label><input type="radio" name="rdi-optsize" value="" disabled=""><span>95</span></label>
+							</div>
+							<div>
+								<label><input type="radio" name="rdi-optsize" value=""><span>100</span></label>
+							</div>
+							<div>
+								<label><input type="radio" name="rdi-optsize" value=""><span>105</span></label>
+							</div>
+							<div>
+								<label><input type="radio" name="rdi-optsize" value=""><span>110</span></label>
+							</div>
+							<div>
+								<label><input type="radio" name="rdi-optsize" value=""><span>115</span></label>
+							</div>
+							<div>
+								<label><input type="radio" name="rdi-optsize" value=""><span>free</span></label>
+							</div>
+						</div>
+					</div>
+				</div>
+				<div class="info_restock"><a href="#none" id="btn_pushRestock_pop" class="btn_popup">재입고 알림 신청</a></div>
+			</div>
+		</div>
+
+	    <div class="inner">
+			<div class="benefit_box">
+				<dl class="bnf_shopping">
+					<dt>쇼핑혜택</dt>
+					<dd>
+						<span>최대 <em>15%</em> 쿠폰 할인</span> 
+						<span><em>99개</em> 이상 구매 시 <em>9,999,999원</em> 할인</span>
+						<span>미니언즈 우산 증정</span>
+						<button type="button" id="btn_bnfShopping_pop" class="btn_popup"><span>자세히</span></button>
+					</dd>
+				</dl>
+				<dl class="bnf_card">
+					<dt>카드혜택</dt>
+					<dd>
+						<span>국민카드 <em>5%</em> 즉시할인</span>
+						<span>신용카드 무이자 혜택</span>
+						<button type="button" id="btn_bnfCard_pop" class="btn_popup"><span>자세히</span></button>
+					</dd>
+				</dl>
+			</div>
+		</div>
+
+		<div class="inner">
+                  <div class="pd_together">
+				<h3 class="tit">다다익선 상품</h3>
+				<div class="area_slider">
+					<div class="swiper-container swiper-container-initialized swiper-container-horizontal">
+						<div class="swiper-wrapper">
+							<div class="swiper-slide">
+								<div class="item_prod">
+									<div class="item_state">
+										<button type="button" class="itemLike">관심상품 추가</button>
+										<a href="#none" class="itemLink">
+											<div class="itemPic">
+												<img class="vLHTC pd_img" src="/images/mo/thumb/tmp_cartColor1.jpg" alt="">
+											</div>
+											<p class="itemBrand">BRAND NAME</p>
+											<div class="itemName">남성 헤링본 기모 팬츠 헤링본 기모 팬츠</div>
+											<p class="itemPrice">
+												<span class="itemPrice_original">89,000</span>
+												80,100
+												<span class="itemPercent">10%</span>
+											</p>
+										</a>
+									</div>
+								</div>
+							</div>
+							<div class="swiper-slide swiper-slide-next">
+								<div class="item_prod">
+									<div class="item_state">
+										<button type="button" class="itemLike">관심상품 추가</button>
+										<a href="#none" class="itemLink">
+											<div class="itemPic">
+												<img class="vLHTC pd_img" src="/images/mo/thumb/tmp_cartColor1.jpg" alt="">
+											</div>
+											<p class="itemBrand">BRAND NAME</p>
+											<div class="itemName">남성 헤링본 기모 팬츠 헤링본 기모 팬츠</div>
+											<p class="itemPrice">
+												<span class="itemPrice_original">89,000</span>
+												80,100
+												<span class="itemPercent">10%</span>
+											</p>
+										</a>
+									</div>
+								</div>
+							</div>
+							<div class="swiper-slide">
+								<div class="item_prod">
+									<div class="item_state">
+										<button type="button" class="itemLike">관심상품 추가</button>
+										<a href="#none" class="itemLink">
+											<div class="itemPic">
+												<img class="vLHTC pd_img" src="/images/mo/thumb/tmp_cartColor1.jpg" alt="">
+											</div>
+											<p class="itemBrand">BRAND NAME</p>
+											<div class="itemName">남성 헤링본 기모 팬츠 헤링본 기모 팬츠</div>
+											<p class="itemPrice">
+												<span class="itemPrice_original">89,000</span>
+												80,100
+												<span class="itemPercent">10%</span>
+											</p>
+										</a>
+									</div>
+								</div>
+							</div>
+							<div class="swiper-slide">
+								<div class="item_prod">
+									<div class="item_state">
+										<button type="button" class="itemLike">관심상품 추가</button>
+										<a href="#none" class="itemLink">
+											<div class="itemPic">
+												<img class="vLHTC pd_img" src="/images/mo/thumb/tmp_cartColor1.jpg" alt="">
+											</div>
+											<p class="itemBrand">BRAND NAME</p>
+											<div class="itemName">남성 헤링본 기모 팬츠 헤링본 기모 팬츠</div>
+											<p class="itemPrice">
+												<span class="itemPrice_original">89,000</span>
+												80,100
+												<span class="itemPercent">10%</span>
+											</p>
+										</a>
+									</div>
+								</div>
+							</div>
+							<div class="swiper-slide">
+								<div class="item_prod">
+									<div class="item_state">
+										<button type="button" class="itemLike">관심상품 추가</button>
+										<a href="#none" class="itemLink">
+											<div class="itemPic">
+												<img class="vLHTC pd_img" src="/images/mo/thumb/tmp_cartColor1.jpg" alt="">
+											</div>
+											<p class="itemBrand">BRAND NAME</p>
+											<div class="itemName">남성 헤링본 기모 팬츠 헤링본 기모 팬츠</div>
+											<p class="itemPrice">
+												<span class="itemPrice_original">89,000</span>
+												80,100
+												<span class="itemPercent">10%</span>
+											</p>
+										</a>
+									</div>
+								</div>
+							</div>
+							<div class="swiper-slide">
+								<div class="item_prod">
+									<div class="item_state">
+										<button type="button" class="itemLike">관심상품 추가</button>
+										<a href="#none" class="itemLink">
+											<div class="itemPic">
+												<img class="vLHTC pd_img" src="/images/mo/thumb/tmp_cartColor1.jpg" alt="">
+											</div>
+											<p class="itemBrand">BRAND NAME</p>
+											<div class="itemName">남성 헤링본 기모 팬츠 헤링본 기모 팬츠</div>
+											<p class="itemPrice">
+												<span class="itemPrice_original">89,000</span>
+												80,100
+												<span class="itemPercent">10%</span>
+											</p>
+										</a>
+									</div>
+								</div>
+							</div>
+							<div class="swiper-slide">
+								<div class="item_prod">
+									<div class="item_state">
+										<button type="button" class="itemLike">관심상품 추가</button>
+										<a href="#none" class="itemLink">
+											<div class="itemPic">
+												<img class="vLHTC pd_img" src="/images/mo/thumb/tmp_cartColor1.jpg" alt="">
+											</div>
+											<p class="itemBrand">BRAND NAME</p>
+											<div class="itemName">남성 헤링본 기모 팬츠 헤링본 기모 팬츠</div>
+											<p class="itemPrice">
+												<span class="itemPrice_original">89,000</span>
+												80,100
+												<span class="itemPercent">10%</span>
+											</p>
+										</a>
+									</div>
+								</div>
+							</div>
+							<div class="swiper-slide">
+								<div class="item_prod">
+									<div class="item_state">
+										<button type="button" class="itemLike">관심상품 추가</button>
+										<a href="#none" class="itemLink">
+											<div class="itemPic">
+												<img class="vLHTC pd_img" src="/images/mo/thumb/tmp_cartColor1.jpg" alt="">
+											</div>
+											<p class="itemBrand">BRAND NAME</p>
+											<div class="itemName">남성 헤링본 기모 팬츠 헤링본 기모 팬츠</div>
+											<p class="itemPrice">
+												<span class="itemPrice_original">89,000</span>
+												80,100
+												<span class="itemPercent">10%</span>
+											</p>
+										</a>
+									</div>
+								</div>
+							</div>
+						</div>   
+					</div>	              
+				</div>
+			</div>
+		</div>
+		
+		<div class="inner wide">
+			<div class="brand_home">
+				<a href="#none" class="link_go">NBA 브랜드홈</a>
+			</div>
+		</div>
+
+		<div class="inner">
+			<div class="content pd_descrp"><div class="cont_head">
+				<h3 class="sr-only">상품상세정보</h3>
+			</div>
+			<div class="cont_body">
+				<!-- 상품설명 노출 -->
+				<div class="descrp_box">
+					<div class="desc_simple"> <!-- 상품 간략설명-->
+						<span class="tit_desc">사이드 밴딩으로 편안한 만능 슬랙스!</span>
+						<p class="ptxt01">
+							루즈한 핏에 소프트하고 포근한 플리스 원단을 사용해
+							보온성과 활동성이 좋은 배색 하이넥 집업입니다. 미니멀한
+							팀 로고와 레터자수로 베이직하면서 포인트가 있는 스타일링을
+							할 수 있는 아이템입니다. 넉넉한 품의 루즈한 핏에 힙을 덮는
+							기장으로 편한 착용감과 활동성이 좋습니다.
+						</p>
+					</div>
+					<div class="desc_character"> <!-- 상품특징 -->
+						<span class="tit_desc">상품특징</span>
+						<p class="ptxt01">
+							- 5가지(IV/BE/PK/BL/BK)의 파스텔톤의 따뜻한 컬러감<br>
+							- 안감 폴라폴리스 소재를 사용하여 따뜻하고 부드러운 착용감<br>
+							- 배색소재의 가슴패치 포켓으로 포인트를 줌<br>
+							- 소매에 발열 안감을 사용하여 보온성을 높여주고, 착용 시 부드러운 촉감으로 편안함을 제공<br>
+							- 디테일한 봉제 기법인 가이루빠 스티치 포인트 디자인<br>
+							- 지퍼플러 장식을 더해 완성도를 높여줌
+						</p>
+					</div>
+				</div>
+				<!-- //상품설명 노출 -->
+				<!-- 관리자 에디터입력 내용 노출 -->
+				<div class="mdhtml_box">
+					<!-- html 작성내용 -->
+					<a href="#" target="_blank"><img src="/images/mo/thumb/tmp_desc_bnr.jpg" width="1200" alt=""></a>
+					<div style="height:4rem"></div><!-- 여백용 html -->
+					<div class="movblock">
+						<iframe src="https://www.youtube.com/embed/uEc8Q800a7w" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen=""></iframe>
+					</div>
+					<div style="height:4rem"></div><!-- 여백용 html -->
+					<img src="/images/mo/thumb/tmp_desc_mds.jpg" alt="">
+					<!-- //html 작성내용 -->
+				</div>
+				<!-- //관리자 에디터입력 내용 노출 -->
+				<!-- 착용컷 노출 -->
+				<div class="view_outfit_box">
+					<span class="tit_view">OUTFIT VIEW</span>
+					<span class="model_info">(모델정보 : 185cm / 78kg / XL 착용)</span>
+					<div class="view">
+						<img src="/images/mo/thumb/tmp_outfit_desc1.jpg" alt="">
+						<img src="/images/mo/thumb/tmp_outfit_desc2.jpg" alt="">
+						<img src="/images/mo/thumb/tmp_outfit_desc3.jpg" alt="">
+					</div>
+				</div>
+				<!-- //착용컷 노출 -->
+				<!-- 상품컷 노출 -->
+				<div class="view_detail_box">
+					<span class="tit_view">PRODUCT VIEW</span>
+					<div class="view">
+						<img src="/images/mo/thumb/tmp_detail_desc1.jpg" alt="">
+						<img src="/images/mo/thumb/tmp_detail_desc2.jpg" alt="">
+					</div>
+				</div>
+				<!-- //상품컷 노출 -->
+				<!-- 원단 노출 -->
+				<div class="view_fabric_box">
+					<span class="tit_view">FABRIC</span>
+					<div class="view">
+						<img src="/images/mo/thumb/tmp_fabric_desc1.jpg" alt="">
+					</div>
+				</div>
+				<!-- //원단 노출 -->
+				<!-- 라벨 노출 -->
+				<div class="view_label_box">
+					<span class="tit_view">LABEL INFO</span>
+					<div class="view">
+						<span>
+							<img src="/images/mo/thumb/tmp_label_desc1.jpg" alt="">
+							<img src="/images/mo/thumb/tmp_label_desc2.jpg" alt="">
+						</span>
+					</div>
+				</div>
+				<!-- //라벨 노출 -->                    
+				<!-- 브랜드 노출 -->
+				<div class="brand_box">
+					<p class="name">TBJ 티비제이</p>
+					<a href="" class="brend_home"><span>브랜드 홈 바로가기</span></a>
+				</div>
+				<!-- //브랜드 노출 -->
+				<!-- 상품필수정보 노출 -->
+				<div class="required_box">
+					<div class="area_infotbl">
+						<span class="title">상품고시정보</span>
+						<div class="tbl type1">
+							<table>
+								<tbody>
+									<tr>
+										<th>품목</th>
+										<td>의류</td>
+									</tr>
+									<tr>
+										<th>스타일</th>
+										<td>F94U-MD01XA60F0</td>
+									</tr>
+									<tr>
+										<th>시즌</th>
+										<td>겨울</td>
+									</tr>
+									<tr>
+										<th>제품소재</th>
+										<td>[겉감1]폴리에스터100% [겉감2]폴리에스터100% [충전재1]솜털(거위)50% 깃털(거위)50% [충전재2]폴리에스터100%</td>
+									</tr>
+									<tr>
+										<th>색상</th>
+										<td>BR,NV,BK</td>
+									</tr>
+									<tr>
+										<th>치수</th>
+										<td>FREE(여성),95,100,105</td>
+									</tr>
+									<tr>
+										<th>제조자/수입자</th>
+										<td>㈜에프알제이</td>
+									</tr>
+									<tr>
+										<th>제조국</th>
+										<td>베트남</td>
+									</tr>
+									<tr>
+										<th>세탁방법 및 취급시 주의사항</th>
+										<td>본제품은 손세탁이 효과적입니다. (세탁라벨참고)</td>
+									</tr>
+									<tr>
+										<th>제조연월</th>
+										<td>2019-06</td>
+									</tr>
+									<tr>
+										<th>품질보증기준</th>
+										<td>관련법 및 소비자분쟁해결기준에 따름</td>
+									</tr>
+									<tr>
+										<th>A/S 책임자와 전화번호</th>
+										<td>(주)아이스타일24 1544-5336</td>
+									</tr>
+								</tbody>
+							</table>
+						</div>
+					</div>
+					<div class="area_kcl">
+						<div>
+							<i class="ico ico_kcl"></i>
+						</div>
+						<div>
+							<p class="tit normal">
+								어린이제품 안전인증<br> 
+								한국건설생활시험연구원(KCL)
+							</p>
+							<p class="normal">
+								<span>인증번호:</span> <a class="num">CB123A123-1234</a>
+							</p>
+						</div>
+					</div>
+					<p class="t_info dot_info mt10">
+						해당 인증정보는 판매자가 등록한 것으로 등록정보에 대한 일체의 책임은 판매자에게 있습니다.
+					</p>
+					<div class="area_infotbl">
+						<span class="title">상품기본정보</span>
+						<div class="tbl type1">
+							<table>
+								<tbody>
+									<tr>
+										<th>상품코드</th>
+										<td>14443216</td>
+									</tr>
+									<tr>
+										<th>상품구분</th>
+										<td>병행수입</td>
+									</tr>
+									<tr>
+										<th>브랜드</th>
+										<td>TBJ</td>
+									</tr>
+									<tr>
+										<th>상품명</th>
+										<td>남성 테이퍼드 핏 겨울 기모면 스판 올 밴딩 팬츠</td>
+									</tr>
+									<tr>
+										<th>제조자</th>
+										<td>한세엠케이(주)</td>
+									</tr>
+									<tr>
+										<th>제조국</th>
+										<td>베트남</td>
+									</tr>
+								</tbody>
+							</table>
+						</div>
+						<p class="t_info dot_info mt10">
+							주문제작 상품의 경우 주문 후 제작되어 판매되는 상품으로 제작 시점부터 반품/교환이 어려울 수 있습니다.
+						</p>
+					</div>
+				</div>
+				<!-- //상품필수정보 노출 -->
+			</div>
+			<div class="btn_more_box covered">
+				<div class="btn_group_flex">
+					<div>
+						<button type="button" class="btn btn_default">
+							<span>상세정보 더보기</span>
+						</button>
+					</div>
+				</div>
+			</div>
+			</div>
+		</div>
+
+		<div class="inner">
+			
+			<!-- 리뷰영역 -->
+			<div class="riview_box">
+				<div class="ex_review">
+					<a href="#none" id="btn_pdReview_pop">    
+						<span class="tit">리뷰 <em class="number">(9,999+)</em></span>
+						<div class="star_score">
+							<span class="star">
+								<em class="progbar" style="width:86%;"></em> <!-- 평점 style로 표기 -->
+							</span>
+							<span class="score">4.3점</span>
+						</div>
+					</a>
+				</div>
+				<div class="area_slider" id="btn_pdBestReview_pop">
+					<div class="swiper-container">
+						<div class="swiper-wrapper">
+							<div class="swiper-slide">
+								<!-- 베스트 리뷰 등록시 노출 -->
+								<div class="best_review">
+									<a href="#none">
+										<div class="star_score">
+											<span class="star">
+												<em class="progbar" style="width:70%;"></em> <!-- 평점 style로 표기 -->
+											</span>
+											<em class="ico ico_besttag"></em>
+										</div>
+										<div class="lap">
+											<div class="pic">
+												<span class="thumb mov" style="background-image:url('/images/mo/thumb/tmp_pdLookbook3.jpg');"></span><!-- 동영상의 썸네일일 경우 mov 클래스 추가 -->
+											</div>
+											<div class="txt_best_review">
+												<p>
+													옷이 부들부들 촉감이 너무 좋습니다~ 보는 것 보다 실제 입으니깐 더 멋스러운 것 같아요! 차분한 그레이 라서 지금 가을가을한 계절에 잘 어울리는 같아요. 옷이 부들부들 촉감이 너무 좋습니다~ 보는 것 보다 실제 입으니깐 더 멋스러운 것 같아요! 차분한 그레이 라서 지금 가을가을한 계절에 잘 어울리는 같아요.
+												</p>
+											</div>
+										</div>
+									</a>
+								</div>
+								<!-- //베스트 리뷰 등록시 노출 -->
+							</div>
+							<div class="swiper-slide">
+								<!-- 베스트 리뷰 등록시 노출 -->
+								<div class="best_review">
+									<a href="#none">
+										<div class="star_score">
+											<span class="star">
+												<em class="progbar" style="width:70%;"></em> <!-- 평점 style로 표기 -->
+											</span>
+											<em class="ico ico_besttag"></em>
+										</div>
+										<div class="lap">
+											<div class="pic">
+												<span class="thumb" style="background-image:url('/images/mo/thumb/tmp_pdLookbook3.jpg');"></span>
+											</div>
+											<div class="txt_best_review">
+												<p>
+													옷이 부들부들 촉감이 너무 좋습니다~ 보는 것 보다 실제 입으니깐 더 멋스러운 것 같아요! 차분한 그레이 라서 지금 가을가을한 계절에 잘 어울리는 같아요. 옷이 부들부들 촉감이 너무 좋습니다~ 보는 것 보다 실제 입으니깐 더 멋스러운 것 같아요! 차분한 그레이 라서 지금 가을가을한 계절에 잘 어울리는 같아요.
+												</p>
+											</div>
+										</div>
+									</a>
+								</div>
+								<!-- //베스트 리뷰 등록시 노출 -->
+							</div>
+							<div class="swiper-slide">
+								<!-- 베스트 리뷰 등록시 노출 -->
+								<div class="best_review">
+									<a href="#none">
+										<div class="star_score">
+											<span class="star">
+												<em class="progbar" style="width:70%;"></em> <!-- 평점 style로 표기 -->
+											</span>
+											<em class="ico ico_besttag"></em>
+										</div>
+										<div class="lap">
+											<div class="pic">
+												<span class="thumb" style="background-image:url('/images/mo/thumb/tmp_pdLookbook3.jpg');"></span>
+											</div>
+											<div class="txt_best_review">
+												<p>
+													옷이 부들부들 촉감이 너무 좋습니다~ 보는 것 보다 실제 입으니깐 더 멋스러운 것 같아요! 차분한 그레이 라서 지금 가을가을한 계절에 잘 어울리는 같아요. 옷이 부들부들 촉감이 너무 좋습니다~ 보는 것 보다 실제 입으니깐 더 멋스러운 것 같아요! 차분한 그레이 라서 지금 가을가을한 계절에 잘 어울리는 같아요.
+												</p>
+											</div>
+										</div>
+									</a>
+								</div>
+								<!-- //베스트 리뷰 등록시 노출 -->
+							</div>
+							<div class="swiper-slide">
+								<!-- 베스트 리뷰 등록시 노출 -->
+								<div class="best_review">
+									<a href="#none">
+										<div class="star_score">
+											<span class="star">
+												<em class="progbar" style="width:70%;"></em> <!-- 평점 style로 표기 -->
+											</span>
+											<em class="ico ico_besttag"></em>
+										</div>
+										<div class="lap">
+											<div class="pic">
+												<span class="thumb mov" style="background-image:url('/images/mo/thumb/tmp_pdLookbook3.jpg');"></span><!-- 동영상의 썸네일일 경우 mov 클래스 추가 -->
+											</div>
+											<div class="txt_best_review">
+												<p>
+													옷이 부들부들 촉감이 너무 좋습니다~ 보는 것 보다 실제 입으니깐 더 멋스러운 것 같아요! 차분한 그레이 라서 지금 가을가을한 계절에 잘 어울리는 같아요. 옷이 부들부들 촉감이 너무 좋습니다~ 보는 것 보다 실제 입으니깐 더 멋스러운 것 같아요! 차분한 그레이 라서 지금 가을가을한 계절에 잘 어울리는 같아요.
+												</p>
+											</div>
+										</div>
+									</a>
+								</div>
+								<!-- //베스트 리뷰 등록시 노출 -->
+							</div>
+						</div>
+						<!-- Add Pagination -->
+						<div class="swiper-pagination"></div>
+					</div>
+				</div>
+			</div>
+			<!-- //리뷰영역 -->
+			<!-- 문의,사이즈정보,배송/교환/반품 -->
+			<div class="exinfo_box">
+				<ul>
+					<li>
+						<div class="ex_qna">
+							<a href="#none" id="btn_pdQnaList_pop">
+								<span class="tit">문의<em class="number">(9,999+)</em></span>
+							</a>
+						</div>
+					</li>
+					<li>
+						<div class="ex_size">
+							<a href="#none" id="btn_pdSizeInfo_pop">
+								<span class="tit">사이즈</span>
+							</a>
+						</div>
+					</li>
+					<li>
+						<div class="ex_shipping">
+							<a href="#none" id="btn_pdDelivery_Pop">
+								<span class="tit">배송/교환/반품</span>
+							</a>
+							<!-- 해당 배송정보 선택노출 -->
+							<span class="txt_shippingfee">배송비 2,500원</span>
+							<span class="txt_shippingfee">배송비 2,500원 (4,000원 이상 무료배송)</span>
+							<span class="txt_shippingfee">무료배송</span>
+							<span class="txt_shippingfee">총알배송(오전 10시까지 주문 시)</span>
+							<!-- //해당 배송정보 선택노출 -->
+							
+						</div>
+					</li>
+				</ul>
+			</div>
+			<!-- //문의,사이즈정보,배송/교환/반품 -->
+		</div>
+
+		<div class="inner">
+			<div class="recommendedArea">
+				<!-- 이상품과 함께 본 상품영역-->
+				<div class="pd_clickother">
+					<h3 class="tit">이 상품과 함께 본 상품</h3>
+					<div class="area_slider">
+						<div class="swiper-container">
+							<div class="swiper-wrapper">
+								<div class="swiper-slide">
+									<div class="item_prod">
+										<div class="item_state">
+											<button type="button" class="itemLike">관심상품 추가</button>
+											<a href="#none" class="itemLink">
+												<div class="itemPic">
+													<img class="vLHTC pd_img" src="/images/mo/thumb/tmp_cartColor1.jpg" alt="">
+												</div>
+												<p class="itemBrand">BRAND NAME</p>
+												<div class="itemName">남성 헤링본 기모 팬츠 헤링본 기모 팬츠</div>
+												<p class="itemPrice">
+													<span class="itemPrice_original">89,000</span>
+													80,100
+													<span class="itemPercent">10%</span>
+												</p>
+											</a>
+										</div>
+									</div>
+								</div>
+								<div class="swiper-slide">
+									<div class="item_prod">
+										<div class="item_state">
+											<button type="button" class="itemLike">관심상품 추가</button>
+											<a href="#none" class="itemLink">
+												<div class="itemPic">
+													<img class="vLHTC pd_img" src="/images/mo/thumb/tmp_cartColor1.jpg" alt="">
+												</div>
+												<p class="itemBrand">BRAND NAME</p>
+												<div class="itemName">남성 헤링본 기모 팬츠 헤링본 기모 팬츠</div>
+												<p class="itemPrice">
+													<span class="itemPrice_original">89,000</span>
+													80,100
+													<span class="itemPercent">10%</span>
+												</p>
+											</a>
+										</div>
+									</div>
+								</div>
+								<div class="swiper-slide">
+									<div class="item_prod">
+										<div class="item_state">
+											<button type="button" class="itemLike">관심상품 추가</button>
+											<a href="#none" class="itemLink">
+												<div class="itemPic">
+													<img class="vLHTC pd_img" src="/images/mo/thumb/tmp_cartColor1.jpg" alt="">
+												</div>
+												<p class="itemBrand">BRAND NAME</p>
+												<div class="itemName">남성 헤링본 기모 팬츠 헤링본 기모 팬츠</div>
+												<p class="itemPrice">
+													<span class="itemPrice_original">89,000</span>
+													80,100
+													<span class="itemPercent">10%</span>
+												</p>
+											</a>
+										</div>
+									</div>
+								</div>
+								<div class="swiper-slide">
+									<div class="item_prod">
+										<div class="item_state">
+											<button type="button" class="itemLike">관심상품 추가</button>
+											<a href="#none" class="itemLink">
+												<div class="itemPic">
+													<img class="vLHTC pd_img" src="/images/mo/thumb/tmp_cartColor1.jpg" alt="">
+												</div>
+												<p class="itemBrand">BRAND NAME</p>
+												<div class="itemName">남성 헤링본 기모 팬츠 헤링본 기모 팬츠</div>
+												<p class="itemPrice">
+													<span class="itemPrice_original">89,000</span>
+													80,100
+													<span class="itemPercent">10%</span>
+												</p>
+											</a>
+										</div>
+									</div>
+								</div>
+								<div class="swiper-slide">
+									<div class="item_prod">
+										<div class="item_state">
+											<button type="button" class="itemLike">관심상품 추가</button>
+											<a href="#none" class="itemLink">
+												<div class="itemPic">
+													<img class="vLHTC pd_img" src="/images/mo/thumb/tmp_cartColor1.jpg" alt="">
+												</div>
+												<p class="itemBrand">BRAND NAME</p>
+												<div class="itemName">남성 헤링본 기모 팬츠 헤링본 기모 팬츠</div>
+												<p class="itemPrice">
+													<span class="itemPrice_original">89,000</span>
+													80,100
+													<span class="itemPercent">10%</span>
+												</p>
+											</a>
+										</div>
+									</div>
+								</div>
+								<div class="swiper-slide">
+									<div class="item_prod">
+										<div class="item_state">
+											<button type="button" class="itemLike">관심상품 추가</button>
+											<a href="#none" class="itemLink">
+												<div class="itemPic">
+													<img class="vLHTC pd_img" src="/images/mo/thumb/tmp_cartColor1.jpg" alt="">
+												</div>
+												<p class="itemBrand">BRAND NAME</p>
+												<div class="itemName">남성 헤링본 기모 팬츠 헤링본 기모 팬츠</div>
+												<p class="itemPrice">
+													<span class="itemPrice_original">89,000</span>
+													80,100
+													<span class="itemPercent">10%</span>
+												</p>
+											</a>
+										</div>
+									</div>
+								</div>
+								<div class="swiper-slide">
+									<div class="item_prod">
+										<div class="item_state">
+											<button type="button" class="itemLike">관심상품 추가</button>
+											<a href="#none" class="itemLink">
+												<div class="itemPic">
+													<img class="vLHTC pd_img" src="/images/mo/thumb/tmp_cartColor1.jpg" alt="">
+												</div>
+												<p class="itemBrand">BRAND NAME</p>
+												<div class="itemName">남성 헤링본 기모 팬츠 헤링본 기모 팬츠</div>
+												<p class="itemPrice">
+													<span class="itemPrice_original">89,000</span>
+													80,100
+													<span class="itemPercent">10%</span>
+												</p>
+											</a>
+										</div>
+									</div>
+								</div>
+								<div class="swiper-slide">
+									<div class="item_prod">
+										<div class="item_state">
+											<button type="button" class="itemLike">관심상품 추가</button>
+											<a href="#none" class="itemLink">
+												<div class="itemPic">
+													<img class="vLHTC pd_img" src="/images/mo/thumb/tmp_cartColor1.jpg" alt="">
+												</div>
+												<p class="itemBrand">BRAND NAME</p>
+												<div class="itemName">남성 헤링본 기모 팬츠 헤링본 기모 팬츠</div>
+												<p class="itemPrice">
+													<span class="itemPrice_original">89,000</span>
+													80,100
+													<span class="itemPercent">10%</span>
+												</p>
+											</a>
+										</div>
+									</div>
+								</div>
+							</div>    
+						</div>	              
+					</div>
+				</div>
+				<!-- //이상품과 함께 본 상품영역-->
+				<!-- STYLE24의 스타일링 추천 -->
+				<div class="pd_recommend">
+					<h3 class="tit">STYLE24의 스타일링 추천</h3>
+					<!-- 상품이미지pic -->
+					<div class="area_slider pic_img">
+						<div class="swiper-container">
+							<div class="swiper-wrapper">
+								<div class="swiper-slide">
+									<div class="page">
+										<div class="pic">
+											<span class="thumb" style="background-image:url('/images/mo/thumb/tmp_pdLookbook1.jpg');"></span>
+											<!-- 상품피커 -->
+											<div class="item_picker" style="left:15.83%; top:68.33%;">
+												<div>
+													<button type="button"><span class="ico ico_picker"></span></button>
+													<div class="pick_descr">
+														<a href="">
+															상품명11
+														</a>
+													</div>
+												</div>
+											</div>
+											<!-- //상품피커 -->
+											<!-- 상품피커 -->
+											<div class="item_picker" style="left:45%; top:40%;">
+												<div>
+													<button type="button"><span class="ico ico_picker"></span></button>
+													<div class="pick_descr">
+														<a href="">
+															상품명12
+														</a>
+													</div>
+												</div>
+											</div>
+											<!-- //상품피커 -->       
+											<!-- 상품피커 -->
+											<div class="item_picker" style="left:85%; top:62%;">
+												<div>
+													<button type="button"><span class="ico ico_picker"></span></button>
+													<div class="pick_descr" style="display: none;">
+														<a href="">
+															상품명13
+														</a>
+													</div>
+												</div>
+											</div>
+											<!-- //상품피커 -->                                   
+										</div>
+									</div>                                    
+								</div>
+								<div class="swiper-slide">
+									<div class="page">
+										<div class="pic">
+											<span class="thumb" style="background-image:url('/images/mo/thumb/tmp_pdLookbook1.jpg');"></span>
+											<!-- 상품피커 -->
+											<div class="item_picker" style="left:15.83%; top:68.33%;">
+												<div>
+													<button type="button"><span class="ico ico_picker"></span></button>
+													<div class="pick_descr">
+														<a href="">
+															상품명11
+														</a>
+													</div>
+												</div>
+											</div>
+											<!-- //상품피커 -->
+											<!-- 상품피커 -->
+											<div class="item_picker" style="left:45%; top:40%;">
+												<div>
+													<button type="button"><span class="ico ico_picker"></span></button>
+													<div class="pick_descr">
+														<a href="">
+															상품명12
+														</a>
+													</div>
+												</div>
+											</div>
+											<!-- //상품피커 -->       
+											<!-- 상품피커 -->
+											<div class="item_picker" style="left:85%; top:62%;">
+												<div>
+													<button type="button"><span class="ico ico_picker"></span></button>
+													<div class="pick_descr" style="display: none;">
+														<a href="">
+															상품명13
+														</a>
+													</div>
+												</div>
+											</div>
+											<!-- //상품피커 -->                                   
+										</div>
+									</div>                                    
+								</div>
+								<div class="swiper-slide">
+									<div class="page">
+										<div class="pic">
+											<span class="thumb" style="background-image:url('/images/mo/thumb/tmp_pdLookbook1.jpg');"></span>
+											<!-- 상품피커 -->
+											<div class="item_picker" style="left:15.83%; top:68.33%;">
+												<div>
+													<button type="button"><span class="ico ico_picker"></span></button>
+													<div class="pick_descr">
+														<a href="">
+															상품명11
+														</a>
+													</div>
+												</div>
+											</div>
+											<!-- //상품피커 -->
+											<!-- 상품피커 -->
+											<div class="item_picker" style="left:45%; top:40%;">
+												<div>
+													<button type="button"><span class="ico ico_picker"></span></button>
+													<div class="pick_descr">
+														<a href="">
+															상품명12
+														</a>
+													</div>
+												</div>
+											</div>
+											<!-- //상품피커 -->       
+											<!-- 상품피커 -->
+											<div class="item_picker" style="left:85%; top:62%;">
+												<div>
+													<button type="button"><span class="ico ico_picker"></span></button>
+													<div class="pick_descr" style="display: none;">
+														<a href="">
+															상품명13
+														</a>
+													</div>
+												</div>
+											</div>
+											<!-- //상품피커 -->                                   
+										</div>
+									</div>                                    
+								</div>
+								<div class="swiper-slide">
+									<div class="page">
+										<div class="pic">
+											<span class="thumb" style="background-image:url('/images/mo/thumb/tmp_pdLookbook1.jpg');"></span>
+											<!-- 상품피커 -->
+											<div class="item_picker" style="left:15.83%; top:68.33%;">
+												<div>
+													<button type="button"><span class="ico ico_picker"></span></button>
+													<div class="pick_descr">
+														<a href="">
+															상품명11
+														</a>
+													</div>
+												</div>
+											</div>
+											<!-- //상품피커 -->
+											<!-- 상품피커 -->
+											<div class="item_picker" style="left:45%; top:40%;">
+												<div>
+													<button type="button"><span class="ico ico_picker"></span></button>
+													<div class="pick_descr">
+														<a href="">
+															상품명12
+														</a>
+													</div>
+												</div>
+											</div>
+											<!-- //상품피커 -->       
+											<!-- 상품피커 -->
+											<div class="item_picker" style="left:85%; top:62%;">
+												<div>
+													<button type="button"><span class="ico ico_picker"></span></button>
+													<div class="pick_descr" style="display: none;">
+														<a href="">
+															상품명13
+														</a>
+													</div>
+												</div>
+											</div>
+											<!-- //상품피커 -->                                   
+										</div>
+									</div>                                    
+								</div>
+							</div>
+							<!-- Add Pagination -->
+							<div class="swiper-pagination"></div>
+						</div>
+					</div>
+					<!-- //상품이미지pic -->
+					<!-- 상품이미지pic 리스트 -->
+					<div class="area_slider pic_list">
+						<div class="box">
+							<div class="swiper-container">
+								<div class="swiper-wrapper">
+									<div class="swiper-slide">
+										<div class="item_prod">
+											<div class="item_state">
+												<button type="button" class="itemLike">관심상품 추가</button>
+												<a href="#none" class="itemLink">
+													<div class="itemPic">
+														<img class="vLHTC pd_img" src="/images/mo/thumb/tmp_cartColor1.jpg" alt="">
+													</div>
+													<p class="itemBrand">BRAND NAME</p>
+													<div class="itemName">남성 헤링본 기모 팬츠 헤링본 기모 팬츠</div>
+													<p class="itemPrice">
+														80,100
+													</p>
+												</a>
+											</div>
+										</div>
+									</div>
+									<div class="swiper-slide">
+										<div class="item_prod">
+											<div class="item_state">
+												<button type="button" class="itemLike">관심상품 추가</button>
+												<a href="#none" class="itemLink">
+													<div class="itemPic">
+														<img class="vLHTC pd_img" src="/images/mo/thumb/tmp_cartColor1.jpg" alt="">
+													</div>
+													<p class="itemBrand">BRAND NAME</p>
+													<div class="itemName">남성 헤링본 기모 팬츠 헤링본 기모 팬츠</div>
+													<p class="itemPrice">
+														80,100
+													</p>
+												</a>
+											</div>
+										</div>
+									</div>
+									<div class="swiper-slide">
+										<div class="item_prod">
+											<div class="item_state">
+												<button type="button" class="itemLike">관심상품 추가</button>
+												<a href="#none" class="itemLink">
+													<div class="itemPic">
+														<img class="vLHTC pd_img" src="/images/mo/thumb/tmp_cartColor1.jpg" alt="">
+													</div>
+													<p class="itemBrand">BRAND NAME</p>
+													<div class="itemName">남성 헤링본 기모 팬츠 헤링본 기모 팬츠</div>
+													<p class="itemPrice">
+														80,100
+													</p>
+												</a>
+											</div>
+										</div>
+									</div>
+									<div class="swiper-slide">
+										<div class="item_prod">
+											<div class="item_state">
+												<button type="button" class="itemLike">관심상품 추가</button>
+												<a href="#none" class="itemLink">
+													<div class="itemPic">
+														<img class="vLHTC pd_img" src="/images/mo/thumb/tmp_cartColor1.jpg" alt="">
+													</div>
+													<p class="itemBrand">BRAND NAME</p>
+													<div class="itemName">남성 헤링본 기모 팬츠 헤링본 기모 팬츠</div>
+													<p class="itemPrice">
+														80,100
+													</p>
+												</a>
+											</div>
+										</div>
+									</div>
+									<div class="swiper-slide">
+										<div class="item_prod">
+											<div class="item_state">
+												<button type="button" class="itemLike">관심상품 추가</button>
+												<a href="#none" class="itemLink">
+													<div class="itemPic">
+														<img class="vLHTC pd_img" src="/images/mo/thumb/tmp_cartColor1.jpg" alt="">
+													</div>
+													<p class="itemBrand">BRAND NAME</p>
+													<div class="itemName">남성 헤링본 기모 팬츠 헤링본 기모 팬츠</div>
+													<p class="itemPrice">
+														80,100
+													</p>
+												</a>
+											</div>
+										</div>
+									</div>
+								</div>   
+							</div>
+							<div class="btn_group_flex">
+								<div>
+									<button type="button" class="btn btn_default"><span>모두 쇼핑백 담기</span></button>
+								</div>
+							</div>
+						</div>
+						<div class="box">
+							<div class="swiper-container">
+								<div class="swiper-wrapper">
+									<div class="swiper-slide">
+										<div class="item_prod">
+											<div class="item_state">
+												<button type="button" class="itemLike">관심상품 추가</button>
+												<a href="#none" class="itemLink">
+													<div class="itemPic">
+														<img class="vLHTC pd_img" src="/images/mo/thumb/tmp_cartColor1.jpg" alt="">
+													</div>
+													<p class="itemBrand">BRAND NAME</p>
+													<div class="itemName">남성 헤링본 기모 팬츠 헤링본 기모 팬츠</div>
+													<p class="itemPrice">
+														80,100
+													</p>
+												</a>
+											</div>
+										</div>
+									</div>
+									<div class="swiper-slide swiper-slide-next">
+										<div class="item_prod">
+											<div class="item_state">
+												<button type="button" class="itemLike">관심상품 추가</button>
+												<a href="#none" class="itemLink">
+													<div class="itemPic">
+														<img class="vLHTC pd_img" src="/images/mo/thumb/tmp_cartColor1.jpg" alt="">
+													</div>
+													<p class="itemBrand">BRAND NAME</p>
+													<div class="itemName">남성 헤링본 기모 팬츠 헤링본 기모 팬츠</div>
+													<p class="itemPrice">
+														80,100
+													</p>
+												</a>
+											</div>
+										</div>
+									</div>
+									<div class="swiper-slide">
+										<div class="item_prod">
+											<div class="item_state">
+												<button type="button" class="itemLike">관심상품 추가</button>
+												<a href="#none" class="itemLink">
+													<div class="itemPic">
+														<img class="vLHTC pd_img" src="/images/mo/thumb/tmp_cartColor1.jpg" alt="">
+													</div>
+													<p class="itemBrand">BRAND NAME</p>
+													<div class="itemName">남성 헤링본 기모 팬츠 헤링본 기모 팬츠</div>
+													<p class="itemPrice">
+														80,100
+													</p>
+												</a>
+											</div>
+										</div>
+									</div>
+									<div class="swiper-slide">
+										<div class="item_prod">
+											<div class="item_state">
+												<button type="button" class="itemLike">관심상품 추가</button>
+												<a href="#none" class="itemLink">
+													<div class="itemPic">
+														<img class="vLHTC pd_img" src="/images/mo/thumb/tmp_cartColor1.jpg" alt="">
+													</div>
+													<p class="itemBrand">BRAND NAME</p>
+													<div class="itemName">남성 헤링본 기모 팬츠 헤링본 기모 팬츠</div>
+													<p class="itemPrice">
+														80,100
+													</p>
+												</a>
+											</div>
+										</div>
+									</div>
+									<div class="swiper-slide">
+										<div class="item_prod">
+											<div class="item_state">
+												<button type="button" class="itemLike">관심상품 추가</button>
+												<a href="#none" class="itemLink">
+													<div class="itemPic">
+														<img class="vLHTC pd_img" src="/images/mo/thumb/tmp_cartColor1.jpg" alt="">
+													</div>
+													<p class="itemBrand">BRAND NAME</p>
+													<div class="itemName">남성 헤링본 기모 팬츠 헤링본 기모 팬츠</div>
+													<p class="itemPrice">
+														80,100
+													</p>
+												</a>
+											</div>
+										</div>
+									</div>
+								</div>   
+							</div>
+							<div class="btn_group_flex">
+								<div>
+									<button type="button" class="btn btn_default"><span>모두 쇼핑백 담기</span></button>
+								</div>
+							</div>
+						</div>
+						<div class="box">
+							<div class="swiper-container">
+								<div class="swiper-wrapper">
+									<div class="swiper-slide">
+										<div class="item_prod">
+											<div class="item_state">
+												<button type="button" class="itemLike">관심상품 추가</button>
+												<a href="#none" class="itemLink">
+													<div class="itemPic">
+														<img class="vLHTC pd_img" src="/images/mo/thumb/tmp_cartColor1.jpg" alt="">
+													</div>
+													<p class="itemBrand">BRAND NAME</p>
+													<div class="itemName">남성 헤링본 기모 팬츠 헤링본 기모 팬츠</div>
+													<p class="itemPrice">
+														80,100
+													</p>
+												</a>
+											</div>
+										</div>
+									</div>
+									<div class="swiper-slide">
+										<div class="item_prod">
+											<div class="item_state">
+												<button type="button" class="itemLike">관심상품 추가</button>
+												<a href="#none" class="itemLink">
+													<div class="itemPic">
+														<img class="vLHTC pd_img" src="/images/mo/thumb/tmp_cartColor1.jpg" alt="">
+													</div>
+													<p class="itemBrand">BRAND NAME</p>
+													<div class="itemName">남성 헤링본 기모 팬츠 헤링본 기모 팬츠</div>
+													<p class="itemPrice">
+														80,100
+													</p>
+												</a>
+											</div>
+										</div>
+									</div>
+									<div class="swiper-slide">
+										<div class="item_prod">
+											<div class="item_state">
+												<button type="button" class="itemLike">관심상품 추가</button>
+												<a href="#none" class="itemLink">
+													<div class="itemPic">
+														<img class="vLHTC pd_img" src="/images/mo/thumb/tmp_cartColor1.jpg" alt="">
+													</div>
+													<p class="itemBrand">BRAND NAME</p>
+													<div class="itemName">남성 헤링본 기모 팬츠 헤링본 기모 팬츠</div>
+													<p class="itemPrice">
+														80,100
+													</p>
+												</a>
+											</div>
+										</div>
+									</div>
+									<div class="swiper-slide">
+										<div class="item_prod">
+											<div class="item_state">
+												<button type="button" class="itemLike">관심상품 추가</button>
+												<a href="#none" class="itemLink">
+													<div class="itemPic">
+														<img class="vLHTC pd_img" src="/images/mo/thumb/tmp_cartColor1.jpg" alt="">
+													</div>
+													<p class="itemBrand">BRAND NAME</p>
+													<div class="itemName">남성 헤링본 기모 팬츠 헤링본 기모 팬츠</div>
+													<p class="itemPrice">
+														80,100
+													</p>
+												</a>
+											</div>
+										</div>
+									</div>
+									<div class="swiper-slide">
+										<div class="item_prod">
+											<div class="item_state">
+												<button type="button" class="itemLike">관심상품 추가</button>
+												<a href="#none" class="itemLink">
+													<div class="itemPic">
+														<img class="vLHTC pd_img" src="/images/mo/thumb/tmp_cartColor1.jpg" alt="">
+													</div>
+													<p class="itemBrand">BRAND NAME</p>
+													<div class="itemName">남성 헤링본 기모 팬츠 헤링본 기모 팬츠</div>
+													<p class="itemPrice">
+														80,100
+													</p>
+												</a>
+											</div>
+										</div>
+									</div>
+								</div>   
+							</div>
+							<div class="btn_group_flex">
+								<div>
+									<button type="button" class="btn btn_default"><span>모두 쇼핑백 담기</span></button>
+								</div>
+							</div>
+						</div>
+						<div class="box">
+							<div class="swiper-container">
+								<div class="swiper-wrapper">
+									<div class="swiper-slide">
+										<div class="item_prod">
+											<div class="item_state">
+												<button type="button" class="itemLike">관심상품 추가</button>
+												<a href="#none" class="itemLink">
+													<div class="itemPic">
+														<img class="vLHTC pd_img" src="/images/mo/thumb/tmp_cartColor1.jpg" alt="">
+													</div>
+													<p class="itemBrand">BRAND NAME</p>
+													<div class="itemName">남성 헤링본 기모 팬츠 헤링본 기모 팬츠</div>
+													<p class="itemPrice">
+														80,100
+													</p>
+												</a>
+											</div>
+										</div>
+									</div>
+									<div class="swiper-slide">
+										<div class="item_prod">
+											<div class="item_state">
+												<button type="button" class="itemLike">관심상품 추가</button>
+												<a href="#none" class="itemLink">
+													<div class="itemPic">
+														<img class="vLHTC pd_img" src="/images/mo/thumb/tmp_cartColor1.jpg" alt="">
+													</div>
+													<p class="itemBrand">BRAND NAME</p>
+													<div class="itemName">남성 헤링본 기모 팬츠 헤링본 기모 팬츠</div>
+													<p class="itemPrice">
+														80,100
+													</p>
+												</a>
+											</div>
+										</div>
+									</div>
+									<div class="swiper-slide">
+										<div class="item_prod">
+											<div class="item_state">
+												<button type="button" class="itemLike">관심상품 추가</button>
+												<a href="#none" class="itemLink">
+													<div class="itemPic">
+														<img class="vLHTC pd_img" src="/images/mo/thumb/tmp_cartColor1.jpg" alt="">
+													</div>
+													<p class="itemBrand">BRAND NAME</p>
+													<div class="itemName">남성 헤링본 기모 팬츠 헤링본 기모 팬츠</div>
+													<p class="itemPrice">
+														80,100
+													</p>
+												</a>
+											</div>
+										</div>
+									</div>
+									<div class="swiper-slide">
+										<div class="item_prod">
+											<div class="item_state">
+												<button type="button" class="itemLike">관심상품 추가</button>
+												<a href="#none" class="itemLink">
+													<div class="itemPic">
+														<img class="vLHTC pd_img" src="/images/mo/thumb/tmp_cartColor1.jpg" alt="">
+													</div>
+													<p class="itemBrand">BRAND NAME</p>
+													<div class="itemName">남성 헤링본 기모 팬츠 헤링본 기모 팬츠</div>
+													<p class="itemPrice">
+														80,100
+													</p>
+												</a>
+											</div>
+										</div>
+									</div>
+									<div class="swiper-slide">
+										<div class="item_prod">
+											<div class="item_state">
+												<button type="button" class="itemLike">관심상품 추가</button>
+												<a href="#none" class="itemLink">
+													<div class="itemPic">
+														<img class="vLHTC pd_img" src="/images/mo/thumb/tmp_cartColor1.jpg" alt="">
+													</div>
+													<p class="itemBrand">BRAND NAME</p>
+													<div class="itemName">남성 헤링본 기모 팬츠 헤링본 기모 팬츠</div>
+													<p class="itemPrice">
+														80,100
+													</p>
+												</a>
+											</div>
+										</div>
+									</div>
+								</div>   
+							</div>
+							<div class="btn_group_flex">
+								<div>
+									<button type="button" class="btn btn_default"><span>모두 쇼핑백 담기</span></button>
+								</div>
+							</div>
+						</div>
+					</div>
+					<!-- //상품이미지pic 리스트 -->
+				</div>
+				<!-- //STYLE24의 스타일링 추천 -->
+				<!-- 동일브랜드 추천상품 -->
+				<div class="pd_samebrand">
+					<h3 class="tit">NBA 추천 상품</h3>
+					<div class="area_slider">
+						<div class="swiper-container">
+							<div class="swiper-wrapper">
+								<div class="swiper-slide">
+									<div class="item_prod">
+										<div class="item_state">
+											<button type="button" class="itemLike">관심상품 추가</button>
+											<a href="#none" class="itemLink">
+												<div class="itemPic">
+													<img class="vLHTC pd_img" src="/images/mo/thumb/tmp_cartColor1.jpg" alt="">
+												</div>
+												<p class="itemBrand">BRAND NAME</p>
+												<div class="itemName">남성 헤링본 기모 팬츠 헤링본 기모 팬츠</div>
+												<p class="itemPrice">
+													<span class="itemPrice_original">89,000</span>
+													80,100
+													<span class="itemPercent">10%</span>
+												</p>
+											</a>
+										</div>
+									</div>
+								</div>
+								<div class="swiper-slide">
+									<div class="item_prod">
+										<div class="item_state">
+											<button type="button" class="itemLike">관심상품 추가</button>
+											<a href="#none" class="itemLink">
+												<div class="itemPic">
+													<img class="vLHTC pd_img" src="/images/mo/thumb/tmp_cartColor1.jpg" alt="">
+												</div>
+												<p class="itemBrand">BRAND NAME</p>
+												<div class="itemName">남성 헤링본 기모 팬츠 헤링본 기모 팬츠</div>
+												<p class="itemPrice">
+													<span class="itemPrice_original">89,000</span>
+													80,100
+													<span class="itemPercent">10%</span>
+												</p>
+											</a>
+										</div>
+									</div>
+								</div>
+								<div class="swiper-slide">
+									<div class="item_prod">
+										<div class="item_state">
+											<button type="button" class="itemLike">관심상품 추가</button>
+											<a href="#none" class="itemLink">
+												<div class="itemPic">
+													<img class="vLHTC pd_img" src="/images/mo/thumb/tmp_cartColor1.jpg" alt="">
+												</div>
+												<p class="itemBrand">BRAND NAME</p>
+												<div class="itemName">남성 헤링본 기모 팬츠 헤링본 기모 팬츠</div>
+												<p class="itemPrice">
+													<span class="itemPrice_original">89,000</span>
+													80,100
+													<span class="itemPercent">10%</span>
+												</p>
+											</a>
+										</div>
+									</div>
+								</div>
+								<div class="swiper-slide">
+									<div class="item_prod">
+										<div class="item_state">
+											<button type="button" class="itemLike">관심상품 추가</button>
+											<a href="#none" class="itemLink">
+												<div class="itemPic">
+													<img class="vLHTC pd_img" src="/images/mo/thumb/tmp_cartColor1.jpg" alt="">
+												</div>
+												<p class="itemBrand">BRAND NAME</p>
+												<div class="itemName">남성 헤링본 기모 팬츠 헤링본 기모 팬츠</div>
+												<p class="itemPrice">
+													<span class="itemPrice_original">89,000</span>
+													80,100
+													<span class="itemPercent">10%</span>
+												</p>
+											</a>
+										</div>
+									</div>
+								</div>
+								<div class="swiper-slide">
+									<div class="item_prod">
+										<div class="item_state">
+											<button type="button" class="itemLike">관심상품 추가</button>
+											<a href="#none" class="itemLink">
+												<div class="itemPic">
+													<img class="vLHTC pd_img" src="/images/mo/thumb/tmp_cartColor1.jpg" alt="">
+												</div>
+												<p class="itemBrand">BRAND NAME</p>
+												<div class="itemName">남성 헤링본 기모 팬츠 헤링본 기모 팬츠</div>
+												<p class="itemPrice">
+													<span class="itemPrice_original">89,000</span>
+													80,100
+													<span class="itemPercent">10%</span>
+												</p>
+											</a>
+										</div>
+									</div>
+								</div>
+								<div class="swiper-slide">
+									<div class="item_prod">
+										<div class="item_state">
+											<button type="button" class="itemLike">관심상품 추가</button>
+											<a href="#none" class="itemLink">
+												<div class="itemPic">
+													<img class="vLHTC pd_img" src="/images/mo/thumb/tmp_cartColor1.jpg" alt="">
+												</div>
+												<p class="itemBrand">BRAND NAME</p>
+												<div class="itemName">남성 헤링본 기모 팬츠 헤링본 기모 팬츠</div>
+												<p class="itemPrice">
+													<span class="itemPrice_original">89,000</span>
+													80,100
+													<span class="itemPercent">10%</span>
+												</p>
+											</a>
+										</div>
+									</div>
+								</div>
+								<div class="swiper-slide">
+									<div class="item_prod">
+										<div class="item_state">
+											<button type="button" class="itemLike">관심상품 추가</button>
+											<a href="#none" class="itemLink">
+												<div class="itemPic">
+													<img class="vLHTC pd_img" src="/images/mo/thumb/tmp_cartColor1.jpg" alt="">
+												</div>
+												<p class="itemBrand">BRAND NAME</p>
+												<div class="itemName">남성 헤링본 기모 팬츠 헤링본 기모 팬츠</div>
+												<p class="itemPrice">
+													<span class="itemPrice_original">89,000</span>
+													80,100
+													<span class="itemPercent">10%</span>
+												</p>
+											</a>
+										</div>
+									</div>
+								</div>
+								<div class="swiper-slide">
+									<div class="item_prod">
+										<div class="item_state">
+											<button type="button" class="itemLike">관심상품 추가</button>
+											<a href="#none" class="itemLink">
+												<div class="itemPic">
+													<img class="vLHTC pd_img" src="/images/mo/thumb/tmp_cartColor1.jpg" alt="">
+												</div>
+												<p class="itemBrand">BRAND NAME</p>
+												<div class="itemName">남성 헤링본 기모 팬츠 헤링본 기모 팬츠</div>
+												<p class="itemPrice">
+													<span class="itemPrice_original">89,000</span>
+													80,100
+													<span class="itemPercent">10%</span>
+												</p>
+											</a>
+										</div>
+									</div>
+								</div>
+							</div>
+						</div>
+					</div>
+				</div>
+				<!-- //동일브랜드 추천상품 -->
+				<!-- 이 상품과 비슷한 상품영역 -->
+				<div class="pd_relate">
+					<h3 class="tit">이 상품과 비슷한 상품</h3>
+					<div class="area_slider">
+						<div class="swiper-container">
+							<div class="swiper-wrapper">
+								<div class="swiper-slide">
+									<div class="item_prod">
+										<div class="item_state">
+											<button type="button" class="itemLike">관심상품 추가</button>
+											<a href="#none" class="itemLink">
+												<div class="itemPic">
+													<img class="vLHTC pd_img" src="/images/mo/thumb/tmp_cartColor1.jpg" alt="">
+												</div>
+												<p class="itemBrand">BRAND NAME</p>
+												<div class="itemName">남성 헤링본 기모 팬츠 헤링본 기모 팬츠</div>
+												<p class="itemPrice">
+													<span class="itemPrice_original">89,000</span>
+													80,100
+													<span class="itemPercent">10%</span>
+												</p>
+											</a>
+										</div>
+									</div>
+								</div>
+								<div class="swiper-slide">
+									<div class="item_prod">
+										<div class="item_state">
+											<button type="button" class="itemLike">관심상품 추가</button>
+											<a href="#none" class="itemLink">
+												<div class="itemPic">
+													<img class="vLHTC pd_img" src="/images/mo/thumb/tmp_cartColor1.jpg" alt="">
+												</div>
+												<p class="itemBrand">BRAND NAME</p>
+												<div class="itemName">남성 헤링본 기모 팬츠 헤링본 기모 팬츠</div>
+												<p class="itemPrice">
+													<span class="itemPrice_original">89,000</span>
+													80,100
+													<span class="itemPercent">10%</span>
+												</p>
+											</a>
+										</div>
+									</div>
+								</div>
+								<div class="swiper-slide">
+									<div class="item_prod">
+										<div class="item_state">
+											<button type="button" class="itemLike">관심상품 추가</button>
+											<a href="#none" class="itemLink">
+												<div class="itemPic">
+													<img class="vLHTC pd_img" src="/images/mo/thumb/tmp_cartColor1.jpg" alt="">
+												</div>
+												<p class="itemBrand">BRAND NAME</p>
+												<div class="itemName">남성 헤링본 기모 팬츠 헤링본 기모 팬츠</div>
+												<p class="itemPrice">
+													<span class="itemPrice_original">89,000</span>
+													80,100
+													<span class="itemPercent">10%</span>
+												</p>
+											</a>
+										</div>
+									</div>
+								</div>
+								<div class="swiper-slide">
+									<div class="item_prod">
+										<div class="item_state">
+											<button type="button" class="itemLike">관심상품 추가</button>
+											<a href="#none" class="itemLink">
+												<div class="itemPic">
+													<img class="vLHTC pd_img" src="/images/mo/thumb/tmp_cartColor1.jpg" alt="">
+												</div>
+												<p class="itemBrand">BRAND NAME</p>
+												<div class="itemName">남성 헤링본 기모 팬츠 헤링본 기모 팬츠</div>
+												<p class="itemPrice">
+													<span class="itemPrice_original">89,000</span>
+													80,100
+													<span class="itemPercent">10%</span>
+												</p>
+											</a>
+										</div>
+									</div>
+								</div>
+								<div class="swiper-slide">
+									<div class="item_prod">
+										<div class="item_state">
+											<button type="button" class="itemLike">관심상품 추가</button>
+											<a href="#none" class="itemLink">
+												<div class="itemPic">
+													<img class="vLHTC pd_img" src="/images/mo/thumb/tmp_cartColor1.jpg" alt="">
+												</div>
+												<p class="itemBrand">BRAND NAME</p>
+												<div class="itemName">남성 헤링본 기모 팬츠 헤링본 기모 팬츠</div>
+												<p class="itemPrice">
+													<span class="itemPrice_original">89,000</span>
+													80,100
+													<span class="itemPercent">10%</span>
+												</p>
+											</a>
+										</div>
+									</div>
+								</div>
+								<div class="swiper-slide">
+									<div class="item_prod">
+										<div class="item_state">
+											<button type="button" class="itemLike">관심상품 추가</button>
+											<a href="#none" class="itemLink">
+												<div class="itemPic">
+													<img class="vLHTC pd_img" src="/images/mo/thumb/tmp_cartColor1.jpg" alt="">
+												</div>
+												<p class="itemBrand">BRAND NAME</p>
+												<div class="itemName">남성 헤링본 기모 팬츠 헤링본 기모 팬츠</div>
+												<p class="itemPrice">
+													<span class="itemPrice_original">89,000</span>
+													80,100
+													<span class="itemPercent">10%</span>
+												</p>
+											</a>
+										</div>
+									</div>
+								</div>
+								<div class="swiper-slide">
+									<div class="item_prod">
+										<div class="item_state">
+											<button type="button" class="itemLike">관심상품 추가</button>
+											<a href="#none" class="itemLink">
+												<div class="itemPic">
+													<img class="vLHTC pd_img" src="/images/mo/thumb/tmp_cartColor1.jpg" alt="">
+												</div>
+												<p class="itemBrand">BRAND NAME</p>
+												<div class="itemName">남성 헤링본 기모 팬츠 헤링본 기모 팬츠</div>
+												<p class="itemPrice">
+													<span class="itemPrice_original">89,000</span>
+													80,100
+													<span class="itemPercent">10%</span>
+												</p>
+											</a>
+										</div>
+									</div>
+								</div>
+								<div class="swiper-slide">
+									<div class="item_prod">
+										<div class="item_state">
+											<button type="button" class="itemLike">관심상품 추가</button>
+											<a href="#none" class="itemLink">
+												<div class="itemPic">
+													<img class="vLHTC pd_img" src="/images/mo/thumb/tmp_cartColor1.jpg" alt="">
+												</div>
+												<p class="itemBrand">BRAND NAME</p>
+												<div class="itemName">남성 헤링본 기모 팬츠 헤링본 기모 팬츠</div>
+												<p class="itemPrice">
+													<span class="itemPrice_original">89,000</span>
+													80,100
+													<span class="itemPercent">10%</span>
+												</p>
+											</a>
+										</div>
+									</div>
+								</div>
+							</div>
+						</div>                    
+					</div>
+				</div>
+				<!-- //이 상품과 비슷한 상품영역 -->
+			</div>
+		</div>
+
+		<!-- 팝업영역 -->
+		<div>
+			<!-- 구매하기팝업 -->
+			<div class="btPop btPopAuto pd_pop Purchase_pop" id="btPopAuto_back">
+				<a class="btn btPop_close">Close </a>
+				<div class="header btPop_head btPopAuto_head">
+					구매하기팝업
+				</div>
+				<div class="body btPop_body btPopAuto_body">
+					<div class="option_result op1">
+						<!-- 옵션 -->
+						<div class="option_box">
+							<div class="opt_color">
+								<div class="opt_header">
+									<span class="title">컬러</span>
+									<span class="color">그레이</span>
+								</div>
+								<ul>
+									<li>
+										<a href="" class="on">  <!-- 해당 컬러 상품페이지로 이동 -->
+											<img src="/images/mo/thumb/tmp_cartColor1.jpg" alt="그레이">
+										</a>
+									</li>
+									<li>
+										<a href="">
+											<img src="/images/mo/thumb/tmp_cartColor1.jpg" alt="베이지">
+										</a>
+									</li>
+									<li>
+										<a href="">
+											<img src="/images/mo/thumb/tmp_cartColor1.jpg" alt="그린">
+										</a>
+									</li>
+									<li>
+										<a href="">
+											<img src="/images/mo/thumb/tmp_cartColor1.jpg" alt="핑크">
+										</a>
+									</li>
+									<li>
+										<a href="">
+											<img src="/images/mo/thumb/tmp_cartColor1.jpg" alt="민트">
+										</a>
+									</li>
+									<li>
+										<a href="">
+											<img src="/images/mo/thumb/tmp_cartColor1.jpg" alt="블랙">
+										</a>
+									</li>
+								</ul>
+							</div>
+							<div class="opt_size">
+								<div class="opt_header">
+									<span class="title">사이즈</span>
+								</div>
+								<div class="form_field2">
+									<div class="lap">
+										<div>
+											<label><input type="radio" name="rdi-optsize" value="" checked=""><span>90</span></label>
+										</div>
+										<div>
+											<label><input type="radio" name="rdi-optsize" value="" disabled=""><span>95</span></label>
+										</div>
+										<div>
+											<label><input type="radio" name="rdi-optsize" value=""><span>100</span></label>
+										</div>
+										<div>
+											<label><input type="radio" name="rdi-optsize" value=""><span>105</span></label>
+										</div>
+										<div>
+											<label><input type="radio" name="rdi-optsize" value=""><span>110</span></label>
+										</div>
+										<div>
+											<label><input type="radio" name="rdi-optsize" value=""><span>115</span></label>
+										</div>
+										<div>
+											<label><input type="radio" name="rdi-optsize" value=""><span>free</span></label>
+										</div>
+									</div>
+								</div>
+							</div>
+							<!-- 해당상품 품절시 노출 -->
+							<div class="info_restock"><a href="#none" id="btn_pushRestock_pop" class="btn_popup">재입고 알림 신청</a></div>
+							<!-- //해당상품 품절시 노출 -->
+							<div class="opt_count">
+								<div class="opt_header">
+									<span class="title">수량</span>
+								</div>
+								<div class="number_count">
+									<span class="minus"><em class="sr-only">감소</em></span>
+									<input type="text" name="" maxlength="3" style="ime-mode:disabled" value="1">
+									<span class="plus"><em class="sr-only">추가</em></span>
+								</div>
+							</div>
+							<div class="opt_select">
+								<form class="form_wrap">
+									<div class="form_field">
+										<div class="select_custom option_open">
+											<div class="combo">
+												<div class="select">상품옵션06</div>
+											</div>
+										</div>
+									</div>
+								</form>
+							</div>
+							<div class="opt_result">
+								<div class="result_item">
+									<div class="opt_header">
+										<div class="bundle">
+											<span class="item_option">다크그레이/XXL</span>
+										</div>
+									</div>
+									<div class="number_count">
+										<span class="minus"><em class="sr-only">감소</em></span>
+										<input type="text" name="" maxlength="3" style="ime-mode:disabled" value="1">
+										<span class="plus"><em class="sr-only">추가</em></span>
+									</div>
+									<div class="item_price">
+										<p><em>99,999,999</em>원</p>
+									</div>
+									<button type="button" class="btn_delete_item"><span>삭제</span></button>
+								</div>
+								<div class="result_item">
+									<div class="opt_header">
+										<div class="bundle">
+											<span class="item_name">[상품1] 남성 테이퍼드핏 기모면 올밴딩 팬트</span>
+											<span class="item_option">블루그레이/S</span>
+										</div>
+									</div>
+									<div class="number_count">
+										<span class="minus"><em class="sr-only">감소</em></span>
+										<input type="text" name="" maxlength="3" style="ime-mode:disabled" value="1">
+										<span class="plus"><em class="sr-only">추가</em></span>
+									</div>
+									<div class="item_price">
+										<p><em>99,999,999</em>원</p>
+									</div>
+									<button type="button" class="btn_delete_item"><span>삭제</span></button>
+								</div>
+								<div class="result_item">
+									<div class="opt_header">
+										<div class="bundle">
+											<span class="item_name">[상품1] 남성 테이퍼드핏 기모면 올밴딩 팬트</span>
+											<span class="item_option">다크그레이/XXL</span>
+										</div>
+										<div class="bundle">
+											<span class="item_name">[상품1] 남성 테이퍼드핏 기모면 올밴딩 팬트</span>
+											<span class="item_option">다크그레이/XXL</span>
+										</div>
+									</div>
+									<div class="number_count">
+										<span class="minus"><em class="sr-only">감소</em></span>
+										<input type="text" name="" maxlength="3" style="ime-mode:disabled" value="1">
+										<span class="plus"><em class="sr-only">추가</em></span>
+									</div>
+									<div class="item_price">
+										<p><em>99,999,999</em>원</p>
+									</div>
+									<button type="button" class="btn_delete_item"><span>삭제</span></button>
+								</div>
+							</div>
+							
+						</div>
+						<!-- 네이버결제 -->
+						<div class="npay_box">
+							<div class="np_head">
+								<div><img src="/images/mo/img_npay_txt.png" alt="NAVER 네이버 ID로 간편구매 네이버페이"></div>
+								<div><button><img src="/images/mo/btn_npay_txt.png" alt="Npay 구매"></button></div>
+							</div>
+							<div class="np_body">
+								<a href="#none"><em>[멥버십]</em>첫달 무료가입하고 추가 4%!</a>
+							</div>
+						</div>
+					</div>
+					<!-- 옵션선택팝업 -->
+					<div class="pop_option_select">
+						<div class="close">닫기</div>
+						<div class="pp_body">
+							<div class="pp_cont">
+								<div class="opt_select">
+									<div class="opt_header">
+										<span class="title">옵션선택</span>
+										<div class="check_excluding form_field">
+											<div>
+												<input id="excluding" type="checkbox"><label for="excluding"> <span>품절제외</span> </label>
+											</div>
+										</div>
+									</div>
+									<!-- 일반상품일때 -->
+									<div class="nomOption">
+										<form class="form_wrap">
+											<div class="form_field">
+												<div class="select_custom item_opt1">
+													<div class="combo">
+														<div class="select">상품옵션01</div>
+														<ul class="list" style="display: none;">
+															<!-- 선택처리 class="selected" / 선택불가 aria-disabled="true" / 품절표기 data-soldout="true" 추가  -->
+															<li class="">선택</li> 
+															<li class="selected">상품옵션01</li>
+															<li>상품옵션02</li>
+															<li>상품옵션03</li>
+															<li aria-disabled="true">상품옵션05</li>
+															<li>상품옵션06</li>
+															<li aria-disabled="true" data-soldout="true">상품옵션07</li>
+														</ul>
+													</div>
+												</div>
+											</div>
+											<div class="form_field">
+												<div class="select_custom item_opt2" disabled>
+													<div class="combo">
+														<div class="select">상품옵션12</div>
+														<ul class="list" style="display: none;">
+															<!-- 선택처리 class="selected" / 선택불가 aria-disabled="true" / 품절표기 data-soldout="true" 추가  -->
+															<li class="">선택</li> 
+															<li class="">상품옵션11</li>
+															<li class="selected">상품옵션12</li>
+															<li>상품옵션13</li>
+															<li aria-disabled="true">상품옵션15</li>
+															<li>상품옵션16</li>
+															<li aria-disabled="true" data-soldout="true">상품옵션17</li>
+														</ul>
+													</div>
+												</div>
+											</div>
+										</form>
+									</div>
+									<!-- //일반상품일때 -->
+									<!-- 셋트상품일때 -->
+									<div class="setOption">
+										<form class="form_wrap">
+											<div class="form_field">
+												<p class="title">슬림핏 마이크로 체크 네이비컬러 셋업수트 자켓</p>
+												<div class="select_custom item_opt1">
+													<div class="combo">
+														<div class="select">상품옵션01</div>
+														<ul class="list" style="display: none;">
+															<!-- 선택처리 class="selected" / 선택불가 aria-disabled="true" / 품절표기 data-soldout="true" 추가  -->
+															<li class="">선택</li> 
+															<li class="selected">상품옵션01</li>
+															<li>상품옵션02</li>
+															<li>상품옵션03</li>
+															<li aria-disabled="true">상품옵션05</li>
+															<li>상품옵션06</li>
+															<li aria-disabled="true" data-soldout="true">상품옵션07</li>
+														</ul>
+													</div>
+												</div>
+											</div>
+											<div class="form_field">
+												<div class="select_custom item_opt2" disabled>
+													<div class="combo">
+														<div class="select">상품옵션12</div>
+														<ul class="list" style="display: none;">
+															<!-- 선택처리 class="selected" / 선택불가 aria-disabled="true" / 품절표기 data-soldout="true" 추가  -->
+															<li class="">선택</li> 
+															<li class="">상품옵션11</li>
+															<li class="selected">상품옵션12</li>
+															<li>상품옵션13</li>
+															<li aria-disabled="true">상품옵션15</li>
+															<li>상품옵션16</li>
+															<li aria-disabled="true" data-soldout="true">상품옵션17</li>
+														</ul>
+													</div>
+												</div>
+											</div>
+										</form>
+										<form class="form_wrap">
+											<div class="form_field">
+												<p class="title">슬림핏 마이크로 체크 네이비컬러 셋업수트 바지</p>
+												<div class="select_custom item_opt1">
+													<div class="combo">
+														<div class="select">상품옵션01</div>
+														<ul class="list" style="display: none;">
+															<!-- 선택처리 class="selected" / 선택불가 aria-disabled="true" / 품절표기 data-soldout="true" 추가  -->
+															<li class="">선택</li> 
+															<li class="selected">상품옵션01</li>
+															<li>상품옵션02</li>
+															<li>상품옵션03</li>
+															<li aria-disabled="true">상품옵션05</li>
+															<li>상품옵션06</li>
+															<li aria-disabled="true" data-soldout="true">상품옵션07</li>
+														</ul>
+													</div>
+												</div>
+											</div>
+											<div class="form_field">
+												<div class="select_custom item_opt2" disabled>
+													<div class="combo">
+														<div class="select">상품옵션12</div>
+														<ul class="list" style="display: none;">
+															<!-- 선택처리 class="selected" / 선택불가 aria-disabled="true" / 품절표기 data-soldout="true" 추가  -->
+															<li class="">선택</li> 
+															<li class="">상품옵션11</li>
+															<li class="selected">상품옵션12</li>
+															<li>상품옵션13</li>
+															<li aria-disabled="true">상품옵션15</li>
+															<li>상품옵션16</li>
+															<li aria-disabled="true" data-soldout="true">상품옵션17</li>
+														</ul>
+													</div>
+												</div>
+											</div>
+										</form>
+									</div>
+									<!-- //셋트상품일때 -->
+									<div class="text_excluding">99개의 품절옵션이 제외되었습니다.</div>
+								</div>
+							</div>
+						</div>
+					</div>
+					<!-- //옵션선택팝업 -->
+				</div>
+				<div class="body btPop_foot btPopAuto_foot">
+					<!-- 총 결재금액, 하단버튼 -->
+					<div class="pay_box">
+						<div class="price_box">
+							<p class="number">
+								총&nbsp;<span>99</span>개
+							</p>
+							<p class="price">
+								<span>
+									99,999,999<em>원</em>
+								</span>
+							</p>
+						</div>
+						<div class="btn_box">
+							<button class="gift">
+								<span><span>선물해보세요!</span></span>
+							</button>
+							<button class="cart" id="btn_shoppingBag_pop">쇼핑백</button>
+							<button class="buyNow">바로구매</button>
+						</div>
+					</div>
+				</div>
+			</div>
+			<!-- 구매하기팝업 -->
+
+			<!-- 쇼핑백팝업 -->
+			<div id="shoppingBagModal">
+				<div class="shoppingBag_box">
+					<p>쇼핑백에 상품을 담았습니다.</p> 
+					<a href="#none" class="link_shoppingBag">쇼핑백 바로가기</a>
+				</div>
+			</div>
+			<!-- //쇼핑백팝업 -->
+
+			<!-- 세일쿠폰다운팝업 -->
+			<div class="modal fade pd_pop salecoupon_pop" id="saleCouponPop" tabindex="-1" role="dialog" aria-labelledby="modalScrollLabel" aria-hidden="true">
+				<div class="modal-dialog" role="document">
+					<div class="modal-content">
+						<div class="modal-header">
+							<h5 class="modal-title" id="modalScrollLabel">할인쿠폰 받기</h5>
+						</div>
+						<div class="modal-body">
+							<div class="pop_cont">
+								<ul class="coupon_list">
+									<li>
+										<div class="coupon">
+											<div>
+												<p class="cp_name">
+													TBJ 시즌오프 20% 할인쿠폰
+												</p>
+												<p class="cp_cont">
+													<span><em>12,399,900</em>원</span>
+													<span><em>40%</em></span>
+												</p>
+												<p class="cp_condition">
+													500,000원 이상 구매 시 최대 50,000원 할인
+													<span>1인 최대 90장</span>
+												</p>
+											</div>
+											<div class="btn_group_flex">
+												<div>
+													<button type="button" class="btn btn_dark">
+														<span>쿠폰받기</span>
+														<span>받기완료</span>
+													</button>
+												</div>
+											</div>
+										</div>
+									</li>
+									<li>
+										<div class="coupon">
+											<div>
+												<p class="cp_name">
+													신규가입 40% 할인쿠폰
+												</p>
+												<p class="cp_cont">
+													<span><em>12,399,900</em>원</span>
+													<span><em>40%</em></span>
+												</p>
+												<p class="cp_condition">
+													500,000원 이상 구매 시 최대 50,000원 할인
+													<span>1인 최대 90장</span>
+												</p>
+											</div>
+											<div class="btn_group_flex">
+												<div>
+													<button type="button" class="btn btn_dark" disabled=""><span>쿠폰받기</span>
+														<span>받기완료</span>
+													</button>
+												</div>
+											</div>
+										</div>
+									</li>                        
+								</ul>
+							</div>
+						</div>
+						<div class="modal-footer">
+							<button type="button" id="" class="btn btn_primary"><span>쿠폰 모두 받기</span><span>쿠폰 모두 받기 완료</span></button>
+						</div>
+					</div>
+				</div>
+			</div>
+			<!-- //세일쿠폰다운팝업 -->
+			
+			<!-- EP제휴쿠폰다운팝업 -->
+			<div class="modal fade pd_pop epcoupon_pop" id="epCouponPop" tabindex="-1" role="dialog" aria-labelledby="modalScrollLabel" aria-hidden="true">
+				<div class="modal-dialog" role="document">
+					<div class="modal-content">
+						<div class="modal-header">
+							<h5 class="modal-title" id="modalScrollLabel">네이버 전용 할인쿠폰</h5>
+						</div>
+						<div class="modal-body">
+							<div class="pop_cont">
+								<div class="ep_coupon">
+									<div>
+										<p class="cp_title">
+											COUPON
+										</p>
+										<p class="cp_cont">
+											<!-- 할인금액 일때 -->
+											<span class="unit_won">
+												<em class="number">3,000</em><em class="unit">원</em>
+											</span>
+											<!-- //할인금액 일때 -->
+											<!-- 할인율 일때 -->
+											<span class="unit_percent">
+												최대<em class="number">30</em><em class="unit">%</em>
+											</span>
+											<!-- //할인율 일때 -->
+										</p>
+									</div>
+								</div>
+								<div class="info_txt">
+									<ul>
+										<li>일부 상품은 쿠폰 사용이 제한될 수 있습니다.</li>
+										<li>할인대상 및 금액은 상시 변경됩니다.</li>
+										<li>제휴 사이트와 정보연동 시간차이로 판매정보가 불일치할 수 있습니다.</li>
+										<li>본 쿠폰은 제휴 사이트를 통해 들어온 고객님만 발급 및 사용이 가능합니다.</li>
+									</ul>                        
+								</div>
+							</div>
+						</div>
+						<div class="modal-footer">
+							<button type="button" id="" class="btn btn_primary"><span>쿠폰 모두 받기</span><span>쿠폰 모두 받기 완료</span></button>
+						</div>
+					</div>
+				</div>
+			</div>
+			<!-- //EP제휴쿠폰다운팝업 -->
+			
+			<!-- 쇼핑혜택팝업 -->
+			<div class="modal pop_full fade pd_pop bnf_shopping_pop" id="bnfShoppingPop" tabindex="-1" role="dialog" aria-labelledby="exampleFullLabel" aria-hidden="true">
+				<div class="modal-dialog" role="document">
+					<div class="modal-content">
+						<div class="modal-header">
+							<h5 class="modal-title" id="exampleFullLabel">쇼핑혜택</h5>
+						</div>
+						<div class="modal-body">
+							<div class="pop_cont">
+								<div class="benefit_blk">
+									<h6>할인혜택</h6>
+									<div class="tbl type1">
+										<table>
+											<colgroup>
+												<col width="50%">
+												<col width="*">
+											</colgroup>
+											<tbody>
+												<tr>
+													<th>즉시 할인</th>
+													<td><p>50% 할인</p></td>
+												</tr>
+												<tr>
+													<th>쿠폰할인</th>
+													<td><p>최대 10% 할인</p></td>
+												</tr>
+											</tbody>
+										</table>
+									</div>
+								</div>
+								<div class="benefit_blk">
+									<h6>다다익선</h6>
+									<div class="tbl type1">
+										<table>
+											<colgroup>
+												<col width="50%">
+												<col width="*">
+											</colgroup>
+											<tbody>
+												<tr>
+													<th>9,999개 이상 구매 시</th>
+													<td><p>9,999,999원 할인</p></td>
+												</tr>
+												<tr>
+													<th>9,999개 이상 구매 시</th>
+													<td><p>20% 할인</p></td>
+												</tr>
+												<tr>
+													<th>99,999,999원 이상 구매 시</th>
+													<td><p>9,999,999원 할인</p></td>
+												</tr>
+												<tr>
+													<th>99,999,999원 이상 구매 시</th>
+													<td><p>20% 할인</p></td>
+												</tr>
+											</tbody>
+										</table>
+									</div>
+								</div>       
+								<div class="benefit_blk">
+									<h6>사은품</h6>
+									<div class="tbl type1">
+										<table>
+											<colgroup>
+												<col width="50%">
+												<col width="*">
+											</colgroup>
+											<tbody>
+												<tr>
+													<th>
+														99,999,999원 이상 구매 시
+														<p>미니언즈 우산 99개 증정</p>
+													</th>
+												</tr>
+												<tr>
+													<th>
+														99,999,999원 이상 구매 시
+														<p>미니언즈 우산 99개 증정 외 택1</p>
+													</th>
+												</tr>
+											</tbody>
+										</table>
+									</div>
+								</div>                     
+							</div>
+						</div>
+					</div>
+				</div>
+			</div>
+			<!-- //쇼핑혜택팝업 -->
+
+			<!-- 카드혜택팝업 -->
+			<div class="modal pop_full fade pd_pop bnf_card_pop" id="bnfCardPop" tabindex="-1" role="dialog" aria-labelledby="exampleFullLabel" aria-hidden="true">
+				<div class="modal-dialog" role="document">
+					<div class="modal-content">
+						<div class="modal-header">
+							<h5 class="modal-title" id="exampleFullLabel">카드혜택</h5>
+						</div>
+						<div class="modal-body">
+							<div class="pop_cont">
+								<div class="benefit_blk">
+									<h6>할인혜택</h6>
+									<div class="tbl type1">
+										<table>
+											<colgroup>
+												<col width="85">
+												<col width="*">
+											</colgroup>
+											<tbody>
+												<tr>
+													<th>
+														KB국민카드
+													</th>
+													<td>
+														<div class="info_card">
+															<p>5% 즉시할인</p>
+															<p>7만원 이상 구매 시<br> 최대 5만원 할인</p>
+															<a href="" target="_blank" class="link">자세히보기</a>
+														</div>
+													</td>
+												</tr>
+												<tr>
+													<th>
+														삼성카드
+													</th>
+													<td>
+														<div class="info_card">
+															<p>5% 즉시할인</p>
+															<p>7만원 이상 구매 시<br> 최대 5만원 할인</p>
+														</div>
+													</td>
+												</tr>
+												<tr>
+													<th>
+														제휴카드
+													</th>
+													<td>
+														<div class="info_card">
+															<p>YES24 MANIA 롯데카드</p>
+															<p>최대 12~24% 청구할인</p>
+													    	<p>1회 1만5천원이상 결제 시, 바로발급 가능</p>
+															<a href="" target="_blank" class="link">자세히보기</a>
+														</div>
+													</td>
+												</tr>
+											</tbody>
+										</table>
+									</div>
+								</div>
+								<div class="benefit_blk">
+									<h6>무이자 할부</h6>
+									<div class="tbl type1">
+										<table>
+											<colgroup>
+												<col width="85">
+												<col width="*">
+											</colgroup>
+											<tbody>
+												<tr>
+													<th>
+														KB국민카드
+													</th>
+													<td>
+														<div class="info_card">
+															<p>2~6개월 무이자</p>
+															<p>5만원 이상 구매 시</p>
+														</div>
+													</td>
+												</tr>
+												<tr>
+													<th>
+														삼성카드
+													</th>
+													<td>
+														<div class="info_card">
+															<p>2~6개월 무이자</p>
+															<p>5만원 이상 구매 시</p>
+														</div>
+													</td>
+												</tr>
+											</tbody>
+										</table>
+									</div>
+									<div class="benefit_blk">
+										<h6>부분 무이자 할부</h6>
+										<div class="tbl type1">
+											<table>
+												<colgroup>
+													<col width="85">
+													<col width="*">
+												</colgroup>
+												<tbody>
+													<tr>
+														<th>
+															삼성카드
+														</th>
+														<td>
+															<div class="info_card">
+																<p>10개월(1~4회차 고객부담)</p>
+																<p>12개월(1~5회차 고객부담)</p>
+															</div>
+														</td>
+													</tr>
+													<tr>
+														<th>
+															BC카드
+														</th>
+														<td>
+															<div class="info_card">
+																<p>7개월(1~2회차 고객부담)</p>
+																<p>8개월(1~2회차 고객부담)</p>
+																<p>ARS 사전신청 고객에 한함(1899-5772)</p>
+															</div>
+														</td>
+													</tr>
+												</tbody>
+											</table>
+										</div>
+									<div class="info_txt">
+										<ul>
+											<li>무이자할부는 행사기간 동안 실 결제금액 기준으로 가능</li>
+											<li>법인, 체크, 기프트 카드는 부분 무이자 할부 제외</li>
+										</ul>                   
+									</div>
+								</div>                    
+								</div>
+							</div>
+						</div>
+					</div>
+				</div>
+			</div>
+			<!-- //카드혜택팝업 -->
+
+			<!-- 재입고알림신청팝업 -->
+			<div class="modal pop_full fade pd_pop push_restock_pop" id="pushRestockPop" tabindex="-1" role="dialog" aria-labelledby="exampleFullLabel" aria-hidden="true">
+				<div class="modal-dialog" role="document">
+					<div class="modal-content">
+						<div class="modal-header">
+							<h5 class="modal-title" id="exampleFullLabel">재입고 알림 신청</h5>
+						</div>
+						<div class="modal-body">
+							<div class="pop_cont">
+								<div class="item_blk">
+									<div class="item_prod">
+										<div class="item_state">
+											<a href="#none" class="itemLink">
+												<div class="itemPic">
+													<img class="vLHTC pd_img" src="/images/pc/thumb/tmp_pdDetail1.jpg" alt="">
+												</div>
+												<p class="itemBrand">NBA</p>
+												<div class="itemName">남성 로고 자카드 방풍 패딩 스웨터 가디건 자카드 방풍 패딩 스웨터 가디건 자카드 방풍 패딩 스웨터 가디건</div>
+												<p class="itemPrice">
+													<span class="itemPrice_original">89,000</span>
+													80,100
+													<span class="itemPercent">10%</span>
+												</p>
+											</a>
+										</div>
+									</div>
+								</div>
+								<div class="select_blk">
+									<h6>사이즈 선택</h6>
+									<div class="option_box">
+										<div class="opt_size">
+											<div class="form_field2">
+												<div class="lap">
+													<div>
+														<label><input type="radio" name="rdi-optsize" value="" checked=""><span>90</span></label>
+													</div>
+													<div>
+														<label><input type="radio" name="rdi-optsize" value="" disabled=""><span>95</span></label>
+													</div>
+													<div>
+														<label><input type="radio" name="rdi-optsize" value=""><span>100</span></label>
+													</div>
+													<div>
+														<label><input type="radio" name="rdi-optsize" value=""><span>105</span></label>
+													</div>
+													<div>
+														<label><input type="radio" name="rdi-optsize" value=""><span>110</span></label>
+													</div>
+													<div>
+														<label><input type="radio" name="rdi-optsize" value=""><span>115</span></label>
+													</div>
+													<div>
+														<label><input type="radio" name="rdi-optsize" value=""><span>free</span></label>
+													</div>
+												</div>
+											</div>
+										</div>
+									</div>
+								</div>
+								<div class="select_blk">
+									<div class="opt_select">
+										<h6>옵션 선택</h6>
+										<div class="form_wrap">
+											<div class="form_field">
+												<select id="" class="form-control select">
+													<option value="hide">옵션1 선택</option>
+													<option value="" rel="icon-temperature">카키/95</option>
+													<option value="">카키/100</option>
+													<option value="">카키/105</option>
+													<option value="" disabled>카키/110</option>
+													<option value="">옐로우/95</option>
+													<option value="">옐로우/100</option>
+													<option value="">옐로우/105</option>
+													<option value="">옐로우/110</option>
+												</select> 
+											</div>
+											<div class="form_field">
+												<select id="" class="form-control select" disabled>
+													<option value="hide">옵션1 선택</option>
+													<option value="" rel="icon-temperature">카키/95</option>
+													<option value="">카키/100</option>
+													<option value="">카키/105</option>
+													<option value="" disabled>카키/110</option>
+													<option value="">옐로우/95</option>
+													<option value="">옐로우/100</option>
+													<option value="">옐로우/105</option>
+													<option value="">옐로우/110</option>
+												</select> 
+											</div>
+										</div>
+									</div>
+								</div>      
+							</div>
+						</div>
+						<div class="modal-footer">
+							<div class="btn_group_flex">
+								<div><button type="button" id="" class="btn btn_dark"><span>신청</span></button></div>
+							</div>
+						</div>
+					</div>
+				</div>
+			</div>
+			<!-- //재입고알림신청팝업 -->
+
+			<!-- 사이즈정보팝업 -->
+			<div class="modal pop_full fade pd_pop info_size_pop" id="infoSizePop" tabindex="-1" role="dialog" aria-labelledby="exampleFullLabel" aria-hidden="true">
+				<div class="modal-dialog" role="document">
+					<div class="modal-content">
+						<div class="modal-header">
+							<h5 class="modal-title" id="exampleFullLabel">사이즈 정보</h5>
+						</div>
+						<div class="modal-body">
+							<div class="pop_cont">
+								<div class="tab_nav">
+									<ul>
+										<li class=""><a href="javascript:void(0)">실측 사이즈</a></li>
+										<li class=""><a href="javascript:void(0)">표준 사이즈</a></li>
+										<li class="active"><a href="javascript:void(0)">측정 사이즈</a></li>
+									</ul>
+								</div>
+								<div class="tab_cont_wrap">
+									<div class="tab_cont" style="display: none;">
+										<!-- 실측 사이즈 -->
+										<div class="size_head">
+											<span class="tit_sub">TBJ</span>
+											<span class="tit_header">남성 테이퍼드 핏 겨울 기모면 스판 올 밴딩 팬츠</span>
+										</div>
+										<div class="size_cont">
+											<div class="size_tbl_box">
+												<p class="size_unit">단위 : cm</p>
+												<div class="tbl type2">
+													<table>
+														<colgroup>
+															<col width="20%">
+															<col width="20%">
+															<col width="20%">
+															<col width="20%">
+															<col width="20%">
+														</colgroup>
+														<thead>
+															<tr>
+																<th scope="col">&nbsp;</th>
+																<th scope="col">M</th>
+																<th scope="col">L</th>
+																<th scope="col">XL</th>
+																<th scope="col">XXL</th>
+															</tr>
+														</thead>
+														<tbody>
+															<tr>
+																<th scope="col">가슴둘레</th>
+																<td>95</td>
+																<td>100</td>
+																<td>105</td>
+																<td>110</td>
+															</tr>
+															<tr>
+																<th scope="col">어깨너비</th>
+																<td>95</td>
+																<td>100</td>
+																<td>105</td>
+																<td>110</td>
+															</tr>
+															<tr>
+																<th scope="col">팔길이</th>
+																<td>95</td>
+																<td>100</td>
+																<td>105</td>
+																<td>110</td>
+															</tr>
+															<tr>
+																<th scope="col">총길이</th>
+																<td>95</td>
+																<td>100</td>
+																<td>105</td>
+																<td>110</td>
+															</tr>
+														</tbody>
+													</table>
+												</div>
+											</div>
+										</div>
+										<!-- //실측 사이즈 -->
+									</div>
+									<div class="tab_cont" style="display: none;">
+										<!-- 표준 사이즈 카테고리 구분일때 -->
+										<div class="size_head">
+											<div class="category_open">상의</div>
+											<div class="category_box">
+												<div class="lap">
+													<div class="category_close">카테고리닫기</div>
+													<div class="category_list">
+														<!-- 표준 사이즈 > 카테고리 선택 -->
+														<div class="sub_tab_nav">
+															<ul>
+																<li class="active"><a href="javascript:void(0)">여성</a></li>
+																<li class=""><a href="javascript:void(0)">남성</a></li>
+																<li class=""><a href="javascript:void(0)">캐주얼</a></li>
+																<li class=""><a href="javascript:void(0)">유아동</a></li>
+																<li class=""><a href="javascript:void(0)">신발</a></li>
+																<li class=""><a href="javascript:void(0)">언더웨어</a></li>
+															</ul>
+														</div>
+														<!-- //표준 사이즈 > 카테고리 선택 -->
+													</div>
+												</div>
+											</div>
+										</div>
+										<div class="size_cont">
+											<div class="sub_tab_cont_wrap">
+												<!-- 표준 사이즈 > 카테고리 내용(여성) -->
+												<div class="sub_tab_cont" style="display: block;">
+													<div class="size_tbl_box">
+														<h6>여성 상의</h6>
+														<p class="size_unit">단위 : cm</p>
+														<div class="tbl type2">
+															<table>
+																<colgroup>
+																	<col width="20%">
+																	<col width="20%">
+																	<col width="20%">
+																	<col width="20%">
+																	<col width="20%">
+																</colgroup>
+																<thead>
+																	<tr>
+																		<th scope="col">&nbsp;</th>
+																		<th scope="col">XS/44/85</th>
+																		<th scope="col">S/55/90</th>
+																		<th scope="col">M/66/95</th>
+																		<th scope="col">L/77/100</th>
+																	</tr>
+																</thead>
+																<tbody>
+																	<tr>
+																		<th scope="col">가슴둘레</th>
+																		<td>95</td>
+																		<td>100</td>
+																		<td>105</td>
+																		<td>110</td>
+																	</tr>
+																	<tr>
+																		<th scope="col">허리둘레</th>
+																		<td>95</td>
+																		<td>100</td>
+																		<td>105</td>
+																		<td>110</td>
+																	</tr> 
+																	<tr>
+																		<th scope="col">신장</th>
+																		<td>95</td>
+																		<td>100</td>
+																		<td>105</td>
+																		<td>110</td>
+																	</tr>                                               
+																</tbody>
+															</table>
+														</div>
+													</div>
+													<div class="size_tbl_box">
+														<h6>여성 하의</h6>
+														<p class="size_unit">단위 : cm</p>
+														<div class="tbl type2">
+															<table>
+																<colgroup>
+																	<col width="20%">
+																	<col width="10%">
+																	<col width="10%">
+																	<col width="10%">
+																	<col width="10%">
+																	<col width="10%">
+																	<col width="10%">
+																	<col width="10%">
+																	<col width="10%">
+																</colgroup>
+																<thead>
+																	<tr>
+																		<th scope="col">&nbsp;</th>
+																		<th scope="col">27</th>
+																		<th scope="col">28</th>
+																		<th scope="col">29</th>
+																		<th scope="col">30</th>
+																		<th scope="col">32</th>
+																		<th scope="col">34</th>
+																		<th scope="col">36</th>
+																		<th scope="col">38</th>
+																	</tr>
+																</thead>
+																<tbody>
+																	<tr>
+																		<th scope="col">허리둘레</th>
+																		<td>69</td>
+																		<td>71</td>
+																		<td>74</td>
+																		<td>76</td>
+																		<td>81</td>
+																		<td>86</td>
+																		<td>91</td>
+																		<td>97</td>
+																	</tr>                                    
+																</tbody>
+															</table>
+														</div>
+													</div>
+												</div>    
+												<!-- //표준 사이즈 > 카테고리 내용(여성) --> 
+												<!-- 표준 사이즈 > 카테고리 내용(남성) -->
+												<div class="sub_tab_cont" style="display: none;">
+													<div class="size_tbl_box">
+														<h6>남성 상의</h6>
+														<p class="size_unit">단위 : cm</p>
+														<div class="tbl type2">
+															<table>
+																<colgroup>
+																	<col width="20%">
+																	<col width="20%">
+																	<col width="20%">
+																	<col width="20%">
+																	<col width="20%">
+																</colgroup>
+																<thead>
+																	<tr>
+																		<th scope="col">&nbsp;</th>
+																		<th scope="col">XS/44/85</th>
+																		<th scope="col">S/55/90</th>
+																		<th scope="col">M/66/95</th>
+																		<th scope="col">L/77/100</th>
+																	</tr>
+																</thead>
+																<tbody>
+																	<tr>
+																		<th scope="col">가슴둘레</th>
+																		<td>95</td>
+																		<td>100</td>
+																		<td>105</td>
+																		<td>110</td>
+																	</tr>
+																	<tr>
+																		<th scope="col">허리둘레</th>
+																		<td>95</td>
+																		<td>100</td>
+																		<td>105</td>
+																		<td>110</td>
+																	</tr> 
+																	<tr>
+																		<th scope="col">신장</th>
+																		<td>95</td>
+																		<td>100</td>
+																		<td>105</td>
+																		<td>110</td>
+																	</tr>                                               
+																</tbody>
+															</table>
+														</div>
+													</div>
+													<div class="size_tbl_box">
+														<h6>남성 하의</h6>
+														<p class="size_unit">단위 : cm</p>
+														<div class="tbl type2">
+															<table>
+																<colgroup>
+																	<col width="20%">
+																	<col width="10%">
+																	<col width="10%">
+																	<col width="10%">
+																	<col width="10%">
+																	<col width="10%">
+																	<col width="10%">
+																	<col width="10%">
+																	<col width="10%">
+																</colgroup>
+																<thead>
+																	<tr>
+																		<th scope="col">&nbsp;</th>
+																		<th scope="col">27</th>
+																		<th scope="col">28</th>
+																		<th scope="col">29</th>
+																		<th scope="col">30</th>
+																		<th scope="col">32</th>
+																		<th scope="col">34</th>
+																		<th scope="col">36</th>
+																		<th scope="col">38</th>
+																	</tr>
+																</thead>
+																<tbody>
+																	<tr>
+																		<th scope="col">허리둘레</th>
+																		<td>69</td>
+																		<td>71</td>
+																		<td>74</td>
+																		<td>76</td>
+																		<td>81</td>
+																		<td>86</td>
+																		<td>91</td>
+																		<td>97</td>
+																	</tr>                                    
+																</tbody>
+															</table>
+														</div>
+													</div>
+												</div>    
+												<!-- //표준 사이즈 > 카테고리 내용(남성) -->
+												<!-- 표준 사이즈 > 카테고리 내용(캐주얼) -->
+												<div class="sub_tab_cont" style="display: none;">
+													<div class="size_tbl_box">
+														<h6>캐주얼 상의</h6>
+														<p class="size_unit">단위 : cm</p>
+														<div class="tbl type2">
+															<table>
+																<colgroup>
+																	<col width="20%">
+																	<col width="20%">
+																	<col width="20%">
+																	<col width="20%">
+																	<col width="20%">
+																</colgroup>
+																<thead>
+																	<tr>
+																		<th scope="col">&nbsp;</th>
+																		<th scope="col">XS/44/85</th>
+																		<th scope="col">S/55/90</th>
+																		<th scope="col">M/66/95</th>
+																		<th scope="col">L/77/100</th>
+																	</tr>
+																</thead>
+																<tbody>
+																	<tr>
+																		<th scope="col">가슴둘레</th>
+																		<td>95</td>
+																		<td>100</td>
+																		<td>105</td>
+																		<td>110</td>
+																	</tr>
+																	<tr>
+																		<th scope="col">허리둘레</th>
+																		<td>95</td>
+																		<td>100</td>
+																		<td>105</td>
+																		<td>110</td>
+																	</tr> 
+																	<tr>
+																		<th scope="col">신장</th>
+																		<td>95</td>
+																		<td>100</td>
+																		<td>105</td>
+																		<td>110</td>
+																	</tr>                                               
+																</tbody>
+															</table>
+														</div>
+													</div>
+													<div class="size_tbl_box">
+														<h6>캐주얼 하의</h6>
+														<p class="size_unit">단위 : cm</p>
+														<div class="tbl type2">
+															<table>
+																<colgroup>
+																	<col width="20%">
+																	<col width="10%">
+																	<col width="10%">
+																	<col width="10%">
+																	<col width="10%">
+																	<col width="10%">
+																	<col width="10%">
+																	<col width="10%">
+																	<col width="10%">
+																</colgroup>
+																<thead>
+																	<tr>
+																		<th scope="col">&nbsp;</th>
+																		<th scope="col">27</th>
+																		<th scope="col">28</th>
+																		<th scope="col">29</th>
+																		<th scope="col">30</th>
+																		<th scope="col">32</th>
+																		<th scope="col">34</th>
+																		<th scope="col">36</th>
+																		<th scope="col">38</th>
+																	</tr>
+																</thead>
+																<tbody>
+																	<tr>
+																		<th scope="col">허리둘레</th>
+																		<td>69</td>
+																		<td>71</td>
+																		<td>74</td>
+																		<td>76</td>
+																		<td>81</td>
+																		<td>86</td>
+																		<td>91</td>
+																		<td>97</td>
+																	</tr>                                    
+																</tbody>
+															</table>
+														</div>
+													</div>
+												</div>    
+												<!-- //표준 사이즈 > 카테고리 내용(캐주얼) -->
+												<!-- 표준 사이즈 > 카테고리 내용(유아동) -->
+												<div class="sub_tab_cont" style="display: none;">
+													<div class="size_tbl_box">
+														<h6>유아동 상의</h6>
+														<p class="size_unit">단위 : cm</p>
+														<div class="tbl type2">
+															<table>
+																<colgroup>
+																	<col width="20%">
+																	<col width="20%">
+																	<col width="20%">
+																	<col width="20%">
+																	<col width="20%">
+																</colgroup>
+																<thead>
+																	<tr>
+																		<th scope="col">&nbsp;</th>
+																		<th scope="col">XS/44/85</th>
+																		<th scope="col">S/55/90</th>
+																		<th scope="col">M/66/95</th>
+																		<th scope="col">L/77/100</th>
+																	</tr>
+																</thead>
+																<tbody>
+																	<tr>
+																		<th scope="col">가슴둘레</th>
+																		<td>95</td>
+																		<td>100</td>
+																		<td>105</td>
+																		<td>110</td>
+																	</tr>
+																	<tr>
+																		<th scope="col">허리둘레</th>
+																		<td>95</td>
+																		<td>100</td>
+																		<td>105</td>
+																		<td>110</td>
+																	</tr> 
+																	<tr>
+																		<th scope="col">신장</th>
+																		<td>95</td>
+																		<td>100</td>
+																		<td>105</td>
+																		<td>110</td>
+																	</tr>                                               
+																</tbody>
+															</table>
+														</div>
+													</div>
+													<div class="size_tbl_box">
+														<h6>유아동 하의</h6>
+														<p class="size_unit">단위 : cm</p>
+														<div class="tbl type2">
+															<table>
+																<colgroup>
+																	<col width="20%">
+																	<col width="10%">
+																	<col width="10%">
+																	<col width="10%">
+																	<col width="10%">
+																	<col width="10%">
+																	<col width="10%">
+																	<col width="10%">
+																	<col width="10%">
+																</colgroup>
+																<thead>
+																	<tr>
+																		<th scope="col">&nbsp;</th>
+																		<th scope="col">27</th>
+																		<th scope="col">28</th>
+																		<th scope="col">29</th>
+																		<th scope="col">30</th>
+																		<th scope="col">32</th>
+																		<th scope="col">34</th>
+																		<th scope="col">36</th>
+																		<th scope="col">38</th>
+																	</tr>
+																</thead>
+																<tbody>
+																	<tr>
+																		<th scope="col">허리둘레</th>
+																		<td>69</td>
+																		<td>71</td>
+																		<td>74</td>
+																		<td>76</td>
+																		<td>81</td>
+																		<td>86</td>
+																		<td>91</td>
+																		<td>97</td>
+																	</tr>                                    
+																</tbody>
+															</table>
+														</div>
+													</div>
+												</div>    
+												<!-- //표준 사이즈 > 카테고리 내용(유아동) -->     
+												<!-- 표준 사이즈 > 카테고리 내용(신발) -->
+												<div class="sub_tab_cont" style="display: none;">
+													<div class="size_tbl_box">
+														<h6>신발 상의</h6>
+														<p class="size_unit">단위 : cm</p>
+														<div class="tbl type2">
+															<table>
+																<colgroup>
+																	<col width="20%">
+																	<col width="20%">
+																	<col width="20%">
+																	<col width="20%">
+																	<col width="20%">
+																</colgroup>
+																<thead>
+																	<tr>
+																		<th scope="col">&nbsp;</th>
+																		<th scope="col">XS/44/85</th>
+																		<th scope="col">S/55/90</th>
+																		<th scope="col">M/66/95</th>
+																		<th scope="col">L/77/100</th>
+																	</tr>
+																</thead>
+																<tbody>
+																	<tr>
+																		<th scope="col">가슴둘레</th>
+																		<td>95</td>
+																		<td>100</td>
+																		<td>105</td>
+																		<td>110</td>
+																	</tr>
+																	<tr>
+																		<th scope="col">허리둘레</th>
+																		<td>95</td>
+																		<td>100</td>
+																		<td>105</td>
+																		<td>110</td>
+																	</tr> 
+																	<tr>
+																		<th scope="col">신장</th>
+																		<td>95</td>
+																		<td>100</td>
+																		<td>105</td>
+																		<td>110</td>
+																	</tr>                                               
+																</tbody>
+															</table>
+														</div>
+													</div>
+													<div class="size_tbl_box">
+														<h6>신발 하의</h6>
+														<p class="size_unit">단위 : cm</p>
+														<div class="tbl type2">
+															<table>
+																<colgroup>
+																	<col width="20%">
+																	<col width="10%">
+																	<col width="10%">
+																	<col width="10%">
+																	<col width="10%">
+																	<col width="10%">
+																	<col width="10%">
+																	<col width="10%">
+																	<col width="10%">
+																</colgroup>
+																<thead>
+																	<tr>
+																		<th scope="col">&nbsp;</th>
+																		<th scope="col">27</th>
+																		<th scope="col">28</th>
+																		<th scope="col">29</th>
+																		<th scope="col">30</th>
+																		<th scope="col">32</th>
+																		<th scope="col">34</th>
+																		<th scope="col">36</th>
+																		<th scope="col">38</th>
+																	</tr>
+																</thead>
+																<tbody>
+																	<tr>
+																		<th scope="col">허리둘레</th>
+																		<td>69</td>
+																		<td>71</td>
+																		<td>74</td>
+																		<td>76</td>
+																		<td>81</td>
+																		<td>86</td>
+																		<td>91</td>
+																		<td>97</td>
+																	</tr>                                    
+																</tbody>
+															</table>
+														</div>
+													</div>
+												</div>    
+												<!-- //표준 사이즈 > 카테고리 내용(신발) -->      
+												<!-- 표준 사이즈 > 카테고리 내용(언더웨어) -->
+												<div class="sub_tab_cont" style="display: none;">
+													<div class="size_tbl_box">
+														<h6>언더웨어 상의</h6>
+														<p class="size_unit">단위 : cm</p>
+														<div class="tbl type2">
+															<table>
+																<colgroup>
+																	<col width="20%">
+																	<col width="20%">
+																	<col width="20%">
+																	<col width="20%">
+																	<col width="20%">
+																</colgroup>
+																<thead>
+																	<tr>
+																		<th scope="col">&nbsp;</th>
+																		<th scope="col">XS/44/85</th>
+																		<th scope="col">S/55/90</th>
+																		<th scope="col">M/66/95</th>
+																		<th scope="col">L/77/100</th>
+																	</tr>
+																</thead>
+																<tbody>
+																	<tr>
+																		<th scope="col">가슴둘레</th>
+																		<td>95</td>
+																		<td>100</td>
+																		<td>105</td>
+																		<td>110</td>
+																	</tr>
+																	<tr>
+																		<th scope="col">허리둘레</th>
+																		<td>95</td>
+																		<td>100</td>
+																		<td>105</td>
+																		<td>110</td>
+																	</tr> 
+																	<tr>
+																		<th scope="col">신장</th>
+																		<td>95</td>
+																		<td>100</td>
+																		<td>105</td>
+																		<td>110</td>
+																	</tr>                                               
+																</tbody>
+															</table>
+														</div>
+													</div>
+													<div class="size_tbl_box">
+														<h6>언더웨어 하의</h6>
+														<p class="size_unit">단위 : cm</p>
+														<div class="tbl type2">
+															<table>
+																<colgroup>
+																	<col width="20%">
+																	<col width="10%">
+																	<col width="10%">
+																	<col width="10%">
+																	<col width="10%">
+																	<col width="10%">
+																	<col width="10%">
+																	<col width="10%">
+																	<col width="10%">
+																</colgroup>
+																<thead>
+																	<tr>
+																		<th scope="col">&nbsp;</th>
+																		<th scope="col">27</th>
+																		<th scope="col">28</th>
+																		<th scope="col">29</th>
+																		<th scope="col">30</th>
+																		<th scope="col">32</th>
+																		<th scope="col">34</th>
+																		<th scope="col">36</th>
+																		<th scope="col">38</th>
+																	</tr>
+																</thead>
+																<tbody>
+																	<tr>
+																		<th scope="col">허리둘레</th>
+																		<td>69</td>
+																		<td>71</td>
+																		<td>74</td>
+																		<td>76</td>
+																		<td>81</td>
+																		<td>86</td>
+																		<td>91</td>
+																		<td>97</td>
+																	</tr>                                    
+																</tbody>
+															</table>
+														</div>
+													</div>
+												</div>    
+												<!-- //표준 사이즈 > 카테고리 내용(언더웨어) -->
+											</div>                                                               
+										</div>
+										<div class="size_footer">
+											<div class="info_txt">
+												<ul>
+													<li>본 사이즈 조견표는 표준 가이드로, 각 제품마다 다소간의 차이는 있을 수 있습니다.</li>
+													<li>보다 자세한 사이즈는 각 상품 별 상품설명을 참조해주시기 바랍니다.</li>
+												</ul>
+											</div>
+										</div>
+										<!-- //표준 사이즈 카테고리별 구분일때 -->
+										<!-- 표준 사이즈 브랜드별 구분일때 -->
+										<div class="size_head">
+											<span class="tit_header">
+												페르지노몬티 FERGINO MONTI
+											</span>
+										</div>
+										<div class="size_cont">
+											<div class="size_tbl_box">
+												<h6>남성 상의</h6>
+												<p class="size_unit">단위 : cm</p>
+												<div class="tbl type2">
+													<table>
+														<colgroup>
+															<col width="20%">
+															<col width="20%">
+															<col width="20%">
+															<col width="20%">
+															<col width="20%">
+														</colgroup>
+														<thead>
+															<tr>
+																<th scope="col">&nbsp;</th>
+																<th scope="col">XS/44/85</th>
+																<th scope="col">S/55/90</th>
+																<th scope="col">M/66/95</th>
+																<th scope="col">L/77/100</th>
+															</tr>
+														</thead>
+														<tbody>
+															<tr>
+																<th scope="col">가슴둘레</th>
+																<td>95</td>
+																<td>100</td>
+																<td>105</td>
+																<td>110</td>
+															</tr>
+															<tr>
+																<th scope="col">허리둘레</th>
+																<td>95</td>
+																<td>100</td>
+																<td>105</td>
+																<td>110</td>
+															</tr> 
+															<tr>
+																<th scope="col">신장</th>
+																<td>95</td>
+																<td>100</td>
+																<td>105</td>
+																<td>110</td>
+															</tr>                                               
+														</tbody>
+													</table>
+												</div>
+											</div>
+											<div class="size_tbl_box">
+												<h6>남성 하의</h6>
+												<p class="size_unit">단위 : cm</p>
+												<div class="tbl type2">
+													<table>
+														<colgroup>
+															<col width="20%">
+															<col width="10%">
+															<col width="10%">
+															<col width="10%">
+															<col width="10%">
+															<col width="10%">
+															<col width="10%">
+															<col width="10%">
+															<col width="10%">
+														</colgroup>
+														<thead>
+															<tr>
+																<th scope="col">&nbsp;</th>
+																<th scope="col">27</th>
+																<th scope="col">28</th>
+																<th scope="col">29</th>
+																<th scope="col">30</th>
+																<th scope="col">32</th>
+																<th scope="col">34</th>
+																<th scope="col">36</th>
+																<th scope="col">38</th>
+															</tr>
+														</thead>
+														<tbody>
+															<tr>
+																<th scope="col">허리둘레</th>
+																<td>69</td>
+																<td>71</td>
+																<td>74</td>
+																<td>76</td>
+																<td>81</td>
+																<td>86</td>
+																<td>91</td>
+																<td>97</td>
+															</tr>                                    
+														</tbody>
+													</table>
+												</div>
+											</div>                                                      
+										</div>
+										<div class="size_footer">
+											<div class="info_txt">
+												<ul>
+													<li>본 사이즈 조견표는 표준 가이드로, 각 제품마다 다소간의 차이는 있을 수 있습니다.</li>
+													<li>보다 자세한 사이즈는 각 상품 별 상품설명을 참조해주시기 바랍니다.</li>
+												</ul>
+											</div>
+										</div>
+										<!-- //표준 사이즈 브랜드 구분일때 -->                            
+									</div>   
+									<div class="tab_cont" style="display: block;">
+										<!-- 측정 사이즈 -->
+										<div class="size_head">
+											<div class="category_open">상의</div>
+											<div class="category_box">
+												<div class="lap">
+													<div class="category_close">카테고리닫기</div>
+													<div class="category_list">
+														<!-- 측정 사이즈 > 카테고리 선택 -->
+														<div class="sub_tab_nav">
+															<ul>
+																<li class="active"><a href="javascript:void(0)">상의</a></li>
+																<li><a href="javascript:void(0)">하의</a></li>
+																<li><a href="javascript:void(0)">가방</a></li>
+																<li><a href="javascript:void(0)">신발</a></li>
+																<li><a href="javascript:void(0)">언더웨어</a></li>
+															</ul>
+														</div>
+														<!-- //측정 사이즈 > 카테고리 선택 -->
+													</div>
+												</div>
+											</div>
+										</div>
+										<div class="size_cont">
+											<div class="sub_tab_cont_wrap">
+												<!-- 측정 사이즈 > 카테고리 내용(상의) -->
+												<div class="sub_tab_cont">
+													<span class="img_sizeinfo">
+														<img src="/images/pc/info_size_top.jpg" alt="상의 측정 사이즈">
+													</span>
+													<dl>
+														<div>
+															<dt>가슴둘레</dt>
+															<dd>양쪽 겨드랑이 밑선 단면을 잰 길이x2</dd>
+														</div>
+														<div>
+															<dt>어깨너비</dt>
+															<dd>좌측어깨에서 우측어깨끝 봉제선 단면을 잰 길이 (어깨봉제선이 없을경우 어깨길이와 팔길이는 측정 안함)</dd>
+														</div>
+														<div>
+															<dt>팔길이</dt>
+															<dd>어깨 봉제선부터 소매 끝까지 잰 길</dd>
+														</div>
+														<div>
+															<dt>총길이</dt>
+															<dd>카라부분(혹은 후드)를 제외 한 지점부터 밑단 끝까지 잰 길이 (라운드티셔츠의 경우 목라인을 포함 해 네크라인부터 밑단 끝까지의 길이를 측정)</dd>
+														</div>
+													</dl>
+												</div>    
+												<!-- //측정 사이즈 > 카테고리 내용(상의) -->
+												<!-- 측정 사이즈 > 카테고리 내용(하의) -->
+												<div class="sub_tab_cont">
+													<span class="img_sizeinfo">
+														<img src="/images/pc/info_size_pants.jpg" alt="하의 측정 사이즈">
+													</span>
+													<dl>
+														<div>
+															<dt>허리둘레</dt>
+															<dd>허리선을 일자로 맞추고 한쪽의 허리끝단부터 반대편 끝까지 단면을 잰 길이x2</dd>
+														</div>
+														<div>
+															<dt>밑위</dt>
+															<dd>허리부터 가랑이 끝점까지 잰 길이</dd>
+														</div>
+														<div>
+															<dt>엉덩이둘레</dt>
+															<dd>밑위 중간부분 단면을 잰 길이x2</dd>
+														</div>
+														<div>
+															<dt>허벅지둘레</dt>
+															<dd>가랑이 부분부터 바깥쪽 허벅지 끝나는 지점까지의 단면을 잰 길이x2</dd>
+														</div>
+														<div>
+															<dt>총길이</dt>
+															<dd>허리끝선부터 바지밑단 끝선 까지 잰 길이</dd>
+														</div>
+													</dl>
+												</div>    
+												<!-- //측정 사이즈 > 카테고리 내용(하의) -->      
+												<!-- 측정 사이즈 > 카테고리 내용(가방) -->
+												<div class="sub_tab_cont">
+													<span class="img_sizeinfo">
+														<img src="/images/pc/info_size_bag.jpg" alt="가방 측정 사이즈">
+													</span>
+													<dl>
+														<div>
+															<dt>가로</dt>
+															<dd>가장 넓은 부분의 수평 길이</dd>
+														</div>
+														<div>
+															<dt>세로</dt>
+															<dd>바닥부터 가방의 가로 중앙지점까지 수직 길이</dd>
+														</div>
+														<div>
+															<dt>끈길이</dt>
+															<dd>가방 끝의 전체 길이(길이 조절이 가능한 경우 최소~최대 길이 표기)</dd>
+														</div>
+														<div>
+															<dt>손잡이높이</dt>
+															<dd>가방의 가로 가운데 지점부터 손잡이를 세웠을 때의 가장 높은 부분까지의 높이</dd>
+														</div>
+														<div>
+															<dt>끈폭</dt>
+															<dd>가방 끈의 수평폭</dd>
+														</div>
+														<div>
+															<dt>폭</dt>
+															<dd>가방 옆 부분의 두께</dd>
+														</div>
+													</dl>
+												</div> 
+												<!-- //측정 사이즈 > 카테고리 내용(가방) -->
+												<!-- 측정 사이즈 > 카테고리 내용(신발) -->
+												<div class="sub_tab_cont">
+													<span class="img_sizeinfo">
+														<img src="/images/pc/info_size_shoe.jpg" alt="신발 측정 사이즈">
+													</span>
+													<dl>
+														<div>
+															<dt>굽높이</dt>
+															<dd>설명 필요</dd>
+														</div>
+														<div>
+															<dt>볼너비</dt>
+															<dd>설명 필요</dd>
+														</div>
+														<div>
+															<dt>총길이</dt>
+															<dd>설명 필요</dd>
+														</div>
+													</dl>
+													<!--<div class="info_txt">
+														<ul>
+															<li>
+																국내 브랜드는 브랜드, 스타일마다 사이즈가 다르게 전개될 수 있으니, 개별 상품 상세페이지에 기재된 상세 사이즈안내를 참조하세요.
+															</li>
+														</ul>
+													</div>-->
+												</div> 
+												<!-- //측정 사이즈 > 카테고리 내용(신발) --> 
+												<!-- 측정 사이즈 > 카테고리 내용(언더웨어) -->
+												<div class="sub_tab_cont">
+													<span class="img_sizeinfo">
+														<img src="/images/pc/info_size_underwear.jpg" alt="속옷 측정 사이즈">
+													</span>
+													<dl>
+														<div>
+															<dt>밑가슴둘레</dt>
+															<dd>유방의 바로 밑을 수평으로 잰 길이</dd>
+														</div>
+														<div>
+															<dt>컵</dt>
+															<dd>밑가슴둘레와 가슴둘레의 차이</dd>
+														</div>
+														<div>
+															<dt>가슴둘레</dt>
+															<dd>유방을중심으로 수평으로 잰길이</dd>
+														</div>
+													</dl>
+												</div> 
+												<!-- //측정 사이즈 > 카테고리 내용(언더웨어) -->                                                                                    
+											</div>                                                               
+										</div>                            
+										<!-- //측정 사이즈 -->
+									</div>                         
+								</div>
+							</div>
+						</div>
+					</div>
+				</div>
+			</div>
+			<!-- //사이즈정보팝업 -->
+
+			<!-- 제품문의리스트팝업 -->
+			<div class="modal pop_full fade pd_pop pd_qnalist_pop" id="pdQnaListPop" tabindex="-1" role="dialog" aria-labelledby="exampleFullLabel" aria-hidden="true">
+				<div class="modal-dialog" role="document">
+					<div class="modal-content">
+						<div class="modal-header">
+							<!-- 해당상품 -->
+							<div class="item_blk">
+								<div class="item_prod">
+									<div class="item_state">
+										<a href="#none" class="itemLink">
+											<div class="itemPic">
+												<img alt="" class="vLHTC pd_img" src="/images/pc/thumb/tmp_pdDetail1.jpg">
+											</div>
+											<p class="itemBrand">NBA</p>
+											<div class="itemName">남성 로고 자카드 방풍 패딩 스웨터 가디건 자카드 방풍 패딩 스웨터 가디건 자카드 방풍 패딩 스웨터 가디건</div>
+										</a>
+									</div>
+								</div>
+							</div>
+							<!-- //해당상품 -->
+						</div>
+						<div class="modal-body">
+							
+						</div>
+						<div class="modal-footer">
+							
+						</div>
+					</div>
+				</div>
+			</div>
+			<!-- //제품문의리스트팝업 -->
+
+			<!-- 제품문의작성팝업 -->
+			<div class="modal pop_full fade pd_pop pd_qnawrite_pop" id="pdQnaWritePop" tabindex="-1" role="dialog" aria-labelledby="exampleFullLabel" aria-hidden="true">
+				<div class="modal-dialog" role="document">
+					<div class="modal-content">
+						<div class="modal-header">
+							<h5 class="modal-title" id="exampleFullLabel">상품 문의하기</h5>
+						</div>
+						<div class="modal-body">
+							<div class="pop_cont">
+								<div class="info_txt">
+									<ul>
+										<li>배송, 주문/결제, 취소/반품/교환/환불, 회원, 쿠폰/포인트, 이벤트 등의 자세한 문의사항은 고객센터 &gt; 1:1문의를 이용하여 주시기 바랍니다.</li>
+										<li>상품문의에 부합하지 않는 광고, 이유없는 비방, 욕설 및 오해의 소지가 있는 문의건에 대해서는 사전 통보 없이 삭제 될 수 있습니다.</li>
+										<li>답변은 마이페이지 &gt; 상품 문의에서 확인 하실 수 있습니다.</li>
+									</ul>
+								</div>
+								<div class="form_field">
+									<div class="input_box">
+										<div class="lap">
+											<textarea class="doc_itemqna" name="" id="" cols="30" rows="10" placeholder="문의내용 입력(500자 이내)" style="resize: none;"></textarea>
+											<p class="txt_cnt">
+												<span id="itemqna_cnt" class="itemqna_cnt"><em class="c_primary">0</em>/500자</span>
+											</p>   
+										</div>           
+										<div class="secret_box">
+											<input id="wr_secret" type="checkbox"><label for="wr_secret"><span>비밀글설정</span></label>
+										</div>
+									</div> 
+								</div>
+								<div class="push_box">
+									<dl>
+										<dt>알림톡 수신 여부</dt>
+										<dd>
+											<div class="form_field">
+												<div>
+													<input type="radio" name="rdi-push" id="rdi-push1" value="" checked="">
+													<label for="rdi-push1"><span>수신</span></label>
+												</div>
+												<div>
+													<input type="radio" name="rdi-push" id="rdi-push2" value="">
+													<label for="rdi-push2"><span>미수신</span></label>
+												</div>
+											</div>
+										</dd>
+									</dl>
+								</div>
+							</div>	
+						</div>	
+						<div class="modal-footer">
+							<div class="btn_group_flex">
+								<div><button type="button" class="btn btn_dark"><span>등록</span></button></div>
+							</div>
+						</div>
+					</div>
+				</div>
+			</div>
+			<!-- //제품문의작성팝업 -->
+
+			<!-- 배송교환반품팝업 -->
+			<div class="modal pop_full fade pd_pop pd_delivery_pop" id="pdDeliveryPop" tabindex="-1" role="dialog" aria-labelledby="exampleFullLabel" aria-hidden="true">
+				<div class="modal-dialog" role="document">
+					<div class="modal-content">
+						<div class="modal-header">
+							<!-- 해당상품 -->
+							<div class="item_blk">
+								<div class="item_prod">
+									<div class="item_state">
+										<a href="#none" class="itemLink">
+											<div class="itemPic">
+												<img alt="" class="vLHTC pd_img" src="/images/pc/thumb/tmp_pdDetail1.jpg">
+											</div>
+											<p class="itemBrand">NBA</p>
+											<div class="itemName">유니 삼단블록 플리스 집업</div>
+										</a>
+									</div>
+								</div>
+							</div>
+							<!-- //해당상품 -->
+						</div>
+						<div class="modal-body">
+
+						</div>
+					</div>
+				</div>
+			</div>
+			<!-- //배송교환반품팝업 -->
+
+			<!-- 제품리뷰팝업 -->
+			<div class="modal pop_full fade pd_pop pd_review_pop" id="pdReviewPop" tabindex="-1" role="dialog" aria-labelledby="exampleFullLabel" aria-hidden="true">
+				<div class="modal-dialog" role="document">
+					<div class="modal-content">
+						<div class="modal-header">
+							<!-- 해당상품 -->
+							<div class="item_blk">
+								<div class="item_prod">
+									<div class="item_state">
+										<a href="#none" class="itemLink">
+											<div class="itemPic">
+												<img alt="" class="vLHTC pd_img" src="/images/mo/thumb/tmp_pdDetail1.jpg">
+											</div>
+											<p class="itemBrand">NBA</p>
+											<div class="itemName">유니 삼단블록 플리스 집업</div>
+										</a>
+									</div>
+								</div>
+							</div>
+							<!-- //해당상품 -->
+						</div>
+						<div class="modal-body">
+							<div class="pop_cont">
+							</div>
+						</div>
+					</div>
+				</div>
+			</div>
+			<!-- //제품리뷰팝업 -->
+
+			<!-- 베스트리뷰팝업 -->
+			<div class="modal pop_full fade pd_pop pd_bestreviewdetail_pop" id="pdBestReviewPop" tabindex="-1" role="dialog" aria-labelledby="exampleFullLabel" aria-hidden="true">
+				<div class="modal-dialog" role="document">
+					<div class="modal-content">
+						<div class="modal-header">
+							<h5 class="modal-title" id="exampleFullLabel">베스트 리뷰</h5>
+						</div>
+						<div class="modal-body">
+							<div class="pop_cont">
+								<!-- 리뷰사진영역 -->
+									<div class="area_slider">
+										<div class="swiper-container thumb_list">
+											<div class="swiper-wrapper">
+												<div class="swiper-slide"><div class="thumb nodata"><img src="/images/mo/thumb/tmp_pdDetail1.jpg" alt=""></div></div><!-- 이미지 없으면 calss .nodata  -->
+												<div class="swiper-slide"><div class="thumb"><img src="/images/mo/thumb/tmp_pdDetail1.jpg" alt=""></div></div>
+												<div class="swiper-slide"><div class="thumb"><img src="/images/mo/thumb/tmp_pdDetail1.jpg" alt=""></div></div>
+												<div class="swiper-slide"><div class="thumb"><img src="/images/mo/thumb/tmp_pdDetail1.jpg" alt=""></div></div>
+												<div class="swiper-slide"><div class="thumb"><img src="/images/mo/thumb/tmp_pdDetail1.jpg" alt=""></div></div>
+												<div class="swiper-slide"><div class="thumb"><img src="/images/mo/thumb/tmp_pdDetail1.jpg" alt=""></div></div>
+											</div>
+											<!-- Add Pagination -->
+											<div class="swiper-pagination"></div>
+										</div>
+									</div>
+								<!-- //리뷰사진영역 -->
+								<!-- 리뷰내용 -->
+								<div class="pd_review best">
+									<div class="area_rv_all">
+										<div class="btn_review_open">리뷰오픈</div>
+										<div class="review_list">
+											<ul>
+												<li>
+													<div class="review">
+														<div class="info_box">
+															<div class="star_score">
+																<span class="star">
+																	<em class="progbar" style="width:70%;"></em> <!-- 평점 style로 표기 -->
+																</span>
+															</div>
+															<div class="writer">
+																<span class="wr_id">ab2****</span>
+																<span class="wr_date">2020.07.15</span>
+															</div>
+														</div>
+														<div class="response_box">
+															<div>
+																<dl>
+																	<div>
+																		<dt>구매옵션</dt>
+																		<dd>베이지 / 100</dd>
+																	</div>
+																	<div>
+																		<dt>키/몸무게</dt>
+																		<dd>178cm/71kg</dd>
+																	</div>
+																</dl>
+															</div>
+														</div>
+														<div class="txt_review_box">
+															<p>
+																옷이 부들부들 촉감이 너무 좋습니다~ 보는 것 보다 실제 입으니깐 더 멋스러운 것 같아요! 차분한 그레이 라서 지금 가을가을한 계절에 잘 어울리는 같아요. 옷이 부들부들 촉감이 너무 좋습니다~ 보는 것 보다 실제 입으니깐 더 멋스러운 것 같아요! 차분한 그레이 라서 지금 가을가을한 계절에 잘 어울리는 같아요.
+															</p>
+														</div>
+														<div class="response_box2">
+															<div>
+																<dl>
+																	<div>
+																		<dt>사이즈</dt>
+																		<dd>작음</dd>
+																	</div>
+																	<div>
+																		<dt>컬러</dt>
+																		<dd>밝음</dd>
+																	</div>
+																	<div>
+																		<dt>핏</dt>
+																		<dd>레귤러</dd>
+																	</div>
+																	<div>
+																		<dt>두께감</dt>
+																		<dd>적당함</dd>
+																	</div>
+																</dl>
+															</div>
+														</div>
+														<div class="reply_box">
+															<div class="reply">
+																<div class="reply_writer">
+																	<span class="wr_name">관리자</span>
+																	<span class="wr_date">2020.07.15</span>
+																</div>
+																<div class="reply_txt">
+																	<p>
+																		안녕하세요, 스타일24 관리자입니다.<br>
+																		최대한 검수작업을 하고 있으나, 상품 출고량이 많은 경우 간혹 검수가 누락되는 경우가 있습니다.<br>
+																		만약, 받아보시고 문제가 있을 경우 텍 제거하지마시고 고객센터로 접수 해주시면 처리 도와드리겠습니다.<br>
+																		구매해주셔서 감사합니다.                                                 
+																	</p>
+																</div>
+															</div>
+														</div>
+													</div>
+												</li>                               
+											</ul>
+										</div>
+									</div>
+								</div>
+								<!-- //리뷰내용 -->
+							</div>
+						</div>
+					</div>
+				</div>
+			</div>
+			<!-- //베스트리뷰팝업 -->
+
+			<!-- 포토/영상리뷰팝업(detail) -->
+			<div class="modal pop_full fade pd_pop pd_photoreviewdetail_pop" id="pdPhotoReviewDetailPop" tabindex="-1" role="dialog" aria-labelledby="exampleFullLabel" aria-hidden="true">
+				<div class="modal-dialog" role="document">
+					<div class="modal-content">
+						<div class="modal-header">
+							<h5 class="modal-title" id="exampleFullLabel">
+								<button id="btn_more_photoreview"></button>
+								포토/영상리뷰
+							</h5>
+						</div>
+						<div class="modal-body">
+							<div class="pop_cont">
+								<!-- 리뷰사진영역 -->
+									<div class="area_slider">
+										<div class="swiper-container thumb_list">
+											<div class="swiper-wrapper">
+												<div class="swiper-slide">
+													<div class="thumb mov">
+														<video poster="http://cdn.011st.com/11dims/resize/1999x1999/quality/75/11src/review/10201202/3121412332/2e66698576d64c5c9977a6fe6606008d.jpg" muted="muted" preload="metadata" controls="controls">
+															<source src="http://snsvideo.11st.co.kr/movie/item/www/675/67518524_06_1_C1.mp4" type="video/mp4">
+														</video>
+													</div>
+												</div>
+												<div class="swiper-slide"><div class="thumb"><img src="/images/mo/thumb/tmp_pdDetail1.jpg" alt=""></div></div>
+												<div class="swiper-slide"><div class="thumb"><img src="/images/mo/thumb/tmp_pdDetail1.jpg" alt=""></div></div>
+												<div class="swiper-slide"><div class="thumb"><img src="/images/mo/thumb/tmp_pdDetail1.jpg" alt=""></div></div>
+												<div class="swiper-slide"><div class="thumb"><img src="/images/mo/thumb/tmp_pdDetail1.jpg" alt=""></div></div>
+												<div class="swiper-slide"><div class="thumb"><img src="/images/mo/thumb/tmp_pdDetail1.jpg" alt=""></div></div>
+											</div>
+											<!-- Add Pagination -->
+											<div class="swiper-pagination"></div>
+										</div>
+									</div>
+								<!-- //리뷰사진영역 -->
+								<!-- 리뷰내용 -->
+								<div class="pd_review photo">
+									<div class="area_rv_all">
+										<div class="btn_review_open">리뷰오픈</div>
+										<div class="review_list">
+											<ul>
+												<li>
+													<div class="review">
+														<div class="info_box">
+															<div class="star_score">
+																<span class="star">
+																	<em class="progbar" style="width:70%;"></em> <!-- 평점 style로 표기 -->
+																</span>
+															</div>
+															<div class="writer">
+																<span class="wr_id">ab2****</span>
+																<span class="wr_date">2020.07.15</span>
+															</div>
+														</div>
+														<div class="response_box">
+															<div>
+																<dl>
+																	<div>
+																		<dt>구매옵션</dt>
+																		<dd>베이지 / 100</dd>
+																	</div>
+																	<div>
+																		<dt>키/몸무게</dt>
+																		<dd>178cm/71kg</dd>
+																	</div>
+																</dl>
+															</div>
+														</div>
+														<div class="txt_review_box">
+															<p>
+																옷이 부들부들 촉감이 너무 좋습니다~ 보는 것 보다 실제 입으니깐 더 멋스러운 것 같아요! 차분한 그레이 라서 지금 가을가을한 계절에 잘 어울리는 같아요. 옷이 부들부들 촉감이 너무 좋습니다~ 보는 것 보다 실제 입으니깐 더 멋스러운 것 같아요! 차분한 그레이 라서 지금 가을가을한 계절에 잘 어울리는 같아요.
+															</p>
+														</div>
+														<div class="response_box2">
+															<div>
+																<dl>
+																	<div>
+																		<dt>사이즈</dt>
+																		<dd>작음</dd>
+																	</div>
+																	<div>
+																		<dt>컬러</dt>
+																		<dd>밝음</dd>
+																	</div>
+																	<div>
+																		<dt>핏</dt>
+																		<dd>레귤러</dd>
+																	</div>
+																	<div>
+																		<dt>두께감</dt>
+																		<dd>적당함</dd>
+																	</div>
+																</dl>
+															</div>
+														</div>
+														<div class="reply_box">
+															<div class="reply">
+																<div class="reply_writer">
+																	<span class="wr_name">관리자</span>
+																	<span class="wr_date">2020.07.15</span>
+																</div>
+																<div class="reply_txt">
+																	<p>
+																		안녕하세요, 스타일24 관리자입니다.<br>
+																		최대한 검수작업을 하고 있으나, 상품 출고량이 많은 경우 간혹 검수가 누락되는 경우가 있습니다.<br>
+																		만약, 받아보시고 문제가 있을 경우 텍 제거하지마시고 고객센터로 접수 해주시면 처리 도와드리겠습니다.<br>
+																		구매해주셔서 감사합니다.                                                 
+																	</p>
+																</div>
+															</div>
+														</div>
+													</div>
+												</li>                               
+											</ul>
+										</div>
+									</div>
+								</div>
+								<!-- //리뷰내용 -->
+							</div>
+						</div>
+					</div>
+				</div>
+			</div>
+			<!-- //포토/영상리뷰팝업(detail) -->
+
+			<!-- 포토/영상리뷰팝업(list) -->
+			<div class="modal pop_full fade pd_pop pd_photoreviewlist_pop" id="pdPhotoReviewListPop" tabindex="-1" role="dialog" aria-labelledby="exampleFullLabel" aria-hidden="true">
+				<div class="modal-dialog" role="document">
+					<div class="modal-content">
+						<div class="modal-header">
+							<h5 class="modal-title" id="exampleFullLabel">포토/영상리뷰</h5>
+						</div>
+						<div class="modal-body">
+							<div class="pop_cont">
+								<div class="photo_list">
+									<ul>
+										<li>
+											<a href="">
+												<div class="pic">
+													<span class="thumb mov" style="background-image:url('/images/pc/thumb/tmp_pdLookbook3.jpg');"></span><!-- 동영상의 썸네일일 경우 mov 클래스 추가 -->
+												</div>
+											</a>
+										</li>
+										<li>
+											<a href="">
+												<div class="pic">
+													<span class="thumb mov" style="background-image:url('/images/pc/thumb/tmp_pdLookbook2.jpg');"></span><!-- 동영상의 썸네일일 경우 mov 클래스 추가 -->
+												</div>
+											</a>
+										</li>
+										<li>
+											<a href="">
+												<div class="pic">
+													<span class="thumb" style="background-image:url('/images/pc/thumb/tmp_pdDetail4.jpg');"></span>
+												</div>
+											</a>
+										</li>
+										<li>
+											<a href="">
+												<div class="pic">
+													<span class="thumb" style="background-image:url('/images/pc/thumb/tmp_pdDetail4.jpg');"></span>
+												</div>
+											</a>
+										</li>
+										<li>
+											<a href="">
+												<div class="pic">
+													<span class="thumb" style="background-image:url('/images/pc/thumb/tmp_pdDetail4.jpg');"></span>
+												</div>
+											</a>
+										</li>
+										<li>
+											<a href="">
+												<div class="pic">
+													<span class="thumb" style="background-image:url('/images/pc/thumb/tmp_pdDetail4.jpg');"></span>
+												</div>
+											</a>
+										</li>
+										<li>
+											<a href="">
+												<div class="pic">
+													<span class="thumb" style="background-image:url('/images/pc/thumb/tmp_pdDetail4.jpg');"></span>
+												</div>
+											</a>
+										</li>
+										<li>
+											<a href="">
+												<div class="pic">
+													<span class="thumb" style="background-image:url('/images/pc/thumb/tmp_pdDetail4.jpg');"></span>
+												</div>
+											</a>
+										</li>
+										<li>
+											<a href="">
+												<div class="pic">
+													<span class="thumb" style="background-image:url('/images/pc/thumb/tmp_pdDetail4.jpg');"></span>
+												</div>
+											</a>
+										</li>
+										<li>
+											<a href="">
+												<div class="pic">
+													<span class="thumb" style="background-image:url('/images/pc/thumb/tmp_pdDetail4.jpg');"></span>
+												</div>
+											</a>
+										</li>
+										<li>
+											<a href="">
+												<div class="pic">
+													<span class="thumb mov" style="background-image:url('/images/pc/thumb/tmp_pdLookbook3.jpg');"></span><!-- 동영상의 썸네일일 경우 mov 클래스 추가 -->
+												</div>
+											</a>
+										</li>
+										<li>
+											<a href="">
+												<div class="pic">
+													<span class="thumb mov" style="background-image:url('/images/pc/thumb/tmp_pdLookbook2.jpg');"></span><!-- 동영상의 썸네일일 경우 mov 클래스 추가 -->
+												</div>
+											</a>
+										</li>
+										<li>
+											<a href="">
+												<div class="pic">
+													<span class="thumb" style="background-image:url('/images/pc/thumb/tmp_pdDetail4.jpg');"></span>
+												</div>
+											</a>
+										</li>
+										<li>
+											<a href="">
+												<div class="pic">
+													<span class="thumb" style="background-image:url('/images/pc/thumb/tmp_pdDetail4.jpg');"></span>
+												</div>
+											</a>
+										</li>
+										<li>
+											<a href="">
+												<div class="pic">
+													<span class="thumb mov" style="background-image:url('/images/pc/thumb/tmp_pdLookbook3.jpg');"></span><!-- 동영상의 썸네일일 경우 mov 클래스 추가 -->
+												</div>
+											</a>
+										</li>
+										<li>
+											<a href="">
+												<div class="pic">
+													<span class="thumb mov" style="background-image:url('/images/pc/thumb/tmp_pdLookbook2.jpg');"></span><!-- 동영상의 썸네일일 경우 mov 클래스 추가 -->
+												</div>
+											</a>
+										</li>
+										<li>
+											<a href="">
+												<div class="pic">
+													<span class="thumb" style="background-image:url('/images/pc/thumb/tmp_pdDetail4.jpg');"></span>
+												</div>
+											</a>
+										</li>
+										<li>
+											<a href="">
+												<div class="pic">
+													<span class="thumb" style="background-image:url('/images/pc/thumb/tmp_pdDetail4.jpg');"></span>
+												</div>
+											</a>
+										</li>
+									</ul>
+								</div>
+								<div class="review_last">
+									마지막 게시글입니다.
+								</div>
+							</div>
+						</div>
+					</div>
+				</div>
+			</div>
+			<!-- //포토/영상리뷰팝업(list) -->
+
+			
+		</div>
+		<!-- 팝업영역 -->
+
+	</section>
+	<!-- ★ 컨텐츠 종료 -->	
+
+	<!-- 바닥메뉴 -->	
+	<div class="product_floormenu"><!--  ☞☞ 제품이 품절되면 soldout클래스 추가 -->
+		<div class="share_like">
+			<button class="share">공유하기</button>
+			<button class="like">위시리스트</button>
+		</div>
+		<div class="prd_buy">
+			<button class="buying btPop_auto">구매하기</button>
+			<button class="cantbuying">SOLD OUT</button>
+		</div>
+	</div>
+	<!-- //바닥메뉴 -->
+</main>
+
+	
+<script th:inline="javascript">
+/*<![CDATA[*/
+	
+	var cateNm = "";
+	// 다다익선 상품
+	var fnGoodsTmtbSearch = function(params) {
+		gagajf.ajaxSubmit("/goods/detail/tmtb/frame", "html", "goodsTmtbArea", params);
+	}
+	
+	// 함께본 상품
+	var fnGoodsTogetherSearch = function(params) {
+		gagajf.ajaxSubmit("/goods/detail/together/frame", "html", "goodsTogetherbArea", params);
+	}
+	
+	// 추천 상품
+	var fnGoodsRecommendSearch = function(params) {
+		gagajf.ajaxSubmit("/goods/detail/recommend/frame", "html", "goodsRecommendbArea", params);
+	}
+	
+	// 비슷한 상품
+	var fnGoodsLikeSearch = function(params) {
+		gagajf.ajaxSubmit("/goods/detail/like/frame", "html", "goodsLikebArea", params);
+	}
+	
+
+	$(document).ready( function() {
+		
+		var params = new Object();
+		params.goodsCd = [[${params.goodsCd}]];
+		params.viewDt = [[${params.viewDt}]];
+		params.preview = [[${params.preview}]];
+		params.adminYn = [[${params.adminYn}]];
+		params.goodsType = [[${params.goodsType}]];
+		params.supplyCompCd = [[${params.supplyCompCd}]];
+		params.brandGroupNm = [[${goodsInfo.brandGroupNm}]];
+		
+
+		// 다다익선 상품(ajax html)
+/* 		params.goodsOtherGb = "tmtb";
+		params.ithrCd = "tmtb";
+		params.contentsLoc = "tmtb";
+		fnGoodsTmtbSearch(params);
+		
+		// 함께본 상품(ajax html)
+		params.goodsOtherGb = "together";
+		params.ithrCd = "tmtb";
+		params.contentsLoc = "tmtb";
+		fnGoodsTogetherSearch(params);
+		
+		// 추천 상품(ajax html)
+		params.goodsOtherGb = "recommend";
+		params.ithrCd = "tmtb";
+		params.contentsLoc = "tmtb";
+		fnGoodsRecommendSearch(params);
+		
+		// 비슷한 상품(ajax html)
+		params.goodsOtherGb = "like";
+		params.ithrCd = "tmtb";
+		params.contentsLoc = "tmtb";
+		fnGoodsLikeSearch(params);
+ */	
+		
+		// 상품 대표설명 > 좌측 상품썸네일 navi, 우측 상품정보 고정 
+		$(window).scroll(function(){
+			// selecter
+			$(function(){
+				var item_opt01 = new sCombo('.pd .pop_option_select .item_opt1');
+				var item_opt02 = new sCombo('.pd .pop_option_select .item_opt2');
+				var opt_select = new sCombo('.pd .op1 .opt_select .select_custom');
+			});
+
+			/* 상품옵션변경 팝업 > 수량조절 */
+            $(document).on('click','.number_count .minus',function(e){
+                var $input = $(this).parent().find('input');
+				var count = parseInt($input.val()) - 1;
+				count = count < 1 ? 1 : count;
+				$input.val(count);
+				$input.change();
+				return false;
+            }).on('click','.number_count .plus',function(e){
+                var $input = $(this).parent().find('input');
+				$input.val(parseInt($input.val()) + 1);
+				$input.change();
+				return false;
+            });
+
+            //상품상세정보 더보기   
+            $(document).on('click','.pd_descrp .btn_more_box button',function(e){
+                $('.pd_descrp .cont_body').toggleClass('on'); 
+                $(this).toggleClass('active');
+                $(this).parent('.btn_more_box').toggleClass('covered');
+                var descrpToggle = $(this).find('span');
+                $(descrpToggle).text($(descrpToggle).text() == '상세정보 더보기' ? '상세정보 접기' : '상세정보 더보기');
+                return false;
+            }); 
+
+            //관심상품 등록
+            $(document).on('click','.pd .itemLike',function(e){
+                $(this).toggleClass('active');
+                return false;
+            });    
+			
+			//슬라이드 - 베스트리뷰
+			var riviewSwiper = new Swiper('.riview_box .area_slider .swiper-container', {
+				observer: true,
+				observeParents: true,
+				slidesPerView: 1,
+				spaceBetween: 8,
+				loop: true,
+				pagination: {
+					el: '.swiper-pagination',
+					type: 'fraction',
+				},
+			});
+			
+			//슬라이드 - 제품사진
+			var thumbswiper = new Swiper('.pd .thumb_box .area_slider .swiper-container', {
+				slidesPerView:1,
+				pagination: {
+					el: '.swiper-pagination',
+					type: 'fraction',
+				},
+			});
+            //슬라이드 - 함께하면 할인되는 다다익선 상품
+            var togetherItemSwiper = new Swiper('.pd .pd_together .area_slider .swiper-container', {
+                slidesPerView: 3,
+                spaceBetween: 8,
+            });  
+
+            //슬라이드 - 이 상품과 함께 본 상품 
+            var otherItemSwiper = new Swiper('.pd .pd_clickother .area_slider .swiper-container', {
+                slidesPerView: 2,
+                spaceBetween: 8,
+            });            
+
+            //슬라이드 - STYLE24의 스타일링 추천
+			var rcmdPicimgSwiper = new Swiper('.pd .pd_recommend .area_slider.pic_img .swiper-container', {
+				slidesPerView: 1,
+				spaceBetween: 0,
+				pagination: {
+					el: '.swiper-pagination',
+					type: 'fraction',
+				},
+			});
+			var rcmdPiclistSwiper = new Swiper('.pd .pd_recommend .area_slider.pic_list .swiper-container', {
+				observer: true,
+				observeParents: true,
+				slidesPerView: 3,
+				spaceBetween: 8,
+			});
+
+			$(".pic_list > div").hide();
+			$(".pic_list > div").eq(0).fadeIn();
+			rcmdPicimgSwiper.on('slideChange', function () {
+				var pic_index=this.activeIndex;
+				$(".pic_list > div").hide();
+				$(".pic_list > div").eq(pic_index).fadeIn();
+			});
+			
+			//슬라이드 - 동일브랜드 상품 추천
+            var rcmdItemSwiper = new Swiper('.pd .pd_samebrand .area_slider .swiper-container', {
+                slidesPerView: 3,
+                spaceBetween: 8,
+            }); 
+
+            //슬라이드 - 이 상품과 비슷한 상품 
+            var relateItemSwiper = new Swiper('.pd .pd_relate .area_slider .swiper-container', {
+                slidesPerView: 3,
+                spaceBetween: 8,
+            });     
+			
+			//슬라이드 - 베스트리뷰팝업 
+            var bestreviewdetailSwiper = new Swiper('.pd_bestreviewdetail_pop .area_slider .swiper-container', {
+				observer: true,
+				observeParents: true,
+                slidesPerView: 1,
+                pagination: {
+					el: '.swiper-pagination',
+					type: 'fraction',
+				},
+            });
+			
+			//슬라이드 - 포토,영상리뷰팝업 
+            var photoreviewdetailSwiper = new Swiper('.pd_photoreviewdetail_pop .area_slider .swiper-container', {
+				observer: true,
+				observeParents: true,
+                slidesPerView: 1,
+                pagination: {
+					el: '.swiper-pagination',
+					type: 'fraction',
+				},
+            });
+            
+			
+			//팝업 - 쿠폰받기
+			$("#btn_saleCoupon_pop").click(function() {
+				$("#saleCouponPop").modal("show"); //할인쿠폰받기
+				//$("#epCouponPop").modal("show"); //ep채널 쿠폰받기
+			});	
+
+			//팝업 - 쇼핑혜택
+			$("#btn_bnfShopping_pop").click(function() {
+			    $("#bnfShoppingPop").modal("show");
+				return false;
+			});
+
+			//팝업 - 카드혜택
+			$("#btn_bnfCard_pop").click(function() {
+			    $("#bnfCardPop").modal("show");
+				return false;
+			});	        
+
+			//팝업 - 사이즈정보
+			$("#btn_pdSizeInfo_pop").click(function() {
+				$("#infoSizePop").modal("show");
+			});	
+
+            //탭 - 사이즈정보 > 탭
+            $(document).on('click','#infoSizePop .tab_nav ul li',function(e){
+                $(this).addClass('active').siblings().removeClass('active');
+                $('#infoSizePop .tab_cont_wrap .tab_cont').hide();		
+                $('#infoSizePop .tab_cont_wrap .tab_cont').eq($(this).index()).show();
+                return false;
+            });
+
+            //탭 - 사이즈정보 > 서브탭
+			$(document).on('click','#infoSizePop .sub_tab_nav ul li',function(e){
+				var value=$(this).find("a").text();
+				var catTxt=$(".category_open").text();
+				console.log(value)
+                $(this).addClass('active').siblings().removeClass('active');
+                $(this).parents('.tab_cont').find('.sub_tab_cont').hide();
+                $(this).parents('.tab_cont').find('.sub_tab_cont').eq($(this).index()).show();
+				$(this).parents().parents().parents().parents().parents(".category_box").hide();
+				$(this).parents().parents().parents().parents().parents(".category_box").prev(".category_open").text(value);
+                return false;
+            });
+
+			//팝업 - 사이즈정보 > 서브탭 - 카테고리팝오픈
+            $(document).on('click','#infoSizePop .category_open',function(e){
+                $(this).siblings().show();
+                return false;
+            });
+			$(document).on('click','#infoSizePop .category_close',function(e){
+                $(this).parents().parents(".category_box").hide();
+                return false;
+            });
+            
+            //팝업 - 재입고 알림 신청
+            $(document).on('click','#btn_pushRestock_pop',function(e){
+                $("#pushRestockPop").modal("show");
+                return false;
+            });                     
+
+			//팝업 - 상품문의 리스트	
+			$(document).on('click','#btn_pdQnaList_pop',function(e){
+				$("#pdQnaListPop").modal("show");
+				$('#pdQnaListPop .modal-body').load('pd_qnalist_pop.html');
+				return false;
+			});
+
+			//팝업 - 상품문의 작성
+			$(document).on('click','#btn_pdQnaWrite_pop',function(e){
+				$("#pdQnaWritePop").modal("show");
+				return false;
+			});
+
+			//팝업 - 배송교환반품 안내
+            $(document).on('click','#btn_pdDelivery_Pop',function(e){
+                $("#pdDeliveryPop").modal("show");
+				$('#pdDeliveryPop .modal-body').load('pd_delivery_pop.html');
+                return false;
+            })
+
+			//팝업 - 리뷰
+			$(document).on('click','#btn_pdReview_pop',function(e){
+                $("#pdReviewPop").modal("show");
+				$('#pdReviewPop .modal-body .pop_cont').load('pd_review_pop.html');
+                return false;
+            })
+
+			//팝업 - 베스트리뷰
+			$(document).on('click','#btn_pdBestReview_pop a',function(e){
+                $("#pdBestReviewPop").modal("show");
+                return false;
+            })
+
+			//팝업 - 포토/영상 리뷰 (detail)
+            $(document).on('click','.area_rv_photo .photo_list a, .area_rv_all .review_list .photo_list a, .pd_photoreviewlist_pop .photo_list ul li a',function(e){
+                $("#pdPhotoReviewDetailPop").modal("show");
+                return false;
+            })
+
+			//팝업 - 포토/영상 리뷰 (list)
+            $(document).on('click','#btn_more_photoreview',function(e){
+                $("#pdPhotoReviewListPop").modal("show");
+                return false;
+            })
+
+			//팝업 - 제품리뷰 > 카테고리팝오픈
+			// 오픈
+            $(document).on('click','.pd_review .category_open > li',function(e){
+				var dataName=$(this).attr("data_name");
+                $(".pd_review .category_box").show();
+				$(".pd_review .category_list").find(".category").hide();
+				$(".pd_review .category_list").find("#"+dataName).show();
+				return false;
+            });
+			// 닫기
+			$(document).on('click','.pd_review .category_box .category_close',function(e){
+				$(".pd_review .category_box").hide();
+                return false;
+            });
+			// 변경
+		    $(document).on('click','.pd_review .category ul > li',function(e){
+				var num=$(".pd_review .category_open > li").length;
+				var value=$(this).find("a").attr("data");
+				var name=$(this).parent().parent().attr("id");
+				$(this).parent().find("li").removeClass("active");
+				$(this).addClass("active");
+				for(var i=0; i < num; i++){
+					var dataname=$(".pd_review .category_open > li").eq(i).attr("data_name");
+					if(name==dataname){
+						$(".pd_review .category_open > li").eq(i).find("span").text(value);
+					}
+				}
+                return false;
+            });
+
+
+			//팝업 - 구매하기 > 옵션선택 > 옵션셀렉트팝업
+			$(document).on('click','.Purchase_pop .option_result .option_open',function(e){
+                $(".Purchase_pop .pop_option_select").show();
+                return false;
+            });
+			$(document).on('click','.Purchase_pop .close',function(e){
+                $(".Purchase_pop .pop_option_select").hide();
+                return false;
+            });
+
+			// 포토,베스트리뷰숨김
+			var review_open=$(".btn_review_open");
+			$(document).on('click','.btn_review_open',function(e){
+				$(this).toggleClass('active');
+				$(this).next(".review_list").toggleClass('active');
+				return false;
+			});
+		});
+
+		
+		// 광고 스크립트용
+		var goodsNavigation = [[${goodsNavigation}]];
+		var cate1Nm = "";
+		var cate2Nm = "";
+		var cate3Nm = "";
+		var cate4Nm = "";
+		var cate5Nm = "";
+		if (!gagajf.isNull(goodsNavigation)) {
+			cate1Nm = goodsNavigation.cate1Nm;
+			cate2Nm = goodsNavigation.cate2Nm;
+			cate3Nm = goodsNavigation.cate3Nm;
+			cate4Nm = goodsNavigation.cate4Nm;
+			cate5Nm = goodsNavigation.cate3Nm;
+			
+			if (!gagajf.isNull(cate1Nm)) {
+				cateNm += cate1Nm;
+			}
+			if (!gagajf.isNull(cate2Nm)) {
+				cateNm += ' > ' + cate2Nm;
+			}
+			if (!gagajf.isNull(cate3Nm)) {
+				cateNm += ' > ' + cate3Nm;
+			}
+			if (!gagajf.isNull(cate4Nm)) {
+				cateNm += ' > ' + cate4Nm;
+			}
+			if (!gagajf.isNull(cate5Nm)) {
+				cateNm += ' > ' + cate5Nm;
+			}
+		}
+		// 광고 스크립트용
+		
+		var snsGoodsImg = _uploadGoodsUrl + [[${goodsInfo.sysImgNm}]];
+		var snsUrl = location.protocol + _PAGE_GOODS_DETAIL + params.goodsCd +'&colorCd =' + params.colorCd  ;
+		var snsGoodsFullNm = [[${goodsInfo.goodsFullNm}]];
+		
+		<!-- 페이스북 카카오스토리 연동 관련 메타태그 -->
+		$("meta[property='og:url']").attr('content', snsUrl);
+		$("meta[property='og:title']").attr('content', snsGoodsFullNm);
+		$("meta[property='og:description']").attr('content', snsGoodsFullNm);
+		$("meta[property='og:image']").attr('content', snsGoodsImg);
+
+		<!-- 트위터 관련 메타태그 -->
+		$("meta[name='twitter:url']").attr('content', snsUrl);
+		$("meta[name='twitter:title']").attr('content', snsGoodsFullNm);
+		$("meta[name='twitter:description']").attr('content', snsGoodsFullNm);
+		$("meta[name='twitter:image']").attr('content', snsGoodsImg);
+
+		// 추천솔류션 meta 설정
+		$("meta[property='eg:type']").attr('content',"product");
+		$("meta[property='eg:cuid']").attr('content',eglqueueCuid);
+		$("meta[property='eg:itemId']").attr('content', [[${goodsInfo.goodsCd}]] );
+		$("meta[property='eg:itemName']").attr('content',[[${goodsInfo.goodsFullNm}]] );
+		$("meta[property='eg:itemImage']").attr('content', snsGoodsImg);
+		$("meta[property='eg:itemUrl']").attr('content',snsUrl);
+		$("meta[property='eg:originalPrice']").attr('content',[[${goodsInfo.listPrice}]]);
+		$("meta[property='eg:salePrice']").attr('content',[[${goodsInfo.currPrice}]]);
+		$("meta[property='eg:category1']").attr('content',cate1Nm);
+		$("meta[property='eg:category2']").attr('content',cate2Nm);
+		$("meta[property='eg:category3']").attr('content',cate3Nm);
+		$("meta[property='eg:category4']").attr('content',cate4Nm);
+		$("meta[property='eg:category5']").attr('content',cate5Nm);
+		$("meta[property='eg:brandId']").attr('content',[[${goodsInfo.brandGroupNo}]]);
+		$("meta[property='eg:brandName']").attr('content',[[${goodsInfo.brandGroupNm}]]);
+		$("meta[property='eg:regDate']").attr('content',[[${goodsInfo.regDt}]].toDate("YYYYMMDDHHmmss").format("YYYY-MM-DDTHH:mm:ssZ"));
+		$("meta[property='eg:updateDate']").attr('content',[[${goodsInfo.updDt}]].toDate("YYYYMMDDHHmmss").format("YYYY-MM-DDTHH:mm:ssZ"));
+		$("meta[property='eg:stock']").attr('content',"");
+		$("meta[property='eg:state']").attr('content',[[${goodsInfo.goodsStatNm}]]);
+		$("meta[property='eg:description']").attr('content',null);
+		$("meta[property='eg:extraImage']").attr('content',null);
+		$("meta[property='eg:locale']").attr('content',"KR");
+		$("meta[property='eg:isNew']").attr('content',([[${goodsInfo.formalGb}]] == 'G009_10')? 'True' :'False');
+		$("meta[property='eg:etc1']").attr('content', [[${goodsInfo.selfGoodsYn}]]);
+		
+		
+		$('.btn_copy').bind('click', function() {
+			copyToClipboard();
+		});
+		
+	});
+
+/*]]>*/
+</script>
+
+<!-- 광고 스크립트 -->
+<th:block th:replace="~{mob/common/advertisements/GoodsDetailScriptsMob :: scripts}"></th:block>
+<!-- //광고 스크립트 -->
+
+</th:block>
+
+</body>
+</html>

+ 3 - 2
src/main/webapp/WEB-INF/views/web/common/advertisements/GoodsDetailScriptsWeb.html

@@ -3,7 +3,7 @@
 	xmlns:th="http://www.thymeleaf.org">
 <!--
  *******************************************************************************
- * @source  : GoodsDetailScriptsWeb.html
+ * @source  : GoodsDetailScriptsMob.html
  * @desc    : 상품상세 광고 스크립트
  *============================================================================
  * pastelmall.com
@@ -11,10 +11,11 @@
  *============================================================================
  * VER  DATE         AUTHOR      DESCRIPTION
  * ===  ===========  ==========  =============================================
- * 1.0  2021.03.18   eskim     최초 작성
+ * 1.0  2021.04.02   eskim     최초 작성
  *******************************************************************************
  -->
 <th:block th:fragment="scripts">
+	<script src="https://unpkg.com/swiper/swiper-bundle.min.js"></script>
 	<script th:inline="javascript">
 
 		window._eglqueue = window._eglqueue || [];

+ 169 - 10
src/main/webapp/ux/mo/css/common_m.css

@@ -67,7 +67,7 @@
     font-weight: 600;
     font-style: normal;
 }
-
+#load {width: 100%;height: 100%;top: 0;left: 0;position: fixed;display: block;text-align: center;opacity: 0.8;background: #ffffff;background-image: url('/images/mo/movloading.gif');background-repeat: no-repeat;background-position: 50% 50%;background-size: 3.7rem 2.4rem;z-index: 99999;}
 /* Basic setting */
 html {-webkit-text-size-adjust: 100%;-ms-text-size-adjust: 100%;}
 body {margin: 0;}
@@ -635,7 +635,7 @@ top: 9px;border-color: transparent transparent #888888 transparent;}
 .btn_group_flex > div:last-child {margin-right:0}
 .btn_group_flex > div > .btn {display:block; width:100%; height:100%; border:1px solid #a7a7a7; font-size: 1.4rem; padding:1rem 1.3rem; font-weight: 500;}
 .btn_group_flex > div > .btn.btn_dark {border-color:#222;}
-.btn_group_flex > div > .btn.btn_primary {background-color:#fff; border-color:#fd4802; color: #fd4802;}
+/* .btn_group_flex > div > .btn.btn_primary {background-color:#fff; border-color:#fd4802; color: #fd4802;} */
 
 .btn_block {width: 100%;}
 
@@ -661,7 +661,7 @@ header {
   position: fixed;left: 0;top: 0;width: 100%;z-index: 80;
   position: sticky;left: 0;top: 0;width: 100%;transition: top 0.3s;/* background-color: #fff; */
 }
-header .htop {position: relative;height: 55px;-webkit-box-sizing: border-box;box-sizing: border-box;border: rgba(0, 0, 0, 0.1) solid 1px;background-color: #fff;}
+header .htop {position: relative;height: 55px;-webkit-box-sizing: border-box;box-sizing: border-box;/*border: rgba(0, 0, 0, 0.1) solid 1px;*/ border-bottom: 1px solid rgba(0, 0, 0, 0.1); background-color: #fff;}
 header #htopSub{border-bottom: 1px solid #e5e5e5;box-sizing: border-box;}
 header #htopSubs{border-bottom: 1px solid #000000;box-sizing: border-box;}
 header .htop h1 {display: inline-block;position: relative;height: 40px;line-height: 4.0rem;vertical-align: top;margin: 10px 0 0 10px;font-size: 1.8rem;color: #222;}
@@ -788,10 +788,10 @@ header .hmenus .bnb ul > li > a{display: block; padding: 8px 0; font-size: 1.5re
 
 /* gnb */
 body.header-show .app .gnb{top: 50px;}
-.app .gnb {position: -webkit-sticky; position: sticky; top: 0px; padding-right: 50px; background-color: #000; z-index: 9; transition: top 0.3s;}
+.app .gnb {position: -webkit-sticky; position: sticky; top: 0px; padding-right: 50px; background-color: #000; z-index: 9; transition: top 0.3s; width: 100%;}
 .app .gnb.expand{padding-right: 30px;}
-.app .gnb .gnb-inner{width: 100%; padding: 9px 10px; overflow: hidden; overflow-x: hidden; /* overflow-x: scroll; */}
-.app .gnb .gnb-inner{position: relative;}
+.app .gnb .gnb-inner{position: relative; width: 100%; padding: 9px 10px; overflow-x: scroll;}
+.app .gnb .gnb-inner::-webkit-scrollbar {display: none;}
 .app .gnb.expand .gnb-inner{width: 100%; overflow: unset; overflow-x: unset;}
 .app .gnb .gnb-inner ul{display: inline-block; white-space: nowrap;}
 .app .gnb.expand .gnb-inner ul{white-space: normal;}
@@ -819,6 +819,44 @@ main.container .inner:last-child{padding-bottom: 6.0rem; margin-bottom: 0;}
 .tabbar .tabbar-inner [class*=btn-].btn-history{background: url(/images/mo/ico_tabbar_history.png) no-repeat center; background-size: 30px 25px;}
 
 
+/* Full메뉴 */
+#menuFull{width: 100%;height: 0;z-index: 999;visibility: hidden;background: rgba(255, 255, 255, 1);transition: all 600ms cubic-bezier(0.86, 0, 0.07, 1);top: 100%;position: fixed;left: 0;}
+#menuFull.on{ height: 100%; visibility: visible; top: 0;}
+.menu_cls {position: absolute;top: 2.4rem;right: 2.0rem;display: block;width: 2.0rem;height: 2.0rem;text-indent: -9999px;background-size: contain;background-repeat: no-repeat;background-position: center center;z-index: 98;background-image: url(/images/mo/ico_pop_cls.png);}
+.appSett {position: absolute;top: 2.4rem;right: 5.5rem;display: block;width: 2.0rem;height: 2.0rem;text-indent: -9999px;background-size: contain;background-repeat: no-repeat;background-position: center center;z-index: 98;background-image: url(/images/mo/ico_app_setting.png);}
+.fullHead {height: 5.2rem;}
+.fullHead .goHome {display: inline-block;width: auto;padding:2.4rem 2rem;}
+.fullHead a {display: inline-block;}
+.fullHead img {width: 10.666rem; height:1.6rem;}
+.fullBody {background:#f5f5f5;min-height: calc(100% - 5.2rem);max-height: calc(100% - 5.2rem);overflow-y: scroll;}
+.fullBody .inner {background:#ffffff;margin:0;padding:0;}
+.fullBody .inner .flow{display: inline-block;width: 49.0%;height: 100%;vertical-align: top;padding:2.5rem 0;}
+.fullBody .inner .flow li{width:100%;height:3.1333rem;line-height:3.1333rem;padding:0 0 0 2rem;border: 0;box-sizing: border-box;text-align: left;display: inline-block;}
+.fullBody .inner .flow span{font-size: 1.333rem;}
+.fullBody .btn_group {margin: 0;}
+.fullBody .btn_group div {margin:0;position: relative;}
+.fullBody .btn_group div button{border: 0;background: #f5f5f5;font-size: 1.2rem;}
+.fullBody .btn_group div button span{width: 100%;}
+.fullBody .btn_group div:first-child button::after{content: '';display: inline-block;width: 0.3rem;height: 2.0rem;background: #dddddd;position: absolute;top: 1.0rem;right: -0.2rem;}
+
+/* Full메뉴_카테고리 */
+.fullBody .fullCate {padding: 0 0 2rem;margin-bottom: 1.2rem;}
+.fullBody .fullCate > li > ul {display: none; background: #f5f5f5;}
+.fullBody .fullCate > li > a {display: block; padding:1.6rem 2.0rem; font-size: 1.4rem; font-weight: 400;font-family: 'Noto Sans kr', sans-serif;}
+.fullBody .fullCate > li > a:hover span {color: #fd4802; border-bottom: 1px solid #fd4802;}
+.fullBody .fullCate > li.hasCate > a {background: url('/images/mo/ico_full.png') no-repeat right 2.0rem center;background-size: 0.8rem 1.4rem;}
+.fullBody .fullCate > li.hasCate > a.on {background: url('/images/mo/ico_full_on.png') no-repeat right 2.0rem center; background-size: 1.4rem 0.8rem; font-size: 1.4rem; color: #fd4802;}
+.fullBody .fullCate > li.hasCate > a.on span {border-bottom: 1px solid #fd4802;}
+.fullBody .fullCate > li.hasCate > ul {padding: 1.5rem 0;}
+.fullBody .fullCate > li.hasCate > ul > li > a {display: block; font-size: 1.3rem; color: #888; padding:0.87rem 4.3rem;}
+.fullBody .fullCate > li.hasCate > ul > li > a:hover span {color: #fd4802; border-bottom: 1px solid #fd4802;}
+.fullBody .quick_cate_txt {border-top: 1px solid #ddd; padding:30px;}
+.fullBody .quick_cate_txt a {display: inline-block; position: relative; font-size: 14px; color: #888; margin-right: 20px;}
+.fullBody .quick_cate_txt a:after {content:''; position: absolute; top: 2px; right: -12px; width: 1px; height: 8px; background: #ddd;}
+.fullBody .quick_cate_txt a:last-child:after {display: none;}
+
+
+
 /* footer */
 footer{background-color: #f1f1f1;}
 footer .btn_top{position: fixed; bottom: 30px; right: 25px; opacity: 0; background-color: rgba(0, 0, 0, 0.4); width: 45px; height: 45px; border-radius: 50%; font-size: 0; z-index: 50;}
@@ -859,9 +897,9 @@ footer .f1 .sns > li > a.insta{background: #fff url("/images/mo/ico_ft_insta.png
 footer .f1 .sns > li > a.facebook{background: #fff url("/images/mo/ico_ft_facebook.png") 50% 50% no-repeat; background-size: auto 2.5rem;}
 footer .collapse{position: relative; border-bottom: 1px solid #dadada;}
 footer .collapse .btnWrap .btn_infos{position: relative; width: 100%; height: 67px; background-color: #f1f1f1; font-size: 1.5rem; font-weight: 400; text-align: left; color: #222;}
-footer .collapse .btnWrap .btn_infos::after{content: ''; display: inline-block; margin-left: 10px; margin-bottom: 0px; width: 1.4rem; height: 0.8rem; background: #f1f1f1 url(/images/mo/ico_fold_arrow1.png) 50% 0% no-repeat; background-size: 1.4rem; /* background-size: auto 3.9rem; */}
+footer .collapse .btnWrap .btn_infos::after{content: ''; display: inline-block; margin-left: 10px; margin-bottom: 0px; width: 1.4rem; height: 0.8rem; background: #f1f1f1 url(/images/mo/ico_fold_arrow1.png) 50% 0% no-repeat; background-size: 1.4rem; /* background-size: auto 3.9rem; */ -webkit-transform: rotate(180deg); transform: rotate(180deg);}
 footer .collapse .btnWrap .btn_infos.on{/* background-color: #222; */ /* color: #fff; */}
-footer .collapse .btnWrap .btn_infos.on::after{margin-bottom: 0; -webkit-transform: rotate(180deg); transform: rotate(180deg);}
+footer .collapse .btnWrap .btn_infos.on::after{margin-bottom: 0; -webkit-transform: rotate(0); transform: rotate(0);}
 footer .collapse .infos{width: 100%; height: 0; overflow: hidden;-webkit-box-sizing: border-box; box-sizing: border-box; -webkit-transition: all 0.5s ease-out; transition: all 0.5s ease-out;}
 footer .collapse .infos::after{content: ''; display: block; clear: both;}
 footer .collapse .infos > li{float: left; position: relative; padding: 5px 4px; color: #666; font-size: 1.2rem; font-weight: 200;}
@@ -1571,7 +1609,7 @@ button.alertCls {-webkit-appearance: none;padding: 0;cursor: pointer;background:
 .modal .modal-body .pop_cont{overflow: auto;max-height: 450px; font-size: 16px; line-height: 1.62; font-weight: 200; color:#666;}
 .modal .modal-body .fx_r {position: fixed;right: 0;top: auto;bottom: auto;left: auto;}
 .modal .modal-footer{margin-top: 3.0rem;}
-.modal .modal-footer .btn{width: 100%; border-width: 0;background-color: #f5f5f5;}
+.modal .modal-footer .btn{width: 100%; border-width: 0;}
 
 .modal.pop_full {width: 100%; max-width: 100%; height: 100%; padding: 0; overflow: auto; position: relative;}
 .modal.pop_full .modal-header {width: 100%;height:5.2rem;box-sizing: border-box;border-bottom: 1px solid #dddddd;z-index:98;position: fixed;top: 0;left: 0;bottom: auto;right: auto;background: #fff;padding: 1.6rem 1.33rem 1.6rem 1.33rem;}
@@ -1723,4 +1761,125 @@ button.alertCls {-webkit-appearance: none;padding: 0;cursor: pointer;background:
 }
 .shape.dealdetail span{
   line-height: 1;text-align: center;width: 100%;display: inline-block;text-indent: 0;margin-left: 5px;
-}
+}
+
+
+
+
+/* APP ONLY */
+/* etc_goApp */
+.adApp {width: 100%;height: 100%;z-index: 99999;overflow: hidden;position: fixed;left: 0;top: 0;background-color: rgba(0, 0, 0, 0.85);/* IE 5.5 - 7 */filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=rgb(255, 231, 204) ff, endColorstr=rgb(255, 229, 204) ff);/* IE 8 */-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=@filter_a, endColorstr=@filter_a)";}
+.adApp .adWrap {display: table;width: 100%;height: 100%;}
+.adApp .adWrap .cont {padding: 0px 2rem;display: table-cell;vertical-align: middle;}
+.adApp .cont button {width: 100%;}
+.adApp .viewWeb {margin-top: 10%;font-size: 1.4rem;font-weight: 100;line-height: 1.2;color: #ffffff;text-align: center;text-decoration: underline;}
+.adApp .viewWeb a {color: #ffffff;}
+
+
+/* etc_consentAlarm */
+.etcApp {width: 100%;height: 100%;z-index: 99999;text-align: center;overflow: hidden;position: fixed;left: 0;top: 0;background-color: #ffffff;}
+.etcApp .titWrap{margin-bottom: 2.0rem;}
+.etcApp .titWrap h2{font-size: 2.0rem;color: #333333;}
+.etcApp .alramWrap {display: table;width: 100%;height: 100%;padding-top: 4.0rem;}
+.etcApp .alramWrap .inner {padding: 0rem;}
+.etcApp .alramWrap .btn_group_flex {position: fixed;bottom: 0;}
+.etcApp .alramWrap .btn_group_flex button{padding: 1.8rem 0;}
+.etcApp .btn_group_flex > div > .btn.btn_primary {background-color: #fd4802;border-color: #fd4802;color: #ffffff;}
+.etcApp .btn_group_flex > div > .btn.btn_primary{color: #ffffff;font-weight: 200;}
+.etcApp .alramClose {margin-top: 0;font-size: 1.4rem;font-weight: 100;line-height: 1.4;color: #ffffff;text-align: center;text-decoration: underline;}
+.etcApp .alramClose a {color: #888888;}
+/* etc_accessApp */
+.etcApp .accWrap {display: table;width: 100%;height: 100%;padding-top: 4.0rem;}
+.etcApp .accWrap .inner {padding: 0rem;}
+.etcApp .accWrap .btn_group_flex {position: fixed;bottom: 0;}
+.etcApp .accWrap .btn_group_flex button{padding: 1.8rem 0;}
+.etcApp .accClose {margin-top: 10%;font-size: 1.4rem;font-weight: 100;line-height: 1.4;color: #ffffff;text-align: center;text-decoration: underline;}
+.etcApp .accClose a {color: #888888;}
+
+/* etc_coachApp (Coach Marks) */
+#coachHide {background: transparent;}
+.etcApp .coach {position: relative;width: 100%;height: 100%;}
+.etcApp .coach::after {content:'';display: block; width: 100%;height: 100%;background-color: black;opacity: 0.75;z-index: -1;}
+.etcApp .coach span{position:absolute;width: 100%;height: 100%;background-repeat: no-repeat;z-index: 10;}
+.etcApp .coach #coachmask01{top:1.4rem; bottom:auto; left:1.8rem; right:auto; background: url('/images/mo/coachmask01.png')no-repeat; background-size: 14.0666rem 12.0666rem; width: 14.0666rem; height: 12.0666rem;}
+.etcApp .coach #coachmask02{top:5.2rem; bottom:auto; left:auto; right:0.15rem; background: url('/images/mo/coachmask02.png')no-repeat; background-size: 12.6666rem 13.3000rem; width: 12.6666rem; height: 13.3000rem;}
+.etcApp .coach #coachmask03{top:auto; bottom:0.8rem; left:auto; right:1.8rem; background: url('/images/mo/coachmask03.png')no-repeat; background-size: 19.2666rem 10.5000rem; width: 19.2666rem; height: 10.5000rem;}
+.etcApp .coach button{width: 100%; height: auto;}
+
+
+/* etc_settingApp */
+.app-only .sett {background: #f5f5f5;}
+.app-only .sett .inner{background: #ffffff; margin-bottom: 2.0rem;}
+.app-only .sett dl{width: 100%;}
+.app-only .sett dl dd {border-bottom:1px solid #eeeeee;}
+.app-only .sett dl dd:last-child {border-bottom:0}
+.app-only .sett dl dd:first-child:nth-last-child(1) {border-bottom:1px solid #eeeeee;}
+.app-only .sett dl dd .setItems {display: flex;align-items: center;padding: 1.0rem;}
+.app-only .sett dl dd .setItems .set_opt {flex-grow: 1; padding: 0 0 0 0;}
+.sett .form_field input[type="checkbox"] + label:before {content: 'OFF';background: none;color: #ffffff;left: auto;right: 0.4rem;font-size: 1.0rem;line-height: 2.0rem;}
+.sett .form_field input[type="checkbox"]:checked + label:before {content: 'ON';background: none;color: #ffffff;left: 0.4rem;right: auto;font-size: 1.0rem;line-height: 2.0rem;}
+.sett .switch {width: 4.8rem;position: relative;}
+.sett .switch input[type="checkbox"] {visibility: hidden;}
+.sett .switch label {width: 100%;height: 2.4rem;border-radius: 5.0rem;background-color: #dddddd;position: absolute;top: 0;left: 0;cursor: pointer;}
+.sett .switch input[type="checkbox"]:checked + label {background-color: #fd4802;}
+.sett .switch label::after {content: "";width: 2.0rem;height: 2.0rem;border-radius: 50%;background: white;position: absolute;top: 0.2rem;left: 0.2rem;transition: all 0.1s;}
+.sett .switch input[type="checkbox"]:checked + label::after {background: #ffffff;position: absolute;top: 0.2rem;left: auto;right: 0.2rem;margin: 0;}
+.sett .alink {display: inline-block;text-align: center;cursor: pointer;}
+.sett .alink input[type="button"] {visibility: hidden;}
+.sett .alink input[type="button"] + label::after {content: '업데이트';position: relative;top: 0;right: 0;color: #fd4802;font-size: 1.2rem;display: inline-block;background: url(/images/mo/ico_app_arr2.png)no-repeat;background-size: 0.7rem 1.3rem;width: auto;height: 1.4rem;line-height: 1.4rem;background-position: 5.5rem 0;padding-right: 2.0rem;}
+.sett .alink input[type="button"]:disabled + label::after {content: '최신버전입니다';color: #888888;background: none;padding: 0;}
+.sett .alink label {width: 0.2rem;height: 0.2rem;cursor: pointer;}
+.sett .alink a {display: inline-block;width:5rem;height:1.2rem;}
+.sett .alink a::after {content: '';display: inline-block;background: url(/images/mo/ico_app_arr.png)no-repeat;background-position: 4.2rem 0px;background-size: 0.7rem 1.3rem; width: 100%;height: 1.4rem;line-height: 1.4rem;}
+.sett p {font-size: 1.2rem;color: #888888;width: calc(100% - 7rem);padding-left: 1rem;padding-bottom: 0.8rem;}
+.sett p.pot {position: relative;padding-left: 1.8rem;margin: 0;font-size: 1.1rem;font-weight: 200;color: #888888;}
+.sett p.pot::before {content: '';position: absolute;top: 0.7rem;left: 1rem;background: #888888;width: 0.3rem;height: 0.3rem;}
+
+
+/* etc_noticeApp */
+.app-only .notice {background: #f5f5f5;position: relative;}
+.app-only .notice.nodata::after{content: '알림이 없습니다.';width: 100%;height: auto;display: inline-block;position: absolute;top:13.6rem;left: auto;text-align: center;color: #888888;font-size: 1.3rem;}
+.app-only .notice .inner{background: #ffffff; margin-bottom: 0rem;padding-bottom:0;border-bottom:1px solid #eeeeee;}
+.app-only .notice .inner:last-child{padding-bottom: 0rem;}
+.app-only .notice dl {font-size: 1.3rem;padding: 2.3rem 0;}
+.app-only .notice dt {color: #222222;}
+.app-only .notice dd {font-size: 1.2rem;color: #666666;padding-bottom: 1.5333rem;}
+.app-only .notice dt {line-height: 1.2;padding-bottom: 1.1rem;}
+.app-only .notice dt.tit, .app-only .notice dd.cont_txt {word-wrap: break-word;word-break: keep-all;}
+.app-only .notice dd.cont_data {font-size: 1.1rem; color: #888888;font-family: 'LATO';}
+.app-only .notice dd.cont_img {width: 100%;height: auto;}
+.app-only .notice dd:last-child {padding-bottom: 0;}
+
+
+
+/* etc_closingApp */
+.app-only .guidance{width: auto;}
+.app-only .guidance{overflow: hidden;position: fixed;bottom: 0;left: 50%;z-index: 9;width: 88.888%;height: auto;margin-left: -44.444%;padding: 1.2rem 0 1.0rem;background-color: rgba(0,0,0,0.8);text-align: center;opacity: 0;}
+.app-only .guidance:after{content: '';position: absolute;top: 0;bottom: 15px;left: 10px;width: 100%;height: 100%;z-index: -1;}
+.app-only .guidance{
+    box-shadow: 0 0px 30px rgb(0 0 0 / 20%), 0 0px 30px rgb(0 0 0 / 20%);
+    mask-image: linear-gradient(to top right, transparent 49.5%, white 50.5%), linear-gradient(to top left, transparent 49.5%, white 50.5%), linear-gradient(white, white), linear-gradient(white, white);
+    -webkit-mask-image: linear-gradient(to top right, transparent 49.5%, white 50.5%), linear-gradient(to top left, transparent 49.5%, white 50.5%), linear-gradient(white, white), linear-gradient(white, white);
+	mask-size: 100% 0%, 2vh 2vh, calc(100% - 1.9vh) 100%, 100% calc(100% - 1.9vh);
+    -webkit-mask-size: 100% 0%, 2vh 2vh, calc(100% - 1.9vh) 100%, 100% calc(100% - 1.9vh);
+    mask-position: bottom left, bottom right, top left, top right;
+    -webkit-mask-position: bottom left, bottom right, top left, top right;
+    mask-repeat: no-repeat;
+    -webkit-mask-repeat: no-repeat;
+}
+.app-only .guidance p{font-size:1.3rem;font-weight: 300;color: #fff;}
+.app-only .guidance p.tit{font-size: 1.4rem;margin-bottom: 1.53rem;}
+.app-only .guidance p.date{opacity: 0.7;font-size:1.1rem;margin-bottom: 1.2rem;}
+.app-only .guidance p.tit + p.date + p {font-size:1.1rem;}
+.app-only .guidance p:first-child {padding-top: 2.0rem;}
+.app-only .guidance p:last-child {padding-bottom: 2.0rem;}
+.app-only .guidance p:first-child:nth-last-child(1) { padding-top: 0;padding-bottom: 0; }
+.app-only .guidance.ontoast {animation: onpop 6s .2s forwards; -webkit-animation: onpop 6s .2s forwards;}
+@keyframes onpop {
+	0% {bottom:0rem; opacity:1; z-index:99999;}
+	10% {bottom:10.0rem;}
+	20% {bottom:8.0rem;}
+	80% {bottom:8.0rem; opacity:1; z-index:99999;}
+	100% {opacity:0; z-index:0;}
+}
+

+ 0 - 549
src/main/webapp/ux/mo/css/common_millim.css

@@ -1,549 +0,0 @@
-@charset "UTF-8";
-
-
-/* h1 ~ h6  */
-h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
-    color: #222222;
-    padding: 0px;
-    margin: 0px;
-    line-height: 1;
-}
-
-/* margin style */
-.mgc {margin:0 auto;}
-.mt0 {margin-top:0 !important;}
-.ml0 {margin-left:0 !important;}
-.ml5 {margin-left:5px !important;}
-.ml10{margin-left:10px !important;}
-.ml15 {margin-left:15px !important;}
-.ml20 {margin-left:20px !important;}
-.ml30 {margin-left:30px !important;}
-.mr0{margin-right:0px !important;}
-.mr20 {margin-right:20px !important;}
-.mt5 {margin-top:5px !important;}
-.mt10 {margin-top:10px !important;}
-.mt15 {margin-top:15px !important;}
-.mt20 {margin-top:20px !important;}
-.mt30 {margin-top:30px !important;}
-.mt35 {margin-top:35px !important;}
-.mt40 {margin-top:40px !important;}
-.mt45 {margin-top:45px !important;}
-.mt50 {margin-top:50px !important;}
-.mt60 {margin-top:60px !important;}
-.mt100 {margin-top:100px !important;}
-.mb0 {margin-bottom:0 !important}
-.mb5 {margin-bottom:5px !important}
-.mb10 {margin-bottom:10px !important;}
-.mb15 {margin-bottom:15px !important;}
-.mb20 {margin-bottom:20px !important;}
-.mb30 {margin-bottom:30px !important;}
-.mb40 {margin-bottom:40px !important;}
-.mb50 {margin-bottom:50px !important;}
-.mb60 {margin-bottom:60px !important;}
-.mb100 {margin-bottom:100px !important;}
-.mr5 {margin-right:5px !important;}
-.mr10 {margin-right:10px !important;}
-.mr15 {margin-right:15px !important;}
-.ml10 {margin-left:10px !important;}
-.ml35 {margin-left:35px !important;}
-.mtm3 {margin-top:-3px !important;}
-.mtm10 {margin-top:-10px !important;}
-.mtm20 {margin-top:-20px !important;}
-.mbm10 {margin-bottom:-10px !important;}
-.mbm30{margin-bottom:-30px !important;}
-
-
-/*padding style*/
-.pt0 {padding-top:0px !important;}
-.pt10 {padding-top:10px !important;}
-.pt20 {padding-top:20px !important;}
-.pt30 {padding-top:20px !important;}
-.pt40 {padding-top:40px !important;}
-.pt100 {padding-top:100px !important;}
-.pl0 {padding-left:0 !important;}
-.pl10 {padding-left:10px !important;}
-.pr20 {padding-right:20px !important;}
-.pb10 {padding-bottom:10px !important;}
-.pb20 {padding-bottom:20px !important;}
-.pb30 {padding-bottom:30px !important;}
-.pb40 {padding-bottom:40px !important;}
-.pb50 {padding-bottom:50px !important;}
-.pb100 {padding-bottom:100px !important;}
-
-.block {display:block;}
-.inblock {display:inline-block;*display:inline;zoom:1;}
-.clear {*zoom:1; clear:both;}
-.clear:after {content:""; display:block; clear:both;}
-.fr::after, .fl::after{content: '';display: block;clear: both;}
-.fl {float:left !important;}
-.fr {float:right !important;}
-.t_c {text-align:center !important;}
-.t_l {text-align:left !important;}
-.t_r {text-align:right !important;}
-.btn_center {text-align:center; margin-top:30px;}
-.btn_right {text-align:right; margin-top:10px; margin-bottom:15px;}
-.btn_border {border-top:1px solid #e1e1e1; padding-top:30px;text-align:center; margin-top:30px;}
-.bkn {background:0 none !important;}
-
-/* font color */
-i {font-family:'Noto Sans CJK kr','Noto Sans kr', 'LATO', sans-serif !important; letter-spacing:0}
-.base i {position:relative; top:1px;}
-i.big {font-size:18px; position:relative; top:2px;}
-.bold {font-weight:500;} /* 중복확인 */
-.normal {font-weight:300;} /* 중복확인 */
-.light {font-weight:200;} /* 중복확인 */
-.ptxt01 {color:#666666;}
-.ptxt02 {color:#999999;}
-.ptxt03 {color:#333333;}
-.c_primary {color:#fd4802 !important;} /* 중복확인 */
-.c_blue{color:#2b62c2 !important}
-.c_pink {color:#bd484a !important;}
-.c_white {color:#ffffff !important;}
-.c_yellow {color:#f09614 !important;}
-.c_orange{color: #ff634c !important;}
-.c_green{color:#6a9913 !important;}
-.c_mint{color:#05B9AA !important;}
-.c_mint2{color:#37b4be !important;}
-.c_red{color:#ff0000 !important;}
-.c_red2{color:#f30e0e !important;}
-.c_black{color:#000000 !important;}
-.c_black2{color:#222222 !important;}
-.c_gray{color:#888888 !important;}
-.c_gray2{color:#666666 !important;}
-.c_ygreen{color:#5fc332 !important;}
-.f_size14{font-size:14px;}
-.f_size13{font-size:13px;}
-.f_size12{font-size:12px; }
-.f_size10{font-size:10px;}
-.f_normal {font-weight:normal}
-
-
-/* text state */
-.t_muted {color: #ccd0d9 !important;}
-.t_req {color: #fd4802 !important;}
-.t_help {color: #888888 !important;}
-.t_info {color: #888888 !important;}
-.t_err {color: #fd4802 !important;}
-.t_err::before {content: '';display: inline-block; width:17px; height:17px; background:url('../../../images/mo/ico_err.png') no-repeat right top;margin: 0px 2px 0 0px;position: relative;top: 4px;left: 0;right: auto;bottom: auto;}
-.t_success {color: #333333 !important;}
-
-
-/* form style (hyangah_0223_수정중 - input[type="text"] padding 수정) */
-input,  textarea {font-size:12px; font-family:'Noto Sans KR', 'LATO', sans-serif; color:#666666; vertical-align:middle;}
-select{font-size:12px; font-family:'Noto Sans KR', 'LATO', sans-serif; color:#666666; vertical-align:middle;}
-input[type="text"], input[type="password"] {padding:0 15px; border:1px solid #dddddd;box-sizing: border-box;}
-input[type="text"]:focus, input[type="password"]:focus,
-input[type="text"].active, input[type="password"].active {border-color: #aaaaaa;} 
-input[type="text"]:disabled, input[type="password"]:disabled, input[type="select"]:disabled,
-input[type="text"]:read-only, input[type="password"]:read-only, input[type="select"]:read-only {background: #F9F9F9;border-color: #dddddd;}
-table input[type="text"], table input[type="password"] {padding:6px 0 6px 9px;}
-input[type="checkbox"], input[type="radio"] {width:13px; height:13px; margin-right:3px; position:relative; top:1px;}
-input[type=search]::-webkit-search-cancel-button{display:none;}
-input[type="reset"], input[type="button"], input[type="submit"], button {line-height:normal !important;}
-
-.input_wrap > .btn, .input_wrap + .btn, .form_field.form_full .btn {border-color: #222222;margin-left: 10px;float: left;display: inline;}
-.input_wrap > .btn:hover, .input_wrap > .btn:focus, .input_wrap > .btn:active, .input_wrap > .btn.active,
-.input_wrap + .btn:hover, .input_wrap + .btn:focus, .input_wrap + .btn:active, .input_wrap + .btn.active,
-.input_wrap > .open > .tgl_dropdown.btn , .input_wrap + .open > .tgl_dropdown.btn {border-color: rgb(34 34 34 / 0.6);}
-
-/* 체크박스 */
-.form_field input[type="checkbox"]{ position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); border:0; } 
-.form_field input[type="checkbox"] + label{ display:inline-block; position:relative; padding-left:26px; cursor:pointer; font-size: 12px; line-height: 1.4;font-weight: 300;letter-spacing: 0;} 
-.form_field input[type="checkbox"] + label:before{ 
-  content:''; position:absolute; left:0; top:50%; margin-top:-10px; width:20px; height:20px; text-align:center; background:#fff; /*border:1px solid #ccc;*/ border-radius: 100%; box-sizing:border-box; 
-  background: url('../../../images/mo/ico_chk_rdi.png') no-repeat;
-  background-position: 0px 0px;
-} 
-.form_field input[type="checkbox"]:Disabled + label, 
-.form_field input[type="radio"]:Disabled + label{cursor: default;opacity: .45;} 
-
-.form_field input[type="checkbox"]:checked + label:after{ 
-  content: ''; position:absolute; top:50%; margin-top:-10px; left:0; width:20px; height:20px; background-color: #fd4800; border-radius: 100%; box-sizing:border-box; 
-  background: url('../../../images/mo/ico_chk_rdi.png') no-repeat;
-  background-position: -20px 0px;
-}
-
-.form_field input[type="checkbox"]:Disabled + label:after{ 
-  content: ''; position:absolute; top:3px; left:0; width:20px; height:20px; background-color: #fd4800; border-radius: 100%; box-sizing:border-box; 
-  background: url('../../../images/mo/ico_chk_rdi.png') no-repeat;
-  background-position: -40px 0px;
-}
-
-/* 라디오 */
-.form_field input[type="radio"]{ position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); border:0; } 
-.form_field input[type="radio"] + label{ display:inline-block; position:relative; padding-left:2.5rem; cursor:pointer; font-size: 1.3rem;line-height: 1.5;font-weight: 300;letter-spacing: 0;} 
-.form_field input[type="radio"] + label:before{ 
-  content:''; position:absolute; left:0; top:50%; margin-top:-10px; width:20px; height:20px; text-align:center; background:#fff; /*border:1px solid #ccc;*/ border-radius: 100%; box-sizing:border-box; 
-  background: url('../../../images/mo/ico_chk_rdi.png') no-repeat;
-  background-position: -60px 0px;
-} 
-
-/* 보여질 부분의 스타일을 추가하면 된다. */ 
-.form_field input[type="radio"]:checked + label:after{ 
-  content: ''; position:absolute; top:50%; margin-top:-10px; left:0; width:20px; height:20px; background-color: #fd4800; 
-  background: url('../../../images/mo/ico_chk_rdi.png') no-repeat;
-  background-position: -80px 0px;
-}
-
-.form_field input[type="radio"]:Disabled + label:after{ 
-  content: ''; position:absolute; top:50%; margin-top:-10px; left:0; width:20px; height:20px; background-color: #fd4800; 
-  background: url('../../../images/mo/ico_chk_rdi.png') no-repeat;
-  background-position: -100px 0px;
-}
-
-
-/* 이미지 체크박스 */
-.chk_img+label span {border: 2px solid transparent; padding: 10px; box-sizing: border-box;}
-.chk_img:checked+label span {border: 2px solid #fd481a; padding: 10px; box-sizing: border-box;}
-
-
-/* form */
-.form_wrap {}
-.form_wrap::after,
-.form_field:after,
-.input_wrap::after {content: ''; display: block; clear: both;}
-
-.form_full {} 
-select, 
-.form_full input[type="text"], 
-.form_full input[type="select"], 
-.form_full input[type="password"]{ width: 100%; }
-.form_full .input_wrap, 
-.form_full.input_wrap{display: block;}
-
-.form_col_w {width: 100%;}
-.form_col_c {width: 530px; margin: 0 auto;}
-.form_field {width: 100%;margin-left: 0px !important;margin-right: 0px !important;position: relative;display: -webkit-box;display: -ms-flexbox;display: flex;}
-.input_wrap{position: relative;display: table;border-collapse: separate;}
-.input_wrap, 
-.input_label {vertical-align: top;text-align: left;}
-.input_label { line-height: 3.0; font-size: 16px; font-weight: 300;}
-.input_label span[class*="t_"]{display: inline !important;text-indent: -10px;margin-left: -10px;}
-.input_wrap .form_control, 
-.input_group_addon, 
-.input_group_btn {display: table-cell;float: left;}
-.form_control{
-  height: 45px;
-  font-size: 12px;
-  line-height: 43px;
-  -moz-box-shadow: none;
-  -webkit-box-shadow: none;
-  box-shadow: none;
-  -webkit-appearance: none;
-  border: 1px solid #D5D5D5;
-  position: relative;
-}
-.form_control.err {border: 1px solid #fd4802 !important; background: #fff6f2;}
-
-.usable {display: none;}
-.form_control.usable + .usable:before {content:'사용가능';  position:absolute; top:50%; bottom: auto; right: 20px; left: auto; transform: translateY(-50%); padding-left:15px; background: url('../../../images/mo/ico_usable1.png') no-repeat 0 40%; color:#222; font-size:12px; font-weight:200; line-height:1;}
-.sr-only {
-  position: absolute;
-  width: 1px;
-  height: 1px;
-  padding: 0;
-  margin: -1px;
-  overflow: hidden;
-  clip: rect(0,0,0,0);
-  border: 0;
-}
-
-
-/* input-File-Add */
-.imgUpload {position: relative;}
-.imgUpload::after {content: '';display: block;clear: both;}
-input[type="file"] {
-  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; 
-  overflow: hidden; clip:rect(0,0,0,0); border: 0;
-}
-.fileAdd{
-  width: 72px;height:72px;border: 1px solid #dddddd;float: right;font-size: 0;
-  background: url('../../..//images/mo/ico_btn_file.png') no-repeat;background-position: 50% 50%;
-  -webkit-appearance: none; -moz-appearance: none; appearance: none;cursor: pointer; background-size:30px;
-}
-.fileAdds {
-  padding: 14px 10px;font-size: 14px;color: #222222;border: 1px solid #dddddd;box-sizing: border-box;
-  float: right; -webkit-appearance: none;-moz-appearance: none;appearance: none;cursor: pointer;
-}
-.pics {
-  display: inline !important;float: left;margin: 0 10px 0 0;width: 72px;height:72px;
-  border: 1px solid #dddddd;box-sizing: border-box;position: relative; overflow: hidden;
-}
-.picsThumbs {
-  width: auto;height: auto;max-height: 71px;max-width: 71px;margin: auto 0;
-  position: absolute;top: 50%;bottom: auto;left: 50%;right: 0;
-  transform: translate(-50%, -50%);cursor: pointer;
-}
-.removes {
-  display: block;width:20px;height:20px;font-size: 0;text-align: center;cursor: pointer;background-color: #666666;
-  position: absolute;top: 0;bottom: auto;left: auto;right: 0;
-}
-.removes::after {
-  content: '';display: inline-block;width: 20px;height: 20px;
-  background: url('../../..//images/mo/ico_btn_cls1.png') no-repeat;background-position: 50% 50%;
-}
-
-
-/* select */
-.select {cursor: pointer;display: inline-block;position: relative;font-size: 16px;color: #333333;width: 100%;height: 40px;}
-.select+.select{margin-left: 10px;}
-.select_hidden {display: none;visibility: hidden;padding-right: 10px;}
-.select_dress {
-  position: absolute;top: 0;right: 0;bottom: 0;left: 0;padding: 12px 15px;
-  background-color: #ffffff;border: 1px solid #dddddd;box-sizing: border-box;
-  -moz-transition: all 0.05s ease-in;-o-transition: all 0.05s ease-in;
-  -webkit-transition: all 0.05s ease-in;transition: all 0.05s ease-in;
-}
-.select_dress:after {
-  content: "";width: 0;height: 0;box-sizing: border-box;position: absolute;top: 16px;right: 10px;
-  border: 6px solid transparent; border-color: #888888 transparent transparent transparent;  
-}
-.select_options {
-  display: none;position: absolute;top: 100%;right: 0;left: 0;z-index: 2;
-  margin: 0;padding: 0;list-style: none;background-color: #ffffff;
-  box-sizing: border-box;border: 1px solid #222222;border-top: 0px solid #222222;
-}
-.select_options li {
-  margin: 0;padding: 12px 0;text-indent: 15px;
-  -moz-transition: all 0.08s ease-in;-o-transition: all 0.08s ease-in;
-  -webkit-transition: all 0.08s ease-in;transition: all 0.08s ease-in;
-}
-.select_options li:hover{background-color: #dddddd;}
-.select_options li[rel="hide"] {display: none;}
-.select_options li.disabled {text-decoration:line-through; background:#f5f5f5; color:#bbb}
-.select_options li.disabled:hover,
-.select_options li.disabled:active {cursor:default;}
-.select_dress:active, .select_dress.active {background-color: #ffffff;border: 1px solid #222222;border-bottom: 1px solid #dddddd;}
-.select_dress:active:after, .select_dress.active:after {top: 9px;border-color: transparent transparent #888888 transparent;}
-
-/* textarea */
-textarea {background-color:transparent; border:1px solid #d7d7d7; width:99%; overflow-y:auto}
-.textarea_full {width:832px; padding:10px}
-.textarea_md {width:656px; width: 30%; height:108px; padding:10px; line-height:18px;}
-.textarea_sm {width:360px; width: 18%; padding:10px;}
-.txt_cnt {text-align: right;margin-top: 10px;}
-
-
-/* column*/
-.ui_row{width:100%; margin-left: 0px !important; margin-right: 0px !important;margin-bottom: 15px;position: relative; /*display: -webkit-box;display: -ms-flexbox;display: flex;*/}
-.ui_row [class^='ui_col_'] {min-height: 1px;margin-left:0.4rem; margin-right:0.4rem;}
-.ui_row [class^='ui_col_']:first-child {margin-left: 0;}
-.ui_row [class^='ui_col_']:last-child {margin-right: 0;}
-
-.ui_col_1, .ui_col_2, .ui_col_3, 
-.ui_col_4, .ui_col_5, .ui_col_6, 
-.ui_col_7, .ui_col_8, .ui_col_9, 
-.ui_col_10, .ui_col_11, .ui_col_12{
-    position: relative;
-    min-height: 1px;
-}
-
-.ui_col_1, .ui_col_2, .ui_col_3, 
-.ui_col_4, .ui_col_5, .ui_col_6, 
-.ui_col_7, .ui_col_8, .ui_col_9, 
-.ui_col_10, .ui_col_11, .ui_col_12 {
-    float: left;
-}
-.ui_col_1{width:8.33333333%}
-.ui_col_2{width:16.66666667%}
-.ui_col_3{width:25%}
-.ui_col_4{width:33.33333333%}
-.ui_col_5{width:41.66666667%}
-.ui_col_6{width:50%}
-.ui_col_7{width:58.33333333%}
-.ui_col_8{width:66.66666667%}
-.ui_col_9{width:75%}
-.ui_col_10{width:83.33333333%}
-.ui_col_11{width:91.66666667%}
-.ui_col_12{width:100%}
-
-
-/* ico */
-.ico {position: relative;/*top: 1px;*/display: inline-block; font-style: normal;font-weight: 400;line-height: 1;-webkit-font-smoothing: antialiased;-moz-osx-font-smoothing: grayscale;}
-.ico:before {display: inline-block; background-repeat:no-repeat; background-size:contain; background-position:0% 0%; vertical-align:middle;}
-.btn_ico {display: inline-block;position: relative;}
-.btn .ico {font-size: 14px;margin-right: 5px;}
-[class^="ico_"]:before {-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box;}
-[class^="ico_content_"]::before {content:''; display:block;} 
-
-.ico_logo:before {content: ""; display:block; width:184px; height:28px; background-image: url('../../../images/mo/logo_STYLE24.png'); }
-.ico_logo_ft:before {content: ""; display:block; width:150px; height:23px; background-image: url('../../../images/mo/logo_STYLE24_footer.png'); }
-.ico_search:before {content: ""; display: inline-block; width:22px; height:26px; background-image: url('../../../images/mo/ico_sch.png'); }
-.ico_bag:before {content: ""; display: inline-block; width:22px; height:26px; background-image: url('../../../images/mo/ico_bag.png');}
-.ico_content_order::before {width:40px; height: 46px; background: url('../../../images/mo/ico_content_order.png') no-repeat 50% 50%;} 
-.ico_content_find::before {width:36px; height: 46px; background: url('../../../images/mo/ico_content_find.png') no-repeat 50% 50%;} 
-.ico_content_none::before {width:36px; height: 46px; background: url('../../../images/mo/ico_content_none.png') no-repeat 50% 50%;} 
-.ico_content_security::before {width:38px; height: 43px; background: url('../../../images/mo/ico_content_security.png') no-repeat 50% 50%;} 
-.ico_content_mail::before {width:48px; height: 40px; background: url('../../../images/mo/ico_content_mail.png') no-repeat 50% 50%;} 
-.ico_content_dormant::before {width:36px; height: 46px; background: url('../../../images/mo/ico_content_dormant.png') no-repeat 50% 50%;}  
-.ico_content_dormant2::before {width:36px; height: 46px; background: url('../../../images/mo/ico_content_dormant2.png') no-repeat 50% 50%;}
-.ico_blank::before {content: ""; width:13px; height:13px; background-image: url('../../../images/mo/ico_blank.png');}
-.ico_ft_arrow_r:before {content: ""; width:11px; height:11px; background-image: url('../../../images/mo/ico_ft_arrow.png');}
-.ico_ft_arrow_b:before {content: ""; width:11px; height:11px; background-image: url('../../../images/mo/ico_ft_arrow.png'); transform: rotate(90deg);}
-.ico_ft_arrow_t:before {content: ""; width:11px; height:11px; background-image: url('../../../images/mo/ico_ft_arrow.png'); transform: rotate(-90deg);}
-.ico_kcl::before {content: ""; width:32px; height:50px; background-image: url('../../../images/mo/ico_kcl.png');}
-.ico_picker::before {content: ""; width:40px; height:40px; background:url(../../../images/mo/ico_picker.png) no-repeat 50% 50%;}
-.ico_trash::before {content: ""; width:13px; height:16px; background:url(../../../images/mo/ico_trash.png) no-repeat 50% 50%;}
-.ico_like::before {content: ""; width: 19px;height:16px;background: url(../../../images/mo/ico_like.png) no-repeat 0% 50%; background-size:cover;}
-.active .ico_like::before {background-position:100% 50%;}
-.ico_saletag::before {content: ""; width:36px;height:16px;background: url(../../../images/mo/ico_saletag.png) no-repeat 50% 50%; background-size:cover;}
-.ico_calender::before {content: ""; width:15px;height:16px;background: url(../../../images/mo/ico_calender.png) no-repeat 50% 50%; background-size:cover;}
-.ico_snslogin::before {content: ""; background-image: url(../../../images/mo/ico_snslogin.png); background-size:auto 100%;}
-.ico_snslogin.kakao::before {width:20px; height:22px; background-position:0 0;}
-.ico_snslogin.naver::before {width:16px; height:22px; background-position:-20px 0;}
-.ico_snslogin.yes24::before {width:34px; height:22px; background-position:-36px 0;}
-.ico_check::before {content: ""; width:10px; height:8px; background-image: url(../../../images/mo/ico_check.png); background-size:100% auto; margin-bottom:2px;}
-.ico_check.black::before {content: ""; background-position:0 0;}
-.ico_check.red::before {content: ""; background-position:0px -8px;}
-.ico_check.gray::before {content: ""; background-position:0px -16px;}
-.ico_phone::before {content: ""; width:15px; height:20px; background:url(../../../images/mo/ico_join_bg.png) no-repeat 0 0; background-size:cover;}
-.ico_ipin::before {content: ""; width:20px; height:20px; background:url(../../../images/mo/ico_join_bg.png) no-repeat -20px 0; background-size:cover;}
-
-
-
-/* =========================(폴딩리스트게시판) ==========================*/
-/* folding Group */
-.fold_head a::after ,
-.fold_head a div::after,
-.fold_head .fold_tit::after {content: ''; display: block; clear: both;}
-
-.foldGroup {float: left; width: 100%; margin-bottom: 20px;}
-.foldGroup > ul > li {float: left; position: relative; width: 100%; margin: 0px; border: 0px; border-top: 1px solid #E5E5E5; border-bottom: 1px solid #E5E5E5; box-sizing: border-box;}
-.foldGroup > ul > li:first-child {border-top: 1px solid #fff;}
-.foldGroup > ul > li+li {margin:0; border-top:0px solid; box-sizing:border-box;}
-.foldGroup .fold_head,
-.foldGroup .fold_foot,
-.foldGroup .fold_cont {float:left; width:100%;}
-.foldGroup .fold_head {position: relative; width:100%; border-bottom: 0;}
-.fold_head {padding: 0px; border-bottom: 1px solid transparent;}
-.fold_head::after {content: ''; position: absolute; display: inline-block; top:50%; left: auto; right:20px; transform: translateY(-50%);  width:13px; height:7px; background: url('../../../images/pc/ico_fold_arrow1.png'); background-repeat: no-repeat; background-position: 0 100%; background-size: cover;}
-.fold_head.on::after {background-repeat: no-repeat; background-position: 0 0%;}
-.foldGroup .fold_head a {display:block; width:inherit; height:100%; padding:20px; box-sizing:border-box;}
-.fold_head .fold_tit {position:relative;}
-.fold_head .fold_tit span { position: relative; height: auto; font-weight:300; color: #222; text-decoration: none; text-align: justify; letter-spacing:-0.025em;}
-.fold_head .fold_state {display:inline-block!important; width:auto; box-sizing:border-box; text-align: center; font-size:12px; font-weight: 300; color:#888;}
-.fold_head .fold_state .important {display:inline-block; position:relative; padding:2px 10px; background-color: #fd4802; color:#fff; font-size:14px; font-weight:300; padding:4px 10px 2px;}
-.fold_head .fold_state.fix {color:#222;}
-.fold_head .fold_state.done {color:#fff; background-color:#fd4801;}
-.fold_head .fold_state.doing {color:#fff; background-color:#aaa;}
-.fold_head .fold_category {width:100px; font-weight:200; text-align:center; color:#888;}
-.fold_head .data{font-size:12px; font-weight: 200; color:#888;}
-.foldGroup .fold_cont {display:none; padding: 0; position: relative; color:#666; font-weight:200; font-size:14px; line-height:1.625;}
-.fold_cont > div:first-of-type {border-top:none;}
-.fold_cont .img_group .thumb_pic {position:relative; display:inline-block; width:74px; height:74px; border:1px solid #ddd; margin-right:4px; box-sizing:border-box; overflow:hidden;} 
-.fold_cont .img_group .thumb_pic img {position:absolute; top:50%; transform: translateY(-50%); width:100%; height: auto;}
-.fold_cont .fold_detail,
-.fold_cont .fold_answer {position:relative; padding:20px;}
-.fold_cont .fold_answer {border-top:1px solid #ddd }
-.fold_cont .fold_detail .btn {margin-top:25px; padding:6px 13px; color:#222; border-color:#a1a1a1; font-size:12px; font-weight:200; background:none;}
-.fold_cont .fold_detail .img_group {margin-top: 24px; overflow: hidden;}
-.fold_cont .fold_answer > div {position:relative;}
-.fold_head .fold_tit span.prod{font-size:12px; font-weight:200; color: #888; white-space:nowrap; text-overflow:ellipsis; overflow:hidden;}
-.fold_detail,
-.fold_answer{background:#f5f5f5;}
-.fold_answer .data{font-size:12px; font-weight: 200; color:#888;}
-.fold_answer div.answer_head{color:#222; font-weight:300;}
-.fold_answer .answer_body{font-weight:200;}
-.fold_answer .answer_foot{position:relative}
-.fold_answer .answer_foot .btn_delete{position:absolute; right:0; bottom:0; font-size:12px; color:#777;}
-.fold_answer .answer_foot .btn_delete > span{position:relative; display:inline-block;}
-.fold_answer .answer_foot .btn_delete > span:after{display:block; content: ''; position:absolute; left:0; bottom:-2px; width:100%; height:1px; background-color:#777777;}
-.fold_head .fold_state,
-.fold_head .prod{padding:3px 5px;}
-.fold_head .prod{padding-right:0;}
-.fold_head .fold_state{background-color:#000; color:#fff;}
-.fold_head .fold_tit > div{padding-right:3rem;}
-.fold_head .fold_tit > div.lap1{margin-bottom:3px; display:flex;}
-.fold_head .fold_tit > div.lap2{margin-bottom:3px; white-space:nowrap; text-overflow:ellipsis; overflow:hidden;}
-.case1 .fold_head .prod{padding-bottom:0;}
-.case1 .fold_head .prod{padding-left:0;}
-.case2 .fold_head::after{margin-top:-10px;}
-
-.case2 .fold_cont .fold_detail > div,
-.case2 .fold_cont .fold_answer > div{position:relative; padding-left:17px;}
-.case2 .fold_cont .fold_detail > div:before,
-.case2 .fold_cont .fold_answer > div:before{content:''; position:absolute; left:0; top:0; font-size:1.4rem; font-weight:400;}
-.case2 .fold_cont .fold_detail > div:before{content:'Q'; color:#222222;}
-.case2 .fold_cont .fold_answer > div:before{content:'A'; color:#fd4802}
-
-
-
-
-
-
-/* =========================밀림이 추가하는 새로운 공통 ==========================*/
-
-/* 비지깔린 레이아웃  공통으로 쓸거임*/
-.blockLyout{background-color:#f5f5f5;}
-.blockLyout > .block{padding:30px 0; margin-top:1.5rem; background-color:#Fff;}
-.blockLyout > .block:first-child{margin-top:0;}
-
-
-/* 색상에 관하여... */
-/* 
-.주색상(약 7가지)
-.텍스트색상 (약 4종)
-.라인컬러 (약 5종)
-.비지컬러 (약 5종) 
-*/
-.txC1{color:#222222!important;}
-.txC2{color:#666666!important;}
-.txC3{color:#888888!important;}
-.txC4{color:#ffffff!important;}
-.bgC1{background-color:#222222!important;}
-.bgC2{background-color:#444444!important;}
-.bgC3{background-color:#dddddd!important;}
-.bgC4{background-color:#fff6f2!important;}
-.bgC5{background-color:#f5f5f5!important;}
-.bgC6{background-color:#f1f1f1!important;} /* <----풋터색상*/
-
-
-/* 버튼에 관한... */
-/* 
-.플로팅버튼(플롯팅 되어 구매하기로 이어질 버튼)
-.라지버튼(라인과 배경색으로 이루어진 버튼튼)
-.미듐버튼(사진첨부, 다음브랜드보기, 더보기, 자세히보기기 유형 보더라인 유형이며 아이콘이 들어간 유형)
-.스몰버튼1(라인과 배경색으로 이루어진 버튼)
-.스몰버튼2(라인과 배경색으로 이루어진 버튼)
-.텍스트버튼(텍스타와 아이콘으로 이루어진 버튼) 
-*/
-.btnL{width:100%; height:4.5rem;}
-.btnM{width:100%; height:4rem;}
-.btnS{width:100%; height:3rem;}
-.btnIcon_more:after,
-.btnIcon_brand:after,
-.btnIcon_detail:after{content:''; display:inline-block; margin-left:8px; width:11px; height:11px; background-position:center center; background-repeat:no-repeat; background-size:contain; vertical-align:middle;}
-.btnIcon_more:after{background-image:url('../../../images/mo/ico_btn_more.png');}
-.btnIcon_brand:after{background-image:url('../../../images/mo/ico_btn_brand.png');}
-.btnIcon_detail:after{background-image:url('../../../images/mo/ico_btn_detail.png');}
-
-.btn_dark {color: #ffffff; background-color: #222222; border-color: #222222;}
-
-
-/* 텍스트에 관한... */
-
-/* 네비게이션에 관하여... */
-
-/* 탭에 관하여... */
-
-/* 텍스트필드 관하여... */
-/* 
-.인풋박스
-.셀렉트박스
-.텍스트박스
-.체크박스
-.라디오박스 
-*/
-
-/* 팝업에 관하여... */
-
-/* 리스트에 관하여... */
-
-
-
-
-
-
-
-
-

+ 0 - 172
src/main/webapp/ux/mo/css/hyangah.css

@@ -1,172 +0,0 @@
-/* 네이버쿠폰 팝업 */
-.modal .naver .modal-header { padding: 2.5rem 2rem 2rem;}
-.modal .naver .modal_img { width: 20rem; height: 11.2rem; background: url(/images/mo/coupon_naver8.png); background-size: 20rem 11.2rem; margin: 0 auto; }
-.modal .naver .modal-body { padding: 2rem 2rem 3rem;}
-.modal .naver .modal-body p { font-size: 1.2rem; padding: 0 0 0.9rem; color: #666666;}
-.modal .naver .modal-body p:last-child { padding-bottom: 0;}
-.modal .naver .modal-footer { margin: 0;}
-.modal .naver .modal-footer .btn { background: #fd4802;}
-
-/* 쿠폰모두받기 팝업 */
-.modal_wide {display:none; width: 100%; position: absolute; left: 0; bottom: 0;}
-.modal_wide .coupon_all .modal-header { padding: 3rem 2rem 2.5rem;}
-.modal_wide .coupon_all .modal-body { width: 100%; height: 100%; padding: 0 2rem; margin: 0 auto; }
-.modal_coupon { width: 100%; background: url(/images/mo/coupon.png) no-repeat center; background-size: 100% auto; margin: 0 auto;}
-.modal_coupon li:nth-child(1) { padding: 2.5rem 0 1rem 2rem; font-size: 1.2rem;}
-.modal_coupon li:nth-child(2) { padding: 0 0 0 2rem; font-size: 1.8rem; font-weight: bold; color: #fd7039;}
-.modal_coupon li:nth-child(3) { padding: 1.2rem 0 0 2rem; font-size: 1.2rem; color: #666666;}
-.modal_coupon li:nth-child(4) { padding: 0 0 3.3rem 2rem; font-size: 1.2rem; color: #666666;}
-.modal_wide .coupon_all .modal-body .btn { height: 4rem;}
-.modal_wide .coupon_all .modal-footer .btn { height: 5.9rem; background: #fd4802; }
-
-/* 쿠폰모두받기 - 완료 */
-.modal_wide .coupon_all .modal-body.done .btn { background: #aaaaaa; border: none; }
-.modal_wide .coupon_all .modal-footer.done .btn {background: #aaaaaa; border: none;}
-
-
-/* 배송/반품/교환 title */
-.modal .pop_full_wrap .modal-header { height: 9rem; padding: 0;}
-.modal .pop_full_wrap .modal-title { display: flex;}
-.modal .pop_full_wrap .modal-title .title_img { width: 5.5rem; height: 9rem; margin: 0 2rem 0 0; background: url(/images/pc/thumb/tmp_pdDetail1.jpg) no-repeat center; background-size: 4rem 6rem;}
-.modal .pop_full_wrap .modal-title .title_text { height: 9rem;}
-.modal .pop_full_wrap .modal-title .title_text p { font-size: 1.3rem; font-weight: 600; padding-top: 2.5rem;}
-.modal .pop_full_wrap .modal-title .title_text span { display: block; font-weight: 300; padding-bottom: 1rem;}
-/* 배송/반품/교환 delivery */
-.modal .pop_full_wrap .modal-body { padding: 0;}
-.modal .pop_full_wrap .modal-body .inner { padding-bottom: 0;}
-.modal .pop_full_wrap .modal-body .delivery { margin: 9rem 0 0; padding: 3rem 0 4rem;}
-.modal .pop_full_wrap .modal-body h2 { font-size: 1.6rem;}
-.modal .pop_full_wrap .modal-body h3 { padding: 2rem 0 0.6rem; font-size: 1.2rem;}
-.modal .pop_full_wrap .modal-body p { position: relative; padding: 0.6rem 0 0 0.5rem; font-size: 1.2rem;}
-.dot:after{ content:"·"; position: absolute; top: 0.5rem; left: 0; }
-.modal .pop_full_wrap .pop_board { border: 1.2rem solid #f5f5f5;}
-/* 배송/반품/교환 change */
-.modal .pop_full_wrap .modal-body .change { margin: 0; padding: 4rem 0 6rem;}
-.modal .pop_full_wrap .change .pop_table { width: 100%; margin: 2rem 0 1rem; border-top: 0.1rem solid #222222;}
-.modal .pop_full_wrap .change .pop_table tr td:first-child {width: 10rem; padding: 0 0 0 1.2rem; font-weight: 800; background: #f5f5f5;}
-.modal .pop_full_wrap .change .pop_table tr td { font-size: 1.2rem; padding: 2.5rem 0 2.5rem 1.2rem; align-items: center; border-bottom: 1px solid #eeeeee; }
-
-/* qnalist 팝업 */
-.modal .pop_full_wrap .modal-body.qnalist { margin: 9rem 0 0; padding: 3rem 0 4rem;}
-.modal .pop_full_wrap .modal-body.qnalist .btn { width: 100%; margin: 2rem 0 2.3rem; border: 0.2rem solid #a7a7a7;}
-.modal .pop_full_wrap .modal-footer .btn { font-size: 1.5rem; position: absolute; bottom: 0; background: #222222; color: #ffffff;}
-/* qnalist_1 */
-.modal .pop_full_wrap .qnalist .check { padding: 0 0 1rem; display: flex;}
-.modal .pop_full_wrap .qnalist .check > li:first-child {width: 2rem; height: 2rem; background: url(/images/mo/check.png) no-repeat center; background-size: 100% auto; margin: 0 0.6rem 0 0;}
-.modal .pop_full_wrap .qnalist .check > li:last-child { font-size: 1.2rem; line-height: 2rem;}
-.modal .pop_full_wrap .qnalist .fold_head .fold_state { font-size: 1rem;}
-.modal .pop_full_wrap .qnalist .fold_head .prod { font-size: 1rem; color: #fd4802; font-weight: 600; margin: 0 0.5rem 0 0;}
-.modal .pop_full_wrap .qnalist .fold_head .prod_img { width: 1.4rem; height: 1.4rem; background: url(/images/pc/ico_secret.png) no-repeat center; background-size: 100% auto;}
-.modal .pop_full_wrap .qnalist .fold_head a { padding: 2rem 2rem 1.8rem;}
-.modal .pop_full_wrap .qnalist .fold_head .lap1 { margin: 0 0 0.8rem;}
-.modal .pop_full_wrap .qnalist .fold_head .lap2 { font-size: 1.3rem; font-weight: bold; margin: 0 0 0.8rem;}
-.modal .pop_full_wrap .qnalist .fold_head .id { padding: 0 1rem 0 0 ; color: #888; border-right: 1px solid #dddddd;}
-.modal .pop_full_wrap .qnalist .fold_head .data { padding: 0 0 0 1rem;}
-.modal .pop_full_wrap .qnalist .fold_head.fold_my {background: #fff6f2;}
-.modal .pop_full_wrap .qnalist .foldGroup > ul > li:first-child { border-top: 1px solid #E5E5E5;}
-.modal .pop_full_wrap .qnalist .ui_foot p { text-align: center; color: #666666;}
-.modal .modal-footer .btn { font-size: 1.5rem; background: #222222; color: #ffffff;}
-/* qnalist_2 */
-.modal .pop_full_wrap .modal-body.qnalist .no_qna { padding: 14rem 0 0; text-align: center;}
-.modal .pop_full_wrap .modal-body.qnalist .no_qna p { font-size: 1.2rem; color: #666666;}
-/* qnalist_3 */
-.modal .pop_contact .modal-header { padding: 1.6rem 0; border: none;}
-.modal .pop_contact .modal-body { padding: 0;}
-.modal .pop_contact .modal-body p { position: relative; padding: 0.6rem 0 0 0.5rem; font-size: 1.2rem;}
-.modal .pop_contact .modal-body .inner:nth-child(1) { padding-bottom: 3rem;}
-.modal .pop_contact .modal-body .inner { padding-bottom: 0;}
-.modal .pop_contact .doc_contactus { width: 100%; padding: 1.2rem; box-sizing: border-box;}
-.modal .pop_contact .txt_cnt .contactus_cnt {position:absolute; right:1.4rem; bottom:1.2rem; text-align:right; font-size:1.2rem;}
-.modal .pop_contact .modal-body .txt_cnt { margin: 0; padding: 0;}
-.modal .pop_contact .inner .check { padding: 1rem 0 1.4rem; display: flex;}
-.modal .pop_contact .qnalist .check > li:first-child {width: 2rem; height: 2rem; background: url(/images/mo/check.png) no-repeat center; background-size: 100% auto; margin: 0 0.6rem 0 0;}
-.modal .pop_contact .qnalist .check > li:last-child { font-size: 1.2rem; line-height: 2rem;}
-.modal .pop_contact .form_field .cellphone {display:block;}
-.modal .pop_contact .form_field .cellphone input[type="text"]{width:40rem;}
-.modal .pop_contact .form_field .cellphone .ck_box {display:inline-block;}
-.modal .pop_contact .cellphone .input_wrap{display:flex; flex-wrap:wrap;}
-.modal .pop_contact .cellphone .input_wrap .tt{padding:0.3rem 0; margin-right:3rem; font-weight:600;}
-.modal .pop_contact .tt { font-size: 1.4rem; line-height: 3.1rem;}
-.modal .pop_contact .form_field .cellphone .ck_box {display:inline-block;}
-.modal .pop_contact .ck_box { padding:0.3rem 0; line-height: 3.1rem;}
-.modal .pop_contact .ck_box input[type="checkbox"] + label {font-size:1.6rem; font-weight:200;}
-.modal .pop_contact .ck_box:first-child{margin-right:2rem;}
-.modal .pop_contact .modal-footer .btn { position: absolute; bottom: 0; }
-
-/* pd_deal_detail 리뷰 */
-.pd_deal_detail .inner.wide { padding-bottom: 0;}
-.pd_deal_detail .title_wrap {display: flex; justify-content: space-between; padding: 1.5rem 2rem; border-bottom: 1px solid #dddddd;}
-.pd_deal_detail .title_wrap .img { width: 4rem; height: auto; margin: 0 1.3rem 0 0; background: url(/images/pc/thumb/tmp_pdDetail1.jpg) no-repeat center; background-size: 100% auto; }
-.pd_deal_detail .title_wrap .text_Wrap { width: 25rem; font-size: 1rem; padding: 0.8rem 0;}
-.pd_deal_detail .title_wrap .text_Wrap p { padding: 1rem 0;}
-.pd_deal_detail .title_wrap .text_Wrap p span { font-weight: 800;}
-.pd_deal_detail .title_wrap .down { width: 3rem;}
-.pd_deal_detail .star { width: 100%; padding: 3rem 0 1.4rem; text-align: center; color: #fd4802; font-weight: 500;}
-.pd_deal_detail .star p { font-size: 1.4rem; padding: 0 0 0.8rem; }
-.pd_deal_detail .size_wrap .size { display: flex; justify-content: space-between; padding: 0.4rem 0;}
-.pd_deal_detail .size_wrap .size li { line-height: 3.6rem; font-size: 1.4rem; font-weight: 500;}
-.pd_deal_detail .size_wrap .size li:nth-child(1) { border: 0.15rem solid #fd4802; border-radius: 1.3rem; width: 6rem; height: 2.5rem; font-size: 1.2rem; text-align: center; line-height: 2.5rem; color: #fd4802; margin: 0.4rem 0 0;}
-.pd_deal_detail .size_wrap .size li:nth-child(2) { width: 4.5rem;}
-.pd_deal_detail .size_wrap .size li:nth-child(3) { width: 15.8rem; height: 0; margin: 1.8rem 0 0; border: 1px dashed #dddddd; }
-.pd_deal_detail .btn {width: 100%; margin: 2rem auto 2.3rem; border: 0.2rem solid #a7a7a7;}
-.pd_deal_detail .btn .button_wrap { display: flex; width: 8rem; margin: 0 auto; text-align: center;}
-.pd_deal_detail .btn .button_wrap p { margin: 0 0.8rem 0 0; line-height: 3.6rem; font-size: 1.2rem; font-weight: 600;}
-.pd_deal_detail .btn figure { width: 1.2rem; height: 0.8rem; background: url(/images/mo/ico_btn_more.png) no-repeat center; background-size: 1.2rem 0.8rem; margin: 1.4rem 0; }
-
-/* .pd_deal_detail .inner:last-child { padding-bottom: 1.6rem !important;} */
-.pd_deal_detail .review_point_wrap { padding: 2.4rem 0; margin: 0 0 1.6rem; background: #fff6f2;}
-.pd_deal_detail .review_point_to { width: 26rem; display: flex; margin: 0 auto; padding: 0 0 1.5rem;}
-.pd_deal_detail .review_point_to figure { width: 1.6rem; height: 1.6rem; background: url(/images/mo/ico_point.png) no-repeat center; background-size: 1.6rem 1.6rem; margin: 0 0.5rem 0 0;}
-.pd_deal_detail .review_point_to p { font-size: 1.4rem; font-weight: 500;}
-.pd_deal_detail .review_point_bo { display: flex; justify-content: space-between; text-align: center;}
-.pd_deal_detail .review_point_bo ul { width: 33.3333%;}
-.pd_deal_detail .review_point_bo ul li:first-child { padding: 0 0 1rem; font-size: 1rem; color: #888;}
-.pd_deal_detail .review_point_bo ul li:last-child { font-size: 1.4rem; font-weight: 900;}
-
-.pd_deal_detail .review_bottom { width: 100%; height: 5.8rem; display: flex; align-items: center;}
-.pd_deal_detail .review_bottom .icon { width: 40%; margin: 0 0.8rem; display: flex;}
-.pd_deal_detail .review_bottom .share_wrap { width: 50%; height: 2rem; margin: 0; }
-.pd_deal_detail .review_bottom .share { width: 2rem; height: 2rem; background: url(/images/pc/btn_itemShare.png)no-repeat center; background-size: 2rem 2rem; margin: 0 auto;}
-.pd_deal_detail .review_bottom .like_wrap { width: 50%; height: 2rem; margin: 0;}
-.pd_deal_detail .review_bottom .like { width: 2.3rem; height: 2rem; background: url(/images/pc/btn_itemLike.png)no-repeat left; background-size: auto; margin: 0 auto; }
-.pd_deal_detail .review_bottom .text { height: 5.8rem; line-height: 5.8rem; background: #fd4802; }
-.pd_deal_detail .review_bottom p { width: 22.8rem; text-align: center; font-size: 1.6rem; color: #ffffff;}
-
-.pd_deal_detail .inner:last-child { padding-bottom: 0 !important;}
-
-/* background: #222222; */
-
-/* pd_deal_detail 문의 */
-.pd_deal_detail .modal-body.qnalist { margin: 0; padding: 3rem 0 4rem;}
-.pd_deal_detail .modal-body p { position: relative; padding: 0.6rem 0 0 0.5rem; font-size: 1.2rem; color: #666;}
-.pd_deal_detail .modal-body.qnalist .btn { width: 100%; margin: 2rem 0 2.3rem; border: 0.2rem solid #a7a7a7;}
-.pd_deal_detail .modal-footer .btn { font-size: 1.5rem; position: absolute; bottom: 0; background: #222222; color: #ffffff;}
-.pd_deal_detail .qnalist .check { padding: 0 0 1rem; display: flex;}
-.pd_deal_detail .qnalist .check > li:first-child {width: 2rem; height: 2rem; background: url(/images/mo/check.png) no-repeat center; background-size: 100% auto; margin: 0 0.6rem 0 0;}
-.pd_deal_detail .qnalist .check > li:last-child { font-size: 1.2rem; line-height: 2rem;}
-.pd_deal_detail .qnalist .fold_head .fold_state { font-size: 1rem;}
-.pd_deal_detail .qnalist .fold_head .prod { font-size: 1rem; color: #fd4802; font-weight: 600; margin: 0 0.5rem 0 0;}
-.pd_deal_detail .qnalist .fold_head .prod_img { width: 1.4rem; height: 1.4rem; background: url(/images/pc/ico_secret.png) no-repeat center; background-size: 100% auto;}
-.pd_deal_detail .qnalist .fold_head a { padding: 2rem 2rem 1.8rem;}
-.pd_deal_detail .qnalist .fold_head .lap1 { margin: 0 0 0.8rem;}
-.pd_deal_detail .qnalist .fold_head .lap2 { font-size: 1.3rem; font-weight: bold; margin: 0 0 0.8rem;}
-.pd_deal_detail .qnalist .fold_head .id { padding: 0 1rem 0 0 ; color: #888; border-right: 1px solid #dddddd;}
-.pd_deal_detail .qnalist .fold_head .data { padding: 0 0 0 1rem;}
-.pd_deal_detail .qnalist .fold_head.fold_my {background: #fff6f2;}
-.pd_deal_detail .qnalist .foldGroup > ul > li:first-child { border-top: 1px solid #E5E5E5;}
-.pd_deal_detail .qnalist .ui_foot p { text-align: center; color: #666666;}
-
-/* 배송/반품/교환 delivery */
-/* .modal .pop_full_wrap .modal-body { padding: 0;} */
-.pd_deal_detail .inner { padding-bottom: 0;}
-.pd_deal_detail .delivery { margin: 9rem 0 0; padding: 3rem 0 4rem;}
-.pd_deal_detail h2 { font-size: 1.6rem;}
-.pd_deal_detail h3 { padding: 2rem 0 0.6rem; font-size: 1.2rem;}
-.pd_deal_detail p { position: relative; padding: 0.6rem 0 0 0.5rem; font-size: 1.2rem;}
-.dot:after{ content:"·"; position: absolute; top: 0.5rem; left: 0; }
-.pd_deal_detail .pop_board { border: 1.2rem solid #f5f5f5;}
-/* 배송/반품/교환 change */
-.pd_deal_detail .change { margin: 0; padding: 4rem 0 6rem;}
-.pd_deal_detail .change .pop_table { width: 100%; margin: 2rem 0 1rem; border-top: 0.1rem solid #222222;}
-.pd_deal_detail .change .pop_table tr td:first-child {width: 10rem; padding: 0 0 0 1.2rem; font-weight: 800; background: #f5f5f5;}
-.pd_deal_detail .change .pop_table tr td { font-size: 1.2rem; padding: 2.5rem 0 2.5rem 1.2rem; align-items: center; border-bottom: 1px solid #eeeeee; }

+ 0 - 669
src/main/webapp/ux/mo/css/hyanghoon.css

@@ -1,669 +0,0 @@
-@charset "UTF-8";
-
-/* pd_product_venefit */
-table.venefit{width:100%;}
-table.venefit thead tr th{font-size:1.3rem; font-weight:600; padding:1.4rem 0; border-bottom:0.1rem solid #b5b5b5; color:#222222}
-table.venefit tbody tr{border-bottom:0.1rem solid #f9f9f9; border-top:0.1rem solid #f4f4f4;}
-table.venefit tbody tr td{font-size:1.3rem; color:#222222; font-weight:500;}
-table.venefit tbody tr:first-child{border-top:0.1rem solid #6c6c6c;}
-
-table.vene_type1 tbody tr{display:flex; justify-content:space-between;}
-table.vene_type1 tbody tr td{padding:1.9rem 1.1rem;}
-table.vene_type1 tbody tr td:nth-of-type(2){color:#fd4802}
-
-table.vene_type1-2 tbody tr{display:flex; justify-content:space-between;}
-table.vene_type1-2 tbody tr td{padding:1.6rem;}
-table.vene_type1-2 tbody tr td p{color:#fd4802}
-
-table.vene_type2 tbody tr{display:flex;}
-table.vene_type2 tbody tr td:first-child{width:8rem;}
-table.vene_type2 tbody tr td{padding:1.6rem;}
-table.vene_type2 tbody tr td:nth-of-type(2){color:#666666; font-weight:300;}
-table.vene_type2 tbody tr td a{position:relative; top:0.5rem}
-
-.vene_tip_text{font-size:1.3rem; margin-top:1.9rem; padding-left:0.8rem; line-height:2.5rem; padding-bottom:5.9rem;}
-.vene_tip_text p:after{content:"*"; position:absolute; left:0; margin-top:0.3rem;}
-
-/* pd_size_info */
-.size_info_tab{display:flex; border-bottom:0.1rem solid #eeeeee;}
-.size_info_tab button{padding:1.6rem 2.7rem; text-align:center;width:100%; font-size:1.5rem; font-weight:bold; color:#222222}
-.size_info_tab button.active{border-bottom:0.3rem solid #fd4802; color:#fd4802;}
-
-.real_size{overflow:hidden;}
-.real_size > p{font-size:1.4rem; color:#222222; text-align:center; font-weight:600; letter-spacing:0.02rem;}
-.real_size > p:nth-of-type(1){margin-top:2.2rem}
-.real_size > p:nth-of-type(2){margin-top:0.8rem; margin-bottom:1rem;}
-.real_size > .table_tit{display:flex; justify-content:space-between; margin-top:2rem; margin-bottom:1rem;}
-.real_size > .table_tit > p{font-size:1.3rem; font-weight:500;}
-.real_size > .table_tit > p:nth-of-type(1){font-size:1.4rem; color:#000}
-.real_size > .table_tit > p:nth-of-type(2){color:#9e9e9e}
-
-.size_table{width:100%;}
-.size_table thead tr{border-bottom:0.2rem solid #f6f6f6; border-top:0.2rem solid #3f3f3f; background-color:#f5f5f5;}
-.size_table thead tr th{padding:1.4rem 1.8rem 1.2rem 1.6rem; text-align:center; color:#222222; font-size:1.5rem; font-weight:700;}
-.size_table tbody tr{border-bottom:0.2rem solid #f6f6f6}
-.size_table tbody tr td:first-child{color:#222222}
-.size_table tbody tr td{text-align:center; padding:1.4rem; font-weight:600; font-size:1.4rem;}
-
-.measure_img{width:100%; height:42.4rem; background-color: tan; margin-top:2.4rem; margin-bottom:3rem}
-.measure_text{margin-bottom:1.6rem;}
-.measure_text h2{font-size:1.3rem; margin-bottom:0.6rem;}
-.measure_text p{font-size:1.2rem;}
-
-.income_alram .permi{display:flex; border-bottom:0.1rem solid #dddddd; height:13.8rem; margin-bottom:3rem; margin-top:1rem;}
-.income_alram .permi .info_img{width:7rem; height:10.5rem; background-color:tan;}
-.income_alram .permi .info_text{margin-left:1.9rem}
-.income_alram .permi .info_text p:nth-of-type(1){font-size:1rem; font-weight:600;}
-.income_alram .permi .info_text p:nth-of-type(2){font-size:1.3rem; font-weight:500;}
-.income_alram .permi .info_text p:nth-of-type(2) > span{color:#000}
-.income_alram .measure_text h2{margin-bottom:1.5rem;}
-.income_alram .measure_text > ul{display:flex;}
-.income_alram .measure_text > ul > li > button{width:6rem; height:3.4rem; border:0.1rem solid #dddddd; margin-right:0.5rem; font-size:0.1rem; font-weight:bold; color:#000}
-.income_alram .measure_text > ul > li > button.active{border:0.1rem solid red;}
-.income_btn-b{background-color:#000 !important; color:#fff}
-.income_btn-o{background-color:#fd4802 !important; color:#fff}
-
-/* pd_product_persenal */
-.income_alram .permi .info_text.type1{padding-top:0.8rem;}
-.income_alram .permi .info_text.type1 .info_price > p{font-size:1.2rem;text-decoration:line-through; margin-bottom:-0.4rem; margin-top:0.3rem;}
-.income_alram .permi .info_text.type1 .info_price > span:nth-of-type(1){font-size:1.6rem; color:#000; font-weight:600;}
-.income_alram .permi .info_text.type1 .info_price > span:nth-of-type(2){font-size:1.6rem; color:#fd4802; margin-left:1.2rem; font-weight:600;}
-.income_alram .permi .info_text.type2{padding-top:1.7rem;}
-.income_alram .permi .info_text.type2 .info_price > span{font-weight:bold;}
-.income_alram .permi .info_text.type2 .info_price > span:nth-of-type(1){font-size:1.6rem; color:#000;}
-.income_alram .permi .info_text.type2 .info_price > span:nth-of-type(2){font-size:1.2rem;text-decoration:line-through;}
-.income_alram .permi .info_text.type2 .info_price > span:nth-of-type(3){font-size:1.6rem; color:#fd4802; margin-left:1.2rem; font-weight:600;}
-.income_alram .permi_reserv{width:100%; height:50rem; background:url(/images/mo/pd_product_reserv.png);}
-.income_alram .permi.mg0{height:10.5rem; margin-top:-3rem;}
-.income_alram .permi.mg0:nth-of-type(1){margin-top:0; border-top:0.1rem solid #dddddd;}
-.income_alram .persenal_text div{margin-bottom:2rem;}
-.income_alram .persenal_text h2{font-size:1.3rem; margin-bottom:1rem;}
-.income_alram .persenal_text p{font-size:1.3rem;}
-.income_alram .persenal_text .p-type2 > p{padding-left:0.8rem;}
-.income_alram .persenal_text .p-type2 > p:after{content:"-"; position:absolute; left:0}
-
-
-/* br_main */
-.br .pnb_mo{position:relative;}
-.br .pnb_mo > ul{display:flex; padding:0 0.8rem; height:5rem; line-height:5rem; background-color:#222222;}
-.br .pnb_mo > ul > li > a{font-size:1.6rem; color:#686868; font-weight:500; padding:0 1.2rem;}
-.br .pnb_mo > ul > li > a.on{color:#fff}
-.br .pnb_mo > button{background:url(/images/mo/br_plus.png) no-repeat; width:3.8rem; height:1.9rem; background-color:red; text-indent:-9999px; position:absolute; z-index:9; top:1.6rem; right:0; background-color:#222222;}
-.br_main{background-color:#fff;}
-.br .br_main .br_top_slide .swiper-slide img{width:100%;}
-.br .br_main .br_top_slide .swiper-slide .s-text{position:relative; top:-19.5rem; left:1.9rem; color:#fff}
-.br .br_main .br_top_slide .swiper-slide .s-text h1{font-size:2.9rem; color:#fff; line-height:3.6rem}
-.br .br_main .br_top_slide .swiper-slide .s-text p{font-size:1.5rem; color:#fff; margin-top:0.6rem}
-.br .br_main .br_top_slide .swiper-pagination{width:6rem; border-radius:1.2rem; display:inline-block; height:2.3rem; line-height:2.4rem; position:absolute; left:2rem; bottom:14rem; color:#fff; background-color:rgba(0, 0, 0, 0.3);}
-.br .br_main .br_top_slide .swiper-pagination-total{font-weight:200;}
-.br .br_main .br_top_info{position:relative; top:-8rem}
-.br .br_main .br_top_info > h1{margin-bottom:2.3rem; margin-top:1.2rem; font-size:2.4rem}
-.br .br_main .br_top_info > p:nth-of-type(1){margin-bottom:1.6rem; font-weight:bold;}
-.br .br_main .br_top_info > p:nth-of-type(2){color:#777777; line-height:2rem;}
-.br .br_main .br_top_info .btn_group_flex > div > button > span{display:inline-block; background:url(/images/mo/br_site.png) no-repeat; width:1.1rem; height:1.2rem; margin-left:0.8rem}
-
-.br .br_main .br_second_slide{position:relative; top:-2.4rem}
-.br .br_main .br_second_slide .swiper-slide img{width:100%;}
-.br .br_main .br_second_slide .swiper-slide .s-text{position:relative; top:-9rem; margin-left:1.9rem}
-.br .br_main .br_second_slide .swiper-slide .s-text p{font-size:1.6rem; font-weight:500;}
-
-.br .br_main .swiper-container > h1{text-align:center; font-size:1.8rem; margin-bottom:2.3rem; font-weight:bold;}
-.br .pd_together{position:relative; margin-top:6rem}
-.br .pd_together > .tit{text-align:center; font-size:1.7rem; margin-bottom:2.3rem; font-weight:bold;}
-.br .pd_recommend > .tit{text-align:center; font-size:1.7rem; margin-bottom:2.3rem; font-weight:bold;}
-
-.br .br_main .br_third_slide{position:relative; top:2rem}
-.br .br_main .br_third_slide .swiper-slide{margin-right:0.9rem;}
-.br .br_main .br_third_slide .swiper-slide > a > div{width:49%; float:left; margin-bottom:3.6rem; position:relative;}
-.br .br_main .br_third_slide .swiper-slide > a:nth-of-type(even) > div{float:right;}
-.br .br_main .br_third_slide .swiper-slide .s-text{margin-left:0.5rem}
-.br .br_main .br_third_slide .swiper-slide .s-text > p:nth-of-type(1){font-size:1.2rem; margin-top:1.4rem;}
-.br .br_main .br_third_slide .swiper-slide .s-text > p:nth-of-type(2){font-size:1.2rem; margin-top:0.6rem}
-.br .br_main .br_third_slide .swiper-slide .s-text > p:nth-of-type(3){font-size:1.4rem; color:#222222; font-weight:bold; margin-top:1rem}
-.br .br_main .br_third_slide .swiper-slide .s-text > p:nth-of-type(4){font-size:1.2rem; color:#fd5413; margin-top:0.6rem}
-.br .br_main .br_third_slide .swiper-pagination{position:relative;};
-.br .br_main .br_fourth_slide .swiper-slide{display:flex;}
-.br .br_main .br_fourth_slide .swiper-slide > div{background-color: royalblue;}
-
-.br .br_main .itemPrice_original{margin-left:0.6rem; width:3rem;}
-.br .br_main .pd_together .itemPrice{overflow:hidden;}
-.br .br_main .pd_together .itemPrice_sale{float: left;}
-.br .br_main .pd_together .itemPercent{float: right;}
-.br .br_main .pd_together .itemTag{font-size:1.1rem; color:#fd5413; margin-left:0.6rem; margin-top:0.4rem}
-.itemColor{margin-left:0.5rem;}
-.itemColor > li{width:1rem; height:1rem; background-color:#fff; display:inline-block; border-radius:50%; margin-top:1.2rem; margin-right:0.2rem; border:0.1rem solid rgb(194, 194, 194);}
-.itemList{margin-top:1.2rem; margin-bottom:0.6rem; margin-left:0.5rem}
-.itemList > li{display:inline; font-size:1rem; padding:0.6rem 0.4rem; background-color:#f5f5f5; margin-right:0.3rem;}
-.itemList > li:last-child{margin-right:0;}
-.tbj_product .itemTag{font-size:1.1rem; color:#fd5413; margin-left:0.6rem; margin-top:1.6rem;}
-
-.br .br_main .special_shop{position:relative; margin-top:6rem}
-.br .br_main .special_shop > h1{text-align:center; font-size:1.9rem; margin-bottom:2.4rem}
-.br .br_main .special_shop .swiper-slide{position:relative; margin-right:0.8rem;}
-.br .br_main .special_shop .swiper-slide img{width:100%; margin-bottom:1.9rem;}
-.br .br_main .special_shop .swiper-slide .s-text{position:absolute; top:19rem; margin-left:1.9rem;}
-.br .br_main .special_shop .swiper-slide .s-text p{font-size:2.3rem; font-weight:500;; color:#fff; font-weight:300;}
-.br .br_main .special_shop .swiper-slide .s-text p:nth-of-type(2){font-size:1.2rem; font-weight:100; margin-top:0.8rem}
-.br .br_main .special_shop .swiper-slide .s-info > a{display:flex;}
-.br .br_main .special_shop .swiper-slide .s-info > a > img{width:7rem; height:10.8rem;}
-.br .br_main .special_shop .swiper-slide .s-info_text{margin-left:1.9rem; margin-top:1.3rem}
-.br .br_main .special_shop .swiper-slide .s-info_text .itemPercent{left:4.5rem;}
-
-.recommendedArea{position:relative; margin-top:3rem}
-.reco_pop{background-color:#fff; position:absolute; z-index:999; top:50%; left:50%; transform:translate(-50%, -100%); width:26.6rem; height:12rem;}
-.reco_pop > a > img{margin:1.5rem 0 0 1.5rem;}
-.reco_pop > a > .pop-text{float:right; margin-right:3.6rem; margin-top:2.4rem}
-.reco_pop > a > .pop-text > h2{font-size:0.8rem; color:#8e8e8e}
-.reco_pop > a > .pop-text > p{font-size:1.1rem; margin-top:0.6rem; margin-bottom:0.8rem; color:#595959}
-.reco_pop > a > .pop-text > span{font-size:1.2rem; font-weight:bold;}
-.reco_pop > a > .pop-arrow{position:absolute; right:0; top:5rem; display:inline-block; width:0.6rem; height:1.1rem; text-indent:-9999px; background:url(/images/mo/br_pop_arrow.png); margin-right:1.5rem;}
-.recommendedArea .pd_recommend .swiper-pagination{background:rgba(0, 0, 0, 0.3); color:#fff; width:5.5rem; border-radius:1rem; height:2.2rem; line-height:2.2rem;}
-.recommendedArea .pd_recommend .swiper-pagination-total{font-weight:200;}
-.reco_information{width:100%;}
-.reco_information .pop_info{margin-left:2rem; margin-right:2rem; height:3.4rem; overflow:hidden;}
-.reco_information > button{display:block; margin:0 auto; margin-top:2rem; font-weight:600;}
-.reco_information > button > span{text-indent:-9999px; display:inline-block; width:1.2rem; height:0.7rem; background:url(/images/mo/br_arrow_down.png) no-repeat; position:relative; top:0.3rem; left:0.5rem}
-
-.br .br_main .youtu{width:calc(100% - 4rem); height:32.8rem; background-color:#444444; padding:0 2rem; position:relative; top:1.6rem; margin:0 auto;}
-.br .br_main .youtu > h1{text-align:center; font-size:1.9rem; padding-top:4rem; margin-bottom:2.2rem; font-weight:bold; color:#fff}
-.br .br_main .br_youtube_slide .swiper-slide{height:20.5rem; width:100%;}
-.br .br_main .br_youtube_slide .swiper-slide iframe{height:16.8rem; position:absolute; left:50%; transform:translate(-50%);}
-.br .br_main .br_youtube_slide .swiper-pagination{position:relative;}
-.br .br_main .br_youtube_slide .swiper-pagination .swiper-pagination-bullet{background-color:#dddddd; opacity:1; margin-right:0.7rem;}
-.br .br_main .br_youtube_slide .swiper-pagination .swiper-pagination-bullet-active{background-color:#fd4802;}
-
-.br .br_main .tbj_product{margin-top:7rem}
-.br .br_main .tbj_product .btn{width:100%; height:4rem; height:4rem; line-height:4rem;}
-.br .br_main .tbj_product > h1{text-align:center; font-size:1.8rem; margin-bottom:2.3rem; font-weight:bold;}
-.br .br_main .tbj_product .item_prod{width:49%; float:left; margin-bottom:3.6rem; position:relative;}
-.br .br_main .tbj_product .item_prod:nth-of-type(even){float:right;}
-.br .br_main .tbj_product .item_prod .s-text{margin-top:1.5rem}
-
-.pd_together .swiper-container{overflow:visible;}
-.special_shop .swiper-container{overflow:visible;}
-
-
-
-
-/* ㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡ */
-
-
-
-
-
-/* 네이버쿠폰 팝업 */
-.modal .naver .modal-header { padding: 2.5rem 2rem 2rem;}
-.modal .naver .modal_img { width: 20rem; height: 11.2rem; background: url(/images/mo/coupon_naver8.png); background-size: 20rem 11.2rem; margin: 0 auto; }
-.modal .naver .modal-body { padding: 2rem 2rem 3rem;}
-.modal .naver .modal-body p { font-size: 1.2rem; padding: 0 0 0.9rem; color: #666666;}
-.modal .naver .modal-body p:last-child { padding-bottom: 0;}
-.modal .naver .modal-footer { margin: 0;}
-.modal .naver .modal-footer .btn { background: #fd4802;}
-
-/* 쿠폰모두받기 팝업 */
-.modal.wide { width: 100%; position: fixed; left: 0; bottom: 0;}
-.modal.wide .coupon_all .modal-header { padding: 3rem 2rem 2.5rem;}
-.modal.wide .coupon_all .modal-body { width: 100%; height: 100%; padding: 0 2rem; margin: 0 auto; }
-.modal_coupon { width: 100%; background: url(/images/mo/coupon.png) no-repeat center; background-size: 100% auto; margin: 0 auto;}
-.modal_coupon li:nth-child(1) { padding: 2.5rem 0 1rem 2rem; font-size: 1.2rem; color: rgb(19,19,19); font-weight: 500;}
-.modal_coupon li:nth-child(2) { padding: 0 0 0 2rem; font-size: 1.8rem; font-weight: 800; color: #fd7039;}
-.modal_coupon li:nth-child(3) { padding: 1.2rem 0 0 2rem; font-size: 1.2rem; color: #666666;}
-.modal_coupon li:nth-child(4) { padding: 0 0 3.3rem 2rem; font-size: 1.2rem; color: #666666;}
-.modal.wide .coupon_all .modal-body .btn { height: 4rem;}
-.modal.wide .coupon_all .modal-footer .btn { height: 5.9rem; background: #fd4802; }
-
-/* 쿠폰모두받기 - 완료 */
-.modal.wide .coupon_all .modal-body.done .btn { background: #aaaaaa; border: none; }
-.modal.wide .coupon_all .modal-footer.done .btn {background: #aaaaaa; border: none;}
-
-
-/* 배송/반품/교환 title */
-.modal .pop_full_wrap .modal-header { height: 9rem; padding: 0;}
-.modal .pop_full_wrap .modal-title { display: flex;}
-.modal .pop_full_wrap .modal-title .title_img { width: 5.5rem; height: 9rem; margin: 0 2rem 0 0; background: url(/images/pc/thumb/tmp_pdDetail1.jpg) no-repeat center; background-size: 4rem 6rem;}
-.modal .pop_full_wrap .modal-title .title_text { height: 9rem;}
-.modal .pop_full_wrap .modal-title .title_text p { font-size: 1.3rem; font-weight: 600; padding-top: 2.5rem;}
-.modal .pop_full_wrap .modal-title .title_text span { display: block; font-weight: 300; padding-bottom: 1rem;}
-/* 배송/반품/교환 delivery */
-.modal .pop_full_wrap .modal-body { padding: 0;}
-.modal .pop_full_wrap .modal-body .inner { padding-bottom: 0;}
-.modal .pop_full_wrap .modal-body .delivery { margin: 9rem 0 0; padding: 3rem 0 4rem;}
-.modal .pop_full_wrap .modal-body h2 { font-size: 1.6rem;}
-.modal .pop_full_wrap .modal-body h3 { padding: 2rem 0 0.6rem; font-size: 1.2rem;}
-.modal .pop_full_wrap .modal-body p { position: relative; padding: 0.6rem 0 0 0.5rem; font-size: 1.2rem;}
-.dot:after{ content:"·"; position: absolute; top: 0.5rem; left: 0; }
-.modal .pop_full_wrap .pop_board { border: 1.2rem solid #f5f5f5;}
-/* 배송/반품/교환 change */
-.modal .pop_full_wrap .modal-body .change { margin: 0; padding: 4rem 0 6rem;}
-.modal .pop_full_wrap .change .pop_table { width: 100%; margin: 2rem 0 1rem; border-top: 0.1rem solid #222222;}
-.modal .pop_full_wrap .change .pop_table tr td:first-child {width: 10rem; padding: 0 0 0 1.2rem; font-weight: 800; background: #f5f5f5;}
-.modal .pop_full_wrap .change .pop_table tr td { font-size: 1.2rem; padding: 2.5rem 0 2.5rem 1.2rem; align-items: center; border-bottom: 0.1rem solid #eeeeee; }
-
-/* qnalist 팝업 */
-.modal .pop_full_wrap .modal-body.qnalist { margin: 9rem 0 0; padding: 3rem 0 4rem;}
-.modal .pop_full_wrap .modal-body.qnalist .btn { width: 100%; margin: 2rem 0 2.3rem; border: 0.2rem solid #a7a7a7;}
-.modal .pop_full_wrap .modal-footer .btn { font-size: 1.5rem; position: absolute; bottom: 0; background: #222222; color: #ffffff;}
-/* qnalist_1 */
-.modal .pop_full_wrap .qnalist .check { padding: 0 0 1rem; display: flex;}
-.modal .pop_full_wrap .qnalist .check > li:first-child {width: 2rem; height: 2rem; background: url(/images/mo/check.png) no-repeat center; background-size: 100% auto; margin: 0 0.6rem 0 0;}
-.modal .pop_full_wrap .qnalist .check > li:last-child { font-size: 1.2rem; line-height: 2rem;}
-.modal .pop_full_wrap .qnalist .fold_head .fold_state { font-size: 1rem;}
-.modal .pop_full_wrap .qnalist .fold_head .prod { font-size: 1rem; color: #fd4802; font-weight: 600; margin: 0 0.5rem 0 0;}
-.modal .pop_full_wrap .qnalist .fold_head .prod_img { width: 1.4rem; height: 1.4rem; background: url(/images/pc/ico_secret.png) no-repeat center; background-size: 100% auto;}
-.modal .pop_full_wrap .qnalist .fold_head a { padding: 2rem 2rem 1.8rem;}
-.modal .pop_full_wrap .qnalist .fold_head .lap1 { margin: 0 0 0.8rem;}
-.modal .pop_full_wrap .qnalist .fold_head .lap2 { font-size: 1.3rem; font-weight: bold; margin: 0 0 0.8rem;}
-.modal .pop_full_wrap .qnalist .fold_head .id { padding: 0 1rem 0 0 ; color: #888; border-right: 1px solid #dddddd;}
-.modal .pop_full_wrap .qnalist .fold_head .data { padding: 0 0 0 1rem;}
-.modal .pop_full_wrap .qnalist .fold_head.fold_my {background: #fff6f2;}
-.modal .pop_full_wrap .qnalist .foldGroup > ul > li:first-child { border-top: 0.1rem solid #E5E5E5;}
-.modal .pop_full_wrap .qnalist .ui_foot p { text-align: center; color: #666666;}
-.modal .modal-footer .btn { font-size: 1.5rem; background: #222222; color: #ffffff;}
-/* qnalist_2 */
-.modal .pop_full_wrap .modal-body.qnalist .no_qna { padding: 14rem 0 0; text-align: center;}
-.modal .pop_full_wrap .modal-body.qnalist .no_qna p { font-size: 1.2rem; color: #666666;}
-/* qnalist_3 */
-.modal .pop_contact .modal-header { padding: 1.6rem 0; border: none;}
-.modal .pop_contact .modal-body { padding: 0;}
-.modal .pop_contact .modal-body p { position: relative; padding: 0.6rem 0 0 0.5rem; font-size: 1.2rem;}
-.modal .pop_contact .modal-body .inner:nth-child(1) { padding-bottom: 3rem;}
-.modal .pop_contact .modal-body .inner { padding-bottom: 0;}
-.modal .pop_contact .doc_contactus { width: 100%; padding: 1.2rem; box-sizing: border-box;}
-.modal .pop_contact .txt_cnt .contactus_cnt {position:absolute; right:1.4rem; bottom:1.2rem; text-align:right; font-size:1.2rem;}
-.modal .pop_contact .modal-body .txt_cnt { margin: 0; padding: 0;}
-.modal .pop_contact .inner .check { padding: 1rem 0 1.4rem; display: flex;}
-.modal .pop_contact .qnalist .check > li:first-child {width: 2rem; height: 2rem; background: url(/images/mo/check.png) no-repeat center; background-size: 100% auto; margin: 0 0.6rem 0 0;}
-.modal .pop_contact .qnalist .check > li:last-child { font-size: 1.2rem; line-height: 2rem;}
-.modal .pop_contact .form_field .cellphone {display:block;}
-.modal .pop_contact .form_field .cellphone input[type="text"]{width:40rem;}
-.modal .pop_contact .form_field .cellphone .ck_box {display:inline-block;}
-.modal .pop_contact .cellphone .input_wrap{display:flex; flex-wrap:wrap;}
-.modal .pop_contact .cellphone .input_wrap .tt{padding:0.3rem 0; margin-right:3rem; font-weight:600;}
-.modal .pop_contact .tt { font-size: 1.4rem; line-height: 3.1rem;}
-.modal .pop_contact .form_field .cellphone .ck_box {display:inline-block;}
-.modal .pop_contact .ck_box { padding:0.3rem 0; line-height: 3.1rem;}
-.modal .pop_contact .ck_box input[type="checkbox"] + label {font-size:1.6rem; font-weight:200;}
-.modal .pop_contact .ck_box:first-child{margin-right:2rem;}
-.modal .pop_contact .modal-footer .btn { position: absolute; bottom: 0; }
-
-/* pd_deal_detail 리뷰 */
-.pd_deal_detail .inner.wide { padding-bottom: 0;}
-.pd_deal_detail .title_wrap {display: flex; justify-content: space-between; padding: 1.5rem 2rem; border-bottom: 0.1rem solid #dddddd;}
-.pd_deal_detail .title_wrap .img { width: 4rem; height: auto; margin: 0 1.3rem 0 0; background: url(/images/pc/thumb/tmp_pdDetail1.jpg) no-repeat center; background-size: 100% auto; }
-.pd_deal_detail .title_wrap .text_Wrap { width: 25rem; font-size: 1rem; padding: 0.8rem 0;}
-.pd_deal_detail .title_wrap .text_Wrap p { padding: 1rem 0;}
-.pd_deal_detail .title_wrap .text_Wrap p span { font-weight: 800;}
-.pd_deal_detail .title_wrap .down { width: 3rem; background: url(/images/mo/pd_btn.png) no-repeat center; background-size: 1rem 0.7rem;}
-.pd_deal_detail .star { width: 100%; padding: 3rem 0 1.4rem; text-align: center; color: #fd4802; font-weight: 500;}
-.pd_deal_detail .star p { font-size: 1.4rem; padding: 0 0 0.8rem; }
-.pd_deal_detail .size_wrap .size { display: flex; justify-content: space-between; padding: 0.4rem 0;}
-.pd_deal_detail .size_wrap .size li { line-height: 3.6rem; font-size: 1.4rem; font-weight: 500;}
-.pd_deal_detail .size_wrap .size li:nth-child(1) { border: 0.15rem solid #fd4802; border-radius: 1.3rem; width: 6rem; height: 2.5rem; font-size: 1.2rem; text-align: center; line-height: 2.5rem; color: #fd4802; margin: 0.4rem 0 0;}
-.pd_deal_detail .size_wrap .size li:nth-child(2) { width: 4.5rem;}
-.pd_deal_detail .size_wrap .size li:nth-child(3) { width: 15.8rem; height: 0; margin: 1.8rem 0 0; border: 0.1rem dashed #dddddd; }
-.pd_deal_detail .btn {width: 100%; margin: 2rem auto 2.3rem; border: 0.2rem solid #a7a7a7;}
-.pd_deal_detail .btn .button_wrap { display: flex; width: 8rem; margin: 0 auto; text-align: center;}
-.pd_deal_detail .btn .button_wrap p { margin: 0 0.8rem 0 0; line-height: 3.6rem; font-size: 1.2rem; font-weight: 600;}
-.pd_deal_detail .btn figure { width: 1.2rem; height: 0.8rem; background: url(/images/mo/ico_btn_more.png) no-repeat center; background-size: 1.2rem 0.8rem; margin: 1.4rem 0; }
-
-/* .pd_deal_detail .inner:last-child { padding-bottom: 1.6rem !important;} */
-.pd_deal_detail .review_point_wrap { padding: 2.4rem 0; margin: 0 0 1.6rem; background: #fff6f2;}
-.pd_deal_detail .review_point_to { width: 26rem; display: flex; margin: 0 auto; padding: 0 0 1.5rem;}
-.pd_deal_detail .review_point_to figure { width: 1.6rem; height: 1.6rem; background: url(/images/mo/ico_point.png) no-repeat center; background-size: 1.6rem 1.6rem; margin: 0 0.5rem 0 0;}
-.pd_deal_detail .review_point_to p { font-size: 1.4rem; font-weight: 500;}
-.pd_deal_detail .review_point_bo { display: flex; justify-content: space-between; text-align: center;}
-.pd_deal_detail .review_point_bo ul { width: 33.3333%;}
-.pd_deal_detail .review_point_bo ul li:first-child { padding: 0 0 1rem; font-size: 1rem; color: #888;}
-.pd_deal_detail .review_point_bo ul li:last-child { font-size: 1.4rem; font-weight: 900;}
-
-.pd_deal_detail .review_bottom { width: 100%; height: 5.8rem; display: flex; align-items: center; background: #222222;}
-.pd_deal_detail .review_bottom .icon { width: 40%; margin: 0 0.8rem; display: flex;}
-.pd_deal_detail .review_bottom .share_wrap { width: 50%; height: 5.8rem; margin: 0; }
-.pd_deal_detail .review_bottom .share { width: 2rem; height: 2rem; background: url(/images/mo/share_white.png)no-repeat center; background-size: 2rem 2rem; margin: 1.9rem auto;}
-.pd_deal_detail .review_bottom .like_wrap { width: 50%; height: 5.8rem; margin: 0;}
-.pd_deal_detail .review_bottom .like { width: 2.3rem; height: 2rem; background: url(/images/mo/like_white.png)no-repeat center; background-size: 2.3rem 2rem; margin: 1.9rem auto; }
-.pd_deal_detail .review_bottom .text { width: 60%; height: 5.8rem; line-height: 5.8rem; background: #fd4802;}
-.pd_deal_detail .review_bottom p { width: 22.8rem; text-align: center; font-size: 1.6rem; color: #ffffff; margin: 0 auto;}
-.pd_deal_detail .inner:last-child { padding-bottom: 0 !important;}
-
-/* pd_deal_detail 문의 */
-.pd_deal_detail .modal-body.qnalist { margin: 0; padding: 3rem 0 4rem;}
-.pd_deal_detail .modal-body p { position: relative; padding: 0.6rem 0 0 0.5rem; font-size: 1.2rem; color: #666;}
-.pd_deal_detail .modal-body.qnalist .btn { width: 100%; margin: 2rem 0 2.3rem; border: 0.2rem solid #a7a7a7;}
-.pd_deal_detail .modal-footer .btn { font-size: 1.5rem; position: absolute; bottom: 0; background: #222222; color: #ffffff;}
-.pd_deal_detail .qnalist .check { padding: 0 0 1rem; display: flex;}
-.pd_deal_detail .qnalist .check > li:first-child {width: 2rem; height: 2rem; background: url(/images/mo/check.png) no-repeat center; background-size: 100% auto; margin: 0 0.6rem 0 0;}
-.pd_deal_detail .qnalist .check > li:last-child { font-size: 1.2rem; line-height: 2rem;}
-.pd_deal_detail .qnalist .fold_head .fold_state { font-size: 1rem;}
-.pd_deal_detail .qnalist .fold_head .prod { font-size: 1rem; color: #fd4802; font-weight: 600; margin: 0 0.5rem 0 0;}
-.pd_deal_detail .qnalist .fold_head .prod_img { width: 1.4rem; height: 1.4rem; background: url(/images/pc/ico_secret.png) no-repeat center; background-size: 100% auto;}
-.pd_deal_detail .qnalist .fold_head a { padding: 2rem 2rem 1.8rem;}
-.pd_deal_detail .qnalist .fold_head .lap1 { margin: 0 0 0.8rem;}
-.pd_deal_detail .qnalist .fold_head .lap2 { font-size: 1.3rem; font-weight: bold; margin: 0 0 0.8rem;}
-.pd_deal_detail .qnalist .fold_head .id { padding: 0 1rem 0 0 ; color: #888; border-right: 0.1rem solid #dddddd;}
-.pd_deal_detail .qnalist .fold_head .data { padding: 0 0 0 1rem;}
-.pd_deal_detail .qnalist .fold_head.fold_my {background: #fff6f2;}
-.pd_deal_detail .qnalist .foldGroup > ul > li:first-child { border-top: 0.1rem solid #E5E5E5;}
-.pd_deal_detail .qnalist .ui_foot p { text-align: center; color: #666666;}
-
-/* pd_deal_detail 배송/반품/교환 */
-.pd_deal_detail .inner .delivery { padding-bottom: 2.7rem;}
-.pd_deal_detail .delivery { margin: 0; padding: 3rem 0 4rem;}
-.pd_deal_detail .inner .delivery h2 { font-size: 1.6rem;}
-.pd_deal_detail .inner .delivery h3 { padding: 2rem 0 0.6rem; font-size: 1.2rem;}
-.pd_deal_detail .inner .delivery p { position: relative; padding: 0.6rem 0 0 0.5rem; font-size: 1.2rem; color: #666666;}
-.dot:after{ content:"·"; position: absolute; top: 0.5rem; left: 0; }
-.pd_deal_detail .pop_board { border: 1.2rem solid #f5f5f5;}
-.pd_deal_detail .inner .change { margin: 0; padding: 4rem 0 4.7rem;}
-.pd_deal_detail .inner .change .pop_table { width: 100%; margin: 2rem 0 1rem; border-top: 0.1rem solid #222222; color: #666;}
-.pd_deal_detail .inner .change .pop_table tr td:first-child {width: 10rem; padding: 0 0 0 1.2rem; font-weight: 800; background: #f5f5f5;}
-.pd_deal_detail .inner .change .pop_table tr td { font-size: 1.2rem; padding: 2.5rem 0 2.5rem 1.2rem; align-items: center; border-bottom: 0.1rem solid #eeeeee; }
-.pd_deal_detail .inner .change h2 { font-size: 1.6rem;}
-.pd_deal_detail .inner .change h3 { padding: 2rem 0 0.6rem; font-size: 1.2rem;}
-.pd_deal_detail .inner .change p { position: relative; padding: 0.6rem 0 0 0.5rem; font-size: 1.2rem; color: #666666;}
-
-/* 브랜드 - br_search */
-.htop.br { overflow: hidden;}
-.htop.br .button_wrap {height: 5.5rem; display: inline-block; float: right; padding: 1.6rem 0 0; margin: 0 2.5rem 0 0; box-sizing: border-box;}
-.htop.br .button_wrap .br_search { margin: 0 2.5rem 0 0; }
-.htop.br .button_wrap .br_store img:nth-child(1) { width: 1.6rem; height: 2rem; }
-/* .htop.br .button_wrap .br_store img:nth-child(2) { width: 1.8rem; height: 1.4rem; position: absolute; top: 1.2rem; right: 1.5rem;} */
-.htop.br .button_wrap .br_store span { width: 2.1rem; height: 1.5rem; position: absolute; top: 1.2rem; right: 1.5rem; background: #fd4802; border-radius: 0.8rem; font-size: 0.8rem; color: #fff; line-height: 1.6rem;}
-
-/* 스와이퍼 */
-.br_search_wrap .swiper-container { width: 100%; height: 21.4rem; margin-left: auto; margin-right: auto; }
-.br_search_wrap .swiper-slide { text-align: center; font-size: 1.8rem; background: #fff; height: calc((100% - 30px) / 2); /* Center slide text vertically--> */ display: -webkit-box; display: -ms-flexbox; display: -webkit-flex; display: flex; -webkit-box-pack: center; -ms-flex-pack: center; -webkit-justify-content: center; justify-content: center; -webkit-box-align: center; -ms-flex-align: center; -webkit-align-items: center; align-items: center; }
-.br_search_wrap .swiper-slide {width: 12rem; height: 8rem;}
-.br_search_wrap .swiper-slide {border-bottom: 0.1rem solid #eeeeee; border-right: 1px solid #eeeeee;}
-.br_search_wrap .swiper-slide:nth-child(1) {border-left: 0.1rem solid #eeeeee;}
-.br_search_wrap .swiper-slide:nth-child(2) {border-left: 0.1rem solid #eeeeee;}
-.br_search_wrap .swiper-slide li { width: 12.6rem; height: 8rem; margin: 0; padding: 2.5rem 2rem 0; box-sizing: border-box;}
-.swiper-pagination-bullet-active { background: #fd4802;}
-.br_search_wrap .hmenu .line { width: 100%; height: 1.4rem; background: #f5f5f5; margin: 1rem 0 0;}
-.br_search_wrap .hmenu .brand_si .swiper-pagination-bullet{margin-right:0.8rem;}
-.br_search_wrap .hmenu .brand_si .swiper-pagination-bullet:last-child{margin-right:0;}
-.br_search_wrap .brand_title { width: 100%; height: 4.3rem; margin: 2.4rem 0 0; border-bottom: 0.2rem solid black; }
-.br_search_wrap .brand_title input { width: 100%; height: 4.3rem; float: left; border: none;  padding: 0; font-size: 1.6rem; font-weight: 100; color: #888; border-bottom:2px solid #000; margin-bottom:1.6rem;}
-.br_search_wrap .brand_title .btn_x { width: 2rem; height: 2rem; background: #aaa; border-radius: 1rem; color: #fff; font-size: 1rem; position: absolute; top: 1.2rem; right: 5rem; }
-.br_search_wrap .brand_title button img { width: 2rem; height: 2rem; position: absolute; top: 1.2rem; right: 2rem;}
-.br_search_wrap .inner .result {padding-bottom:3rem; margin: 1.5rem 0 1rem; border-bottom:0.1rem solid #dddddd;}
-.br_search_wrap .inner:last-child .result {border:0px none;}
-.br_search_wrap .inner .result h2 { font-size: 1.6rem; font-weight: 700; margin-bottom:0.6rem;}
-.br_search_wrap .brand a {display:block; padding: 2rem 0 0; font-size: 1.2rem;}
-.br_search_wrap .brand a span { display: block; font-size: 0.8rem; color: #888;}
-
-/* 브랜드 - br_search_nodata */
-.br_search_wrap .nodata { width: 100%; height: 100%; margin: 14rem 0; padding: 0;}
-.br_search_wrap .inner.nodata:last-child {margin-bottom: 14rem;}
-.br_search_wrap .brand.nodata { text-align: center;}
-.br_search_wrap .brand.nodata p { padding: 0 0 2.4rem; font-size: 1.4rem; color: #666;}
-.br_search_wrap .brand.nodata .btn { font-size: 1.2rem; border: 0.1rem solid #888; height: 3rem; padding: 0 1rem;}
-
-
-/* 브랜드 - 룩북 */
-.htop.br_lookbook { overflow: hidden; border: none !important;}
-header .htop.br_lookbook .btn_back span i { background: #fff;}
-header .htop.br_lookbook h1 { color: #fff; margin: 1rem 0 0 2rem;}
-header .htop.br_lookbook .btn_back { margin: 1.4rem 0 0 0;}
-header .htop.br_lookbook .btn_back img { width: 1.5rem; height: 1rem;}
-.htop.br_lookbook .button_wrap {height: 5.5rem; display: inline-block; float: right; padding: 1.6rem 0 0; margin: 0 2.5rem 0 0; box-sizing: border-box;}
-.htop.br_lookbook .button_wrap .br_search { margin: 0 2.5rem 0 0; width: 2.3rem; height: 2.4rem;}
-.htop.br_lookbook .button_wrap .br_store img:nth-child(1) { width: 1.8rem; height: 2.2rem; }
-.htop.br_lookbook .button_wrap .br_store span { width: 2.1rem; height: 1.5rem; position: absolute; top: 1.2rem; right: 1.5rem; background: #fd4802; border-radius: 0.8rem; font-size: 0.8rem; color: #fff; line-height: 1.6rem;}
-
-.br_lookbook .title {font-size: 1.2rem;}
-.br_lookbook .title span { color: #fd4802; font-weight: 800;}
-.br_lookbook .collection figure { margin: 0 auto; width: 100%; height: 32rem; margin: 0 0 2rem; overflow: hidden; background-repeat: no-repeat; background-position: center center; background-size: cover; }
-.br_lookbook .collection figure img { width: 100%; height: auto; }
-.br_lookbook .collection p { margin: 0 0 4rem; font-size: 1.2rem; font-weight: 800;}
-.last_page { text-align: center; font-size: 1.2rem; padding: 2.4rem 0 6rem; border-top: 0.1rem solid #f5f5f5; color: #a7a7a7; background-color:#fff;}
-.last_page.mt50{padding-top:2rem;}
-main.container .br_lookbook .inner:last-child {padding-bottom: 0;}
-.br_lookbook .no_lb_wrap { text-align: center; margin: 12rem 0 14rem;}
-.br_lookbook .no_lb_wrap p { text-align: center; font-size: 1.2rem; color: #a7a7a7; margin: 0 0 2.4rem;}
-.br_lookbook .no_lb_wrap .btn { font-size: 1.2rem; height: 3rem; }
-
-/* 브랜드 - 룩북 detail */
-.br_lookbook .title { font-size: 1,4rem; font-weight: 800; padding: 1.6rem 0 2rem; margin: 0;}
-.br_lookbook .inner { margin-bottom: 0; padding-bottom: 0;}
-.br_lookbook .inner .lb_text p { height: 3.4rem; overflow: hidden; margin: 0 0 2.4rem; font-size: 1.2rem; font-weight: 300; line-height: 1.8rem;}
-.br_lookbook .inner .lb_text .btn { width: 100%; height: 2.4rem; text-align: center; margin: 0 0 2.4rem; font-size: 1.2rem; border:0px none;}
-.br_lookbook .inner .lb_text .btn > p{display:inline}
-.br_lookbook .inner .lb_text .btn > span{display:inline-block; width:1.2rem; height:0.7rem; background:url(/images/mo/br_arrow_down.png); margin-left:0.5rem; margin-bottom:0.1rem}
-
-.br .br_lookbook .br_third_slide .swiper-slide{margin-right:0.7rem;}
-.br .br_lookbook .br_third_slide .swiper-slide > a > div{width:49%; float:left; margin-bottom:3.6rem; position:relative;}
-.br .br_lookbook .br_third_slide .swiper-slide > a:nth-of-type(even) > div{float:right;}
-.br .br_lookbook .br_third_slide .swiper-slide .s-text{margin-left:0.5rem}
-.br .br_lookbook .br_third_slide .swiper-slide .s-text > p:nth-of-type(1){font-size:0.8rem; margin-top:1.4rem}
-.br .br_lookbook .br_third_slide .swiper-slide .s-text > p:nth-of-type(2){font-size:1rem; margin-top:0.6rem}
-.br .br_lookbook .br_third_slide .swiper-slide .s-text > p:nth-of-type(3){font-size:1.2rem; color:#222222; font-weight:bold; margin-top:1rem}
-.br .br_lookbook .br_third_slide .btn { width: 100%; border-color: #fd4802; color: #fd4802; margin: 0 0 4rem;}
-.br .br_lookbook .br_otherbrand { margin: 1.2rem 0 0; padding: 6rem 0 4rem;}
-.br .br_lookbook .br_otherbrand .tit { font-size: 1.6rem; text-align: center; margin: 0 0 2rem; }
-
-.br .br_lookbook .item_prod .itemPic { padding-top: 0; height: 15rem;}
-.br .br_lookbook .item_prod .itemPic::after { height: 15rem;}
-
-.br .br_lookbook .recommendedArea{margin-top:-0.3rem}
-
-
-/* ㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡ검색ㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡ */
-.sch .sch_result{background-color:#f5f5f5;}
-.sch .sch_result .inner{background-color:#fff;}
-.sch .sch_result .brand_title { width: 100%; height: 4.3rem; margin: 2.4rem 0 0; border-bottom: 0.2rem solid black; }
-.sch .sch_result .brand_title input { width: 100%; height: 4.3rem; float: left; border: none;  padding: 0; font-size: 1.6rem; font-weight: 100; color: #888; border-bottom:0.2rem solid #000; margin-bottom:1.6rem;}
-.sch .sch_result .brand_title .btn_x { width: 2rem; height: 2rem; background: #aaa; border-radius: 1rem; color: #fff; font-size: 1rem; position: absolute; top: 1.2rem; right: 5.5rem; }
-.sch .sch_result .brand_title button img { width: 2rem; height: 2rem; position: absolute; top: 1.2rem; right: 2.5rem;}
-.sch .sch_result .hot-key{font-size:1.6rem; margin-bottom:1.6rem; margin-left:2rem}
-.sch .sch_result .related_keyword .sch_list_slide .swiper-wrapper{}
-.sch .sch_result .related_keyword .sch_list_slide .swiper-wrapper .swiper-slide{}
-.sch .sch_result .related_keyword .sch_list_slide .swiper-wrapper .swiper-slide > a{display:inline-block; background-color:#f5f5f5; padding:0.8rem 1.3rem; border-radius:2rem;}
-.sch .sch_result .area_taps{}
-.sch .sch_result .area_taps > ul{display:flex; border-top:1px solid #eeeeee; border-bottom:1px solid #eeeeee;}
-.sch .sch_result .area_taps > ul > li{width:33.3%; text-align:center;}
-.sch .sch_result .area_taps > ul > li > a{display:block; padding:1.5rem 0; font-size:1.4rem; color:#000; font-weight:600; margin-top:0.3rem;}
-.sch .sch_result .area_taps > ul > li > a.on{color:#fd4802; border-bottom:0.2rem solid #fd4802;}
-.sch .sch_result .area_taps > ul > li > a > span{font-size:0.8rem; color:#888888; margin-left:0.2rem}
-.sch .sch_result .tbj_product .swiper-container{overflow:visible;}
-.sch .sch_result .tbj_product .swiper-wrapper{}
-.sch .sch_result .tbj_product .swiper-slide{display:flex; margin-right:0.6rem;}
-.sch .sch_result .tbj_product .itemPrice_original{margin-left:0.6rem; width:3rem;}
-.sch .sch_result .tbj_product .item_prod .s-text{margin-top:1.5rem;}
-.sch .sch_result .tbj_product > h1{padding:4rem 0 2rem; font-size:1.5rem;}
-.sch .sch_result .tbj_product.no-slide .filter-list{margin:4rem 0 0}
-.sch .sch_result .tbj_product.no-slide > h1{font-size:1.8rem; margin-bottom:2.3rem; font-weight:bold;}
-.sch .sch_result .tbj_product.no-slide .item_prod{width:49%; float:left; margin-bottom:3.6rem; position:relative;}
-.sch .sch_result .tbj_product.no-slide .item_prod:nth-of-type(even){float:right;}
-.sch .sch_result .tbj_product.no-slide .item_prod .s-text{margin-top:1.5rem}
-.sch .sch_result .banner{margin:0 -2rem;}
-.sch .sch_result .banner > img{width:100%; height:9.3rem; margin-bottom:4rem;}
-.sch .sch_result .btPop_full{margin-top:59rem}
-.sch .sch_result .btPop_full .btPop_body > ul{padding-top:1.6rem}
-.sch .sch_result .btPop_full .btPop_body > ul > li{}
-.sch .sch_result .btPop_full .btPop_body > ul > li > a{display:block; border:0.1rem solid #eeeeee; text-align:center; padding:1.4rem 0; font-weight:600; border-radius:3rem; margin-bottom:0.8rem; color:#686868}
-.sch .sch_result .btPop_full .btPop_body > ul > li > a.on{border:0.1rem solid #fd4802; color:#fd4802}
-
-.filter-list{display:flex; justify-content:space-between;padding-bottom:2rem; font-size:1.2rem}
-.filter-list .f_left > span{color:#fd4802; font-weight:bold;}
-.filter-list .f_right > a:nth-of-type(1) > span{display:inline-block; width:0.7rem; height:0.4rem; background:url(/images/mo/shc_arrow.png); position:relative; top:-0.2rem; margin-left:0.5rem}
-.filter-list .f_right > a:nth-of-type(2){margin-left:1rem}
-.filter-list .f_right > a:nth-of-type(2) > span{display:inline-block; width:1rem; height:1rem; background:url(/images/mo/shc_filter.png); position:relative; top:0.1rem; margin-left:0.5rem}
-
-/* sch_result nodata */
-.sch .sch_result .nodata { width: 100%; height: 100%; margin:0; padding:14rem 0;}
-.sch .sch_result .list_content{}
-.sch .sch_result .list_content .brand{display:none;}
-.sch .sch_result .list_content.nodata .brand{display:block;}
-.sch .sch_result .inner.nodata:last-child {margin-bottom: 14rem;}
-.sch .sch_result .brand.nodata { text-align: center;}
-.sch .sch_result .brand.nodata p { padding: 0 0 2.4rem; font-size: 1.4rem; color: #666;}
-.sch .sch_result .brand.nodata p.type2 > span{color:#fd4802}
-.sch .sch_result .brand.nodata .btn { font-size: 1.2rem; border: 0.1rem solid #888; height: 3rem; padding: 0 1rem;}
-.sch .sch_result .tbj_product.no-slide .product-wrapper{overflow:hidden;}
-
-/* sch_result 기획전 */
-.sch .sch_result .item_prod{width:100%;}
-.sch .sch_result .item_prod .itemName{margin-top:1rem; color:#535353}
-.sch .sch_result .item_prod .rank::after{background-color:#fd4802;}
-.sch .sch_result .item_prod .rank > span{font-size:0.9rem;}
-.sch .sch_result .item_prod .itemPic.ver{padding-top:99%; margin-top:3rem;}
-.sch .sch_result .item_prod .itemPlan{display:flex;}
-.sch .sch_result .item_prod .itemPlan > div{margin-right:0.6rem;}
-.sch .sch_result .item_prod .itemPlan > div:last-child{margin-right:0;}
-.sch .sch_result .item_prod .itemEvent{width:100%;}
-.sch .sch_result .item_prod .itemEvent p:nth-of-type(1){font-size:1.4rem;}
-.sch .sch_result .item_prod .itemEvent p:nth-of-type(2){font-size:0.9rem; color:#8b8b8b}
-
-.sch .sch_result.all .tbj_product{margin-top:1.2rem}
-.sch .sch_result.all .search-list{max-height:41rem; overflow:auto;}
-.sch .sch_result.all .search-list > ul{margin-top:1.4rem; margin-bottom:5rem;}
-.sch .sch_result.all .search-list > ul > li > a{display:flex; justify-content:space-between; padding:1rem 0 1rem 2rem;}
-.sch .sch_result.all .search-list > ul > li > a > p{position:relative;}
-.sch .sch_result.all .search-list > ul > li > a > p::after{content:""; background:url(/images/mo/shc_clock.png) no-repeat; width:1.5rem; height:1.6rem; display:inline-block; position:absolute; left:-2rem; top:-0.1rem}
-.sch .sch_result.all .search-list > ul > li > a > span{color:#8d8d8d}
-.sch .sch_result.all .allresult-tit{display:flex; justify-content:space-between;}
-.sch .sch_result.all .allresult-tit > h1{font-size:1.5rem; margin-top:2.5rem; margin-bottom:2rem}
-.sch .sch_result.all .allresult-tit > p{margin-right:1.9rem; margin-top:2.5rem; font-size:1.2rem; color:#888888}
-.sch .sch_result.all .allresult-tit > p::after{content:""; background:url(/images/mo/shc_refresh.png) no-repeat; width:1.1rem; height:1.1rem; display:inline-block; position:absolute; margin-top:0.2rem; right:2.1rem;}
-.sch .sch_result.all .itemTag{border:0.1rem solid #fd4802; display:inline; padding:0.3rem 0.6rem; border-radius:1rem; position:relative; top:1rem}
-.sch .sch_result.all .relative-list{height:33rem; overflow:scroll;}
-.sch .sch_result.all .relative-list > ul{border-top:0.2rem solid #f4f4f4; padding-top:1.4rem;}
-.sch .sch_result.all .relative-list > ul > li > a {display:block; padding:0.6rem 0;}
-.sch .sch_result.all .relative-list > ul > li > a > p{font-weight:500;}
-.sch .sch_result.all .relative-list > ul > li > a > p > span{color:#fd4802;}
-.sch .sch_result.all .category{margin-top:1.2rem;}
-.sch .sch_result.all .category > h2{font-size:1.5rem; padding-top:2.4rem}
-.sch .sch_result.all .category > ul{margin-top:1.2rem}
-.sch .sch_result.all .category > ul > li > p{display:block; padding:0.5rem 0; color:#a5a5a5; font-size:1.2rem;}
-.sch .sch_result.all .category > ul > li > p > span{color:#222222}
-.sch .sch_result.all .brand.nodata > p > span{color:#fd4802;}
-.sch .sch_result.all .tbj_product.no-slide > h2{font-size:1.5rem; padding-top:2.3rem; margin-bottom:2rem; font-weight:500;}
-
-
-.sch .sch_result.brand_all .tbj_product{margin-top:1.2rem}
-.sch .sch_result.brand_all .search-list{max-height:41rem; overflow:auto;}
-.sch .sch_result.brand_all .search-list > ul{margin-top:1.4rem; margin-bottom:5rem;}
-.sch .sch_result.brand_all .search-list > ul > li > a{display:flex; justify-content:space-between; padding:1rem 0 1rem 2rem;}
-.sch .sch_result.brand_all .search-list > ul > li > a > p{position:relative;}
-.sch .sch_result.brand_all .search-list > ul > li > a > p::after{content:""; background:url(/images/mo/shc_clock.png) no-repeat; width:1.5rem; height:1.6rem; display:inline-block; position:absolute; left:-2rem; top:-0.1rem}
-.sch .sch_result.brand_all .search-list > ul > li > a > span{color:#8d8d8d; display:inline-block; width:2rem; text-align:right;}
-.sch .sch_result.brand_all .allresult-tit{display:flex; justify-content:space-between;}
-.sch .sch_result.brand_all .allresult-tit > h1{font-size:1.5rem; margin-top:2.5rem; margin-bottom:2rem}
-.sch .sch_result.brand_all .allresult-tit > p{margin-right:1.9rem; margin-top:2.5rem; font-size:1.2rem; color:#888888}
-.sch .sch_result.brand_all .allresult-tit > p::after{content:""; background:url(/images/mo/shc_refresh.png) no-repeat; width:1.1rem; height:1.1rem; display:inline-block; position:absolute; margin-top:0.2rem; right:2.1rem;}
-.sch .sch_result.brand_all .itemTag{display:inline; padding:0.3rem 0; position:relative; top:1rem}
-.sch .sch_result.brand_all .itemTag.circle{border:0.1rem solid #fd4802; display:inline; padding:0.3rem 0.6rem; border-radius:1rem; position:relative; top:1rem}
-.sch .sch_result.brand_all .relative-list{height:33rem; overflow:scroll;}
-.sch .sch_result.brand_all .relative-list > ul{padding-top:1.4rem;}
-.sch .sch_result.brand_all .relative-list > ul > li > a {display:block; padding:0.6rem 0;}
-.sch .sch_result.brand_all .relative-list > ul > li > a > p{font-weight:500;}
-.sch .sch_result.brand_all .relative-list > ul > li > a > p > span{color:#fd4802;}
-.sch .sch_result.brand_all .category{margin-top:1.2rem;}
-.sch .sch_result.brand_all .category > h2{font-size:1.5rem; padding-top:2.4rem}
-.sch .sch_result.brand_all .category > ul{margin-top:1.2rem}
-.sch .sch_result.brand_all .category > ul > li > p{display:block; padding:0.5rem 0; color:#a5a5a5; font-size:1.2rem;}
-.sch .sch_result.brand_all .category > ul > li > p > span{color:#222222}
-.sch .sch_result.brand_all .brand.nodata > p > span{color:#fd4802;}
-.sch .sch_result.brand_all .tbj_product.no-slide > h2{font-size:1.5rem; padding-top:2.3rem; margin-bottom:2rem; font-weight:500;}
-.sch .sch_result.brand_all .filter-list{margin-bottom:0 !important}
-.sch .sch_result.brand_all .related_keyword{border-bottom:0.1rem solid #eeeeee; margin:-1.3rem -2rem 0; padding:0 2rem 1.3rem;}
-
-
-/* 전시상품리스트 공통(default) */
-.sch .sub_category{padding:0.8rem 0; position:relative; top:-0.7rem}
-.sch .sub_category .cate_wrap{white-space:nowrap; overflow:scroll;}
-.sch .sub_category .cate_wrap a{float:none; display:inline-block; margin-bottom:0; background: #f5f5f5; padding:1.2rem 1.4rem; font-size: 1.3rem; color: #000; border-radius:2rem; line-height: 1;}
-.sch .sub_category .cate_wrap a:first-child{margin-left:2rem;}
-.sch .sub_category .cate_wrap a:last-child{margin-right:2rem;}
-/* .sch .sub_category .cate_wrap a.on{border:1px solid #fe4904; color:#fe4904;} */
-
-/* 기획전 - dp_exhibition */
-.sch .sch_result .list_content .itemsGrp.n3{margin-bottom:0; font-size:0;}
-.sch .sch_result .list_content .itemsGrp.n3 .item_prod {width: 31.666%; margin-right: 2.5%; margin-top:0;}
-.sch .sch_result .list_content .itemsGrp.n3 .item_prod:nth-child(2n) {margin-right: 2.5%;}
-.sch .sch_result .list_content .itemsGrp.n3 .item_prod:nth-child(3n) {margin-right:0;}
-.sch .sch_result .list_content .itemsGrp.n3 .item_prod{margin-bottom:0;}
-.sch .sch_result .list_content .list_item{padding-top:3rem}
-.sch .sch_result .list_content .list_item > div{margin-bottom:6rem;}
-.sch .sch_result .list_content .list_item .visual{position:relative; margin-bottom:2rem;}
-.sch .sch_result .list_content .list_item .visual img {width: 100%;}
-.sch .sch_result .list_content .list_item .visual .txtWrap {position: absolute; left: 2rem; bottom: 4rem; color: fff;}
-.sch .sch_result .list_content .list_item .visual .txtWrap p {color: #fff; font-size: 2.4rem; font-weight: 500; line-height: 1.2;}
-.sch .sch_result .list_content .list_item .visual .txtWrap p.txt_xs {font-size: 1.2rem; margin-top:1.6rem; font-weight: 300;}
-.sch .sch_result .list_content .list_defult{display:none; text-align:center; padding:11rem 0;}
-.sch .sch_result .list_content .list_defult p{text-align:center; font-size:1.3rem; color:#888888; font-weight:300;} 
-.sch .sch_result .list_content .list_defult .btn{margin-top:2.4rem; font-size:1.1rem; height:3rem;}
-.sch .sch_result .list_content .list_last{ padding: 2.5rem 0; font-size: 1.1rem; color: #888888; font-weight: 300; text-align: center; border-top:1px solid #f5f5f5;}
-.sch .sch_result .list_content .list_defult{display:none; text-align:center; padding:11rem 0;}
-.sch .sch_result .list_content .list_defult p{text-align:center; font-size:1.3rem; color:#888888; font-weight:300;} 
-.sch .sch_result .list_content .list_defult .btn{margin-top:2.4rem; font-size:1.1rem; height:3rem;}
-.sch .sch_result .list_content .list_last{ padding: 2.5rem 0; font-size: 1.1rem; color: #888888; font-weight: 300; text-align: center; border-top:1px solid #f5f5f5;}
-.sch .sch_result .list_content.nodata .lookbookGrp,
-.sch .sch_result .list_content.nodata .itemsGrp,
-.sch .sch_result .list_content.nodata .list_item,
-.sch .sch_result .list_content.nodata .list_last{display:none;}
-.sch .sch_result .list_content.nodata .list_defult{display:block;} 
-.sch .sch_result .list_item.pro .itemName{font-size:1.1rem; color:#000; width:20rem;}
-.sch .sch_result .list_item.pro .itemPrice .itemPrice_sale{font-size:0.9rem; color:#888888}
-
-/* 검색공통 */
-.sch .count_wrap {padding:2rem 0;}
-.sch .count_wrap:after{display:block; content:''; clear:both;}
-.sch .count_wrap > div:nth-child(1) {float:left;}
-.sch .count_wrap > div:nth-child(1) p {font-size:1.2rem; color:#888;}
-.sch .count_wrap > div:nth-child(1) p span {color:#fd4802; font-weight:bold;}
-.sch .count_wrap > div:nth-child(2) {float: right; }
-.sch .sch_util{display:block; float:right; text-align:right; font-size: 0;}
-.sch .sch_util li {display:inline-block; margin-left:2rem; vertical-align:middle;}
-.sch .sch_util li:first-child{margin-left:0;}
-.sch .sch_util li a{font-size:1.2rem; color:#222!important;}
-.sch .sch_util li a.sort:after{content:''; position:relative; top:0.3rem; margin-left:0.8rem; display:inline-block; width:0rem; border:0.5rem solid transparent; border-bottom-color:#222; -webkit-transform:rotate(180deg); transform:rotate(180deg);}
-.sch .sch_util li a.filter:after{content:''; position:relative; top:0.1rem;  margin-left:0.8rem; display:inline-block; width:1rem; height:1rem; background: url(/images/mo/icon_list_filter.png) center center no-repeat; background-size:contain;}
-.sch .sch_util li a.refresh{color:#888!important;}
-.sch .sch_util li a.refresh:after{content:''; position:relative; top:0.1rem;  margin-left:0.8rem; display:inline-block; width:1.1rem; height:1.1rem; background: url(/images/mo/icon_best_refresh.png) center center no-repeat; background-size:contain;}
-
-/* select 커스텀 (필터용) */
-.sch .sch_util .select {cursor: pointer;display: inline-block;position: relative;top:-1px; font-size: 1.2rem;color: #333333;width: 100%;height:1.6rem; line-height:1.6rem;}
-.sch .sch_util .select+.select{margin-left: 10px;}
-.sch .sch_util .select_hidden {display: none;visibility: hidden;padding-right: 10px;}
-.sch .sch_util .select_dress {
-  position: relative;top: 0;right: 0;bottom: 0;left: 0;padding:0 15px 0 3px;
-  background-color: #ffffff;border: 1px solid #fff;box-sizing: border-box;
-  -moz-transition: all 0.05s ease-in;-o-transition: all 0.05s ease-in;
-  -webkit-transition: all 0.05s ease-in;transition: all 0.05s ease-in;
-}
-.sch .sch_util .select_dress:after {
-  content: "";width: 0;height: 0;box-sizing: border-box;position: absolute;top:5px;right:0;
-  border: 5px solid transparent; border-color: #222222 transparent transparent transparent;  
-}
-.sch .sch_util .select_options {
-  display: none;position: absolute;top:2rem;right: 0;left: 0;z-index: 2;
-  margin: 0;padding: 0;list-style: none;background-color: #ffffff;
-  box-sizing: border-box;border:0;border-top: 0px solid #222222;
-}
-.sch .sch_util .select_options li {
-  margin: 0;padding:3px 3px;text-indent:0; display:block; text-align:left;
-  -moz-transition: all 0.08s ease-in;-o-transition: all 0.08s ease-in;
-  -webkit-transition: all 0.08s ease-in;transition: all 0.08s ease-in;
-}
-.sch .sch_util .select_options li:hover{background-color: #dddddd;}
-.sch .sch_util .select_options li[rel="hide"] {display: none;}
-.sch .sch_util .select_options li.disabled {text-decoration:line-through; background:#f5f5f5; color:#bbb}
-.sch .sch_util .select_options li.disabled:hover,
-.sch .sch_util .select_options li.disabled:active {cursor:default;}
-.sch .sch_util .select_dress:active:after, .dp .dp_util .select_dress.active:after {top:0;border-color: transparent transparent #222 transparent;}
-
-/* 전시 카테고리 공통 */
-.sch .category_open{position:relative; padding: 1.1rem 1.5rem; font-size:1.3rem; color:#222; font-weight: 300; text-align:left; background-color: #ffffff; border: 1px solid #dddddd; box-sizing: border-box;}
-.sch .category_open:after {content: ""; width: 0; height: 0; box-sizing: border-box; position: absolute; top: 1.8rem; right: 1.5rem; border: 6px solid transparent; border-color: #888888 transparent transparent transparent;}
-.sch .category_box{visibility:hidden; position:fixed; width:100%; height:100%; top:0; left:0; background:rgba(0,0,0,.5); z-index:500;}
-.sch .category_box.active{visibility:visible;}
-.sch .category_box .lap{position:absolute; bottom:0; left:0; padding:3rem 0; width:100%; background:#fff;}
-.sch .category_box .category_list{min-height:15rem; max-height:40rem; overflow-y:auto;}
-.sch .category_box .category_close{position:absolute; top:-3.8rem; left:50%; width:1.6rem; height:1.6rem; background-image: url(/images/mo/ico_pop_cls_w.png); background-repeat:no-repeat; background-position:center center; font-size:0; text-indent:-999999px; background-size: contain; -webkit-transform:translateX(-50%); transform:translateX(-50%);}
-.sch .category_box .selcet_list {padding:0 2rem;}
-.sch .category_box .selcet_list ul {}
-.sch .category_box .selcet_list ul li {margin-top:0.8rem; padding:0.9rem 1rem; background:#fff; text-align:center; border:1px solid #eee; border-radius:4rem;;}
-.sch .category_box .selcet_list ul li a {display:inline-block; color:#666; font-size:1.3rem; font-weight:300; color:inherit;}
-.sch .category_box .selcet_list ul li.active{border-color:#fd4802; color:#fd4802; font-weight:500;}

+ 0 - 299
src/main/webapp/ux/mo/css/layout.css

@@ -1,299 +0,0 @@
-@charset "UTF-8";
-
-/* ============================================ 고객센터 ============================================ */
-/* cs 공통 */
-.cs .search_wrap{position: relative;}
-.cs .cs_search_input{font-size:1.5rem; height:4.5rem; width:100%; border:none !important; border-bottom:0.2rem solid #000 !important; position:relative; padding:0 !important;}
-.cs .cs_search_input + button{position:absolute; top:0; right:0; background:url(/images/mo/cs_search_btn.png) center center no-repeat; text-indent:-9999px; width:2.2rem; height:4.5rem;}
-.cs .inner{background:#fff;}
-.cs .inner > p{margin-top:1rem;}
-.cs .inner.none{position:relative; width:100%; height:31.2rem; color:#808080;}
-.cs .inner.none p{position:absolute; left:50%; top:50%; transform:translate(-50%, -50%);}
-.cs .see_more{font-size:1.5rem; border:0.1rem solid gray; width:100%; padding:1.6rem; font-weight:bold; position:relative; margin:2rem 0 0 0;}
-.cs .see_more > span{background:url(/images/mo/cs_qna_btn.png) no-repeat; text-indent:-9999px; display:block; width:2rem; position:absolute;}
-.cs .ui_row.nodata .foldGroup { display: none; }
-.cs .ui_row.nodata + .ui_foot { display: none; }
-.cs .ui_row.nodata {display: inherit; padding: 12.4rem 0; margin-bottom: 0; text-align: center;}
-.cs .ui_row.nodata {border:none;}
-.cs .ui_row.nodata::after {content:'총 0개의 목록이 있습니다.';}
-.cs .ui_foot{padding:0 2rem;}
-.cs .form_field .radio_wrap {width: 100%; display: flex; font-size: 1.4rem; font-weight: 600; padding: 0 0 6rem;}
-.cs .form_field .radio_wrap p { width: 40%; line-height: 2.4rem;}
-.cs .form_field .radio_wrap .ui_col_4 {width: 25%;}
-.cs .quick_list {margin-bottom:5rem;}
-.cs .quick_list ul,
-.cs .faq .quick_list ul li {box-sizing: border-box;}
-.cs .quick_list ul {width:100%; height: 26rem; display: flex; display: -ms-flexbox; flex-wrap: wrap; border:0.2rem solid #000; align-items: center;}
-.cs .quick_list ul li {width: 19.99%; height: 49.9%; text-align: center; border-left: 0.1rem solid #ddd; border-bottom: 0.1rem solid #ddd;}
-.cs .quick_list ul li:nth-child(1),
-.cs .faq .quick_list ul li:nth-child(6) {border-left:none;}
-.cs .quick_list ul li:nth-child(6),
-.cs .faq .quick_list ul li:nth-child(7),
-.cs .faq .quick_list ul li:nth-child(8),
-.cs .faq .quick_list ul li:nth-child(9),
-.cs .faq .quick_list ul li:nth-child(10) {border-bottom: none;}
-.cs .quick_list ul li a {display: flex; display: -ms-flexbox; justify-content: center; width:100%; height: 100%; line-height:2.6rem; font-size:1.6rem; font-weight: 200; align-items: center; color:#222; letter-spacing:-0.025em;}
-.cs .search_wrap .faq_search {height:19rem; background:#f5f5f5; padding:5rem; box-sizing:border-box; text-align:center;}
-.cs .search_wrap .faq_search .search_box {display:inline-block; position:relative; width:600px; padding-right:5rem; border-bottom:0.2rem solid #222; box-sizing: border-box; text-align:left;}
-.cs .search_wrap .faq_search .search_box input[type='text'] {display:inline-block; width:100%; height:5rem; padding-left:0; border:none; background:none; color:#222; font-size:3rem; font-weight:200; letter-spacing:-0.025em; line-height:1;}
-.cs .search_wrap .faq_search .search_box input[type='text']::placeholder {color:#888;}
-.cs .search_wrap .faq_search .search_box .btn_search {display:inline-block; position:absolute; right:0; top:1.1rem; width:2.8rem; height:2.8rem; overflow:hidden; background:url('/images/pc/ico_search_faq.png') no-repeat 50% 50%; font-size:0.1rem; text-indent:-9999px; z-index:2}
-.cs .search_wrap .faq_search .t_info {width:60rem; margin:1.5rem auto 0; font-weight:200; text-align:left;}
-.cs .search_wrap p{margin-top:0.8rem; font-size:1.2rem; color:#666666;}
-.cs .fold_nav {width:100%;}
-.cs .fold_nav ul {display: flex; display: -ms-flexbox; flex-wrap: wrap; /*margin-top:-12px*/}
-.cs .fold_nav ul li {margin:0.4rem 0.4rem 0 0;}
-.cs .fold_nav ul li a {display:inline-block;padding:1rem 1.6rem;border: 0.1rem solid #ddd;font-size:1.2rem;font-weight: 300;line-height: 1; letter-spacing:-0.025em; border-radius:2rem;}
-.cs .fold_nav ul li a.on {position: relative; background: #222; color:#fff; border: 0.1rem solid #222;}
-.cs .foldGroup .fold_head .fold_tit {max-width: 82rem;}
-.cs .foldGroup .fold_answer .answer_head {margin-bottom:1rem}
-.cs .foldGroup .fold_cont > div:first-of-type {border-top:0.1rem solid #ddd}
-.cs ul.inquiry_box{display:flex;}
-.cs ul.inquiry_box > li{width:33.3%; padding:1rem 0; border-right:0.2rem solid #e4e4e4;}
-.cs ul.inquiry_box > li:nth-last-child(1){border-right:0px none;}
-.cs ul.inquiry_box > li > p{text-align:center;}
-.cs ul.inquiry_box > li > p:nth-of-type(1){color:#000000; font-size:1.4rem; font-weight:bold;}
-.cs ul.inquiry_box > li > p:nth-of-type(2){margin-top:0.5rem; color:#696969; font-size:1.2rem; font-weight:500;}
-
-/* cs_faq_1 */
-.cs .cs_faq_1{background-color:#f5f5f5}
-.cs .cs_faq_1 .inner{margin-bottom:1.2rem; padding-top:2.5rem; padding-bottom:2.5rem; background-color:#fff;}
-.cs .cs_faq_1 .inner:last-child{padding-top:0; margin-bottom:0;}
-.cs .cs_faq_1 .select_list {margin-top:2.3rem}
-.cs .cs_faq_1 .select_list > li{display:inline;}
-.cs .cs_faq_1 .select_list > li > button{font-size:1.5rem; border:0.1rem solid #e4e4e4; padding:1rem 1.5rem; border-radius:2rem; margin-bottom:0.6rem;}
-.cs .cs_faq_1 .select_list > li > button.on{background-color:#000; color:#fff}
-.cs .cs_faq_1 .qna_list{transition:0.4s;}
-.cs .cs_faq_1 .qna_list > li{display:flex; justify-content:space-between; padding:2.6rem 2.0rem; border-bottom:0.1rem solid #e1e1e1; position:relative; margin:0 -2.0rem;}
-.cs .cs_faq_1 .qna_list > li > div.title{width:90%;}
-.cs .cs_faq_1 .qna_list > li > div.title > p:nth-of-type(1){font-size:1.4rem; color:#a8a8a8; margin-bottom:0.4rem;}
-.cs .cs_faq_1 .qna_list > li > div.title > p:nth-of-type(2){font-size:1.7rem; width:100%; line-height:2.4rem; font-weight:600; font-weight:500;}
-.cs .cs_faq_1 .qna_list > li > span{background:url(/images/mo/cs_qna_btn.png) no-repeat; text-indent:-9999px; display:block; width:2rem; position:absolute; top:50%; right:2.0rem;}
-.cs .cs_faq_1 .qna_list > li > span.on{background:url(/images/mo/cs_qna_btn_on.png) no-repeat;}
-.cs .cs_faq_1 .qna_list > div.answer{background-color:#f5f5f5; padding:2.3rem 2.0rem; border-bottom:1px solid #e1e1e1; display:none; overflow:hidden; margin:0 -2.0rem;}
-.cs .cs_faq_1 .qna_list > div.answer > p{font-size:1.5rem; width:90%; line-height:2.4rem;}
-.cs .cs_faq_1 .fold_nav{margin-top:2rem;}
-.cs .cs_faq_1 .ui_row.nodata::after {
-    content: '검색어 조건에 맞는 항목이 없습니다.';
-}
-
-/* cs_contactUs_1 */
-.cs .cs_contactUs_1{background-color:#f5f5f5}
-.cs .cs_contactUs_1 .inner{margin-bottom:1.2rem; padding-top:2.5rem; padding-bottom:2.5rem; background-color:#fff;}
-.cs .cs_contactUs_1 .inner:last-child{padding-top:0; margin-bottom:0;}
-.cs .cs_contactUs_1 .inner.m_pb45{padding-bottom:45px;}
-.cs .cs_contactUs_1 .qna_list{transition:0.4s;}
-.cs .cs_contactUs_1 .qna_list > li{display:flex; justify-content:space-between; padding:2.6rem 2.0rem; border-bottom:1px solid #e1e1e1; position:relative; margin:0 -2.0rem;}
-.cs .cs_contactUs_1 .qna_list > li > div.title{width:90%; overflow:hidden;}
-.cs .cs_contactUs_1 .qna_list > li > div.title > span{display:inline-block; background-color:#a4a4a4; color:#fff; padding:0.1rem 0.4rem 0; bottom:1rem; margin-bottom:1rem; line-height:2.4rem; margin-right:0.6rem}
-.cs .cs_contactUs_1 .qna_list > li > div.title > span.on{background-color:#fd4802;}
-.cs .cs_contactUs_1 .qna_list > li > div.title > p:nth-of-type(1){font-size:1.4rem; color:#a8a8a8; margin-bottom:0.4rem; display:inline-block; font-weight:500;}
-.cs .cs_contactUs_1 .qna_list > li > div.title > p:nth-of-type(2){font-size:1.7rem; width:100%; line-height:2.4rem; font-weight:600;}
-.cs .cs_contactUs_1 .qna_list > li > div.title > p:nth-of-type(3){margin-top:0.4rem; color:#828282; font-weight:600;}
-.cs .cs_contactUs_1 .qna_list > li > span{background:url(/images/mo/cs_qna_btn.png) no-repeat; text-indent:-9999px; display:block; width:2.0rem; position:absolute; top:50%; right:2.0rem;}
-.cs .cs_contactUs_1 .qna_list > li > span.on{background:url(/images/mo/cs_qna_btn_on.png) no-repeat;}
-.cs .cs_contactUs_1 .qna_list > div.answer{background-color:#f5f5f5; padding:2.3rem 2.0rem; border-bottom:0.1rem solid #e1e1e1; display:none; overflow:hidden; margin:0 -2.0rem;}
-.cs .cs_contactUs_1 .qna_list > div.answer > p{font-size:1.5rem; width:100%; line-height:2.4rem;}
-.cs .cs_contactUs_1 .qna_list > div.answer .form_wrap{margin-top:1.6rem}
-.cs .cs_contactUs_1 .qna_list > div.answer .form_wrap .fileAdd{width:10rem; height:10rem;}
-.cs .cs_contactUs_1 .qna_list > div.answer .form_wrap .pics{width:10rem; height:10rem;}
-.cs .cs_contactUs_1 .qna_list > div.answer .two_dep_answer{margin-top:2rem}
-.cs .cs_contactUs_1 .qna_list > div.answer .two_dep_answer > p{font-size:1.5rem; line-height:2.4rem; width:100%;}
-.cs .cs_contactUs_1 .qna_list > div.answer .two_dep_answer > p > span{color:#fd4802;}
-.cs .cs_contactUs_1 .qna_list > div.answer .two_dep_answer > div{display:flex; justify-content:space-between; margin-top:0.6rem; color:#828282}
-.cs .cs_contactUs_1 .qna_list > div.answer .two_dep_answer > div > p{font-size:1.5rem;}
-.cs .cs_contactUs_1 .qna_list > div.answer .two_dep_answer > div > p:nth-of-type(2){border-bottom:0.1rem solid #828282; height:1.7rem;}
-.cs .cs_contactUs_1 .ui_row.nodata::after {
-    content: '등록된 문의가 없습니다.';
-}
-.modal#thumb_pic .modal-header{border-bottom:0;}
-.modal#thumb_pic .modal-body{margin-top: 5rem; padding:0}
-.modal#thumb_pic .swiper-container.cs_pop{height:100%; width:100%;}
-.modal#thumb_pic .swiper-container.cs_pop .swiper-wrapper .swiper-slide img{position:absolute; top:50%; transform:translate(0, -50%);}
-.modal#thumb_pic .swiper-container.cs_pop .pop_img{position: relative; width: 100%; padding-bottom: 150%; background-size:contain; background-position: center center; background-repeat: no-repeat;}
-.modal#thumb_pic .swiper-container.cs_pop .swiper-pagination{position:relative; margin-top:1rem; margin-bottom:1rem; bottom:0;}
-.modal#thumb_pic .swiper-container.cs_pop .swiper-pagination-bullet{height:1rem; width:1rem;}
-.modal#thumb_pic .swiper-container.cs_pop .swiper-pagination-bullet.swiper-pagination-bullet-active{background-color:#ff4701;}
-
-/* cs_contactUs_my */
-.cs_contactUs_my {}
-.cs_contactUs_my .header { height: 2rem; padding: 0 2rem; display: flex; justify-content: space-between; align-items: center; font-size: 2rem; font-weight: bold; margin: 1.6rem 0;}
-.cs_contactUs_my .header .close{position: relative; height:5.2rem;}
-.cs_contactUs_my .header .close span{position:absolute; left:50%; margin-left:-0.5px; display:inline-block; width:1px; height:18px; background-color:#000; transform:rotate(45deg);}
-.cs_contactUs_my .header .close span:first-child{transform:rotate(-45deg);}
-.cs_contactUs_my .header .close a{position:absolute; top:50%; right:0; margin-top:-0.8rem; width:1.8rem; height:1.8rem; font-size:0; background-color:#fff;}
-.cs_contactUs_my .inner { padding-bottom: 0;}
-.cs_contactUs_my .select_dress span { width: 0.7rem; height: 0.7rem; background: url(/images/mo/ico_star02.png) no-repeat center; background-size: 0.7rem auto; display: inline-block; margin: 0 0 0 0.5rem; }
-.cs_contactUs_my input { width: 100%; height: 4.5rem; box-sizing: border-box; font-size: 1.4rem;}
-.cs_contactUs_my textarea { width: 100%; height: 15rem; box-sizing: border-box; padding: 1.5rem; font-size: 1.4rem;}
-.cs_contactUs_my .form_field { margin: 0 0 1.2rem; }
-.cs_contactUs_my .info_addfile ul li {font-size: 1.2rem; color: #c6c6c6;}
-.cs_contactUs_my_footer { width: 100%; height: 4.5rem; background: #222; color: #fff; text-align: center;  font-size: 1.4rem; line-height: 4.5rem; bottom: 0; position: fixed; z-index: 1000;}
-.cs_contactUs_my .select_dress { height: 4.5rem; padding: 0 1.5rem; line-height: 4.5rem;}
-.cs_contactUs_my .blt_dot {position:relative; padding-left:1rem}
-.cs_contactUs_my .blt_dot::before {content:''; position:absolute; left:0; top:50%; margin-top:-0.2rem; width:0.3rem; height:0.3rem; background:#888;}
-.cs_contactUs_my textarea,
-.cs_contactUs_my .select,
-.cs_contactUs_my input[type="text"] {width:100%; font-weight:200; box-sizing:border-box; color:#222; font-size:1.2rem; font-weight:300;}	
-.cs_contactUs_my input[type="text"]::placeholder,
-.cs_contactUs_my textarea::placeholder {color:#888; font-weight:200;}
-.cs_contactUs_my .form_control {height:4.2rem; color:#222; font-size:1.4rem;}
-.cs_contactUs_my textarea {height:20rem; padding:1.5rem;}
-.cs_contactUs_my .input_label {line-height:4.2rem;}
-.cs_contactUs_my .form_field {margin-top:1rem}
-.cs_contactUs_my .form_field:first-of-type {margin-top:0; margin-bottom:-0.5rem;}
-.cs_contactUs_my .form_field .cellphone {display:block;}
-.cs_contactUs_my .form_field .cellphone input[type="text"]{width:40rem;}
-.cs_contactUs_my .form_field .cellphone .ck_box {display:inline-block;}
-.cs_contactUs_my .contactus_cnt {color:#888}
-.cs_contactUs_my .select {height:4.2rem; font-size:1.2rem;}
-.cs_contactUs_my .select .select_dress {color:#222; font-weight:200;}
-.cs_contactUs_my .select .select_dress:after {top:16px; right:1.5rem; border-color:#888 transparent transparent transparent;}
-.cs_contactUs_my .select .select_dress.active:after {top:1rem; border-color: transparent transparent #888 transparent;}
-.cs_contactUs_my .select .select_options {color:#666}
-.cs_contactUs_my .help_block {margin-top:1rem; text-indent:0;}
-.cs_contactUs_my .ck_box {padding:0.3rem 0}
-.cs_contactUs_my .ck_box input[type="checkbox"] + label {font-size:1.6rem; font-weight:200;}
-.cs_contactUs_my .ck_box:first-child{margin-right:2rem;}
-.cs_contactUs_my .t_err {font-weight:200}
-.cs_contactUs_my .t_err::before {background-image:url('/images/pc/ico_err2.png');}
-.cs_contactUs_my .info_addfile > ul > li{position:relative; padding-left:0.8rem;}
-.cs_contactUs_my .info_addfile > ul > li:before{display:inline-block; content:"·"; position:absolute; left:0;}
-.cs_contactUs_my .info_addfile {margin-top:2rem; color:#666; font-size:1.2rem; font-weight:200;}
-.cs_contactUs_my .sec_foot {margin-top:6rem}
-.cs_contactUs_my .sec_foot .btn.btn_md {margin:0px 0.5rem; font-weight:300; padding:1.5rem 9rem;}
-.cs_contactUs_my .txt_cnt {position:absolute; right:1.5rem; bottom:1.5rem; text-align:right; font-size:1.2rem;}
-.cs_contactUs_my .cellphone .input_wrap{display:flex; flex-wrap:wrap;}
-.cs_contactUs_my .cellphone .input_wrap .tt{padding:0.3rem 0; margin-right:3rem; font-weight:600;}
-.cs_contactUs_my .img_group .thumb_pic {position:relative; display:inline-block; width:7.4rem; height:7.4rem; border:0.1rem solid #ddd; margin-right:0.4rem; box-sizing:border-box; overflow:hidden;} 
-.cs_contactUs_my .img_group .thumb_pic img {position:absolute; top:50%; transform: translateY(-50%); width:100%; height: auto;}
-.pop_cont .cs_contactUs_my .tt { font-size: 1.4rem; line-height: 3.1rem;}
-
-/* cs_product_1 */
-.cs .cs_product_1{background-color:#f5f5f5}
-.cs .cs_product_1 .inner{margin-bottom:1.2rem; padding-top:2.5rem; padding-bottom:2.5rem; background-color:#fff;}
-.cs .cs_product_1 .inner:last-child{padding-top:0; margin-bottom:0;}
-.cs .cs_product_1 .ui_row.nodata::after {
-    content: '등록된 문의가 없습니다.';
-}
-
-/* cs_notice_1 */
-.cs .cs_notice_1{background-color:#f5f5f5}
-.cs .cs_notice_1 .inner{margin-bottom:1.2rem; padding-top:2.5rem; padding-bottom:2.5rem; background-color:#fff;}
-.cs .cs_notice_1 .inner:last-child{padding-top:0; margin-bottom:0;}
-.cs .cs_notice_1 .blockLyout > .block:first-child{padding-top:0;}
-.cs .cs_notice_1 .ui_row.nodata::after {
-    content: '등록된 공지가 없습니다.';
-}
-
-
-
-/* ============================================ 회원가입 ============================================ */
-/* mb공통*/
-.mb .close{position: relative; height:5.2rem;}
-.mb .close span{position:absolute; left:50%; margin-left:-0.05rem; display:inline-block; width:0.1rem; height:1.8rem; background-color:#000; transform:rotate(45deg);}
-.mb .close span:first-child{transform:rotate(-45deg);}
-.mb .close a{position:absolute; top:50%; right:2rem; margin-top:-0.8rem; width:1.8rem; height:1.8rem; font-size:0; background-color:#fff;}
-.mb .cont_head h2{margin-bottom:3rem; text-align:center; font-size:1.8rem; font-weight:700;}
-.mb .form_wrap .form_field{margin-top:1rem;}
-.mb .ui_row{margin-bottom:0;}
-.mb input[type="text"], .mb input[type="password"] {float: none;}
-.mb .sns_wrap{margin-top:4rem;}
-.mb .sns_wrap .login_utill{display:inline-block; font-size:0;}
-.mb .sns_wrap .login_utill > li{display:inline-block; margin-left:3.5rem;}
-.mb .sns_wrap .login_utill > li:first-child{margin-left:0;}
-.mb .sns_wrap .login_utill > li a{font-size:1.2rem;}
-.mb .sns_wrap .login_utill > li a .ico{position:relative; display:block; margin-bottom:0.7rem; width:5rem; height:5rem; background-color:#ccc; border-radius:50%;}
-.mb .sns_wrap .login_utill > li a .ico:before{display:block; content:''; position:absolute; top:50%; left:50%; background:url(/images/mo/ico_snslogin.png); transform:translate(-50%, -50%);}
-.mb .sns_wrap .login_utill > li.lu_kakao a .ico{background:#ffe500;}
-.mb .sns_wrap .login_utill > li.lu_kakao a .ico:before{width:2rem; height:2.2rem; background-position:0 0;}
-.mb .sns_wrap .login_utill > li.lu_naver a .ico{background:#69c441;}
-.mb .sns_wrap .login_utill > li.lu_naver a .ico:before{width:1.6rem; height:2.2rem; background-position: -2rem 0;}
-.mb .sns_wrap .login_utill > li.lu_yes24 a .ico{background:#f5f5f5;}
-.mb .sns_wrap .login_utill > li.lu_yes24 a .ico:before{width:3.4rem; height:2.2rem; background-position: -3.6rem 0;}
-.mb .help_block{margin-top:1rem; font-size:1.2rem;}
-.mb .btn_nonMb {display: inline-block; color: #888; font-size:1.2rem; font-weight: 200; border-bottom: 0.1rem solid #888;}
-.mb .tab_btn{margin-bottom:4rem; overflow:hidden;}
-.mb .tab_btn > li{position:relative; float:left; width:50%; height:4.5rem; line-height:4.5rem; background-color:#f5f5f5; color:#888; text-align:center;}
-.mb .tab_btn > li.active{background-color:#fff; color:#fd4802; font-weight:600;}
-.mb .tab_btn > li:after{content:''; display:block; position:absolute; top:0; left:0; width:1rem; height:0.2rem; background:#fd4802}
-.mb .tab_btn > li.active:after{width:100%;}
-.mb .radio_tab{margin-bottom:2rem;}
-.mb .radio_nav{margin-bottom:2.4rem;}
-.mb .form_sign_up{margin-top:4rem;}
-.mb .form_sign_up .c_primary{font-size:1.6rem; font-weight:600;}
-.mb .form_wrap .form_info {text-align:center;}
-.mb .form_wrap .form_info p {font-size:1.4rem; font-weight:300; letter-spacing:-0.025em; line-height:1.6;}
-.mb .form_wrap .form_info p.t_info {font-size:1.2rem; color:#888; font-weight:300; line-height:1.625;}
-.mb .find_result {padding:0px 0px 40px; font-weight:200;}
-.mb .find_result .help_block {text-align:left}
-.mb .find_result input {font-size:1.2rem;}
-.mb .find_result .form_print_bar {padding:3.4rem 0; margin-top:2.5rem; display: flex; display: -ms-flexbox; justify-content: center; align-items: center; background: #f5f5f5; text-align: left; color:#222; font-size:1.2rem;}
-.mb .find_result .form_print_bar ul li {margin-top: 1.2rem;}
-.mb .find_result .form_print_bar ul li:first-child {margin-top: 0;}
-.mb .find_result .form_print_bar ul li span {display:inline-block;}
-.mb .find_result .form_print_bar ul li span.t_span {width:7.5rem; color:#888;}	
-.mb .btn_group_block {float:none; margin-top:3rem; display:flex;}
-.mb [class^="ico_content_"]::before {margin: 0px auto 1.5rem;}
-.ico_content_find::before {width:3.6rem; height:4.6rem; background:url(../images/ico_content_find.png) no-repeat 50% 50%;}
-
-/* mb_login */
-.mb .mb_login .login_check{font-size:1.2rem; line-height:1.8rem;}
-.mb .mb_login .login_check .form_field{margin:0;}
-.mb .mb_login .login_check:after{content:''; display:block; clear:both;}
-.mb .mb_login .login_check .left{float:left;}
-.mb .mb_login .login_check .right{float:right;}
-.mb .mb_login .login_check .right ul{overflow:hidden;}
-.mb .mb_login .login_check .right ul > li{position:relative; float:left; margin-left:1rem; padding-left:1rem;}
-.mb .mb_login .login_check .right ul > li:first-child{margin-left:0rem; padding-left:0rem;}
-.mb .mb_login .login_check .right ul > li::before{content: ''; position:absolute; width:0.1rem; height:1rem; left:0; top:50%; transform:translateY(-50%); background:#ddd;}
-.mb .mb_login .login_check .right ul > li:first-child::before{display:none;}
-.mb .mb_login .captcha {margin-top:2rem; text-align: left;}
-.mb .mb_login .captcha .lap{display: flex; align-items: center;}
-.mb .mb_login .captcha .captcha_box {width:100%; height:6.6rem; border: 0.1rem solid #ddd; background: chartreuse;}
-.mb .mb_login .captcha .captcha_btn_dual {margin-left:0.6rem;}
-.mb .mb_login .captcha .captcha_btn_dual button {width:9rem; height:3rem; display: block; border:1px solid #ddd; border-radius: 0.3rem; background-color:#f5f5f5;}
-.mb .mb_login .captcha .captcha_btn_dual button:before{content:''; display:inline-block; margin-right:0.4rem; width:1.4rem; height:1.4rem;  background:url('/images/mo/ico_captcha_btn.png') no-repeat center 0; vertical-align:middle;}
-.mb .mb_login .captcha .captcha_btn_dual button:last-child:before {background-position:center -4rem;}  
-.mb .mb_login .captcha .captcha_btn_dual button:first-child {margin-bottom:0.6rem;}
-.mb .mb_login .captcha .captcha_btn_dual button:last-child {background-position:center -3.1rem;}    
-.mb .mb_login .captcha .captcha_area {margin-top:0.6rem;}
-.mb .mb_login .captcha .captcha_area input {padding:1.3rem 0 15px 1.3rem;}
-.mb .mb_login .captcha .captcha_area label { display: block; width: 100%; margin:-0.8rem 0 0.4rem 0;}
-
-/* mb_idInquiry_1 */
-.mb_idInquiry_1 .radio_nav{margin-left:-0.5rem; margin-right:-0.5rem;}
-.mb_idInquiry_1 .form_field{flex-flow:row wrap; justify-content: space-between;}
-.mb_idInquiry_1 .form_field .ui_col_4{padding:0.5rem; width:auto; box-sizing:border-box;}
-.mb_idInquiry_1 .txt{margin:4rem 0; text-align:center; color:#888888;}
-
-/* mb_idInquiry_6 */
-.dormant .form_wrap .form_btn::after {clear:both; display:block; content:'';}
-.dormant .form_wrap .ui_row button {position:relative; border-radius:2.5rem;}
-.dormant .form_wrap .ui_row button span {font-size:1.4rem; font-weight: 300;}
-.dormant .form_wrap .ui_row button span .ico {margin-right:1rem}
-.dormant .form_wrap .ui_row button span .ico::before {margin-top:-0.6rem}
-.dormant .form_wrap .form_summary {margin-top:3rem;}
-.dormant .form_wrap .form_summary strong {font-size:1.4rem; font-weight:300;}
-.dormant .form_wrap .form_summary p {margin-top:0.5rem; font-size:1.2rem; color:#888; font-weight:200; line-height:1.6; word-break:keep-all;}
-
-/* mb_idInquiry_8 */
-.mb_idInquiry_8 .form_summary {padding-top:3rem; border-top: 0.1rem solid #ddd;}
-.mb_idInquiry_8 .form_summary .txt {position:relative; margin-bottom:0.6rem; font-size:1.2rem;  line-height:1;}
-.mb_idInquiry_8 .form_summary .txt span.c_primary {font-size:1.2rem; font-weight:700;}
-.mb_idInquiry_8 .form_summary .btn {position:absolute; top:0.1rem; right:0; font-size:1.2rem; font-weight:300; border-color:#a7a7a7;}
-.mb_idInquiry_8 .form_summary .t_info {display:block; color:#888; font-size:1.2rem}
-.mb_idInquiry_8 .form_summary .t_info:nth-of-type(4){padding-right:8rem;}
-
-/* mb_join_2 */
-.mb .mb_join_2 .form_field{display:block;}
-.mb .mb_join_2 .form_wrap .desc_wrap p {font-size:12px; line-height:1.75; font-weight:200; color:#888;}
-.mb .mb_join_2 .form_wrap .desc_wrap p a {color:#666; font-weight:300;}
-.mb .mb_join_2 .help_block::after {clear:both; display:block; width:100%;}
-.mb .mb_join_2 .help_block .btn.btn_sm {float:left; margin-right:0.4rem; border-color:#222; font-size:1.2rem;}
-
-/* mb_join_3 */
-.mb .mb_join_3 .form_wrap .print_bar{padding:3.4rem 0; background: #f5f5f5; text-align:center;}
-
-
-

+ 4 - 4
src/main/webapp/ux/mo/css/layout_m.css

@@ -344,8 +344,8 @@
 .item_prod .itemLike {position: absolute;top:1rem;right:1rem;font-size: 0px;z-index: 2;width: 1.7rem;height: 1.7rem; background: url('/images/mo/ico_like.png');background-size: 3.4rem;background-position:0px 0px;background-repeat: no-repeat;}
 .item_prod .itemLike::before, 
 .item_prod .itemLike::after {content: "";position: absolute;top: 0px;right: 0px;width: 100%;height: 100%; background-repeat: no-repeat;background-position: right top;background-size: contain;opacity: 0;transition: opacity 200ms ease 0s;}
-.item_prod .itemLike::before {background: url('/images/mo/ico_like.png');background-size: 3.4rem;background-position:-1.8rem 0px;background-repeat: no-repeat;}
-.item_prod .itemLike::after {background: url('/images/mo/ico_like.png');background-size: 3.4rem;background-position: -1.8rem 0px;background-repeat: no-repeat;}
+.item_prod .itemLike::before {background: url('/images/mo/ico_like.png');background-size: 3.4rem;background-position:-1.7rem 0px;background-repeat: no-repeat;}
+.item_prod .itemLike::after {background: url('/images/mo/ico_like.png');background-size: 3.4rem;background-position: -1.7rem 0px;background-repeat: no-repeat;}
 /* .item_prod .itemLike:hover::before,  */
 /* .item_prod .itemLike:active::before {opacity: 1;} */
 /* .item_prod .itemLike.active::before {opacity: 1;} */
@@ -476,7 +476,7 @@
 .option_box .opt_size .form_field2 .lap > div {margin:0.25rem; float:left; width:auto;}
 .option_box .opt_size .form_field2 label > span{position:relative; display:block; width:6rem; height:3.4rem; padding:0; line-height:3.4rem; text-align:center; background:#fff; box-sizing:border-box; color:#222; font-weight:200; font-size:1.2rem; border:1px solid #ddd; cursor: pointer;}
 .option_box .opt_size .form_field2 label input[type="radio"]{position:absolute; width:0; height:0; visibility:hidden;}
-.option_box .opt_size .form_field2 label input[type="radio"]:checked + span{border:1px solid #222;}
+.option_box .opt_size .form_field2 label input[type="radio"]:checked + span{border:1px solid #fd4802;}
 .option_box .opt_size .form_field2 label input[type="radio"]:disabled + span{text-decoration:line-through; background:#f5f5f5; border-color:#f5f5f5; color:#bbb; opacity:1;}
 .pd_detail .option_box .info_restock{margin-top:1rem;}
 .pd_detail .option_box .info_restock a.btn_popup {position:relative; padding-left:1.9rem; padding-right:1.2rem; color:#666; font-size:1.3rem; font-weight:300; border:none;}
@@ -605,7 +605,7 @@
 .riview_box .best_review a .lap{display:table; width:100%;}
 .riview_box .best_review a .lap > div{display:table-cell; vertical-align:middle;}
 .riview_box .best_review a .lap > div.pic{position:relative; width:7.2rem;}
-.riview_box .best_review a .lap > div.txt_best_review{padding-left:1.6rem;}
+.riview_box .best_review a .lap > .pic + div.txt_best_review{padding-left:1.6rem;}
 .riview_box .best_review a .lap > div.txt_best_review p{height:5.5rem; overflow:hidden; line-height:1.6; color:#666; font-size:1.3rem; font-weight:200; display:-webkit-box; text-overflow:ellipsis; -webkit-line-clamp:3; -webkit-box-orient:vertical;}
 .riview_box .best_review a .star_score {display:block; margin-bottom:0.7rem; vertical-align:middle; image-rendering:pixelated;}
 .riview_box .best_review a .star_score .star{vertical-align:middle;}

+ 0 - 268
src/main/webapp/ux/mo/css/millim.css

@@ -1,268 +0,0 @@
-@charset "UTF-8";
-
-/* 슬라이드갤러리 리스트 item */
-/* .itemsGrp {font-size: 0px;box-sizing: border-box;clear: both;margin-bottom: 20px;} */
-/* .itemsGrp::after{content: "";display: table;clear: both;} */
-.item_prod {display: inline-block;font-size: 0px;vertical-align: top;color: rgb(31, 31, 31);position: relative;letter-spacing: -0.2px;}
-.item_state {position: relative; padding:0; box-sizing: border-box;}
-.itemLike {position: absolute;top:1rem;right:1rem;font-size: 0px;z-index: 2;width: 1.7rem;height: 1.7rem; background: url('/images/mo/ico_like.png');background-size: 3.4rem;background-position:0px 0px;background-repeat: no-repeat;}
-.itemLike::before, .itemLike::after {
-	content: "";position: absolute;top: 0px;right: 0px;width: 100%;height: 100%;
-	background-repeat: no-repeat;background-position: right top;background-size: contain;opacity: 0;transition: opacity 200ms ease 0s;
-}
-.itemLike::before {background: url('/images/mo/ico_like.png');background-size: 3.4rem;background-position:-1.7rem 0px;background-repeat: no-repeat;}
-.itemLike::after {background: url('/images/mo/ico_like.png');background-size: 3.4rem;background-position: -1.7rem 0px;background-repeat: no-repeat;}
-.itemLike:hover::before, .itemLike:active::before {opacity: 1;}
-.itemLike.active::before {opacity: 1;}
-.itemLink {position: relative;text-decoration: none;color: rgb(102, 102, 102);cursor: pointer;display: block;}
-.itemPic {position: relative;width: 100%;margin-bottom: 15px;padding-top: 150%;font-size: 0px;overflow: hidden;}
-.itemPic::after {content: "";display: block;position: absolute;top: 0px;left: 0px;width: 100%;height: 100%;opacity: 0.03;background-color: rgb(0, 0, 0);}
-.itemPic .pd_img {position: absolute;width: 100%;height: auto;top: 50%;left: 0px;transform: translateY(-50%);}
-.itemBrand {display: inline-block; margin: 0px 0.5rem 0.3rem; font-size: 1rem;font-weight: 300;color: rgb(137, 137, 137);}
-.itemComment{margin: 15px 0px 0px;line-height: 1; font-size: 14px;font-weight: 300;color: #fd4802;overflow: hidden;text-overflow: ellipsis;white-space: nowrap;}
-.itemName {
-	margin: 0px 0.5rem 0.8rem; font-size: 1.1rem; font-weight: 400; color: rgb(31, 31, 31); max-height: 3rem;
-	position: relative; overflow: hidden; white-space: normal; overflow-wrap: break-word; display: block;
-}
-.itemName {display: -webkit-box;text-overflow: ellipsis;-webkit-line-clamp: 2;-webkit-box-orient: vertical;}
-.itemPrice {position: relative; line-height: 1;font-size: 1.5rem; font-weight: 300; color:#222; margin: 0px 0.5rem; text-align: left;}
-.itemPrice_original {position: relative; line-height:1; font-size: 1rem; font-weight: 300; color: rgb(204, 204, 204);}
-.itemPrice_original::after{content: ''; display: inline-block; position: absolute; top: 50%; left: 0; bottom:auto; right:auto; width: 100%; height: 1px; background: rgb(204, 204, 204) ; transform: translateY(-50%);}
-.itemPercent {position: absolute;top: auto;right: 0px;bottom: 0;left: auto;margin-left: 15px;line-height:1;font-size: 1.5rem;font-weight: 300;color: #fd4802;}
-
-
-
-
-
-
-/* 상품상세 공통 */
-.pb0{padding-bottom:0!important;}
-.ico_besttag{height:1.5rem; vertical-align:middle;}
-.ico_besttag::before {
-    content: "";
-    width: 31px;
-    height: 15px;
-    background: url(/images/pc/ico_besttag.png) no-repeat 50% 50%;
-    background-size: cover;
-}
-.pd .swiper-container{overflow:visible;}
-.pd .tit{margin-bottom:1.5rem; font-size:1.4rem; font-weight:500; color:#222}
-.pd .ptok{padding-top:3rem!important;}
-.pd .ptok2{padding-top:4rem!important; padding-bottom:4rem!important;}
-.pd .area_slider{text-align:left;}
-.pd .area_slider .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);}
-.pd .pd_detail{background-color:#f5f5f5;}
-.pd .pd_detail > .inner{margin-top:1.2rem; padding-bottom:3rem; background-color:#fff;}
-.pd .pd_detail > .inner:first-child{margin-top:0;}
-.pd .pd_detail > .inner.wide{padding-left:0!important; padding-right:0!important; padding-bottom:0;}
-.pd_detail .btn_coupon,
-.pd_detail .btn_shoppingBag{border:1px solid #fd4802; color:#fd4802;}
-.pd_detail .btn_coupon{margin-top:1.7rem;}
-.pd_detail .btn_shoppingBag{margin-top:3rem;}
-.pd_detail .btn_brandHome{border-color:#a7a7a7;}
-
-/* pd_detail */
-/* 1 */
-.pd_detail .thumb_box{position: relative;}
-.pd_detail .thumb_box:after{position:absolute; content:''; left:0; bottom:0; width:100%; height:3rem; background-color:rgba(255,255,255,.95); z-index:2;}
-.pd_detail .thumb_box .thumb_list{position:relative;}
-.pd_detail .thumb_box .thumb_list .thumb{position:relative; width:100%; padding-bottom: 150%;; background-color:#f5f5f5; overflow: hidden;}
-.pd_detail .thumb_box .thumb_list .thumb img{position:absolute; width:100%; top:50%; left:50%; -webkit-transform:translate(-50%, -50%); transform:translate(-50%, -50%);}
-.pd_detail .thumb_box .thumb_paging{position:absolute; left:50%; bottom:6.5rem; padding:0.2rem 0; width:6rem; height:2rem; font-size:1.2rem; color:#fff; text-align:center; background-color:#222; border-radius:3rem; box-sizing: border-box; -webkit-transform:translateX(-50%); transform:translateX(-50%); z-index:3;}
-.pd_detail .thumb_box .thumb_paging strong{font-weight:700;}
-.pd_detail .thumb_box .swiper-pagination-fraction{position:absolute; left:50%; bottom:6rem;-webkit-transform:translateX(-50%); transform:translateX(-50%);}
-.pd_detail .timer_box{position: absolute; height: 4rem; line-height:4rem; font-size:1.2rem; color:#fff; text-align:center; background-color: #000; left: 2rem; right: 2rem; top: -5.5rem; z-index: 10;}
-.pd_detail .descript_box .name{font-size:1.6rem; font-weight:400; color:#222;}
-.pd_detail .descript_box .comment{margin-top:0.4rem; font-size:1.2rem; font-weight:400; color:#666666;}
-.pd_detail .descript_box .price_blk{margin-top:1.2rem;}
-.pd_detail .descript_box .price_blk > span{margin-left:1rem;}
-.pd_detail .descript_box .price_blk > span:first-child{margin-left:0;}
-.pd_detail .descript_box .price_blk .sale_price{font-size:1.7rem; font-weight:700; color:#222222;}
-.pd_detail .descript_box .price_blk .sale_price em{font-size:2rem; font-weight:600; color:#222222;}
-.pd_detail .descript_box .price_blk .org_price{font-size:1.4rem; font-weight:400; color:#888888;}
-.pd_detail .descript_box .price_blk .org_price em{font-size:1.6rem;}
-.pd_detail .descript_box .price_blk .sale_percent{font-size:1.6rem; font-size:1.6rem; font-weight:500; color:#fd4802;}
-.pd_detail .descript_box .save_point{margin-top:1.2rem; font-size:1.3rem; font-weight:300; color:#888888;}
-.pd_detail .descript_box .save_point:before{display:inline-block; content:''; margin-right:0.4rem; width:1.2rem; height:1.2rem; background:url(/images/mo/ico_point.png) center center no-repeat; background-size:cover;}
-/* 2 */
-.pd_detail .option_box .desc_status{padding:1.5rem 2rem; margin:0 -2rem; color: #fd4802; border-bottom:1px solid #dddddd;}
-.pd_detail .option_box .opt_color{padding:3rem 0;}
-.pd_detail .option_box .opt_color ul {margin:0 -2rem; padding-left:2rem; overflow-x:auto; font-size:0; white-space:nowrap;}
-.pd_detail .option_box .opt_color ul::after {content:''; position: relative; display:inline-block; width:2rem; height:1px;}
-.pd_detail .option_box .opt_color ul li {margin-right:0.5rem; display:inline-block; width:5rem;}
-.pd_detail .option_box .opt_color ul li:last-child {margin-right:0;}
-.pd_detail .option_box .opt_color ul li a {position:relative; display:block; padding-bottom:150%; box-sizing:border-box; width:5rem;}
-.pd_detail .option_box .opt_color ul li a img {position:absolute; top:0; left:0; width:100%;}
-.pd_detail .option_box .opt_color ul li a.on:after{display:block; content:''; position:absolute; left:0; right:0; top:0; bottom:0; border:1px solid #fd4802; box-sizing:border-box;}
-.pd_detail .option_box > [class^="opt_"] .opt_header {margin-bottom:1rem}
-.pd_detail .option_box > [class^="opt_"] .opt_header .title {margin-right:1rem; font-weight:500; color:#222;}
-.pd_detail .option_box > [class^="opt_"] .opt_header .color {color:#666666; font-weight:300;}
-.pd_detail .option_box .opt_size .form_field {display:block;}
-.pd_detail .option_box .opt_size .form_field .lap{margin:-0.25rem -0.25rem 0;}
-.pd_detail .option_box .opt_size .form_field .lap > div {margin:0.25rem; float:left; width:auto;}
-.pd_detail .option_box .opt_size .form_field input[type="radio"] + label {display:block; width:6rem; height:3.4rem; padding:0; line-height:3.4rem; text-align:center; background:#fff; box-sizing:border-box; border:1px solid #ddd; color:#222; font-weight:200; font-size:1.2rem;}
-.pd_detail .option_box .opt_size .form_field input[type="radio"] + label::before,
-.pd_detail .option_box .opt_size .form_field input[type="radio"] + label::after {display:none;}
-.pd_detail .option_box .opt_size .form_field input[type="radio"]:checked + label {border:1px solid #222;}
-.pd_detail .option_box .opt_size .form_field input[type="radio"]:disabled + label {text-decoration:line-through; background:#f5f5f5; border-color:#f5f5f5; color:#bbb; opacity:1;}
-.pd_detail .info_restock{margin-top:1rem;}
-.pd_detail .info_restock a.btn_popup {position:relative; padding-left:1.9rem; padding-right:1.2rem; color:#666; font-size:1.3rem; font-weight:300; border:none;}
-.pd_detail .info_restock a.btn_popup::before {content:''; position:absolute; left:0; top:50%; margin-top:-1px; transform:translateY(-50%); width:1.3rem; height:1.3rem; background:url('/images/mo/ico_bell.png') no-repeat 0 0;}
-.pd_detail .info_restock a.btn_popup::after {content:''; position:absolute; right:0px; top:50%; margin-top:-1px; transform:translateY(-50%); width:5px; height:9px; background:url('/images/mo/ico_more_lg.png') no-repeat 100% 50%; background-size:contain;}
-/* 3 */
-.pd_detail .benefit_box {font-size:1.4rem; font-weight:300;}
-.pd_detail .benefit_box dl.bnf_shopping {}
-.pd_detail .benefit_box dl.bnf_card{margin-top:1.8rem;}
-.pd_detail .benefit_box dl{position:relative;}
-.pd_detail .benefit_box dl::after {content:''; clear:both; display:block;}
-.pd_detail .benefit_box dl dt {font-size:1.4rem; font-weight:500; color:#222;}
-.pd_detail .benefit_box dl dd {margin-top:0.7rem; color:#222222;}
-.pd_detail .benefit_box dl dd em{color:#fd4802;}
-.pd_detail .benefit_box dl dd span {display:block;}
-.pd_detail .benefit_box dl dd .btn_popup {position:absolute; right:0; top:0; line-height:1.4!important; font-size:1.3rem; color:#666666; z-index:2;}
-.pd_detail .benefit_box dl dd .btn_popup > span{position: relative;}
-.pd_detail .benefit_box dl dd .btn_popup > span:after{display:block; content:''; position:absolute; bottom:0; left:0; width:100%; height:1px; background:#666;}
-/* 4 */
-/* 5 */
-[class*="pd_descrp"] {width:100%; overflow: hidden;}
-[class*="pd_descrp"] .cont_body {max-height:586px;}
-[class*="pd_descrp"] .cont_body.on {max-height:none;}
-[class*="pd_descrp"] .cont_body > div {position:relative; width:100%;}
-[class*="pd_descrp"] .descrp_box {}
-[class*="pd_descrp"] .descrp_box > div {margin-top:2.4rem;}
-[class*="pd_descrp"] .descrp_box > div:first-child {margin-top:0;}
-[class*="pd_descrp"] .descrp_box > div > span.tit_desc {display:block; margin-bottom:1rem; font-size:1.4rem; font-weight:500; letter-spacing:-0.025em;}
-[class*="pd_descrp"] .descrp_box > div > p {font-size:1.4rem; font-weight:200; line-height:1.5; word-break:keep-all;}
-[class*="pd_descrp"] .mdhtml_box {margin-top:4rem;}
-[class*="pd_descrp"] .mdhtml_box img {width:100%;}
-[class*="pd_descrp"] .mdhtml_box iframe {display:block; margin-left:auto; margin-right:auto}
-[class*="pd_descrp"] .mdhtml_box .movblock {position:relative; display:block; height:0; line-height:0; margin-left:auto; margin-right:auto; padding-top:56.25%; background:#eee}
-[class*="pd_descrp"] .mdhtml_box .movblock > iframe {position:absolute; left:0; right:0; top:0; bottom:0; width:100%; height:100%; z-index:2}
-[class*="pd_descrp"] [class^="view_"] {margin-top:6rem; text-align:center;}
-[class*="pd_descrp"] [class^="view_"]:first-of-type {margin-top:0;}
-[class*="pd_descrp"] [class^="view_"] .tit_view {display:block; color:#222; font-size:1.4rem; font-weight:300; text-align:center;}
-[class*="pd_descrp"] [class^="view_"] .model_info {display:block; margin-top:1rem; color:#666; font-size:1.2rem; font-weight:200; text-align:center;}
-[class*="pd_descrp"] [class^="view_"] .view {margin-top:2rem}
-[class*="pd_descrp"] [class^="view_"] .view img {display:block; margin:5px auto 0}
-[class*="pd_descrp"] [class^="view_"] .view img:first-child {margin-top:0}
-[class*="pd_descrp"] .view_label_box .view span {display:inline-block;}
-[class*="pd_descrp"] .view_label_box .view span::after {content:''; clear:both; display:inline-block;}
-[class*="pd_descrp"] .view_label_box .view span img {float:left; margin-top:0; margin-left:20px}
-[class*="pd_descrp"] .view_label_box .view img:first-child {margin-left:0}
-[class*="pd_descrp"] .view_outfit_box {}
-[class*="pd_descrp"] .view_detail_box {}
-[class*="pd_descrp"] .brand_box {padding:3rem 1rem; margin:6rem -2rem 0; width:auto!important; border-top:1px solid #ddd; border-bottom:1px solid #ddd; text-align:center; box-sizing:border-box;}
-[class*="pd_descrp"] .brand_box .name {margin-bottom:1rem; color:#222; font-size:1.4rem; font-weight:300;}
-[class*="pd_descrp"] .brand_box a {display:inline-block; border:1px solid #a7a7a7; color:#222; font-weight:300;}
-[class*="pd_descrp"] .required_box {margin-bottom:80px}
-[class*="pd_descrp"] .required_box .area_detail {text-align:center;} 
-[class*="pd_descrp"] .required_box .area_detail img {max-width:100%;}
-[class*="pd_descrp"] .required_box .area_infotbl {margin-top:4rem;}
-[class*="pd_descrp"] .required_box .area_infotbl .title {display:block; margin-bottom:1rem; font-size:1.4rem; font-weight:500; letter-spacing:-0.025em;}
-[class*="pd_descrp"] .required_box .area_infotbl .tbl table th {width:auto; font-weight:300;}
-[class*="pd_descrp"] .required_box .area_kcl {position:relative; display:table; width:100%; min-height:8rem; margin-top:4rem; padding:2.5rem; box-sizing:border-box; background:#f5f5f5;}
-[class*="pd_descrp"] .required_box .area_kcl > div{display:table-cell; vertical-align:middle;}
-[class*="pd_descrp"] .required_box .area_kcl p {color:#222; font-size:1.3rem; letter-spacing:-0.025em;}
-[class*="pd_descrp"] .required_box .area_kcl .tit {margin-top:0; margin-bottom:0.5rem; font-size:1.3rem;}
-[class*="pd_descrp"] .required_box .area_kcl a.linktxt3 {margin-left:20px; color:#888; font-weight:200; text-decoration:none !important;}
-[class*="pd_descrp"] .required_box .area_kcl .ico_kcl {position:relative;}
-[class*="pd_descrp"] .btn_more_box {position:relative; width:100%; background:#fff; text-align:center; z-index:2;}
-[class*="pd_descrp"] .btn_more_box.covered::after {content:''; position:absolute; left:0; right:0; top:-10rem; width:100%; height:10rem; background:linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255,255,255,1) 50%, rgba(255, 255, 255, 0) 100%); z-index:2; }
-[class*="pd_descrp"] .btn_more_box .btnL {border:1px solid #fd4802; color:#fd4802;}
-[class*="pd_descrp"] .btn_more_box .btnL span {position:relative; padding-right:35px;}
-[class*="pd_descrp"] .btn_more_box .btnL span::after {content:""; position:absolute; right:4px; top:1px; transform:rotate(90deg); width:7px; height:13px; background:url(/images/pc/ico_mb_arrow2.png) no-repeat 0 0; background-size:auto 100%;} 
-[class*="pd_descrp"] .btn_more_box .btnL.active span::after {transform:rotate(-90deg);}
-[class*="pd_descrp"] .btn_more_box .btnL .ico {margin-left:20px; margin-right:0;}
-/* 6 */
-.pd_detail .riview_box .area_slider{text-align:center;}
-.pd_detail .riview_box .ex_review {padding:1.8rem 0;}
-.pd_detail .riview_box .ex_review a:after{content:''; clear:both; display:block;}
-.pd_detail .riview_box .ex_review .tit{float:left; margin-bottom:0;}
-.pd_detail .riview_box .ex_review .tit .number{color:#888; font-weight:300;}
-.pd_detail .riview_box .ex_review .star_score {float:right; padding-right:2.5rem; height:14px;}
-.pd_detail .riview_box .ex_review .star_score .star {display:inline-block; position:relative; width:95px; height:14px; background:#ddd;}
-.pd_detail .riview_box .ex_review .star_score .star::after {content:''; position:absolute; left:0; top:0; z-index:3; width:100%; height:14px; background:url('/images/pc/star_empty.png') no-repeat 0 0; background-size:100% 100%; image-rendering:pixelated;}
-.pd_detail .riview_box .ex_review .star_score .star .progbar {display:inline-block; height:14px; background:#fd4802}
-.pd_detail .riview_box .ex_review .star_score .score {color:#222; font-size:1.4rem; font-weight:500;}
-.pd_detail .riview_box .best_review {margin-bottom:1.4rem; text-align:left;}
-.pd_detail .riview_box .best_review a {display:block; position:relative; padding:2rem; border:1px solid #eee;}
-.pd_detail .riview_box .best_review a .star_score .star {display:inline-block; position:relative; width:83px; height:14px; background:#ddd;}
-.pd_detail .riview_box .best_review a .star_score .star::after {content:''; position:absolute; left:0; top:0; z-index:3; width:100%; height:1.5rem; background:url('/images/pc/star_empty.png') no-repeat 0 0; background-size:100% 100%; image-rendering:pixelated;}
-.pd_detail .riview_box .best_review a .star_score .star .progbar {display:inline-block; height:14px; background:#fd4802}
-.pd_detail .riview_box .best_review a .star_score .ico {margin-left:10px}
-.pd_detail .riview_box .best_review a .star_score .ico::before {vertical-align:inherit;}
-.pd_detail .riview_box .best_review a .lap{display:table; width:100%;}
-.pd_detail .riview_box .best_review a .lap > div{display:table-cell; vertical-align:middle;}
-.pd_detail .riview_box .best_review a .lap > div.pic{position:relative; width:7.2rem;}
-.pd_detail .riview_box .best_review a .lap > div.txt_best_review{padding-left:1.6rem;}
-.pd_detail .riview_box .best_review a .lap > div.txt_best_review p{height:5.5rem; overflow:hidden; line-height:1.6; color:#666; font-size:1.3rem; font-weight:200; display:-webkit-box; text-overflow:ellipsis; -webkit-line-clamp:3; -webkit-box-orient:vertical;}
-.pd_detail .riview_box .best_review a .star_score {display:block; margin-bottom:0.7rem; vertical-align: middle; background:url('/images/mo/ico_more_lg.png') right center no-repeat; image-rendering:pixelated;}
-.pd_detail .riview_box .best_review a .star_score .star{vertical-align:middle;}
-.pd_detail .riview_box .best_review a .pic .thumb {display:block; padding-top:100%; background-repeat:no-repeat; background-position:50% 50%; background-size:cover;}
-.pd_detail .riview_box .best_review a .pic .thumb.mov::after {content:''; position:absolute; left:0; top:0; width:100%; height:100%; background:rgba(0,0,0,0.3) url('/images/pc/ico_play.png') no-repeat 50% 50%; z-index:2;}
-.pd_detail .riview_box .swiper-pagination-fraction{position:relative; background-color:#fff!important; color:#666!important; font-weight:300;}
-.pd_detail .riview_box .swiper-pagination-fraction .swiper-pagination-current{font-weight:600;}
-.pd_detail .exinfo_box {margin:3rem -2rem 0;}
-.pd_detail .exinfo_box ul {border-top:1px solid #ddd}
-.pd_detail .exinfo_box ul li {padding:1.8rem 2rem; border-bottom:1px solid #ddd}
-.pd_detail .exinfo_box ul li:last-child {border-bottom:0}
-.pd_detail .exinfo_box ul li [class^="ex_"] > a {display:block; background:url('/images/mo/ico_more_lg.png') right center no-repeat; image-rendering:pixelated;}
-.pd_detail .exinfo_box ul li [class^="ex_"] > a::after {content:''; clear:both; display:block;}
-.pd_detail .exinfo_box ul li [class^="ex_"] > a .tit {color:#222; font-size:14px; font-weight:300;}
-.pd_detail .exinfo_box ul li [class^="ex_"] > a .tit em.number {margin-left:4px; color:#666; font-weight:200;}
-.pd_detail .exinfo_box ul li .ex_shipping {color:#666; font-size:14px; font-weight:200;}
-.pd_detail .exinfo_box ul li .ex_shipping span {display:block;}
-.pd_detail .exinfo_box ul li .ex_shipping .a{margin-bottom:0.9rem;}
-/* 7 */
-.pd_detail .recommendedArea{}
-.pd_detail .recommendedArea > div[class*="pd_"]{margin-top:6rem;}
-.pd_detail .recommendedArea > div[class*="pd_"]:first-child{margin-top:0;}
-.pd_detail .recommendedArea > div[class*="pd_"] .tit{text-align:center;}
-.pd_detail .pd_clickother {}
-.pd_detail .pd_clickother .area_slider {}
-.pd_detail .pd_clickother .area_slider .itemName {height:32px}
-.pd_detail .pd_recommend {}
-.pd_detail .pd_recommend .area_slider {}
-.pd_detail .pd_recommend .area_slider .swiper-pagination {position:absolute; left:50%; bottom:2rem; -webkit-transform:translateX(-50%); transform:translateX(-50%);}
-.pd_detail .pd_recommend .area_slider .page {position:relative; box-sizing: border-box;}
-.pd_detail .pd_recommend .area_slider .page::after {content:''; clear:both; display:block;}
-.pd_detail .pd_recommend .area_slider .page .pic {position:relative;}
-.pd_detail .pd_recommend .area_slider .page .pic span.thumb {display:block; width:100%; height:0; padding-top:100%; background-color:#f5f5f5; background-repeat:no-repeat; background-position:50% 50%; background-size:contain;}
-.pd_detail .pd_recommend .area_slider .page .item_wrap {}
-.pd_detail .pd_recommend .area_slider .page .item_wrap .item_area {position:relative; display:block; height:100%; width:100%; padding:10px; box-sizing:border-box; vertical-align:middle;}
-.pd_detail .pd_recommend .area_slider .page .item_wrap .item_area h5 {margin: 0 0 30px;color:#222;font-size:20px;font-weight:500;}
-.pd_detail .pd_recommend .area_slider .page .item_wrap .item_area h5 span {color:#666; font-weight:200;}
-.pd_detail .pd_recommend .area_slider .page .item_wrap .item_area .li_item {height:calc(100% - 140px); overflow-y:auto;}
-.pd_detail .pd_recommend .area_slider .page .item_wrap .item_area .li_item::-webkit-scrollbar {width: 2px;}
-.pd_detail .pd_recommend .area_slider .page .item_wrap .item_area .li_item::-webkit-scrollbar-thumb {background-color:#888888; border-radius: 0px; background-clip: padding-box;border: 0px solid transparent;}
-.pd_detail .pd_recommend .area_slider .page .item_wrap .item_area .li_item::-webkit-scrollbar-track {background-color: #dddddd;border-radius: 0px;}
-.pd_detail .pd_recommend .area_slider .page .item_wrap .item_area .li_item ul li {position:relative; height:150px; margin-top:20px}
-.pd_detail .pd_recommend .area_slider .page .item_wrap .item_area .li_item ul li:first-child {margin-top:0;}
-.pd_detail .pd_recommend .area_slider .page .item_wrap .item_area .li_item ul li .item_prod {display:block; width:100%;}
-.pd_detail .pd_recommend .area_slider .page .item_wrap .item_area .li_item ul li .item_prod .item_state {display:table; width:100%;}
-.pd_detail .pd_recommend .area_slider .page .item_wrap .item_area .li_item ul li .item_prod .item_state a {display:table-cell; position:relative; width:100%; height:150px; padding-left:130px; box-sizing:border-box; vertical-align:middle;}
-.pd_detail .pd_recommend .area_slider .page .item_wrap .item_area .li_item ul li .item_prod .item_state .itemPic {position:absolute; left:0; top:0; width:100px; height:0; padding-top:150px; margin-bottom:0}
-.pd_detail .pd_recommend .item_area .itemPrice .itemPercent {position:relative;}
-.pd_detail .pd_recommend .area_slider .page .item_wrap .item_area .btn {margin-top:30px; border-color:#fd4802; color:#fd4802;}
-.pd_detail .pd_recommend .item_picker{position:absolute; width:8.33%;}
-.pd_detail .pd_recommend .item_picker > div{padding-top:100%; background:#000; border-radius:50%; background:url(/images/pc/ico_picker.png) no-repeat 50% 50%; background-size:cover;}
-.pd_detail .pd_recommend .item_picker > div button{position: absolute; width: 100%; height: 100%; top: 0; left: 0;}
-.pd_detail .pd_recommend .item_picker > div .pick_descr{display:none;}
-.pd_detail .pd_recommend .pic_img{margin:0 -2rem 2rem;}
-.pd_detail .pd_samebrand{}
-.pd_detail .pd_relate{}
-.pd_detail .pd_relate .area_slider .itemName {height:32px}
-
-
-
-/* 테이블 type1 수평 행,열별 구분선 없음 */
-.tbl.type1 {padding:15px 0; border-top:1px solid #000; border-bottom:1px solid #ddd;} 
-.tbl.type1 table {text-align:left; word-break:keep-all;}
-.tbl.type1 table th,
-.tbl.type1 table td {position:relative; padding:0.4rem 1.2rem; font-weight:200; font-size:1.3rem; letter-spacing:-0.025em;}
-.tbl.type1 table th {font-weight:300;}
-
-/* pd_공통 */
-.pd .dot_info {position:relative; padding-left:0.8rem; font-size:1.1rem;}
-.pd .dot_info::before {content:'·'; position:absolute; left:0; top:0; line-height:inherit;}
-

+ 369 - 125
src/main/webapp/ux/mo/css/style24_m.css

@@ -398,9 +398,11 @@
 .main_pick .pick-cont.active {display: block;transition: ease-out, 1000;}
 .main_pick .pick-cont .btn_group_flex {margin-top: 0;}
 
-.main_pick .pick-post {margin-top: 2rem;overflow: visible;}
+.main_pick .pick-post {margin-top: 2rem; white-space: nowrap; overflow-x:auto; font-size: 0; -ms-overflow-style: none; scrollbar-width: none;}
+.main_pick .pick-post::-webkit-scrollbar {display: none;}
+.main_pick .pick-post .item_prod {width: 68%; padding-right: 10%;}
 .main_pick .pick-post .item_prod .itemLink:after{content: '';display: block;clear: both;}
-.main_pick .pick-post .item_prod .itemPic{width: 7rem;height: 10.5rem;float: left;padding-top: 12vh;background: #f0f0f0;}
+.main_pick .pick-post .item_prod .itemPic{width: 7rem;height: 10.5rem;float: left;padding-top: 12vh;background: #f0f0f0; margin-bottom: 0;}
 .main_pick .pick-post .item_prod .itemName{width: calc(100% - 9rem);top: 1.5rem;margin: 0px 8rem 0.8rem;}
 .main_pick .pick-post .item_prod .itemPrice{margin: 0px 8rem 0.8rem;top:1.5rem;}
 
@@ -445,29 +447,86 @@
 .post-sug .list_cate {margin:0;padding: 0rem 2.5rem 0 2.5rem;position: relative;}
 .post-sug .list_cate > li dl > dt button {padding: 1.5rem 0;}
 .post-sug .list_cate > li dl > dd {background-color: #ffffff;}
-.post-sug .list_cate > li.on dl > dd{border:0;padding: 0;}
+.post-sug .list_cate > li.on dl > dd{border:0;}
 .post-sug .list_cate > li.on::after{border-color:#fd5b1c;top: 3.0rem;}
 .post-sug .swiper-wrapper {margin: 0 0 3rem 0;}
 .post-sug .swiper-slide li{position: relative;background-color: rgb(255 255 255);}
 .post-sug .swiper-pagination {bottom: 0px;}
 .post-sug-items {overflow: visible;}
+.post-sug-items .item_prod {width: 100%;}
+.post-sug-items .more_txt {position: absolute; top: 50%; left: 50%; transform:translate(-50%, -50%); font-size: 1.3rem; color: #222; padding-right: 1rem; }
+.post-sug-items .more_txt:after {content:''; position: absolute; top: 0.3rem; right: 0; background: url(/images/mo/ico_btn_detail.png) no-repeat right top; background-size:0.5rem 0.9rem;
+width: 0.5rem; height: 0.9rem; background-size:100%;}
 
-.main_tv {padding:3rem 2.0rem 6.83rem 2.0rem;}
+.main_tv {padding:2.3rem 2.0rem 0 2.0rem;}
 .main_tv .cont_head p{ color: #ffffff;}
 .main_tv .cont_body::before {content: '';z-index: -1;display: block;width: 100%;height: 520px;position: absolute;top: 0;left: 0;background: #444444;}
+.main_tv .movbox {height:50vw;}
 
-.post-tv {width: 100%;height: 18rem; height:auto; margin: 0px auto;    padding:0 0rem 3.3rem  0rem;}
+.post-tv {width: 100%; margin: 0px auto; padding:0 0rem 3.3rem  0rem;}
 .post-tv .swiper-slide-active {width: 100%;height: auto;}
 .post-tv .swiper-slide-active:not(.swiper-slide-active) .movbox:after {	content: '';display: block;position: absolute;top: 0;left: 0;	z-index: 1;width: 100%;height: 100%;background:rgb(34 34 34 / 0.5);}
 .post-tv img{width: 100% !important;}
-.post-tv .swiper-slide {position: relative;height: auto;height: 15.0rem;width: 100%; margin: 0 0;}
+.post-tv .swiper-slide {position: relative;height: auto; width: 100%; margin: 0 0;}
 .post-tv .movbox img {width: 100%;height: auto;}
 .main_tv .swiper-pagination {bottom: 0;}
 
-main.container .inner h2[data-style~="unusual"] {font-size:2.0rem;top: 1.2rem;position: relative;}
+main.container .inner h2[data-style~="unusual"] {font-size:2.0rem;top: 0;position: relative; padding-top: 2rem;}
 /* main.container .inner:last-child {padding-bottom: 0;} */
 /* .select_custom .combo .select > div {position: relative; z-index: -1;} */
 
+
+
+
+	/* 이용약관,개인정보취급방침,업체리스트 */
+	.ps p {font-size:1.2rem;color:#666666;line-height:2.2rem;letter-spacing:-0.025em;}
+	.ps {padding:0;} 
+	.ps table {word-break:keep-all;margin-top: 3.0rem;width: 100%;border-top: 1px solid #222222;}
+	.ps table th,
+	.ps table td {position:relative; padding:1.0rem 1.0rem; font-size:1.1rem;line-height: 1.4;color: #222222;letter-spacing:-0.025em;}
+	.ps table td {border-bottom:1px solid #ddd;border-right: 1px solid #ddd;font-weight:200;}
+	.ps table td:last-child {border-right: 1px solid transparent;}
+	.ps table th {border-top: 0;border-bottom: 0;border-right: 0;font-weight: 600;text-align: center;background: #f5f5f5;}
+  .ptn, #partnersPop .pop_cont {height: auto;background: #ffffff;}
+  .ps.ptn table {margin-top:0;}
+  .ps.ptn table th, .ps.ptn table td {text-align: center;padding: 1.6rem 0;}
+  .ps.ptn table th {font-size: 1.3rem; font-weight: 500; line-height:1.3rem;}
+  .ps.ptn table td {font-size: 1.2rem; font-weight: 300; line-height: 1.2rem;}
+  .hookGrp{margin-top: 1.333rem;}
+	.hookGrp .hook_list{border: 1px solid #f5f5f5;padding: 1.333rem;}
+	.hookGrp .hook_list ul{}
+	.hookGrp .hook_list ul:after{content: ''; clear:both; display: block;}
+	/* .hookGrp .hook_list ul li{float: left;width: 33.333%;} */
+	.hookGrp .hook_list ul li a{display: table; color: #222222;}
+	.hookGrp .hook_list ul li a span{margin: 0px 0px 0.5rem 0;display: block;font-size: 1.1rem;font-weight: 300;}
+	.hookGrp .hook_list ul li a span::after{content: ''; display: block; box-sizing: border-box; border: 1px solid transparent;}
+	.hookGrp .hook_list ul li a:hover,
+	.hookGrp .hook_list ul li a:focus{color: #fd4802;}
+	.hookGrp .hook_list ul li a:hover span:after,
+	.hookGrp .hook_list ul li a:focus span:after{content: '';display: block; color: #fd4802; box-sizing: border-box; border-bottom: 1px solid #fd4802;}
+	.hookGrp .hook_cont {font-size:1.6rem;color:#666666;line-height:2.6rem;letter-spacing:-0.025em;}
+	.hookGrp .hook_cont div{margin-top: 2.6rem;}
+	.hookGrp .hook_cont div:last-child{margin-bottom: 5.0rem;}
+	.hookGrp .hook_cont h4 {font-size:1.4rem;font-weight:500;color:#222222;line-height:1.6rem;letter-spacing:-0.025em;}
+	.hookGrp .hook_cont p {font-size:1.2rem;color:#666666;line-height:2.2rem;letter-spacing:-0.025em;}
+	.hookGrp .hook_cont p em{font-size:1.2rem;font-weight:400;color:#222222;line-height:2.2rem;letter-spacing:-0.025em;}
+	.hookGrp .hook_cont ol li {font-size:1.2rem;padding-left: 0.3rem;}
+
+  .pager {height: 100%;margin-top: 2.0rem;margin-bottom: 2.0rem;}
+  .pager .pageNav {display: table;margin-left: auto;margin-right: auto;}
+  .pager .pageNav > li {display: inline;}
+  .pager .pageNav > li::after {content: '';clear: both; display: inline-block;}
+  .pager .pageNav > li > a, .pager .pageNav > li > span {position: relative;float: left;font-size: 1.6rem;font-weight: 400;padding: 0.6rem 0.2rem;line-height: 1.42857143;color: #666666;text-decoration: none;background-color: #ffffff;}
+  .pager .pageNav .prev a , .pager .pageNav .next a {width: 3.4rem;height: 3.4rem;margin-left: 0;border: 1px solid #888888;background: url('/images/mo/ico_paging.png')no-repeat;background-size: 6.8rem 2.866rem;text-indent: -999.9rem;}
+  .pager .pageNav .prev a {background-position: 0rem 0rem;}
+  .pager .pageNav .next a {background-position: -3.5rem 0rem;}
+  .pager .pageNav .active a {color: #222222;margin-left: 1.5rem;}
+  .pager .pageNav .lastpage a {color: #888888;margin-right: 1.5rem;}
+  .pager .pageNav .lastpage a::before {content: '/';padding-right: 0.3rem;}
+
+
+
+
 /* ev_공통 */
 .ev .inner {background: #fff; padding-bottom: 0;}
 .ev .inner.bg_gray {background: #f5f5f5;}
@@ -622,6 +681,7 @@ main.container .inner h2[data-style~="unusual"] {font-size:2.0rem;top: 1.2rem;po
 .modal.photo_comment_popup .modal-body .pop_cont .pop_slide .swiper-container {height: 100%;}
 .modal.photo_comment_popup .modal-body .pop_cont .pop_slide .swiper-pagination-fraction {bottom: 3.3rem; width:auto; left: 50%; transform:translateX(-50%); background: rgba(34,34,34,.5); color: #fff; font-weight: 300;padding:0.5rem 0.7rem; line-height: 1; font-size: 1.2rem; border-radius:2rem;}
 .swiper-pagination-current {font-weight: 600;}
+/* .swiper-pagination-current:before {content:'0';} */
 .modal.photo_comment_popup .pop_detail {position: absolute; left: 0; bottom:-24rem; z-index: 99; background: #fff; padding:0 2rem 2rem; box-shadow: 0px -14px 17.8px 2.2px rgba(0, 0, 0, 0.04); font-size: 1.3rem; max-height: 37rem; overflow-y:auto; transition: all 600ms cubic-bezier(0.86, 0, 0.07, 1);}
 .pop_slide .swiper-slide .img {}
 .pop_slide .swiper-slide img {width: auto; height: auto; max-height: 100%; max-width: 100%; margin: auto 0; position: absolute; top: 50%; bottom: auto; left: 50%; right: 0; transform: translate(-50%, -50%); cursor: pointer;}
@@ -797,6 +857,7 @@ main.container .inner h2[data-style~="unusual"] {font-size:2.0rem;top: 1.2rem;po
 .my .mypage {background: #f5f5f5;}
 .my .inner {padding-bottom: 0; background: #fff;}
 .my .inner.bg_gray {background: #f5f5f5;}
+.my .help_block {margin-top: 1rem;font-size: 1.2rem;}
 .my .tbl_wrap {padding: 3rem 0;}
 .my table input[type="text"], table input[type="password"] {padding: 0 1.4rem; font-size: 1.3rem;}
 .my .btn_group {width: 100%; margin-top: 0;}
@@ -1166,8 +1227,8 @@ main.container .inner h2[data-style~="unusual"] {font-size:2.0rem;top: 1.2rem;po
 .pay_wrap .tbl {padding:2rem 0; border-bottom: 1px solid #ddd;}
 .pay_wrap .tbl:after {content:''; display: block; clear:both;}
 .pay_wrap .tbl dl > div:after {content:''; display: block; clear:both;}
-.pay_wrap .tbl dl > div:last-child dt, .pay_wrap .tbl dl > div:last-child dd {margin-bottom: 0;}
 .pay_wrap .tbl table dt {vertical-align: top; background: url('/images/mo/ico_bracket.png') no-repeat left top 2px; background-size:0.7rem; padding-left: 1.3rem; color: #888; float:left; margin-bottom: 1.4rem; font-weight: 300;}
+.pay_wrap .tbl dl > div:last-child dt, .pay_wrap .tbl dl > div:last-child dd {margin-bottom: 0;}
 .pay_wrap .tbl table dd {text-align: right; color: #666; float:right;} 
 .pay_wrap .tbl .btn {float: right; padding:0.6rem 1.3rem; font-size: 1.1rem; height:auto; margin-top: 1rem;}
 
@@ -1408,7 +1469,7 @@ main.container .inner h2[data-style~="unusual"] {font-size:2.0rem;top: 1.2rem;po
 /* popup_쿠폰사용안내 */
 .modal.couponInfo_pop {max-width:none; height:auto;}
 .modal.couponInfo_pop .modal-title {word-break:keep-all;}
-.modal.couponInfo_pop .modal-body .pop_cont {line-height:1; max-height:none;}
+.modal.couponInfo_pop .modal-body .pop_cont {line-height:1; max-height:none; padding-bottom: 2rem;}
 .modal.couponInfo_pop button span {line-height:1;}
 .modal.couponInfo_pop .form_field,
 .modal.couponInfo_pop .form_field > div {display:block; width:100%;}
@@ -1416,9 +1477,9 @@ main.container .inner h2[data-style~="unusual"] {font-size:2.0rem;top: 1.2rem;po
 .modal.couponInfo_pop dl > div:first-child {margin-top:0}
 .modal.couponInfo_pop dl > div {margin-top:20px}
 .modal.couponInfo_pop dl > div::after {content:''; clear:both; display:block;}
-.modal.couponInfo_pop dl dt {position:relative; width:84px; padding-left:15px; color:#222; font-weight:300;}
+.modal.couponInfo_pop dl dt {position:relative; padding-left:1rem; color:#222; font-weight:300;}
 .modal.couponInfo_pop dl dt::before {content:''; position:absolute; left:0; top:5px; width:3px; height:3px; background:#888}
-.modal.couponInfo_pop dl dd {color:#666; font-weight:200;}
+.modal.couponInfo_pop dl dd {color:#666; font-weight:200; padding:0 1rem; margin-top: 1rem;}
 
 /* my_gift(myVoucher) */
 .my .myVoucher .inner {background: #fff;}
@@ -1514,18 +1575,35 @@ background-size:100%;}
 .dp .dp_submain .best_item .itemsGrp .item_prod {width: 48.75%; float:left; margin-right: 2.5%; margin-bottom: 4rem;}
 .dp .dp_submain .best_item .itemsGrp .item_prod:nth-child(2n) {margin-right: 0;}
 
+/* od_공통 */
+.od .desc_txt {position: relative; padding-left:0.8rem; font-size: 1.1rem;}
+.od .desc_txt:after {content:''; position: absolute; top:0.6rem; left: 0; background: #858585; width: 0.2rem; height: 0.2rem;}
+.od .icon_tag .tag_stype1 {color: #666; border-color:#888; background:#fff;}
+.od .info_txt {padding:1.8rem; background:#fff6f2;}
+.od .info_txt.type2 {background: #f5f5f5;}
+.od .info_txt ul li {position: relative; font-size: 1.1rem; color: #888; padding-left:0.8rem; margin-bottom: 0.5rem;}
+.od .info_txt ul li:last-child {margin-bottom: 0;}
+.od .info_txt ul li:after {content:''; position: absolute; top:0.6rem; left: 0; background: #858585; width: 0.2rem; height: 0.2rem;}
+
+.od .inner:last-child .btn_group_flex {margin-top: -1.2rem;}
+.od .inner .shipfold .btn_group_flex {margin-top: 3rem;}
+
 /* od_테이블 */
+.od .pay_wrap {padding-top: 4rem;}
 .od .goods_top {position: relative; padding: 1.5rem 0; border-bottom: 1px solid #ddd; font-size: 0; margin-bottom: 2.5rem;}
 .od .goods_top h3 {margin-bottom: 0;}
 .od .goods_top span {display: inline-block; margin-left: 0.8rem;}
 .od .goods_top .start_t, .od .goods_top .gift_t, .od .goods_top .goods_date {font-size: 1.5rem; font-weight: 500;}
+.od .goods_top .goods_date .date {font-size: 1.2rem; color: #888;}
 
 .od .goods_top .detail_btn {position: absolute; bottom: 1.5rem; right: 0; font-size: 1.3rem; color: #8d8d8d; padding-right: 1.4rem; background: url(/images/mo/ico_btn_detail02.png) no-repeat right top 3px; background-size:0.53rem 0.9rem;}
 .od .goods_top .delete_btn {position: absolute; bottom: 1.5rem; right: 0; font-size: 1.3rem; color: #8d8d8d; padding-right: 1.4rem; background: url(/images/mo/ico_btn_cls.png) no-repeat right top 3px; background-size:0.9rem 0.9rem;}
 .od .goods_top .purchase_btn {position: absolute; bottom: 1.5rem; right: 0; font-size: 1.3rem; color: #8d8d8d; padding-right: 1.6rem; background: url(/images/mo/ico_check01.png) no-repeat right top 3px; background-size:1.06rem 0.8rem;}
 .od .badge_wrap {display: inline-block;}
 .od .order_badge {font-size: 0.9rem; color: #666; font-weight: 300; border:1px solid #888; padding:0.5rem 0.4rem; margin-left: 1px; vertical-align: top;}
-.od .order_bullet_badge {color: #fd4802; border:1px solid #fd4802;}
+.od .order_bullet_badge {color: #fd4802; border:1px solid #fd4802; background: #fff6f2;}
+
+.od .btn_group_flex > div > .btn.btn_primary {border-color:#fd4802; background: #fd4802; color:#fff;}
 
 .od .part_goods {position:relative;}
 .od .part_goods:first-child {}
@@ -1542,28 +1620,53 @@ background-size:100%;}
 
 .od .part_goods .goods_btn_wrap {margin: 1.8rem 0;}
 .od .part_goods .goods_txt {background: #f5f5f5; text-align: center; padding:1.5rem 0; margin: 1.8rem 0 0;}
+.od .part_goods .goods_txt.reserv {background: #fff6f2;}
+.od .part_goods .goods_txt span {position: relative;}
+.od .part_goods .goods_txt span:first-child {margin-right: 0.8rem; padding-right: 0.8rem; border-right:1px solid #ddd;}
+.od .part_goods .goods_txt span:first-child:after { position: absolute; top: 0; right: -1rem; width: 0.1rem; height: 1rem; background: #ddd;}
 .od .part_goods .goods_txt p {font-size: 1.1rem; font-weight: 300;}
 .od .part_goods .goods_txt .period {color: #fd4802; margin-top: 0.5rem;}
 .od .part_goods .goods_alert {text-align: center; margin-bottom: 1.8rem;}
 .od .part_goods .goods_alert p {display: inline-block; text-align: left; font-size: 1.1rem; font-weight: 200; color: #fd4802; padding-left: 2rem; background: url(/images/mo/ico_err02.png) no-repeat left top; background-size: 1.5rem;}
 
+.od .part_goods .od_calc {position: relative; margin: 2rem 0 0 0;}
+.od .part_goods .od_calc:after {content:''; display: block; clear:both;}
+/* .shopping_bag .part_goods .od_calc .count {float:left;} */
+.od .part_goods .od_calc .count {display: inline-block; font-size: 1.1rem;}
+.od .part_goods .od_calc .price {position: absolute; top: 0; right: 0;}
+.od .part_goods .od_calc .price del {margin:0;}
+.od .part_goods .od_calc .sale_price {display: inline-block;}
+
 /* od_member_1 */
 .od {background: #f5f5f5; padding-top: 1.2rem;}
 .od .form_field {display:block;}
 .od .inner {background: #fff; margin-bottom: 1.2rem;}
 .od .odPayment .inner:last-child {padding-bottom: 0 !important; margin-top: -1.2rem;}
-.od .inner:last-child .btn_group_flex {margin-top: 0;}
 .od .foldGroup {margin-bottom: 0;}
 .od .foldGroup > ul > li {border-bottom: 0;}
 .od .od_item_box .part_goods {padding: 0 0 1.2rem; position: relative;}
 .od .od_item_box .part_goods:after {content:''; background: #f5f5f5; height: 1.2rem; position: absolute; left: 50%; bottom: 0; width: 100vw; transform:translateX(-50%);}
-.od .od_amount_box {padding-top: 2rem;}
-.od .foldGroup .fold_cont {padding:0 2rem 3rem;}
+.od .od_item_box .part_goods:first-child .goods_top {padding-top: 0;}
+.od .od_amount_box {}
+.od .foldGroup .fold_cont {padding:0 2rem 3rem; font-weight: 300;}
 .od .foldGroup .fold_head {position: relative;  z-index: 3;}
+.od .foldGroup .fold_head.on .data {display: none;}
 .od .foldGroup .fold_head a {padding: 0;}
-.od .foldGroup .fold_head .data {padding-right: 0;}
-.od .foldGroup .fold_head .data {position:absolute; top:50%; right:50px; transform:translateY(-50%); color:#000; font-size:1.3rem; font-weight:200; z-index:-1;}
-.od .foldGroup .fold_head .data.maxdisc {z-index:2;}
+.od .foldGroup .fold_head .data {position:absolute; top:50%; right:50px; transform:translateY(-50%); color:#000; font-size:1.3rem; font-weight:300; z-index:-1; padding-right: 0; width: 40%; white-space: nowrap; overflow:hidden; text-overflow: ellipsis; text-align: right;}
+.od .foldGroup .fold_head .data.fixed {display: block;}
+.od .foldGroup .fold_head .data.custom_disc {}
+.od .foldGroup .fold_head .data.custom_disc label {line-height: 2rem;}
+.od .foldGroup .fold_head .data.maxdisc {z-index:2; text-align: center; width:auto;}
+.od .foldGroup .fold_head .data.maxdisc span {padding-left: 0; margin-left: 0;}
+.od .foldGroup .fold_head .data .maxdisc_amount {color: #fd4802;}
+.od .foldGroup .fold_head .data .maxdisc_amount::before {display:none;}
+.od .foldGroup .fold_head .data span {/*display:inline-block;*/ position:relative; padding-left:1rem; margin-left:1rem;}
+.od .foldGroup .fold_head .data span::before {content:''; position:absolute; left:-0.2rem; top:50%; transform:translateY(-60%); width:1px; height:10px; background-color:#ddd;}
+.od .foldGroup .fold_head .data span:first-of-type {margin-left:0; padding-left:0;}
+.od .foldGroup .fold_head .data span:first-of-type::before {display:none;}
+
+.od .fold_cont .area_mbinfo div:first-child dd {font-size: 1.4rem;}
+.od .fold_cont .area_mbinfo div dd {font-size: 1.3rem; color:#222; font-weight: 300;}
 
 .od .od_item_box {}
 .od .od_item_box .part_dlvr {border-top:1px solid #ddd}
@@ -1578,7 +1681,7 @@ background-size:100%;}
 .od .od_item_box .part_dlvr .gd_list .item_gd .price {margin-top:5px}
 .od .od_item_box .part_dlvr .gd_list .item_gd .info_reserv {margin-top:10px; color:#fd4802; font-size:14px; font-weight:200;}
 .od .od_item_box .part_dlvr .gd_list .item_gd .info_reserv span {margin-left:10px; font-weight:300;}
-.od .od_amount_box {color:#888; font-size:14px; font-weight:200;}
+.od .od_amount_box {color:#888; font-size:14px; font-weight:200; padding: 2rem 0;}
 .od .od_amount_box dl div {margin-top:1rem;}
 .od .od_amount_box dl div:first-child {margin-top:0px}
 .od .od_amount_box dl div:after {content:''; display: block; clear:both;}
@@ -1589,28 +1692,56 @@ background-size:100%;}
 .od .od_amount_box .t_info {margin-top:20px; text-align:right;}
 .od .od_amount_box .btn_link {display:inline-block; padding:0px 13px; height:40px; line-height:38px; color:#222; font-size:14px; font-weight:300; border:1px solid #a7a7a7; box-sizing:border-box;}
 .od .od_amount_box .btn_link::after {display:none;}
-.od .totalprice_box {padding:0px 0 0; margin:10px 0 0;}
+.od .totalprice_box {padding:0px 0 0; }
 .od .totalprice_box dl {padding:2rem 0 0; border-top:1px solid #ddd; font-size:16px; font-weight:300;}
 .od .totalprice_box dl:after {content:''; display: block; clear:both;}
 .od .totalprice_box dl dt {margin-top:0.5rem; font-size:1.4rem; font-weight:500; float:left; line-height: 1;}
 .od .totalprice_box dl dd {color:#fd4802; font-size:1.8rem; font-weight:700; float:right; line-height: 1;}
 .od .totalprice_box dl dd span {font-size:24px; vertical-align:middle;}
-.od .totalprice_box .info_point {margin-top:12px; color:#888; font-size:14px; font-weight:300; text-align:right; line-height:16px;}
+.od .totalprice_box .info_point {margin-top:1.2rem; color:#888; font-size:14px; font-weight:300; text-align:right; line-height:16px;}
 .od .totalprice_box .info_point .save_point {display:inline-block; padding-left:22px; height:16px; background:url('/images/pc/ico_point.png') no-repeat 0 50%; color:#fd4802;}
-
-.odPayment .area_seldiscount .dlvr_fee_box .select_custom {height: 8rem;}
-.odPayment .area_seldiscount .dlvr_fee_box .select_custom .combo .select {height: 8rem;}
+.od .totalprice_box .info_delivery {margin-top: 3rem; color: #888; text-align: center; font-weight: 300;}
+
+.od .paymethod_box .sel_method:after {content:''; display: block; clear:both;}
+.od .paymethod_box .sel_method li {width: 50%; float:left; margin-bottom: 1.5rem;}
+
+.odPayment .fold_cont .area_overseas .form_field {margin-top: 2.4rem;}
+.odPayment .fold_cont .area_overseas .form_field input[type="radio"] + label {margin-bottom: 1.5rem;}
+.odPayment .fold_cont .area_overseas .form_field > div {}
+.odPayment .fold_cont .area_overseas .info_box {font-size:16px;}
+.odPayment .fold_cont .area_overseas .info_box .t_err {margin-top:5px; font-size:1.1rem;}
+.odPayment .fold_cont .area_overseas .info_box.overs1 {margin-right:0}
+.odPayment .fold_cont .area_overseas .info_box.overs1 .input_wrap {display: block; width: 100%;}
+.odPayment .fold_cont .area_overseas .info_box.overs1 .input_wrap .form_control {width: 100%; color: #222;}
+.odPayment .fold_cont .area_overseas .info_box.overs2 {margin-top:0; margin-right:0; color:#666; font-size: 1.4rem;}
+.odPayment .fold_cont .area_overseas .info_box .agree_overs {margin-top:15px; width:100%; word-break:keep-all;}
+.odPayment .fold_cont .area_overseas .info_box .agree_overs label {line-height:1.4; color:#666; font-size: 1.3rem;}
+.odPayment .fold_cont .area_overseas .info_box .agree_overs label::before,
+.odPayment .fold_cont .area_overseas .info_box .agree_overs label::after {top:10px !important; transform:translateY(0%) !important;}
+.odPayment .agree_insurance, .od .agree_insurance {display:none; margin:1rem 0 0;}
+.od .foldGroup .fold_head .data .total_gift,
+.od .foldGroup .fold_head .data .total_deduct {color:#fd4802; font-weight:500;}
+
+.od .fold_cont .area_selpoint input[type="text"]:read-only,
+.od .fold_cont .area_selpoint input[type="text"]:disabled {background: #fff;}
+
+.od .fold_cont .area_customitem > p {font-size: 1.1rem; color: #888;}
+.od .fold_cont .area_customitem .agree_custom label {font-size: 1.3rem; color: #222;}
+.od .fold_cont .area_customitem .form_field {margin:1.3rem 0 2rem;}
+.od .fold_cont .area_customitem .form_field input[type="checkbox"] + label:after,
+.od .fold_cont .area_customitem .form_field input[type="checkbox"] + label:before {top: 0; margin-top: 0;}
+.od .fold_cont .area_customitem .info_txt {margin-top:0; background: #f5f5f5;}
 
 /* 주문결제_배송지변경 팝업 */
 .modal.adrsChange_Pop .modal-header {padding: 0; height: 5.5rem;}
 .modal.adrsChange_Pop .modal-body {margin-top: 5.2rem;}
 .modal.adrsChange_Pop .modal-body {padding: 0;}
-.adrsChange_Pop .htop {position: relative;height: 55px;-webkit-box-sizing: border-box;box-sizing: border-box;border: rgba(0, 0, 0, 0.1) solid 1px;background-color: #fff;}
+.adrsChange_Pop .htop {position: relative;height: 55px;-webkit-box-sizing: border-box;box-sizing: border-box;background-color: #fff;}
 .adrsChange_Pop #htopSub {border-bottom: 1px solid #e5e5e5;box-sizing: border-box;}
 .adrsChange_Pop #htopSubs {border-bottom: 1px solid #000000;box-sizing: border-box;}
-.adrsChange_Pop .htop h5 {display: inline-block;position: relative;height: 40px;line-height: 4.0rem;vertical-align: top; font-size: 1.8rem;color: #222; margin:10px 0 0 10px;}
+.adrsChange_Pop .htop h5 {display: inline-block;position: relative;height: 3.5rem;line-height: 3.5rem;vertical-align: top; font-size: 1.8rem;color: #222; margin:1rem 0 0 2rem;}
 .adrsChange_Pop .htop h5 img {position: relative;top: 50%;left: 0;right: 0;transform: translate(0, -50%);margin: 0px 0;}
-.adrsChange_Pop .htop .btn_back {width: 35px;height: 35px; margin:10px 0 0 15px;}
+.adrsChange_Pop .htop .btn_back {width: 35px;height: 35px; margin:0.7rem 0 0 1.5rem;}
 .adrsChange_Pop .htop .btn_back span {display: block;width: 24px;height: 24px;margin: 0 auto;position: relative;}
 .adrsChange_Pop .htop .btn_back span i {display: block;position: absolute;background: #222;-webkit-transition: all 0.3s ease-out;transition: all 0.3s ease-out;}
 .adrsChange_Pop .htop .btn_back span i.gl1 {left: 0;top: 6px;width: 12px;height: 2px;-webkit-transform: rotate(-45deg);transform: rotate(-45deg);}
@@ -1660,6 +1791,8 @@ background-size:100%;}
 /* //주문결제_배송지변경 팝업 */
 
 /* 주문결제_배송지추가 팝업 */
+.modal.adrsAdd_pop .modal-header {padding: 0; height: 5.5rem;}
+.modal.adrsAdd_pop .modal-body {margin-top: 5.2rem; padding:0 2rem;}
 .adrsAdd_pop .tbl_wrap {padding:3rem 0 0;}
 .adrsAdd_pop .tbl_wrap:first-child  {padding-top: 2rem;}
 .adrsAdd_pop .tbl_wrap .tbl.tbl_dlvr {border-top: 0; padding-top: 0;}
@@ -1674,16 +1807,57 @@ background-size:100%;}
 .adrsAdd_pop .tbl_wrap .tbl.tbl_request table tr:last-child td {padding-bottom: 0;}
 .adrsAdd_pop .tbl_wrap .tbl.tbl_request input[type="text"] {width: 100%; height: 4.5rem; font-size: 1.3rem; color: #888; font-weight: 300;}
 .adrsAdd_pop .tbl_wrap .tbl.tbl_request input[type="text"]::placeholder {}
-.adrsAdd_pop .tbl_wrap .tbl.tbl_request .desc_txt {margin-top: 1rem;}
+.adrsAdd_pop .tbl_wrap .tbl.tbl_request .desc_txt {position: relative; padding-left: 0.8rem; margin-top: 1rem; font-size: 1.1rem; }
+.adrsAdd_pop .tbl_wrap .tbl.tbl_request .desc_txt:after {content:''; position: absolute; top: 0.6rem; left: 0; background: #888; width: 0.2rem; height: 0.2rem;}
+.adrsAdd_pop .htop h5 {display: inline-block;position: relative;height: 3.5rem;line-height: 3.5rem;vertical-align: top; font-size: 1.8rem;color: #222; margin:1rem 0 0 2rem;}
+.adrsAdd_pop .htop h5 img {position: relative;top: 50%;left: 0;right: 0;transform: translate(0, -50%);margin: 0px 0;}
+.adrsAdd_pop .htop .btn_back {width: 35px;height: 35px; margin:0.7rem 0 0 1.5rem;}
+.adrsAdd_pop .htop .btn_back span {display: block;width: 24px;height: 24px;margin: 0 auto;position: relative;}
+.adrsAdd_pop .htop .btn_back span i {display: block;position: absolute;background: #222;-webkit-transition: all 0.3s ease-out;transition: all 0.3s ease-out;}
+.adrsAdd_pop .htop .btn_back span i.gl1 {left: 0;top: 6px;width: 12px;height: 2px;-webkit-transform: rotate(-45deg);transform: rotate(-45deg);}
+.adrsAdd_pop .htop .btn_back span i.gl2 {left: 0;top: 50%;-webkit-transform: translateY(-50%);transform: translateY(-50%);width: 24px;height: 2px;}
+.adrsAdd_pop .htop .btn_back span i.gl3 {left: 0;bottom: 6px;width: 12px;height: 2px;-webkit-transform: rotate(45deg);transform: rotate(45deg);}
+.adrsAdd_pop .htop .btn_back:active span i {left: -20px;}
+.adrsAdd_pop .default_addrs {margin-top: 1.5rem;}
 /* //주문결제_배송지추가 팝업 */
 
-/* 주문결제_할인쿠폰변경 팝업 */
+/* 주문결제_배송지수정 팝업 */
+.modal.adrsModify_pop .modal-header {padding: 0; height: 5.5rem;}
+.modal.adrsModify_pop .modal-body {margin-top: 5.2rem; padding:0 2rem;}
+.adrsModify_pop .tbl_wrap {padding:3rem 0 0;}
+.adrsModify_pop .tbl_wrap:first-child  {padding-top: 2rem;}
+.adrsModify_pop .tbl_wrap .tbl.tbl_dlvr {border-top: 0; padding-top: 0;}
+.adrsModify_pop .tbl_wrap .tbl.tbl_dlvr .input_wrap {display: block; width: 100%; position: relative;}
+.adrsModify_pop .tbl_wrap .tbl.tbl_dlvr .input_wrap button.btn_sch {position: absolute; top: 0; right: 0; border:0; width: 5rem; height: 4.5rem; background:transparent url('/images/mo/ico_search_btn.png') no-repeat center; background-size:2rem; margin-left: 0;}
+.adrsModify_pop .tbl_wrap .tbl.tbl_dlvr .input_wrap input.form_control + input.form_control {margin-top: -1px;}
+.adrsModify_pop .tbl_wrap .tbl.tbl_dlvr input[type='text'] {width: 100%; font-size: 1.3rem; color: #888; font-weight: 300;}
+.adrsModify_pop .dlvr_basic {margin-top: 1.5rem;}
+.adrsModify_pop .dlvr_basic label {font-size: 1.4rem;}
+.adrsModify_pop .tbl_wrap .tbl.tbl_request {padding:1.6rem 0;}
+.adrsModify_pop .tbl_wrap .tbl.tbl_request table td {padding-bottom: 1.6rem;}
+.adrsModify_pop .tbl_wrap .tbl.tbl_request table tr:last-child td {padding-bottom: 0;}
+.adrsModify_pop .tbl_wrap .tbl.tbl_request input[type="text"] {width: 100%; height: 4.5rem; font-size: 1.3rem; color: #888; font-weight: 300;}
+.adrsModify_pop .tbl_wrap .tbl.tbl_request input[type="text"]::placeholder {}
+.adrsModify_pop .tbl_wrap .tbl.tbl_request .desc_txt {position: relative; padding-left: 0.8rem; margin-top: 1rem; font-size: 1.1rem; }
+.adrsModify_pop .tbl_wrap .tbl.tbl_request .desc_txt:after {content:''; position: absolute; top: 0.6rem; left: 0; background: #888; width: 0.2rem; height: 0.2rem;}
+.adrsModify_pop .htop h5 {display: inline-block;position: relative;height: 3.5rem;line-height: 3.5rem;vertical-align: top; font-size: 1.8rem;color: #222; margin:1rem 0 0 2rem;}
+.adrsModify_pop .htop h5 img {position: relative;top: 50%;left: 0;right: 0;transform: translate(0, -50%);margin: 0px 0;}
+.adrsModify_pop .htop .btn_back {width: 35px;height: 35px; margin:0.7rem 0 0 1.5rem;}
+.adrsModify_pop .htop .btn_back span {display: block;width: 24px;height: 24px;margin: 0 auto;position: relative;}
+.adrsModify_pop .htop .btn_back span i {display: block;position: absolute;background: #222;-webkit-transition: all 0.3s ease-out;transition: all 0.3s ease-out;}
+.adrsModify_pop .htop .btn_back span i.gl1 {left: 0;top: 6px;width: 12px;height: 2px;-webkit-transform: rotate(-45deg);transform: rotate(-45deg);}
+.adrsModify_pop .htop .btn_back span i.gl2 {left: 0;top: 50%;-webkit-transform: translateY(-50%);transform: translateY(-50%);width: 24px;height: 2px;}
+.adrsModify_pop .htop .btn_back span i.gl3 {left: 0;bottom: 6px;width: 12px;height: 2px;-webkit-transform: rotate(45deg);transform: rotate(45deg);}
+.adrsModify_pop .htop .btn_back:active span i {left: -20px;}
+.adrsModify_pop .default_addrs {margin-top: 1.5rem;}
+/* //주문결제_배송지수정 팝업 */
 
 /* 주문결제_할인쿠폰변경 팝업 */	
-.modal.couponModify_pop .modal-body .pop_cont {line-height:1;}
+.modal .modal-footer .btn.btn_primary {background: #fd4802;}
+.modal.couponModify_pop .modal-body .pop_cont {line-height:1; font-size: 1.3rem;}
 .modal.couponModify_pop .modal-footer {margin-top:0;}
 .modal.couponModify_pop button span {line-height:1;}
-.modal.couponModify_pop h6 {margin-bottom:20px; font-size: 2rem;}
+.modal.couponModify_pop h6 {margin-bottom:1.5rem; font-size: 1.4rem; font-weight: 500;}
 .modal.couponModify_pop .form_field,
 .modal.couponModify_pop .form_field > div {display:block; width:100%;}
 .modal.couponModify_pop .area_item_coupon {margin-bottom:40px;}
@@ -1692,15 +1866,16 @@ background-size:100%;}
 .modal.couponModify_pop .area_item_coupon .apply_item .item_gd {margin-bottom:20px}
 .modal.couponModify_pop .area_item_coupon .apply_item .item_gd figure {margin: 0;}
 .modal.couponModify_pop .area_item_coupon .apply_item .item_gd figure > div {display:inline-block;}
-.modal.couponModify_pop .area_item_coupon .apply_item .item_gd figure .thumb {float:left; width:80px; height:120px; padding-top:0;}
-.modal.couponModify_pop .area_item_coupon .apply_item .item_gd figure figcaption {display:table-cell; padding-left:20px; width:calc(100% - 140px); height:120px; vertical-align:middle;}
-.modal.couponModify_pop .area_item_coupon .apply_item .item_gd figure figcaption .name {margin-top:10px}
-.modal.couponModify_pop .area_item_coupon .apply_item .item_gd figure figcaption .option {margin-top:15px}
-.modal.couponModify_pop .area_item_coupon .select_custom {height:90px;}
-.modal.couponModify_pop .area_item_coupon .select_custom .combo .select {height:90px; padding:0;}
+.modal.couponModify_pop .area_item_coupon .apply_item .item_gd figure .thumb {float:left; width:4rem; height:6rem; padding-top:0;}
+.modal.couponModify_pop .area_item_coupon .apply_item .item_gd figure figcaption {padding-top: 0.6rem; padding-left:5.5rem; width:90%; vertical-align:middle; font-weight: 300;}
+.modal.couponModify_pop .area_item_coupon .apply_item .item_gd figure figcaption .brand {font-size: 1rem; color: #888;}
+.modal.couponModify_pop .area_item_coupon .apply_item .item_gd figure figcaption .name {margin-top:0.6rem; overflow:hidden; text-overflow: ellipsis; white-space:nowrap; line-height: 1.2; font-size: 1.3rem;}
+.modal.couponModify_pop .area_item_coupon .apply_item .item_gd figure figcaption .option {margin-top:0.8rem; font-size: 1.1rem; color: #888;}
+.modal.couponModify_pop .area_item_coupon .select_custom {height:8rem;}
+.modal.couponModify_pop .area_item_coupon .select_custom .combo .select {height:8.3rem; padding:0;}
 .modal.couponModify_pop .area_item_coupon .select_custom .combo .select:after {top:50%; right:20px; transform:translateY(-50%);}
-.modal.couponModify_pop .area_item_coupon .select_custom .combo .list {top:89px; padding:0;}
-.modal.couponModify_pop .area_item_coupon .select_custom .combo .list > li {line-height:1; height:90px; padding:0; border-top:1px solid #ddd;}
+.modal.couponModify_pop .area_item_coupon .select_custom .combo .list {top:8rem; padding:0;}
+.modal.couponModify_pop .area_item_coupon .select_custom .combo .list > li {line-height:1; height:8rem; padding:0; border-top:1px solid #ddd;}
 .modal.couponModify_pop .area_item_coupon .select_custom .combo .item_coupon {padding:14px 18px;}
 .modal.couponModify_pop .area_item_coupon .select_custom .combo .item_coupon .name {color:#222; font-size:14px; font-weight:300;}
 .modal.couponModify_pop .area_item_coupon .select_custom .combo .item_coupon .txt {margin-top:10px; color:#888; font-size:14px; font-weight:200;}
@@ -1709,7 +1884,7 @@ background-size:100%;}
 .modal.couponModify_pop .area_item_coupon .select_custom .combo .item_coupon .discount span {font-weight:500;}
 .modal.couponModify_pop .area_item_coupon .select_custom .combo .item_coupon .empty {margin-top:22px; color:#222; font-size:14px; font-weight:300;}
 .modal.couponModify_pop .area_item_coupon .select_custom .combo .list > li[aria-disabled="true"] .item_coupon p {color:#888;}
-.modal.couponModify_pop .area_cart_coupon {margin-bottom:40px;}
+.modal.couponModify_pop .area_cart_coupon {margin-bottom:6rem;}
 .modal.couponModify_pop .area_cart_coupon .form_field > div {border-bottom:1px solid #ddd}
 .modal.couponModify_pop .area_cart_coupon .form_field > div:first-child {border-top:1px solid #ddd;}
 .modal.couponModify_pop .area_cart_coupon .form_field > div label {width:100%;}
@@ -1721,25 +1896,71 @@ background-size:100%;}
 .modal.couponModify_pop .area_cart_coupon .cart_coupon .discount span {font-weight:500;}
 /* //주문결제_할인쿠폰변경 팝업 */
 
-.od .gift_box .form_field .gift .chk_img+label span {padding:0; border:none;}
-.od .gift_box .form_field .gift .chk_img:checked+label {border:2px solid #e7501b;}
-.od .gift_box .form_field .gift input[type="checkbox"] + label:before,
-.od .gift_box .form_field .gift input[type="checkbox"] + label:after{display: none;}
-.od .gift_box .form_field .gift input[type="radio"] + label:before,
-.od .gift_box .form_field .gift input[type="radio"] + label:after{left:10px; top: 10px; margin-top: 0;}
-.od .gift_box .form_field .gift label {position:relative; width:100%; padding:0; border:1px solid #ddd; box-sizing:border-box; vertical-align:middle;}
-.od .gift_box .form_field .gift label > span {display:inline-block; width:100%;}
-.od .gift_box .form_field .gift label .thumb { background-color:#eee;}
-.od .gift_box .form_field .gift label .thumb img {width:100%;}
-.od .gift_box .form_field .gift label .name {width:100%; color:#666; font-size:14px; line-height:1.4; font-weight:200; min-height:38px; display: -webkit-box; overflow: hidden; text-overflow: ellipsis; -webkit-line-clamp: 2; -webkit-box-orient: vertical; word-break: break-all;}
-.od .gift_box .form_field .gift label .deduct {margin-top:0px;color:#fd4802; font-weight:300; font-size:14px;}
-
-.od .area_selgift .gift_box .gift {float:left; width: 31.87%; margin:0 2.18% 2.18% 0;}
+.od .area_selgift .gift_box {margin-bottom: 2rem; border-bottom: 1px solid #eee;}
+.od .area_selgift .gift_box:last-of-type {border-bottom: 0; padding-bottom: 0;}
+.od .area_selgift .gift_box .txt {margin-bottom:1.5rem; white-space:nowrap; overflow:hidden; text-overflow: ellipsis;}
+.od .area_selgift .gift_box .txt span {position:relative; padding-right:20px; margin-right:10px; color:#222; font-weight:300;}
+.od .area_selgift .gift_box .txt span::after {content:''; position:absolute; right:0; top:50%; transform:translateY(-50%); width:6px; height:11px; background:url('/images/pc/ico_arrow_thin.png') no-repeat 0 0;}
+.od .area_selgift .gift_box .form_field .gift .chk_img + label span {padding:0; border:1px solid transparent;}
+.od .area_selgift .gift_box .form_field .gift .chk_img:checked + label .thumb {border:1px solid #fd4802;}
+.od .area_selgift .gift_box .form_field .gift input[type="checkbox"] + label:before,
+.od .area_selgift .gift_box .form_field .gift input[type="checkbox"] + label:after{display: none;}
+.od .area_selgift .gift_box .form_field .gift input[type="radio"] + label:before,
+.od .area_selgift .gift_box .form_field .gift input[type="radio"] + label:after{left:10px; top: 10px; margin-top: 0;}
+.od .area_selgift .gift_box .form_field .gift label {position:relative; width:100%; padding:0; box-sizing:border-box; vertical-align:middle;}
+.od .area_selgift .gift_box .form_field .gift label > span {display:inline-block; width:100%;}
+.od .area_selgift .gift_box .form_field .gift label .thumb { background-color:#eee; border:1px solid #eee;}
+.od .area_selgift .gift_box .form_field .gift label .thumb img {width:100%;}
+.od .area_selgift .gift_box .form_field .gift label .name {width:100%; color:#666; font-size:1.1rem; line-height:1.4; font-weight:200; min-height:3.4rem; display: -webkit-box; overflow: hidden; text-overflow: ellipsis; -webkit-line-clamp: 2; -webkit-box-orient: vertical; word-break: break-all; margin:1.5rem 0 1rem; text-align: center;}
+.od .area_selgift .gift_box .form_field .gift label .deduct {margin-top:0px;color:#fd4802; font-weight:300; font-size:1.3rem; text-align: center;}
+
+.od .area_selgift .gift_box .gift {float:left; width: 31.87%; margin:0 2.18% 2.4rem 0;}
 .od .area_selgift .gift_box .gift:nth-child(3n) {margin-right: 0;}
-.od .area_selgift .agree_gift {border:1px solid #ddd; text-align: center;}
+.od .area_selgift .agree_gift {border:1px solid #ddd; text-align: center; padding:1.5rem 0;}
+.od .area_selgift .agree_gift .txt {font-size: 1.3rem; margin:1rem 0;}
+.od .area_selgift .agree_gift .btn_link_popup {font-size: 1.1rem; color:#666; border-bottom: 1px solid #666;}
 .od .area_selgift .agree_gift_con {display: none; width: 100%; border:1px solid #ddd; border-top: 0; padding:1.8rem;}
 .od .area_selgift .agree_gift_con p {height: 10rem; overflow-y: auto; padding-right: 0.5rem;}
-#btn_couponModify_pop {width: 100%; display: block;}
+
+.od .area_selpoint dl > div {margin-top: 2.4rem; padding-top: 2.4rem; border-top: 1px solid #ddd;}
+.od .area_selpoint dl > div:first-child {margin-top: 0;}
+
+.od .area_seldiscount .maxdisc_amount {color: #fd4802;}
+.od .area_seldiscount dl > div {border-bottom: 1px solid #eee; margin-bottom: 1.5rem; padding-bottom: 1.5rem;}
+.od .area_seldiscount dl > div:last-child {border-bottom: 0;}
+.od .area_seldiscount dl > div:first-child {}
+.od .area_seldiscount #btn_couponModify_pop {width: 100%; display: block; height: 4.5rem; margin:1.5rem 0; border:1px solid #a7a7a7;}
+.od .area_seldiscount dt {position: relative; font-size: 1.4rem; color: #222; font-weight: 300;}
+.od .area_seldiscount dt .maxdisc_amount {position: absolute; top: 0; right: 0;}
+
+.od .area_seldiscount .input_wrap, .od .area_selpoint .input_wrap {display: block;}
+.od .area_seldiscount .input_wrap input, .od .area_selpoint .input_wrap input {display: block; width: 100%; padding-right: 7rem;}
+.od .area_seldiscount .input_wrap .btn, .od .area_selpoint .input_wrap .btn {position: absolute; top: 0; right: 0; width: 6rem; height: 4.5rem; margin-left: 0;}
+.od .area_seldiscount .dlvr_fee_box .select_custom {height:8.3rem;}
+.od .area_seldiscount .dlvr_fee_box .select_custom .combo .select {height:8.3rem; padding:0;}
+.od .area_seldiscount .dlvr_fee_box .select_custom .combo .select:after {top:50%; right:20px; transform:translateY(-50%);}
+.od .area_seldiscount .dlvr_fee_box .select_custom .combo .list {top:8rem; padding:0;}
+.od .area_seldiscount .dlvr_fee_box .select_custom .combo .list > li {line-height:1; padding:0; border-top:1px solid #ddd;}
+.od .area_seldiscount .dlvr_fee_box .select_custom .combo .dlvr_coupon {padding:1.5rem; }
+.od .area_seldiscount .dlvr_fee_box .select_custom .combo .dlvr_coupon .name {color:#222; font-size:1.3rem; font-weight:300;}
+.od .area_seldiscount .dlvr_fee_box .select_custom .combo .dlvr_coupon .txt {margin-top:10px; color:#888; font-size:1.1rem; font-weight:200;}
+.od .area_seldiscount .dlvr_fee_box .select_custom .combo .dlvr_coupon .txt span {font-weight:300;}
+.od .area_seldiscount .dlvr_fee_box .select_custom .combo .dlvr_coupon .discount {margin-top:10px;  color:#fd4802; font-size:1.5rem; font-weight:300;}
+.od .area_seldiscount .dlvr_fee_box .select_custom .combo .dlvr_coupon .discount span {font-weight:500;}
+.od .area_seldiscount .dlvr_fee_box .select_custom .combo .dlvr_coupon .empty {margin-top:2rem; color:#888; font-size:1.3rem; font-weight:300;}
+.od .area_seldiscount .dlvr_fee_box .select_custom .combo .list > li[aria-disabled="true"] .dlvr_coupon p {color:#888;}
+
+.od .tmark_required {color:#fd4802; font-size:1.3rem; font-weight:300;}
+
+.od .area_selpoint {}
+.od .area_selpoint dl > div dt {font-size: 1.4rem; color: #222;}
+.od .area_selpoint dl > div dt span {font-size: 1.2rem; color:#888; margin-left: 0.5rem;}
+.od .area_selpoint .form_field > div {margin:1rem 0;}
+.od .area_selpoint .form_field > div.input_wrap {float:none; margin-right:0;}
+.od .area_selpoint .form_field .useable_point {margin-right:10px; color:#fd4802; font-size:1.3rem; font-weight:300; vertical-align:middle;}
+/* .od .area_selpoint .form_field .useable_point em {font-weight:500;} */
+.od .area_selpoint .form_field .remain_point {margin-right:10px; color:#fd4802; font-size:1.3rem; font-weight:300;}
+.od .area_selpoint .form_field p {color:#888; font-size:1.3rem;}
 
 .od .area_paymentinfo {margin-top:3rem;}
 .od .paymentinfo {}
@@ -1764,7 +1985,7 @@ background-size:100%;}
 .od .paymentinfo .payinfo_blk.on {background:#f5f5f5;}
 .od .paymentinfo .payinfo_blk.on a span::after {top:3px; transform:rotate(-180deg);}
 .od .paymentinfo .payinfo_blk.on .infotxt {display:block; margin:0px 1.9rem 1.9rem;}
-.od .area_paymentinfo .agree_payment {margin:40px 0 40px; color:#222; font-size:1.4rem; font-weight:200; text-align:center;}
+.od .area_paymentinfo .agree_payment {margin:4rem 0 4.2rem; color:#222; font-size:1.4rem; font-weight:200; text-align:center;}
 .od .area_paybtn .btn {height:80px; font-size:20px; font-weight:300;}
 .od .area_paybtn .btn em {font-weight:500;}
 
@@ -1773,10 +1994,11 @@ background-size:100%;}
 .od .extra_pay {}
 .od .extra_pay .paymethod_box .sel_method li {width:50%;}
 
-.od .paymethod_box .sel_method li label .payimg {display:inline-block; width:66px; height:26px; background-position:50% 50%; background-repeat:no-repeat; background-size:auto 100%;}
-.od .paymethod_box .sel_method li label .payimg.kakao {background-image:url('/images/pc/pay_kakao.png');}
-.od .paymethod_box .sel_method li label .payimg.naver {background-image:url('/images/pc/pay_naver.png');}
-.od .paymethod_box .sel_method li label .payimg.payco {background-image:url('/images/pc/pay_payco.png');}
+.od .paymethod_box .sel_method li {height:2.2rem;}
+.od .paymethod_box .sel_method li label .payimg {display:inline-block; width:66px; height:2rem; background-position:50% 50%; background-repeat:no-repeat; background-size:auto 100%;}
+.od .paymethod_box .sel_method li label .payimg.kakao {background-image:url('/images/mo/pay_kakao.png'); width: 4.9rem;}
+.od .paymethod_box .sel_method li label .payimg.naver {background-image:url('/images/mo/pay_naver.png'); width: 5rem;}
+.od .paymethod_box .sel_method li label .payimg.payco {background-image:url('/images/mo/pay_payco.png'); width: 5.2rem; height: 1.2rem;}
 
 /* od_completed */
 .od .completed {margin-top: -1.2rem;}
@@ -1785,18 +2007,18 @@ background-size:100%;}
 .od .completed .tbl table td .btn.btn_sm.btn_default {color:#222; border:1px solid #a7a7a7;}
 .od .completed .tbl.type1 table td button {margin-left:10px}
 .od .completed .tbl.type1 table td .tag {margin-left:6px; margin-top:2px; vertical-align:top;}
-.od .completed .tbl.type1 th,
-.od .completed .tbl.type1 td {padding:0;}
 
 .od .completed .info_complete {padding:50px 0; text-align:center; background:#fff6f2; margin-bottom: -1.2rem;}
-.od .completed .info_complete .txt_box {color:#222; font-size:24px; font-weight:500;}
-.od .completed .info_complete .report_box {margin-top:26px}
+.od .completed .info_complete > img {width: 5rem;}
+.od .completed .info_complete .txt_box {color:#222; font-size:2rem; font-weight:500; margin:2.4rem 0 1rem}
+.od .completed .info_complete .report_box {margin-top:0}
 .od .completed .info_complete .report_box div {margin-top:15px}
 .od .completed .info_complete .report_box div:first-child {margin-top:0;}
 .od .completed .info_complete .report_box div dt,
 .od .completed .info_complete .report_box div dd {display:inline-block; font-weight:300;}
-.od .completed .info_complete .report_box div dt {color:#666; font-size:18px;}
-.od .completed .info_complete .report_box div dd {margin-left:18px; color:#fd4802; font-size:20px;}
+.od .completed .info_complete .report_box div dt {color:#666; font-size:1.7rem;}
+.od .completed .info_complete .report_box div dd {position: relative; margin-left:18px; color:#fd4802; font-size:1.7rem;}
+.od .completed .info_complete .report_box div dd:before {content:''; position: absolute; top: 50%; left: -1.1rem; transform:translateY(-50%); width: 0.1rem; height: 1.5rem; background: #ddd;}
 .od .completed .info_complete .report_box div.closedate dt,
 .od .completed .info_complete .report_box div.closedate dd {margin:0; color:#888; font-size:16px; font-weight:200;}
 .od .completed .info_complete .report_box div.closedate dd span {font-weight:300;}
@@ -1821,7 +2043,7 @@ background-size:100%;}
 .od .foldGroup > ul > li {border-bottom: 0;}
 .od .fold_answer {background: #fff; padding-top: 0;}
 .od .ui_row {margin-bottom: 0;}
-.od .foldGroup .fold_head .fold_tit {padding: 2rem;}
+.od .foldGroup .fold_head .fold_tit {padding:2.4rem 2rem;}
 .od .foldGroup .fold_head .fold_tit > div.lap2 {margin-bottom: 0;}
 .od .foldGroup .fold_head .fold_tit span {font-size: 1.6rem;}
 .od .foldGroup .fold_head .fold_tit span.fold_txt {position: absolute; top: 2.3rem; right: 5.3rem; font-size: 1.3rem; color: #666;}
@@ -1845,7 +2067,7 @@ background-size:100%;}
 .od .ship_info div:after {content:''; display: block; clear:both;}
 .od .ship_info div dt, .od .ship_info div dd {float:left; color: #222; font-weight: 300;}
 .od .ship_info div.ship_request dt {position: relative; margin-right: 1rem; padding-right: 1rem; font-weight: 200;}
-.od .ship_info div.ship_request dt:after {content:''; position: absolute; top: 0.2rem; right: 0; width: 0.1rem; height: 1.2rem; background: #ddd;}
+.od .ship_info div.ship_request dt:after {content:''; position: absolute; top: 0.4rem; right: 0; width: 0.1rem; height: 1.2rem; background: #ddd;}
 .od .ship_info div.ship_request.ship_select {margin-top: 1.5rem;}
 .od .ship_info div.ship_request.ship_select dt {position: relative; margin-right: 1rem; padding-right: 1rem; font-weight: 300;}
 .od .ship_info div.ship_request.ship_select dt:after {display: none;}
@@ -1860,14 +2082,18 @@ background-size:100%;}
 .od .nonMBorder .inner:first-child {padding-bottom: 6rem;}
 .od .nonMBorder .inner:last-child {padding:3rem 0;}
 .od .nonMBorder .join_txt {text-align: center;}
-.nonMBorder .nonMBorder_tit {text-align: center;}
+.od .nonMBorder .join_txt p {font-size: 1.4rem; line-height: 1.4; font-weight: 300;}
+.od .nonMBorder .join_txt span {color: #fd4802; font-weight: 500;}
+.od .nonMBorder .join_txt .btn_underline {margin-top: 1.3rem; color:#888; border-bottom: 1px solid #888;}
+.nonMBorder .nonMBorder_tit {padding:3rem 0;}
+.nonMBorder .nonMBorder_tit .text_box p {text-align: center; font-size: 1.4rem; line-height: 1.4;}
 .nonMBorder .cont_head .text_box {margin-top:27px; color:#666; font-size:16px; font-weight:200; line-height:26px; text-align:center;}
 .nonMBorder .cont_head {text-align:center;}
 .nonMBorder .cont_head h3 {margin-bottom:40px; font-size:40px; font-weight:500;} 
-.nonMBorder input[type="text"] {float:none; width:100%; height:4.5rem; padding:17px 0 17px 19px; color:#222; font-size:16px; font-weight:300;}
+.nonMBorder input[type="text"] {float:none; width:100%; height:4.5rem; padding:1.7rem 1.5rem; color:#222; font-size:1.3rem; font-weight:300;}
 .nonMBorder input[type="text"]::placeholder {color:#888; font-weight:200;}
 .nonMBorder .form_field {display:block; margin-top:10px;}
-.nonMBorder .form_field:first-of-type {margin-bottom:0px;}
+.nonMBorder .form_field:first-of-type {margin-top:0px;}
 .nonMBorder .form_field .ui_col_9 input[type="text"] {width:388px;}
 .nonMBorder .form_field .ui_col_3 .btn {width:132px; height:52px; padding:17px 0px 17px; font-weight:200;}
 .nonMBorder .cont_foot {position:relative; width:530px; margin:40px auto 0; color:#888; font-size:16px; line-height:1;}
@@ -1875,14 +2101,14 @@ background-size:100%;}
 .nonMBorder .cont_foot p span {display:block;}
 .nonMBorder .cont_foot p .jointit1 {color:#222; font-size:18px; font-weight:300;}
 .nonMBorder .cont_foot p .jointit2 {margin-top:10px; color:#888; font-size:16px; font-weight:200;}
-.nonMBorder .cont_foot a.btn_gojoin {position:absolute; right:0; top:50%; transform:translateY(-50%); padding:0px 20px; height:42px; line-height:42px; color:#222; font-size:14px; font-weight:300; border:1px solid #a7a7a7; box-sizing:border-box;}
+.nonMBorder .cont_foot a.btn_underline {position:absolute; right:0; top:50%; transform:translateY(-50%); padding:0px 20px; height:42px; line-height:42px; color:#222; font-size:1.3rem; font-weight:300; border:1px solid #a7a7a7; box-sizing:border-box;}
 .nonMBorder .btn_group_md {float:none; margin-top:40px; margin-bottom:0;}
 .nonMBorder .btn_group_md .btn {padding:19px; font-weight:300; height:60px;}
 .nonMBorder .btn_group_md .btn_default {border-color:#a7a7a7;}
-.nonMBorder .agree_nombPrivacy {margin-top:40px; margin-bottom:20px}
+.nonMBorder .agree_nombPrivacy {}
 .nonMBorder .agree_nombPrivacy label span {font-size:18px;}
 .nonMBorder .agree_nombPrivacy label span .tmark_required {display:inline-block; margin-top:2px; font-size:14px; vertical-align:top;}
-.nonMBorder .agree_nomb_txt_box {margin-bottom:40px; padding:35px 40px; border:1px solid #ddd;}
+.nonMBorder .agree_nomb_txt_box {margin-bottom:40px; padding:1.5rem; border:1px solid #ddd;}
 .nonMBorder .agree_nomb_txt_box > div {overflow:auto; max-height:160px; color:#888; font-size:14px; line-height:1.5; font-weight:200;}
 .nonMBorder .adress_area {}
 .nonMBorder .adress_area dl {padding:20px 0 0}
@@ -1895,22 +2121,17 @@ background-size:100%;}
 
 
 /* 쇼핑백 */
+main.container .shopping_bag .inner:last-child {padding-bottom: 0;}
 .shopping_bag .sec_select {position: relative;}
+.shopping_bag .sec_select .form_field input[type="checkbox"] + label {font-size: 1.3rem;}
 .shopping_bag .sec_select .btn {position: absolute; top: 0; right: 0; width: 5.8rem; height: 2.5rem; padding: 0; font-size: 1.1rem;}
 .shopping_bag .inner {padding:3rem 2rem;}
 .shopping_bag .inner.wide {padding: 0;}
-main.container .shopping_bag .inner:last-child {padding-bottom: 0;}
-.shopping_bag .btn_delete {position: absolute; top: 0; right: 0; z-index: 9; width: 2.4rem; height: 2.4rem; background: url(/images/mo/ico_itemdelete_btn.png) no-repeat center/1.2rem; background-position: center;}
+.shopping_bag .btn_delete {position: absolute; top: 0; right: 0; z-index: 9; width: 4rem; height: 4rem; background: url(/images/mo/ico_itemdelete_btn.png) no-repeat center/1.2rem; background-position: center;}
 .shopping_bag .inner:nth-child(2) {padding:1.5rem 2rem;}
-.shopping_bag .goods_top {border-bottom: 1px solid #000;}
+.shopping_bag .goods_top {padding-top: 0; border-bottom: 1px solid #000;}
 
-.od .part_goods .od_calc {position: relative; margin: 2rem 0 0 0;}
-.od .part_goods .od_calc:after {content:''; display: block; clear:both;}
-/* .shopping_bag .part_goods .od_calc .count {float:left;} */
-.od .part_goods .od_calc .count {display: inline-block; font-size: 1.1rem;tm }
-.od .part_goods .od_calc .price {position: absolute; top: 0; right: 0;}
-.od .part_goods .od_calc .price del {margin:0;}
-.od .part_goods .od_calc .sale_price {display: inline-block;}
+.shopping_bag .area_salecoupon h4 {margin-bottom: 1.5rem; font-size: 1.6rem;}
 
 .shopping_bag .part_goods .goods_basic {margin-top: 2.4rem; padding-top: 2.4rem; border-top: 1px dashed #ddd;}
 .shopping_bag .part_goods h3 {margin-bottom: 2.4rem;}
@@ -1923,8 +2144,8 @@ main.container .shopping_bag .inner:last-child {padding-bottom: 0;}
 
 .shopping_bag .part_goods .goods_btn_wrap {margin: 1.8rem 0 0; padding-left: 3rem;}
 .goods_btn_wrap > div > .btn.btn_primary_line {border:1px solid #fd4802;}
-.shopping_bag .goods_dlvr_save {text-align: center;}
-.shopping_bag .goods_dlvr_save a.btn_popup_save {display:inline-block; padding-right:20px; text-align: center; color:#fd4802; font-size:1.1rem; font-weight:200; line-height:14px; text-decoration:underline; background:url('/images/pc/ico_go_save.png') no-repeat 98% 50%;}
+.shopping_bag .goods_dlvr_save {margin-top: 1.8rem; text-align: center;}
+.shopping_bag .goods_dlvr_save a.btn_popup_save {display:inline-block; padding-right:20px; text-align: center; color:#fd4802; font-size:1.1rem; font-weight:200; line-height:14px; text-decoration:underline; background:url('/images/mo/ico_go_save.png') no-repeat 98% 45%; background-size:1.1rem;}
 
 .shopping_bag .od_calc_wrap {font-size: 0; width: 100%;}
 .shopping_bag .od_calc_wrap button {width: 60%;}
@@ -1936,9 +2157,9 @@ main.container .shopping_bag .inner:last-child {padding-bottom: 0;}
 .shopping_bag .area_order div::after,
 .shopping_bag .area_order dl::after,
 .shopping_bag .area_order dl div::after {content:''; display:block; clear:both;}
-.shopping_bag .area_order .tit_box {padding:0 0 2rem; border-bottom:1px solid #ddd;}
+.shopping_bag .area_order .tit_box {padding:0 0 2rem; border-bottom:1px solid #222;}
 .shopping_bag .area_order .tit_box h3 {display:inline-block; margin-bottom:0}
-.shopping_bag .area_order .tit_box span {display:inline-block; margin-left:5px; color:#888; font-size:16px; font-weight:200; vertical-align:middle}
+.shopping_bag .area_order .tit_box span {display:inline-block; margin-left:5px; color:#888; font-size:1.2rem; font-weight:200; vertical-align:middle}
 .shopping_bag .area_order .tit_box span em.number {color:#fd4802; font-weight:500;}
 .shopping_bag .area_order .od_item_box {padding:0px 30px 0; border-bottom:1px solid #ddd;}
 .shopping_bag .area_order .od_item_box .part_dlvr {padding:30px 0px 30px; border-top:1px solid #ddd}
@@ -1953,21 +2174,26 @@ main.container .shopping_bag .inner:last-child {padding-bottom: 0;}
 .shopping_bag .area_order .od_item_box .part_dlvr .gd_list .item_gd .price {margin-top:5px}
 .shopping_bag .area_order .od_item_box .part_dlvr .gd_list .item_gd .info_reserv {margin-top:10px; color:#fd4802; font-size:14px; font-weight:200;}
 .shopping_bag .area_order .od_item_box .part_dlvr .gd_list .item_gd .info_reserv span {margin-left:10px; font-weight:300;}
-.shopping_bag .area_order .od_amount_box {padding:30px 0; color:#888; font-size:14px; font-weight:200;}
+.shopping_bag .area_order .od_amount_box {padding:2rem 0; color:#888; font-size:14px; font-weight:200;}
 .shopping_bag .area_order .od_amount_box dl div {margin-top:20px;}
 .shopping_bag .area_order .od_amount_box dl div:first-child {margin-top:0px}
-.shopping_bag .area_order .od_amount_box dl dt {font-size:14px; font-weight:300;}
-.shopping_bag .area_order .od_amount_box dl dd {color:#222; font-size:16px; font-weight:300;}
-.shopping_bag .area_order .od_amount_box dl dd em {font-size:16px}
+.shopping_bag .area_order .od_amount_box dl dt {font-size:1.3rem; font-weight:300;}
+.shopping_bag .area_order .od_amount_box dl dd {color:#222; font-size:1.3rem; font-weight:300;}
+.shopping_bag .area_order .od_amount_box dl dd em {font-size:1.3rem}
 .shopping_bag .area_order .od_amount_box dl .disc_amount {color:#fd4802; font-weight:300;}
 .shopping_bag .area_order .od_amount_box .t_info {margin-top:20px; text-align:right;}
 .shopping_bag .area_order .od_amount_box .btn_link {display:inline-block; padding:0px 13px; height:40px; line-height:38px; color:#222; font-size:14px; font-weight:300; border:1px solid #a7a7a7; box-sizing:border-box;}
+.shopping_bag .info_box .od_exinfo {margin-top: 0.9rem;}
+.shopping_bag .info_box .od_exinfo a {}
+.shopping_bag .info_box .od_exinfo a:after {content:''; border:2px solid transparent; border-left:2px solid #fd4802;} 
+.shopping_bag .part_goods .goods_section > .od_calc {margin: 1rem 0 0 3rem; padding:1.3rem 0 0 0; position: relative; line-height: 1; border-top: 1px solid #ddd;}
+
 .od .area_order .od_amount_box .btn_link::after {display:none;}
 .od .area_order .totalprice_box {padding:0px 0 0}
-.od .area_order .totalprice_box dl {padding:40px 0 0; border-top:1px solid #ddd; font-size:16px; font-weight:300;}
-.od .area_order .totalprice_box dl dt {margin-top:5px; font-size:16px; font-weight:500;}
-.od .area_order .totalprice_box dl dd {color:#fd4802; font-size:18px; font-weight:700;}
-.od .area_order .totalprice_box dl dd span {font-size:24px; vertical-align:middle;}
+.od .area_order .totalprice_box dl {padding:2rem 0 0; border-top:1px solid #ddd; font-size:16px; font-weight:300;}
+.od .area_order .totalprice_box dl dt {margin-top:5px; font-size:1.4rem; font-weight:500;}
+.od .area_order .totalprice_box dl dd {color:#fd4802; font-size:1.8rem; font-weight:700;}
+.od .area_order .totalprice_box dl dd span {font-size:2.1rem; vertical-align:bottom;}
 .od .area_order .totalprice_box .info_point {margin-top:12px; color:#888; font-size:14px; font-weight:300; text-align:right; line-height:16px;}
 .od .area_order .totalprice_box .info_point .save_point {display:inline-block; padding-left:22px; height:16px; background:url('/images/pc/ico_point.png') no-repeat 0 50%; color:#fd4802;}
 .od .area_order .totalprice_box .info_extra {margin-top:12px; color:#888; font-size:14px; font-weight:300; text-align:left; line-height:16px;}
@@ -1990,10 +2216,11 @@ main.container .shopping_bag .inner:last-child {padding-bottom: 0;}
 .od .area_salecoupon .coupon_box .coupon .cp_cont span em {font-size:28px;}
 .od .area_salecoupon .coupon_box .coupon .cp_condition {margin-top:15px; padding-bottom:15px; color:#888; font-size:12px; font-weight:300; line-height:1.4;}
 .od .area_salecoupon .coupon_box .coupon .cp_condition span {display:block; margin-top:10px}
-.od .area_salecoupon .coupon_box .coupon .cp_date {padding:20px 0; border-top:1px dashed #ddd; text-align:center; color:#222; font-size:14px; font-weight:200;}
+.od .area_salecoupon .coupon_box .coupon .cp_date {padding:2rem; border-top:1px dashed #ddd; text-align:center; color:#222; font-size:14px; font-weight:200; text-align: left;}
 .od .area_salecoupon .coupon_box .btn_underline {display:block; margin:23px auto 0; color:#888; border-color:#888; font-size:12px;}
 
 .od .od_recommend {padding:3rem 2rem;}
+.od .od_recommend h3 {margin-bottom: 1.5rem;}
 .od .od_recommend .swiper-container {overflow:visible;}
 .od .od_recommend .swiper-container .item_prod {width: 100%;}
 
@@ -2004,29 +2231,37 @@ main.container .shopping_bag .inner:last-child {padding-bottom: 0;}
 /* 쇼핑백_팝업 */
 .popup_box {visibility:hidden; position:fixed; width:100%; height:100%; top:0; left:0; background:rgba(0,0,0,.5); z-index:500;}
 .popup_box.active{visibility:visible;}
-.popup_box .lap{position:absolute; bottom:0; left:0; padding:3rem 0 0; width:100%; background:#fff;}
-.popup_box .popup_head {padding:0 2rem;}
+.popup_box .lap{position:absolute; bottom:-100%; left:0; width:100%; background:#fff; transition:all 0.3s;}
+.popup_box.active .lap {bottom: 0;}
+.popup_box .popup_head {padding:3rem 2rem 2rem;}
 .popup_box .popup_con{min-height:15rem; max-height:40rem; overflow-y:auto;}
 .popup_box .popup_close{position:absolute; top:-3.8rem; left:50%; width:1.6rem; height:1.6rem; background-image: url(/images/mo/ico_pop_cls_w.png); background-repeat:no-repeat; background-position:center center; font-size:0; text-indent:-999999px; background-size: contain; -webkit-transform:translateX(-50%); transform:translateX(-50%);}
 
 /* popup_장바구니 옵션변경 */
-.optModifyPop .area_order {padding:2rem;}
-.optModifyPop .area_order > div {margin-top:40px}
+.optModifyPop .area_order {padding:0 2rem 2rem;}
+.optModifyPop .area_order > div {margin-top:3rem}
 .optModifyPop .area_order > div:first-child {margin-top:0}
+.optModifyPop .area_order > div .color {}
+.optModifyPop .select_custom .combo .list {position: static;}
+.optModifyPop .opt_header:after {content:''; display: block; clear:both;}
+.optModifyPop .opt_header {margin-bottom: 1rem;}
+.optModifyPop .opt_header > span {float:left;}
+.optModifyPop .opt_header .color {margin-left: 2rem; color: #666;}
 .optModifyPop .area_order .opt_color ul {font-size: 0; width: 100%; white-space: nowrap; overflow-x: auto;}
 .optModifyPop .area_order .opt_color ul li {display: inline-block; margin:0 3px; margin-top:6px}
 .optModifyPop .area_order .opt_color ul li a {display:block; box-sizing:border-box; width:70px; height:105px;}
 .optModifyPop .area_order .opt_color ul li a.on img {border:1px solid #fd4802}
 .optModifyPop .area_order .opt_size {padding-bottom:40px; border-bottom:1px solid #ddd;}
-.optModifyPop .area_order .opt_size .form_field {display:block; width:100%; margin-top:-6px; margin-left: -6px !important; margin-right: -6px !important;}
+.optModifyPop .area_order .opt_size .form_field {display:block; width:100%; font-size: 0;}
 .optModifyPop .area_order .opt_size .form_field > div {margin:6px 3px 0;}
+.optModifyPop .area_order .opt_size .form_field > div {float:none; width:auto; display: inline-block;}
 /* .optModifyPop .area_order .opt_size .form_field > div:nth-child(6n-5) {margin-left:0px;} */
 .optModifyPop .area_order .opt_size .form_field input[type="radio"] + label {display:block; width:50px; height:40px; padding:0; line-height:40px; text-align:center; background:#fff; box-sizing:border-box; border:1px solid #ddd; color:#222; font-weight:200; font-size:14px;}
 .optModifyPop .area_order .opt_size .form_field input[type="radio"] + label::before,
 .optModifyPop .area_order .opt_size .form_field input[type="radio"] + label::after {display:none;}
 .optModifyPop .area_order .opt_size .form_field input[type="radio"]:checked + label {border:1px solid #fd4802;}
 .optModifyPop .area_order .opt_size .form_field input[type="radio"]:disabled + label {text-decoration:line-through; background:#f5f5f5; border-color:#f5f5f5; color:#bbb; opacity:1;}
-.optModifyPop .area_order .opt_size .form_field > div {float:left; width:auto;}
+
 .optModifyPop .area_order .opt_select .select_custom .combo .select {height:45px; padding:15px;}
 .optModifyPop .area_order .opt_select .select_custom .combo .list > li {height:45px; padding:15px; font-size:14px; line-height:1;}
 .optModifyPop .area_order .opt_count .opt_count {padding-bottom:0;}
@@ -2068,11 +2303,21 @@ main.container .shopping_bag .inner:last-child {padding-bottom: 0;}
 main.container .od_gift .inner:last-child {padding-bottom: 0;}
 .od_gift .gift_banner {background: linear-gradient(120deg, rgba(255,120,0,1) 50%, rgba(253,72,2,1) 100%); text-align: center; padding:6rem 0; margin:-1.2rem 0;}
 .od_gift .gift_banner img {width: 13.1rem;}
-.od_gift .gift_banner p {color:#fff; }
+.od_gift .gift_banner p {color:#fff; margin-top: 1.5rem;}
 .od_gift .gift_banner.timeout {background: #f5f5f5;}
 .od_gift .gift_banner.timeout p {font-size: 2rem; color: #222;}
 .od_gift .gift_banner.timeout dl dt, .od_gift .gift_banner.timeout dl dd {display: inline-block;}
 
+.od .gift_tab .tab_cont {background: #fff; padding:2.4rem 2rem;}
+.od .gift_tab .input_wrap {display: block;}
+.od .gift_tab .input_wrap .form_control {width: 100%; float:none;}
+.od .od_gift .gift_tab .desc_txt {margin:1rem 0 2.4rem;}
+.od .od_gift .gift_tab .tabIndex li {flex:1;}
+.od .od_gift .gift_tab .foldGroup .fold_cont {padding:0 0 3rem;}
+.od .od_gift .textarea_wrap {position: relative;}
+.od .od_gift .textarea_wrap .doc_review {width: 100%; padding:1.5rem; height: 15rem; resize:none;}
+.od .od_gift .textarea_wrap .txt_cnt {position: absolute; right: 1.5rem; bottom: 1.5rem;}
+
 .fold_cont > div.gift_order_message {border: 1px solid #ffe4d9; padding: 1.5rem; background: #fff6f2;}
 
 .od_gift .tbl_wrap {}
@@ -2084,20 +2329,19 @@ main.container .od_gift .inner:last-child {padding-bottom: 0;}
 .od_gift .tbl_wrap .tbl.tbl_dlvr input[type='text'] {width: 100%; font-size: 1.3rem; color: #888; font-weight: 300;}
 .od_gift .dlvr_basic {margin-top: 1.5rem;}
 .od_gift .dlvr_basic label {font-size: 1.4rem;}
-.od_gift .tbl_wrap .tbl.tbl_request {padding:1.6rem 0;}
+.od_gift .tbl_wrap .tbl.tbl_request {padding:1.6rem 0 0;}
 .od_gift .tbl_wrap .tbl.tbl_request table td {padding-bottom: 1.6rem;}
 .od_gift .tbl_wrap .tbl.tbl_request table tr:last-child td {padding-bottom: 0;}
 .od_gift .tbl_wrap .tbl.tbl_request input[type="text"] {width: 100%; height: 4.5rem; font-size: 1.3rem; color: #888; font-weight: 300;}
 .od_gift .tbl_wrap .tbl.tbl_request input[type="text"]::placeholder {}
 .od_gift .tbl_wrap .tbl.tbl_request .desc_txt {margin-top: 1rem;}
 
+.od_gift .info_txt {margin-top: 2.4rem; background: #f5f5f5;}
+
 .part_goods .goods_section > .od_calc {margin: 1rem 0 0 0; padding:1.3rem 0 0 0; position: relative; line-height: 1; border-top: 1px solid #ddd;}
 .part_goods .goods_section > .od_calc .price {top: auto; bottom: 0;}
 .part_goods .goods_section > .od_calc .price .sale_price {margin-right: 1rem;}
 .part_goods .goods_section:last-of-type {margin-bottom: 0;}
-.od_gift .gift_tab .tabIndex li {flex:1;}
-.od_gift .gift_tab .foldGroup .fold_cont {padding:0 0 3rem;}
-.od_gift .gift_tab .tab_cont {background: #fff;}
 
 /* od_extra */
 main.container .od_extra .inner:last-child {padding-bottom: 0;}
@@ -2106,19 +2350,19 @@ main.container .od_extra .inner:last-child {padding-bottom: 0;}
 .od_extra .tbl_wrap {padding-top: 3rem;}
 
 /* 할인쿠폰변경_선택팝업 */
-.couponSelectPop01 {z-index: 1111;}
-.couponSelectPop01 .popup_head {text-indent:-999em; visibility: hidden; font-size: 0;}
-.couponSelectPop01 .popup_con {padding:0 2rem 2rem;}
-.couponSelectPop01 .dlvr_coupon {width: 100%; text-align: left;}
-.couponSelectPop01 .dlvr_coupon {padding:14px 18px;}
-.couponSelectPop01 .dlvr_coupon .name {color:#222; font-size:14px; font-weight:300;}
-.couponSelectPop01 .dlvr_coupon .txt {margin-top:10px; color:#888; font-size:14px; font-weight:200;}
-.couponSelectPop01 .dlvr_coupon .txt span {font-weight:300;}
-.couponSelectPop01 .dlvr_coupon .discount {margin-top:10px;  color:#fd4802; font-size:16px; font-weight:300;}
-.couponSelectPop01 .dlvr_coupon .discount span {font-weight:500;}
-.couponSelectPop01 .dlvr_coupon .empty {margin-top:0; color:#222; font-size:14px; font-weight:300;}
-
-.couponSelectPop01 .list li {border:1px solid #eee; border-bottom: 1px solid transparent;}
-.couponSelectPop01 .list li:last-child {border-bottom: 1px solid #eee;}
-.couponSelectPop01 .list li:hover, .couponSelectPop01 .list li:active {border:1px solid #fd4802;}
-.couponSelectPop01 .list > li[aria-disabled="true"] .dlvr_coupon p {color:#888;}
+.couponSelectPop {z-index: 1111;}
+.couponSelectPop .popup_head {text-indent:-999em; visibility: hidden; font-size: 0; padding: 0;}
+.couponSelectPop .popup_con {padding:2rem 2rem;}
+.couponSelectPop .dlvr_coupon {width: 100%; text-align: left;}
+.couponSelectPop .dlvr_coupon {padding:14px 18px;}
+.couponSelectPop .dlvr_coupon .name {color:#222; font-size:14px; font-weight:300;}
+.couponSelectPop .dlvr_coupon .txt {margin-top:10px; color:#888; font-size:14px; font-weight:200;}
+.couponSelectPop .dlvr_coupon .txt span {font-weight:300;}
+.couponSelectPop .dlvr_coupon .discount {margin-top:10px;  color:#fd4802; font-size:16px; font-weight:300;}
+.couponSelectPop .dlvr_coupon .discount span {font-weight:500;}
+.couponSelectPop .dlvr_coupon .empty {margin-top:0; color:#222; font-size:14px; font-weight:300;}
+
+.couponSelectPop .list li {border:1px solid #eee; border-bottom: 1px solid transparent;}
+.couponSelectPop .list li:last-child {border-bottom: 1px solid #eee;}
+.couponSelectPop .list li:hover, .couponSelectPop01 .list li:active {border:1px solid #fd4802;}
+.couponSelectPop .list > li[aria-disabled="true"] .dlvr_coupon p {color:#888;}

+ 3 - 0
src/main/webapp/ux/mo/js/common_m.js

@@ -748,3 +748,6 @@ $( document ).ready( function() {
         });
 
 });
+// $(window).load(function() {
+//     $('#load').hide();
+// });