Przeglądaj źródła

모바일 FAQ, 공지사항 화면 추가

gagamel 5 lat temu
rodzic
commit
656d1ddf1f

+ 169 - 0
src/main/webapp/WEB-INF/views/mob/callcenter/FaqFormMob.html

@@ -0,0 +1,169 @@
+<!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/CallcenterLayoutMob">
+<!--
+ *******************************************************************************
+ * @source  : FaqFormMob.html
+ * @desc    : FAQ Page
+ *============================================================================
+ * STYLE24
+ * Copyright(C) 2020 TSIT, All rights reserved.
+ *============================================================================
+ * VER  DATE         AUTHOR      DESCRIPTION
+ * ===  ===========  ==========  =============================================
+ * 1.0  2021.03.09   gagamel     최초 작성
+ *******************************************************************************
+ -->
+<body>
+
+<th:block layout:fragment="content">
+	<main role="" id="" class="container cs">
+		<!-- 고객센터 Gnb -->
+		<nav class="pnb" id="callcenterGnb">
+		</nav>
+		<!-- //고객센터 Gnb -->
+		
+		<!-- ★ 컨텐츠 시작 -->
+		<section class="cs_faq_1">
+			<div class="inner sr-only"><h2 class="title">FAQ 리스트</h2></div>
+			<div class="inner">
+				<!-- 탭 -->
+				<div class="search_wrap">
+					<form id="faqForm" name="faqForm" action="#" th:action="@{'/callcenter/faq/list'}" th:method="post" onsubmit="fnSearchFaq(); return false;">
+						<input type="hidden" name="faqType"/>
+						<input type="hidden" name="pageNo" value ="1"/>
+						<input type="hidden" name="pageSize" value ="10"/>
+						<input type="text" class="cs_search_input" name="searchTxt" placeholder="검색어를 입력해주세요" maxlength="50"/>
+						<button onclick="fnSearchFaq(); return false;">search</button>
+						<p>찾으시는 문의 내용이 없으시면 1:1 문의를 이용해 주세요.</p>
+					</form>
+				</div>
+				<div class="fold_nav">
+					<ul>
+						<li><a href="#none;" onclick="fnGetList(this);" class="on">전체</a></li>
+						<li th:if="${faqTypeList != null and !faqTypeList.empty}" th:each="oneData, status : ${faqTypeList}">
+							<a href="javascript:void(0);" th:onclick='fnGetList(this, [[${oneData.cd}]]);' th:text="${oneData.cdNm}">상품문의</a>
+						</li>
+					</ul>
+				</div>
+				<!-- //탭 -->
+			</div>
+			<div class="inner wide">
+				<!-- 폴딩리스트 -->
+				<div class="ui_row" id="divFaq"> <!-- 데이터 없을시 클래스 nodata 추가 -->
+					<div class="foldGroup case1">
+						<!-- 리스트1 -->
+						<ul id="ulFaq">
+						</ul>
+						<!-- //리스트1 -->
+					</div>
+				</div>
+				<div class="ui_foot">
+					<button class="btn btnM btnIcon_more" id="btnFaqMore">더보기</button>
+				</div>
+				<!-- //폴딩리스트 -->
+			</div>
+		</section>
+		<!-- ★ 컨텐츠 종료 -->	
+		
+	</main>
+	
+<script th:inline="javascript">
+/*<![CDATA[*/
+	$(document).ready(function() {
+		// 타이틀명
+		$('#htopTitle').text('고객센터');
+		
+		// 고객센터 GNB 설정
+		fnSetCallcenterGnb(1);
+		
+		$('#btnFaqMore').trigger('click');
+	});
+	
+	// 더보기
+	$('#btnFaqMore').on('click', function() {
+		gagajf.ajaxFormSubmit($('#faqForm').prop('action'), '#faqForm', fnGetListCallback);
+	});
+	
+	// FAQ 목록
+	var fnGetList = function(obj, faqType) {
+		if (typeof(obj) != 'undefined') {
+			$li = $(obj).parent('li').parent('ul').find('li>a');
+			$li.each(function(i) {
+				$(this).removeClass('on');
+			});
+			$(obj).addClass('on');
+		}
+		
+		if (!gagajf.isNull(faqType)) {
+			$('#faqForm input[name=faqType]').val(faqType);
+		} else {
+			$('#faqForm input[name=faqType]').val('');
+		}
+		
+		$('#btnFaqMore').trigger('click');
+	}
+	
+	// FAQ 목록 콜백함수
+	var fnGetListCallback = function(result) {
+		$('#ulFaq').html('');
+
+		if (result.dataList != null && result.dataList.length > 0) {
+			$.each(result.dataList, function(idx, item) {
+				let tag = '<li>\n';
+				tag += '	<div class="fold_head">\n';
+				tag += '		<a href="javascript:void(0)">\n';
+				tag += '			<div>\n';
+				tag += '				<div class="fold_tit">\n';
+				tag += '					<div class="lap1">\n';
+				tag += '						<span class="prod">' + item.faqTypeNm + '</span>\n';
+				tag += '					</div>\n';
+				tag += '					<div class="lap2"><span>' + item.question + '</span></div>\n';
+				tag += '				</div>\n';
+				tag += '			</div>\n';
+				tag += '		</a>\n';
+				tag += '	</div>\n';
+				tag += '	<div class="fold_cont">\n';
+				tag += '		<div class="fold_answer">\n';
+				tag += '			<div class="answer_body">' + item.answer + '</div>\n';
+				tag += '		</div>\n';
+				tag += '	</div>\n';
+				tag += '</li>\n';
+				
+				$('#ulFaq').append(tag);
+			});
+			$('#divFaq').removeClass('nodata');
+		} else {
+			// 퍼블로 처리함으로 아래 2줄 주석 처리
+// 			let tag = '<li>검색어 조건에 맞는 항목이 없습니다.</li>\n';
+// 			$('#ulFaq').append(tag);
+			$('#divFaq').addClass('nodata');
+		}
+
+		if (result.paging.pageable.totalPage > result.paging.pageable.pageNo) {
+			$('#btnFaqMore').parent().show();
+			$('#faqForm input[name=pageNo]').val(result.paging.pageable.pageNo + 1);
+		} else {
+			$('#btnFaqMore').parent().hide();
+		}
+	}
+	
+	// 검색어 입력
+	let fnSearchFaq = function() {
+		if (gagajf.isNull($('#faqForm input[name=searchTxt]').val())) {
+			mcxDialog.alert('검색어를 입력해 주세요.');
+			return;
+		}
+		
+		$('#faqForm input[name=faqType]').val('');
+		$('#btnFaqMore').trigger('click');
+	}
+/*]]>*/
+</script>
+
+</th:block>
+
+</body>
+</html>

+ 154 - 0
src/main/webapp/WEB-INF/views/mob/callcenter/NoticeFormMob.html

@@ -0,0 +1,154 @@
+<!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/CallcenterLayoutMob">
+<!--
+ *******************************************************************************
+ * @source  : NoticeFormMob.html
+ * @desc    : 공지사항 Page
+ *============================================================================
+ * STYLE24
+ * Copyright(C) 2020 TSIT, All rights reserved.
+ *============================================================================
+ * VER  DATE         AUTHOR      DESCRIPTION
+ * ===  ===========  ==========  =============================================
+ * 1.0  2021.03.09   gagamel     최초 작성
+ *******************************************************************************
+ -->
+<body>
+
+<th:block layout:fragment="content">
+	<main role="" id="" class="container cs">
+		<!-- 고객센터 Gnb -->
+		<nav class="pnb" id="callcenterGnb">
+		</nav>
+		<!-- //고객센터 Gnb -->
+		
+		<!-- ★ 컨텐츠 시작 -->
+		<section class="content cs_notice_1">
+			<div class="inner sr-only"><h2 class="title">공지 리스트</h2></div>
+			<div class="inner wide">
+				<!-- 폴딩리스트 -->
+				<div class="ui_row" id="divNotice"> <!-- 데이터 없을시 클래스 nodata 추가 -->
+					<div class="foldGroup case3">
+						<!-- list3 -->
+						<ul id="ulNotice">
+						</ul>
+						<!-- //list3 -->
+					</div>
+				</div>
+				<div class="ui_foot">
+					<button class="btn btnM btnIcon_more" id="btnNoticeMore">더보기</button>
+				</div>
+				<!-- 폴딩리스트 -->
+			</div>
+		</section>
+		<!-- ★ 컨텐츠 종료 -->	
+	</main>
+	
+	<form id="noticeForm" name="noticeForm" action="#" th:action="@{'/callcenter/notice/list'}">
+		<input type="hidden" name="pageNo" value ="1"/>
+		<input type="hidden" name="pageSize" value ="10"/>
+	</form>
+
+<script th:inline="javascript">
+/*<![CDATA[*/
+	$(document).ready(function() {
+		// 타이틀명
+		$('#htopTitle').text('고객센터');
+		
+		// 고객센터 GNB 설정
+		fnSetCallcenterGnb(4);
+		
+		$('#btnNoticeMore').trigger('click');
+	});
+	
+	// 더보기
+	$('#btnNoticeMore').on('click', function() {
+		gagajf.ajaxFormSubmit($('#noticeForm').prop('action'), '#noticeForm', fnGetListCallback);
+	});
+	
+	// 목록 콜백함수
+	var fnGetListCallback = function(result) {
+		$('#ulNotice').html('');
+
+		// 중요 공지 목록
+		if (result.urgentList != null && result.urgentList.length > 0) {
+			$.each(result.urgentList, function(idx, item) {
+				let tag = '<li>\n';
+				tag += '	<div class="fold_head">\n';
+				tag += '		<a href="javascript:void(0)">\n';
+				tag += '			<div>\n';
+				tag += '				<div class="fold_tit">\n';
+				tag += '					<div class="lap1">\n';
+				tag += '						<span class="fold_state done">중요</span>\n';
+				tag += '						<span class="prod">공지</span>\n';
+				tag += '					</div>\n';
+				tag += '					<div class="lap2"><span>' + item.noticeTitle + '</span></div>\n';
+				tag += '				</div>\n';
+				tag += '				<span class="data">' + item.regDt.toDate("YYYYMMDD").format("YYYY.MM.DD") + '</span>\n';
+				tag += '			</div>\n';
+				tag += '		</a>\n';
+				tag += '	</div>\n';
+				tag += '	<div class="fold_cont">\n';
+				tag += '		<div class="fold_answer">\n';
+				tag += '			<div class="answer_body">' + item.noticeContent + '</div>\n';
+				tag += '		</div>\n';
+				tag += '	</div>\n';
+				tag += '</li>\n';
+
+				$('#ulNotice').append(tag);
+			});
+		}
+		
+		// 일반 공지 목록
+		if (result.dataList != null && result.dataList.length > 0) {
+			$.each(result.dataList, function(idx, item) {
+				let tag = '<li>\n';
+				tag += '	<div class="fold_head">\n';
+				tag += '		<a href="javascript:void(0)">\n';
+				tag += '			<div>\n';
+				tag += '				<div class="fold_tit">\n';
+				tag += '					<div class="lap1">\n';
+				tag += '						<span class="prod">공지</span>\n';
+				tag += '					</div>\n';
+				tag += '					<div class="lap2"><span>' + item.noticeTitle + '</span></div>\n';
+				tag += '				</div>\n';
+				tag += '				<span class="data">' + item.regDt.toDate("YYYYMMDD").format("YYYY.MM.DD") + '</span>\n';
+				tag += '			</div>\n';
+				tag += '		</a>\n';
+				tag += '	</div>\n';
+				tag += '	<div class="fold_cont">\n';
+				tag += '		<div class="fold_answer">\n';
+				tag += '			<div class="answer_body">' + item.noticeContent + '</div>\n';
+				tag += '		</div>\n';
+				tag += '	</div>\n';
+				tag += '</li>\n';
+				
+				$('#ulNotice').append(tag);
+			});
+		}
+		
+		if (result.urgentList == null && result.dataList == null) {
+			let tag = '<li>내역이 없습니다.</li>\n';
+			$('#ulNotice').append(tag);
+			$('#divNotice').addClass('nodata');
+		} else {
+			$('#divNotice').removeClass('nodata');
+			
+			if (result.paging.pageable.totalPage > result.paging.pageable.pageNo) {
+				$('#btnNoticeMore').parent().show();
+				$('#noticeForm input[name=pageNo]').val(result.paging.pageable.pageNo + 1);
+			} else {
+				$('#btnNoticeMore').parent().hide();
+			}
+		}
+	}
+/*]]>*/
+</script>
+
+</th:block>
+
+</body>
+</html>

+ 43 - 12
src/main/webapp/WEB-INF/views/mob/common/fragments/GnbMob.html

@@ -14,24 +14,55 @@
  * 1.0  2021.03.08   gagamel     최초 작성
  *******************************************************************************
  -->
-<header th:fragment="gnb">
-	<section class="htop" id="htopSub" style="background: #fff;">
-		<button class="btn_back" title="이전페이지로">
-			<span>
-				<i class="gl1"></i>
-				<i class="gl2"></i>
-				<i class="gl3"></i>
-			</span>
-		</button>
-		<h1 id="htopTitle">고객센터</h1>
-	</section>
+<th:block th:fragment="gnb">
+	<header class="main">
+		<section class="htop" id="htopMain">
+			<h1>
+				<a href="javascript:void(0);" onclick="cfnGoToPage(_PAGE_MAIN);"><img src="/images/mo/logo_STYLE24.png" alt="STYLE24"></a>
+				<button class="btn_gnb" title="메인메뉴 열기/닫기">
+					<span>
+						<i class="gl1"></i>
+						<i class="gl2"></i>
+					</span>
+				</button>
+			</h1>
+		</section>
+	</header>
 	
+	<div id="gnb" class="gnb">
+		<div class="gnb-inner">
+			<ul>
+				<li class="on"><a href="#none">브랜드</a></li>
+				<li><a href="#none">여성</a></li>
+				<li><a href="#none">남성</a></li>
+				<li><a href="#none">유아동</a></li>
+				<li><a href="#none">골프</a></li>
+				<li><a href="#none">라이프</a></li>
+				<li><a href="#none">베스트</a></li>
+				<li><a href="#none">핫딜</a></li>
+				<li><a href="#none">기획전</a></li>
+				<li><a href="#none">총알배송</a></li>
+				<li><a href="#none">아울렛</a></li>
+				<li><a href="#none">룩북</a></li>
+				<li><a href="#none">이벤트</a></li>
+			</ul>
+		</div>
+		<button onclick="$('#gnb').toggleClass('expand');" class="btn-expand"></button>
+	</div>
 <script th:inline="javascript">
 /*<![CDATA[*/
+	$(document).ready(function() {
+		// 카테고리목록
+		fnGetCategoryList();
+	});
 	
+	var fnGetCategoryList = function() {
+		// TODO: 카테고리목록으로 li 태그 만들어 처리
+// 		$('#gnb>div>ul').html('');
+	}
 /*]]>*/
 </script>
 
-</header>
+</th:block>
 
 </html>

+ 41 - 0
src/main/webapp/WEB-INF/views/mob/common/fragments/GnbSubMob.html

@@ -0,0 +1,41 @@
+<!DOCTYPE html>
+<html lang="ko"
+	xmlns:th="http://www.thymeleaf.org">
+<!--
+ *******************************************************************************
+ * @source  : GnbSubMob.html
+ * @desc    : GNB Sub (모바일용)
+ *============================================================================
+ * STYLE24
+ * Copyright(C) 2020 TSIT, All rights reserved.
+ *============================================================================
+ * VER  DATE         AUTHOR      DESCRIPTION
+ * ===  ===========  ==========  =============================================
+ * 1.0  2021.03.08   gagamel     최초 작성
+ *******************************************************************************
+ -->
+<th:block th:fragment="gnb">
+	<header class=""> <!-- 서브페이지에서는 <header>의 클래스.main 제거 -->
+		<a href="#mainCon" class="skipNav">본문바로가기</a>
+		
+		<section class="htop" id="htopSub" style="background: #fff;">
+			<button class="btn_back" title="이전페이지로">
+				<span>
+					<i class="gl1"></i>
+					<i class="gl2"></i>
+					<i class="gl3"></i>
+				</span>
+			</button>
+			<h1 id="htopTitle">고객센터</h1>
+		</section>
+	</header>
+	
+<script th:inline="javascript">
+/*<![CDATA[*/
+	
+/*]]>*/
+</script>
+
+</th:block>
+
+</html>

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

