<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ko" lang="ko">
<head><script>(function(i, s, o, g, r) {
var a = s.createElement(o);
var m = s.getElementsByTagName(o)[0];
a.async = true;
a.src = g;
a.onload = function() {
if (i[r].init) {
i[r].init('https://js-error-tracer-api.cafe24.com', 'eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJ5ZW9uNTczMi5jYWZlMjQuY29tIiwiYXVkIjoianMtZXJyb3ItdHJhY2VyLWFwaS5jYWZlMjQuY29tIiwibWFsbF9pZCI6Inllb241NzMyIiwic2hvcF9ubyI6MSwicGF0aF9yb2xlIjoiTUFJTiIsImxhbmd1YWdlX2NvZGUiOiJrb19LUiIsImNvdW50cnlfY29kZSI6IktSIiwiaXNfeXRzIjpmYWxzZSwiaXNfY29udGFpbmVyIjpmYWxzZSwid29ya3NwYWNlIjoicHJvZHVjdGlvbiJ9.R7CulG62VWFbV2oE7aVihwJwrZ-PO8lIbWRIdRXrOt4', {"errors":{"path":"\/api\/v1\/store","collectWindowErrors":true,"preventDuplicateReports":true,"storageKeyPrefix":"EC_JET.MAIN","samplingEnabled":true,"samplingRate":0.5},"vitals":{"path":"\/api\/v1\/vitals","samplingEnabled":true,"samplingRate":0.3},"resources":{"path":"\/api\/v1\/resources","samplingEnabled":true,"samplingRate":0.5,"durationThreshold":3000}});
}
};
m.parentNode.insertBefore(a, m);
}(window, document, 'script', '//optimizer.poxo.com/jet/jet.js', 'EC_JET'));</script>
<script type="text/javascript">window.CAFE24 = window.CAFE24 || {};CAFE24.ROUTE = {"is_mobile":false,"is_need_route":false,"language_code":"ZZ","path":{"origin":"\/","result":"\/","prefix":""},"shop_no":0,"skin_code":"default","support_language_list":{"ar":"ar_EG","ar-EG":"ar_EG","de":"de_DE","de-DE":"de_DE","en":"en_US","en-IN":"en_IN","en-PH":"en_PH","en-US":"en_US","es":"es_ES","es-ES":"es_ES","hi":"hi_IN","hi-IN":"hi_IN","id":"id_ID","id-ID":"id_ID","it":"it_IT","it-IT":"it_IT","ja":"ja_JP","ja-JP":"ja_JP","ko":"ko_KR","ko-KR":"ko_KR","ms":"ms_MY","ms-MY":"ms_MY","pt":"pt_PT","pt-PT":"pt_PT","ru":"ru_RU","ru-RU":"ru_RU","th":"th_TH","th-TH":"th_TH","tr":"tr_TR","tr-TR":"tr_TR","vi":"vi_VN","vi-VN":"vi_VN","zh":"zh_CN","zh-CN":"zh_CN","zh-HK":"zh_HK","zh-MO":"zh_MO","zh-SG":"zh_SG","zh-TW":"zh_TW"}};</script><script type="text/javascript">if (typeof EC_ROUTE === "undefined") {
/**
* 프론트용 라우트 플러그인
* @type {{bInit: boolean, init: EC_ROUTE.init}}
* CAFE24.ROUTE 참조
*/
var EC_ROUTE = {
EC_DOMAIN_PATH_INFO: 'EC_DOMAIN_PATH_INFO',
bInit: false,
aFromList: [],
aToList: [],
aCleanFilter: null,
init: function () {
if (this.bInit || typeof CAFE24.ROUTE === 'undefined') {
return;
}
this.bInit = true;
this.aCleanFilter = [
/^shop[1-9][0-9]*$/,
/^(m|p)$/,
new RegExp('^(' + Object.keys(CAFE24.ROUTE.support_language_list).join('|') + ')$'),
/^skin-(base|skin[1-9][0-9]*|mobile[0-9]*)$/,
];
},
isNeedRoute: function ()
{
return CAFE24.ROUTE.is_need_route;
},
/**
*
* @param iShopNo
* @param bMobile
* @param sFrontLanguage
* @param sSkinCode
* @returns {*|string}
*/
getUrlDomain: function (iShopNo, bMobile, sFrontLanguage, sSkinCode)
{
var oRouteConfig = {};
if (typeof iShopNo == 'undefined') {
oRouteConfig.shop_no = CAFE24.SDE_SHOP_NUM;
} else {
oRouteConfig.shop_no = iShopNo;
}
if (typeof bMobile == 'undefined') {
oRouteConfig.is_mobile = false;
} else {
oRouteConfig.is_mobile = bMobile;
}
if (typeof sFrontLanguage == 'undefined') {
oRouteConfig.language_code = '';
}else {
oRouteConfig.language_code = sFrontLanguage; // 내부에서 로직으로 동작할땐 언어_지역 형태의 로케일 형태를 따른다.
}
if (typeof sSkinCode == 'undefined') {
oRouteConfig.skin_code = '';
}else {
oRouteConfig.skin_code = sSkinCode;
}
var sDomain = '';
if (oRouteConfig.shop_no != CAFE24.SDE_SHOP_NUM) {
// 접근된 다른 멀티샵 도메인 정보는 primary domain 를 조회해야함으로 ajax 를 통해 정보를 얻는다.
sDomain = this._getUrlDomainMultishop(oRouteConfig);
} else {
// 샵이 동일할 경우에는 접근된 domain 에 path 정보만 정리하여 반환함.
sDomain = this._getUrlDomain(oRouteConfig);
}
return sDomain;
},
_getUrlDomainMultishop: function (oRouteConfig)
{
var sDomain = '';
EC$.ajax({
type: 'GET',
url: '/exec/front/Shop/Domain',
data: {
'_shop_no' : oRouteConfig.shop_no,
'is_mobile' : oRouteConfig.is_mobile,
'language_code' : oRouteConfig.language_code,
'skin_code' : oRouteConfig.skin_code,
},
async: false,
dataType: 'json',
cache: true,
success: function(oResult) {
switch (oResult.code) {
case '0000' :
sDomain = oResult.data;
break;
default :
break;
}
return false;
}
});
return sDomain;
},
_getUrlDomain: function (oRouteConfig)
{
oRouteConfig.domain = this._getCreateHost(oRouteConfig);
return location.protocol + '//' + oRouteConfig.domain + this._getCreateUri(oRouteConfig);
},
_getCreateHost : function (oRouteConfig)
{
var sHost = location.host;
var aHost = sHost.split('.');
if (this.isBaseDomain(sHost)) {
if (aHost.length > 3) {
aHost[0] = '';
}
} else if (oRouteConfig.is_mobile) {
if (this.isMobileDomain()) {
oRouteConfig.is_mobile = false;
}
}
return aHost.filter(Boolean).join('.');
},
_getCreateUri: function (oRouteInfo)
{
var aUrl = [];
if (this.isBaseDomain() && oRouteInfo.shop_no > 1) {
aUrl.push('shop' + oRouteInfo.shop_no);
}
if (oRouteInfo.is_mobile) {
aUrl.push('m');
}
if (oRouteInfo.language_code != 'ZZ' && oRouteInfo.language_code != '') {
var iIndex = Object.values(CAFE24.ROUTE.support_language_list).indexOf(oRouteInfo.language_code);
if (iIndex !== -1) {
aUrl.push(Object.keys(CAFE24.ROUTE.support_language_list)[iIndex]);
}
}
if (this.isBaseDomain() && oRouteInfo.skin_code != 'default' && oRouteInfo.skin_code != '') {
aUrl.push('skin-' + oRouteInfo.skin_code);
}
var sUrl= '/';
if (aUrl.length > 0) {
sUrl= '/' + aUrl.join('/');
sUrl = this.rtrim(sUrl, '/');
}
return sUrl;
},
/**
* en, en-US => en_US
*/
convertValidLanguageCode: function (sUrlLanguageCode)
{
if (typeof CAFE24.ROUTE.support_language_list[sUrlLanguageCode] != 'undefined') {
return CAFE24.ROUTE.support_language_list[sUrlLanguageCode];
}
return false;
},
isMobileDomain: function (sHost)
{
if (typeof sHost == 'undefined') {
sHost = location.host;
}
var aMatched = sHost.match(/^(m|mobile|skin\-mobile|skin\-mobile[0-9]+[\-]{2}shop[0-9]+|skin\-mobile[0-9]+|mobile[\-]{2}shop[0-9]+)\./i);
return aMatched != null;
},
isBaseDomain: function (sHost)
{
if (typeof sHost == 'undefined') {
sHost = location.host;
}
return sHost.indexOf(CAFE24.GLOBAL_INFO.getRootDomain()) !== -1;
},
removePrefixUrl: function (sUrl)
{
if (this.isNeedRoute()) {
sUrl = sUrl.replace(this.getPrefixUrl('/'), '/'); // 자동으로 prefix 붙은 영역을 제거해준다.
}
return sUrl;
},
getPrefixUrl: function (sUrl)
{
if (this.isNeedRoute() === false) {
return sUrl;
}
if (sUrl.indexOf('/') !== 0) {
return sUrl;
}
if (sUrl.match(/^\/{2,}/) !== null) {
return sUrl;
}
var iCachedPosition = this.aFromList.indexOf(sUrl);
if (iCachedPosition > -1) {
return this.aToList[iCachedPosition];
}
var bTailSlash = (sCleanUrl !== '/' && sUrl.substr(-1) === '/');
var sCleanUrl = this.getCleanUrl(sUrl);
var aPrefixPart = CAFE24.ROUTE.path.prefix.split('/');
var aUrlPart = sCleanUrl.split('/');
var bMatched = true;
var sReturnUrl = sCleanUrl;
if (aUrlPart.length < aPrefixPart.length) {
bMatched = false;
} else {
for (var i = 0; i < aPrefixPart.length ; i++) {
if (aPrefixPart[i] != aUrlPart[i]) {
bMatched = false;
break;
}
}
}
if (bMatched === false) {
if (sCleanUrl == '/') {
sReturnUrl = CAFE24.ROUTE.path.prefix;
} else {
sReturnUrl = CAFE24.ROUTE.path.prefix + sCleanUrl;
}
sReturnUrl = bTailSlash ? sReturnUrl : this.rtrim(sReturnUrl, '/')
this.aFromList.push(sUrl);
this.aToList.push(sReturnUrl);
}
return sReturnUrl;
},
/**
* document.location.pathname 이 필요할 경우 사용한다.
* @returns {*}
*/
getPathName: function()
{
if (typeof CAFE24.ROUTE.path.result == 'undefined') {
return document.location.pathname;
}
return CAFE24.ROUTE.path.result;
},
rtrim: function (str, chr)
{
var rgxtrim = (!chr) ? new RegExp('\\s+$') : new RegExp(chr+'+$');
return str.replace(rgxtrim, '');
},
getShopNo: function ()
{
return CAFE24.ROUTE.shop_no;
},
getSkinCode: function ()
{
return CAFE24.ROUTE.skin_code;
},
getLanguageCode: function ()
{
return CAFE24.ROUTE.language_code;
},
getMobile: function ()
{
return CAFE24.ROUTE.is_mobile;
},
getIsMobile: function ()
{
return CAFE24.ROUTE.is_mobile || CAFE24.ROUTE.skin_code.match(/^mobile[0-9]*$/);
},
getCleanUrl: function (sUrl)
{
if (sUrl === '/') {
return sUrl;
}
var aUrl = sUrl.split('/');
aUrl.shift();
if (aUrl.length < 1) {
return sUrl;
}
// 현재 4 depth 까지 미리보기 기능이 구현되어있음
var iPos = 0;
var bFind = false;
for (var i = 0; i < aUrl.length ; i++) {
bFind = false;
for (var iSub = iPos, iSubCount = this.aCleanFilter.length; iSub < iSubCount ; iSub++) {
if (aUrl[i].match(this.aCleanFilter[iSub]) !== null) {
bFind = true;
iPos = iSub + 1;
aUrl.splice(i, 1);
i--; // aUrl 을 삭제해 주었으니 검색 조건을 -1 제거하여 초기화 한다. 다음 for i++ 로 증감 조회됨.
break;
}
}
if (bFind === false) {
break;
}
}
return '/' + aUrl.join('/');
},
getIsEasyUrl : function ()
{
return !window.location.pathname.match(/^[\w\/\-\.]+(php|html|htm)$/i);
}
};
EC_ROUTE.init();
}
</script>
<meta name="path_role" content="MAIN" />
<meta name="author" content="쏘앵" />
<meta name="description" content="박시핏루즈핏 쇼핑몰, 체형커버핏, 커플룩, 코트, 자켓, 맨투맨, 티셔츠, 스커트, 팬츠, 등 판매" />
<meta name="keywords" content="박시핏루즈핏 쇼핑몰, 체형커버핏, 커플룩, 코트, 자켓, 맨투맨, 티셔츠, 스커트, 팬츠, 등 판매" /><meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<link href="http://fonts.googleapis.com/earlyaccess/nanumgothic.css" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Roboto:400,500,700" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Lato" rel="stylesheet" type="text/css">
<meta property="og:type" content="website">
<meta property="og:title" content="쏘앵">
<meta property="og:url" content="http://www.ssoaeng.co.kr">
<meta property="og:description" content="박시핏루즈핏 쇼핑몰, 체형커버핏, 커플룩, 코트, 자켓, 맨투맨, 티셔츠, 스커트, 팬츠, 등 판매">
<link rel="canonical" href="http://www.ssoaeng.co.kr">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<!--PG크로스브라우징필수내용 시작-->
<meta http-equiv="Cache-Control" content="no-cache">
<meta http-equiv="Expires" content="0">
<meta http-equiv="Pragma" content="no-cache">
<!--PG크로스브라우징필수내용 끝-->
<!--해당 CSS는 쇼핑몰 전체 페이지에 영향을 줍니다. 삭제와 수정에 주의해주세요.-->
<!-- 스마트디자인에서는 JQuery 1.4.4 버전이 내장되어있습니다. 추가로 호출하면 충돌이 생길 수 있습니다. -->
<script type="text/javascript" src="/ec-js/common.js"></script><!-- 해당 JS는 플래시를 사용하기 위한 스크립트입니다. -->
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
<meta name="naver-site-verification" content="a41a1a033ac348e2488667d9fbf46e89258d6976" />
<meta name="google-site-verification" content="Iuo_pExjQtpZiajNSsDeOiL-FkJ5hOH6vdpuaCoQpVw" />
<meta name="msvalidate.01" content="9FCC140002FD0242619917FEE8746F37" />
<meta name="facebook-domain-verification" content="w859bosrlckgp1fhplaa1za22yq6om" />
<meta property="og:title" content="쏘앵" />
<meta property="og:description" content="박시핏루즈핏 쇼핑몰, 체형커버핏, 커플룩, 코트, 자켓, 맨투맨, 티셔츠, 스커트, 팬츠, 등 판매" />
<meta property="og:site_name" content="쏘앵" />
<meta property="og:type" content="website" />
<link rel="shortcut icon" href="/web/upload/favicon_20150216221033.ico" />
<script type="text/javascript" src="//wcs.naver.net/wcslog.js"></script>
<script type="text/javascript">var CAFE24API = { instance : [], MALL_ID : 'yeon5732', SHOP_NO : 1, init : function (appInfo) { if (typeof appInfo == 'object') { if (appInfo.hasOwnProperty('client_id')) { var appKey = appInfo.client_id; } } else { var appKey = appInfo; } if (appKey) { if (!this.instance[appKey]) { CAFE24API.clientId = appKey; if (appInfo.hasOwnProperty('version')) { CAFE24API.version = appInfo.version; } else { if (CAFE24API.hasOwnProperty('version')) { delete CAFE24API.version; } } var copyObject = CAFE24API.constructor(); for (var attr in CAFE24API) { if (CAFE24API.hasOwnProperty(attr)) { copyObject[attr] = CAFE24API[attr]; } } this.instance[appKey] = copyObject; } return this.instance[appKey]; } }, initializeXhr : function () { try { return new XMLHttpRequest(); } catch (error) { return new window.ActiveXObject('Microsoft.XMLHTTP'); } }, fullPath: function (url) { return 'https://yeon5732.cafe24api.com' + url; }, getLoginProvider: function (callback) { if (!CAFE24API.__chkValidSessionScope(callback, 'customer')) { return; } callback(null, {'login': CAPP_ASYNC_METHODS.AppCommon.getLoginProvider()}); }, getCustomerProvider: function (callback) { if (!CAFE24API.__chkValidSessionScope(callback, 'customer')) { return; } callback(null, {'login': CAPP_ASYNC_METHODS.AppCommon.getCustomerProvider()}); }, getMemberID: function (callback) { if (!CAPP_ASYNC_METHODS.IS_LOGIN) { callback(null); } else { callback(CAPP_ASYNC_METHODS.AppCommon.getMemberID()); } }, getEncryptedMemberId: function (client_id, callback) { if (!CAFE24API.__chkValidSessionScope(callback, 'customer')) { return; } callback(null, CAPP_ASYNC_METHODS.AppCommon.getEncryptedMemberId(client_id)); }, getMemberInfo: function (callback) { callback({'id': CAPP_ASYNC_METHODS.AppCommon.getMemberInfo()}); }, getCustomerIDInfo: function (callback) { if (!CAFE24API.__scopeErr(callback, 'application')) { return; } callback(null, {'id': CAPP_ASYNC_METHODS.AppCommon.getCustomerIDInfo()}); }, getCustomerInfo: function (callback) { if (!CAFE24API.__chkValidSessionScope(callback, 'customer')) { return; } callback(null, {'customer': CAPP_ASYNC_METHODS.AppCommon.getCustomerInfo()}); }, getMileageInfo: function (callback) { if (!CAFE24API.__chkValidSessionScope(callback, 'customer')) { return; } callback(null, {'mileage': CAPP_ASYNC_METHODS.AppCommon.getMileageInfo()}); }, getPointInfo: function (callback) { if (!CAFE24API.__chkValidSessionScope(callback, 'customer')) { return; } callback(null, {'point': CAPP_ASYNC_METHODS.AppCommon.getPointInfo()}); }, getDepositInfo: function (callback) { if (!CAFE24API.__chkValidSessionScope(callback, 'customer')) { return; } callback(null, {'deposit': CAPP_ASYNC_METHODS.AppCommon.getDepositInfo()}); }, getCreditInfo: function (callback) { if (!CAFE24API.__chkValidSessionScope(callback, 'customer')) { return; } callback(null, {'credit': CAPP_ASYNC_METHODS.AppCommon.getCreditInfo()}); }, getCartList: function (callback) { if (!CAFE24API.__scopeErr(callback, 'personal')) { return; } CAPP_ASYNC_METHODS.AppCommon.getCartList().then(function(data){ callback(null, {'carts': data}); }); }, getCartInfo: function (callback) { if (!CAFE24API.__chkValidSessionScope(callback, 'personal')) { return; } callback(null, {'cart': CAPP_ASYNC_METHODS.AppCommon.getCartInfo()}); }, getCartItemList: function (callback) { if (!CAFE24API.__scopeErr(callback, 'order')) { return; } callback(null, {'items': CAPP_ASYNC_METHODS.AppCommon.getCartItemList()}); }, getCartCount: function (callback) { if (!CAFE24API.__chkValidSessionScope(callback, 'personal')) { return; } callback(null, CAPP_ASYNC_METHODS.AppCommon.getCartCount()); }, getCouponCount: function (callback) { if (!CAFE24API.__chkValidSessionScope(callback, 'promotion')) { return; } callback(null, CAPP_ASYNC_METHODS.AppCommon.getCouponCount()); }, getWishCount: function (callback) { if (!CAFE24API.__chkValidSessionScope(callback, 'personal')) { return; } callback(null, CAPP_ASYNC_METHODS.AppCommon.getWishCount()); }, getShopInfo: function (callback) { if (!CAFE24API.__scopeErr(callback, 'store')) { return; } callback(null, {'shop': CAPP_ASYNC_METHODS.AppCommon.getShopInfo()}); }, addCurrentProductToCart: function (mall_id, time, app_key, member_id, hmac, callback) { if (!CAFE24API.__scopeErr(callback, 'order')) { return; } CAPP_ASYNC_METHODS.AppCommon.addCurrentProductToCart(mall_id, time, app_key, member_id, hmac).then(function(data){ callback(null, {'cart': data}); }).catch(function (data) { if (data) { callback(new Error('422'), {'error': {code: data.code, message: data.message}}); } else { callback(new Error('422'), {'error': {code: 422, message: 'This sdk is not available on the current page'}}); } }); }, precreateOrder: function (mall_id, time, app_key, member_id, hmac, callback) { if (!CAFE24API.__scopeErr(callback, 'order')) { return; } CAPP_ASYNC_METHODS.AppCommon.precreateOrder(mall_id, time, app_key, member_id, hmac).then(function(data){ callback(null, {'order': data}); }).catch(function (data) { if (data) { callback(new Error('422'), {'error': {code: data.code, message: data.message}}); } else { callback(new Error('422'), {'error': {code: 422, message: 'This sdk is not available on the current page'}}); } }); }, getOrderItemList: function (start_date, end_date, order_status, page, count, order_id, callback) { if (!CAFE24API.__scopeErr(callback, 'order')) { return; } CAPP_ASYNC_METHODS.AppCommon.getOrderItemList(start_date, end_date, order_status, page, count, order_id).then(function(data){ callback(null, {'items': data}); }).catch(function (data) { if (data) { callback(new Error('422'), {'error': {code: data.code, message: data.message}}); } else { callback(new Error(422), { 'error': { code: 422, message: 'This sdk is not available on the current page' } }); } }); }, getOrderDetailInfo: function (shop_no, order_id, callback) { if (!CAFE24API.__scopeErr(callback, 'order')) { return; } CAPP_ASYNC_METHODS.AppCommon.getOrderDetailInfo(shop_no, order_id).then(function(data){ callback(null, {'orders': data}); }).catch(function (data) { if (data) { callback(new Error('422'), {'error': {code: data.code, message: data.message}}); } else { callback(new Error(422), { 'error': { code: 422, message: 'This sdk is not available on the current page' } }); } }); }, getClaimableItemList: function (order_id, customer_service_type, callback) { if (!CAFE24API.__scopeErr(callback, 'order')) { return; } CAPP_ASYNC_METHODS.AppCommon.getClaimableItemList(order_id, customer_service_type).then(function(data){ callback(null, {'items': data}); }).catch(function (data) { if (data) { callback(new Error('422'), {'error': {code: data.code, message: data.message}}); } else { callback(new Error(422), { 'error': { code: 422, message: 'This sdk is not available on the current page' } }); } }); }, emptyCart: function (basket_shipping_type, callback) { if (!CAFE24API.__scopeErr(callback, 'personal')) { return; } CAPP_ASYNC_METHODS.AppCommon.emptyCart(basket_shipping_type).then(function (data) { callback(null, {'result': data}); }).catch(function (data) { if (data) { callback(new Error('422'), {'error': {code: data.code, message: data.message}}); } else { callback(new Error(422), { 'error': { code: 422, message: 'This sdk is not available on the current page' } }); } }) ; }, deleteCartItems: function (basket_shipping_type, product_list, callback) { if (!CAFE24API.__scopeErr(callback, 'personal')) { return; } CAPP_ASYNC_METHODS.AppCommon.deleteCartItems(basket_shipping_type, product_list).then(function (data) { callback(null, {'result': data}); }).catch(function (data) { if (data) { callback(new Error('422'), {'error': {code: data.code, message: data.message}}); } else { callback(new Error(422), { 'error': { code: 422, message: 'This sdk is not available on the current page' } }); } }) ; }, addCart: function (basket_type, prepaid_shipping_fee, product_list, callback) { if (!CAFE24API.__scopeErr(callback, 'personal')) { return; } CAPP_ASYNC_METHODS.AppCommon.addCart(basket_type, prepaid_shipping_fee, product_list).then(function (data) { callback(null, data); }).catch(function (data) { if (data) { callback(new Error('422'), {'error': {code: data.code, message: data.message}}); } else { callback(new Error(422), { 'error': { code: 422, message: 'This sdk is not available on the current page' } }); } }) }, addBundleProductsCart: function (basket_type, prepaid_shipping_fee, product_list, callback) { if (!CAFE24API.__scopeErr(callback, 'personal')) { return; } CAPP_ASYNC_METHODS.AppCommon.addBundleProductsCart(basket_type, prepaid_shipping_fee, product_list).then(function (data) { callback(null, data); }).catch(function (data) { if (data) { callback(new Error('422'), {'error': {code: data.code, message: data.message}}); } else { callback(new Error(422), { 'error': { code: 422, message: 'This sdk is not available on the current page' } }); } }) }, get : function(url, callback) { return CAFE24API.complete('GET', url, this, null, callback); }, post : function(url, params, callback) { return CAFE24API.complete('POST', url, this, params, callback); }, put : function(url, params, callback) { return CAFE24API.complete('PUT', url, this, params, callback); }, delete : function(url, callback) { return CAFE24API.complete('DELETE', url, this, null, callback); }, complete : function(method, url, obj, params, callback) { var xhr = CAFE24API.sendXhr(method, url, obj, params, callback); xhr.onreadystatechange = function () { if (xhr.readyState === XMLHttpRequest.DONE) { if (xhr.status >= 200 && xhr.status <= 208) { callback(null, JSON.parse(xhr.responseText)); } else { callback(new Error(xhr.status), JSON.parse(xhr.responseText)); } } }; }, sendXhr : function (method, url, obj, params, callback) { if (method !== 'POST') { var url = obj.fullPath(url); } var xhr = obj.initializeXhr(); var queryVars = {}; if (obj.clientId) queryVars['cafe24_app_key'] = obj.clientId; if (obj.version) queryVars['cafe24_api_version'] = obj.version; if (params === null) { var seperator = url.indexOf('?') == -1 ? '?' : '&'; var queryString = []; for (var key in queryVars) { queryString.push(key + '=' + queryVars[key]); } if (queryString.length > 0) { url = url + seperator + queryString.join('&'); } } xhr.open(method, url, true); if (typeof params == 'object' && params !== null) { xhr.setRequestHeader('Content-type','application/x-www-form-urlencoded; charset=utf-8'); for (var key in queryVars) { params[key] = queryVars[key]; } params = 'formData=' + JSON.stringify(params); } xhr.send(params || null); return xhr; }, __sessionErr: function (callback) { callback(new Error(403), {'error': {code: 403, message: 'Failed to get session. Only available when log in.'}}); }, __scopeErr: function (callback, scope) { if (typeof CAFE24.APPSCRIPT_SDK_DATA != "undefined" && jQuery.inArray(scope, CAFE24.APPSCRIPT_SDK_DATA ) > -1 ) { return true; } callback(new Error(403), {'error': {code: 403, message: 'You do not have the necessary authority(scope) to use the SDK.'}}); }, __chkValidSessionScope: function (callback, scope) { if (!CAPP_ASYNC_METHODS.IS_LOGIN) { CAFE24API.__sessionErr(callback); return false; } if (!CAFE24API.__scopeErr(callback, scope)) { return false; } return true; } }; </script>
<script type="text/javascript">
window.CAFE24 = window.CAFE24 || {};
CAFE24.MANIFEST_CACHE_REVISION = '2507021416';
CAFE24.getDeprecatedNamespace = function(sDeprecatedNamespace, sSupersededNamespace) {
var sNamespace = sSupersededNamespace
? sSupersededNamespace
: sDeprecatedNamespace.replace(/^EC_/, '');
return CAFE24[sNamespace];
}
CAFE24.FRONT_LANGUAGE_CODE = "ko_KR";
CAFE24.MOBILE = false;
CAFE24.MOBILE_DEVICE = false;
CAFE24.MOBILE_USE = true;
var EC_MOBILE = CAFE24.MOBILE;
var EC_MOBILE_DEVICE = CAFE24.MOBILE_DEVICE;
var EC_MOBILE_USE = CAFE24.MOBILE_USE;
CAFE24.SKIN_CODE = "skin11";
CAFE24.FRONT_EXTERNAL_SCRIPT_VARIABLE_DATA = {"common_member_id_crypt":""};
var EC_FRONT_EXTERNAL_SCRIPT_VARIABLE_DATA = CAFE24.getDeprecatedNamespace('EC_FRONT_EXTERNAL_SCRIPT_VARIABLE_DATA');
CAFE24.SDE_SHOP_NUM = 1;CAFE24.SHOP = {getLanguage : function() { return "ko_KR"; },getCurrency : function() { return "KRW"; },getFlagCode : function() { return "KR"; },getTimezone: function() { return "Asia/Seoul" },getDateFormat: function() { return "Y-m-d" },isMultiShop : function() { return false; },isDefaultShop : function() { return true; },isDefaultLanguageShop : function(sLanguageCode) { return SHOP.isDefaultShop() && SHOP.isLanguageShop(sLanguageCode); },isKR : function() { return true; },isUS : function() { return false; },isJP : function() { return false; },isCN : function() { return false; },isTW : function() { return false; },isES : function() { return false; },isPT : function() { return false; },isVN : function() { return false; },isPH : function() { return false; },getCountryAndLangMap : function() { return {
"KR": "ko_KR",
"US": "en_US",
"JP": "ja_JP",
"CN": "zh_CN",
"TW": "zh_TW",
"VN": "vi_VN",
"PH": "en_PH"
}},isLanguageShop : function(sLanguageCode) { return sLanguageCode === "ko_KR"; },getDefaultShopNo : function() { return 1; },getProductVer : function() { return 2; },isSDE : function() { return true; },isMode : function() {return false; },getModeName : function() {return false; },isMobileAdmin : function() {return false; },isNewProMode : function() {return true; },isExperienceMall : function() { return false; },isDcollection : function() {return false; },isYoutubeShops : function() {return false; },getYtShopsShopNo : function() {return 0; },isG2G : function() {return false; },getAdminID : function() {return ''},getMallID : function() {return 'yeon5732'},getCurrencyFormat : function(sPriceTxt, bIsNumberFormat) {
sPriceTxt = String(sPriceTxt);
var aCurrencySymbol = ["","\uc6d0",false];
if (typeof CAFE24.SHOP_PRICE !== 'undefined' && isNaN(sPriceTxt.replace(/[,]/gi, '')) === false && bIsNumberFormat === true) {
// bIsNumberFormat 사용하려면 Ui(':libUipackCurrency')->plugin('Currency') 화폐 라이브러리 추가 필요
sPriceTxt = CAFE24.SHOP_PRICE.toShopPrice(sPriceTxt.replace(/[,]/gi, ''), true, CAFE24.SDE_SHOP_NUM);
}
try {
var sPlusMinusSign = (sPriceTxt.toString()).substr(0, 1);
if (sPlusMinusSign === '-' || sPlusMinusSign === '+') {
sPriceTxt = (sPriceTxt.toString()).substr(1);
return sPlusMinusSign + aCurrencySymbol[0] + sPriceTxt + aCurrencySymbol[1];
} else {
return aCurrencySymbol[0] + sPriceTxt + aCurrencySymbol[1];
}
} catch (e) {
return aCurrencySymbol[0] + sPriceTxt + aCurrencySymbol[1];
}
}};CAFE24.CURRENCY_INFO = {getOriginReferenceCurrency : function() {return 'USD'},getCurrencyList : function(sCurrencyCode) { var aCurrencyList = {"JPY":{"currency_symbol":"¥","decimal_place":0,"round_method_type":"F"},"VND":{"currency_symbol":"₫","decimal_place":0,"round_method_type":"F"},"PHP":{"currency_symbol":"₱","decimal_place":2,"round_method_type":"R"},"USD":{"currency_symbol":"$","decimal_place":2,"round_method_type":"R"},"CNY":{"currency_symbol":"¥","decimal_place":2,"round_method_type":"R"},"TWD":{"currency_symbol":"NT$","decimal_place":0,"round_method_type":"F"},"EUR":{"currency_symbol":"\u20ac","decimal_place":2,"round_method_type":"R"},"BRL":{"currency_symbol":"R$","decimal_place":2,"round_method_type":"R"},"AUD":{"currency_symbol":"A$","decimal_place":2,"round_method_type":"R"},"BHD":{"currency_symbol":".د.ب","decimal_place":3,"round_method_type":"R"},"BDT":{"currency_symbol":"৳","decimal_place":2,"round_method_type":"R"},"GBP":{"currency_symbol":"£","decimal_place":2,"round_method_type":"R"},"CAD":{"currency_symbol":"C$","decimal_place":2,"round_method_type":"R"},"CZK":{"currency_symbol":"Kč","decimal_place":2,"round_method_type":"R"},"DKK":{"currency_symbol":"kr","decimal_place":2,"round_method_type":"R"},"HKD":{"currency_symbol":"HK$","decimal_place":2,"round_method_type":"R"},"HUF":{"currency_symbol":"Ft","decimal_place":2,"round_method_type":"R"},"INR":{"currency_symbol":"₹","decimal_place":2,"round_method_type":"R"},"IDR":{"currency_symbol":"Rp","decimal_place":0,"round_method_type":"F"},"ILS":{"currency_symbol":"₪","decimal_place":2,"round_method_type":"R"},"JOD":{"currency_symbol":" دينار","decimal_place":3,"round_method_type":"R"},"KWD":{"currency_symbol":"دينار","decimal_place":3,"round_method_type":"R"},"MYR":{"currency_symbol":"RM","decimal_place":2,"round_method_type":"R"},"MXN":{"currency_symbol":"Mex$","decimal_place":2,"round_method_type":"R"},"NZD":{"currency_symbol":"NZ$","decimal_place":2,"round_method_type":"R"},"NOK":{"currency_symbol":"kr","decimal_place":2,"round_method_type":"R"},"PKR":{"currency_symbol":"₨","decimal_place":2,"round_method_type":"R"},"PLN":{"currency_symbol":"z\u0142","decimal_place":2,"round_method_type":"R"},"RUB":{"currency_symbol":"\u0440\u0443\u0431","decimal_place":2,"round_method_type":"R"},"SAR":{"currency_symbol":"﷼","decimal_place":2,"round_method_type":"R"},"SGD":{"currency_symbol":"S$","decimal_place":2,"round_method_type":"R"},"ZAR":{"currency_symbol":"R","decimal_place":2,"round_method_type":"R"},"SEK":{"currency_symbol":"kr","decimal_place":2,"round_method_type":"R"},"CHF":{"currency_symbol":"Fr","decimal_place":2,"round_method_type":"R"},"THB":{"currency_symbol":"฿","decimal_place":2,"round_method_type":"R"},"TRY":{"currency_symbol":"TL","decimal_place":2,"round_method_type":"R"},"AED":{"currency_symbol":"فلس","decimal_place":2,"round_method_type":"R"}}; return aCurrencyList[sCurrencyCode] },isUseReferenceCurrency : function() {return false }};CAFE24.COMMON_UTIL = {convertSslForString : function(sString) { return sString.replace(/http:/gi, '');},convertSslForHtml : function(sHtml) { return sHtml.replace(/((?:src|href)\s*=\s*['"])http:(\/\/(?:[a-z0-9\-_\.]+)\/)/ig, '$1$2');},getProtocol : function() { return 'https'; },moveSsl : function() { if (CAFE24.COMMON_UTIL.getProtocol() === 'http') { var oLocation = jQuery(window.location); var sUrl = 'https://' + oLocation.attr('host') + oLocation.attr('pathname') + oLocation.attr('search'); window.location.replace(sUrl); } },setEcCookie : function(sKey, sValue, iExpire) {var exdate = new Date();exdate.setDate(exdate.getDate() + iExpire);var setValue = escape(sValue) + "; domain=." + CAFE24.GLOBAL_INFO.getBaseDomain() + "; path=/;expires=" + exdate.toUTCString();document.cookie = sKey + "=" + setValue;}};CAFE24.SHOP_LIB_INFO = {getBankInfo : function() {
var oBankInfo = "";
$.ajax({
type: "GET",
url: "/exec/front/Shop/Bankinfo",
dataType: "json",
async: false,
success: function(oResponse) {
oBankInfo = oResponse;
}
});
return oBankInfo; }}; var EC_SDE_SHOP_NUM = CAFE24.SDE_SHOP_NUM;
var SHOP = CAFE24.getDeprecatedNamespace('SHOP');
var EC_COMMON_UTIL = CAFE24.getDeprecatedNamespace('EC_COMMON_UTIL');
var EC_SHOP_LIB_INFO = CAFE24.getDeprecatedNamespace('EC_SHOP_LIB_INFO');
var EC_CURRENCY_INFO = CAFE24.getDeprecatedNamespace('EC_CURRENCY_INFO');
CAFE24.ROOT_DOMAIN = "cafe24.com";
CAFE24.API_DOMAIN = "cafe24api.com";
CAFE24.TRANSLATE_LOG_STATUS = "F";
CAFE24.GLOBAL_INFO = (function() {
var oData = {"base_domain":"yeon5732.cafe24.com","root_domain":"cafe24.com","api_domain":"cafe24api.com","is_global":false,"is_global_standard":false,"country_code":"KR","language_code":"ko_KR","admin_language_code":"ko_KR"};
return {
getBaseDomain: function() {
return oData['base_domain'];
},
getRootDomain: function() {
return oData['root_domain'];
},
getApiDomain: function() {
return oData['api_domain'];
},
isGlobal: function() {
return oData['is_global'];
},
isGlobalStandard: function() {
return oData['is_global_standard'];
},
getCountryCode: function() {
return oData['country_code'];
},
getLanguageCode: function() {
return oData['language_code'];
},
getAdminLanguageCode: function() {
return oData['admin_language_code'];
}
};
})();
var EC_ROOT_DOMAIN = CAFE24.ROOT_DOMAIN;
var EC_API_DOMAIN = CAFE24.API_DOMAIN;
var EC_TRANSLATE_LOG_STATUS = CAFE24.TRANSLATE_LOG_STATUS;
var EC_GLOBAL_INFO = CAFE24.getDeprecatedNamespace('EC_GLOBAL_INFO');
CAFE24.AVAILABLE_LANGUAGE = ["ko_KR","zh_CN","en_US","zh_TW","es_ES","pt_PT","vi_VN","ja_JP","en_PH"];
CAFE24.AVAILABLE_LANGUAGE_CODES = {"ko_KR":"KOR","zh_CN":"CHN","en_US":"ENG","zh_TW":"TWN","es_ES":"ESP","pt_PT":"PRT","vi_VN":"VNM","ja_JP":"JPN","en_PH":"PHL"};
var EC_AVAILABLE_LANGUAGE = CAFE24.AVAILABLE_LANGUAGE;
var EC_AVAILABLE_LANGUAGE_CODES = CAFE24.AVAILABLE_LANGUAGE_CODES;
CAFE24.GLOBAL_PRODUCT_LANGUAGE_CODES = {
sClearanceCategoryCode: '',
sManualLink: '//support.cafe24.com/hc/ko/articles/7739013909529',
sHsCodePopupLink: 'https://www.wcotradetools.org/en/harmonized-system',
aCustomRegex: '"PHL" : "^[0-9]{8}[A-Z]?$"',
sCountryCodeData: 'kor',
sEnglishExampleURlForGlobal: '',
aReverseAddressCountryCode: ["VNM","PHL"],
aSizeGuideCountryAlign: '["US","UK","EU","KR","JP","CN"]',
aIsSupportTran: ["ja_JP","zh_CN","zh_TW","en_US","vi_VN","en_PH","pt_PT","es_ES"]
};
var EC_GLOBAL_PRODUCT_LANGUAGE_CODES = CAFE24.getDeprecatedNamespace('EC_GLOBAL_PRODUCT_LANGUAGE_CODES');
CAFE24.GLOBAL_ORDER_LANGUAGE_CODES = {
aModifyOrderLanguage: {"KR":"ko_KR","JP":"ja_JP","CN":"zh_CN","TW":"zh_TW","VN":"vi_VN","PH":"en_PH"},
aUseIdCardKeyCountry: ["CN","TW"],
aLanguageWithCountryCode: {"zh_CN":["CN","CHN","HK","HNK"],"ja_JP":["JP","JPN"],"zh_TW":["TW","TWN"],"ko_KR":["KR","KOR"],"vi_VN":["VN","VNM"],"en_PH":["PH","PHL"]},
aCheckDisplayRequiredIcon: ["ja_JP","zh_CN","zh_TW","en_US","vi_VN","en_PH"],
aSetReceiverName: {"zh_CN":{"sCountry":"CN","bUseLastName":true},"zh_TW":{"sCountry":"TW","bUseLastName":false},"ja_JP":{"sCountry":"JP","bUseLastName":true}},
aSetDeferPaymethodLanguage: {"ja_JP":"\uc77c\ubcf8","zh_CN":"\uc911\uad6d"},
aUseDeferPaymethod: ["ja_JP","zh_CN"],
aCheckShippingCompanyAndPaymethod: ["ja_JP","zh_CN"],
aSetDeferPaymethodLanguageForShipping: {"ja_JP":"\u65e5\u672c","zh_CN":"\uc911\uad6d"},
aCheckStoreByPaymethod: ["ja_JP","zh_CN"],
aCheckIsEmailRequiredForJs: ["en_US","zh_CN","zh_TW","ja_JP","vi_VN","en_PH"],
aSetIdCardKeyCountryLanguage: {"CN":"\uc911\uad6d\uc758","TW":"\ub300\ub9cc\uc758"},
aReverseGlobalAddress: ["en_PH","vi_VN","PHL","VNM","VN","PH"],
aNoCheckZipCode: ["KOR","JPN"],
aNotPostCodeAPICountryList: ["en_US","es_ES","pt_PT","en_PH"],
aEnableSearchExchangeAddr: ["KR","JP","CN","VN","TW","PH"],
aDuplicatedBaseAddr: ["TW","JP"],
aReverseAddressCountryCode: ["VN","PH"],
aCheckZipCode: ["PHL","en_PH","PH"]
};
var EC_GLOBAL_ORDER_LANGUAGE_CODES = CAFE24.getDeprecatedNamespace('EC_GLOBAL_ORDER_LANGUAGE_CODES');
CAFE24.GLOBAL_MEMBER_LANGUAGE_CODES = {
sAdminWebEditorLanguageCode: 'ko' ,
oNotAvailDecimalPointLanguages: ["ko_KR","ja_JP","zh_TW","vi_VN"],
oAddressCountryCode: {"KOR":"ko_KR","JPN":"ja_JP","CHN":"zh_CN","TWN":"zh_TW","VNM":"vi_VN","PHL":"en_PH"},
};
var EC_GLOBAL_MEMBER_LANGUAGE_CODES = CAFE24.getDeprecatedNamespace('EC_GLOBAL_MEMBER_LANGUAGE_CODES');
CAFE24.GLOBAL_BOARD_LANGUAGE_CODES = {
bUseLegacyBoard: true
};
var EC_GLOBAL_BOARD_LANGUAGE_CODES = CAFE24.getDeprecatedNamespace('EC_GLOBAL_BOARD_LANGUAGE_CODES');
CAFE24.GLOBAL_MALL_LANGUAGE_CODES = {
oDesign: {
oDesignAddReplaceInfo: {"group_id":"SKIN.ADD.ADMIN.DESIGNDETAIL","replacement":{"KR":"KOREAN","US":"ENGLISH","JP":"JAPANESE","CN":"SIMPLIFIED.CHINESE","TW":"TRADITIONAL.CHINESE","ES":"SPANISH","PT":"PORTUGUESE","PH":"ENGLISH"}},
oDesignDetailLanguageCountryMap: {"KR":"ko_KR","JP":"ja_JP","CN":"zh_CN","TW":"zh_TW","US":"en_US","ES":"es_ES","PT":"pt_PT","PH":"en_PH"},
oSmartDesignSwitchTipLink: {"edibot":{"img":"\/\/img.echosting.cafe24.com\/smartAdmin\/img\/design\/img_editor_dnd.png","link":"\/\/ecsupport.cafe24.com\/board\/free\/list.html?board_act=list&board_no=12&category_no=9&cate_no=9"},"smart":{"img":"\/\/img.echosting.cafe24.com\/smartAdmin\/img\/design\/ko_KR\/img_editor_smart.png","link":"\/\/sdsupport.cafe24.com"}},
oSmartDesignDecoShopList: ["ko_KR","ja_JP","zh_CN","en_US","zh_TW","es_ES","pt_PT"],
oSmartDesignDecoMultilingual: {"list":{"ko_KR":"KOREAN","en_US":"ENGLISH","ja_JP":"JAPANESE","zh_CN":"SIMPLIFIED.CHINESE","zh_TW":"TRADITIONAL.CHINESE","es_ES":"SPANISH","pt_PT":"PORTUGUESE","vi_VN":"VIETNAMESE"},"group_id":"EDITOR.LAYER.EDITING.DECO"},
aSmartDesignModuleShopList: ["ko_KR","ja_JP","zh_CN","en_US","zh_TW","es_ES","pt_PT"]
},
oStore: {
oMultiShopCurrencyInfo: {"en_US":{"currency":"USD"},"zh_CN":{"currency":"USD","sub_currency":"CNY"},"ja_JP":{"currency":"JPY"},"zh_TW":{"currency":"TWD"},"es_ES":{"currency":"EUR"},"pt_PT":{"currency":"EUR"},"ko_KR":{"currency":"KRW"},"vi_VN":{"currency":"VND"},"en_PH":{"currency":"PHP"}},
oBrowserRedirectLanguage: {"ko":{"primary":"ko_KR","secondary":"en_US"},"en":{"detail":{"en-ph":{"primary":"en_PH","secondary":"en_US"},"en-us":{"primary":"en_US","secondary":"es_ES"},"default":{"primary":"en_US","secondary":"es_ES"}}},"ja":{"primary":"ja_JP","secondary":"en_US"},"zh":{"detail":{"zh-cn":{"primary":"zh_CN","secondary":"en_US"},"zh-tw":{"primary":"zh_TW","secondary":"zh_CN"},"default":{"primary":"en_US","secondary":"ko_KR"}}},"es":{"primary":"es_ES","secondary":"en_US"},"pt":{"primary":"pt_PT","secondary":"en_US"},"vi":{"primary":"vi_VN","secondary":"en_US"},"default":{"primary":"en_US","secondary":"ko_KR"}},
aChangeableLanguages: ["en_US","ja_JP","ko_KR"],
aNoZipCodeLanguage: ["ko_KR","ja_JP"]
},
oMobile: {
sSmartWebAppFaqUrl: "https://support.cafe24.com/hc/ko/articles/8466586607641",
sAmpFaqUrl: "https://ecsupport.cafe24.com/board/free/read.html?no=1864&board_no=5&category_no=13&cate_no=13&category_no=13&category_no=13",
},
oPromotion: {
bQrCodeAvailable: true,
bSnsMarketingAvailable: true
},
oShippingReverseAddressLanguage: ["vi_VN","en_PH"] ,
oGlobalStandardSwitchHelpCodeLink: {"SH.DS":{"link":"\/\/serviceguide.cafe24shop.com\/en_PH\/SH.DS.html"},"PR.DS":{"link":"\/\/serviceguide.cafe24shop.com\/en_PH\/PR.DS.html"},"OR.SM.BO":{"link":"\/\/serviceguide.cafe24shop.com\/en_PH\/OR.SM.BO.html"},"DE.DS":{"link":"\/\/serviceguide.cafe24shop.com\/en_PH\/DE.DS.html"},"MB.DS":{"link":"\/\/serviceguide.cafe24shop.com\/en_PH\/MB.DS.html"},"PM.DS":{"link":"\/\/serviceguide.cafe24shop.com\/en_PH\/PM.DS.html"}},
getAdminMainLocaleLanguage: function(sSkinLocaleCode) {
var oLocaleData = [];
var locale = "";
var shopLangName = "";
if (sSkinLocaleCode == "US") {
locale = "en_US";
shopLangName = "ENGLISH";
} else if (sSkinLocaleCode == "JP") {
locale = "ja_JP";
shopLangName = "JAPANESE";
} else if (sSkinLocaleCode == "CN") {
locale = "zh_CN";
shopLangName = "SIMPLIFIED.CHINESE";
} else if (sSkinLocaleCode == "TW") {
locale = "zh_TW";
shopLangName = "TRADITIONAL.CHINESE";
} else if (sSkinLocaleCode == "ES") {
locale = "es_ES";
shopLangName = "SPANISH";
} else if (sSkinLocaleCode == "PT") {
locale = "pt_PT";
shopLangName = "PORTUGUESE";
} else if (sSkinLocaleCode == "VN") {
locale = "vi_VN";
shopLangName = "VIETNAMESE";
} else if(sSkinLocaleCode == "PH") {
locale = "en_PH";
shopLangName = "ENGLISH.PH";
}
oLocaleData["locale"] = locale;
oLocaleData["shopLangName"] = shopLangName;
return oLocaleData;
}
};
var EC_GLOBAL_MALL_LANGUAGE_CODES = CAFE24.getDeprecatedNamespace('EC_GLOBAL_MALL_LANGUAGE_CODES');
CAFE24.GLOBAL_DATETIME_INFO = {
oConstants: {"STANDARD_DATE_REGEX":"\/([12]\\d{3}-(0[1-9]|1[0-2])-(0[1-9]|[12]\\d|3[01]))\/","IN_ZONE":"inZone","OUT_ZONE":"outZone","IN_FORMAT":"inFormat","OUT_FORMAT":"outFormat","IN_DATE_FORMAT":"inDateFormat","IN_TIME_FORMAT":"inTimeFormat","OUT_DATE_FORMAT":"outDateFormat","OUT_TIME_FORMAT":"outTimeFormat","IN_FORMAT_DATE_ONLY":1,"IN_FORMAT_TIME_ONLY":2,"IN_FORMAT_ALL":3,"OUT_FORMAT_DATE_ONLY":1,"OUT_FORMAT_TIME_ONLY":2,"OUT_FORMAT_ALL":3,"DATE_ONLY":"YYYY-MM-DD","TIME_ONLY":"HH:mm:ss","FULL_TIME":"YYYY-MM-DD HH:mm:ss","ISO_8601":"YYYY-MM-DD[T]HH:mm:ssZ","YEAR_ONLY":"YYYY","MONTH_ONLY":"MM","DAY_ONLY":"DD","WEEK_ONLY":"e","TIME_H_I_ONLY":"HH:mm","TIME_HOUR_ONLY":"HH","TIME_MINUTE_ONLY":"mm","POSTGRE_FULL_TIME":"YYYY-MM-DD HH24:MI:SS","POSTGRE_TIME_ONLY":" HH24:MI:SS","MICRO_SECOND_ONLY":"u","SEOUL":"Asia\/Seoul","TOKYO":"Asia\/Tokyo","SHANGHAI":"Asia\/Shanghai","TAIPEI":"Asia\/Taipei","HANOI":"Asia\/Bangkok","LOS_ANGELES":"America\/Los_Angeles","LISBON":"Europe\/Lisbon","MADRID":"Europe\/Madrid","SINGAPORE":"Asia\/Singapore","UTC":"Etc\/UTC","MAX_DATETIME":"9999-12-31 23:59:59"},
oOptions: {"inZone":"Asia\/Seoul","inFormat":"YYYY-MM-DD HH:mm:ss","inDateFormat":"YYYY-MM-DD","inTimeFormat":"HH:mm:ss","outZone":"Asia\/Seoul","outFormat":"YYYY-MM-DD HH:mm:ss","outDateFormat":"YYYY-MM-DD","outTimeFormat":"HH:mm:ss"},
oPolicies: {"shop":{"outZone":"Asia\/Seoul","outFormat":"YYYY-MM-DD HH:mm:ss","outDateFormat":"YYYY-MM-DD","outTimeFormat":"HH:mm:ss"}},
sOverrideTimezone: '',
sMomentNamespace: 'EC_GLOBAL_MOMENT'
};
CAFE24.FRONT_JS_CONFIG_MANAGE = {"sSmartBannerScriptUrl":"https:\/\/app4you.cafe24.com\/SmartBanner\/tunnel\/scriptTags?vs=1563164396689206","sMallId":"yeon5732","sDefaultAppDomain":"https:\/\/app4you.cafe24.com","sWebLogOffFlag":"F","cdnUrl":"https:\/\/cafe24.poxo.com\/ec01\/yeon5732\/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==\/_"};
var EC_FRONT_JS_CONFIG_MANAGE = CAFE24.getDeprecatedNamespace('EC_FRONT_JS_CONFIG_MANAGE');
CAFE24.FRONT_JS_CONFIG_SHOP = {"search_period":[],"calendar_config":{"maxDate":"2027-07-12","locale":"ko"},"aProductPurchaseInfo_12194":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12186":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12189":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12192":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12187":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12190":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12183":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12174":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12191":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12188":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12175":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12084":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12034":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12045":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12046":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12069":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_11435":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_11967":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12182":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12185":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12181":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12176":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12180":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12184":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12179":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12177":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12173":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12178":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12172":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12164":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12170":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12167":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12166":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12165":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12171":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12168":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12169":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12163":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12162":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12161":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12160":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12159":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12157":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12155":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12158":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12156":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12154":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12153":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12146":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12149":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12150":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12147":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12148":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12139":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12141":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12140":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12144":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12145":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12142":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12138":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12137":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12134":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12136":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12131":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12132":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12129":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12128":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12133":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12114":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12127":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12122":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12126":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12117":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12120":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12125":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12115":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12113":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12124":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12116":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12123":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12119":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12111":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12110":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12107":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12105":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12109":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12108":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12112":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12099":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12100":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12104":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12101":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12098":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12093":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12102":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12097":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12090":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12095":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12096":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12086":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12094":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12091":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12082":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12088":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12081":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12077":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12078":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12118":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12103":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12087":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12085":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12071":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12052":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12047":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12051":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12048":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12044":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12033":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12029":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_11755":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_11742":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_11473":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_10466":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true}};
var EC_FRONT_JS_CONFIG_SHOP = CAFE24.getDeprecatedNamespace('EC_FRONT_JS_CONFIG_SHOP');
CAFE24.FRONT_JS_CONFIG_MEMBER = {"sAuthUrl":"https:\/\/ipin-ec.cafe24.com\/certify\/v1\/?action=auth"};
var EC_FRONT_JS_CONFIG_MEMBER = CAFE24.getDeprecatedNamespace('EC_FRONT_JS_CONFIG_MEMBER');
typeof window.CAFE24 === "undefined" && (window.CAFE24 = {});
CAFE24.FRONTEND = {"FW_MANIFEST_CACHE_REVISION":2507021416,"IS_WEB_VIEW":"F"};
CAFE24.ROUTE = {"is_mobile":false,"is_need_route":false,"language_code":"ZZ","path":{"origin":"\/","result":"\/","prefix":""},"shop_no":0,"skin_code":"default","support_language_list":{"ar":"ar_EG","ar-EG":"ar_EG","de":"de_DE","de-DE":"de_DE","en":"en_US","en-IN":"en_IN","en-PH":"en_PH","en-US":"en_US","es":"es_ES","es-ES":"es_ES","hi":"hi_IN","hi-IN":"hi_IN","id":"id_ID","id-ID":"id_ID","it":"it_IT","it-IT":"it_IT","ja":"ja_JP","ja-JP":"ja_JP","ko":"ko_KR","ko-KR":"ko_KR","ms":"ms_MY","ms-MY":"ms_MY","pt":"pt_PT","pt-PT":"pt_PT","ru":"ru_RU","ru-RU":"ru_RU","th":"th_TH","th-TH":"th_TH","tr":"tr_TR","tr-TR":"tr_TR","vi":"vi_VN","vi-VN":"vi_VN","zh":"zh_CN","zh-CN":"zh_CN","zh-HK":"zh_HK","zh-MO":"zh_MO","zh-SG":"zh_SG","zh-TW":"zh_TW"}};
</script>
<link rel="stylesheet" type="text/css" href="/ind-script/optimizer.php?filename=nY1BCkIxDAX3pVvPERU9gTcQPEBa87X8NClpCnp7xZUbQbp9vJmBu1aC3d6gmd4MKxh1HZYJcu-wmIpD1lpV4nvYwD9_yqErDy8qIeljEhzus1HGJ9kc6piYJlFtgYtQSCjys88lwaU0zCucv30nZJIrGhziMW5hYfRW8vrRvAA&type=css&k=3572cbbdf8913438f1d2bd7f51c552f63984d500&t=1726130154" /><link rel="stylesheet" type="text/css" href="/ind-script/optimizer_user.php?filename=rdJRDsIwCADQf-ev5yBqjFfww0uwFjdmW5pCY3Z75-YN1h9CIHkBAowSCch1VakozCTpdr9eINc-sOtGiwHUU-dJeUigb07nM3R-AqcKfjpE5HRc8hPslTSwp7LD-jlRfA0EAWepBg6NBilzUzTWYKyj5CerNZWVsLjxQdj6Di8R20Vizgqc1HAoGD_sB7Ktt8Ud9H_EHpXdOrqTGCW1FLdCmy_NZbmsa4H1ti75BQ&type=css&k=2964b45e00f67eeefbe63cae88f49ca524628a79&t=1737699058&user=T" />
<style type="text/css">
</style>
<title>쏘앵</title></head><body><span itemscope="" itemtype="http://schema.org/Organization">
<link itemprop="url" href="http://www.ssoaeng.co.kr">
<a itemprop="sameAs" href="https://www.instagram.com/ssoaeng_y"></a>
<a itemprop="sameAs" href="https://www.facebook.com/ssoaeng.k"></a>
</span>
<!-- criteo loader -->
<script type="text/javascript" src="//dynamic.criteo.com/js/ld/ld.js?a=40780" async="true"></script>
<script type="text/javascript" src="//openapi.toup.net/common/js/md5.min.js" ></script>
<!-- criteo loader -->
<!-- Uneedcomms Keepgrow Script -->
<script id="kg-service-init" data-hosting="cafe24" src="//storage.keepgrow.com/admin/keepgrow-service/keepgrow-service_cdd9aaa8-1d95-4da2-9f48-35b1a061c701.js"></script>
<!-- Uneedcomms Keepgrow Script -->
<!-- 인스타그램 연동아이콘 -->
<div style="z-index:999999;width:40px;height:40px;position:fixed;right:6.4%;bottom:285px">
<a href="https://www.instagram.com/ssoaeng_y/" target="_blank"><img src="https://cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/ssoaeng/circle-insta.png" width="100%"></a>
</div>
<!-- 유튜브 연동아이콘 -->
<div style="z-index:999999;width:40px;height:40px;position:fixed;right:6.4%;bottom:233px">
<a href="https://www.youtube.com/@ssoaengbubu" target="_blank"><img src="https://cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/ssoaeng/circle_youtube.png" width="100%"></a>
</div>
<!-- 카카오톡 연동아이콘 4 -->
<div style="z-index:999999;width:56px;height:56px;position:fixed;right:5.9%;bottom:164px">
<a href="#" target="_self" onclick="window.open('https://pf.kakao.com/_Mhxbxob/chat','NewWindow','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,copyhistory=no,width=750,height=800')" onfocus="blur()"><img src="https://cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/ssoaeng/katok.png" width="100%"></a></div>
<div id="wrap">
<!-- 좌측 -->
<!-- header -->
<div id="header">
<div class="left_zone">
<div class="logo">
<!-- 로고 -->
<a href="/index.html"><img src="https://cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/_dj/img/logo.png" alt="로고"></a>
</div>
<div class="menu">
<ul class="category">
<!-- 카테고리 시작 -->
<li class="store">
<div id="category" class="xans-element- xans-layout xans-layout-category"><div id="flip_1"><a href="#none" class="cate_title">CATEGORY<img src="https://cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/_dj/img/cate_arrow.jpg"></a></div>
<div id="panel_1">
<div class="position">
<ul>
<li class="xans-record-"><a href="/product/list.html?cate_no=41">NEW 5%</a></li>
<li class="xans-record-"><a href="/product/list.html?cate_no=30"><font color="#ec6a1c">BEST 50</font></a></li>
<li class="xans-record-"><a href="/product/list.html?cate_no=100">FAMILY</a></li>
<li class="xans-record-"><a href="/product/list.html?cate_no=102">SET</a></li>
<li class="xans-record-"><a href="/product/list.html?cate_no=27">OUTER</a></li>
<li class="xans-record-"><a href="/product/list.html?cate_no=26">TOP</a></li>
<li class="xans-record-"><a href="/product/list.html?cate_no=81">COUPLE</a></li>
<li class="xans-record-"><a href="/product/list.html?cate_no=28">DRESS</a></li>
<li class="xans-record-"><a href="/product/list.html?cate_no=29">BOTTOM</a></li>
<li class="xans-record-"><a href="/product/list.html?cate_no=42">SHOES & BAG</a></li>
<li class="xans-record-"><a href="/product/list.html?cate_no=32">ACC</a></li>
<li class="xans-record-"><a href="/product/list.html?cate_no=104">season off ~30%</a></li>
</ul>
</div>
</div>
</div>
</li>
<li class="margin">
<!-- 고객센터 -->
<div id="flip"><a href="#none" class="cate_title">C/S<img src="https://cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/_dj/img/cate_arrow.jpg"></a></div>
<div id="panel">
<p class="tel">쏘앵 카카오채널 1:1 상담</p>
<p class="time">AM11-PM3<br>LUNCH PM12-PM1:00<br>(SAT.RED CLOSED)</p>
</div>
</li>
<!-- 카테고리 끝 -->
</ul>
</div>
</div>
<div class="right_zone">
<div class="inner">
<div id="find_btn"><a href="#none"><img src="https://cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/_dj/img/left_search_btn.png"></a></div>
<div id="find_view">
<form id="searchBarForm" name="" action="/product/search.html" method="get" target="_self" enctype="multipart/form-data" >
<input id="banner_action" name="banner_action" value="" type="hidden" /><div class="xans-element- xans-layout xans-layout-searchheader "><!--
$product_page=/product/detail.html
$category_page=/product/list.html
-->
<fieldset>
<legend>검색</legend>
<input id="keyword" name="keyword" fw-filter="" fw-label="검색어" fw-msg="" class="inputTypeText" placeholder="" onmousedown="SEARCH_BANNER.clickSearchForm(this)" value="" type="text" /><input type="image" src="https://cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/_dj/img/s72_find_btn.jpg" alt="검색" onclick="SEARCH_BANNER.submitSearchBanner(this); return false;">
</fieldset>
</div>
</form> </div>
</div>
</div>
</div>
<div id="container">
<!-- ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★
- 직접 수정하실 경우 꼭! 백업 후 작업해주세요. ^ ^
- 현재 편집창에서 이미지를 직접 바꾸실 경우 경로가 바뀌어 차후 유지/보수가 어려워집니다.
아래 표기된 경로와 파일명으로 FTP 접속 > 업로드 > 덮어쓰기로 처리해주세요!
(제공해드리는 원본파일명으로 제작되었으니 FTP 업로드방법을 참조하시어 작업하시면 됩니다.)
- ★ FTP 경로 : sde_design/skin1(스킨번호)/_dj/img ★ 사이트의 모든 이미지는 해당 FTP 경로에 업로드하시면 됩니다.
- 왼쪽 로고+메뉴부분 : dj/header.html
- 좌측 검색창에 위 주소를 복사해 검색하시면 해당 파일을 열수 있습니다.
- 원하시는 수정 페이지를 쉽게 찾으시는 방법 !
사이트를 연 상태에서 상단 주소창에 표시된 주소중 도메인을 제외한 url로 좌측 검색창에서 검색하시면 됩니다. (html까지만)
ex) http://ecudemo50534.cafe24.com/product/list.html?cate_no=24 이라면 product/list.html 로 검색하세요!
★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ -->
<div id="main_item_all">
<div class="xans-element- xans-product xans-product-listmain-4 xans-product-listmain xans-product-4 ec-base-product best_item"><!--
$count = 5
※ 노출시킬 상품의 갯수를 숫자로 설정할 수 있으며, 설정하지 않을경우, 최대 200개로 자동제한됩니다.
※ 상품 노출갯수가 많으면 쇼핑몰에 부하가 발생할 수 있습니다.
-->
<div class="main_item_list item_left">
<ul class="prdList best_ul grid2">
<li id="anchorBoxId_12194" class="xans-record-">
<div class="box_design_main" onclick="window.location.href='/product/detail.html?product_no=12194&cate_no=1&display_group=5';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12194&cate_no=1&display_group=5" name="anchorBoxName_12194"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202507/de924eee3544bc311b688590c83c7c78.jpg" id="eListPrdImage12194_5" alt="-"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12194&cate_no=1&display_group=5';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12194&cate_no=1&display_group=5" class=""><span style="font-size:12px;color:#555555;">-</span> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-4 xans-product-listitem xans-product-4 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:12px;color:#008BCC;font-weight:bold;">1won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<!-- 첫번째 상품아래 텍스트 -->
<li class="item_text">
<div class="box_design_main" onclick="window.location.href='/_dj/lookbook_list.html?cate_no=45';">
<p>NEW SEASON RULES</p>
<p>whether you're heading back to uni or just want to update your everyday basics</p>
<p>5%</p>
</div>
</li>
<li id="anchorBoxId_12186" class="xans-record-">
<div class="box_design_main" onclick="window.location.href='/product/detail.html?product_no=12186&cate_no=1&display_group=5';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12186&cate_no=1&display_group=5" name="anchorBoxName_12186"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202507/7093c5540bc8a29eb311fa96388f54fa.webp" id="eListPrdImage12186_5" alt="H라인카고스커트-sk"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12186&cate_no=1&display_group=5';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12186&cate_no=1&display_group=5" class=""><span style="font-size:12px;color:#555555;">H라인카고스커트-sk</span> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-4 xans-product-listitem xans-product-4 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:12px;color:#008BCC;font-weight:bold;">57,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_12189" class="xans-record-">
<div class="box_design_main" onclick="window.location.href='/product/detail.html?product_no=12189&cate_no=1&display_group=5';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12189&cate_no=1&display_group=5" name="anchorBoxName_12189"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202507/f311c1bd69cf1a8e510a57b628251324.webp" id="eListPrdImage12189_5" alt="[signaturefit♥] 피그박시반팔티-t"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12189&cate_no=1&display_group=5';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12189&cate_no=1&display_group=5" class=""><span style="font-size:12px;color:#555555;">[signaturefit♥] 피그박시반팔티-t</span> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-4 xans-product-listitem xans-product-4 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:12px;color:#008BCC;font-weight:bold;">39,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
</ul>
<ul class="prdList grid2 best_ul right_sec">
<li>
<div id="main_slide1">
<div class="dj_slider_1">
<div class="slider_1">
<!----------------
메인 이미지 롤링
이미지사이즈 909 * 1160
onclick="window.location.href='링크주소';"
------------------>
<div onclick="window.location.href='https://www.ssoaeng.co.kr/product/detail.html?product_no=11914&cate_no=1&display_group=12';" class="list1" data-thumb=""><img src="https://cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/_dj/img/s74_main_imgaa1-1.jpg" style="width:100%"></div>
</div>
<script type="text/javascript" src="/_dj/js/slick/slick.min.js"></script>
<!--
autoplaySpeed: 4000 에서 속도를 조절하시면 됩니다. 1000 = 1초
-->
<script type="text/javascript">
$('.slider_1').slick({
autoplay: true,
customPaging : function(slider_1, i) {
var thumb = $(slider_1.$slides[i]).data('thumb');
return ''+thumb+'';},
autoplaySpeed: 9000,
dots: false,
arrow: true,
infinite: true,
speed: 300,
cssEase: 'linear',
accessibility: false,
pauseOnHover: false,
});
</script>
</div>
</div>
</li>
<li id="anchorBoxId_12192" class="xans-record-">
<div class="box_design_main" onclick="window.location.href='/product/detail.html?product_no=12192&cate_no=1&display_group=5';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12192&cate_no=1&display_group=5" name="anchorBoxName_12192"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202507/cccf4b3ceff6f3cc059040539cf5a048.webp" id="eListPrdImage12192_5" alt="펀칭미니원피스-ops"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12192&cate_no=1&display_group=5';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12192&cate_no=1&display_group=5" class=""><span style="font-size:12px;color:#555555;">펀칭미니원피스-ops</span> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-4 xans-product-listitem xans-product-4 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:12px;color:#008BCC;font-weight:bold;">40,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_12187" class="xans-record-">
<div class="box_design_main" onclick="window.location.href='/product/detail.html?product_no=12187&cate_no=1&display_group=5';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12187&cate_no=1&display_group=5" name="anchorBoxName_12187"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202507/a2e7b358d576d30ec5451399228164c0.jpg" id="eListPrdImage12187_5" alt="스트라이프나시-n"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12187&cate_no=1&display_group=5';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12187&cate_no=1&display_group=5" class=""><span style="font-size:12px;color:#555555;">스트라이프나시-n</span> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-4 xans-product-listitem xans-product-4 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:12px;color:#008BCC;font-weight:bold;">22,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
</ul>
</div>
</div>
<!-- //추천상품 -->
<!-- [UPSELL] timesale -->
<upsell-widget-timesale data-widget-id="9426" data-content-center="false" style="--container-max-width: 1200px; --mobile-padding: 0 15px"></upsell-widget-timesale>
<!-- [UPSELL] timesale -->
<!-- [UPSELL] main-page -->
<upsell-widget-main-page data-widget-id="9423"></upsell-widget-main-page>
<!-- [UPSELL] main-page -->
<!-- //추천상품 -->
<div class="xans-element- xans-product xans-product-listmain-1 xans-product-listmain xans-product-1 ec-base-product new_item"><!--
$count = 6
※ 노출시킬 상품의 갯수를 숫자로 설정할 수 있으며, 설정하지 않을경우, 최대 200개로 자동제한됩니다.
※ 상품 노출갯수가 많으면 쇼핑몰에 부하가 발생할 수 있습니다.
-->
<div class="main_item_list">
<ul class="prdList grid3">
<li id="anchorBoxId_12190" class="xans-record-">
<div class="box_design_main new_padding" onclick="window.location.href='/product/detail.html?product_no=12190&cate_no=1&display_group=2';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12190&cate_no=1&display_group=2" name="anchorBoxName_12190"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202507/9d3e5ec9670e179a50bc6b7e4eccb7e6.webp" id="eListPrdImage12190_2" alt="테리단추나시-n"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12190&cate_no=1&display_group=2';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12190&cate_no=1&display_group=2" class=""><span style="font-size:11px;color:#222222;">테리단추나시-n</span> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-1 xans-product-listitem xans-product-1 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">38,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_12183" class="xans-record-">
<div class="box_design_main new_padding" onclick="window.location.href='/product/detail.html?product_no=12183&cate_no=1&display_group=2';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12183&cate_no=1&display_group=2" name="anchorBoxName_12183"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202507/19f51e933b35edc6e55603a1dd5686cb.webp" id="eListPrdImage12183_2" alt="벌룬바스락블라우스-bl"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12183&cate_no=1&display_group=2';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12183&cate_no=1&display_group=2" class=""><span style="font-size:11px;color:#222222;">벌룬바스락블라우스-bl</span> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-1 xans-product-listitem xans-product-1 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">43,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_12189" class="xans-record-">
<div class="box_design_main new_padding" onclick="window.location.href='/product/detail.html?product_no=12189&cate_no=1&display_group=2';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12189&cate_no=1&display_group=2" name="anchorBoxName_12189"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202507/f311c1bd69cf1a8e510a57b628251324.webp" id="eListPrdImage12189_2" alt="[signaturefit♥] 피그박시반팔티-t"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12189&cate_no=1&display_group=2';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12189&cate_no=1&display_group=2" class=""><span style="font-size:11px;color:#222222;">[signaturefit♥] 피그박시반팔티-t</span> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-1 xans-product-listitem xans-product-1 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">39,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_12174" class="xans-record-">
<div class="box_design_main new_padding" onclick="window.location.href='/product/detail.html?product_no=12174&cate_no=1&display_group=2';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12174&cate_no=1&display_group=2" name="anchorBoxName_12174"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202507/64f7739c705ea75f58f24883ca786b13.webp" id="eListPrdImage12174_2" alt="하와이피그박시나시-n"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12174&cate_no=1&display_group=2';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12174&cate_no=1&display_group=2" class=""><span style="font-size:11px;color:#222222;">하와이피그박시나시-n</span> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-1 xans-product-listitem xans-product-1 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">29,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_12191" class="xans-record-">
<div class="box_design_main new_padding" onclick="window.location.href='/product/detail.html?product_no=12191&cate_no=1&display_group=2';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12191&cate_no=1&display_group=2" name="anchorBoxName_12191"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202507/b581804147eb9fd413b905f71b59ad9a.jpg" id="eListPrdImage12191_2" alt="테리버뮤다팬츠-p"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12191&cate_no=1&display_group=2';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12191&cate_no=1&display_group=2" class=""><span style="font-size:11px;color:#222222;">테리버뮤다팬츠-p</span> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-1 xans-product-listitem xans-product-1 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">49,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_12188" class="xans-record-">
<div class="box_design_main new_padding" onclick="window.location.href='/product/detail.html?product_no=12188&cate_no=1&display_group=2';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12188&cate_no=1&display_group=2" name="anchorBoxName_12188"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202507/d0b07d9bf33e16e0b14aed260d99abc3.webp" id="eListPrdImage12188_2" alt="텐셀와플스커트-sk ㅣ 화이트"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12188&cate_no=1&display_group=2';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12188&cate_no=1&display_group=2" class=""><span style="font-size:11px;color:#222222;">텐셀와플스커트-sk ㅣ 화이트</span> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-1 xans-product-listitem xans-product-1 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">28,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
</ul>
</div>
</div>
<!-- //추천상품 -->
</div>
<!-- BEST -->
<div class="xans-element- xans-product xans-product-listmain-11 xans-product-listmain xans-product-11 ec-base-product new_item"><!--
$count = 8
※ 노출시킬 상품의 갯수를 숫자로 설정할 수 있으며, 설정하지 않을경우, 최대 200개로 자동제한됩니다.
※ 상품 노출갯수가 많으면 쇼핑몰에 부하가 발생할 수 있습니다.
-->
<p id="all_dot_title">best<br>product<br><img src="https://cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/_dj/img/s69_title_dot.jpg"></p>
<div class="main_item_list">
<ul class="prdList grid4">
<li id="anchorBoxId_12175" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12175&cate_no=1&display_group=12';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12175&cate_no=1&display_group=12" name="anchorBoxName_12175"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202507/7f9adc555acde8172338ce09a9c5fa40.webp" id="eListPrdImage12175_12" alt="스트라이프 비키니"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12175&cate_no=1&display_group=12';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12175&cate_no=1&display_group=12" class=""><span style="font-size:11px;color:#111111;">스트라이프 비키니</span> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-11 xans-product-listitem xans-product-11 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#111111;font-weight:bold;">29,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
<li class=" xans-record-">
<p class="title2 displaynone"></p></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_12084" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12084&cate_no=1&display_group=12';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12084&cate_no=1&display_group=12" name="anchorBoxName_12084"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202506/a9c934f8524f51d593b528a6dd5a2f3f.webp" id="eListPrdImage12084_12" alt="피그먼트반팔티-t"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12084&cate_no=1&display_group=12';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12084&cate_no=1&display_group=12" class=""><span style="font-size:11px;color:#111111;">피그먼트반팔티-t</span> <img src="https://cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/upload/custom_60.gif" alt="" /> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-11 xans-product-listitem xans-product-11 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#111111;font-weight:bold;">31,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
<li class=" xans-record-">
<p class="title2 displaynone"></p></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_12034" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12034&cate_no=1&display_group=12';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12034&cate_no=1&display_group=12" name="anchorBoxName_12034"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202505/29f364ec119c4fa68fa314391aa83041.jpg" id="eListPrdImage12034_12" alt="이히프-t"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12034&cate_no=1&display_group=12';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12034&cate_no=1&display_group=12" class=""><span style="font-size:11px;color:#111111;">이히프-t</span> <img src="https://cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/upload/custom_60.gif" alt="" /> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-11 xans-product-listitem xans-product-11 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#111111;font-weight:bold;">39,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
<li class=" xans-record-">
<p class="title2 displaynone"></p></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_12045" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12045&cate_no=1&display_group=12';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12045&cate_no=1&display_group=12" name="anchorBoxName_12045"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202505/d27d9acc1c5e50e793498ddfffe30567.jpg" id="eListPrdImage12045_12" alt="구니크-ops"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12045&cate_no=1&display_group=12';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12045&cate_no=1&display_group=12" class=""><span style="font-size:11px;color:#111111;">구니크-ops</span> <img src="https://cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/upload/custom_60.gif" alt="" /> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-11 xans-product-listitem xans-product-11 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#111111;font-weight:bold;">27,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
<li class=" xans-record-">
<p class="title2 displaynone"></p></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_12046" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12046&cate_no=1&display_group=12';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12046&cate_no=1&display_group=12" name="anchorBoxName_12046"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202505/b455dd42921bbee12dda2edddbde0ebb.webp" id="eListPrdImage12046_12" alt="찰랑찰랑-set"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12046&cate_no=1&display_group=12';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12046&cate_no=1&display_group=12" class=""><span style="font-size:11px;color:#111111;">찰랑찰랑-set</span> <img src="https://cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/upload/custom_60.gif" alt="" /> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-11 xans-product-listitem xans-product-11 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#111111;font-weight:bold;">28,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
<li class=" xans-record-">
<p class="title2 displaynone"></p></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_12069" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12069&cate_no=1&display_group=12';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12069&cate_no=1&display_group=12" name="anchorBoxName_12069"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202505/c78ff58ab1a2f4580bfc0fa90d3d823e.webp" id="eListPrdImage12069_12" alt="스트반팔티-t"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12069&cate_no=1&display_group=12';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12069&cate_no=1&display_group=12" class=""><span style="font-size:11px;color:#111111;">스트반팔티-t</span> <img src="https://cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/upload/custom_60.gif" alt="" /> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-11 xans-product-listitem xans-product-11 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#111111;font-weight:bold;">28,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
<li class=" xans-record-">
<p class="title2 displaynone"></p></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_11435" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=11435&cate_no=1&display_group=12';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=11435&cate_no=1&display_group=12" name="anchorBoxName_11435"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202408/df09efd289e6f72521fff00624a6c9e6.webp" id="eListPrdImage11435_12" alt="크로셰-nb"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=11435&cate_no=1&display_group=12';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=11435&cate_no=1&display_group=12" class=""><span style="font-size:11px;color:#111111;">크로셰-nb</span> <img src="https://cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/upload/custom_60.gif" alt="" /> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-11 xans-product-listitem xans-product-11 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#111111;font-weight:bold;">55,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
<li class=" xans-record-">
<p class="title2 displaynone"></p></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_11967" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=11967&cate_no=1&display_group=12';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=11967&cate_no=1&display_group=12" name="anchorBoxName_11967"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202504/bac61f6fb4ee0ddad304791d5798da77.jpg" id="eListPrdImage11967_12" alt="헤므-p ㅣ 레몬"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=11967&cate_no=1&display_group=12';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=11967&cate_no=1&display_group=12" class=""><span style="font-size:11px;color:#111111;">헤므-p ㅣ 레몬</span> <img src="https://cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/upload/custom_60.gif" alt="" /> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-11 xans-product-listitem xans-product-11 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#111111;font-weight:bold;">33,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
<li class=" xans-record-">
<p class="title2 displaynone"></p></li>
</ul>
</div>
</div>
</div>
</li>
</ul>
</div>
</div>
<!-- //BEST -->
<!-- //신상품 -->
<div class="xans-element- xans-product xans-product-listmain-2 xans-product-listmain xans-product-2 ec-base-product new_item"><!--
$count = 100
※ 노출시킬 상품의 갯수를 숫자로 설정할 수 있으며, 설정하지 않을경우, 최대 200개로 자동제한됩니다.
※ 상품 노출갯수가 많으면 쇼핑몰에 부하가 발생할 수 있습니다.
-->
<p id="all_dot_title">more<br>items<br><img src="https://cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/_dj/img/s69_title_dot.jpg"></p>
<div class="main_item_list">
<ul class="prdList grid4">
<li id="anchorBoxId_12192" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12192&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12192&cate_no=1&display_group=3" name="anchorBoxName_12192"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202507/cccf4b3ceff6f3cc059040539cf5a048.webp" id="eListPrdImage12192_3" alt="펀칭미니원피스-ops"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12192&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12192&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">펀칭미니원피스-ops</span> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">40,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_12191" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12191&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12191&cate_no=1&display_group=3" name="anchorBoxName_12191"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202507/b581804147eb9fd413b905f71b59ad9a.jpg" id="eListPrdImage12191_3" alt="테리버뮤다팬츠-p"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12191&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12191&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">테리버뮤다팬츠-p</span> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">49,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_12189" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12189&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12189&cate_no=1&display_group=3" name="anchorBoxName_12189"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202507/f311c1bd69cf1a8e510a57b628251324.webp" id="eListPrdImage12189_3" alt="[signaturefit♥] 피그박시반팔티-t"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12189&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12189&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">[signaturefit♥] 피그박시반팔티-t</span> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">39,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_12187" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12187&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12187&cate_no=1&display_group=3" name="anchorBoxName_12187"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202507/a2e7b358d576d30ec5451399228164c0.jpg" id="eListPrdImage12187_3" alt="스트라이프나시-n"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12187&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12187&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">스트라이프나시-n</span> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">22,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_12190" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12190&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12190&cate_no=1&display_group=3" name="anchorBoxName_12190"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202507/9d3e5ec9670e179a50bc6b7e4eccb7e6.webp" id="eListPrdImage12190_3" alt="테리단추나시-n"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12190&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12190&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">테리단추나시-n</span> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">38,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_12182" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12182&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12182&cate_no=1&display_group=3" name="anchorBoxName_12182"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202507/b48e66021cdd932b05ff559e0b735127.webp" id="eListPrdImage12182_3" alt="도트오버롤팬츠-p"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12182&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12182&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">도트오버롤팬츠-p</span> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">68,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_12188" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12188&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12188&cate_no=1&display_group=3" name="anchorBoxName_12188"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202507/d0b07d9bf33e16e0b14aed260d99abc3.webp" id="eListPrdImage12188_3" alt="텐셀와플스커트-sk ㅣ 화이트"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12188&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12188&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">텐셀와플스커트-sk ㅣ 화이트</span> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">28,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_12185" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12185&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12185&cate_no=1&display_group=3" name="anchorBoxName_12185"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202507/9f4a4b0100097d8401becbb7e6312bd6.jpg" id="eListPrdImage12185_3" alt="단가라끈나시-n"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12185&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12185&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">단가라끈나시-n</span> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">18,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_12183" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12183&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12183&cate_no=1&display_group=3" name="anchorBoxName_12183"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202507/19f51e933b35edc6e55603a1dd5686cb.webp" id="eListPrdImage12183_3" alt="벌룬바스락블라우스-bl"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12183&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12183&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">벌룬바스락블라우스-bl</span> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">43,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_12181" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12181&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12181&cate_no=1&display_group=3" name="anchorBoxName_12181"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202507/5ca448368caa7c35f187ef7d1d7e122c.jpg" id="eListPrdImage12181_3" alt="데일리맥시롱스커트-sk"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12181&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12181&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">데일리맥시롱스커트-sk</span> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">29,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_12186" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12186&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12186&cate_no=1&display_group=3" name="anchorBoxName_12186"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202507/7093c5540bc8a29eb311fa96388f54fa.webp" id="eListPrdImage12186_3" alt="H라인카고스커트-sk"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12186&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12186&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">H라인카고스커트-sk</span> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">57,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_12176" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12176&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12176&cate_no=1&display_group=3" name="anchorBoxName_12176"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202507/5a1178ec45e941e70bfad629403bdf3f.jpg" id="eListPrdImage12176_3" alt="더블피그버뮤다팬츠-p ㅣ m - l size"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12176&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12176&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">더블피그버뮤다팬츠-p ㅣ m - l size</span> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">43,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_12180" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12180&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12180&cate_no=1&display_group=3" name="anchorBoxName_12180"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202507/ed38de2dc7a4cf850216ac5a3485c0c3.jpg" id="eListPrdImage12180_3" alt="캘리포니아반팔티-t"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12180&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12180&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">캘리포니아반팔티-t</span> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">22,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_12184" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12184&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12184&cate_no=1&display_group=3" name="anchorBoxName_12184"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202507/6e93d83d68fc8e65b0a75da1ae226dcb.jpg" id="eListPrdImage12184_3" alt="플리츠밴딩팬츠-p"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12184&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12184&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">플리츠밴딩팬츠-p</span> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">41,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_12179" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12179&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12179&cate_no=1&display_group=3" name="anchorBoxName_12179"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202507/ca413426b63279df80e17c4633927ebf.jpg" id="eListPrdImage12179_3" alt="땡땡이박시원피스-ops"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12179&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12179&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">땡땡이박시원피스-ops</span> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">40,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_12175" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12175&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12175&cate_no=1&display_group=3" name="anchorBoxName_12175"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202507/7f9adc555acde8172338ce09a9c5fa40.webp" id="eListPrdImage12175_3" alt="스트라이프 비키니"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12175&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12175&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">스트라이프 비키니</span> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">29,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_12177" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12177&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12177&cate_no=1&display_group=3" name="anchorBoxName_12177"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202507/d2aad37933b84a838e831f4df482be43.webp" id="eListPrdImage12177_3" alt="썸머박시블라우스-bl"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12177&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12177&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">썸머박시블라우스-bl</span> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">39,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_12173" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12173&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12173&cate_no=1&display_group=3" name="anchorBoxName_12173"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202507/cbd74f004d543739f7baf80c932d9c39.webp" id="eListPrdImage12173_3" alt="플라워썸머롱팬츠-p"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12173&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12173&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">플라워썸머롱팬츠-p</span> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">39,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_12174" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12174&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12174&cate_no=1&display_group=3" name="anchorBoxName_12174"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202507/64f7739c705ea75f58f24883ca786b13.webp" id="eListPrdImage12174_3" alt="하와이피그박시나시-n"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12174&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12174&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">하와이피그박시나시-n</span> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">29,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_12178" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12178&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12178&cate_no=1&display_group=3" name="anchorBoxName_12178"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202507/5cb4768549e26bf797022e35528ed932.jpg" id="eListPrdImage12178_3" alt="린넨배기팬츠-p"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12178&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12178&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">린넨배기팬츠-p</span> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">44,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_12172" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12172&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12172&cate_no=1&display_group=3" name="anchorBoxName_12172"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202507/e1f7a5cc1c758d62210486bd2124a64b.jpg" id="eListPrdImage12172_3" alt="플로리다루즈반팔티-t"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12172&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12172&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">플로리다루즈반팔티-t</span> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">25,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_12164" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12164&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12164&cate_no=1&display_group=3" name="anchorBoxName_12164"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202507/4a214ded757f844f12300dcaf5b82edc.webp" id="eListPrdImage12164_3" alt="16수프린팅반팔티-t"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12164&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12164&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">16수프린팅반팔티-t</span> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">29,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_12170" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12170&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12170&cate_no=1&display_group=3" name="anchorBoxName_12170"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202507/700af1572e119c91b826e52394b7dd58.jpg" id="eListPrdImage12170_3" alt="텐셀홀터끈나시-n"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12170&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12170&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">텐셀홀터끈나시-n</span> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">24,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_12167" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12167&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12167&cate_no=1&display_group=3" name="anchorBoxName_12167"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202507/7b9355c2e44724b6fed7adf018cf14ae.webp" id="eListPrdImage12167_3" alt="어깨패드박시반팔티-t"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12167&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12167&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">어깨패드박시반팔티-t</span> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">43,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_12166" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12166&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12166&cate_no=1&display_group=3" name="anchorBoxName_12166"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202507/600d3021dc83bbdf4d0aba1033984280.jpg" id="eListPrdImage12166_3" alt="플라워폴리원피스-ops"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12166&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12166&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">플라워폴리원피스-ops</span> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">40,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_12165" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12165&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12165&cate_no=1&display_group=3" name="anchorBoxName_12165"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202507/17c5714a20567f8a8ebca4490d643172.jpg" id="eListPrdImage12165_3" alt="5부플리츠팬츠-p"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12165&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12165&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">5부플리츠팬츠-p</span> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">32,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_12171" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12171&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12171&cate_no=1&display_group=3" name="anchorBoxName_12171"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202507/1286adff561561ed3223115622cf6032.webp" id="eListPrdImage12171_3" alt="텐셀와플스커트-sk ㅣ 블랙"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12171&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12171&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">텐셀와플스커트-sk ㅣ 블랙</span> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">28,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_12168" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12168&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12168&cate_no=1&display_group=3" name="anchorBoxName_12168"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202507/bede72f3c270fe7984e51a4ae6a1a4fb.jpg" id="eListPrdImage12168_3" alt="린넨데님와이드팬츠-p ㅣ s - xl size ㅣ 진청"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12168&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12168&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">린넨데님와이드팬츠-p ㅣ s - xl size ㅣ 진청</span> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">39,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_12169" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12169&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12169&cate_no=1&display_group=3" name="anchorBoxName_12169"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202507/429604f0e751b7c5d1cf83666bb7157b.jpg" id="eListPrdImage12169_3" alt="포켓스판데님팬츠-p ㅣ s - xl size ㅣ 흑청"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12169&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12169&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">포켓스판데님팬츠-p ㅣ s - xl size ㅣ 흑청</span> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">39,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_12163" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12163&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12163&cate_no=1&display_group=3" name="anchorBoxName_12163"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202506/ac230b705786ab432717b0bd87de6991.webp" id="eListPrdImage12163_3" alt="후드바람막이 점퍼-jp"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12163&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12163&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">후드바람막이 점퍼-jp</span> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">44,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_12162" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12162&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12162&cate_no=1&display_group=3" name="anchorBoxName_12162"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202506/30bb78c17c5873738a2aebce49833d35.webp" id="eListPrdImage12162_3" alt="코튼린넨점프수트"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12162&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12162&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">코튼린넨점프수트</span> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">68,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_12161" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12161&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12161&cate_no=1&display_group=3" name="anchorBoxName_12161"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202506/96f72b40bd2d38cf142308ff5383741c.webp" id="eListPrdImage12161_3" alt="롱기장피그나시-n"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12161&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12161&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">롱기장피그나시-n</span> <img src="https://cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/upload/custom_60.gif" alt="" /> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">29,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_12160" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12160&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12160&cate_no=1&display_group=3" name="anchorBoxName_12160"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202506/228d3e2d932772f91900ce278871bec4.webp" id="eListPrdImage12160_3" alt="브이코튼원피스-ops"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12160&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12160&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">브이코튼원피스-ops</span> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">28,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_12159" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12159&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12159&cate_no=1&display_group=3" name="anchorBoxName_12159"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202506/b3b6a4aee44b52a71d0db672a70da695.jpg" id="eListPrdImage12159_3" alt="바스락숏팬츠-p"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12159&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12159&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">바스락숏팬츠-p</span> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">27,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_12157" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12157&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12157&cate_no=1&display_group=3" name="anchorBoxName_12157"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202506/357d6d808a3357b4e8e05b32dc6f71a4.webp" id="eListPrdImage12157_3" alt="포켓스판데님팬츠-p ㅣ s - xl size"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12157&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12157&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">포켓스판데님팬츠-p ㅣ s - xl size</span> <img src="https://cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/upload/custom_60.gif" alt="" /> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">39,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_12155" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12155&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12155&cate_no=1&display_group=3" name="anchorBoxName_12155"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202506/8df6e2d16469b181a067acbb25029a39.jpg" id="eListPrdImage12155_3" alt="스터프레터링반팔티-t"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12155&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12155&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">스터프레터링반팔티-t</span> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">17,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_12158" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12158&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12158&cate_no=1&display_group=3" name="anchorBoxName_12158"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202506/5c42ce671ccf8b701e7404164fa6275c.jpg" id="eListPrdImage12158_3" alt="셔링바스락밴딩나시-n"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12158&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12158&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">셔링바스락밴딩나시-n</span> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">26,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_12156" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12156&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12156&cate_no=1&display_group=3" name="anchorBoxName_12156"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202506/6e74c7b4155db7bc86ee574ed4f8d368.jpg" id="eListPrdImage12156_3" alt="단가라박시반팔티-t"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12156&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12156&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">단가라박시반팔티-t</span> <img src="https://cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/upload/custom_60.gif" alt="" /> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">32,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_12154" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12154&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12154&cate_no=1&display_group=3" name="anchorBoxName_12154"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202506/0e85bbbeb12eef88db285fd6aa40c51a.jpg" id="eListPrdImage12154_3" alt="바스락썸머숏팬츠-p ㅣ 소라"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12154&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12154&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">바스락썸머숏팬츠-p ㅣ 소라</span> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">27,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_12153" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12153&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12153&cate_no=1&display_group=3" name="anchorBoxName_12153"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202506/cb65532f8ed490762e488d32e11721d5.jpg" id="eListPrdImage12153_3" alt="버튼린넨원피스-ops"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12153&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12153&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">버튼린넨원피스-ops</span> <img src="https://cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/upload/custom_60.gif" alt="" /> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">52,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_12146" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12146&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12146&cate_no=1&display_group=3" name="anchorBoxName_12146"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202506/7d98bd9dcf4555707a7be22990b68160.webp" id="eListPrdImage12146_3" alt="베이직박시나시-n"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12146&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12146&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">베이직박시나시-n</span> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">22,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_12149" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12149&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12149&cate_no=1&display_group=3" name="anchorBoxName_12149"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202506/42de8f6b24e1a4c5e87fc693d123f5b4.jpg" id="eListPrdImage12149_3" alt="바스락썸머숏팬츠-p ㅣ 연퍼플"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12149&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12149&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">바스락썸머숏팬츠-p ㅣ 연퍼플</span> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">27,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_12150" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12150&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12150&cate_no=1&display_group=3" name="anchorBoxName_12150"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202506/7a9b5021cfc3b8f470e2a24d530a1e30.jpg" id="eListPrdImage12150_3" alt="단가라롱박시원피스-ops"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12150&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12150&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">단가라롱박시원피스-ops</span> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">21,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_12147" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12147&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12147&cate_no=1&display_group=3" name="anchorBoxName_12147"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202506/916519f0f166fabe60df10dc372ecd84.jpg" id="eListPrdImage12147_3" alt="린넨데님와이드팬츠-p ㅣ s - xl size ㅣ 연청"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12147&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12147&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">린넨데님와이드팬츠-p ㅣ s - xl size ㅣ 연청</span> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">39,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_12148" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12148&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12148&cate_no=1&display_group=3" name="anchorBoxName_12148"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202506/ffc0d889dfc5b7959efd53e44bc67996.webp" id="eListPrdImage12148_3" alt="단가라카라반팔티-t ㅣ 어깨패드"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12148&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12148&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">단가라카라반팔티-t ㅣ 어깨패드</span> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">34,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_12139" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12139&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12139&cate_no=1&display_group=3" name="anchorBoxName_12139"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202506/4bd9ec5be78c2266e18ff770c67fefd7.webp" id="eListPrdImage12139_3" alt="나일론A라인스커트-sk ㅣ s - m size"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12139&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12139&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">나일론A라인스커트-sk ㅣ s - m size</span> <img src="https://cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/upload/custom_60.gif" alt="" /> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">55,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_12141" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12141&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12141&cate_no=1&display_group=3" name="anchorBoxName_12141"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202506/966002cddd5745c0acd8d2f8649038c3.jpg" id="eListPrdImage12141_3" alt="캐롤라이나박시반팔티-t"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12141&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12141&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">캐롤라이나박시반팔티-t</span> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">29,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_12140" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12140&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12140&cate_no=1&display_group=3" name="anchorBoxName_12140"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202506/14e00758e5dea79ab24282858fe6d2bb.webp" id="eListPrdImage12140_3" alt="플라워퍼프원피스-ops"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12140&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12140&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">플라워퍼프원피스-ops</span> <img src="https://cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/upload/custom_60.gif" alt="" /> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">49,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_12144" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12144&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12144&cate_no=1&display_group=3" name="anchorBoxName_12144"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202506/7de2ad3de6956da400237e0a113b2a78.webp" id="eListPrdImage12144_3" alt="포켓로고버뮤다팬츠-p"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12144&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12144&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">포켓로고버뮤다팬츠-p</span> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">51,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_12145" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12145&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12145&cate_no=1&display_group=3" name="anchorBoxName_12145"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202506/1132e06ce7cab7d5ed4b0143d6be8af8.jpg" id="eListPrdImage12145_3" alt="위리어스루즈긴팔티-t"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12145&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12145&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">위리어스루즈긴팔티-t</span> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">19,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_12142" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12142&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12142&cate_no=1&display_group=3" name="anchorBoxName_12142"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202506/ddee6935b137714259c4d20a336dcaab.jpg" id="eListPrdImage12142_3" alt="빈티지캐릭터반팔티-t"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12142&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12142&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">빈티지캐릭터반팔티-t</span> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">21,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_12138" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12138&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12138&cate_no=1&display_group=3" name="anchorBoxName_12138"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202506/18868caf3cab7c5a81264f691ad1eda0.jpg" id="eListPrdImage12138_3" alt="랜드박시반팔티-t"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12138&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12138&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">랜드박시반팔티-t</span> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">22,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_12137" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12137&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12137&cate_no=1&display_group=3" name="anchorBoxName_12137"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202506/9903089160d5656d5088937240d1e4d4.jpg" id="eListPrdImage12137_3" alt="프릴맥시스커트-sk"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12137&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12137&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">프릴맥시스커트-sk</span> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">67,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_12134" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12134&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12134&cate_no=1&display_group=3" name="anchorBoxName_12134"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202506/e5e8c0b78bcc35b092b810ea80ded6b6.jpg" id="eListPrdImage12134_3" alt="텐셀스트라이프셔츠-nb"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12134&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12134&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">텐셀스트라이프셔츠-nb</span> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">53,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_12136" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12136&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12136&cate_no=1&display_group=3" name="anchorBoxName_12136"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202506/952c5249e57e5fe637e8d67fd4e64735.jpg" id="eListPrdImage12136_3" alt="플래쉬피그나시-n ㅣ 코랄핑크"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12136&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12136&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">플래쉬피그나시-n ㅣ 코랄핑크</span> <img src="https://cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/upload/custom_60.gif" alt="" /> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">28,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_12131" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12131&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12131&cate_no=1&display_group=3" name="anchorBoxName_12131"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202506/7728e4ab9b207e7a8271dbd7fb727433.webp" id="eListPrdImage12131_3" alt="데끼버뮤다팬츠-p"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12131&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12131&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">데끼버뮤다팬츠-p</span> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">33,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_12132" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12132&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12132&cate_no=1&display_group=3" name="anchorBoxName_12132"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202506/b94e426e9bb84f5478555eae77422407.webp" id="eListPrdImage12132_3" alt="데이코튼반팔티-t"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12132&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12132&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">데이코튼반팔티-t</span> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">22,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_12129" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12129&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12129&cate_no=1&display_group=3" name="anchorBoxName_12129"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202506/12795741859acbc803d2877a1f7469a0.webp" id="eListPrdImage12129_3" alt="딸기홈웨어세트-set"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12129&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12129&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">딸기홈웨어세트-set</span> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">51,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_12128" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12128&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12128&cate_no=1&display_group=3" name="anchorBoxName_12128"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202506/8e450f5c0d434b32084ca7c8d3b18be2.jpg" id="eListPrdImage12128_3" alt="펀칭롱스커트-sk"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12128&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12128&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">펀칭롱스커트-sk</span> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">48,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_12133" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12133&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12133&cate_no=1&display_group=3" name="anchorBoxName_12133"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202506/24a6bdfad63007df46ebae355039a59b.jpg" id="eListPrdImage12133_3" alt="밑단레이스밴딩팬츠-p"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12133&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12133&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">밑단레이스밴딩팬츠-p</span> <img src="https://cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/upload/custom_60.gif" alt="" /> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">36,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_12114" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12114&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12114&cate_no=1&display_group=3" name="anchorBoxName_12114"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202506/599d03676385c4bb5307766cfe487a71.jpg" id="eListPrdImage12114_3" alt="테릭피그반팔티-t"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12114&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12114&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">테릭피그반팔티-t</span> <img src="https://cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/upload/custom_60.gif" alt="" /> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">29,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_12127" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12127&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12127&cate_no=1&display_group=3" name="anchorBoxName_12127"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202506/ea0a57bafdc15531c2e1a738c6eea947.webp" id="eListPrdImage12127_3" alt="언발프릴블라우스-bl"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12127&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12127&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">언발프릴블라우스-bl</span> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">39,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_12122" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12122&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12122&cate_no=1&display_group=3" name="anchorBoxName_12122"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202506/5f8e12e17674c9b449bb8bb75d1f6072.jpg" id="eListPrdImage12122_3" alt="샤브이-nb ㅣ 블루"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12122&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12122&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">샤브이-nb ㅣ 블루</span> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">56,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_12126" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12126&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12126&cate_no=1&display_group=3" name="anchorBoxName_12126"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202506/a6f8d5e651b977db181a167ecb173d19.webp" id="eListPrdImage12126_3" alt="패치버뮤다팬츠-p"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12126&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12126&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">패치버뮤다팬츠-p</span> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">39,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_12117" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12117&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12117&cate_no=1&display_group=3" name="anchorBoxName_12117"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202506/e88a7b92adf76815d7683c55c60a9e5e.jpg" id="eListPrdImage12117_3" alt="자수레이스숏팬츠-p"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12117&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12117&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">자수레이스숏팬츠-p</span> <img src="https://cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/upload/custom_60.gif" alt="" /> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">36,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_12120" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12120&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12120&cate_no=1&display_group=3" name="anchorBoxName_12120"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202506/45f6e75275c19451a5b28030d23066cb.jpg" id="eListPrdImage12120_3" alt="스트라이프롱팬츠-p"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12120&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12120&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">스트라이프롱팬츠-p</span> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">37,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_12125" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12125&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12125&cate_no=1&display_group=3" name="anchorBoxName_12125"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202506/dfdc3cc2d26149b3d883a338b076261b.jpg" id="eListPrdImage12125_3" alt="라몬즈루즈핏반팔티-t"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12125&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12125&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">라몬즈루즈핏반팔티-t</span> <img src="https://cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/upload/custom_60.gif" alt="" /> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">50,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_12115" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12115&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12115&cate_no=1&display_group=3" name="anchorBoxName_12115"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202506/012b3bf01ed7ab35c1d9100f99951494.jpg" id="eListPrdImage12115_3" alt="프릴도트롱스커트-sk"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12115&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12115&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">프릴도트롱스커트-sk</span> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">69,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_12113" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12113&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12113&cate_no=1&display_group=3" name="anchorBoxName_12113"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202506/9a6e4df04824bb92f5450553f53f5571.jpg" id="eListPrdImage12113_3" alt="피그오버핏나시-n"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12113&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12113&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">피그오버핏나시-n</span> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">28,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_12124" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12124&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12124&cate_no=1&display_group=3" name="anchorBoxName_12124"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202506/0e465ba729154f760764a163121966f4.jpg" id="eListPrdImage12124_3" alt="심플스판나시-n ㅣ 카키"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12124&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12124&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">심플스판나시-n ㅣ 카키</span> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">26,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_12116" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12116&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12116&cate_no=1&display_group=3" name="anchorBoxName_12116"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202506/c0bb8b287ffa07ad996ec378b00d84ad.webp" id="eListPrdImage12116_3" alt="위캔프린팅반팔티-t"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12116&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12116&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">위캔프린팅반팔티-t</span> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">25,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_12123" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12123&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12123&cate_no=1&display_group=3" name="anchorBoxName_12123"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202506/a76a5bcbd6e61e5a9961787a56818dad.jpg" id="eListPrdImage12123_3" alt="샤브이-p"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12123&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12123&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">샤브이-p</span> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">32,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_12119" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12119&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12119&cate_no=1&display_group=3" name="anchorBoxName_12119"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202506/fa0dbf022844c7eca3cedb2fb7044899.jpg" id="eListPrdImage12119_3" alt="코튼나염반팔티-t"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12119&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12119&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">코튼나염반팔티-t</span> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">24,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_12111" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12111&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12111&cate_no=1&display_group=3" name="anchorBoxName_12111"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202506/9c16cf170ff953af898f296335bf0773.jpg" id="eListPrdImage12111_3" alt="피그루즈핏반팔티-t"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12111&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12111&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">피그루즈핏반팔티-t</span> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">32,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_12110" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12110&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12110&cate_no=1&display_group=3" name="anchorBoxName_12110"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202506/2240df241139f3e6d93288c0c121e12c.webp" id="eListPrdImage12110_3" alt="자수하프피그팬츠-p"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12110&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12110&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">자수하프피그팬츠-p</span> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">49,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_12107" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12107&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12107&cate_no=1&display_group=3" name="anchorBoxName_12107"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202506/6612c34583929d2ea619ae9d08089604.webp" id="eListPrdImage12107_3" alt="엠보싱미니원피스-ops"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12107&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12107&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">엠보싱미니원피스-ops</span> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">69,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_12105" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12105&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12105&cate_no=1&display_group=3" name="anchorBoxName_12105"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202506/beab563185eb2ff541d57a9fd5426675.jpg" id="eListPrdImage12105_3" alt="레이어드더블반팔티-t"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12105&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12105&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">레이어드더블반팔티-t</span> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">44,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_12109" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12109&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12109&cate_no=1&display_group=3" name="anchorBoxName_12109"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202506/c541630b25e35af1cfb91b2803119b2b.webp" id="eListPrdImage12109_3" alt="심플스판나시-n ㅣ 네이비"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12109&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12109&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">심플스판나시-n ㅣ 네이비</span> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">26,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_12108" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12108&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12108&cate_no=1&display_group=3" name="anchorBoxName_12108"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202506/2c37f9e953a46f9d9ffe384d4e4a3431.jpg" id="eListPrdImage12108_3" alt="캉캉코튼원피스-ops"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12108&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12108&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">캉캉코튼원피스-ops</span> <img src="https://cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/upload/custom_60.gif" alt="" /> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">36,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_12112" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12112&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12112&cate_no=1&display_group=3" name="anchorBoxName_12112"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202506/3d9aa4f7de8d5466fba54de9aac953c6.webp" id="eListPrdImage12112_3" alt="미니프릴스커트-sk ㅣ 바지안감"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12112&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12112&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">미니프릴스커트-sk ㅣ 바지안감</span> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">28,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_12099" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12099&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12099&cate_no=1&display_group=3" name="anchorBoxName_12099"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202506/50b94bb2aa314fa81e52e4babcbeb949.webp" id="eListPrdImage12099_3" alt="스판찰랑반팔긴바지-set"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12099&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12099&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">스판찰랑반팔긴바지-set</span> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">41,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_12100" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12100&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12100&cate_no=1&display_group=3" name="anchorBoxName_12100"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202506/fc8673f02131ca4a6a7dc83313c59277.jpg" id="eListPrdImage12100_3" alt="99박시반팔티-t"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12100&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12100&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">99박시반팔티-t</span> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">36,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_12104" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12104&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12104&cate_no=1&display_group=3" name="anchorBoxName_12104"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202506/73b747922902de8626cab0229af56a9f.jpg" id="eListPrdImage12104_3" alt="배색라인원피스-ops"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12104&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12104&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">배색라인원피스-ops</span> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">26,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_12101" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12101&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12101&cate_no=1&display_group=3" name="anchorBoxName_12101"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202506/5d6e87edea77065a03befc13656f870a.webp" id="eListPrdImage12101_3" alt="뒷꼬임나시-n"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12101&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12101&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">뒷꼬임나시-n</span> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">22,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_12098" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12098&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12098&cate_no=1&display_group=3" name="anchorBoxName_12098"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202506/9515e66ddb4b1342ff6d39a3b8dde445.jpg" id="eListPrdImage12098_3" alt="피그나염반팔티-t"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12098&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12098&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">피그나염반팔티-t</span> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">39,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_12093" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12093&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12093&cate_no=1&display_group=3" name="anchorBoxName_12093"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202506/1f58f6b7d8d5b656948835192fd8714c.webp" id="eListPrdImage12093_3" alt="쿨링스트라이프셔츠-nb"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12093&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12093&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">쿨링스트라이프셔츠-nb</span> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">61,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_12102" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12102&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12102&cate_no=1&display_group=3" name="anchorBoxName_12102"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202506/13a17d18ec031a78818d055e28161d78.jpg" id="eListPrdImage12102_3" alt="헤므-p ㅣ 핑크"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12102&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12102&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">헤므-p ㅣ 핑크</span> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">33,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_12097" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12097&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12097&cate_no=1&display_group=3" name="anchorBoxName_12097"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202506/ef4852692cdfbfd3bd2bb63fc0c30cc7.jpg" id="eListPrdImage12097_3" alt="퍼프박시블라우스-bl"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12097&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12097&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">퍼프박시블라우스-bl</span> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">50,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_12090" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12090&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12090&cate_no=1&display_group=3" name="anchorBoxName_12090"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202506/ddd2d702ecb00b805b3db04cd95eb9d4.webp" id="eListPrdImage12090_3" alt="피그먼트오아티-t"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12090&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12090&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">피그먼트오아티-t</span> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">41,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_12095" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12095&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12095&cate_no=1&display_group=3" name="anchorBoxName_12095"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202506/37a60b0780b4cd721fb9e317c83134d9.jpg" id="eListPrdImage12095_3" alt="프릴나시탑블라우스-bl"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12095&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12095&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">프릴나시탑블라우스-bl</span> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">36,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_12096" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12096&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12096&cate_no=1&display_group=3" name="anchorBoxName_12096"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202506/683a7f26013bae8025f32d3f7fe03229.webp" id="eListPrdImage12096_3" alt="나일론핀턱팬츠-p ㅣ 블랙"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12096&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12096&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">나일론핀턱팬츠-p ㅣ 블랙</span> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">31,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_12086" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12086&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12086&cate_no=1&display_group=3" name="anchorBoxName_12086"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202506/171db131684ec88bc63ca69efe76afa2.webp" id="eListPrdImage12086_3" alt="레이스긴팔블라우스-bl"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12086&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12086&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">레이스긴팔블라우스-bl</span> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">32,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_12094" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12094&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12094&cate_no=1&display_group=3" name="anchorBoxName_12094"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202506/c007f6f51f3acf9fdc3c4030c9064bbc.jpg" id="eListPrdImage12094_3" alt="쿨링스트라이프팬츠-p"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12094&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12094&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">쿨링스트라이프팬츠-p</span> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">33,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_12091" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12091&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12091&cate_no=1&display_group=3" name="anchorBoxName_12091"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202506/3231faac1dbcb67d49752fd471a22b18.jpg" id="eListPrdImage12091_3" alt="체크밴딩숏팬츠-p"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12091&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12091&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">체크밴딩숏팬츠-p</span> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">32,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_12084" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12084&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12084&cate_no=1&display_group=3" name="anchorBoxName_12084"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202506/a9c934f8524f51d593b528a6dd5a2f3f.webp" id="eListPrdImage12084_3" alt="피그먼트반팔티-t"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12084&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12084&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">피그먼트반팔티-t</span> <img src="https://cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/upload/custom_60.gif" alt="" /> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">31,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_12082" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12082&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12082&cate_no=1&display_group=3" name="anchorBoxName_12082"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202506/56b2cdc790e98f010fd3583a9ebd9392.jpg" id="eListPrdImage12082_3" alt="망사나시끈블라우스-bl"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12082&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12082&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">망사나시끈블라우스-bl</span> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">57,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_12088" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12088&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12088&cate_no=1&display_group=3" name="anchorBoxName_12088"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202506/9a929d6c736fbc73aee7d11fc24f981e.jpg" id="eListPrdImage12088_3" alt="나일론핀턱팬츠-p ㅣ 차콜"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12088&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12088&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">나일론핀턱팬츠-p ㅣ 차콜</span> <img src="https://cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/upload/custom_60.gif" alt="" /> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">31,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_12081" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12081&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12081&cate_no=1&display_group=3" name="anchorBoxName_12081"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202506/ad39cec5f9a56854c0e487e93d4904d3.webp" id="eListPrdImage12081_3" alt="카라크롭반팔티-t"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12081&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12081&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">카라크롭반팔티-t</span> <img src="https://cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/upload/custom_60.gif" alt="" /> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">32,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_12077" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12077&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12077&cate_no=1&display_group=3" name="anchorBoxName_12077"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202506/ace6978efed29b3977672530ee68c6bc.webp" id="eListPrdImage12077_3" alt="루즈핏롱원피스-ops"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12077&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12077&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">루즈핏롱원피스-ops</span> <img src="https://cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/upload/custom_60.gif" alt="" /> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">26,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_12078" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12078&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12078&cate_no=1&display_group=3" name="anchorBoxName_12078"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202506/dabb2cbe5bae3708fc1ca1253a4f631e.jpg" id="eListPrdImage12078_3" alt="단가라반팔티-t"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12078&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12078&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">단가라반팔티-t</span> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">29,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
</ul>
</div>
</div>
<!-- //신상품 -->
<!-- //shoes.bag -->
<div class="xans-element- xans-product xans-product-listmain-3 xans-product-listmain xans-product-3 ec-base-product new_item"><!--
$count = 16
※ 노출시킬 상품의 갯수를 숫자로 설정할 수 있으며, 설정하지 않을경우, 최대 200개로 자동제한됩니다.
※ 상품 노출갯수가 많으면 쇼핑몰에 부하가 발생할 수 있습니다.
-->
<p id="all_dot_title">shoes bag<br>acc items<br><img src="https://cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/_dj/img/s69_title_dot.jpg"></p>
<div class="main_item_list">
<ul class="prdList grid4">
<li id="anchorBoxId_12118" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12118&cate_no=1&display_group=4';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12118&cate_no=1&display_group=4" name="anchorBoxName_12118"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202506/a5e2f803de905f86f893bea72d837d74.jpg" id="eListPrdImage12118_4" alt="하트밀집 모자"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12118&cate_no=1&display_group=4';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12118&cate_no=1&display_group=4" class=""><span style="font-size:11px;color:#222222;">하트밀집 모자</span> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-3 xans-product-listitem xans-product-3 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">43,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_12103" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12103&cate_no=1&display_group=4';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12103&cate_no=1&display_group=4" name="anchorBoxName_12103"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202506/193e0b9d6d249d612b45d4f8b2e0df81.jpg" id="eListPrdImage12103_4" alt="빈티지스냅백 모자"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12103&cate_no=1&display_group=4';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12103&cate_no=1&display_group=4" class=""><span style="font-size:11px;color:#222222;">빈티지스냅백 모자</span> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-3 xans-product-listitem xans-product-3 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">18,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_12087" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12087&cate_no=1&display_group=4';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12087&cate_no=1&display_group=4" name="anchorBoxName_12087"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202506/181a1b37daecf614c9ac6517eb024e2e.jpg" id="eListPrdImage12087_4" alt="고리 레그워머"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12087&cate_no=1&display_group=4';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12087&cate_no=1&display_group=4" class=""><span style="font-size:11px;color:#222222;">고리 레그워머</span> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-3 xans-product-listitem xans-product-3 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">8,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_12085" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12085&cate_no=1&display_group=4';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12085&cate_no=1&display_group=4" name="anchorBoxName_12085"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202506/d850750497d942e6771fda34bb0452f5.jpg" id="eListPrdImage12085_4" alt="리본진주밀집 모자"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12085&cate_no=1&display_group=4';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12085&cate_no=1&display_group=4" class=""><span style="font-size:11px;color:#222222;">리본진주밀집 모자</span> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-3 xans-product-listitem xans-product-3 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">39,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_12071" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12071&cate_no=1&display_group=4';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12071&cate_no=1&display_group=4" name="anchorBoxName_12071"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202505/6c6673221661e137b4d8a1701d39b4ab.jpg" id="eListPrdImage12071_4" alt="베이직토드백-bag"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12071&cate_no=1&display_group=4';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12071&cate_no=1&display_group=4" class=""><span style="font-size:11px;color:#222222;">베이직토드백-bag</span> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-3 xans-product-listitem xans-product-3 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">32,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_12052" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12052&cate_no=1&display_group=4';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12052&cate_no=1&display_group=4" name="anchorBoxName_12052"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202505/c029d049f600151b0fb1e1f9a4ef2d7c.jpg" id="eListPrdImage12052_4" alt="림카드-bag"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12052&cate_no=1&display_group=4';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12052&cate_no=1&display_group=4" class=""><span style="font-size:11px;color:#222222;">림카드-bag</span> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-3 xans-product-listitem xans-product-3 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">12,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_12047" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12047&cate_no=1&display_group=4';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12047&cate_no=1&display_group=4" name="anchorBoxName_12047"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202505/1911bfe6be9055ad4240305b520e8ff4.jpg" id="eListPrdImage12047_4" alt="데링프-bag"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12047&cate_no=1&display_group=4';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12047&cate_no=1&display_group=4" class=""><span style="font-size:11px;color:#222222;">데링프-bag</span> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-3 xans-product-listitem xans-product-3 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">31,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_12051" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12051&cate_no=1&display_group=4';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12051&cate_no=1&display_group=4" name="anchorBoxName_12051"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202505/53cae4b79c8b671b62ed1cbc917b0ccb.jpg" id="eListPrdImage12051_4" alt="노로크 슈즈"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12051&cate_no=1&display_group=4';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12051&cate_no=1&display_group=4" class=""><span style="font-size:11px;color:#222222;">노로크 슈즈</span> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-3 xans-product-listitem xans-product-3 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">49,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_12048" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12048&cate_no=1&display_group=4';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12048&cate_no=1&display_group=4" name="anchorBoxName_12048"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202505/95a7fc42805458d55037dc6949b52260.jpg" id="eListPrdImage12048_4" alt="너멜리 슈즈"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12048&cate_no=1&display_group=4';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12048&cate_no=1&display_group=4" class=""><span style="font-size:11px;color:#222222;">너멜리 슈즈</span> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-3 xans-product-listitem xans-product-3 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">46,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_12044" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12044&cate_no=1&display_group=4';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12044&cate_no=1&display_group=4" name="anchorBoxName_12044"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202505/e99b959e1d68b77485661eda3da42ace.jpg" id="eListPrdImage12044_4" alt="캐프 모자"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12044&cate_no=1&display_group=4';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12044&cate_no=1&display_group=4" class=""><span style="font-size:11px;color:#222222;">캐프 모자</span> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-3 xans-product-listitem xans-product-3 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">20,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_12033" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12033&cate_no=1&display_group=4';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12033&cate_no=1&display_group=4" name="anchorBoxName_12033"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202505/348758ea2ef2f954fa7164d2e16a2bb3.jpg" id="eListPrdImage12033_4" alt="네멀리 모자"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12033&cate_no=1&display_group=4';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12033&cate_no=1&display_group=4" class=""><span style="font-size:11px;color:#222222;">네멀리 모자</span> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-3 xans-product-listitem xans-product-3 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">16,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_12029" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12029&cate_no=1&display_group=4';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12029&cate_no=1&display_group=4" name="anchorBoxName_12029"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202505/e0335fde8794d6cbb4178ee685a38aff.jpg" id="eListPrdImage12029_4" alt="켄리너-bag"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12029&cate_no=1&display_group=4';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12029&cate_no=1&display_group=4" class=""><span style="font-size:11px;color:#222222;">켄리너-bag</span> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-3 xans-product-listitem xans-product-3 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">30,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_11755" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=11755&cate_no=1&display_group=4';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=11755&cate_no=1&display_group=4" name="anchorBoxName_11755"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202502/5f627b8d540faae30934d0805d4abcfb.jpg" id="eListPrdImage11755_4" alt="메리 슈즈"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=11755&cate_no=1&display_group=4';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=11755&cate_no=1&display_group=4" class=""><span style="font-size:11px;color:#222222;">메리 슈즈</span> <img src="https://cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/upload/custom_60.gif" alt="" /> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-3 xans-product-listitem xans-product-3 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">56,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_11742" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=11742&cate_no=1&display_group=4';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=11742&cate_no=1&display_group=4" name="anchorBoxName_11742"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202501/2ea440611f7dfbc522cc49c42a384dc9.jpg" id="eListPrdImage11742_4" alt="슬림 슈즈"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=11742&cate_no=1&display_group=4';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=11742&cate_no=1&display_group=4" class=""><span style="font-size:11px;color:#222222;">슬림 슈즈</span> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-3 xans-product-listitem xans-product-3 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">43,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_11473" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=11473&cate_no=1&display_group=4';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=11473&cate_no=1&display_group=4" name="anchorBoxName_11473"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202409/cd8d1381992fa3a7647f921109172f52.jpg" id="eListPrdImage11473_4" alt="페러 양말"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=11473&cate_no=1&display_group=4';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=11473&cate_no=1&display_group=4" class=""><span style="font-size:11px;color:#222222;">페러 양말</span> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-3 xans-product-listitem xans-product-3 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">6,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_10466" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=10466&cate_no=1&display_group=4';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=10466&cate_no=1&display_group=4" name="anchorBoxName_10466"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202306/c3f01d77d645bc7f6a64a4a848a00e8e.jpg" id="eListPrdImage10466_4" alt="리스 보넷"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=10466&cate_no=1&display_group=4';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=10466&cate_no=1&display_group=4" class=""><span style="font-size:11px;color:#222222;">리스 보넷</span> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-3 xans-product-listitem xans-product-3 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">20,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
</ul>
</div>
</div>
<!-- //shoes.bag -->
<div style="height:50px"></div>
<!-- criteo main -->
<script type="text/javascript">
setTimeout(function() {
window._criteo_email = document.getElementById("_criteo_email") ? document.getElementById("_criteo_email").innerHTML : "" ;
window._criteo_email = typeof _criteoSha256 === "function" && window._criteo_email != '' ? _criteoSha256(window._criteo_email.trim().toLowerCase() ) : '' ;
window.criteo_q = window.criteo_q || [];
window.criteo_q.push(
{ event: "setAccount", account: '40780' },
{ event: "setSiteType", type: /iPad/.test(navigator.userAgent) ? "t" : /Mobile|iP(hone|od)|Android|BlackBerry|IEMobile|Silk/.test(navigator.userAgent) ? "m" : "d" },
{ event: "setEmail", email: window._criteo_email , hash_method: "sha256"} ,
{ event: "setZipcode", zipcode: "" },
{ event: "viewHome"}
);
}, 2000);
</script>
<!-- criteo main -->
</div>
<div id="right_section">
<ul class="menu">
<li>
<div id="flip2"><a href="#none"><img src="https://cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/_dj/img/menu_icon.png" alt="메뉴"></a></div>
<div id="panel2">
<ul>
<li><a href="https://www.instagram.com/ssoaeng_y/" target="blank">INSTA</a></li>
<li><a href="/board/free/list.html?board_no=1" target="_top">NOTICE</a></li>
<li><a href="/board/product/list.html?board_no=6" target="_top">QNA</a></li>
<li><a href="/board/product/list.html?board_no=4" target="_top">REVIEW</a></li>
<li><a href="/board/gallery/list.html?board_no=8" target="_top">EVENT</a></li>
<li><a href="https://yeon5732.cafe24.com/product/list.html?cate_no=39" target="_top">ONLY U</a></li>
<!--<li><a href="/board/free/read.html?no=12575&board_no=1" target="_top">입고지연안내</a></li>-->
<li><a href="/link/bookmark.html" target="_blank" onclick="winPop(this.href); return false;" class="xans-element- xans-layout xans-layout-bookmark ">BOOKMARK +1,000
</a>
</li>
</ul>
</div>
</li>
</ul>
<ul class="member_menu">
<li class="xans-element- xans-layout xans-layout-statelogoff "><a href="/member/join.html">JOIN +2,000</a>
</li>
<li><a href="/member/login.html" class="xans-element- xans-layout xans-layout-statelogoff ">LOGIN
</a>
</li>
<li></li>
<li><a href="/myshop/index.html">MY PAGE</a></li>
<li></li>
<li class="cart"><a href="/order/basket.html"><img src="https://cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/_dj/img/r_cart_icon.png" alt="장바구니"></a></li>
</ul>
<ul class="go_top"><a href="#"><img src="https://cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/_dj/img/go_top_icon.png" alt="go top"></a></ul>
</div>
</div>
<div style="padding:70px 0 0 0;"></div>
<!-- 인스타 그램
<div id="insta_all" >
<ul class="insta_t">
<li class="title">INSTAGRAM<span> @ssoaeng_y</span><span class="right"><a href="http://instagram.com/ssoaeng_y" target="blank"><img src="https://cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/_dj/img/s69_footer_insta_f_btn.png" /></a></span></li>
</ul>
<ul class="insta">
<div style="padding:0 150px;">-->
<!--
C스토어 > 인스타그램위젯 > 썸네일 138px , 진열 8x2
module="instagramwidget_display_2" 는 위젯리스트중 적용하고자 하는 위젯의 코드로 변경하여 사용하시면 됩니다.
-->
<!--<div module="instagramwidget_display_2" class="widget {$sWidgetClass}" style="{$sWidgetStyle}">
<!--<h2><a target="_blank" class="widget-title">{$sWidgetTitle}</a></h2>
<strong class="idTag {$sIdTagClass}">
<a target="_blank" class="widget-id-tag" href="{$sIdTagLink}">{$sIdTag}</a>
<a target="_blank" class="widget-id-tag" href="{$sIdTagLink}">{$sIdTag}</a>
</strong>
<div class="thumb {$sThumbClass}" style="{$sThumbStyle}"></div>
</div>
</div>
</ul>
</div>-->
<div class="xans-element- xans-layout xans-layout-footer footer_start "><ul class="cs_center">
<div class="cs">
<!--
고객센터 수정부분
-->
<li class="title1">CUSTOMER CENTER</li>
쏘앵 카카오채널 1:1 상담
<li class="tel_time">MON-FRI: AM 11:00 ~ PM 3:00<br>
<p style="font-size:10px;">(SAT,SUN,HOLIDAY CLOSED)</p>
</li>
</div>
<div class="bank">
<li class="title2">BANK ACCOUNT</li>
<li class="account">
<span class="han">KB</span> <span class="num">497801.01.492113</span><br>
<span class="han">WOORI</span> <span class="num">1005.202.666249</span><br>
<span class="han">SINHAN</span> <span class="num">110.441.284275</span><br>
</li>
<li class="name">HOLDER 김소연(쏘앵)</li>
</div>
<div class="bottom_pg">
<p class="title">SHOP INFO</p>
<li>
<p class="address">
<span>[쏘앵]</span> <span>OWNER : <span class="han">김소연</span></span> <span>COMPANY REG.NO : <span>217-10-49328</span></span> <span>NETWORK REG.NO : <span>제2015-서울동대문-0161 호</span></span><span> <span><a href="#none" onclick="window.open('http://www.ftc.go.kr/bizCommPop.do?wrkr_no=2171049328', 'bizCommPop', 'width=750, height=950;');return false;">[BUSINESS INFO]</a></span></span> <br>
<span>ADDRESS : <span> 서울특별시 동대문구 제기동 1140-17 거성빌딩 6층</span></span> <span>CPO : <a href="mailto:ssoaeng_y@naver.com"><span>조영환 (SSOAENG_Y@NAVER.COM)</span></a></span><span style="padding:6px 0 0; display:block;">- 반품주소지 : 강릉시 성산면 공제로 57-28 cj대한통운 송정대리점 쏘앵 </span>
</p>
</li>
</div>
</ul>
</div>
<div class="footer_bottom">
<div id="util" class="xans-element- xans-layout xans-layout-footer "><ul class="company_pg">
<div class="inner2">
<li class="logo">
<a href="http://cafe24.com/" target="blank"><img src="https://cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/_dj/img/bn_cafe24.png"></a>
<a href="http://ftc.go.kr/info/bizinfo/communicationList.jsp?searchKey=04&searchVal=000-00-00000" target="blank"><img src="https://cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/_dj/img/bn_fair.png"></a>
<img src="https://cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/_dj/img/bn_cash.png">
<img src="https://cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/_dj/img/pg_kg.png">
<a href="javascript:;" onclick="window.open('/web/upload/dj/s53/ssoaeng_e.jpg','window','location=no, directories=no,resizable=no,status=no,toolbar=no,menubar=no, width=650, height=900,left=0, top=0, scrollbars=yes');return false" alt="서비스가입사실확인" title="서비스 가입사실 확인"><img src="https://cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/_dj/img/pg_kg2.png"></a>
</li>
</div>
</ul>
</div>
</div>
<div style="height:40px; clear:both;"></div>
<!-- 기본적으로 framseset , iframe 구조시 미톡 미실행 -->
<!-- 미실행 되는 영역에서 실행을 원할경우 아래코드 추가 설치 mi_is_chat 값을 true 로 변경 기본 false -->
<script>var mi_is_chat= false;</script>
<!-- Mirae Talk Script Ver 2.0 -->
<script async='true' src="//log1.toup.net/mirae_log_chat_common.js?adkey=rrzin" charset="UTF-8"></script>
<!-- Mirae Talk Script END Ver 2.0 -->
<!-- 참고: 결제를 위한 필수 영역 -->
<div id="progressPaybar" style="display:none;">
<div id="progressPaybarBackground" class="layerProgress"></div>
<div id="progressPaybarView">
<div class="box">
<p class="graph">
<span><img src="http://img.echosting.cafe24.com/skin/base_ko_KR/layout/txt_progress.gif" alt="현재 결제가 진행중입니다."></span>
<span><img src="http://img.echosting.cafe24.com/skin/base_ko_KR/layout/img_loading.gif" alt=""></span>
</p>
<p class="txt">
본 결제 창은 결제완료 후 자동으로 닫히며,결제 진행 중에 본 결제 창을 닫으시면<br>
주문이 되지 않으니 결제 완료 될 때 까지 닫지 마시기 바랍니다.
</p>
</div>
</div>
</div>
<!-- //참고 -->
<span itemscope="" itemtype="https://schema.org/Organization">
<link itemprop="url" href="https://ssoaeng.co.kr">
</span>
<script type="text/javascript" src="/app/Eclog/js/cid.generate.js?vs=ce4501c10446af83aa169888c1ae47c7&u=yeon5732.1"></script>
<script> (function (i, s, o, g) {
a = s.createElement(o), m = s.getElementsByTagName(o)[0];
a.async = 1;
a.src = g;
a.setAttribute('crossorigin', 'anonymous');
m.parentNode.insertBefore(a, m);
a.onload = function() {
if (typeof window.initCaWebAnalytics === 'function') {
window.initCaWebAnalytics({"mid":"yeon5732","stype":"e","domain":"","shop_no":1,"lang":"ko_KR","mobile_flag":"F","send_endpoint":"https://ca-log.cafe24data.com","path_role":"MAIN"});
}
};
})(window, document, 'script', '//optimizer.poxo.com/ca2/analytics.js');</script>
<script>
try {
// Account ID 적용
if (!wcs_add) var wcs_add = {};
wcs_add["wa"] = "s_396dc22179cd";
// 네이버 페이 White list가 있을 경우
wcs.checkoutWhitelist = ["yeon5732.cafe24.com", "www.yeon5732.cafe24.com", "m.yeon5732.cafe24.com", "ssoaeng.co.kr", "www.ssoaeng.co.kr", "m.ssoaeng.co.kr"];
// 레퍼러
wcs.setReferer("");
// 유입 추적 함수 호출
wcs.inflow("ssoaeng.co.kr");
// 로그수집
wcs_do();
} catch (e) {};
</script>
<!-- External Script Start -->
<!-- fbe -->
<!-- CMC3 script -->
<div id="fbe_common_top_script" style="display:none;">
<script type="text/javascript">
if (typeof facebookChannel === 'undefined') {
var facebookChannel = {
mall_id: CAFE24.SHOP.getMallID(),
shop_no: CAFE24.SDE_SHOP_NUM,
shop_id: CAFE24.SHOP.getMallID() + '.' + CAFE24.SDE_SHOP_NUM,
external_id: null,
event_id: null,
setInitActivated: function(is_activated) {
window.top.fbe_init_activated = !!is_activated;
},
getInitActivated: function() {
return !!window.top.fbe_init_activated;
},
setEventActivated: function(event_type, is_activated) {
if (typeof event_type === 'string' && event_type) {
let key = 'fbe_' + event_type + '_activated'
window.top[key] = !!is_activated;
}
},
getEventActivated: function(event_type) {
if (typeof event_type === 'string' && event_type) {
let key = 'fbe_' + event_type + '_activated'
return !!window.top[key];
}
return false;
},
getCookie: function(name) {
return (name = (document.cookie + ';').match(name + '=.*;')) && name[0].split(/=|;/)[1];
},
getExternalId: function() {
return facebookChannel.getCookie('fb_external_id');
},
getEventId: function() {
return facebookChannel.getCookie('fb_event_id');
},
getInt: function(value) {
let value_int = parseInt(value);
value_int = isNaN(value_int) ? 0 : value_int;
return value_int;
},
getFloat: function(value) {
let value_float = parseFloat(value);
value_float = isNaN(value_float) ? 0.00 : value_float.toFixed(2);
return value_float;
},
init: function() {
if (facebookChannel.getInitActivated()) {
return;
}
facebookChannel.setInitActivated(true);
!function(f,b,e,v,n,t,s)
{if(f.fbq)return;n=f.fbq=function(){n.callMethod?
n.callMethod.apply(n,arguments):n.queue.push(arguments)};
if(!f._fbq)f._fbq=n;n.push=n;n.loaded=!0;n.version='2.0';
n.queue=[];t=b.createElement(e);t.async=!0;
t.src=v;s=b.getElementsByTagName(e)[0];
s.parentNode.insertBefore(t,s)}(window,document,'script',
'https://connect.facebook.net/en_US/fbevents.js');
if ((typeof EC_GLOBAL_INFO !== 'undefined' && EC_GLOBAL_INFO.getCountryCode() === 'US') || (typeof SHOP !== 'undefined' && SHOP.getLanguage() === 'en_US')) {
fbq('dataProcessingOptions', ['LDU'], 0, 0);
}
if (typeof ECLOG !== 'undefined' && !!ECLOG.EXTERNAL_ID) {
ECLOG.EXTERNAL_ID.chk(facebookChannel.shop_id, function(error, external_id) {
if (error || !external_id) {
external_id = facebookChannel.getExternalId();
console.info('external_id is cookie value.', '(1)');
}
fbq('init', '2129130783993076',{external_id: external_id}, {agent: 'plcafe24'});
fbq('trackSingle', '2129130783993076', 'PageView');
facebookChannel.external_id = external_id;
});
} else {
let external_id = facebookChannel.getExternalId();
console.info('external_id is cookie value.', '(2)');
fbq('init', '2129130783993076',{external_id: external_id}, {agent: 'plcafe24'});
fbq('trackSingle', '2129130783993076', 'PageView');
facebookChannel.external_id = external_id;
}
},
pixelEvent: function(event_type, callback, is_cookie_event) {
if (facebookChannel.getEventActivated(event_type)) {
return;
}
facebookChannel.setEventActivated(event_type, true);
is_cookie_event = !!is_cookie_event;
let retry = 0;
let execute = function() {
if (!facebookChannel.external_id) {
if (retry < 10) {
retry++;
if (retry >= 5) {
console.warn('retry #' + retry, event_type);
}
setTimeout(execute, 1000);
} else {
console.warn('external_id is empty.');
}
return;
}
if (callback.length === 0) {
callback();
}
else if (!is_cookie_event && typeof ECLOG !== 'undefined' && !!ECLOG.EVENT_ID) {
ECLOG.EVENT_ID.chk(facebookChannel.shop_id, function(error, event_id) {
if (error || !event_id) {
event_id = facebookChannel.getEventId();
console.info('event_id is cookie value.', '(1)');
}
facebookChannel.event_id = event_id;
if (event_id) {
callback(event_id);
} else {
console.warn('event_id is empty.', '(1)');
}
});
}
else {
let event_id = facebookChannel.getEventId();
console.info('event_id is cookie value.', '(2)');
facebookChannel.event_id = event_id;
if (event_id) {
callback(event_id);
} else {
console.warn('event_id is empty.', '(2)');
}
}
};
execute();
},
messengerChatPlugin: function() {
let event_type = 'messenger';
let sdk_version = '';
let locale = '';
if (!sdk_version) {
console.warn('sdk_version is empty.');
return;
}
if (!locale) {
console.warn('locale is empty.');
return;
}
if (facebookChannel.getEventActivated(event_type)) {
return;
}
facebookChannel.setEventActivated(event_type, true);
window.fbAsyncInit = function() {
FB.init({
appId : '216637735743129',
autoLogAppEvents : true,
xfbml : true,
version : sdk_version
});
};
(function(d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) return;
js = d.createElement(s); js.id = id;
js.src = 'https://connect.facebook.net/' + locale + '/sdk/xfbml.customerchat.js';
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));
}
};
facebookChannel.init();
}
</script>
<noscript><img height="1" width="1" style="display:none"
src="https://www.facebook.com/tr?id=2129130783993076&ev=PageView&noscript=1"
/></noscript>
</div>
<!-- CMC3 script -->
<!-- External Script End -->
<script type="text/javascript" src="//t1.kakaocdn.net/kakao_js_sdk/v1/kakao.min.js" charset="utf-8"></script>
<script type="text/javascript" src="/ind-script/i18n.php?lang=ko_KR&domain=front&v=2507021416" charset="utf-8"></script>
<script src="/ind-script/optimizer.php?filename=zZlbV-M2EMffwa_9HIZ229NXEpaWs1A4hC3PijxOButWXQjeT9-xHXZJwTfZnNPDIXEc_X8aSaOZUZxutYT09Geb5pZJ2GlbpBacDpZD-uhSPP1dJY_up7SrXUDDeJE-_hPAlvu3X5LfkpORSnj2YBUTbn8j4VoXCFMpwYqoISTAk1xFS5XmWuUCuY9CnCaf6C-qc_rWa_ufeTNWb0h_sLoZ8-CRGkhqpXwK_Lq-eEC_vf92zjxLJKoRHIFrUsE9XfernLGofD4Ar3mozLrQVi618lYLAbZfdyuCOzNmYTHbDLAneBT9rXKr65k6clqQQqsjr82RQAVHa6bUELsaBNdSajW09TNTtBsVubax4If3Uus8SCNoXd4XMWPSa71GAendK31jX8estOikzgLdcjs04zrMg-LVhFbtskDbRrY68VBChxHkqunXZve8Rgj2rRSaZaNEMnhW9XuzdmCf2hanRWy0KHMUg10vg5wF4aspcJJZv-jwuqrRaqvNQYcXNeYLK5hOi-r1Fp9BdO2SDsyy9pKvnU7SIj2HddiM75D8eKNteYXOjxbfQQ4WFIdlsNV7eWuRjx-0A2b5dtQqe5bn5dtoOj6brTdYi_4fuTWjSK8cub6bSgLmUG2mUiR4llV5axzHiLBBCpRPTCDJtX3hfb-R0AVzk7GVwSpzb_FEMDSL8HE9bEEY-PBxbJnK3iTnOTug8Iq0kz6MT6HYzzZNQnNGOarQ_cH9hwVjwsqS8CpjNv2U_JqcpDlleYO8iISI0xPVamxHPFzV8bD6gtJfnQlfkKNRf8Gu-r9tEviNqWArEMB9FGq_vI-urdIaoX_HJYYP6EaoIkr7UsrspEuorOcFvTIf4gxp5jP9_Owtq62qP9cfV1pkOvi5sXEJtgd6Kdlmdug5OiqSS6RieUb0JeFWlNgENF6MkY7Yabgl8IK5AmZfvougsjdpeTr2QU7y3--wZccZajRKzWPTAlU2C-j8TR0TCfq7SS2trteWFvY1cuqoq2PTvpEH6fn-03FOp3jmp1oyFybEnFwOk1TUSeQQcRYfGH5AVnV2iGFcYQHpwuod5e8l41uIp0zYka_0-xGNxux1dLT0DEW6CFUxSjeljp7fO3hC2Hkmiv3lUgfVYdk1U5ScDmA7WAu96S8Bt15S1eTRI7j-1ktbGq-_QDnKFuZKxZvXaJ0Eue76xaFHfmMzsHzkHL4GNKluOsF01yaDGL2e2kMhb6Jz35SxXKOAznKoR38ORjuM7_8B3bY7BA4A8NGb6jWB6h-YIL-r5QWUdLjLJlLuNYWK5aTR1Psj3i1BQY5Tt8YVKyfY8IdlWbxDngWvKbUjrzEUmnfxeyMIj7faBBO_QQOduiRY2uhPOGVhrssqwe3jxTQPOUBN2nu1r_2J1fOicgav3ZPu2XoWTnV4mj68phi4VLmOdwLBULK1gAkWGea3Vgs47vmlZ4A5V60PKFrEJiJLNVn-mCoXVKOEbpdw1v6ErlJ93v9ue_j0pq656GvHLRo_Ul09gkjPqlrOAK8flOWsK7u_CzkIQ8YsBz6iszp4uMBnavkv&type=js&k=b78af3fb095f7ef6ea6fef7332ba6cab5e0d859c&t=1751950774" ></script><script src="/ind-script/optimizer_user.php?filename=pc9BDoIwEEbhA5St5_iDxnieMp3AQNtBptX09qJx4xZ3b_UlD5MmBpOrxpuhsebr7XLGWoco5KaSIiywC2wyZtgiue8xG5KGGhnRN60F5AuPurVuthMOkV9o8Cb09j9xnNsF0pQ0_0X8Tt6r0OIews8dfQE&type=js&k=4a1c0fe94175154c7178019c3d8c0f74e5c329b7&t=1520306469&user=T" ></script>
<script type="text/javascript">
var sIsChannelUi = 'F';
var sChRef = '';
var sUseShoppingpayPg = 'F';
var sOwnMallLanding = 'F';
var sShoppingPayCookie = '';
var sYtshopping = 'F';
if (sIsChannelUi === 'T') {
sessionStorage.setItem('ch_ref', sChRef);
}
CAFE24.getChRefData = function() {
if (sIsChannelUi === 'T') {
return sessionStorage.getItem('ch_ref');
}
}
// 자사몰랜딩/유튜브랜딩 공용
CAFE24.checkChannelUI = function() {
if ((sIsChannelUi === 'T' && sessionStorage.getItem('ch_ref') || (sUseShoppingpayPg === 'T' && sOwnMallLanding === 'T')) || sYtshopping === 'T') {
return true;
} else {
return false;
}
}
// 자사몰랜딩 UI확인
CAFE24.isOwnMallLandingUI = function() {
return sUseShoppingpayPg === 'T' && sOwnMallLanding === 'T';
}
CAFE24.attachShoppingpayParam = function(sUrl) {
if (sUrl) {
var sChRef = CAFE24.getChRefData();
if (sChRef) {
var sSeparator = (sUrl.includes('?')) ? '&' : '?';
sUrl += sSeparator + 'ch_ref=' + sChRef;
} else if (sUseShoppingpayPg === 'T' && sOwnMallLanding === 'T') {
var sSeparator = (sUrl.includes('?')) ? '&' : '?';
sUrl += sSeparator + 'co_servicetype=shoppingpay';
}
}
return sUrl;
}
CAFE24.attachChRef = function(sUrl) {
if (sUrl) {
var sChRef = CAFE24.getChRefData();
if (sChRef) {
var sSeparator = (sUrl.includes('?')) ? '&' : '?';
sUrl += sSeparator + 'ch_ref=' + sChRef;
}
}
return sUrl;
}
var sIsCheckout = 'F';
var sCheckoutToken = '';
if (sIsCheckout === 'T') {
sessionStorage.setItem('checkoutToken', sCheckoutToken);
} else {
sessionStorage.removeItem('checkoutToken');
}
CAFE24.getCheckoutToken = function() {
if (sIsCheckout === 'T') {
return sessionStorage.getItem('checkoutToken');
}
}
CAFE24.attachCheckoutParam = function(sUrl) {
if (sUrl) {
var sCheckoutToken = CAFE24.getCheckoutToken();
if (sCheckoutToken) {
var sSeparator = (sUrl.includes('?')) ? '&' : '?';
sUrl += sSeparator + 'checkoutToken=' + sCheckoutToken;
}
}
return sUrl;
}
CAFE24.MOBILE_WEB = false; var mobileWeb = CAFE24.MOBILE_WEB;
try {
var isUseLoginKeepingSubmit = false;
// isSeqNoKeyExpiretime
function isSeqNoKeyExpiretime(iExpiretime)
{
var sDate = new Date();
var iNow = Math.floor(sDate.getTime() / 1000);
// 유효시간 확인
if (iExpiretime > iNow) {
return false;
}
return true;
}
function isUseLoginKeeping()
{
// 디바이스 확인
if (EC_MOBILE_DEVICE === false) {
return;
}
// 로그인 여부
var isLogin = document.cookie.match(/(?:^| |;)iscache=F/) ? true : false
if (isLogin) {
return;
}
var sLoginKeepingInfo = localStorage.getItem('use_login_keeping_info');
var iSeqnoExpiretime;
var iSeqNoKey;
if (sLoginKeepingInfo == null) {
iSeqnoExpiretime = localStorage.getItem('seq_no_key_expiretime');
iSeqNoKey = localStorage.getItem('seq_no_key');
// 유효시간, key 값 확인
if (iSeqnoExpiretime === null || iSeqNoKey === null) {
return;
}
} else {
var oLoginKeepingInfo = JSON.parse(sLoginKeepingInfo);
iSeqNoKey = oLoginKeepingInfo.seq_no_key;
iSeqnoExpiretime = oLoginKeepingInfo.seq_no_key_expiretime;
if (isNaN(iSeqNoKey) === true || isNaN(iSeqnoExpiretime) === true) {
return;
}
}
if (isSeqNoKeyExpiretime(iSeqnoExpiretime) === false) {
return;
}
useLoginKeepingSubmit();
}
function findGetParamValue(paramKey)
{
var result = null,
tmp = [];
location.search.substr(1).split('&').forEach(function (item) {
tmp = item.split('=');
if (tmp[0] === paramKey) result = decodeURIComponent(tmp[1]);
});
return result;
}
function useLoginKeepingSubmit()
{
var iSeqnoExpiretime;
var iSeqNoKey;
var sUseLoginKeepingIp;
var sLoginKeepingInfo = localStorage.getItem('use_login_keeping_info');
if (sLoginKeepingInfo == null) {
iSeqnoExpiretime = localStorage.getItem('seq_no_key_expiretime');
iSeqNoKey = localStorage.getItem('seq_no_key');
} else {
var oLoginKeepingInfo = JSON.parse(sLoginKeepingInfo);
iSeqNoKey = oLoginKeepingInfo.seq_no_key;
iSeqnoExpiretime = oLoginKeepingInfo.seq_no_key_expiretime;
sUseLoginKeepingIp = oLoginKeepingInfo.use_login_keeping_ip;
}
var oForm = document.createElement('form');
oForm.method = 'post';
oForm.action = '/exec/front/member/LoginKeeping';
document.body.appendChild(oForm);
var oSeqNoObj = document.createElement('input');
oSeqNoObj.name = 'seq_no_key';
oSeqNoObj.type = 'hidden';
oSeqNoObj.value = iSeqNoKey;
oForm.appendChild(oSeqNoObj);
oSeqNoObj = document.createElement('input');
oSeqNoObj.name = 'seq_no_key_expiretime';
oSeqNoObj.type = 'hidden';
oSeqNoObj.value = iSeqnoExpiretime;
oForm.appendChild(oSeqNoObj);
var returnUrl = findGetParamValue('returnUrl');
if (returnUrl == '' || returnUrl == null) {
returnUrl = location.pathname + location.search;
}
oSeqNoObj = document.createElement('input');
oSeqNoObj.name = 'returnUrl';
oSeqNoObj.type = 'hidden';
oSeqNoObj.value = returnUrl;
oForm.appendChild(oSeqNoObj);
if (sUseLoginKeepingIp != undefined) {
oSeqNoObj = document.createElement('input');
oSeqNoObj.name = 'use_login_keeping_ip';
oSeqNoObj.type = 'hidden';
oSeqNoObj.value = sUseLoginKeepingIp;
oForm.appendChild(oSeqNoObj);
}
oForm.submit();
isUseLoginKeepingSubmit = true;
}
isUseLoginKeeping();
} catch(e) {
}
var bUseElastic = false;
var sSearchBannerUseFlag = 'F';
CAFE24.SHOP_CURRENCY_INFO = {"1":{"aShopCurrencyInfo":{"currency_code":"KRW","currency_no":"410","currency_symbol":"\uffe6","currency_name":"South Korean won","currency_desc":"\uffe6 \uc6d0 (\ud55c\uad6d)","decimal_place":0,"round_method_type":"F"},"aShopSubCurrencyInfo":null,"aBaseCurrencyInfo":{"currency_code":"KRW","currency_no":"410","currency_symbol":"\uffe6","currency_name":"South Korean won","currency_desc":"\uffe6 \uc6d0 (\ud55c\uad6d)","decimal_place":0,"round_method_type":"F"},"fExchangeRate":1,"fExchangeSubRate":null,"aFrontCurrencyFormat":{"head":"","tail":"won"},"aFrontSubCurrencyFormat":{"head":"","tail":""}}}; var SHOP_CURRENCY_INFO = CAFE24.SHOP_CURRENCY_INFO;
if (typeof CAFE24.SHOP_FRONT_NEW_OPTION_COMMON !== "undefined") {CAFE24.SHOP_FRONT_NEW_OPTION_COMMON.initObject();}
if (typeof CAFE24.SHOP_FRONT_NEW_OPTION_BIND !== "undefined") {CAFE24.SHOP_FRONT_NEW_OPTION_BIND.initChooseBox();}
if (typeof CAFE24.SHOP_FRONT_NEW_OPTION_DATA !== "undefined") {CAFE24.SHOP_FRONT_NEW_OPTION_DATA.initData();}
if (typeof CAFE24.SHOP_FRONT_NEW_LIKE_COMMON !== "undefined") {CAFE24.SHOP_FRONT_NEW_LIKE_COMMON.init({"bIsUseLikeProduct":false,"bIsUseLikeCategory":false});}
if (typeof CAFE24.SHOP_FRONT_REVIEW_TALK_REVIEW_COUNT !== "undefined") {CAFE24.SHOP_FRONT_REVIEW_TALK_REVIEW_COUNT.bIsReviewTalk = 'F';}
var basket_result = '/product/add_basket.html';
var basket_option = '/product/basket_option.html';
var aLogData = {"log_server1":"eclog2-260.cafe24.com","log_server2":"elg-db-svcm-105.cafe24.com","mid":"yeon5732","stype":"e","domain":"","shop_no":1,"lang":"ko_KR","ver":2,"hash":"","ca":"cfa-js.cafe24.com\/cfa.js","etc":"","mobile_flag":"F"};
var sMileageName = '적립금';
var sMileageUnit = '[:PRICE:]원';
var sDepositName = '예치금';
var sDepositUnit = '원';
CAFE24.APPSCRIPT_ASSIGN_DATA = CAFE24.APPSCRIPT_ASSIGN_DATA || [{'src':'https://static.alphwidget.com/script/Push-Script/PRODUCTION/alphapush_funnel.js?vs=20250624012055.1&client_id=tgHZp6LCG5KuklqvIYgrtB'},{'src':'https://static.alphwidget.com/script/Push-Script/PRODUCTION/alphapush_main.js?vs=20250624131108.1&client_id=tgHZp6LCG5KuklqvIYgrtB'},{'src':'https://static.alphwidget.com/script/Push-Script/PRODUCTION/alphapush_GA.js?vs=20250624131109.1&client_id=tgHZp6LCG5KuklqvIYgrtB'},{'src':'https://static.alphwidget.com/script/Review-Script/PRODUCTION/briefing_widget.js?vs=20250624171907.1&client_id=tgHZp6LCG5KuklqvIYgrtB'},{'src':'https://static.alphwidget.com/script/Review-Script/PRODUCTION/login_popup.js?vs=20250624171907.1&client_id=tgHZp6LCG5KuklqvIYgrtB'},{'src':'https://static.alphwidget.com/script/Review-Script/PRODUCTION/review_count.js?vs=20250624171907.1&client_id=tgHZp6LCG5KuklqvIYgrtB'},{'src':'https://static.alphwidget.com/script/Review-Script/PRODUCTION/reviewWrite_button.js?vs=20250624171907.1&client_id=tgHZp6LCG5KuklqvIYgrtB'},{'src':'https://static.alphwidget.com/script/Review-Script/PRODUCTION/ticker_main.js?vs=20250624171907.1&client_id=tgHZp6LCG5KuklqvIYgrtB'},{'src':'https://static.alphwidget.com/script/Review-Script/PRODUCTION/widget.js?vs=20250624171908.1&client_id=tgHZp6LCG5KuklqvIYgrtB'},{'src':'https://static.alphwidget.com/script/Review-Script/PRODUCTION/alphareview_GA.js?vs=20250624171908.1&client_id=tgHZp6LCG5KuklqvIYgrtB'},{'src':'https://static.alphwidget.com/script/Review-Script/PRODUCTION/alpha_au.js?vs=20250624171908.1&client_id=tgHZp6LCG5KuklqvIYgrtB'},{'src':'https://static.alphwidget.com/script/Common-Script/PRODUCTION/alphacore_alpha_data.js?vs=20250625203402.1&client_id=tgHZp6LCG5KuklqvIYgrtB'}];
CAFE24.APPSCRIPT_SDK_DATA = CAFE24.APPSCRIPT_SDK_DATA || ['application','category','collection','customer','notification','order','personal','privacy','product','promotion','store','supply','community','analytics','design','mileage','salesreport','shipping'];
var EC_APPSCRIPT_ASSIGN_DATA = CAFE24.getDeprecatedNamespace('EC_APPSCRIPT_ASSIGN_DATA');
var EC_APPSCRIPT_SDK_DATA = CAFE24.getDeprecatedNamespace('EC_APPSCRIPT_SDK_DATA');
</script></body></html>