<!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', '//assets.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 = '2509171429';
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"; },getSkinLanguageCode : 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.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","front_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'];
},
getFrontLanguageCode: function() {
return oData['front_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-09-19","locale":"ko"},"aProductPurchaseInfo_12383":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12390":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12382":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12378":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12387":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12384":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12377":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12389":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12381":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12388":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12375":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12325":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12284":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_11725":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_11823":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12262":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_11464":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12256":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_11929":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12376":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12373":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12372":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12371":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12374":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12363":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12370":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12361":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12341":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12362":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12364":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12365":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12354":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12360":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12356":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12353":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12359":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12357":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12350":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12358":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12355":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12349":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12345":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12347":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12352":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12339":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12351":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12348":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12344":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12340":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12338":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12335":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12343":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12337":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12336":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12334":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12331":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12329":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12326":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12333":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12328":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12332":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12327":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12318":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12324":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_11701":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12319":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12323":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12295":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_11474":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12316":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12322":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12313":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12320":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12321":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12312":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12317":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12314":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12300":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12308":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12302":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12301":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12309":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12307":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12299":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12306":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12303":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12310":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12305":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12280":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12292":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12293":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12291":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_11930":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12282":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12278":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12290":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12283":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12122":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12281":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12285":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_11752":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12053":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_11744":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_11765":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12368":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12366":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12298":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12296":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12271":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12218":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12118":{"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_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}};
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":2509171429,"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=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_12383" class="xans-record-">
<div class="box_design_main" onclick="window.location.href='/product/detail.html?product_no=12383&cate_no=1&display_group=5';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12383&cate_no=1&display_group=5" name="anchorBoxName_12383"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202509/26ff109279fbea0a0eab419feefa59f2.jpg" id="eListPrdImage12383_5" alt="루즈핏레터긴팔티-t"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12383&cate_no=1&display_group=5';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12383&cate_no=1&display_group=5" class=""><span class="" style="font-size:12px;color:#555555;">루즈핏레터긴팔티-t</span> <img src="https://cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/upload/custom_49.gif" alt="" /><img src="https://cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/upload/custom_30.gif" alt="" /> </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 class="" style="font-size:12px;color:#555555;text-decoration:line-through;">32,000won</span></li>
<li class=" xans-record-">
<p class="title2 displaynone"></p><span class="" style="font-size:12px;color:#008BCC;font-weight:bold;">30,400won</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_12390" class="xans-record-">
<div class="box_design_main" onclick="window.location.href='/product/detail.html?product_no=12390&cate_no=1&display_group=5';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12390&cate_no=1&display_group=5" name="anchorBoxName_12390"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202509/95aef60be1e5c583fdee507e57c878f6.webp" id="eListPrdImage12390_5" alt="자수피그후드긴팔티-t"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12390&cate_no=1&display_group=5';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12390&cate_no=1&display_group=5" class=""><span class="" style="font-size:12px;color:#555555;">자수피그후드긴팔티-t</span> <img src="https://cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/upload/custom_49.gif" alt="" /><img src="https://cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/upload/custom_30.gif" alt="" /> </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 class="" style="font-size:12px;color:#555555;text-decoration:line-through;">63,000won</span></li>
<li class=" xans-record-">
<p class="title2 displaynone"></p><span class="" style="font-size:12px;color:#008BCC;font-weight:bold;">59,900won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_12382" class="xans-record-">
<div class="box_design_main" onclick="window.location.href='/product/detail.html?product_no=12382&cate_no=1&display_group=5';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12382&cate_no=1&display_group=5" name="anchorBoxName_12382"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202509/929289ac1011d1e3c03f1c25784a557c.jpg" id="eListPrdImage12382_5" alt="베이직와이드데님팬츠-p"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12382&cate_no=1&display_group=5';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12382&cate_no=1&display_group=5" class=""><span class="" style="font-size:12px;color:#555555;">베이직와이드데님팬츠-p</span> <img src="https://cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/upload/custom_49.gif" alt="" /><img src="https://cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/upload/custom_30.gif" alt="" /> </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 class="" style="font-size:12px;color:#555555;text-decoration:line-through;">45,000won</span></li>
<li class=" xans-record-">
<p class="title2 displaynone"></p><span class="" style="font-size:12px;color:#008BCC;font-weight:bold;">42,800won</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_12378" class="xans-record-">
<div class="box_design_main" onclick="window.location.href='/product/detail.html?product_no=12378&cate_no=1&display_group=5';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12378&cate_no=1&display_group=5" name="anchorBoxName_12378"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202509/90e67f5547453328b8361fd943b191bd.webp" id="eListPrdImage12378_5" alt="스트링와이드데님팬츠-p"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12378&cate_no=1&display_group=5';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12378&cate_no=1&display_group=5" class=""><span class="" style="font-size:12px;color:#555555;">스트링와이드데님팬츠-p</span> <img src="https://cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/upload/custom_49.gif" alt="" /><img src="https://cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/upload/custom_30.gif" alt="" /> </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 class="" style="font-size:12px;color:#555555;text-decoration:line-through;">67,000won</span></li>
<li class=" xans-record-">
<p class="title2 displaynone"></p><span class="" style="font-size:12px;color:#008BCC;font-weight:bold;">64,700won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_12387" class="xans-record-">
<div class="box_design_main" onclick="window.location.href='/product/detail.html?product_no=12387&cate_no=1&display_group=5';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12387&cate_no=1&display_group=5" name="anchorBoxName_12387"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202509/1ac9d1ae69845400f1812d028c033351.jpg" id="eListPrdImage12387_5" alt="야옹긴팔맨투맨"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12387&cate_no=1&display_group=5';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12387&cate_no=1&display_group=5" class=""><span class="" style="font-size:12px;color:#555555;">야옹긴팔맨투맨</span> <img src="https://cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/upload/custom_49.gif" alt="" /><img src="https://cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/upload/custom_30.gif" alt="" /> </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 class="" style="font-size:12px;color:#555555;text-decoration:line-through;">33,000won</span></li>
<li class=" xans-record-">
<p class="title2 displaynone"></p><span class="" style="font-size:12px;color:#008BCC;font-weight:bold;">31,400won</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_12384" class="xans-record-">
<div class="box_design_main new_padding" onclick="window.location.href='/product/detail.html?product_no=12384&cate_no=1&display_group=2';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12384&cate_no=1&display_group=2" name="anchorBoxName_12384"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202509/5233444df6ac28d01689138e88b09274.webp" id="eListPrdImage12384_2" alt="밑단레이스팬츠-p"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12384&cate_no=1&display_group=2';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12384&cate_no=1&display_group=2" class=""><span class="" style="font-size:11px;color:#222222;">밑단레이스팬츠-p</span> <img src="https://cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/upload/custom_49.gif" alt="" /><img src="https://cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/upload/custom_30.gif" alt="" /> </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 class="" style="font-size:11px;color:#222222;text-decoration:line-through;">40,000won</span></li>
<li class=" xans-record-">
<p class="title2 displaynone"></p><span class="" 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_12377" class="xans-record-">
<div class="box_design_main new_padding" onclick="window.location.href='/product/detail.html?product_no=12377&cate_no=1&display_group=2';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12377&cate_no=1&display_group=2" name="anchorBoxName_12377"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202509/5955cbfdd127311a92b29d5a7b79fc64.jpg" id="eListPrdImage12377_2" alt="빈티지셔츠자켓-jk"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12377&cate_no=1&display_group=2';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12377&cate_no=1&display_group=2" class=""><span class="" style="font-size:11px;color:#222222;">빈티지셔츠자켓-jk</span> <img src="https://cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/upload/custom_49.gif" alt="" /><img src="https://cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/upload/custom_30.gif" alt="" /> </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 class="" style="font-size:11px;color:#222222;text-decoration:line-through;">68,000won</span></li>
<li class=" xans-record-">
<p class="title2 displaynone"></p><span class="" style="font-size:11px;color:#222222;font-weight:bold;">64,600won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_12389" class="xans-record-">
<div class="box_design_main new_padding" onclick="window.location.href='/product/detail.html?product_no=12389&cate_no=1&display_group=2';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12389&cate_no=1&display_group=2" name="anchorBoxName_12389"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202509/1dcfcb0c9c3e43bb03d25ef31492e794.jpg" id="eListPrdImage12389_2" alt="자수하프피그팬츠-p ㅣ 핑크"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12389&cate_no=1&display_group=2';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12389&cate_no=1&display_group=2" class=""><span class="" 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 class="" 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_12381" class="xans-record-">
<div class="box_design_main new_padding" onclick="window.location.href='/product/detail.html?product_no=12381&cate_no=1&display_group=2';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12381&cate_no=1&display_group=2" name="anchorBoxName_12381"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202509/c552d8960c15a0c8836260b89cab389f.jpg" id="eListPrdImage12381_2" alt="레이스스프라이프셔츠-nb"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12381&cate_no=1&display_group=2';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12381&cate_no=1&display_group=2" class=""><span class="" style="font-size:11px;color:#222222;">레이스스프라이프셔츠-nb</span> <img src="https://cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/upload/custom_49.gif" alt="" /><img src="https://cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/upload/custom_30.gif" alt="" /> </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 class="" style="font-size:11px;color:#222222;text-decoration:line-through;">61,000won</span></li>
<li class=" xans-record-">
<p class="title2 displaynone"></p><span class="" style="font-size:11px;color:#222222;font-weight:bold;">58,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_12388" class="xans-record-">
<div class="box_design_main new_padding" onclick="window.location.href='/product/detail.html?product_no=12388&cate_no=1&display_group=2';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12388&cate_no=1&display_group=2" name="anchorBoxName_12388"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202509/8410c73a4bc73a8abbd09b41b95613fc.webp" id="eListPrdImage12388_2" alt="벨벳도트팬츠-p"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12388&cate_no=1&display_group=2';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12388&cate_no=1&display_group=2" class=""><span class="" style="font-size:11px;color:#222222;">벨벳도트팬츠-p</span> <img src="https://cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/upload/custom_49.gif" alt="" /><img src="https://cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/upload/custom_30.gif" alt="" /> </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 class="" style="font-size:11px;color:#222222;text-decoration:line-through;">47,000won</span></li>
<li class=" xans-record-">
<p class="title2 displaynone"></p><span class="" style="font-size:11px;color:#222222;font-weight:bold;">44,700won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_12375" class="xans-record-">
<div class="box_design_main new_padding" onclick="window.location.href='/product/detail.html?product_no=12375&cate_no=1&display_group=2';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12375&cate_no=1&display_group=2" name="anchorBoxName_12375"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202509/7b8bf7c599910dd3f137e87816ac836f.webp" id="eListPrdImage12375_2" alt="포켓단추소프트자켓-jk"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12375&cate_no=1&display_group=2';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12375&cate_no=1&display_group=2" class=""><span class="" style="font-size:11px;color:#222222;">포켓단추소프트자켓-jk</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 class="" style="font-size:11px;color:#222222;font-weight:bold;">84,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_12325" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12325&cate_no=1&display_group=12';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12325&cate_no=1&display_group=12" name="anchorBoxName_12325"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202509/60ff724490644ca9bd877c8256935803.webp" id="eListPrdImage12325_12" alt="니트 숄"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12325&cate_no=1&display_group=12';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12325&cate_no=1&display_group=12" class=""><span class="" 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 class="" style="font-size:11px;color:#111111;font-weight:bold;text-decoration:line-through;">19,000won</span><span id="span_product_tax_type_text" style="text-decoration:line-through;"> </span></li>
<li class=" xans-record-">
<p class="title2 displaynone"></p><span class="" style="font-size:11px;color:#111111;">17,100won<br> (10% 할인)</span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_12284" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12284&cate_no=1&display_group=12';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12284&cate_no=1&display_group=12" name="anchorBoxName_12284"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202508/69c68bb60e803de82cf9b1066f34d1a9.jpg" id="eListPrdImage12284_12" alt="새틴컬러스커트-sk ㅣ s - m size ㅣ 코랄"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12284&cate_no=1&display_group=12';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12284&cate_no=1&display_group=12" class=""><span class="" style="font-size:11px;color:#111111;">새틴컬러스커트-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-11 xans-product-listitem xans-product-11 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span class="" style="font-size:11px;color:#111111;font-weight:bold;text-decoration:line-through;">38,000won</span><span id="span_product_tax_type_text" style="text-decoration:line-through;"> </span></li>
<li class=" xans-record-">
<p class="title2 displaynone"></p><span class="" style="font-size:11px;color:#111111;">34,200won<br> (10% 할인)</span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_11725" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=11725&cate_no=1&display_group=12';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=11725&cate_no=1&display_group=12" name="anchorBoxName_11725"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202501/7c0ad3a03be40faf85fb325e60d5ff79.webp" id="eListPrdImage11725_12" alt="레이쉬-nb"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=11725&cate_no=1&display_group=12';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=11725&cate_no=1&display_group=12" class=""><span class="" 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 class="" style="font-size:11px;color:#111111;font-weight:bold;">59,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_11823" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=11823&cate_no=1&display_group=12';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=11823&cate_no=1&display_group=12" name="anchorBoxName_11823"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202502/61750313354e21fe8a20aa13721d0725.webp" id="eListPrdImage11823_12" alt="케니러-nb (10월1일 순차발송)"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=11823&cate_no=1&display_group=12';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=11823&cate_no=1&display_group=12" class=""><span class="" style="font-size:11px;color:#111111;">케니러-nb (10월1일 순차발송)</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 class="" style="font-size:11px;color:#111111;font-weight:bold;">53,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_12262" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12262&cate_no=1&display_group=12';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12262&cate_no=1&display_group=12" name="anchorBoxName_12262"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202508/b57d4b7cd3bff211df6fd1c7a9679e12.webp" id="eListPrdImage12262_12" alt="배색ST박시반팔티-t"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12262&cate_no=1&display_group=12';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12262&cate_no=1&display_group=12" class=""><span class="" style="font-size:11px;color:#111111;">배색ST박시반팔티-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 class="" style="font-size:11px;color:#111111;font-weight:bold;text-decoration:line-through;">31,000won</span><span id="span_product_tax_type_text" style="text-decoration:line-through;"> </span></li>
<li class=" xans-record-">
<p class="title2 displaynone"></p><span class="" style="font-size:11px;color:#111111;">27,900won<br> (10% 할인)</span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_11464" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=11464&cate_no=1&display_group=12';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=11464&cate_no=1&display_group=12" name="anchorBoxName_11464"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202408/c347950e8295c9f81bfd3c88125142fc.webp" id="eListPrdImage11464_12" alt="7컬러 피그-nb"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=11464&cate_no=1&display_group=12';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=11464&cate_no=1&display_group=12" class=""><span class="" style="font-size:11px;color:#111111;">7컬러 피그-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 class="" style="font-size:11px;color:#111111;font-weight:bold;text-decoration:line-through;">39,000won</span><span id="span_product_tax_type_text" style="text-decoration:line-through;"> </span></li>
<li class=" xans-record-">
<p class="title2 displaynone"></p><span class="" style="font-size:11px;color:#111111;">35,100won<br> (10% 할인)</span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_12256" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12256&cate_no=1&display_group=12';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12256&cate_no=1&display_group=12" name="anchorBoxName_12256"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202508/5de7f733c43ffaf8237eafe09f3fbe95.jpg" id="eListPrdImage12256_12" alt="체크셔츠-nb"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12256&cate_no=1&display_group=12';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12256&cate_no=1&display_group=12" class=""><span class="" 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 class="" style="font-size:11px;color:#111111;font-weight:bold;">42,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_11929" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=11929&cate_no=1&display_group=12';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=11929&cate_no=1&display_group=12" name="anchorBoxName_11929"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202504/36065b6af563dfe0ef9e49b0be5ed396.webp" id="eListPrdImage11929_12" alt="베퓨-t"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=11929&cate_no=1&display_group=12';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=11929&cate_no=1&display_group=12" class=""><span class="" 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 class="" 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_12390" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12390&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12390&cate_no=1&display_group=3" name="anchorBoxName_12390"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202509/95aef60be1e5c583fdee507e57c878f6.webp" id="eListPrdImage12390_3" alt="자수피그후드긴팔티-t"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12390&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12390&cate_no=1&display_group=3" class=""><span class="" style="font-size:11px;color:#222222;">자수피그후드긴팔티-t</span> <img src="https://cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/upload/custom_49.gif" alt="" /><img src="https://cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/upload/custom_30.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 class="" style="font-size:11px;color:#222222;text-decoration:line-through;">63,000won</span></li>
<li class=" xans-record-">
<p class="title2 displaynone"></p><span class="" style="font-size:11px;color:#222222;font-weight:bold;">59,900won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_12389" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12389&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12389&cate_no=1&display_group=3" name="anchorBoxName_12389"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202509/1dcfcb0c9c3e43bb03d25ef31492e794.jpg" id="eListPrdImage12389_3" alt="자수하프피그팬츠-p ㅣ 핑크"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12389&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12389&cate_no=1&display_group=3" class=""><span class="" 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 class="" 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_12388" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12388&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12388&cate_no=1&display_group=3" name="anchorBoxName_12388"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202509/8410c73a4bc73a8abbd09b41b95613fc.webp" id="eListPrdImage12388_3" alt="벨벳도트팬츠-p"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12388&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12388&cate_no=1&display_group=3" class=""><span class="" style="font-size:11px;color:#222222;">벨벳도트팬츠-p</span> <img src="https://cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/upload/custom_49.gif" alt="" /><img src="https://cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/upload/custom_30.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 class="" style="font-size:11px;color:#222222;text-decoration:line-through;">47,000won</span></li>
<li class=" xans-record-">
<p class="title2 displaynone"></p><span class="" style="font-size:11px;color:#222222;font-weight:bold;">44,700won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_12387" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12387&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12387&cate_no=1&display_group=3" name="anchorBoxName_12387"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202509/1ac9d1ae69845400f1812d028c033351.jpg" id="eListPrdImage12387_3" alt="야옹긴팔맨투맨"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12387&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12387&cate_no=1&display_group=3" class=""><span class="" style="font-size:11px;color:#222222;">야옹긴팔맨투맨</span> <img src="https://cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/upload/custom_49.gif" alt="" /><img src="https://cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/upload/custom_30.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 class="" style="font-size:11px;color:#222222;text-decoration:line-through;">33,000won</span></li>
<li class=" xans-record-">
<p class="title2 displaynone"></p><span class="" style="font-size:11px;color:#222222;font-weight:bold;">31,400won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_12384" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12384&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12384&cate_no=1&display_group=3" name="anchorBoxName_12384"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202509/5233444df6ac28d01689138e88b09274.webp" id="eListPrdImage12384_3" alt="밑단레이스팬츠-p"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12384&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12384&cate_no=1&display_group=3" class=""><span class="" style="font-size:11px;color:#222222;">밑단레이스팬츠-p</span> <img src="https://cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/upload/custom_49.gif" alt="" /><img src="https://cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/upload/custom_30.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 class="" style="font-size:11px;color:#222222;text-decoration:line-through;">40,000won</span></li>
<li class=" xans-record-">
<p class="title2 displaynone"></p><span class="" 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_12383" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12383&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12383&cate_no=1&display_group=3" name="anchorBoxName_12383"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202509/26ff109279fbea0a0eab419feefa59f2.jpg" id="eListPrdImage12383_3" alt="루즈핏레터긴팔티-t"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12383&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12383&cate_no=1&display_group=3" class=""><span class="" style="font-size:11px;color:#222222;">루즈핏레터긴팔티-t</span> <img src="https://cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/upload/custom_49.gif" alt="" /><img src="https://cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/upload/custom_30.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 class="" style="font-size:11px;color:#222222;text-decoration:line-through;">32,000won</span></li>
<li class=" xans-record-">
<p class="title2 displaynone"></p><span class="" style="font-size:11px;color:#222222;font-weight:bold;">30,400won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_12382" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12382&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12382&cate_no=1&display_group=3" name="anchorBoxName_12382"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202509/929289ac1011d1e3c03f1c25784a557c.jpg" id="eListPrdImage12382_3" alt="베이직와이드데님팬츠-p"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12382&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12382&cate_no=1&display_group=3" class=""><span class="" style="font-size:11px;color:#222222;">베이직와이드데님팬츠-p</span> <img src="https://cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/upload/custom_49.gif" alt="" /><img src="https://cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/upload/custom_30.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 class="" style="font-size:11px;color:#222222;text-decoration:line-through;">45,000won</span></li>
<li class=" xans-record-">
<p class="title2 displaynone"></p><span class="" style="font-size:11px;color:#222222;font-weight:bold;">42,800won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_12381" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12381&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12381&cate_no=1&display_group=3" name="anchorBoxName_12381"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202509/c552d8960c15a0c8836260b89cab389f.jpg" id="eListPrdImage12381_3" alt="레이스스프라이프셔츠-nb"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12381&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12381&cate_no=1&display_group=3" class=""><span class="" style="font-size:11px;color:#222222;">레이스스프라이프셔츠-nb</span> <img src="https://cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/upload/custom_49.gif" alt="" /><img src="https://cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/upload/custom_30.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 class="" style="font-size:11px;color:#222222;text-decoration:line-through;">61,000won</span></li>
<li class=" xans-record-">
<p class="title2 displaynone"></p><span class="" style="font-size:11px;color:#222222;font-weight:bold;">58,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_12378" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12378&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12378&cate_no=1&display_group=3" name="anchorBoxName_12378"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202509/90e67f5547453328b8361fd943b191bd.webp" id="eListPrdImage12378_3" alt="스트링와이드데님팬츠-p"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12378&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12378&cate_no=1&display_group=3" class=""><span class="" style="font-size:11px;color:#222222;">스트링와이드데님팬츠-p</span> <img src="https://cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/upload/custom_49.gif" alt="" /><img src="https://cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/upload/custom_30.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 class="" style="font-size:11px;color:#222222;text-decoration:line-through;">67,000won</span></li>
<li class=" xans-record-">
<p class="title2 displaynone"></p><span class="" style="font-size:11px;color:#222222;font-weight:bold;">64,700won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_12377" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12377&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12377&cate_no=1&display_group=3" name="anchorBoxName_12377"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202509/5955cbfdd127311a92b29d5a7b79fc64.jpg" id="eListPrdImage12377_3" alt="빈티지셔츠자켓-jk"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12377&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12377&cate_no=1&display_group=3" class=""><span class="" style="font-size:11px;color:#222222;">빈티지셔츠자켓-jk</span> <img src="https://cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/upload/custom_49.gif" alt="" /><img src="https://cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/upload/custom_30.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 class="" style="font-size:11px;color:#222222;text-decoration:line-through;">68,000won</span></li>
<li class=" xans-record-">
<p class="title2 displaynone"></p><span class="" style="font-size:11px;color:#222222;font-weight:bold;">64,600won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_12376" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12376&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12376&cate_no=1&display_group=3" name="anchorBoxName_12376"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202509/17d00a77556cec01242f124cd07edff3.jpg" id="eListPrdImage12376_3" alt="포켓단추팬츠-p"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12376&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12376&cate_no=1&display_group=3" class=""><span class="" 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 class="" 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_12373" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12373&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12373&cate_no=1&display_group=3" name="anchorBoxName_12373"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202509/889a1c3a201389253dc6377bb997817c.webp" id="eListPrdImage12373_3" alt="st루즈긴팔티-t"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12373&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12373&cate_no=1&display_group=3" class=""><span class="" style="font-size:11px;color:#222222;">st루즈긴팔티-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 class="" 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_12372" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12372&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12372&cate_no=1&display_group=3" name="anchorBoxName_12372"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202509/287beb294d92412652a75abd5258649d.webp" id="eListPrdImage12372_3" alt="와이드트랙팬츠-p"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12372&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12372&cate_no=1&display_group=3" class=""><span class="" 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 class="" style="font-size:11px;color:#222222;font-weight:bold;">71,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_12375" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12375&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12375&cate_no=1&display_group=3" name="anchorBoxName_12375"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202509/7b8bf7c599910dd3f137e87816ac836f.webp" id="eListPrdImage12375_3" alt="포켓단추소프트자켓-jk"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12375&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12375&cate_no=1&display_group=3" class=""><span class="" style="font-size:11px;color:#222222;">포켓단추소프트자켓-jk</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 class="" style="font-size:11px;color:#222222;font-weight:bold;">84,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_12371" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12371&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12371&cate_no=1&display_group=3" name="anchorBoxName_12371"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202509/7d3b3d302834198315f19c3168ac8b9f.jpg" id="eListPrdImage12371_3" alt="레이어드더블가디건"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12371&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12371&cate_no=1&display_group=3" class=""><span class="" 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 class="" 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_12374" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12374&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12374&cate_no=1&display_group=3" name="anchorBoxName_12374"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202509/d869af860386af9ad3330477a094716f.webp" id="eListPrdImage12374_3" alt="끈나시맥시원피스-ops"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12374&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12374&cate_no=1&display_group=3" class=""><span class="" 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 class="" style="font-size:11px;color:#222222;font-weight:bold;">84,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_12363" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12363&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12363&cate_no=1&display_group=3" name="anchorBoxName_12363"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202509/948cbf892590da6ff5539672d8a74e20.jpg" id="eListPrdImage12363_3" alt="단가라긴팔티셔츠-t"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12363&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12363&cate_no=1&display_group=3" class=""><span class="" 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 class="" 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_12370" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12370&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12370&cate_no=1&display_group=3" name="anchorBoxName_12370"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202509/a6bbc70502f467de3769627835fbe1bb.webp" id="eListPrdImage12370_3" alt="피그레터링긴팔티-t"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12370&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12370&cate_no=1&display_group=3" class=""><span class="" 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 class="" 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_12361" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12361&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12361&cate_no=1&display_group=3" name="anchorBoxName_12361"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202509/d5c51ac2e9203b2ea405cbcb496f7842.jpg" id="eListPrdImage12361_3" alt="오프숄더 맨투맨"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12361&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12361&cate_no=1&display_group=3" class=""><span class="" 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 class="" 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_12341" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12341&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12341&cate_no=1&display_group=3" name="anchorBoxName_12341"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202509/1202399c284eaf706c8ab1410988d8fb.jpg" id="eListPrdImage12341_3" alt="캐롤라이맨투맨"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12341&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12341&cate_no=1&display_group=3" class=""><span class="" 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 class="" 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_12362" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12362&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12362&cate_no=1&display_group=3" name="anchorBoxName_12362"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202509/478ffae7f408b911ba6d5ea0315bd07f.jpg" id="eListPrdImage12362_3" alt="흑청벌룬팬츠-p"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12362&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12362&cate_no=1&display_group=3" class=""><span class="" 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 class="" 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_12364" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12364&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12364&cate_no=1&display_group=3" name="anchorBoxName_12364"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202509/93db09aee19feb8ff07add4dd898c1ff.webp" id="eListPrdImage12364_3" alt="레이스맥시스커트-sk"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12364&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12364&cate_no=1&display_group=3" class=""><span class="" 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 class="" 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_12365" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12365&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12365&cate_no=1&display_group=3" name="anchorBoxName_12365"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202509/5fb505bf348206a1d0a408889ca4fd88.webp" id="eListPrdImage12365_3" alt="자수하프피그팬츠-p ㅣ 크림"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12365&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12365&cate_no=1&display_group=3" class=""><span class="" 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 class="" 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_12354" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12354&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12354&cate_no=1&display_group=3" name="anchorBoxName_12354"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202509/2ef07cf797072d9955273593f056cb0a.jpg" id="eListPrdImage12354_3" alt="유닛스트라이프긴팔티-t"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12354&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12354&cate_no=1&display_group=3" class=""><span class="" 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 class="" style="font-size:11px;color:#222222;font-weight:bold;">32,300won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_12360" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12360&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12360&cate_no=1&display_group=3" name="anchorBoxName_12360"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202509/d8ef35b5f691055d12bdfe88348494f9.jpg" id="eListPrdImage12360_3" alt="버뮤다피그팬츠-p"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12360&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12360&cate_no=1&display_group=3" class=""><span class="" 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 class="" 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_12356" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12356&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12356&cate_no=1&display_group=3" name="anchorBoxName_12356"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202509/def8b78107613779fba6cc387a256e69.webp" id="eListPrdImage12356_3" alt="홀터넥나시-n"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12356&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12356&cate_no=1&display_group=3" class=""><span class="" 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 class="" 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_12353" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12353&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12353&cate_no=1&display_group=3" name="anchorBoxName_12353"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202509/a2cbc2480b08042abce5b4e78e1bdd76.jpg" id="eListPrdImage12353_3" alt="샌프란후드티-t"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12353&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12353&cate_no=1&display_group=3" class=""><span class="" 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 class="" 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_12359" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12359&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12359&cate_no=1&display_group=3" name="anchorBoxName_12359"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202509/c54d0d7549171bbb2bdf49fd48dd23ae.jpg" id="eListPrdImage12359_3" alt="미키피그맨투맨"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12359&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12359&cate_no=1&display_group=3" class=""><span class="" 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 class="" 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_12357" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12357&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12357&cate_no=1&display_group=3" name="anchorBoxName_12357"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202509/4a2e7e3fb7e75b68315f3b68047f0978.jpg" id="eListPrdImage12357_3" alt="긴팔티-t"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12357&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12357&cate_no=1&display_group=3" class=""><span class="" 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 class="" 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_12350" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12350&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12350&cate_no=1&display_group=3" name="anchorBoxName_12350"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202509/8facd73bfd624afa75607e7a2afcd508.jpg" id="eListPrdImage12350_3" alt="프릴후드셔츠-nb"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12350&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12350&cate_no=1&display_group=3" class=""><span class="" 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 class="" style="font-size:11px;color:#222222;font-weight:bold;">65,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_12358" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12358&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12358&cate_no=1&display_group=3" name="anchorBoxName_12358"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202509/01a599aeb06b4dfd43395c36ca18339b.webp" id="eListPrdImage12358_3" alt="샌드와이드데님팬츠-p"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12358&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12358&cate_no=1&display_group=3" class=""><span class="" 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 class="" 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_12355" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12355&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12355&cate_no=1&display_group=3" name="anchorBoxName_12355"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202509/fc5d25f46226f10089601863959343da.webp" id="eListPrdImage12355_3" alt="롱스판스커트-sk"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12355&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12355&cate_no=1&display_group=3" class=""><span class="" style="font-size:11px;color:#222222;">롱스판스커트-sk</span> <img src="https://cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/upload/custom_49.gif" alt="" /><img src="https://cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/upload/custom_30.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 class="" style="font-size:11px;color:#222222;font-weight:bold;">26,600won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_12349" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12349&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12349&cate_no=1&display_group=3" name="anchorBoxName_12349"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202509/28f4a604fe0ebe4f830d2cab8f54c011.webp" id="eListPrdImage12349_3" alt="아리조나후드티-t"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12349&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12349&cate_no=1&display_group=3" class=""><span class="" 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 class="" 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_12345" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12345&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12345&cate_no=1&display_group=3" name="anchorBoxName_12345"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202509/d55b41661bb9e0c4f52befbda2efa075.webp" id="eListPrdImage12345_3" alt="데님롱스커트-sk ㅣ s - l size"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12345&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12345&cate_no=1&display_group=3" class=""><span class="" style="font-size:11px;color:#222222;">데님롱스커트-sk ㅣ s - 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 class="" 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_12347" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12347&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12347&cate_no=1&display_group=3" name="anchorBoxName_12347"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202509/c20c4e6e98f7d03d6b8da33cdcb481de.webp" id="eListPrdImage12347_3" alt="피그먼트긴팔티-t ㅣ m - l size"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12347&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12347&cate_no=1&display_group=3" class=""><span class="" style="font-size:11px;color:#222222;">피그먼트긴팔티-t ㅣ 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 class="" style="font-size:11px;color:#222222;font-weight:bold;">35,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_12352" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12352&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12352&cate_no=1&display_group=3" name="anchorBoxName_12352"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202509/815b6a4ef3a62593593fa5bca4d2af79.jpg" id="eListPrdImage12352_3" alt="절개카모롱팬츠-p"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12352&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12352&cate_no=1&display_group=3" class=""><span class="" 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 class="" 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_12339" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12339&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12339&cate_no=1&display_group=3" name="anchorBoxName_12339"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202509/d10f9dc73bb183176f817b5de8035205.jpg" id="eListPrdImage12339_3" alt="카라박시원피스-ops"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12339&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12339&cate_no=1&display_group=3" class=""><span class="" 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 class="" style="font-size:11px;color:#222222;font-weight:bold;">62,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_12351" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12351&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12351&cate_no=1&display_group=3" name="anchorBoxName_12351"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202509/3948049a600e3b9a4fa95e45f5ee252d.webp" id="eListPrdImage12351_3" alt="주름레이어드긴팔티-t"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12351&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12351&cate_no=1&display_group=3" class=""><span class="" 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 class="" 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_12348" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12348&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12348&cate_no=1&display_group=3" name="anchorBoxName_12348"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202509/8e40eeaac14fb25b43a3e224e7593ae4.jpg" id="eListPrdImage12348_3" alt="트임피그맥시팬츠-p ㅣ 차콜"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12348&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12348&cate_no=1&display_group=3" class=""><span class="" 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 class="" 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_12344" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12344&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12344&cate_no=1&display_group=3" name="anchorBoxName_12344"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202509/92b989e8bd7ecaa69fe114daa8bbacbd.jpg" id="eListPrdImage12344_3" alt="브로큰롱긴팔티-t"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12344&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12344&cate_no=1&display_group=3" class=""><span class="" 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 class="" 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_12340" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12340&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12340&cate_no=1&display_group=3" name="anchorBoxName_12340"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202509/d7de968dbb8a570675e02010adf9be26.jpg" id="eListPrdImage12340_3" alt="백포인트루즈맨투맨-mtm"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12340&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12340&cate_no=1&display_group=3" class=""><span class="" style="font-size:11px;color:#222222;">백포인트루즈맨투맨-mtm</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 class="" 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_12338" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12338&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12338&cate_no=1&display_group=3" name="anchorBoxName_12338"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202509/efeb3df98b29de8d3b91aea52df6db1f.webp" id="eListPrdImage12338_3" alt="스트라이프스커트-sk"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12338&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12338&cate_no=1&display_group=3" class=""><span class="" 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 class="" 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_12335" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12335&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12335&cate_no=1&display_group=3" name="anchorBoxName_12335"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202509/e6345457e1e577b4282be066d8e140d4.webp" id="eListPrdImage12335_3" alt="뒷스트링원피스-ops"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12335&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12335&cate_no=1&display_group=3" class=""><span class="" 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 class="" 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_12343" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12343&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12343&cate_no=1&display_group=3" name="anchorBoxName_12343"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202509/00dd03e9b0526cd2be6d9f7346558212.webp" id="eListPrdImage12343_3" alt="카모팬츠-p"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12343&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12343&cate_no=1&display_group=3" class=""><span class="" 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 class="" style="font-size:11px;color:#222222;font-weight:bold;">59,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_12337" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12337&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12337&cate_no=1&display_group=3" name="anchorBoxName_12337"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202509/19deb5374815ae6d48e5a1640847ac45.jpg" id="eListPrdImage12337_3" alt="16수워싱긴팔티-t"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12337&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12337&cate_no=1&display_group=3" class=""><span class="" 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 class="" 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_12336" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12336&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12336&cate_no=1&display_group=3" name="anchorBoxName_12336"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202509/aed3771fef80faf9da155d796a937d0f.jpg" id="eListPrdImage12336_3" alt="아노락와이드롱팬츠-p"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12336&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12336&cate_no=1&display_group=3" class=""><span class="" 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 class="" 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_12334" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12334&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12334&cate_no=1&display_group=3" name="anchorBoxName_12334"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202509/29bb52dd6e866bcc2ce6ee6ca7dfc999.jpg" id="eListPrdImage12334_3" alt="체크스커트-sk"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12334&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12334&cate_no=1&display_group=3" class=""><span class="" 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 class="" 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_12331" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12331&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12331&cate_no=1&display_group=3" name="anchorBoxName_12331"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202509/278caf4d5d83ccce67ebd2f1e3f9994f.webp" id="eListPrdImage12331_3" alt="단추텐셀긴팔티-t"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12331&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12331&cate_no=1&display_group=3" class=""><span class="" 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 class="" 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_12329" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12329&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12329&cate_no=1&display_group=3" name="anchorBoxName_12329"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202509/9cfbcdd63da9499c5bc40749ab63d4f3.webp" id="eListPrdImage12329_3" alt="트랙나일론점퍼-jp"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12329&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12329&cate_no=1&display_group=3" class=""><span class="" 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 class="" style="font-size:11px;color:#222222;font-weight:bold;">77,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_12326" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12326&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12326&cate_no=1&display_group=3" name="anchorBoxName_12326"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202509/7d148b3d27f57f886ad1022e1388817c.webp" id="eListPrdImage12326_3" alt="리본브이셔츠-nb"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12326&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12326&cate_no=1&display_group=3" class=""><span class="" 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 class="" 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_12333" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12333&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12333&cate_no=1&display_group=3" name="anchorBoxName_12333"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202509/43b9b075cfaddeada8e3e16f9acf3f75.webp" id="eListPrdImage12333_3" alt="체크오버핏셔츠-nb"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12333&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12333&cate_no=1&display_group=3" class=""><span class="" 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 class="" 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_12328" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12328&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12328&cate_no=1&display_group=3" name="anchorBoxName_12328"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202509/010becff42c1c10f934503d260147650.jpg" id="eListPrdImage12328_3" alt="피치프릴스커트-sk ㅣ 베이지"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12328&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12328&cate_no=1&display_group=3" class=""><span class="" 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 class="" 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_12332" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12332&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12332&cate_no=1&display_group=3" name="anchorBoxName_12332"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202509/629dac2a539adaf2c549448cc24c0c5d.webp" id="eListPrdImage12332_3" alt="카고포켓피그팬츠-p"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12332&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12332&cate_no=1&display_group=3" class=""><span class="" 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 class="" style="font-size:11px;color:#222222;font-weight:bold;">101,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_12325" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12325&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12325&cate_no=1&display_group=3" name="anchorBoxName_12325"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202509/60ff724490644ca9bd877c8256935803.webp" id="eListPrdImage12325_3" alt="니트 숄"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12325&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12325&cate_no=1&display_group=3" class=""><span class="" 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 class="" 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_12327" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12327&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12327&cate_no=1&display_group=3" name="anchorBoxName_12327"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202509/55cfdb4554a79c93407ef3e581592a83.jpg" id="eListPrdImage12327_3" alt="벨루아숏팬츠-p"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12327&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12327&cate_no=1&display_group=3" class=""><span class="" 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 class="" 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_12318" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12318&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12318&cate_no=1&display_group=3" name="anchorBoxName_12318"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202509/05f7bf8312d058aa978bebd02557ae2d.webp" id="eListPrdImage12318_3" alt="베이직기본니트-nt"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12318&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12318&cate_no=1&display_group=3" class=""><span class="" style="font-size:11px;color:#222222;">베이직기본니트-nt</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 class="" 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_12324" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12324&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12324&cate_no=1&display_group=3" name="anchorBoxName_12324"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202509/ba46d75657f0362784f0b582d92dbbb4.webp" id="eListPrdImage12324_3" alt="밑단프릴팬츠-p"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12324&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12324&cate_no=1&display_group=3" class=""><span class="" 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 class="" 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_11701" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=11701&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=11701&cate_no=1&display_group=3" name="anchorBoxName_11701"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202412/9a17d2472e3ac8e25e84d2a067d4c187.jpg" id="eListPrdImage11701_3" alt="유넥트임반팔티-t"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=11701&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=11701&cate_no=1&display_group=3" class=""><span class="" 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 class="" 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_12319" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12319&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12319&cate_no=1&display_group=3" name="anchorBoxName_12319"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202509/0010d34bf711987f500c895b86d691a6.jpg" id="eListPrdImage12319_3" alt="삥줄나일론팬츠-p ㅣ 소라"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12319&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12319&cate_no=1&display_group=3" class=""><span class="" 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 class="" style="font-size:11px;color:#222222;font-weight:bold;">47,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_12323" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12323&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12323&cate_no=1&display_group=3" name="anchorBoxName_12323"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202509/5bbf7dcbe9691de9ee2c0d08038db535.jpg" id="eListPrdImage12323_3" alt="단가라카리니트-nt"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12323&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12323&cate_no=1&display_group=3" class=""><span class="" style="font-size:11px;color:#222222;">단가라카리니트-nt</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 class="" 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_12295" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12295&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12295&cate_no=1&display_group=3" name="anchorBoxName_12295"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202508/048df2e96826be4bbc53383e15683ec2.jpg" id="eListPrdImage12295_3" alt="[무도금 925 silver] 키티 목걸이"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12295&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12295&cate_no=1&display_group=3" class=""><span class="" style="font-size:11px;color:#222222;">[무도금 925 silver] 키티 목걸이</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 class="" style="font-size:11px;color:#222222;text-decoration:line-through;">69,000won</span></li>
<li class=" xans-record-">
<p class="title2 displaynone"></p><span class="" 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_11474" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=11474&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=11474&cate_no=1&display_group=3" name="anchorBoxName_11474"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202409/9725e2bbee47095539f44689bab3ddb7.webp" id="eListPrdImage11474_3" alt="기본박시핏후드집업 ㅣ 네이비"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=11474&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=11474&cate_no=1&display_group=3" class=""><span class="" 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 class="" 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_12316" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12316&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12316&cate_no=1&display_group=3" name="anchorBoxName_12316"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202508/bf34b31e2b968951b6bb1a1270ee1ccb.jpg" id="eListPrdImage12316_3" alt="스트라이프긴팔티-t"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12316&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12316&cate_no=1&display_group=3" class=""><span class="" 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 class="" 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_12322" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12322&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12322&cate_no=1&display_group=3" name="anchorBoxName_12322"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202508/8536867499b2e55ea99d353fdb37e094.webp" id="eListPrdImage12322_3" alt="트임피그맥시팬츠-p"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12322&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12322&cate_no=1&display_group=3" class=""><span class="" 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 class="" 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_12313" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12313&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12313&cate_no=1&display_group=3" name="anchorBoxName_12313"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202508/3e904c34ea24f32607cf98ea4a39ad70.jpg" id="eListPrdImage12313_3" alt="레터링루즈핏맨투맨"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12313&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12313&cate_no=1&display_group=3" class=""><span class="" 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 class="" 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_12320" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12320&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12320&cate_no=1&display_group=3" name="anchorBoxName_12320"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202508/2791fd1c5fb8f4d158497062df11d743.jpg" id="eListPrdImage12320_3" alt="단가라롱긴팔원피스-ops"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12320&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12320&cate_no=1&display_group=3" class=""><span class="" 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 class="" style="font-size:11px;color:#222222;font-weight:bold;">42,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_12321" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12321&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12321&cate_no=1&display_group=3" name="anchorBoxName_12321"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202508/19b8bcb7a8ff38036ef25151adc89b3b.jpg" id="eListPrdImage12321_3" alt="트랙 집업"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12321&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12321&cate_no=1&display_group=3" class=""><span class="" 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 class="" 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_12312" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12312&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12312&cate_no=1&display_group=3" name="anchorBoxName_12312"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202508/9b9a26d0f25c1c03539db2b2fae6bf2b.webp" id="eListPrdImage12312_3" alt="빈티지워싱레더자켓-jk"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12312&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12312&cate_no=1&display_group=3" class=""><span class="" style="font-size:11px;color:#222222;">빈티지워싱레더자켓-jk</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 class="" style="font-size:11px;color:#222222;font-weight:bold;">88,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_12317" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12317&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12317&cate_no=1&display_group=3" name="anchorBoxName_12317"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202508/5117433fbbb14eddd7d342fcf4e84781.webp" id="eListPrdImage12317_3" alt="기본박시핏후드집업 ㅣ 그레이"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12317&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12317&cate_no=1&display_group=3" class=""><span class="" 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 class="" 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_12314" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12314&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12314&cate_no=1&display_group=3" name="anchorBoxName_12314"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202508/9188776a83d1a1538a5e35c2235c9712.jpg" id="eListPrdImage12314_3" alt="데일리H라인스커트-sk"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12314&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12314&cate_no=1&display_group=3" class=""><span class="" 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 class="" 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_12300" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12300&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12300&cate_no=1&display_group=3" name="anchorBoxName_12300"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202508/9e8a9596ca395ff2a9241d99041bea46.webp" id="eListPrdImage12300_3" alt="코듀로이반팬츠-p ㅣ 네이비"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12300&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12300&cate_no=1&display_group=3" class=""><span class="" 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 class="" 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_12308" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12308&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12308&cate_no=1&display_group=3" name="anchorBoxName_12308"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202508/b5465f3c20fbe1509fc75b5162cbc538.jpg" id="eListPrdImage12308_3" alt="잔잔스트라이프스커트-sk ㅣ 핑크"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12308&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12308&cate_no=1&display_group=3" class=""><span class="" 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 class="" 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_12302" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12302&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12302&cate_no=1&display_group=3" name="anchorBoxName_12302"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202508/fc875edb5d4ccd300b2bc228ac9f0ea3.jpg" id="eListPrdImage12302_3" alt="스트라이프컬러긴팔티-t"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12302&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12302&cate_no=1&display_group=3" class=""><span class="" 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 class="" 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_12301" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12301&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12301&cate_no=1&display_group=3" name="anchorBoxName_12301"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202508/dd2cad711658f6ce25e8c3a860b2fd75.jpg" id="eListPrdImage12301_3" alt="NYC피그긴팔티-t"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12301&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12301&cate_no=1&display_group=3" class=""><span class="" style="font-size:11px;color:#222222;">NYC피그긴팔티-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 class="" 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_12309" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12309&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12309&cate_no=1&display_group=3" name="anchorBoxName_12309"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202508/eee0bb2beb8a15b4f0615de3b7f0d753.jpg" id="eListPrdImage12309_3" alt="네비르체크셔츠-nb"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12309&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12309&cate_no=1&display_group=3" class=""><span class="" 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 class="" 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_12307" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12307&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12307&cate_no=1&display_group=3" name="anchorBoxName_12307"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202508/5c7b4504e0f09bf8326b4fb5326aac68.webp" id="eListPrdImage12307_3" alt="잔잔스트라이프스커트-sk ㅣ 소라"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12307&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12307&cate_no=1&display_group=3" class=""><span class="" 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 class="" 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_12299" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12299&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12299&cate_no=1&display_group=3" name="anchorBoxName_12299"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202508/e0f7ef54926adc3a68720a08e7ad1387.jpg" id="eListPrdImage12299_3" alt="피그서울긴팔티-t"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12299&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12299&cate_no=1&display_group=3" class=""><span class="" 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 class="" 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_12306" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12306&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12306&cate_no=1&display_group=3" name="anchorBoxName_12306"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202508/ac1ae01f8a308b4d5919664af605e2bf.jpg" id="eListPrdImage12306_3" alt="잔잔스트라이프셔츠-nb ㅣ 핑크"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12306&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12306&cate_no=1&display_group=3" class=""><span class="" style="font-size:11px;color:#222222;">잔잔스트라이프셔츠-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-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span class="" 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_12303" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12303&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12303&cate_no=1&display_group=3" name="anchorBoxName_12303"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202508/77086c3d0381e5fb02cfdfe944e19756.jpg" id="eListPrdImage12303_3" alt="실키레이스스커트-sk"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12303&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12303&cate_no=1&display_group=3" class=""><span class="" 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 class="" 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_12310" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12310&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12310&cate_no=1&display_group=3" name="anchorBoxName_12310"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202508/1842aab83e9e62896f11de8c68107a4d.webp" id="eListPrdImage12310_3" alt="네비르캉캉스커트-sk"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12310&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12310&cate_no=1&display_group=3" class=""><span class="" 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 class="" style="font-size:11px;color:#222222;font-weight:bold;">35,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_12305" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12305&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12305&cate_no=1&display_group=3" name="anchorBoxName_12305"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202508/10be268979643660664fb6f9b117f395.jpg" id="eListPrdImage12305_3" alt="잔잔스트라이프셔츠-nb ㅣ 소라"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12305&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12305&cate_no=1&display_group=3" class=""><span class="" 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 class="" 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_12280" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12280&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12280&cate_no=1&display_group=3" name="anchorBoxName_12280"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202508/fe11b9a1fdc522c1b85166bca30be6bb.jpg" id="eListPrdImage12280_3" alt="라이더맥긴팔맨투맨"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12280&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12280&cate_no=1&display_group=3" class=""><span class="" 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 class="" 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_11823" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=11823&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=11823&cate_no=1&display_group=3" name="anchorBoxName_11823"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202502/61750313354e21fe8a20aa13721d0725.webp" id="eListPrdImage11823_3" alt="케니러-nb (10월1일 순차발송)"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=11823&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=11823&cate_no=1&display_group=3" class=""><span class="" style="font-size:11px;color:#222222;">케니러-nb (10월1일 순차발송)</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 class="" 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_12292" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12292&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12292&cate_no=1&display_group=3" name="anchorBoxName_12292"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202508/1aef936301cacef475ab6a587b7d3322.webp" id="eListPrdImage12292_3" alt="피그박시핏긴팔티-t"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12292&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12292&cate_no=1&display_group=3" class=""><span class="" 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 class="" 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_12284" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12284&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12284&cate_no=1&display_group=3" name="anchorBoxName_12284"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202508/69c68bb60e803de82cf9b1066f34d1a9.jpg" id="eListPrdImage12284_3" alt="새틴컬러스커트-sk ㅣ s - m size ㅣ 코랄"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12284&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12284&cate_no=1&display_group=3" class=""><span class="" style="font-size:11px;color:#222222;">새틴컬러스커트-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 class="" 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_11725" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=11725&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=11725&cate_no=1&display_group=3" name="anchorBoxName_11725"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202501/7c0ad3a03be40faf85fb325e60d5ff79.webp" id="eListPrdImage11725_3" alt="레이쉬-nb"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=11725&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=11725&cate_no=1&display_group=3" class=""><span class="" style="font-size:11px;color:#222222;">레이쉬-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-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span class="" style="font-size:11px;color:#222222;font-weight:bold;">59,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_12293" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12293&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12293&cate_no=1&display_group=3" name="anchorBoxName_12293"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202508/a1acb691173c916e0564d9b5e14cbe6c.jpg" id="eListPrdImage12293_3" alt="피치프릴스커트-sk ㅣ 아이보리"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12293&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12293&cate_no=1&display_group=3" class=""><span class="" 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 class="" 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_12291" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12291&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12291&cate_no=1&display_group=3" name="anchorBoxName_12291"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202508/fd0af6a672894253efedb1deb5dfbb30.jpg" id="eListPrdImage12291_3" alt="삥줄나일론팬츠-p ㅣ 그레이"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12291&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12291&cate_no=1&display_group=3" class=""><span class="" 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 class="" style="font-size:11px;color:#222222;font-weight:bold;">47,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_11930" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=11930&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=11930&cate_no=1&display_group=3" name="anchorBoxName_11930"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202504/51758e3028c4fd8c5d62ba2de97222d7.webp" id="eListPrdImage11930_3" alt="에브프-nb"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=11930&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=11930&cate_no=1&display_group=3" class=""><span class="" style="font-size:11px;color:#222222;">에브프-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-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span class="" 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_12282" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12282&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12282&cate_no=1&display_group=3" name="anchorBoxName_12282"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202508/452c02d865e71ea65464d2e52299610d.webp" id="eListPrdImage12282_3" alt="캣츠긴팔맨투맨"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12282&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12282&cate_no=1&display_group=3" class=""><span class="" 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 class="" 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_12278" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12278&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12278&cate_no=1&display_group=3" name="anchorBoxName_12278"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202508/d4f8f6377cb2a7350abbae772efda082.jpg" id="eListPrdImage12278_3" alt="기본모달긴팔티-t"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12278&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12278&cate_no=1&display_group=3" class=""><span class="" 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 class="" 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_12290" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12290&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12290&cate_no=1&display_group=3" name="anchorBoxName_12290"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202508/dfd0426ed90b1065fca7daa21879e609.jpg" id="eListPrdImage12290_3" alt="도트반팔티-t"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12290&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12290&cate_no=1&display_group=3" class=""><span class="" 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 class="" 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_12283" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12283&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12283&cate_no=1&display_group=3" name="anchorBoxName_12283"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202508/1298ba575bf0e8fedefc57a11ce3b448.webp" id="eListPrdImage12283_3" alt="로고피그후드집업 ㅣ 크림"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12283&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12283&cate_no=1&display_group=3" class=""><span class="" 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 class="" style="font-size:11px;color:#222222;font-weight:bold;">65,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 class="" 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 class="" 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_12281" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12281&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12281&cate_no=1&display_group=3" name="anchorBoxName_12281"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202508/d05783ad0a7cd9ec0c1eb0b4103aec96.webp" id="eListPrdImage12281_3" alt="코듀로이반팬츠-p ㅣ 그린"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12281&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12281&cate_no=1&display_group=3" class=""><span class="" 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 class="" 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_12285" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12285&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12285&cate_no=1&display_group=3" name="anchorBoxName_12285"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202508/31e9eb762387c419b41f6b68e7ab3940.jpg" id="eListPrdImage12285_3" alt="슬림유넥긴팔티-t"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12285&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12285&cate_no=1&display_group=3" class=""><span class="" 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 class="" 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_11752" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=11752&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=11752&cate_no=1&display_group=3" name="anchorBoxName_11752"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202502/a7352b0d75712de76a4868b45713e58a.jpg" id="eListPrdImage11752_3" alt="베이저-nb ㅣ 차콜"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=11752&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=11752&cate_no=1&display_group=3" class=""><span class="" style="font-size:11px;color:#222222;">베이저-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-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span class="" style="font-size:11px;color:#222222;font-weight:bold;">74,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_12053" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12053&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12053&cate_no=1&display_group=3" name="anchorBoxName_12053"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202505/b5b082f9efb6d5c9572e9c8f8a6ca9b3.webp" id="eListPrdImage12053_3" alt="샤브이-nb ㅣ 그레이"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12053&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12053&cate_no=1&display_group=3" class=""><span class="" style="font-size:11px;color:#222222;">샤브이-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-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span class="" 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_11744" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=11744&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=11744&cate_no=1&display_group=3" name="anchorBoxName_11744"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202501/b02f6b3bfd3f3f58e0bff1b4036cbea2.webp" id="eListPrdImage11744_3" alt="베이저-sk ㅣ 화이트"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=11744&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=11744&cate_no=1&display_group=3" class=""><span class="" 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 class="" 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_11765" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=11765&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=11765&cate_no=1&display_group=3" name="anchorBoxName_11765"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202502/a6747e0cad97c056ba2dc652421bff92.jpg" id="eListPrdImage11765_3" alt="베이저-sk ㅣ 소라"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=11765&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=11765&cate_no=1&display_group=3" class=""><span class="" 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 class="" 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>
</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_12368" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12368&cate_no=1&display_group=4';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12368&cate_no=1&display_group=4" name="anchorBoxName_12368"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202509/24a25adc7ae1b9ed34d2e429c21d25c2.jpg" id="eListPrdImage12368_4" alt="스터드호보백-bag"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12368&cate_no=1&display_group=4';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12368&cate_no=1&display_group=4" class=""><span class="" 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 class="" 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_12366" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12366&cate_no=1&display_group=4';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12366&cate_no=1&display_group=4" name="anchorBoxName_12366"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202509/fe7a79f3b671f693a5b263e1aca56e59.jpg" id="eListPrdImage12366_4" alt="주름호피숄더백-bag"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12366&cate_no=1&display_group=4';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12366&cate_no=1&display_group=4" class=""><span class="" 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 class="" 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_12298" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12298&cate_no=1&display_group=4';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12298&cate_no=1&display_group=4" name="anchorBoxName_12298"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202508/56fa6b3d221e794dd5a9c9ba96879751.jpg" id="eListPrdImage12298_4" alt="투리드 모자"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12298&cate_no=1&display_group=4';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12298&cate_no=1&display_group=4" class=""><span class="" 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 class="" 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_12296" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12296&cate_no=1&display_group=4';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12296&cate_no=1&display_group=4" name="anchorBoxName_12296"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202508/b30f784ae3a30d08df6aeda073eded79.jpg" id="eListPrdImage12296_4" alt="시스루 체크 스카프"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12296&cate_no=1&display_group=4';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12296&cate_no=1&display_group=4" class=""><span class="" 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 class="" style="font-size:11px;color:#222222;font-weight:bold;">14,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_12271" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12271&cate_no=1&display_group=4';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12271&cate_no=1&display_group=4" name="anchorBoxName_12271"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202508/d63af7a30b094c0b8b95bc4afa3c049f.jpg" id="eListPrdImage12271_4" alt="빈티지시크백-bag"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12271&cate_no=1&display_group=4';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12271&cate_no=1&display_group=4" class=""><span class="" 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 class="" 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_12218" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=12218&cate_no=1&display_group=4';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=12218&cate_no=1&display_group=4" name="anchorBoxName_12218"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202507/3f9dd6e01f6c979da12803fef4234ea1.jpg" id="eListPrdImage12218_4" alt="페이즐리 스카프"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=12218&cate_no=1&display_group=4';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=12218&cate_no=1&display_group=4" class=""><span class="" 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 class="" 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_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 class="" 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 class="" 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_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 class="" 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 class="" 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 class="" 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 class="" 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_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 class="" 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 class="" 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 class="" 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 class="" 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 class="" 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 class="" 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 class="" 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 class="" 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 class="" 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 class="" 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 class="" 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 class="" 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 class="" 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 class="" 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>
</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=31d9070bb66a87edbcea130716996081&u=yeon5732.1"></script>
<script> (function (i, s, o, g) {
var a = s.createElement(o), m = s.getElementsByTagName(o)[0];
var initialized = false;
var interval = null;
function safeInit() {
if (initialized) return;
if (typeof i.initCaWebAnalytics === 'function') {
try {
i.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"});
initialized = true;
} finally {
if (interval) clearInterval(interval);
a.onload = a.onreadystatechange = a.onerror = null;
}
}
}
a.onload = a.onreadystatechange = function () {
if (!a.readyState || a.readyState === 'loaded' || a.readyState === 'complete') {
safeInit();
}
};
a.onerror = function () {
if (interval) { clearInterval(interval); interval = null; }
a.onload = a.onreadystatechange = a.onerror = null;
};
interval = setInterval(safeInit, 200);
setTimeout(function () {
if (interval) { clearInterval(interval); interval = null; }
}, 10000);
safeInit();
a.async = 1;
a.setAttribute('crossorigin', 'anonymous');
a.src = g;
m.parentNode.insertBefore(a, m);
})(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?v=2509171429&lang=ko_KR&domain=front&type=" 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=1757985794" ></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'},{'src':'https://static.alphwidget.com/script/Push-Script/PRODUCTION/alphapush_mileage.js?vs=20250717230705.1&client_id=tgHZp6LCG5KuklqvIYgrtB'},{'src':'https://static.alphwidget.com/script/Push-Script/PRODUCTION/alphapush_onsite.js?vs=20250717231742.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>