@@ -27,7 +27,7 @@
 	<link rel="icon" href="/images/favicon-16x16.png" sizes="16x16" type="image/png"/>
 	
 	<link rel="stylesheet" type="text/css" href="/ux/mo/css/swiper.min.css"/>
-	<link rel="stylesheet" type="text/css" th:href="@{'/ux/mo/css/style24.m.css?v=' + ${#calendars.format(#calendars.createNow(), 'yyyyMMddHHmmss')}}" href="/ux/mo/css/style24.m.css"/>
+	<link rel="stylesheet" type="text/css" th:href="@{'/ux/mo/css/style24_m.css?v=' + ${#calendars.format(#calendars.createNow(), 'yyyyMMddHHmmss')}}" href="/ux/mo/css/style24_m.css"/>
 	
 	<script src="/ux/mo/js/jquery-3.5.1.min.js"></script>
 	<script src="/ux/mo/js/jquery.modal.min.js"></script>

+ 2 - 2
src/main/webapp/WEB-INF/views/mob/common/fragments/VariablesMob.html

@@ -3,7 +3,7 @@
 	xmlns:th="http://www.thymeleaf.org">
 <!--
  *******************************************************************************
- * @source  : VariablesWeb.html
+ * @source  : VariablesMob.html
  * @desc    : Global variables 설정
  *            prefix를 _(underbar)로 시작한다.
  *============================================================================
@@ -12,7 +12,7 @@
  *============================================================================
  * VER  DATE         AUTHOR      DESCRIPTION
  * ===  ===========  ==========  =============================================
- * 1.0  2021.01.28   gagamel     최초 작성
+ * 1.0  2021.03.09   gagamel     최초 작성
  *******************************************************************************
  -->
 <th:block th:fragment="variables">

+ 10 - 8
src/main/webapp/WEB-INF/views/mob/common/layout/CallcenterLayoutMob.html

@@ -3,26 +3,26 @@
 	xmlns:th="http://www.thymeleaf.org"
 	xmlns:layout="http://www.ultraq.net.nz/thymeleaf/layout">
 
-<head th:replace="~{web/common/fragments/HeadWeb :: head}"></head>
+<head th:replace="~{mob/common/fragments/HeadMob :: head}"></head>
 
 <body>
 
+	<th:block th:replace="~{mob/common/fragments/VariablesMob :: variables}"></th:block>
+	
 	<div class="app">
-		<a href="#mainCon" class="skipNav">본문바로가기</a>
-		
 		<!-- GNB -->
-		<header th:replace="~{web/common/fragments/GnbWeb :: gnb}"></header>
+		<th:block th:replace="~{mob/common/fragments/GnbSubMob :: gnb}"></th:block>
 		<!--// GNB -->
 
 		<!-- CONTENT AREA -->
 		<th:block layout:fragment="content"></th:block>
 		<!-- // CONTENT AREA -->
 
-<!-- Footer -->
-<footer id="footer" th:replace="~{web/common/fragments/FooterWeb :: footer}"></footer>
+		<!-- Footer -->
+		<footer id="footer" th:replace="~{mob/common/fragments/FooterMob :: footer}"></footer>
 
-<th:block th:replace="~{web/common/fragments/ScriptsWeb :: scripts}"></th:block>
-<!-- <th:block th:replace="~{web/common/fragments/MarketingScripts :: mscripts}"></th:block> -->
+		<th:block th:replace="~{mob/common/fragments/ScriptsMob :: scripts}"></th:block>
+		<!-- <th:block th:replace="~{mob/common/fragments/MarketingScripts :: mscripts}"></th:block> -->
 
 <script th:inline="javascript">
 /*<![CDATA[*/
@@ -43,5 +43,7 @@
 /*]]>*/
 </script>
 
+	</div>
+	
 </body>
 </html>

+ 8 - 8
src/main/webapp/WEB-INF/views/web/callcenter/FaqFormWeb.html

@@ -73,9 +73,9 @@
 										</li>
 									</ul>
 								</div>
-								<div class="ui_row" id="ulFaq"> <!-- 데이터 없을시 클래스 nodata 추가 -->
+								<div class="ui_row" id="divFaq"> <!-- 데이터 없을시 클래스 nodata 추가 -->
 									<div class="foldGroup case1 mt50">
-										<ul id="liFaq">
+										<ul id="ulFaq">
 										</ul>
 									</div>
 								</div>
@@ -166,7 +166,7 @@
 	}
 	
 	var fnGetListCallback = function(result) {
-		$('#liFaq').html('');
+		$('#ulFaq').html('');
 
 		if (result.dataList != null && result.dataList.length > 0) {
 			$.each(result.dataList, function(idx, item) {
@@ -188,13 +188,13 @@
 				tag += '	</div>\n';
 				tag += '</li>\n';
 
-				$('#liFaq').append(tag);
+				$('#ulFaq').append(tag);
 			});
-			$('#ulFaq').removeClass('nodata');
+			$('#divFaq').removeClass('nodata');
 		} else {
 			let tag = '<li>내역이 없습니다.</li>\n';
-			$('#liFaq').append(tag);
-			$('#ulFaq').addClass('nodata');
+			$('#ulFaq').append(tag);
+			$('#divFaq').addClass('nodata');
 		}
 
 		// Create pagination
@@ -203,7 +203,7 @@
 	
 	let fnSearchFaq = function() {
 		if (gagajf.isNull($('#faqForm input[name=searchTxt]').val())) {
-			alert('검색어를 입력해 주세요.');
+			mcxDialog.alert('검색어를 입력해 주세요.');
 			return;
 		}
 		

+ 2 - 0
src/main/webapp/WEB-INF/views/web/callcenter/NoticeFormWeb.html

@@ -149,6 +149,8 @@
 			let tag = '<li>내역이 없습니다.</li>\n';
 			$('#ulNotice').append(tag);
 			$('#divNotice').addClass('nodata');
+		} else {
+			$('#divNotice').removeClass('nodata');
 		}
 
 		// Create pagination

+ 72 - 249
src/main/webapp/ux/pc/css/common.css

@@ -750,7 +750,7 @@ content: "〉";font-size: 12px;padding-left: 8px;
 .fgRDJH {padding: 0px 40px;font-size: 0px;box-sizing: border-box;}
 	@media (max-width: 1919px) and (min-width: 1401px){.fgRDJH {padding-left: 38px;padding-right: 38px;}}
 
-.itemLike {position: absolute;top: 20px;right: 10px;font-size: 0px;z-index: 2;width: 23px;height: 23px; background: url('/images/pc/ico_like.png');background-size: 46px;background-position:0px 0px;background-repeat: no-repeat;}
+.itemLike {position: absolute;top: 20px;right: 18px;font-size: 0px;z-index: 2;width: 23px;height: 23px; background: url('/images/pc/ico_like.png');background-size: 46px;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;
@@ -761,35 +761,37 @@ content: "〉";font-size: 12px;padding-left: 8px;
 .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 {position: relative;width: 100%;margin-bottom:20px;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 6px 12px;line-height: 9px;font-size: 12px;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;}
+.itemBrand {display: inline-block;margin: 0px 5px 12px;line-height: 9px;font-size: 12px;font-weight: 300;color: rgb(137, 137, 137);}
+.itemComment{margin:20px 5px 0px;line-height: 1; font-size: 14px;font-weight: 300;color: #fd4802;overflow: hidden;text-overflow: ellipsis;white-space: nowrap;}
 .itemName {
-	margin: 0px 6px 18px;line-height: 16px;font-size: 13px;font-weight: 400;color: rgb(31, 31, 31);max-height: 30px;
-	position: relative;overflow: hidden;white-space: normal;overflow-wrap: break-word;display: block;max-width: 95%;
+	margin: 0px 5px 15px;line-height:20px;font-size: 14px;font-weight: 200;color:#222; height:40px;
+	position: relative;overflow: hidden;white-space: normal;overflow-wrap: break-word;display: block; max-width:95%;
 }
 .itemName {display: -webkit-box;text-overflow: ellipsis;-webkit-line-clamp: 2;-webkit-box-orient: vertical;}
 .itemPrice * {margin-right: 7px;}
-.itemPrice {position: relative;line-height: 16px;font-size: 13px;font-weight: 300;color: rgb(31, 31, 31);margin: 0px 6px;}
-.itemPrice_original {position: relative;margin-left: 6px;line-height: 16px;font-size: 13px;font-weight: 300;color: rgb(204, 204, 204);}
+.itemPrice {position: relative;line-height: 16px;font-size:16px;font-weight: 300;color: rgb(31, 31, 31);margin: 0px 5px;}
+.itemPrice_original {position: relative;margin-left: 5px;line-height: 16px;font-size: 14px;font-weight: 300;color: rgb(204, 204, 204);}
 .itemPrice_original::after{content: '';display: inline-block;width: 100%;height: 1px;background: rgb(204, 204, 204);position: absolute;top: 50%;left: 0;bottom:auto;right:auto;transform: translateY(-50%);}
 .itemPercent {position: absolute;top: 0px;right: 0px;bottom: auto;left: auto;margin-left: 15px;line-height: 16px;font-size: 16px;font-weight: 300;color: #fd4802;}
 
 /* common.css로 이동 예정 */
-.itemcolorchip {margin: 15px 0px 0px;max-width: 208px;}
-.itemcolorchip [class*="chip_"] {position: relative;display: inline-block;width: 15px;height: 15px;font-size: 0; vertical-align: middle;margin: 0 2px;}
+.itemcolorchip {margin:20px 5px 0px; max-width: 208px;}
+.itemcolorchip [class*="chip_"] {position: relative;display: inline-block;width: 15px;height: 15px;font-size: 0; vertical-align: middle; margin:0 0 0 4px;}
 .itemcolorchip [class*="chip_"]:before {content: "";display: inline-block;width: 100%;height: 100%;border-radius: 50%;box-sizing: border-box;}
+.itemcolorchip [class*="chip_"]:first-child {margin-left:0}
 
 .chip_color40::before {background-color: #ffffff;border: 1px solid #ddd;}
 .chip_color54::before {background-color: #000000;}
 .chip_color35::before {background-color: #cbaf6f;}
 
-.itemBadge {margin: 0px 6px;margin-top: 14px;font-size: 0px;overflow: hidden;}
-.itemBadge [class*="badge"] {display: inline-block;height: 21px;margin: 4px 0 0;padding: 0 9px;border-radius: 2px;border: 1px solid #888888;background: #fff;color: #888888;    font-size: 11px;font-weight: 300;line-height: 21px;font-family: 'dotum';}
-.itemBadge .badge13 {color: #444444;background: #f4f4f4;border-color: #f4f4f4;}
+.itemBadge {margin:20px 5px 0; margin-top:14px; font-size: 0px; overflow:hidden;}
+.itemBadge [class*="badge"] {display:inline-block; height:22px; margin:0 0 0 5px; padding:0 8px; border:1px solid #888888; background: #fff; color:#888888; font-size: 11px; font-weight: 300; line-height: 21px;}
+.itemBadge [class*="badge"]:first-child {margin-left:0}
+.itemBadge .badge13 {background:#f5f5f5; border-color:#f5f5f5;}
 
 
 .rank{
@@ -1123,21 +1125,12 @@ input[type="file"] {
 }
 .select_custom[disabled] {
   pointer-events: none;
-<<<<<<< HEAD
-}
-.select_custom[disabled] .select {
-  pointer-events: none;
-  color: #bbb;
-  background-color: #f5f5f5 !important;
-}
-=======
 } 
 .select_custom[disabled] .select {
   pointer-events: none;
   color: #bbb;
   background-color: #f5f5f5 !important;
 } 
->>>>>>> refs/heads/eskim
 .select_custom .combo .list>li[aria-disabled="true"] {
 	text-decoration: line-through;
     background: #f5f5f5;
@@ -1168,7 +1161,8 @@ input[type="file"] {
 }
 .select_custom .combo .list>li:hover {
     background-color: #ccc;
-}/* list-type */
+}
+/* list-type */
 
 /* description */
 
@@ -1196,35 +1190,7 @@ input[type="file"] {
 #header,#footer {width: auto;}
 [class*="common_footer"] {/*max-width: 1780px;*/min-width: 1380px;margin: 0 auto;/*padding: 0 10px;*/}
 
-
-/* header */
-#header {-webkit-transition:all .3s ease-in-out;transition:all .3s ease-in-out;} 
-#header .common_header .nav > ul.btn_home {display:none;}
-#header.minify {position: fixed; top:0; left:0; right:0; z-index:100;}
-#header.minify .common_header .hd_top_banner {display:none;}
-#header.minify .common_header > .area {height:auto; padding:20px 40px 10px}
-#header.minify .common_header > .gnb {height:auto; padding:30px 40px 30px}
-#header.minify .common_header .logo {margin-top:0}
-#header.minify .common_header .logo .ico_logo:before {width:118px; height:18px}
-#header.minify .common_header .util_group {margin-top:2px}
-#header.minify .common_header .nav > ul.btn_home {display:inline-block;}
-#header.minify .common_header .nav > ul > li > a {font-size:17px}
-#header.minify .common_header .search > .area {width:300px; border-bottom-width:1px;}
-#header.minify .common_header .search .search_input {font-size:15px;}
-#header.minify .common_header .util_group span a {padding:0px 3px;}
-
-.top_banner{height:85px}
-.top_banner > div{width:1070px;margin:0 auto}
-.top_banner > div a{float:left;position:relative;width:33.3333%;height:85px;box-sizing:border-box}
-.top_banner > div a .banner_img{float:left;width:130px;vertical-align:top}
-.top_banner > div a .banner_img2{float:left;width:130px;vertical-align:top}
-.top_banner > div a .text{float:left;width:216px}
-.top_banner > div a em,
-.top_banner > div a strong{display:block;padding-left:20px;color:#000;line-height:1em}
-.top_banner > div a em{margin-top:27px;font-size:13px}
-.top_banner > div a strong{margin-top:6px;font-size:15px}
-
-/* 제거예정 */
+/* guide page hd */
 .quick_menu_group{display:inline-table;width:100%;height:35px;border-top:2px solid #fd4802;background:#222222;}
 .quick_menu_group .area{max-width: 1780px;padding: 0 10px;margin:0 auto;}
 .quick_menu_group .area > div{display:inline-block}
@@ -1236,30 +1202,57 @@ input[type="file"] {
 .quick_menu_group .area > div:first-child span:first-child a{margin-left:0}
 .quick_menu_group .area > div:first-child span:first-child a:after{display:none}
 .quick_menu_group .area > div:first-child span a:after{position:absolute;top:13px;left:0;width:1px;height:13px;background:#959596;content:''}
-.quick_menu_group .inr a{margin-left:16px;color:#eeeeee;}
+.quick_menu_group .inr a{margin-left:16px;color:#eeeeee;}*/
+
+
+
+/* ie */
+@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
+	body,input,textarea,select,button {font-size:14px; font-family:"LATO", "Noto Sans CJK kr","Noto Sans kr", sans-serif;}
+	h1,h2,h3,h4,h5,h6 {font-family:"LATO", "Noto Sans CJK kr","Noto Sans kr", sans-serif;}
+	.circle_count{font-size:10px;}
+	.product .history_wrap div ul li a, .contactUs .history_wrap div ul li a {
+		margin-top: 26px !important; 
+		line-height: 0.6 !important; 
+	}
+	.pageNav .disabled a {background-position: 0 9px !important; }
+	.pageNav .disabled.prev a {background-position: -23px 9px !important; }
+	.pageNav .next a,.pageNav > li:last-child a {background-position:-64px 9px !important; }
+	.pageNav .next a {background-position: -47px 9px !important; }
+	.filter_content .sort#tap01 ul li.noDepth.on > a::after {top:8px !important;}
+}
+
+/* 제거예정 */
 
-.common_header{background:#222222;color:#ffffff;min-width:1460px; box-sizing:border-box;}
-.common_header > * {color:#ffffff;}
-.common_header > .area{/*max-width: 1780px; margin:0 auto;*/ height:120px; padding:0 70px;position: relative; }
-.common_header > .area:after{content: ''; display: block; clear: both;}
 /*
-	overflow:hidden
-	.top_banner > div,
-	.quick_menu_group,
-	.quick_menu_group .area > div span 
-	{overflow:hidden;}
-*/
-.common_header .logo{float:left;margin-top:35px;}
-.common_header .logo h1 {margin:0;font-size: 0;}
-.common_header .logo .ico_logo:before {-webkit-transition:all .3s ease-in-out;transition:all .3s ease-in-out;}
-.common_header .search{float:right; margin-right:20px; margin-top:-14px; /* display: inline; position: absolute;top: 0;right: 10px;*/}
-.common_header .search > .area{float:left;position:relative;width:330px;border-bottom:2px solid #ffffff; margin-right: 20px; -webkit-transition:all .3s ease-in-out;transition:all .3s ease-in-out;}
-.common_header .search .search_input{width:calc(100% - 30px); padding:4px 0px 5px 0px;border:0;outline:none;font-size:18px;color:rgb(255 255 255 / 0.6);background: transparent; font-weight:200;}
+.gnb .nav .ico_menu_new{position:absolute;top:6px;right:4px}
+.gnb .nav > .all_menu.on{border-top:1px solid #fd4802;border-right:1px solid #fd4802;border-left:1px solid #fd4802}
+.gnb .nav > .all_menu.on .depth_menu{display:block}*/
+/*.top_banner{height:85px}
+.top_banner > div{width:1070px;margin:0 auto}
+.top_banner > div a{float:left;position:relative;width:33.3333%;height:85px;box-sizing:border-box}
+.top_banner > div a .banner_img{float:left;width:130px;vertical-align:top}
+.top_banner > div a .banner_img2{float:left;width:130px;vertical-align:top}
+.top_banner > div a .text{float:left;width:216px}
+.top_banner > div a em,
+.top_banner > div a strong{display:block;padding-left:20px;color:#000;line-height:1em}
+.top_banner > div a em{margin-top:27px;font-size:13px}
+.top_banner > div a strong{margin-top:6px;font-size:15px}
+/*.all_menu > .area{display:none;position:absolute;top:43px;width:217px;height:533px;left:-1px;border:1px solid #fd4802;background:#fff;z-index:99999}
+.all_menu.on > .area{display:block}
+.all_menu > .area > ul{padding:13px 11px}
+.all_menu > .area > ul > li a{display:block;padding:7px 11px 6px;cursor:pointer}
+.all_menu > .area > ul > li > a:hover,
+.all_menu > .area > ul > li.on > a{background:#fd4802;color:#fff !important}
+.all_menu > .area > ul > li > .color-blue:hover,
+.all_menu > .area > ul > li.on > .color-blue{background:#445694;color:#fff !important}
+.all_menu > .area > ul > li.link > a{color:#445694}
+.all_menu > .area > ul > li > a{font-size:15px;color:#333}
+.all_menu > .area > ul > li.on .depth_menu{display:block}*/
+/* .common_header .search .search_input{width:calc(100% - 30px); padding:4px 0px 5px 0px;border:0;outline:none;font-size:18px;color:rgb(255 255 255 / 0.6);background: transparent; font-weight:200;} 
 .common_header .search .search_input::placeholder  {color: #bcbcbc;}
-.common_header .search button{float:right;margin:4px 0 0 0}
 .common_header .search button.close{display:none;float:none;position:absolute;top:4px;right:58px;width:19px;height:19px;margin:0}
-.common_header .search .keyword{color:#fd4802}
-.common_header .search .btn_cart {margin-top:4px}
+.common_header .search .keyword{color:#fd4802} 
 .common_header .search_group,
 .common_header .my_search_group{display:none;position:absolute;top:100%;right:0;left:0;border:1px solid #221e1f;background:#fff;z-index:99999}
 .common_header .search_group.on,
@@ -1306,90 +1299,11 @@ input[type="file"] {
 .common_header .premium_menu div a{display:inline-block;overflow:hidden;max-width:100%;height:20px;margin:0 10px;padding:0 3px 6px;font-size:14px;color:#3d3d3d;white-space:nowrap;text-overflow:ellipsis;line-height:1em;box-sizing:border-box}
 .common_header .premium_menu div a:hover{border-bottom:1px solid #000}
 .common_header .premium_menu > ul > li:last-child div ul{border:0}
-.common_header .premium_menu .menu_bg{display:none;position:absolute;top:72px;right:0;left:0;height:332px;border-bottom:1px solid #e0e1e5;background:#fff;z-index:10}
-.common_header .hd_top_banner {text-align:center;}
-.common_header .hd_top_banner .t_bnr {display:block; margin:auto;}
-
-.util_group{overflow:hidden;float:right;margin-top:42px}
-.util_group span{float:left;position: relative; padding:0px 5px;}
-.util_group span::after{
-	content: '';
-    display: block;
-    width: 1px;
-    height: 8px;
-	background: #4e4e4e;
-    position: absolute;
-    top: 55%;
-    bottom: auto;
-    right: 0;
-    left: auto;
-	transform: translateY(-45%);
-}
-.util_group span:last-child{padding-right:0;}
-.util_group span:last-child::after{content: '';display: none;}
-.util_group span a{display:block; padding:0px 6px;font-weight:200;font-size:14px;color:#7f7f7f;letter-spacing: -.025em; line-height:1; -webkit-transition:all .3s ease-in-out;transition:all .3s ease-in-out;}
-
-.circle_count{
-	display:inline-block;width:23px;height:23px;margin-left:5px;
-	font-size:7px;text-align:center;line-height: 2.5;color:#fff;background:#fd4802;border-radius:50%;
-	position: absolute; top:-10px; right: -18px; bottom:auto; left: auto;
-}
-/* ie */
-@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
-	body,input,textarea,select,button {font-size:14px; font-family:"LATO", "Noto Sans CJK kr","Noto Sans kr", sans-serif;}
-	h1,h2,h3,h4,h5,h6 {font-family:"LATO", "Noto Sans CJK kr","Noto Sans kr", sans-serif;}
-	.circle_count{font-size:10px;}
-	.product .history_wrap div ul li a, .contactUs .history_wrap div ul li a {
-		margin-top: 26px !important; 
-		line-height: 0.6 !important; 
-	}
-	.pageNav .disabled a {background-position: 0 9px !important; }
-	.pageNav .disabled.prev a {background-position: -23px 9px !important; }
-	.pageNav .next a,.pageNav > li:last-child a {background-position:-64px 9px !important; }
-	.pageNav .next a {background-position: -47px 9px !important; }
-	.filter_content .sort#tap01 ul li.noDepth.on > a::after {top:8px !important;}
-}
-
-
-.circle_count.red{background:#fd4802}
-
-.bundle {display: inline-block;padding:0 10px;}
-.bundle:first-child {margin-left:-10px;}
-.bundle > li a {position: relative;}
-.bundle > li:last-child > a::after{content: ''; display: block; width: 1px; height: 18px; background: #4e4e4e; position: absolute; top:50%; bottom:auto; right: -20px; left:auto; transform: translateY(-50%);}
-.bundle:last-child li a::after{content: ''; display: none;}
-
-.gnb {height:58px; margin:0 auto; padding:0px 70px 20px; position: relative; min-width: 1460px; box-sizing:border-box;}
-.gnb::after {content: ''; display: block; clear: both;}
-.nav {float:left; margin-left:-14px;}
-.nav > ul > li{float:left; padding:0px 7px;}
-.nav > ul > li > a {display:block; color:#ffffff; font-size:19px; font-weight: 300; letter-spacing: -.025em; box-sizing:border-box;padding:0px 7px; line-height:1; -webkit-transition:all .1s ease-in-out;transition:all .1s ease-in-out;}
-.nav > ul > li > a:hover {color: #fd4802;}
-.nav > ul > li:first-child a {}
-.nav > .all_menu.on{border-top:1px solid #fd4802;border-right:1px solid #fd4802;border-left:1px solid #fd4802}
-.nav > .all_menu.on .depth_menu{display:block}
-
-.nav .ico_menu{position:absolute;top:15px;left:37px}
-.all_menu.on .ico_menu{top:16px;left:40px}
-.all_menu > .area{display:none;position:absolute;top:43px;width:217px;height:533px;left:-1px;border:1px solid #fd4802;background:#fff;z-index:99999}
-.all_menu.on > .area{display:block}
-.all_menu > .area > ul{padding:13px 11px}
-.all_menu > .area > ul > li a{display:block;padding:7px 11px 6px;cursor:pointer}
-.all_menu > .area > ul > li > a:hover,
-.all_menu > .area > ul > li.on > a{background:#fd4802;color:#fff !important}
-
-.all_menu > .area > ul > li > .color-blue:hover,
-.all_menu > .area > ul > li.on > .color-blue{background:#445694;color:#fff !important}
-
-.all_menu > .area > ul > li.link > a{color:#445694}
-.all_menu > .area > ul > li > a{font-size:15px;color:#333}
-.all_menu > .area > ul > li.on .depth_menu{display:block}
-
+.common_header .premium_menu .menu_bg{display:none;position:absolute;top:72px;right:0;left:0;height:332px;border-bottom:1px solid #e0e1e5;background:#fff;z-index:10}*/
 /* .all_menu.on .depth_menu{display:block;}
 .all_menu .depth_menu{display:none;position:absolute;top:190px;left:0;width:100%;min-width:1350px;height:535px;padding:23px 21px;border:1px solid #fd4802;background:#fff;box-sizing:border-box;clear:both;z-index: 200;}
 .all_menu .depth_menu .step1{position: relative;float: left;top: 0px;box-sizing: border-box;width: 300px;height: 600px;padding: 4px 0px 0px 48px;z-index: 1;}
 .all_menu .depth_menu .step2{position: relative;float: left;width: calc(100% - 300px);height: 600px;box-sizing: border-box;padding-left: 30px;}
-
 .all_menu .depth_menu.advertisement{overflow:hidden;width:595px}
 .all_menu .depth_menu.advertisement > div{float:left;width:337px}
 .all_menu .depth_menu.advertisement > div:first-child{width:197px;margin-right:17px}
@@ -1415,111 +1329,20 @@ input[type="file"] {
 .all_menu .depth_menu a{padding:3px 0 2px !important;font-size:14px}
 
 .all_menu .depth_menu a:hover {font-weight: bold; color: #fd4802;}
-.all_menu .depth_menu ul:nth-child(3) a:hover {font-weight: bold; color: #445694;} */
+.all_menu .depth_menu ul:nth-child(3) a:hover {font-weight: bold; color: #445694;} 
 .all_menu ul li:nth-last-child(2) .depth_menu a:hover {font-weight: bold; color: #445694;}
-.all_menu ul li:nth-last-child(4) .depth_menu ul:nth-child(3) a:hover {font-weight: bold; color: #fd4802;}
-
-.nav > ul > li.more{float:right;position:relative;width:47px;height:47px}
-.nav > ul > li.more button{position:absolute;top:-1px;right:0}
-.nav li.more > ul {display:none;position:absolute;top:100%;right:0;width:121px;height:auto;margin-top:-2px;padding:17px 0;border:1px solid #000;background:#fff;box-sizing:border-box;z-index:999}
-.nav li.more.on > ul{display:block}
-.nav li.more > ul li{padding:2px 19px 3px}
-.nav li.more > ul a{font-size:15px;color:#191919}
-.nav .ico_menu_new{position:absolute;top:6px;right:4px}
-
-
-/* Brand HEADER */
-
-
-
-/* footer */
-#footer {}
-.common_footer {position:relative; width:100%; min-width:1380px; box-sizing:border-box; padding:60px 70px; background-color:#f1f1f1;}
-/* .common_footer {font-family:'LATO', 'Noto Sans CJK kr','Noto Sans kr', sans-serif;} */
-
-.common_footer > div {padding-right:170px; box-sizing:border-box;} 
-.common_footer .service_support {position: relative;margin: 0 auto; border-top: 0 none !important; zoom: 1;}
-.common_footer .service_support h2 {margin:0;}
-.common_footer .service_support .support_txt {display:block; padding-top:40px;}
-.common_footer .service_support .support_txt::after {content:''; clear:both; display:block;}
-.common_footer .service_support .support_txt li {float:left; position:relative; margin-left:20px; padding-left:20px; font-size:16px; font-weight:300; line-height:1;}
-.common_footer .service_support .support_txt li a span em {line-height: 10px;}
-.common_footer .service_support .support_txt li::before {content:''; position:absolute; left:0; top:2px; bottom:2px; border-left:1px solid #ddd; z-index:2;}
-.common_footer .service_support .support_txt li:first-child {margin-left:0; padding-left:0;}
-.common_footer .service_support .support_txt li:first-child::before {display:none;}
-.common_footer .service_support .family_link {position:absolute; z-index: 99; right:0; top:0px; width:170px;}
-.common_footer .service_support .family_link h2 a {display:block; position:relative; height:32px; padding:10px; color: #444; font-weight: 300; font-size: 14px; letter-spacing: 0; line-height:1; text-align: left; border: solid 1px transparent; border-bottom: solid 1px #222222; -webkit-box-sizing: border-box; box-sizing: border-box; }
-.common_footer .service_support .family_link h2 a:hover{background-color: rgb(255 255 255);}
-.common_footer .service_support .family_link h2 a:focus{
-  background-color: rgb(255 255 255);
-  border: 1px solid #222222;
-  border-top: 1px solid transparent;
-}
-.common_footer .service_support .family_link h2 a .ico {position:absolute; top:10px; right:15px; margin-right:0;}
-.common_footer .service_support .family_link dl {display:none; position: absolute; bottom:32px; left:0; width: 170px; border: 1px solid #222222; padding:3px 0px 13px 0px; background-color:#fff; box-sizing:border-box;}
-.common_footer .service_support .family_link dl dt {position: relative; font-size: 10px;font-weight: bold;letter-spacing: 1px;color: #222222;padding: 8px 0 2px 0px; text-indent: 12px;display: block;}
-.common_footer .service_support .family_link dl dd {text-indent: 12px;}
-.common_footer .service_support .family_link dl dd a {font-size: 14px; font-weight: 300; color:#222; text-decoration: none;padding: 12px 0px;display: block;letter-spacing: -.025em;line-height: 15px;}
-.common_footer .service_support .family_link dl dd a:hover {background:#efefef;}
-.common_footer .service_support .connect {position:absolute; top:76px; right:0px; text-align:left; width:170px; line-height:1.2; z-index:2;}
-.common_footer .service_support .connect .cs_box .clickable {color:#222; font-size:16px; font-weight:300;letter-spacing: -.025em;}
-.common_footer .service_support .connect .cs_box .clickable .ico_ft_arrow_r:before {vertical-align:top; margin-top:2px;}
-.common_footer .service_support .connect .cs_box span {display:inline-block; color:#666;}
-.common_footer .service_support .connect .cs_box span.time {font-size:14px; line-height: 22px;}
-.common_footer .service_support .connect .cs_box span.tel {font-size:18px;font-weight: 300;}
-.common_footer .service_support .connect .cs_box span.fax,
-.common_footer .service_support .connect .cs_box span.mail {color:#888; font-size:14px;font-weight: 200;}
-.common_footer .service_support .connect .sns_box {}
-.common_footer .service_support .connect .sns_box a {display:inline-block; width:20px; height:20px; background:no-repeat url('/images/pc/ico_ft_sns.png');}
-.common_footer .service_support .connect .sns_box a.fbook {background-position:0 0;}
-.common_footer .service_support .connect .sns_box a.insta {background-position:-20px 0;}
-.common_footer .service_support .connect .isms_box {padding:12px 0; color:#666; font-size:12px; font-weight: 200; line-height:16px; border-top:1px solid #ddd; border-bottom:1px solid #ddd;}
-.common_footer .service_support .connect .isms_box p {padding:5px 0 5px 60px; background:no-repeat url('/images/pc/ico_ft_isms.png') 5px 3px;}
-.common_footer .corporation_info {position:relative; min-height:30px; color:#888; font-size:14px; line-height:26px; letter-spacing:-0.5px;}
-.common_footer .corporation_info .ft_cpinfo {margin-top:35px;}
-.common_footer .corporation_info .ft_cpinfo dl {}
-.common_footer .corporation_info .ft_cpinfo dl dt {font-weight:500;}
-.common_footer .corporation_info .ft_cpinfo dl dd {font-weight:200;}
-.common_footer .corporation_info .ft_cpinfo dl dd span {margin-right:10px;}
-.common_footer .corporation_info .ft_cpinfo dl .clickable {padding-bottom:2px; border-bottom:1px solid #888; color:#888; font-size:12px;}
-.common_footer .copyright {min-height:30px; margin-top:45px; color:#888; font-weight: 200;font-size:14px; line-height:1.5; letter-spacing:-0.5px; }
-
-.common_footer .cmfooter_corp_wrap {min-height:30px; font-size:14px; line-height:26px; letter-spacing:-0.5px; color:#888;}
-.common_footer .cmfooter_corp_wrap .cmfooter_corp_in {position: relative;margin: 0 auto;zoom: 1;}
-.common_footer .cmfooter_corp_wrap .cmfooter_corp_in:after {display: block;clear: both;content: "";}
-.common_footer .cmfooter_corp_wrap .cmfooter_corp_in .cmfooter_corp_txwrap .clickable {padding-bottom:2px; border-bottom:1px solid #888; color:#888; font-size:12px;}
-.common_footer .cmfooter_corp_wrap .cmfooter_corp_info {float: left; }
-.common_footer .cmfooter_corp_wrap .cmfooter_corp_in dl {margin-top:40px;}
-.common_footer .cmfooter_corp_wrap .cmfooter_corp_in dl dt {font-weight:500;}
-.common_footer .cmfooter_corp_wrap .cmfooter_corp_in dl dd {font-weight:200;}
-.common_footer .cmfooter_corp_wrap .cmfooter_corp_in dl dd span {margin-right: 10px;}
-.common_footer .cmfooter_corp_wrap .cmfooter_corp_rgt {position: absolute; top:3px; right:0px; text-align:left; width:150px;}
-.common_footer .cmfooter_corp_wrap .cmfooter_corp_hosting {margin-top:50px; font-weight:300;}
-.common_footer .cmfooter_corp_wrap .cmfooter_mark {position: relative;margin-left: 44px;}
-.common_footer .cmfooter_corp_wrap .cmfooter_corp_copy {display: block;width: 164px;height: 41px;margin: 0 auto;background-position: -200px 0;}
-.common_footer .sp_cmfooter, 
-.common_footer .cmfooter_corp_wrap .cmfooter_corp_cs .cmfooter_cs_tel:before {display: inline-block;vertical-align: top;}
-
-
+.all_menu ul li:nth-last-child(4) .depth_menu ul:nth-child(3) a:hover {font-weight: bold; color: #fd4802;}*/
 
 
 /* slide custom */
-.slick-dots {position: absolute;bottom: 25px;display: block;width: 100%;padding: 0;margin: 0;list-style: none;text-align: center;
-}
+.slick-dots {position: absolute;bottom: 25px;display: block;width: 100%;padding: 0;margin: 0;list-style: none;text-align: center;}
 .slick-dots li {position: relative;display: inline-block;width: 10px;height: 10px;margin: 0 5px;padding: 0;cursor: pointer;}
 .slick-dots li.slick-active button{background: #ff8c12;}
-.slick-dots li button {
-font-size: 0;line-height: 0;display: block;width: 10px;height: 10px;padding: 5px;cursor: pointer;
-color: transparent;border: 0;outline: none;background: transparent; background: #888888; border-radius: 100%;
-}
+.slick-dots li button {font-size: 0;line-height: 0;display: block;width: 10px;height: 10px;padding: 5px;cursor: pointer; color: transparent;border: 0;outline: none;background: transparent; background: #888888; border-radius: 100%;}
 /* End of slide custom */
 
-
 /* Mesage, Toast, Alert Custom */
-.alert {
-	padding: 15px;border: 1px solid transparent; border-radius: 4px;margin-bottom: 10px;line-height: 21px;
-	background-color: #dddddd;color: #666666;border-color: #dddddd;
-}
+.alert {padding: 15px;border: 1px solid transparent; border-radius: 4px;margin-bottom: 10px;line-height: 21px; background-color: #dddddd;color: #666666;border-color: #dddddd;}
 button.alertCls {-webkit-appearance: none;padding: 0;cursor: pointer;background: 0 0;border: 0;}
 .alertCls {float: right;font-size: 21px;font-weight: 700;line-height: 1;color: #000;text-shadow: 0 1px 0 #fff;filter: alpha(opacity=20);opacity: .2;}
 .alertCls:hover, .alertCls:focus {color: #000;text-decoration: none;cursor: pointer;filter: alpha(opacity=50);opacity: .5;}
@@ -1622,7 +1445,7 @@ button.alertCls {-webkit-appearance: none;padding: 0;cursor: pointer;background:
 	width: 17px;
 	height: 17px;
 	cursor:pointer;
-	background:url('/image/btn_top_close.png') no-repeat 50% 50%;
+	background:url('/images/pc/btn_top_close.png') no-repeat 50% 50%;
 }
 
 /*bottom dialog*/

+ 8 - 8
src/main/webapp/ux/pc/css/font.css

@@ -2,7 +2,7 @@
 @font-face {
     font-family: 'Noto Sans CJK kr';
     src: 
-    url("/ux/fonts/NotoSansCJKkr-Light.otf") format('otf'),
+    url("/ux/fonts/NotoSansCJKkr-Light.otf") format('opentype'),
     url("/ux/fonts/NotoSansCJKkr-Light.woff") format('woff'),
     url("/ux/fonts/NotoSansCJKkr-Light.ttf") format('ttf');
     font-weight: 100;
@@ -11,7 +11,7 @@
 @font-face {
     font-family: 'Noto Sans CJK kr';
     src: 
-    url("/ux/fonts/NotoSansCJKkr-Light.otf") format('otf'),
+    url("/ux/fonts/NotoSansCJKkr-Light.otf") format('opentype'),
     url("/ux/fonts/NotoSansCJKkr-Light.woff") format('woff'),
     url("/ux/fonts/NotoSansCJKkr-Light.ttf") format('ttf');
     font-weight: 200;
@@ -20,7 +20,7 @@
 @font-face {
     font-family: 'Noto Sans CJK kr';
     src: 
-    url("/ux/fonts/NotoSansCJKkr-Regular.otf") format('otf'),
+    url("/ux/fonts/NotoSansCJKkr-Regular.otf") format('opentype'),
     url("/ux/fonts/NotoSansCJKkr-Regular.woff") format('woff'),
     url("/ux/fonts/NotoSansCJKkr-Regular.ttf") format('ttf');
     font-weight: 300;
@@ -29,7 +29,7 @@
 @font-face {
     font-family: 'Noto Sans CJK kr';
     src: 
-    url("/ux/fonts/NotoSansCJKkr-Regular.otf") format('otf'),
+    url("/ux/fonts/NotoSansCJKkr-Regular.otf") format('opentype'),
     url("/ux/fonts/NotoSansCJKkr-Regular.woff") format('woff'),
     url("/ux/fonts/NotoSansCJKkr-Regular.ttf") format('ttf');
     font-weight: 400;
@@ -38,7 +38,7 @@
 @font-face {
     font-family: 'Noto Sans CJK kr';
     src: 
-    url("/ux/fonts/NotoSansCJKkr-Medium.otf") format('otf'),
+    url("/ux/fonts/NotoSansCJKkr-Medium.otf") format('opentype'),
     url("/ux/fonts/NotoSansCJKkr-Medium.woff") format('woff'),
     url("/ux/fonts/NotoSansCJKkr-Medium.ttf") format('ttf');
     font-weight: 500;
@@ -47,7 +47,7 @@
 @font-face {
     font-family: 'Noto Sans CJK kr';
     src: 
-    url("/ux/fonts/NotoSansCJKkr-Bold.otf") format('otf'),
+    url("/ux/fonts/NotoSansCJKkr-Bold.otf") format('opentype'),
     url("/ux/fonts/NotoSansCJKkr-Bold.woff") format('woff'),
     url("/ux/fonts/NotoSansCJKkr-Bold.ttf") format('ttf');
     font-weight: 600;
@@ -56,7 +56,7 @@
 @font-face {
     font-family: 'Noto Sans CJK kr';
     src: 
-    url("/ux/fonts/NotoSansCJKkr-Bold.otf") format('otf'),
+    url("/ux/fonts/NotoSansCJKkr-Bold.otf") format('opentype'),
     url("/ux/fonts/NotoSansCJKkr-Bold.woff") format('woff'),
     url("/ux/fonts/NotoSansCJKkr-Bold.ttf") format('ttf');
     font-weight: 700;
@@ -138,7 +138,7 @@
 }
 @font-face {
     font-family: 'LATO';
-    src:
+    src: 
     url("/ux/fonts/Lato-bold.eot") format('eot'),
     url("/ux/fonts/Lato-bold.woff") format('woff'),
     url("/ux/fonts/Lato-bold.ttf") format('ttf');

+ 190 - 43
src/main/webapp/ux/pc/css/layout.css

@@ -143,7 +143,7 @@ ul.maintabs li [class^='box_depth'] {display:none; position:absolute; left:100%;
 .common_search .cont_search {position:relative; width:830px; top:50%; transform:translateY(-50%); margin:auto; }
 .common_search .cont_search .area_input {border-bottom:2px solid #222;}
 .common_search .cont_search .area_input input[type='text'] {width:calc(100% - 30px); height:54px; border:none; color:#222; font-size:30px; padding-left:0;}
-.common_search .cont_search .area_input .ico_search:before {width:26px; height:26px; background-image:url('/images/pc/ico_search_black.png');}
+.common_search .cont_search .area_input .ico_search:before {width:26px; height:26px; background-image:url('/images/pc/ico_search_faq.png');}
 .common_search .cont_search .area_result {}
 .common_search .cont_search .area_result .empty_box {margin-top:80px;}
 .common_search .empty_box .nodata {color:#666; font-size:16px; font-weight:300; line-height:26px; text-align:center;}
@@ -315,10 +315,16 @@ ul.maintabs li [class^='box_depth'] {display:none; position:absolute; left:100%;
 #quick_menu .shopingbag .quick_body.nodata {height: 708px;}
 #quick_menu .shopingbag .quick_body .itemsGrp.empty {display: none;}
 #quick_menu .shopingbag .quick_body.nodata .itemsGrp.existence {display: none;}
+#quick_menu .shopingbag .quick_body.nodata .itemsGrp .item_prod:first-child{padding-top: 20px;}
+#quick_menu .shopingbag .quick_body.nodata .itemsGrp .item_prod .viewCount{display:table; width: fit-content;height: 30px;color: #fd4802;line-height: 1;font-size: 14px;font-weight: 400;text-align: center;vertical-align: middle;letter-spacing: -.025rem;padding: 6px 12px;border: 2px solid #fd4802;border-radius: 50px;box-sizing: border-box;}
 #quick_menu .shopingbag .quick_body.nodata .itemsGrp.empty {display: block;}
-#quick_menu .shopingbag .quick_body.nodata .itemsGrp.empty .desc {font-size: 16px; line-height: 1.6; color: #888; text-align: center;}
+#quick_menu .shopingbag .quick_body.nodata .itemsGrp.empty .desc {font-size: 16px; line-height: 1.6; color: #888; text-align: center;padding-bottom: 40px;}
 #quick_menu .shopingbag .quick_body.nodata .itemsGrp.empty .item_prod:last-child {border-bottom: 0; padding-bottom: 0;}
 #quick_menu .shopingbag .quick_body.nodata .purchase_btn {display: none;}
+#quick_menu .shopingbag .quick_body {scrollbar-width: 2px; scrollbar-3dLight-Color: #f8f8f8; scrollbar-arrow-color: #f8f8f8; scrollbar-base-color: #f8f8f8; scrollbar-Face-Color: #888888; scrollbar-Track-Color: #f8f8f8; scrollbar-DarkShadow-Color: #f8f8f8; scrollbar-Highlight-Color: #f8f8f8; scrollbar-Shadow-Color: #f8f8f8}
+#quick_menu .shopingbag .quick_body::-webkit-scrollbar {width: 4px;}
+#quick_menu .shopingbag .quick_body::-webkit-scrollbar-thumb {background-color: #222222;border-radius: 50px;-webkit-border-radius: 50px;background-clip: padding-box;border: 1px solid transparent;}
+#quick_menu .shopingbag .quick_body::-webkit-scrollbar-track {background-color: #f8f8f8;border-radius: 50px;-webkit-border-radius:50px;}
 #quick_menu .shopingbag .itemsGrp .item_prod {width: 100%; overflow: hidden; padding:30px 0; border-bottom: 1px solid #ddd;}
 #quick_menu .shopingbag .itemsGrp .item_prod .delete_btn {position: absolute; top: 30px; right: 0; width: 14px; height: 14px; background: url('/images/pc/ico_close1.png') no-repeat center;}
 #quick_menu .shopingbag .itemsGrp .item_prod:first-child .delete_btn {top: 0;}
@@ -340,8 +346,8 @@ ul.maintabs li [class^='box_depth'] {display:none; position:absolute; left:100%;
 #quick_menu .shopingbag .itemsGrp .item_prod .itemPrice {font-size: 16px; line-height: 1; font-weight: 500; margin:0 0 10px}
 #quick_menu .shopingbag .itemsGrp .item_prod .itemPrice_original {display: inline-block; font-size: 14px; font-weight: 200;}
 #quick_menu .shopingbag .itemsGrp .item_prod .itemLink .purchase_btn {width: 100%; border:1px solid #a7a7a7; font-weight:300;}
-#quick_menu .shopingbag .itemsGrp .item_prod .cart_btn {width: 91px; border:1px solid #ddd; font-size: 13px; padding: 6px 0; margin-top: 10px;}
-#quick_menu .shopingbag .itemsGrp .item_prod .cart_btn.on {background: #222; color: #fff; border:1px solid #222;}
+/* #quick_menu .shopingbag .itemsGrp .item_prod .cart_btn {width: 91px; border:1px solid #ddd; font-size: 13px; padding: 6px 0; margin-top: 10px;} */
+/* #quick_menu .shopingbag .itemsGrp .item_prod .cart_btn.on {background: #222; color: #fff; border:1px solid #222;} */
 #quick_menu .shopingbag .purchase_btn {width: 100%; position: absolute; left: 50%; bottom: 30px; z-index: 90; width: 302px; height: 60px; line-height: 60px; background: #fd4802; color: #fff; font-size: 18px; font-weight: 300; transform: translateX(-50%); box-shadow: 3px 4px 14px 0px rgba(0, 0, 0, 0.41); border:1px solid #fd4802;}
 
 #quick_menu .shopingbag .shape {z-index: 90; width: 78px; max-width:78px; min-height:28px; background: #fd4802;}
@@ -489,6 +495,30 @@ ul.maintabs li [class^='box_depth'] {display:none; position:absolute; left:100%;
 .breadcrumb ul li:first-of-type::before {content:none;}
 .breadcrumb ul li::before {content:''; display: inline-block; width:6px; height: 11px; padding: 0 12px; background: url('/images/pc/ico_bread_root.png')no-repeat center center;}
 
+.area_top_list_info {position:relative; width:100%; margin:60px auto 30px}
+.area_top_list_info .total_count {font-size:16px; color:#888; font-weight:200;}
+.area_top_list_info .total_count span {color:#fd4802; font-weight:300;}
+.area_top_list_info .ui_right {position:absolute; right:0; top:50%; transform:translateY(-50%);}
+.area_thumb_list {}
+.area_thumb_list .thumb_list {}
+.area_thumb_list .thumb_list ul {}
+.area_thumb_list .thumb_list ul li {float:left; width:calc((100% - 60px)/4); margin-left:20px; margin-top:70px}
+.area_thumb_list .thumb_list ul li:nth-child(4n-3){margin-left:0}
+.area_thumb_list .thumb_list ul li:nth-child(-n+4) {margin-top:0}
+.area_thumb_list .thumb_list ul li a {display:block; position:relative;}
+.area_thumb_list .thumb_list ul li a .rank {z-index:2;}
+.area_thumb_list .thumb_list ul li a .thumb {display:block; position:relative; width:100%; height:0; padding-top:100%; background:#f5f5f5;}
+.area_thumb_list .thumb_list ul li a .thumb img {position:absolute; left:0; top:50%; transform:translateY(-50%); width:100%; z-index:1}
+.area_thumb_list .thumb_list ul li a .txt {margin-top:15px; padding:0px 5px 0px}
+.area_thumb_list .thumb_list ul li a .txt .title {display:block; display: -webkit-box; text-overflow:ellipsis; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden; height:68px; line-height:34px; color:#222; font-weight:500; font-size:24px; word-break:keep-all; white-space:normal;}
+.area_thumb_list .thumb_list ul li a .txt .date {display:block; margin-top:15px; color:#888; font-size:14px; font-weight:300;}
+.area_thumb_list .nodata {padding:80px 0 100px;  text-align:center;}
+.area_thumb_list .nodata .txt_box {color:#666; font-size:16px; font-weight:300; line-height:26px;}
+.area_thumb_list .nodata .txt_box::before {content:''; display:block; width:36px; height:46px; margin:0 auto 24px; background:url('/images/pc/ico_content_none.png') no-repeat;}
+.area_thumb_list .nodata .txt_box span {color:#fd4802; font-weight:500;}
+.area_thumb_list .nodata .btn_box {margin-top:40px;}
+.area_thumb_list .nodata .btn_box .btn span {color:#222; font-size:14px; font-weight:300;}
+
 
 
 /* content */
@@ -997,6 +1027,8 @@ ul.maintabs li [class^='box_depth'] {display:none; position:absolute; left:100%;
 	.contactUs_my textarea {height:200px; padding:20px;}
 	.contactUs_my .input_label {line-height:42px;}
 	.contactUs_my .form_field {margin-top:20px}
+	.contactUs_my .form_field .push_agree > div {float: left;margin-top: 10px;margin-right: 40px;}
+	.contactUs_my .form_field .push_agree:after	{content: '';display: block;clear: both;}
 	.contactUs_my .form_field:first-of-type {margin-top:0}
 	.contactUs_my .form_field .cellphone {display:block;}
 	.contactUs_my .form_field .cellphone input[type="text"]{width:400px;}
@@ -3222,6 +3254,132 @@ ul.maintabs li [class^='box_depth'] {display:none; position:absolute; left:100%;
 	.sch_result .cont_body .sch_result_cont .event_list li .txt .tit {display: -webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; margin: 20px 0; min-height:66px; max-height:66px; overflow: hidden; text-overflow: ellipsis; font-size: 24px; line-height: 1.4; color: #222; font-weight: 300; word-break: keep-all;}
 
 
+	/* br */ 
+	.br {padding-bottom:160px;}
+	.br div::after,
+	.br dl::after,
+	.br ul::after {content:''; clear:both; display:block;}
+
+	/* br_sch_result */ 
+	.br_sch_result {}
+	.br_sch_result h2 {margin-bottom:60px;}
+	.br_sch_result .brand_banner_list {}
+	.br_sch_result .brand_banner_list ul {margin-top:-20px;}
+	.br_sch_result .brand_banner_list ul li {float:left; width:calc((100% - 140.1px)/8); margin-left:20px; margin-top:20px; background:#f5f5f5;}
+	.br_sch_result .brand_banner_list ul li:nth-child(8n - 7) {margin-left:0;}
+	.br_sch_result .brand_banner_list ul li a {display:block; position:relative; width:100%; height:0; padding-bottom:70.244%; background-repeat:no-repeat; background-position:50% 50%; box-sizing:border-box;}
+	.br_sch_result .brand_banner_list ul li a span {display:none; position:absolute; top:0%; left:0%; width:100%; height:100%; background:#f5f5f5; border:1px solid #222; z-index:1;}
+	.br_sch_result .brand_banner_list ul li a span em {position:absolute;  top:50%; left:0%; width:100%; padding:10px; transform:translateY(-50%); color:#222; font-size:20px; font-weight:300; text-align:center; word-break:break-word; box-sizing:border-box;}
+	.br_sch_result .brand_banner_list ul li a:hover span,
+	.br_sch_result .brand_banner_list ul li a:focus span,
+	.br_sch_result .brand_banner_list ul li a:active span {display:block;}
+
+	.br_sch_result .area_input {text-align:center; width:100%; max-width:800px; border-bottom:2px solid #222; margin:130px auto auto;}
+	.br_sch_result .area_input input[type='text'] {width:calc(100% - 30px); height:54px; border:none; padding-left:0; color:#222; font-size:30px;}
+	.br_sch_result .area_input input[type='text']::placeholder {color:#888}
+	.br_sch_result .area_input button {display:inline-block; width:26px; height:26px; background:url('/images/pc/ico_search_faq.png') no-repeat 50% 50%; background-size:100% auto; overflow:hidden; font-size:1px; text-indent:-999px;}
+
+	.br_sch_result .area_result {}
+	.br_sch_result .area_result .default_box {margin-top:20px}
+	.br_sch_result .area_result .default_box .brand_list{}
+	.br_sch_result .area_result .result_box {}
+	.br_sch_result .area_result .result_box .brand_list{}
+	.br_sch_result .area_result .brand_list {}
+	.br_sch_result .area_result .brand_list .list_blk {padding:60px 0; border-top:1px solid #ddd}
+	.br_sch_result .area_result .brand_list .list_blk:first-child {border-top:none;}
+	.br_sch_result .area_result .brand_list .list_blk .title_abbr {display:block; margin-bottom:15px; color:#222; font-size:42px; font-weight:500;}
+	.br_sch_result .area_result .brand_list .list_blk ul {}
+	.br_sch_result .area_result .brand_list .list_blk ul li {float:left; width:20%; padding:25px 0;}
+	.br_sch_result .area_result .brand_list .list_blk ul li span {display:block; font-weight:200;}
+	.br_sch_result .area_result .brand_list .list_blk ul li span.name_large {color:#222; font-size:16px;}
+	.br_sch_result .area_result .brand_list .list_blk ul li span.name_small {margin-top:10px; color:#888; font-size:14px;}
+	.br_sch_result .area_result .empty_box{}
+	.br_sch_result .area_result .empty_box .nodata {padding:120px 0 0;}
+	.br_sch_result .area_result .empty_box .nodata {padding:80px 0 100px;  text-align:center;}
+	.br_sch_result .area_result .empty_box .nodata .txt_box {color:#666; font-size:16px; font-weight:300; line-height:26px;}
+	.br_sch_result .area_result .empty_box .nodata .txt_box::before {content:''; display:block; width:36px; height:46px; margin:0 auto 24px; background:url('/images/pc/ico_content_none.png') no-repeat;}
+	.br_sch_result .area_result .empty_box .nodata .txt_box span {color:#fd4802; font-weight:500;}
+	.br_sch_result .area_result .empty_box .nodata .btn_box {margin-top:40px;}
+	.br_sch_result .area_result .empty_box .nodata .btn_box .btn span {color:#222; font-size:14px; font-weight:300;}
+
+	/* br_lookbook_list */
+	.br_lookbook_list {}
+	
+	/* br_lookbook_view */
+	.br_lookbook_view {width:100%}
+	.br_lookbook_view .cont_head {position:relative;}
+	.br_lookbook_view .swiper-button-next,
+	.br_lookbook_view .swiper-button-prev {top:50%; transform:translateY(-50%); width:auto; height:auto; margin:0; padding:0; color:transparent;}
+	.br_lookbook_view .swiper-button-next {right:0px;}
+	.br_lookbook_view .swiper-button-prev {left:0px;}
+	.br_lookbook_view .swiper-button-next::after, 
+	.br_lookbook_view .swiper-button-prev::after {content:''; display:inline-block; width:26px; height:50px; background-image:url('/images/pc/ico_arr_lg.png'); background-repeat:no-repeat;}
+	.br_lookbook_view .swiper-button-next::after {background-position:100% 50%;}
+	.br_lookbook_view .swiper-button-prev::after {background-position:0% 50%;}
+
+	.br_lookbook_view.cont_visual {padding-bottom:120px;}
+	.br_lookbook_view.cont_visual .cont_head {margin-bottom:60px}
+	.br_lookbook_view.cont_visual .cont_body .area_slider {margin-left:-70px; margin-right:-70px;}
+	.br_lookbook_view.cont_visual .swiper-slide {width: auto; height: 660px;}
+	.br_lookbook_view.cont_visual .swiper-slide img {width: 100%; height:auto;}
+	.br_lookbook_view.cont_visual .bt_lb_item {}
+	.br_lookbook_view.cont_visual .swiper-container {padding-top:60px;}
+	.br_lookbook_view.cont_visual .swiper-slide .bt_lb_item:after {content:''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,.3);}
+	.br_lookbook_view.cont_visual .swiper-slide-active .bt_lb_item {position: relative; height: 618px; margin-top: -60px; transition: all 200ms ease;}
+	.br_lookbook_view.cont_visual .swiper-slide-active .bt_lb_item:after {display:none;}
+	.br_lookbook_view.cont_visual .swiper-slide-active .bt_lb_item .item_picker {position:absolute; transform:translate(-50%,-50%);}
+	.br_lookbook_view.cont_visual .swiper-slide-active .bt_lb_item .item_picker .pick_descr {display:none; position:absolute; background:#fff; z-index:2;}
+	.br_lookbook_view.cont_visual .swiper-button-next {right:70px;}
+	.br_lookbook_view.cont_visual .swiper-button-prev {left:70px;}
+	.br_lookbook_view.cont_visual .swiper-button-next::after,
+	.br_lookbook_view.cont_visual .swiper-button-prev::after {filter:invert(100%);}
+	.br_lookbook_view.cont_visual .text_cont {margin-top:80px; color:#666; font-size:16px; font-weight:200; line-height:26px;}
+
+	.br_lookbook_view.cont_items {padding:120px 0px;}
+	.br_lookbook_view.cont_items::before {content:''; position:absolute; left:-70px; right:-70px; top:0; bottom:0; background:#f5f5f5; z-index:-1;}
+
+	.br_lookbook_view.cont_items .cont_head h3 {margin-bottom:40px; color:#222; font-size:24px; font-weight:500;}
+	.br_lookbook_view.cont_items .cont_head h3 span.number {margin-left:4px; color:#888; font-weight:200;}
+	.br_lookbook_view.cont_items .cont_head .btn {position:absolute; right:0; bottom:0; padding:13px 24px; font-size:14px; font-weight:300; height:42px;}
+	.br_lookbook_view.cont_items .cont_head .btn span {display:inline-block; line-height:1;}
+	.br_lookbook_view.cont_items .area_slider {position:relative; width:100%; box-sizing:border-box;}
+	.br_lookbook_view.cont_items .area_slider .swiper-wrapper {padding-bottom:60px;}
+	.br_lookbook_view.cont_items .area_slider .swiper-container .item_prod {width:100%;}
+	.br_lookbook_view.cont_items .area_slider .swiper-container .item_prod .item_state {padding:0}
+	.br_lookbook_view.cont_items .area_slider .swiper-scrollbar {background:#ddd}
+	.br_lookbook_view.cont_items .area_slider .swiper-scrollbar-drag {border-radius:0; background:#222;}
+	.br_lookbook_view.cont_items .area_slider .swiper-container-horizontal>.swiper-scrollbar {position:relative; left:auto; right:auto; bottom:auto; width:100%; height:2px; opacity: 1 !important;}
+
+	.br_lookbook_view.cont_others {padding:160px 70px 120px}
+	.br_lookbook_view.cont_others .cont_head button {position:absolute; right:0; bottom:0; padding:0 17px 0 0; color:#888; font-size:18px; font-weight:300; background:url('/images/pc/ico_more_lg.png') no-repeat 100% 50%;}
+	.br_lookbook_view.cont_others .cont_head button span {display:inline-block; line-height:1;}
+	.br_lookbook_view.cont_others .area_slider {}
+	.br_lookbook_view.cont_others .swiper-slide {}
+	.br_lookbook_view.cont_others .swiper-slide a {display:block;}
+	.br_lookbook_view.cont_others .swiper-slide a .thumb {display:block; position:relative; width:100%; height:0; padding-top:100%; background:#f5f5f5;}
+	.br_lookbook_view.cont_others .swiper-slide a .thumb img {position:absolute; left:0; top:50%; transform:translateY(-50%); width:100%; z-index:1}
+	.br_lookbook_view.cont_others .swiper-slide a .txt {margin-top:10px; padding:0px 5px 0px}
+	.br_lookbook_view.cont_others .swiper-slide a .txt .title {display:block; display: -webkit-box; text-overflow:ellipsis; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden; height:56px; line-height:28px; color:#222; font-weight:500; font-size:18px; word-break:keep-all; white-space:normal;}
+
+	.modal.br_pop.lookbook_item_pop {max-width:585px; min-height:390px; padding:0;}
+	.modal.br_pop.lookbook_item_pop .item_prod {width:100%;}
+	.modal.br_pop.lookbook_item_pop .modal-header {margin:0;}
+	.modal.br_pop.lookbook_item_pop .itemsGrp {margin-bottom:0;}
+	.modal.br_pop.lookbook_item_pop .itemsGrp .item_prod {width: 100%; overflow: hidden;}
+	.modal.br_pop.lookbook_item_pop .itemsGrp .item_prod .item_state {display: table; padding-left: 310px; padding-right: 55px; padding-bottom: 0; width: 100%; min-height:390px;}
+	.modal.br_pop.lookbook_item_pop .itemsGrp .item_prod .itemLink {display: table-cell; position: static; vertical-align: middle;}
+	.modal.br_pop.lookbook_item_pop .itemsGrp .item_prod .itemPic {position: absolute; top: 0; left: 0; margin-bottom: 0; width: 260px; height:390px; padding:0; background: #f5f5f5;}
+	.modal.br_pop.lookbook_item_pop .itemsGrp .item_prod.sold_out .itemPic:before {content:'SOLD OUT'; position: absolute; top: 50%; left: 50%; font-size: 20px; color:#fff; background: rgba(0,0,0,.5); width: 100%; height: 100%; transform:translate(-50%, -50%); line-height: 420px; z-index: 99; text-align: center;}
+	.modal.br_pop.lookbook_item_pop .itemsGrp .item_prod .itemBrand {margin:0px 0px 15px; font-size: 14px; font-weight: 300;}
+	.modal.br_pop.lookbook_item_pop .itemsGrp .item_prod .itemName {margin:0px 0px 25px; font-size: 18px; font-weight: 300; line-height: 28px; height:56px;}
+	.modal.br_pop.lookbook_item_pop .itemsGrp .item_prod .itemPrice {font-size: 26px; line-height: 1; font-weight: 500; margin:0;}
+	.modal.br_pop.lookbook_item_pop .itemsGrp .item_prod .itemPrice_original {display: inline-block; margin-left:0; margin-bottom:10px; font-size: 20px; font-weight: 200;}
+	.modal.br_pop.lookbook_item_pop .itemsGrp .item_prod .itemPercent {font-size: 26px; line-height: 0.8;}
+	.modal.br_pop.lookbook_item_pop .itemsGrp .item_prod .itemLink .btn {margin-top:40px; border:1px solid #a7a7a7; font-weight:300;}
+
+
+
+
 	/* my */
 	.container.my .wrap .content .cont_body {margin-bottom: 150px;}
 	.my .lnb_list::after {display: none;}
@@ -3650,52 +3808,42 @@ ul.maintabs li [class^='box_depth'] {display:none; position:absolute; left:100%;
 	.modal.coupon_popup .modal-footer {margin-top: 40px;}
 		
 	/* ev_공통 */
-	.container.ev .wrap .content .cont_body {margin-bottom: 150px;}
-	.container.ev .cont_head > div {position: relative;}
-	.container.ev .cont_head > div .share_btn {position: absolute; top: 0; right: 70px; }
-	.container.ev .cont_head > div h3 {text-align: center; margin-bottom: 0; padding-bottom: 60px; font-size: 40px; line-height: 1;}
-	.inner {width: 1200px; margin:0 auto;}
-
-	/* ev_list */
-	.ev .ev_mem_rank {position: relative; background: #f5f5f5; padding: 60px 100px; margin-bottom: 100px;}
-	.ev .ev_mem_rank .txt {display: inline-block;}
-	.ev .ev_mem_rank .txt strong {display: block; font-size: 20px; font-weight: 600;}
-	.ev .ev_mem_rank .txt p {font-size: 32px; line-height: 1.3; color: #666; margin: 20px 0 30px; letter-spacing: -0.025em;}
-	.ev .ev_mem_rank .txt .btn {display: inline-block; padding: 14px 24px; letter-spacing: -0.025em;}
-	.ev .ev_mem_rank .mem_rank_list {position: absolute; top: 50%; right: 160px; transform:translateY(-50%);}
-	.ev .ev_mem_rank .mem_rank_list ul li {float:left; text-align: center; margin-right: 40px;}
-	.ev .ev_mem_rank .mem_rank_list ul li:last-child {margin-right: 0;}
+	.ev {padding-bottom:160px;}
+	.ev div::after,
+	.ev dl::after,
+	.ev ul::after {content:''; clear:both; display:block;}
+	.ev .inner {width: 1200px; margin:0 auto;} /* 주의 */
 	.ev .icon {position: relative; width: 80px; height: 80px; border-radius: 50%; margin-bottom: 15px; color: #fff; border:2px solid transparent;} 
 	.ev .icon > span {position: absolute; top: 50%; left: 50%; transform:translate(-50%, -50%); font-size: 32px; font-weight: 600; color: #fff;}
-	.ev .icon + span {font-size: 16px; color: #666; font-weight: 500;}
+	.ev .icon + span {font-size: 16px; color: #666; font-weight:500;}
 	.ev .icon.vip {background: #fd4802;}
 	.ev .icon.gold {background: #222;}
 	.ev .icon.silver {background: #666;}
 	.ev .icon.bronze {background: #aaa;}
 	.ev .icon.welcome {background: #fff; border:2px solid #222;}
-	.ev .icon.welcome span {color: #222;}
-	.ev .event_list {}
-	.ev .event_list .event_top {position: relative; margin-bottom: 30px; height: 40px;}
-	.ev .event_list .event_top .count {font-size: 16px; font-weight: 200; color: #888; display: inline-block; margin-top: 20px;}
-	.ev .event_list .event_top .count span {color: #fd4802; font-weight: 300;}
-	.ev .event_list .event_top .event_btn {position: absolute; top: 0; right: 0;}
-	.ev .event_list .event_top .event_btn a {display: inline-block; background: url(/images/pc/ico_more_sm.png) no-repeat right 20px top 10px; padding: 9px 23px; padding-right: 36px; border:1px solid #a7a7a7; font-size: 14px; color: #222; font-weight: 300;}
-	.ev .event_list .list li {float:left; position: relative; width: 24.15%; margin: 0 1.12% 80px 0;}
-	.ev .event_list .list li:nth-child(4n) {margin: 0 0 80px 0;}
-	.ev .event_list .list li .rank {min-width:52px;}
-	.ev .event_list .list li .ev_img {margin-bottom: 27px; position: relative;}
-	.ev .event_list .list li .ev_img img {width: 100%; height: auto;}
-	.ev .event_list .list li .txt .tit {display: -webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; margin: 20px 0; min-height:66px; max-height:66px; overflow: hidden; text-overflow: ellipsis; font-size: 24px; line-height: 1.4; color: #222; font-weight: 300; word-break: keep-all;}
-	.ev .event_list .list .no_con {display: none;}
-	.ev .event_list.no_data .list .event_con {display: none;} 
-	.ev .event_list.no_data .list .no_con {display: block; padding:100px 0;}
-	.ev .event_list.no_data .list .no_con li {width: 100%; text-align: center; margin-right: 0;}
-	.ev .event_list.no_data .list .no_con li span {display: block; margin: 25px 0 40px; font-size: 16px; color: #666; font-weight: 300;}
-	.ev .event_list.no_data .list .no_con li a {display: inline-block; padding: 9px 23px; border:1px solid #a7a7a7; font-size: 14px; color: #222; font-weight: 300;}
+	.ev .icon.welcome span {color: #222;}	
+
+
+	.container.ev .cont_head > div {position: relative;}
+	.container.ev .cont_head > div .share_btn {position: absolute; top: 0; right: 70px; }
+	.container.ev .cont_head > div h3 {text-align: center; margin-bottom: 0; padding-bottom: 60px; font-size: 40px; line-height: 1;}
+
+
+	/* ev_list */
+	.ev_list .area_top_list_info .ui_right .btn {height:40px; padding:12px 20px; font-size:14px; font-weight:300; border:1px solid #a7a7a7;}
+	.ev_list .area_top_list_info .ui_right .btn span {display:inline-block; padding-right:17px; vertical-align:top; line-height:1; background:url('/images/pc/ico_more_sm.png') no-repeat 100% 50%;}
+	.ev_list .ev_mem_rank {position:relative; background:#f5f5f5; padding:60px 100px; margin-top:60px; margin-bottom:100px;}
+	.ev_list .ev_mem_rank .txt {display:inline-block;}
+	.ev_list .ev_mem_rank .txt strong {display:block; font-size: 20px; font-weight: 700;}
+	.ev_list .ev_mem_rank .txt p {font-size:30px; line-height:40px; color:#666; margin:15px 0 20px;}
+	.ev_list .ev_mem_rank .txt .btn {display:inline-block; font-size:14px; font-weight:300; padding:14px 25px;}
+	.ev_list .ev_mem_rank .mem_rank_list {position: absolute; top: 50%; right: 160px; transform:translateY(-50%);}
+	.ev_list .ev_mem_rank .mem_rank_list ul li {float:left; text-align: center; margin-right: 40px;}
+	.ev_list .ev_mem_rank .mem_rank_list ul li:last-child {margin-right:0;}
 
 	/* ev_rank */
-	.container.ev .wrap {max-width:100%; min-width:1200px; padding-right: 0; padding-left: 0;}
-	.container.ev .wrap .ev_list {padding:0 70px;}
+	/*.container.ev .wrap {max-width:100%; min-width:1200px; padding-right: 0; padding-left: 0;}
+	.container.ev .wrap .ev_list {padding:0 70px;}*/
 	.ev_rank .inner {position: relative;}
 	.ev_rank .my_rank_info {background: #fff6f2; padding:53px 0; min-height:260px; box-sizing: border-box; margin-bottom: 100px; }
 	.ev_rank .my_rank_info .desc p {font-size: 24px; line-height: 1.4; font-weight: 200; color: #666;}
@@ -3779,7 +3927,6 @@ ul.maintabs li [class^='box_depth'] {display:none; position:absolute; left:100%;
 	.container.ev .cont_head > .renew_check_tit {position: relative;}
 	.container.ev .cont_head > .renew_check_tit h3 {padding-bottom: 80px;}
 
-	.container .wrap .content.renew * {line-height: 1; letter-spacing: -0.025em; box-sizing:border-box;}
 	.ev .renew_check_tit .period {position: absolute; bottom: 40px; left: 50%; transform:translateX(-50%); color: #888;}
 	.ev .attend_banner {width: 100%; height: 779px; background: url(/images/pc/thumb/attend_banner.jpg) no-repeat center; margin-bottom: 120px;}
 
@@ -3806,7 +3953,7 @@ ul.maintabs li [class^='box_depth'] {display:none; position:absolute; left:100%;
 	.container .wrap .content.survey * {line-height: 1; letter-spacing: -0.025em; box-sizing:border-box;}
 	.ev .renew_banner {position: relative; width: 100%; height: 597px; background: url(/images/pc/thumb/renewal_banner.jpg) no-repeat center;}
 	.ev .renew_banner:after {content:''; position: absolute; bottom: -185px; left: 50%; width: 1580px; height: 1px; background: #ddd; transform: translateX(-50%);}
-	.ev .renew .btn_wrap {margin:60px 0 140px; text-align: center;}
+	.ev .renew .btn_wrap {margin:60px auto 140px; text-align: center;}
 	.ev .renew .btn_wrap a.btn {padding:22px 65px 22px 50px; font-size: 18px; color: #222; font-weight: 300; border:1px solid #a7a7a7; background: url(/images/pc/ico_more_lg.png) no-repeat right 41px top 23px;}
 
 	.container.ev .wrap .content.survey .cont_body {margin-bottom: 0;}

+ 165 - 200
src/main/webapp/ux/pc/css/main.css

@@ -46,28 +46,26 @@
     top: 5px;
     right: 0;
 }
-
-.main_visual .slide-curb-play {position: relative; display: none;width: 8px;height: 12px;font-size: 0;}
-.main_visual .slide-curb-play:after {content: ""; position: absolute; top: 0; left: 0;  border: 6px solid transparent; border-left: 9px solid #888;border-right: 0;}
+ 
+.main_visual .slide-curb-play {position: relative; display:none; width: 8px;height: 12px;font-size: 0; cursor:pointer;}
+.main_visual .slide-curb-play:after {content: ""; position: absolute;top: 0; left: 0;  border: 6px solid transparent; border-left: 9px solid #888;border-right: 0; cursor:pointer;}
 .main_visual .slide-curb-pause {width: 8px;height: 12px;font-size: 0;text-align: left;}
-.main_visual .slide-curb-pause:after,
+.main_visual .slide-curb-pause:after, 
 .main_visual .slide-curb-pause:before {content: "";display: inline-block;width: 2px;height: 12px;background: #888;}
 .main_visual .slide-curb-pause:before {float: right;}
 
 .main_visual .swiper-controls {}
 .main_visual .swiper-controls .swiper-pagination {position: static; width:auto;}
 
-/*
+/* 
 .slider-1[data-slider-1-autoplay-status="Y"] .btn-play {
     display:none;
 }
 .slider-1[data-slider-1-autoplay-status="N"] .btn-stop {
     display:none;
-}
+} 
 */
 
-/* br_header */
-#br_header .nav {margin-left: -38px;}
 
 /* main */
 .main {}
@@ -158,7 +156,7 @@
 	.main .post-visual .swiper-slide-prev {}
 	.main .post-visual .swiper-slide-active {}
 	.main .post-visual .swiper-slide::before {display: block;}
-	.main .post-visual .swiper-slide img {box-shadow: 0px 0px 30px rgba(0,0,0,0.2), 0px 0px 30px rgba(0,0,0,0.2);}
+	.main .post-visual .swiper-slide img {box-shadow: 0px 0px 30px rgba(0,0,0,0.2), 0px 0px 30px rgba(0,0,0,0.2);} 
 	/* .brand_main .post-visual .swiper-slide img::before{
 		content: '';
 		position: absolute;
@@ -168,7 +166,7 @@
 		right: -65px;
 		border: 0px;
 		transform: rotate(135deg);
-		/* box-shadow: inset 0 -50px 30px -30px rgba(0,0,0,0.20);
+		/* box-shadow: inset 0 -50px 30px -30px rgba(0,0,0,0.20); 
 		box-shadow: inset 0 -30px 20px -20px rgba(0,0,0,0.20);
 		box-shadow: inset 0px -60px 30px -50px rgba(0,0,0,0.20);
 		background: #fff;
@@ -208,8 +206,8 @@
 		background: #fff;
 		background: linear-gradient(0deg, #fff 120px, transparent 0);
 		z-index: 1;
-
-		/*
+		
+		/*	
 			border-right: 0px;
 			border-left: 0px;
 			border-top: 0px;
@@ -220,7 +218,7 @@
 			border-image: linear-gradient(-135deg, transparent 0%,rgb(0 0 0 / 23%) 100% );
 			border-image-slice: 160;
 		*/
-	}
+	}   
 
 	.main .post-visual .swiper-slide .vrt_txt {left: -50px;}
 }
@@ -294,7 +292,7 @@
     clip-path: polygon(100% 0, 100% calc( 100% - 10px), calc( 100% - 10px) 100%, 0 100%, 0 0);
 } 
  */
-.post-visual .txtWrap{position: absolute;padding-left: 50px;top: auto;bottom: 100px;left: 20px;right: auto;z-index: 1;}
+.post-visual .txtWrap{position: absolute;padding-left: 50px;top: auto;bottom: 100px;left: 20px;right: auto;z-index: 1;} 
 .post-visual .txtWrap dl.w,.txtWrap dl.w+button {color: #ffffff; font-weight :200;}
 .post-visual .txtWrap dl {color: #222; line-height: 1; padding-bottom: 40px;}
 .post-visual .txtWrap dt {font-size: 18px; padding-bottom: 30px;}
@@ -338,9 +336,6 @@
 .main_trendy .item_prod {width: auto;}
 .main_trendy .item_prod.inc {width: 354px;}
 .main_trendy .item_prod.shr {width: 284px;}
-.new_item .swiper-slide {position: relative; width: auto !important;}
-.new_item .item_prod.inc {width: 354px;}
-.new_item .item_prod.shr {width: 284px;}
 
 .main_trendy .swiper-wrapper{padding-bottom:0px; height: 700px !important;}
 .main_trendy .swiper-controls{padding-bottom:80px;}
@@ -485,7 +480,7 @@
 .main_deal .cont_head span{font-size: 16px;color: #ffffff; }
 .main_deal .cont_head a span::after{content: "〉";font-size: 12px;padding-left: 8px;}				
 .main_deal .cont_body{width: calc(100% - 517px); float: left;background: #f5f5f5;padding-top: 80px;}
-.main_deal .cont_body .swiper-container{margin:0 100px;}
+.main_deal .cont_body .swiper-container{margin:0 100px;}				
 .post-deal .swiper-slide {width: 320px !important;}
 .post-deal .swiper-slide li{position: relative;margin: 15px 0;background-color: rgb(255 255 255);}
 .post-deal .item_prod {width: 312px;}
@@ -514,7 +509,7 @@
 	background-size:cover;
 }
 
-.main_pick .cont_body .post-pick-nav .swiper-slide{
+.main_pick .cont_body .post-pick-nav .swiper-slide{ 
 	height: auto;
 	text-align: center;
 	cursor: pointer;
@@ -579,7 +574,7 @@
 .tag_list {display:block;margin:0px auto;width:100%;text-align:center;}
 .tag_list button {transition: all 1ms ease;}
 .tag_list button.active {
-/*
+/* 
 	border-left: 1px solid #0183fd;border-bottom: 1px solid #0183fd;
 border-right: 1px solid #0183fd;border-top: 1px solid #0183fd;
 background-color: #0183fd; color: #ffffff;
@@ -604,9 +599,9 @@ z-index: 9;
 transition: all 200ms cubic-bezier(0.42, -0.04, 1, 1);
 }
 .tag_list button.active:after{
-/*
+/* 
 	content: "";bottom: -1px;right: -1px;position: absolute;height: 0px;width: 0;padding: 0px 0px 0px 0px;
-border-left: 0px solid #0183fd;border-top: 10px solid #0183fd;border-right: 10px solid #ffffff;
+border-left: 0px solid #0183fd;border-top: 10px solid #0183fd;border-right: 10px solid #ffffff;	
 transition: all 10ms ease;
  */
  content: "";
@@ -622,7 +617,7 @@ transition: all 10ms ease;
  border-right: 10px solid #ffffff;
  transition: all 200ms cubic-bezier(0.42, -0.04, 1, 1);
 
-}
+}	
 
 .main_recomm {padding: 120px 0;}
 .main_recomm {/*width: 1640px;height: 650px;*/margin: 0px auto;}
@@ -648,7 +643,7 @@ transition: all 10ms ease;
 }
 .btn_shape.active:after{
 	content: "";bottom: 0px;right: 0px;position: absolute;height: 0px;width: 0;padding: 0px 0px 0px 0px;background: #222222;
-	border-left: 0px solid #ffffff;border-top: 10px solid #222222;border-right: 10px solid #f5f5f5;
+	border-left: 0px solid #ffffff;border-top: 10px solid #222222;border-right: 10px solid #f5f5f5;	
 }
 /* 각버튼 테스트2 종료 */
 
@@ -664,7 +659,7 @@ transition: all 10ms ease;
 .main_foryou .cont_body{width: 66.66666667% !important; float: left;}
 .main_foryou .fy_nav { width: 364px;position: absolute;left: 135px;top: 230px;height: auto;padding-bottom: 100px;}
 .main_foryou .fy_nav .swiper-slide{ opacity: 0.45;}
-.main_foryou .fy_nav .swiper-slide.swiper-slide-active{ opacity: 1;}
+.main_foryou .fy_nav .swiper-slide.swiper-slide-active{ opacity: 1;} 
 .main_foryou .fy_nav .btn_shape{ width: 100%;line-height: 1;padding: 17px 26px;}
 .main_foryou .fy_nav .btn_shape div{text-align: left;width: 100%;}
 .main_foryou .fy_nav .btn_shape div span{color: #888888;font-size: 20px;}
@@ -741,33 +736,157 @@ transition: all 10ms ease;
 .main_tv .swiper-pagination {bottom: -50px;}
 
 /* brand_main */
-.container.brand_main .wrap .content.main_1stage {margin-top: 120px;}
 .container.brand_main .wrap {position:relative; width:100%; min-width:auto; max-width:auto; padding-left:0px; padding-right:0px;}
 
-.br_header .nav {margin-left: -38px;}
-.br_header .ico_logo:before {background-image: url('/images/pc/thumb/br_tbj_logo.png');}
-.br_header .search .search_input {display: none;}
-.br_header .search > .area {width: auto; border-bottom: 0;}
-.br_header .search {margin-top: 0;}
-#header.minify .bundle {margin-top: 5px;}
-
-.brand_main .wrap .content.wide:first-child{/*background:#222222;*/ padding: 0px !important;}
+.brand_main .wrap .content.wide:first-child{/*background:#222222;*/ padding-top:0px !important;}
 .brand_main .dpnone {display: none;}
 
-.brand_main .post-visual {height: 675px;}
-.brand_main .post-visual .swiper-button-next, .brand_main .post-visual .swiper-button-prev {bottom: auto; top: 50%;}
+.brand_main .itemsGrp {margin:0px -10px 0px;}
+
+.brand_main .swiper-button-next,
+.brand_main .swiper-button-prev {top:50%; transform:translateY(-50%); width:auto; height:auto; margin:0; padding:0; color:transparent;}
+.brand_main .swiper-button-next {right:70px;}
+.brand_main .swiper-button-prev {left:70px;}
+.brand_main .swiper-button-next::after, 
+.brand_main .swiper-button-prev::after {display:inline-block; width:26px; height:50px; background-image:url(/images/pc/ico_arr_lg.png); background-repeat:no-repeat;}
+.brand_main .swiper-button-next::after {background-position:100% 50%;}
+.brand_main .swiper-button-prev::after {background-position:0% 50%;}
+.brand_main .swiper-pagination {position:relative; bottom:0; margin:60px 0 0; height:auto;}
+
+.brand_main .swiper-slide .item_prod {width:100%;}
+.brand_main .swiper-slide .item_prod .item_state {padding:0;}
+.brand_main .swiper-slide .item_prod .item_state a.itemLink {}
+
+.brand_main .post-visual {height: 675px; margin-left:0; padding-right:200px;}
+.brand_main .post-visual .swiper-button-next, 
+.brand_main .post-visual .swiper-button-prev {bottom: auto; top: 50%;}
 .brand_main .post-visual .swiper-button-prev {left:70px !important;}
 .brand_main .post-visual .swiper-button-next {right:70px !important;}
-.brand_main .post-visual .swiper-slide {width:1530px !important; min-width:1460px !important; padding-left: 0; height: 675px; -webkit-mask-size: 86.6072% 0%, 9.3928% 21.4285%, 90.6072% 100%, 100% 78.5715%;}
+.brand_main .post-visual .swiper-slide {position:relative; max-width:1530px; padding-left: 0; mask-size: 86.6072% 0%, 9.3928% 21.4285%, 90.6072% 100%, 100% 78.5715%; -webkit-mask-size: 86.6072% 0%, 9.3928% 21.4285%, 90.6072% 100%, 100% 78.5715%;}
 .brand_main .post-visual .swiper-slide img {width:1080px; margin:0; float:left}
-.brand_main .post-visual .swiper-slide .txtWrap {opacity: 0;}
+.brand_main .post-visual .swiper-slide .txtWrap {opacity: 0; position: absolute; padding-left:0px; top: 110px; bottom: auto; left: 0px; right: auto; z-index: 1;}
 .brand_main .post-visual .txtWrap dt {font-size: 0; padding-bottom: 0;}
-.brand_main .post-visual .swiper-slide-active {box-sizing:initial;}
-.brand_main .post-visual .swiper-slide-active .txtWrap {opacity: 1; position: absolute; padding-left:0px; top: 110px; bottom: auto; left:0px; right: auto;z-index: 1;}
+.brand_main .post-visual .swiper-slide-active {box-sizing:initial; opacity:1;}
+.brand_main .post-visual .swiper-slide-active .txtWrap {opacity:1;}
 .brand_main .post-visual .swiper-slide-active img {float:right}
+.brand_main .post-visual .swiper-slide-prev {opacity:0; /*-webkit-transition:all .3s ease-in-out; transition:all .3s ease-in-out;*/}
+.brand_main .post-visual .swiper-slide-next {opacity:1;}
+.brand_main .post-visual .swiper-controls {position:absolute; width:auto; bottom:100px; left:0; padding-right:15px; z-index:10;}
+.brand_main .post-visual .swiper-controls .swiper-pagination {margin-top:0}
+
+.container .wrap .content.wide.brand_visual {max-width:1920px; margin:auto; padding-left:200px}
+
+.brand_main .content.brand_info {margin: 80px auto 0; padding:0 70px;}
+.brand_main .brand_info .cont_body {padding:80px 6.7%; background: #f5f5f5;}
+.brand_main .brand_info .cont_body .brand_tit, .brand_main .brand_info .cont_body .brand_desc {float:left;}
+.brand_main .brand_info .cont_body .brand_tit {width:20%; margin-right:2%;}
+.brand_main .brand_info .cont_body .brand_desc {width:78%}
+.brand_main .brand_info .cont_body .brand_tit p {margin-bottom: 30px; font-size: 30px; font-weight: 500;}
+.brand_main .brand_info .cont_body .brand_tit a {background: url(/images/pc/ico_ic_btn.png) no-repeat right center; padding-right: 20px; font-size: 16px; color: #666;}
+.brand_main .brand_info .cont_body .brand_desc .cate {margin-bottom:25px; font-size:20px; font-weight:500;}
+.brand_main .brand_info .cont_body .brand_desc .desc {font-size:16px; font-weight:200; line-height:26px;}
+
+.brand_main .new_item {background: #fff; padding: 0px 48px; margin: 100px 0px;}
+.brand_main .new_item .cont_head {padding: 120px 0 60px 0;}
+.brand_main .new_item .cont_body {position: relative; padding:0 140px;}
+.brand_main .new_item .swiper-container {height:730px; padding-bottom:70px;}
+.brand_main .new_item .swiper-pagination {position:absolute; bottom:0;}
+.brand_main .new_item .swiper-slide {width:calc((100% - 88px)/5 * 0.92); transition:all 200ms ease;}
+.brand_main .new_item .swiper-slide.scaleBig {width:calc((100% - 88px)/5 * 1.12)}
+
+.brand_main .best_item .cont_head {padding-top: 120px;}
+.brand_main .best_item .cont_body {padding:0 140px;}
+
+.brand_main .md_item .cont_body {padding:0 140px;}
+.brand_main .md_item .cont_head {padding-top: 120px;}
+
+.brand_main .special_shop .cont_head {padding: 120px 0 60px;}
+.brand_main .special_shop .cont_body {position:relative; background:#222;}
+.brand_main .special_shop .spe_thumb {float:left; position: relative; width:38%;}
+.brand_main .special_shop .spe_thumb img {width: 100%; height: auto;}
+.brand_main .special_shop .spe_thumb .swiper-container {height: 100%;}
+.brand_main .special_shop .spe_thumb .swiper-container .swiper-slide {position:relative;}
+.brand_main .special_shop .spe_thumb .swiper-container .swiper-slide a {position:relative; display:block;}
+.brand_main .special_shop .spe_thumb .swiper-container .swiper-slide a:after {content:''; position: absolute; left: 0; bottom: 0; width: 100%; height: 342px; background: linear-gradient(0deg, rgba(0,0,0,1) 0%, transparent 100%); z-index: 8;}
+.brand_main .special_shop .spe_thumb .swiper-container .swiper-slide .txtWrap {position: absolute; top:50%; left:50%; transform:translate(-50%, -50%); text-align: center; z-index: 11;}
+.brand_main .special_shop .spe_thumb .swiper-container .swiper-slide .txtWrap p {font-size: 40px; line-height:1.2; color:#fff; font-weight:500;}
+.brand_main .special_shop .spe_thumb .swiper-container .swiper-slide .txtWrap span {display: inline-block; margin-top: 25px; color:#fff; font-size: 18px; font-weight: 300;}
+.brand_main .special_shop .spe_pr_list {position:absolute; left:38%; top:50%; width:62%; transform:translateY(-50%); padding-left:100px;}
+.brand_main .special_shop .spe_pr_list .swiper-slide {width:28%;}
+.brand_main .special_shop .spe_pr_list .swiper-slide img {opacity:0.5;}
+.brand_main .special_shop .spe_pr_list .swiper-slide.view img {opacity:1;}
+.brand_main .special_shop .spe_pr_list .swiper-slide:last-child {opacity: 1;}
+.brand_main .special_shop .spe_pr_list .swiper-slide .itemLink > * {color: #fff;}
+.brand_main .special_shop .spe_pr_list .slide_wrap .spe_sl {position:relative; padding:0 0 50px 0}
+.brand_main .special_shop .swiper-scrollbar {position:absolute; left:0; right:12%; bottom:0; margin:0; background: rgba(255,255,255,0.2) !important; height: 2px;}
+.brand_main .special_shop .swiper-scrollbar-drag {background: rgba(255,255,255,0.6) !important;}
+.brand_main .special_shop .swiper-button-next::after,
+.brand_main .special_shop .swiper-button-prev::after {content: ''; background-image:url(/images/pc/ico_arr_lg02.png); opacity:0.6;}
+
+.brand_main .br_lookbook {padding-bottom:50px;}
+.brand_main .br_lookbook .cont_head {padding-top: 120px;}
+.brand_main .br_lookbook .swiper-slide {width: auto; height: 660px;}
+.brand_main .br_lookbook .swiper-slide img {width: 100%; height:auto;}
+.brand_main .br_lookbook .bt_lb_item {}
+.brand_main .br_lookbook .swiper-container {padding-top:60px;}
+.brand_main .br_lookbook .swiper-slide .bt_lb_item:after {content:''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,.3);}
+.brand_main .br_lookbook .swiper-slide-active .bt_lb_item {position: relative; height: 618px; margin-top: -60px; transition: all 200ms ease;}
+.brand_main .br_lookbook .swiper-slide-active .bt_lb_item:after {display:none;}
+.brand_main .br_lookbook .swiper-slide-active .bt_lb_item .item_picker {position:absolute; transform:translate(-50%,-50%);}
+.brand_main .br_lookbook .swiper-slide-active .bt_lb_item .item_picker .pick_descr {display:none; position:absolute; background:#fff; z-index:2;}
+.brand_main .br_lookbook .swiper-button-next::after,
+.brand_main .br_lookbook .swiper-button-prev::after {content: ''; filter:invert(100%);}
+.brand_main .br_lookbook .swiper-pagination {margin-top:40px}
+
+.brand_main .brand_product {margin-bottom:120px;}
+.brand_main .brand_product .cont_head {padding: 120px 0 60px;}
+.brand_main .brand_product .cont_body {padding:0 70px;}
+.brand_main .brand_product .btn_wrap {margin:0 auto 120px; text-align:center;}
+.brand_main .brand_product .btn_wrap .btn {border:1px solid #a7a7a7; padding:15px 40px;}
+.brand_main .brand_product .btn_wrap .btn span {font-weight:300;}
+.brand_main .brand_product .btn_wrap .btn span:after {content:''; display: inline-block; margin-left:20px; width:7px; height:13px; background: url(/images/pc/ico_more_lg.png) no-repeat right center;}
+
+.container.brand_main .wrap .content.wide.main_1stage {margin-top:120px; }
+.brand_main .main_1stage {}
+.brand_main .main_1stage .txtWrap {z-index:1;}
+.brand_main .main_1stage img {position: relative; z-index:2;}
+
+.brand_main .main_tv  {overflow: hidden;}
+.brand_main .main_tv .cont_head p {color: #222;}
+.brand_main .main_tv .cont_body::before {background: #f5f5f5;}
+.brand_main .main_tv .slide_wrap {position: relative;}
+.brand_main .post-tv .swiper-slide {width: 1100px;}
+.brand_main .post-tv .swiper-slide .movbox {height:516px; background: #222;}
+.brand_main .post-tv .swiper-slide .movbox:after {content:''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(34,34,34,.8);}
+.brand_main .post-tv .swiper-slide-active {}
+.brand_main .post-tv .swiper-slide-active .movbox {height: 618px;}
+.brand_main .post-tv .swiper-slide-active .movbox:after {display:none;}
+.brand_main .post-tv .swiper-button-next {right: 70px;}
+.brand_main .post-tv .swiper-button-prev {left: 70px;}
+.brand_main .post-tv .swiper-button-next, 
+.brand_main .post-tv .swiper-button-prev {top:50%; transform:translateY(-50%); width:auto; height:auto;}
+.brand_main .main_tv .swiper-pagination {margin-top:40px;}
 
-.brand_main .swiper-container-horizontal>.swiper-pagination-bullets {position: absolute; width: auto; bottom: 100px; left: 50%; margin-left: -770px;}
 
+/* 브랜드메인_룩북_팝업 */
+.modal.br_lookbook_popup {max-width:585px; min-height:390px; padding:0;}
+.modal.br_lookbook_popup .item_prod {width:100%;}
+.modal.br_lookbook_popup .modal-header {margin:0;}
+.modal.br_lookbook_popup .itemsGrp {margin-bottom:0;}
+.modal.br_lookbook_popup .itemsGrp .item_prod {width: 100%; overflow: hidden;}
+.modal.br_lookbook_popup .itemsGrp .item_prod .item_state {display: table; padding-left: 310px; padding-right: 55px; padding-bottom: 0; width: 100%; min-height:390px;}
+.modal.br_lookbook_popup .itemsGrp .item_prod .itemLink {display: table-cell; position: static; vertical-align: middle;}
+.modal.br_lookbook_popup .itemsGrp .item_prod .itemPic {position: absolute; top: 0; left: 0; margin-bottom: 0; width: 260px; height:390px; padding:0; background: #f5f5f5;}
+.modal.br_lookbook_popup .itemsGrp .item_prod.sold_out .itemPic:before {content:'SOLD OUT'; position: absolute; top: 50%; left: 50%; font-size: 20px; color:#fff; background: rgba(0,0,0,.5); width: 100%; height: 100%; transform:translate(-50%, -50%); line-height: 420px; z-index: 99; text-align: center;}
+.modal.br_lookbook_popup .itemsGrp .item_prod .itemBrand {margin:0px 0px 15px; font-size: 14px; font-weight: 300;}
+.modal.br_lookbook_popup .itemsGrp .item_prod .itemName {margin:0px 0px 25px; font-size: 18px; font-weight: 300; line-height: 28px; height:56px;}
+.modal.br_lookbook_popup .itemsGrp .item_prod .itemPrice {font-size: 26px; line-height: 1; font-weight: 500; margin:0;}
+.modal.br_lookbook_popup .itemsGrp .item_prod .itemPrice_original {display: inline-block; margin-left:0; margin-bottom:10px; font-size: 20px; font-weight: 200;}
+.modal.br_lookbook_popup .itemsGrp .item_prod .itemPercent {font-size: 26px; line-height: 0.8;}
+.modal.br_lookbook_popup .itemsGrp .item_prod .itemLink .btn {margin-top:40px; border:1px solid #a7a7a7; font-weight:300;}
+
+
+/* brand_main : ie */
 @media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
 	.brand_main .post-visual .swiper-slide {
 		margin: 0;
@@ -777,7 +896,7 @@ transition: all 10ms ease;
 	.brand_main .post-visual .swiper-slide:before {display: none;}
 	.brand_main .post-visual .swiper-slide-active {z-index: 8;}
 	.brand_main .post-visual .swiper-slide-active:before {display: block;}
-	.brand_main .post-visual .swiper-slide img {box-shadow: 0px 0px 30px rgba(0,0,0,0.2), 0px 0px 30px rgba(0,0,0,0.2);}
+	.brand_main .post-visual .swiper-slide img {box-shadow: 0px 0px 30px rgba(0,0,0,0.2), 0px 0px 30px rgba(0,0,0,0.2);} 
 	/* .brand_main .post-visual .swiper-slide img::before{
 		content: '';
 		position: absolute;
@@ -787,7 +906,7 @@ transition: all 10ms ease;
 		right: -65px;
 		border: 0px;
 		transform: rotate(135deg);
-		/* box-shadow: inset 0 -50px 30px -30px rgba(0,0,0,0.20);
+		/* box-shadow: inset 0 -50px 30px -30px rgba(0,0,0,0.20); 
 		box-shadow: inset 0 -30px 20px -20px rgba(0,0,0,0.20);
 		box-shadow: inset 0px -60px 30px -50px rgba(0,0,0,0.20);
 		background: #fff;
@@ -827,8 +946,8 @@ transition: all 10ms ease;
 		background: #fff;
 		background: linear-gradient(0deg, #fff 104px, transparent 0);
 		z-index: 1;
-
-		/*
+		
+		/*	
 			border-right: 0px;
 			border-left: 0px;
 			border-top: 0px;
@@ -839,161 +958,7 @@ transition: all 10ms ease;
 			border-image: linear-gradient(-135deg, transparent 0%,rgb(0 0 0 / 23%) 100% );
 			border-image-slice: 160;
 		*/
-	}
+	}   
 	.main .post-visual .swiper-button-prev {margin-right: 600px;}
 	.main .post-visual .swiper-button-next {margin-left: 595px;}
 }
-
-.brand_main .itemName {min-height:30px;}
-.brand_main .swiper-button-next, .brand_main .swiper-button-prev {width:27px; height:50px; margin-top:0; transform:translateY(-50%);}
-.brand_main .swiper-pagination {margin: 0; height:auto;}
-
-.brand_main .content.brand_info {margin: 80px auto 0; padding:0 70px;}
-
-.brand_main .brand_info .cont_body {padding:80px 120px; background: #f5f5f5;}
-.brand_main .brand_info .cont_body .brand_tit, .brand_main .brand_info .cont_body .brand_desc {float:left;}
-.brand_main .brand_info .cont_body .brand_tit {width: 380px;}
-.brand_main .brand_info .cont_body .brand_tit p {margin-bottom: 30px; font-size: 30px; font-weight: 500;}
-.brand_main .brand_info .cont_body .brand_tit a {background: url(/images/pc/ico_ic_btn.png) no-repeat right center; padding-right: 20px; font-size: 16px; color: #666;}
-.brand_main .brand_info .cont_body .brand_desc .cate {margin-bottom: 25px; font-size: 20px; font-weight: 500;}
-.brand_main .brand_info .cont_body .brand_desc .desc {font-size: 16px; font-weight: 200; line-height: 1.6;}
-
-.brand_main .new_item {background: #fff; padding: 0px 48px; margin: 100px 0px;}
-.brand_main .new_item .cont_head {padding: 120px 0 60px 0;}
-.brand_main .new_item .cont_body {position: relative; padding:0 140px;}
-.brand_main .new_item .swiper-pagination-progressbar {margin: 0;}
-.brand_main .new_item .item_state {padding:0 0 60px;}
-.brand_main .new_item .swiper-slide {margin: 0;}
-.brand_main .new_item .swiper-scrollbar {background: #ddd;}
-.brand_main .new_item .swiper-scrollbar-drag {background: #222;}
-.brand_main .new_item .swiper-container-horizontal>.swiper-scrollbar {width: 100%; top: auto; left: 0; bottom: 0; height: 2px;}
-.brand_main .new_item .swiper-button-next, .brand_main .new_item .swiper-button-prev {top: 188px; margin-top: 0; height: 50px;}
-.brand_main .new_item .swiper-button-next {right:70px;}
-.brand_main .new_item .swiper-button-next::after {content: ''; display: inline-block;width: 29px; height: 87px; background: url(/images/pc/ico_arr_lg.png) 100% 50% no-repeat;}
-.brand_main .new_item .swiper-button-prev {left:70px;}
-.brand_main .new_item .swiper-button-prev::after {content: ''; display: inline-block;width: 29px; height: 87px; background: url(/images/pc/ico_arr_lg.png) 0% 50% no-repeat;}
-
-.brand_main .best_item .cont_head {padding-top: 120px;}
-.brand_main .best_item .cont_body {padding:0 140px;}
-.brand_main .best_item .item_prod {width: 100%;}
-.brand_main .best_item .item_state {padding: 0 0 60px;}
-.brand_main .best_item .swiper-button-next {right:70px;}
-.brand_main .best_item .swiper-button-next::after {content: ''; display: inline-block;width: 29px; height: 87px; background: url(/images/pc/ico_arr_lg.png) 100% 50% no-repeat;}
-.brand_main .best_item .swiper-button-prev {left:70px;}
-.brand_main .best_item .swiper-button-prev::after {content: ''; display: inline-block;width: 29px; height: 87px; background: url(/images/pc/ico_arr_lg.png) 0% 50% no-repeat;}
-
-.brand_main .md_item .cont_body {padding:0 140px;}
-.brand_main .md_item .cont_head {padding-top: 120px;}
-.brand_main .md_item .item_prod {width: 100%;}
-.brand_main .md_item .item_state {padding: 0 0 60px;}
-.brand_main .md_item .swiper-button-next {right:70px;}
-.brand_main .md_item .swiper-button-next::after {content: ''; display: inline-block;width: 29px; height: 87px; background: url(/images/pc/ico_arr_lg.png) 100% 50% no-repeat;}
-.brand_main .md_item .swiper-button-prev {left:70px;}
-.brand_main .md_item .swiper-button-prev::after {content: ''; display: inline-block;width: 29px; height: 87px; background: url(/images/pc/ico_arr_lg.png) 0% 50% no-repeat;}
-
-.brand_main .special_shop .cont_head {padding: 120px 0 60px;}
-.brand_main .special_shop .cont_body {background: #222;}
-.brand_main .special_shop .spe_thumb {float:left; position: relative; width: 38%; }
-.brand_main .special_shop .spe_thumb img {width: 100%; height: auto;}
-.brand_main .special_shop .spe_thumb .swiper-container {height: 100%;}
-.brand_main .special_shop .spe_thumb .swiper-container .swiper-slide {position:relative;}
-.brand_main .special_shop .spe_thumb .swiper-container .swiper-slide:after {content:''; position: absolute; left: 0; bottom: 0; width: 100%; height: 342px; background: linear-gradient(0deg, rgba(0,0,0,1) 0%, transparent 100%); z-index: 8;}
-.brand_main .special_shop .spe_thumb .swiper-container .swiper-slide .txtWrap {position: absolute; top:50%; left:50%; transform:translate(-50%, -50%); text-align: center; z-index: 11;}
-.brand_main .special_shop .spe_thumb .swiper-container .swiper-slide .txtWrap p {font-size: 40px; line-height:1.2; color:#fff; font-weight:500;}
-.brand_main .special_shop .spe_thumb .swiper-container .swiper-slide .txtWrap span {display: inline-block; margin-top: 25px; color:#fff; font-size: 18px; font-weight: 300;}
-.brand_main .special_shop .spe_pr_list {float:left; width: 62%; position: relative;}
-.brand_main .special_shop .spe_pr_list .swiper-slide {width: 28%; opacity: 0.5;}
-.brand_main .special_shop .spe_pr_list .swiper-slide.swiper-slide-active, .special_shop .spe_pr_list .swiper-slide.swiper-slide-next {opacity: 1;}
-.brand_main .special_shop .spe_pr_list .swiper-slide.swiper-slide-next + .swiper-slide {opacity: 1;}
-.brand_main .special_shop .spe_pr_list .swiper-slide:last-child {opacity: 1;}
-.brand_main .special_shop .spe_pr_list .swiper-slide .itemLink > * {color: #fff;}
-.brand_main .special_shop .spe_pr_list .itemPic {padding-top: 150%;}
-.brand_main .special_shop .spe_pr_list .item_prod {width: 100%;}
-.brand_main .special_shop .spe_pr_list .item_state {padding: 0 0 60px;}
-.brand_main .special_shop .spe_pr_list .slide_wrap {position: relative; padding:5% 0 4% 100px;}
-.brand_main .special_shop .swiper-scrollbar {margin: 0; background: rgba(255,255,255,0.2) !important; height: 2px;}
-.brand_main .special_shop .swiper-scrollbar-drag {background: rgba(255,255,255,0.6) !important;}
-.brand_main .special_shop .swiper-button-next {right:70px; z-index:9;}
-.brand_main .special_shop .swiper-button-next::after {content: ''; display: inline-block;width: 25px; height: 87px; background: url(/images/pc/ico_arr_lg02.png) 100% 50% no-repeat; opacity:0.6;}
-.brand_main .special_shop .swiper-button-prev {left:70px; z-index:9;}
-.brand_main .special_shop .swiper-button-prev::after {content: ''; display: inline-block;width: 25px; height: 87px; background: url(/images/pc/ico_arr_lg02.png) 0% 50% no-repeat; opacity:0.6;}
-
-.brand_main .br_lookbook {padding-bottom:50px;}
-.brand_main .br_lookbook .cont_head {padding-top: 120px;}
-.brand_main .br_lookbook .item_prod {width: 100%;}
-.brand_main .br_lookbook .item_state {padding: 0 0 60px;}
-.brand_main .br_lookbook .swiper-slide {width: auto; height: 660px;}
-.brand_main .br_lookbook .swiper-slide img {width: 100%; height:auto;}
-.brand_main .br_lookbook .bt_lb_item {}
-.brand_main .br_lookbook .swiper-container {padding-top:60px;}
-.brand_main .br_lookbook .swiper-slide .bt_lb_item:after {content:''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,.3);}
-.brand_main .br_lookbook .swiper-slide-active .bt_lb_item {position: relative; height: 618px; margin-top: -60px; transition: all 200ms ease;}
-.brand_main .br_lookbook .swiper-slide-active .bt_lb_item:after {display:none;}
-.brand_main .br_lookbook .swiper-slide-active .bt_lb_item .item_picker {position: absolute;}
-.brand_main .br_lookbook .swiper-button-next {right:70px;}
-.brand_main .br_lookbook .swiper-button-next::after {content: ''; display: inline-block;width: 29px; height: 87px; background: url(/images/pc/ico_arr_lg.png) 100% 50% no-repeat; filter: invert(100%);}
-.brand_main .br_lookbook .swiper-button-prev {left:70px;}
-.brand_main .br_lookbook .swiper-button-prev::after {content: ''; display: inline-block;width: 29px; height: 87px; background: url(/images/pc/ico_arr_lg.png) 0% 50% no-repeat; filter: invert(100%);}
-
-
-.brand_main .brand_product {margin-bottom:120px;}
-.brand_main .brand_product .cont_head {padding: 120px 0 60px;}
-.brand_main .brand_product .cont_body {padding:0 70px;}
-.brand_main .brand_product .cont_body .itemsGrp {margin-bottom:0;}
-.brand_main .brand_product .cont_body .itemcolorchip {margin:15px 6px 0;}
-.brand_main .brand_product .cont_body .itemBadge .badge13 {margin:0 2px;}
-.brand_main .brand_product .btn_wrap {margin:0 auto 120px; text-align:center;}
-.brand_main .brand_product .btn_wrap .btn {border:1px solid #a7a7a7; padding:15px 40px;}
-.brand_main .brand_product .btn_wrap .btn span {font-weight:300;}
-.brand_main .brand_product .btn_wrap .btn span:after {content:''; display: inline-block; margin-left:20px; width:7px; height:13px; background: url(/images/pc/ico_more_lg.png) no-repeat right center;}
-
-.brand_main .post-bnnWide .swiper-button-next, .brand_main .post-bnnWide .swiper-button-prev {transform:translate(0, -50%); width:29px; height:87px;}
-.brand_main .post-bnnWide .swiper-button-next {text-align: right; right: 70px;}
-.brand_main .post-bnnWide .swiper-button-prev {left: 70px;}
-
-.brand_main .main_1stage {}
-.brand_main .main_1stage .txtWrap {z-index:1;}
-.brand_main .main_1stage .swiper-slide {}
-.brand_main .main_1stage .bnnbox {min-height:336px;}
-.brand_main .main_1stage img {position: relative; z-index:2;}
-
-.brand_main .main_tv  {overflow: hidden;}
-.brand_main .main_tv .cont_head p {color: #222;}
-.brand_main .main_tv .cont_body::before {background: #f5f5f5;}
-.brand_main .main_tv .slide_wrap {position: relative;}
-.brand_main .main_tv .swiper-pagination {height:auto; margin:0; bottom: -40px;}
-.brand_main .post-tv .swiper-slide {width: 1100px;}
-.brand_main .post-tv .swiper-slide .movbox {height: 516px;}
-.brand_main .post-tv .swiper-slide .movbox:after {content:''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(34,34,34,.8);}
-.brand_main .post-tv .swiper-slide-active {}
-.brand_main .post-tv .swiper-slide-active .movbox {height: 618px;}
-.brand_main .post-tv .swiper-slide-active .movbox:after {display:none;}
-.brand_main .post-tv .swiper-button-next {right: 70px;}
-.brand_main .post-tv .swiper-button-prev {left: 70px;}
-.brand_main .post-tv .swiper-button-next, .brand_main .post-tv .swiper-button-prev {transform:none; width:300px; height:700px;}
-
-/* 브랜드메인_룩북_팝업 */
-.br_lookbook_popup {max-width:585px; min-height:390px; padding:0;}
-.br_lookbook_popup .item_prod {width:100%;}
-.br_lookbook_popup .modal-header {margin:0;}
-/* 핫딜 전용 아이템 리스트 */
-.itemsGrp {margin-bottom:0;}
-.br_lookbook_popup .itemsGrp .item_prod {width: 100%; overflow: hidden;}
-.br_lookbook_popup .itemsGrp .item_prod:nth-child(2n) {margin-right: 0;}
-.br_lookbook_popup .itemsGrp .item_prod .itemBadge, .br_lookbook_popup .itemsGrp .item_prod .itemcolorchip {display: none;}
-.br_lookbook_popup .itemsGrp .item_prod .item_state {display: table; padding-left: 310px; padding-right: 58px; padding-bottom: 0; width: 100%; min-height:390px;}
-.br_lookbook_popup .itemsGrp .item_prod .itemLink {display: table-cell; position: static; vertical-align: middle;}
-.br_lookbook_popup .itemsGrp .item_prod .itemLike {z-index: 99;}
-.br_lookbook_popup .itemsGrp .item_prod .itemPic {position: absolute; top: 0; left: 0; margin-bottom: 0; width: 260px; padding-top: 67%;}
-.br_lookbook_popup .itemsGrp .item_prod .itemPic .shape {z-index: 89;}
-.br_lookbook_popup .itemsGrp .item_prod .itemPic::after {background: #f5f5f5; opacity:1; z-index: 87;}
-.br_lookbook_popup .itemsGrp .item_prod .itemPic .pd_img {z-index: 88;}
-.br_lookbook_popup .itemsGrp .item_prod.sold_out .itemPic:before {content:'SOLD OUT'; position: absolute; top: 50%; left: 50%; font-size: 20px; color:#fff; background: rgba(0,0,0,.5); width: 100%; height: 100%; transform:translate(-50%, -50%); line-height: 420px; z-index: 99; text-align: center;}
-.br_lookbook_popup .itemsGrp .item_prod .itemBrand {margin:0px 6px 20px; font-size: 14px; font-weight: 300;}
-.br_lookbook_popup .itemsGrp .item_prod .itemComment {position: absolute; left: 340px; top: 150px; font-size: 16px; font-weight: 300; margin:0;}
-.br_lookbook_popup .itemsGrp .item_prod .itemName {margin:0px 6px 30px; font-size: 18px; font-weight: 300; line-height: 1.6; max-height:53px;}
-.br_lookbook_popup .itemsGrp .item_prod .itemPrice {font-size: 26px; line-height: 1; font-weight: 500; margin-bottom:30px;}
-.br_lookbook_popup .itemsGrp .item_prod .itemPrice_original {display: inline-block; margin-bottom:15px; font-size: 20px; font-weight: 200;}
-.br_lookbook_popup .itemsGrp .item_prod .itemPercent {font-size: 26px; line-height: 0.8;}
-.br_lookbook_popup .itemsGrp .item_prod .itemLink .btn {border:1px solid #a7a7a7; font-weight:300;}
-