<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ko" lang="ko"><head><script>(function(i, s, o, g, r) {
var a = s.createElement(o);
var m = s.getElementsByTagName(o)[0];
a.async = true;
a.src = g;
a.onload = function() {
if (i[r].init) {
i[r].init('https://js-error-tracer-api.cafe24.com', 'eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJ5ZW9uNTczMi5jYWZlMjQuY29tIiwiYXVkIjoianMtZXJyb3ItdHJhY2VyLWFwaS5jYWZlMjQuY29tIiwibWFsbF9pZCI6Inllb241NzMyIiwic2hvcF9ubyI6MSwicGF0aF9yb2xlIjoiTUFJTiIsImxhbmd1YWdlX2NvZGUiOiJrb19LUiIsImNvdW50cnlfY29kZSI6IktSIiwiaXNfeXRzIjpmYWxzZSwiaXNfY29udGFpbmVyIjpmYWxzZSwid29ya3NwYWNlIjoicHJvZHVjdGlvbiJ9.R7CulG62VWFbV2oE7aVihwJwrZ-PO8lIbWRIdRXrOt4', {"errors":{"path":"\/api\/v1\/store","collectWindowErrors":true,"preventDuplicateReports":true,"storageKeyPrefix":"EC_JET.MAIN","samplingEnabled":true,"samplingRate":0.5},"vitals":{"path":"\/api\/v1\/vitals","samplingEnabled":true,"samplingRate":0.3},"resources":{"path":"\/api\/v1\/resources","samplingEnabled":true,"samplingRate":0.5,"durationThreshold":3000}});
}
};
m.parentNode.insertBefore(a, m);
}(window, document, 'script', '//optimizer.poxo.com/jet/jet.js', 'EC_JET'));</script>
<script type="text/javascript">window.CAFE24 = window.CAFE24 || {};CAFE24.ROUTE = {"is_mobile":false,"is_need_route":false,"language_code":"ZZ","path":{"origin":"\/","result":"\/","prefix":""},"shop_no":0,"skin_code":"default","support_language_list":{"ar":"ar_EG","ar-EG":"ar_EG","de":"de_DE","de-DE":"de_DE","en":"en_US","en-IN":"en_IN","en-PH":"en_PH","en-US":"en_US","es":"es_ES","es-ES":"es_ES","hi":"hi_IN","hi-IN":"hi_IN","id":"id_ID","id-ID":"id_ID","it":"it_IT","it-IT":"it_IT","ja":"ja_JP","ja-JP":"ja_JP","ko":"ko_KR","ko-KR":"ko_KR","ms":"ms_MY","ms-MY":"ms_MY","pt":"pt_PT","pt-PT":"pt_PT","ru":"ru_RU","ru-RU":"ru_RU","th":"th_TH","th-TH":"th_TH","tr":"tr_TR","tr-TR":"tr_TR","vi":"vi_VN","vi-VN":"vi_VN","zh":"zh_CN","zh-CN":"zh_CN","zh-HK":"zh_HK","zh-MO":"zh_MO","zh-SG":"zh_SG","zh-TW":"zh_TW"}};</script><script type="text/javascript">if (typeof EC_ROUTE === "undefined") {
/**
* 프론트용 라우트 플러그인
* @type {{bInit: boolean, init: EC_ROUTE.init}}
* CAFE24.ROUTE 참조
*/
var EC_ROUTE = {
EC_DOMAIN_PATH_INFO: 'EC_DOMAIN_PATH_INFO',
bInit: false,
aFromList: [],
aToList: [],
aCleanFilter: null,
init: function () {
if (this.bInit || typeof CAFE24.ROUTE === 'undefined') {
return;
}
this.bInit = true;
this.aCleanFilter = [
/^shop[1-9][0-9]*$/,
/^(m|p)$/,
new RegExp('^(' + Object.keys(CAFE24.ROUTE.support_language_list).join('|') + ')$'),
/^skin-(base|skin[1-9][0-9]*|mobile[0-9]*)$/,
];
},
isNeedRoute: function ()
{
return CAFE24.ROUTE.is_need_route;
},
/**
*
* @param iShopNo
* @param bMobile
* @param sFrontLanguage
* @param sSkinCode
* @returns {*|string}
*/
getUrlDomain: function (iShopNo, bMobile, sFrontLanguage, sSkinCode)
{
var oRouteConfig = {};
if (typeof iShopNo == 'undefined') {
oRouteConfig.shop_no = CAFE24.SDE_SHOP_NUM;
} else {
oRouteConfig.shop_no = iShopNo;
}
if (typeof bMobile == 'undefined') {
oRouteConfig.is_mobile = false;
} else {
oRouteConfig.is_mobile = bMobile;
}
if (typeof sFrontLanguage == 'undefined') {
oRouteConfig.language_code = '';
}else {
oRouteConfig.language_code = sFrontLanguage; // 내부에서 로직으로 동작할땐 언어_지역 형태의 로케일 형태를 따른다.
}
if (typeof sSkinCode == 'undefined') {
oRouteConfig.skin_code = '';
}else {
oRouteConfig.skin_code = sSkinCode;
}
var sDomain = '';
if (oRouteConfig.shop_no != CAFE24.SDE_SHOP_NUM) {
// 접근된 다른 멀티샵 도메인 정보는 primary domain 를 조회해야함으로 ajax 를 통해 정보를 얻는다.
sDomain = this._getUrlDomainMultishop(oRouteConfig);
} else {
// 샵이 동일할 경우에는 접근된 domain 에 path 정보만 정리하여 반환함.
sDomain = this._getUrlDomain(oRouteConfig);
}
return sDomain;
},
_getUrlDomainMultishop: function (oRouteConfig)
{
var sDomain = '';
EC$.ajax({
type: 'GET',
url: '/exec/front/Shop/Domain',
data: {
'_shop_no' : oRouteConfig.shop_no,
'is_mobile' : oRouteConfig.is_mobile,
'language_code' : oRouteConfig.language_code,
'skin_code' : oRouteConfig.skin_code,
},
async: false,
dataType: 'json',
cache: true,
success: function(oResult) {
switch (oResult.code) {
case '0000' :
sDomain = oResult.data;
break;
default :
break;
}
return false;
}
});
return sDomain;
},
_getUrlDomain: function (oRouteConfig)
{
oRouteConfig.domain = this._getCreateHost(oRouteConfig);
return location.protocol + '//' + oRouteConfig.domain + this._getCreateUri(oRouteConfig);
},
_getCreateHost : function (oRouteConfig)
{
var sHost = location.host;
var aHost = sHost.split('.');
if (this.isBaseDomain(sHost)) {
if (aHost.length > 3) {
aHost[0] = '';
}
} else if (oRouteConfig.is_mobile) {
if (this.isMobileDomain()) {
oRouteConfig.is_mobile = false;
}
}
return aHost.filter(Boolean).join('.');
},
_getCreateUri: function (oRouteInfo)
{
var aUrl = [];
if (this.isBaseDomain() && oRouteInfo.shop_no > 1) {
aUrl.push('shop' + oRouteInfo.shop_no);
}
if (oRouteInfo.is_mobile) {
aUrl.push('m');
}
if (oRouteInfo.language_code != 'ZZ' && oRouteInfo.language_code != '') {
var iIndex = Object.values(CAFE24.ROUTE.support_language_list).indexOf(oRouteInfo.language_code);
if (iIndex !== -1) {
aUrl.push(Object.keys(CAFE24.ROUTE.support_language_list)[iIndex]);
}
}
if (this.isBaseDomain() && oRouteInfo.skin_code != 'default' && oRouteInfo.skin_code != '') {
aUrl.push('skin-' + oRouteInfo.skin_code);
}
var sUrl= '/';
if (aUrl.length > 0) {
sUrl= '/' + aUrl.join('/');
sUrl = this.rtrim(sUrl, '/');
}
return sUrl;
},
/**
* en, en-US => en_US
*/
convertValidLanguageCode: function (sUrlLanguageCode)
{
if (typeof CAFE24.ROUTE.support_language_list[sUrlLanguageCode] != 'undefined') {
return CAFE24.ROUTE.support_language_list[sUrlLanguageCode];
}
return false;
},
isMobileDomain: function (sHost)
{
if (typeof sHost == 'undefined') {
sHost = location.host;
}
var aMatched = sHost.match(/^(m|mobile|skin\-mobile|skin\-mobile[0-9]+[\-]{2}shop[0-9]+|skin\-mobile[0-9]+|mobile[\-]{2}shop[0-9]+)\./i);
return aMatched != null;
},
isBaseDomain: function (sHost)
{
if (typeof sHost == 'undefined') {
sHost = location.host;
}
return sHost.indexOf(CAFE24.GLOBAL_INFO.getRootDomain()) !== -1;
},
removePrefixUrl: function (sUrl)
{
if (this.isNeedRoute()) {
sUrl = sUrl.replace(this.getPrefixUrl('/'), '/'); // 자동으로 prefix 붙은 영역을 제거해준다.
}
return sUrl;
},
getPrefixUrl: function (sUrl)
{
if (this.isNeedRoute() === false) {
return sUrl;
}
if (sUrl.indexOf('/') !== 0) {
return sUrl;
}
if (sUrl.match(/^\/{2,}/) !== null) {
return sUrl;
}
var iCachedPosition = this.aFromList.indexOf(sUrl);
if (iCachedPosition > -1) {
return this.aToList[iCachedPosition];
}
var bTailSlash = (sCleanUrl !== '/' && sUrl.substr(-1) === '/');
var sCleanUrl = this.getCleanUrl(sUrl);
var aPrefixPart = CAFE24.ROUTE.path.prefix.split('/');
var aUrlPart = sCleanUrl.split('/');
var bMatched = true;
var sReturnUrl = sCleanUrl;
if (aUrlPart.length < aPrefixPart.length) {
bMatched = false;
} else {
for (var i = 0; i < aPrefixPart.length ; i++) {
if (aPrefixPart[i] != aUrlPart[i]) {
bMatched = false;
break;
}
}
}
if (bMatched === false) {
if (sCleanUrl == '/') {
sReturnUrl = CAFE24.ROUTE.path.prefix;
} else {
sReturnUrl = CAFE24.ROUTE.path.prefix + sCleanUrl;
}
sReturnUrl = bTailSlash ? sReturnUrl : this.rtrim(sReturnUrl, '/')
this.aFromList.push(sUrl);
this.aToList.push(sReturnUrl);
}
return sReturnUrl;
},
/**
* document.location.pathname 이 필요할 경우 사용한다.
* @returns {*}
*/
getPathName: function()
{
if (typeof CAFE24.ROUTE.path.result == 'undefined') {
return document.location.pathname;
}
return CAFE24.ROUTE.path.result;
},
rtrim: function (str, chr)
{
var rgxtrim = (!chr) ? new RegExp('\\s+$') : new RegExp(chr+'+$');
return str.replace(rgxtrim, '');
},
getShopNo: function ()
{
return CAFE24.ROUTE.shop_no;
},
getSkinCode: function ()
{
return CAFE24.ROUTE.skin_code;
},
getLanguageCode: function ()
{
return CAFE24.ROUTE.language_code;
},
getMobile: function ()
{
return CAFE24.ROUTE.is_mobile;
},
getIsMobile: function ()
{
return CAFE24.ROUTE.is_mobile || CAFE24.ROUTE.skin_code.match(/^mobile[0-9]*$/);
},
getCleanUrl: function (sUrl)
{
if (sUrl === '/') {
return sUrl;
}
var aUrl = sUrl.split('/');
aUrl.shift();
if (aUrl.length < 1) {
return sUrl;
}
// 현재 4 depth 까지 미리보기 기능이 구현되어있음
var iPos = 0;
var bFind = false;
for (var i = 0; i < aUrl.length ; i++) {
bFind = false;
for (var iSub = iPos, iSubCount = this.aCleanFilter.length; iSub < iSubCount ; iSub++) {
if (aUrl[i].match(this.aCleanFilter[iSub]) !== null) {
bFind = true;
iPos = iSub + 1;
aUrl.splice(i, 1);
i--; // aUrl 을 삭제해 주었으니 검색 조건을 -1 제거하여 초기화 한다. 다음 for i++ 로 증감 조회됨.
break;
}
}
if (bFind === false) {
break;
}
}
return '/' + aUrl.join('/');
},
getIsEasyUrl : function ()
{
return !window.location.pathname.match(/^[\w\/\-\.]+(php|html|htm)$/i);
}
};
EC_ROUTE.init();
}
</script>
<meta name="path_role" content="MAIN" />
<meta name="author" content="쏘앵" />
<meta name="description" content="박시핏루즈핏 쇼핑몰, 체형커버핏, 커플룩, 코트, 자켓, 맨투맨, 티셔츠, 스커트, 팬츠, 등 판매" />
<meta name="keywords" content="박시핏루즈핏 쇼핑몰, 체형커버핏, 커플룩, 코트, 자켓, 맨투맨, 티셔츠, 스커트, 팬츠, 등 판매" /><meta http-equiv="Content-Type" content="text/html; charset=utf-8"><link href="http://fonts.googleapis.com/earlyaccess/nanumgothic.css" rel="stylesheet" type="text/css"><link href="https://fonts.googleapis.com/css?family=Roboto:400,500,700" rel="stylesheet"><link href="https://fonts.googleapis.com/css?family=Lato" rel="stylesheet" type="text/css"><meta property="og:type" content="website"><meta property="og:title" content="쏘앵"><meta property="og:url" content="http://www.ssoaeng.co.kr"><meta property="og:description" content="박시핏루즈핏 쇼핑몰, 체형커버핏, 커플룩, 코트, 자켓, 맨투맨, 티셔츠, 스커트, 팬츠, 등 판매"><link rel="canonical" href="http://www.ssoaeng.co.kr"><meta http-equiv="X-UA-Compatible" content="IE=edge"><!--PG크로스브라우징필수내용 시작--><meta http-equiv="Cache-Control" content="no-cache"><meta http-equiv="Expires" content="0"><meta http-equiv="Pragma" content="no-cache"><!--PG크로스브라우징필수내용 끝--><!--해당 CSS는 쇼핑몰 전체 페이지에 영향을 줍니다. 삭제와 수정에 주의해주세요.--><!-- 스마트디자인에서는 JQuery 1.4.4 버전이 내장되어있습니다. 추가로 호출하면 충돌이 생길 수 있습니다. --><script type="text/javascript" src="/ec-js/common.js"></script><!-- 해당 JS는 플래시를 사용하기 위한 스크립트입니다. --><script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
<meta name="naver-site-verification" content="a41a1a033ac348e2488667d9fbf46e89258d6976" />
<meta name="google-site-verification" content="Iuo_pExjQtpZiajNSsDeOiL-FkJ5hOH6vdpuaCoQpVw" />
<meta name="msvalidate.01" content="9FCC140002FD0242619917FEE8746F37" />
<meta name="facebook-domain-verification" content="w859bosrlckgp1fhplaa1za22yq6om" />
<meta property="og:title" content="쏘앵" />
<meta property="og:description" content="박시핏루즈핏 쇼핑몰, 체형커버핏, 커플룩, 코트, 자켓, 맨투맨, 티셔츠, 스커트, 팬츠, 등 판매" />
<meta property="og:site_name" content="쏘앵" />
<meta property="og:type" content="website" />
<link rel="shortcut icon" href="/web/upload/favicon_20150216221033.ico" />
<script type="text/javascript" src="//wcs.naver.net/wcslog.js"></script>
<script type="text/javascript">
window.CAFE24 = window.CAFE24 || {};
CAFE24.MANIFEST_CACHE_REVISION = '2505081404';
CAFE24.getDeprecatedNamespace = function(sDeprecatedNamespace, sSupersededNamespace) {
var sNamespace = sSupersededNamespace
? sSupersededNamespace
: sDeprecatedNamespace.replace(/^EC_/, '');
return CAFE24[sNamespace];
}
CAFE24.FRONT_LANGUAGE_CODE = "ko_KR";
CAFE24.MOBILE = false;
CAFE24.MOBILE_DEVICE = false;
CAFE24.MOBILE_USE = true;
var EC_MOBILE = CAFE24.MOBILE;
var EC_MOBILE_DEVICE = CAFE24.MOBILE_DEVICE;
var EC_MOBILE_USE = CAFE24.MOBILE_USE;
CAFE24.SKIN_CODE = "skin11";
CAFE24.FRONT_EXTERNAL_SCRIPT_VARIABLE_DATA = {"common_member_id_crypt":""};
var EC_FRONT_EXTERNAL_SCRIPT_VARIABLE_DATA = CAFE24.getDeprecatedNamespace('EC_FRONT_EXTERNAL_SCRIPT_VARIABLE_DATA');
CAFE24.SDE_SHOP_NUM = 1;CAFE24.SHOP = {getLanguage : function() { return "ko_KR"; },getCurrency : function() { return "KRW"; },getFlagCode : function() { return "KR"; },getTimezone: function() { return "Asia/Seoul" },getDateFormat: function() { return "Y-m-d" },isMultiShop : function() { return false; },isDefaultShop : function() { return true; },isDefaultLanguageShop : function(sLanguageCode) { return SHOP.isDefaultShop() && SHOP.isLanguageShop(sLanguageCode); },isKR : function() { return true; },isUS : function() { return false; },isJP : function() { return false; },isCN : function() { return false; },isTW : function() { return false; },isES : function() { return false; },isPT : function() { return false; },isVN : function() { return false; },isPH : function() { return false; },getCountryAndLangMap : function() { return {
"KR": "ko_KR",
"US": "en_US",
"JP": "ja_JP",
"CN": "zh_CN",
"TW": "zh_TW",
"VN": "vi_VN",
"PH": "en_PH"
}},isLanguageShop : function(sLanguageCode) { return sLanguageCode === "ko_KR"; },getDefaultShopNo : function() { return 1; },getProductVer : function() { return 2; },isSDE : function() { return true; },isMode : function() {return false; },getModeName : function() {return false; },isMobileAdmin : function() {return false; },isNewProMode : function() {return true; },isExperienceMall : function() { return false; },isDcollection : function() {return false; },isYoutubeShops : function() {return false; },getYtShopsShopNo : function() {return 0; },getAdminID : function() {return ''},getMallID : function() {return 'yeon5732'},getCurrencyFormat : function(sPriceTxt, bIsNumberFormat) {
sPriceTxt = String(sPriceTxt);
var aCurrencySymbol = ["","\uc6d0",false];
if (typeof CAFE24.SHOP_PRICE !== 'undefined' && isNaN(sPriceTxt.replace(/[,]/gi, '')) === false && bIsNumberFormat === true) {
// bIsNumberFormat 사용하려면 Ui(':libUipackCurrency')->plugin('Currency') 화폐 라이브러리 추가 필요
sPriceTxt = CAFE24.SHOP_PRICE.toShopPrice(sPriceTxt.replace(/[,]/gi, ''), true, CAFE24.SDE_SHOP_NUM);
}
try {
var sPlusMinusSign = (sPriceTxt.toString()).substr(0, 1);
if (sPlusMinusSign === '-' || sPlusMinusSign === '+') {
sPriceTxt = (sPriceTxt.toString()).substr(1);
return sPlusMinusSign + aCurrencySymbol[0] + sPriceTxt + aCurrencySymbol[1];
} else {
return aCurrencySymbol[0] + sPriceTxt + aCurrencySymbol[1];
}
} catch (e) {
return aCurrencySymbol[0] + sPriceTxt + aCurrencySymbol[1];
}
}};CAFE24.CURRENCY_INFO = {getOriginReferenceCurrency : function() {return 'USD'},getCurrencyList : function(sCurrencyCode) { var aCurrencyList = {"JPY":{"currency_symbol":"¥","decimal_place":0,"round_method_type":"F"},"VND":{"currency_symbol":"₫","decimal_place":0,"round_method_type":"F"},"PHP":{"currency_symbol":"₱","decimal_place":2,"round_method_type":"R"},"USD":{"currency_symbol":"$","decimal_place":2,"round_method_type":"R"},"CNY":{"currency_symbol":"¥","decimal_place":2,"round_method_type":"R"},"TWD":{"currency_symbol":"NT$","decimal_place":0,"round_method_type":"F"},"EUR":{"currency_symbol":"\u20ac","decimal_place":2,"round_method_type":"R"},"BRL":{"currency_symbol":"R$","decimal_place":2,"round_method_type":"R"},"AUD":{"currency_symbol":"A$","decimal_place":2,"round_method_type":"R"},"BHD":{"currency_symbol":".د.ب","decimal_place":3,"round_method_type":"R"},"BDT":{"currency_symbol":"৳","decimal_place":2,"round_method_type":"R"},"GBP":{"currency_symbol":"£","decimal_place":2,"round_method_type":"R"},"CAD":{"currency_symbol":"C$","decimal_place":2,"round_method_type":"R"},"CZK":{"currency_symbol":"Kč","decimal_place":2,"round_method_type":"R"},"DKK":{"currency_symbol":"kr","decimal_place":2,"round_method_type":"R"},"HKD":{"currency_symbol":"HK$","decimal_place":2,"round_method_type":"R"},"HUF":{"currency_symbol":"Ft","decimal_place":2,"round_method_type":"R"},"INR":{"currency_symbol":"₹","decimal_place":2,"round_method_type":"R"},"IDR":{"currency_symbol":"Rp","decimal_place":0,"round_method_type":"F"},"ILS":{"currency_symbol":"₪","decimal_place":2,"round_method_type":"R"},"JOD":{"currency_symbol":" دينار","decimal_place":3,"round_method_type":"R"},"KWD":{"currency_symbol":"دينار","decimal_place":3,"round_method_type":"R"},"MYR":{"currency_symbol":"RM","decimal_place":2,"round_method_type":"R"},"MXN":{"currency_symbol":"Mex$","decimal_place":2,"round_method_type":"R"},"NZD":{"currency_symbol":"NZ$","decimal_place":2,"round_method_type":"R"},"NOK":{"currency_symbol":"kr","decimal_place":2,"round_method_type":"R"},"PKR":{"currency_symbol":"₨","decimal_place":2,"round_method_type":"R"},"PLN":{"currency_symbol":"z\u0142","decimal_place":2,"round_method_type":"R"},"RUB":{"currency_symbol":"\u0440\u0443\u0431","decimal_place":2,"round_method_type":"R"},"SAR":{"currency_symbol":"﷼","decimal_place":2,"round_method_type":"R"},"SGD":{"currency_symbol":"S$","decimal_place":2,"round_method_type":"R"},"ZAR":{"currency_symbol":"R","decimal_place":2,"round_method_type":"R"},"SEK":{"currency_symbol":"kr","decimal_place":2,"round_method_type":"R"},"CHF":{"currency_symbol":"Fr","decimal_place":2,"round_method_type":"R"},"THB":{"currency_symbol":"฿","decimal_place":2,"round_method_type":"R"},"TRY":{"currency_symbol":"TL","decimal_place":2,"round_method_type":"R"},"AED":{"currency_symbol":"فلس","decimal_place":2,"round_method_type":"R"}}; return aCurrencyList[sCurrencyCode] },isUseReferenceCurrency : function() {return false }};CAFE24.COMMON_UTIL = {convertSslForString : function(sString) { return sString.replace(/http:/gi, '');},convertSslForHtml : function(sHtml) { return sHtml.replace(/((?:src|href)\s*=\s*['"])http:(\/\/(?:[a-z0-9\-_\.]+)\/)/ig, '$1$2');},getProtocol : function() { return 'https'; },moveSsl : function() { if (CAFE24.COMMON_UTIL.getProtocol() === 'http') { var oLocation = jQuery(window.location); var sUrl = 'https://' + oLocation.attr('host') + oLocation.attr('pathname') + oLocation.attr('search'); window.location.replace(sUrl); } },setEcCookie : function(sKey, sValue, iExpire) {var exdate = new Date();exdate.setDate(exdate.getDate() + iExpire);var setValue = escape(sValue) + "; domain=." + CAFE24.GLOBAL_INFO.getBaseDomain() + "; path=/;expires=" + exdate.toUTCString();document.cookie = sKey + "=" + setValue;}};CAFE24.SHOP_LIB_INFO = {getBankInfo : function() {
var oBankInfo = "";
$.ajax({
type: "GET",
url: "/exec/front/Shop/Bankinfo",
dataType: "json",
async: false,
success: function(oResponse) {
oBankInfo = oResponse;
}
});
return oBankInfo; }}; var EC_SDE_SHOP_NUM = CAFE24.SDE_SHOP_NUM;
var SHOP = CAFE24.getDeprecatedNamespace('SHOP');
var EC_COMMON_UTIL = CAFE24.getDeprecatedNamespace('EC_COMMON_UTIL');
var EC_SHOP_LIB_INFO = CAFE24.getDeprecatedNamespace('EC_SHOP_LIB_INFO');
var EC_CURRENCY_INFO = CAFE24.getDeprecatedNamespace('EC_CURRENCY_INFO');
CAFE24.ROOT_DOMAIN = "cafe24.com";
CAFE24.API_DOMAIN = "cafe24api.com";
CAFE24.TRANSLATE_LOG_STATUS = "F";
CAFE24.GLOBAL_INFO = (function() {
var oData = {"base_domain":"yeon5732.cafe24.com","root_domain":"cafe24.com","api_domain":"cafe24api.com","is_global":false,"is_global_standard":false,"country_code":"KR","language_code":"ko_KR","admin_language_code":"ko_KR"};
return {
getBaseDomain: function() {
return oData['base_domain'];
},
getRootDomain: function() {
return oData['root_domain'];
},
getApiDomain: function() {
return oData['api_domain'];
},
isGlobal: function() {
return oData['is_global'];
},
isGlobalStandard: function() {
return oData['is_global_standard'];
},
getCountryCode: function() {
return oData['country_code'];
},
getLanguageCode: function() {
return oData['language_code'];
},
getAdminLanguageCode: function() {
return oData['admin_language_code'];
}
};
})();
var EC_ROOT_DOMAIN = CAFE24.ROOT_DOMAIN;
var EC_API_DOMAIN = CAFE24.API_DOMAIN;
var EC_TRANSLATE_LOG_STATUS = CAFE24.TRANSLATE_LOG_STATUS;
var EC_GLOBAL_INFO = CAFE24.getDeprecatedNamespace('EC_GLOBAL_INFO');
CAFE24.AVAILABLE_LANGUAGE = ["ko_KR","zh_CN","en_US","zh_TW","es_ES","pt_PT","vi_VN","ja_JP","en_PH"];
CAFE24.AVAILABLE_LANGUAGE_CODES = {"ko_KR":"KOR","zh_CN":"CHN","en_US":"ENG","zh_TW":"TWN","es_ES":"ESP","pt_PT":"PRT","vi_VN":"VNM","ja_JP":"JPN","en_PH":"PHL"};
var EC_AVAILABLE_LANGUAGE = CAFE24.AVAILABLE_LANGUAGE;
var EC_AVAILABLE_LANGUAGE_CODES = CAFE24.AVAILABLE_LANGUAGE_CODES;
CAFE24.GLOBAL_PRODUCT_LANGUAGE_CODES = {
sClearanceCategoryCode: '',
sManualLink: '//support.cafe24.com/hc/ko/articles/7739013909529',
sHsCodePopupLink: 'https://www.wcotradetools.org/en/harmonized-system',
aCustomRegex: '"PHL" : "^[0-9]{8}[A-Z]?$"',
sCountryCodeData: 'kor',
sEnglishExampleURlForGlobal: '',
aReverseAddressCountryCode: ["VNM","PHL"],
aSizeGuideCountryAlign: '["US","UK","EU","KR","JP","CN"]',
aIsSupportTran: ["ja_JP","zh_CN","zh_TW","en_US","vi_VN","en_PH","pt_PT","es_ES"]
};
var EC_GLOBAL_PRODUCT_LANGUAGE_CODES = CAFE24.getDeprecatedNamespace('EC_GLOBAL_PRODUCT_LANGUAGE_CODES');
CAFE24.GLOBAL_ORDER_LANGUAGE_CODES = {
aModifyOrderLanguage: {"KR":"ko_KR","JP":"ja_JP","CN":"zh_CN","TW":"zh_TW","VN":"vi_VN","PH":"en_PH"},
aUseIdCardKeyCountry: ["CN","TW"],
aLanguageWithCountryCode: {"zh_CN":["CN","CHN","HK","HNK"],"ja_JP":["JP","JPN"],"zh_TW":["TW","TWN"],"ko_KR":["KR","KOR"],"vi_VN":["VN","VNM"],"en_PH":["PH","PHL"]},
aCheckDisplayRequiredIcon: ["ja_JP","zh_CN","zh_TW","en_US","vi_VN","en_PH"],
aSetReceiverName: {"zh_CN":{"sCountry":"CN","bUseLastName":true},"zh_TW":{"sCountry":"TW","bUseLastName":false},"ja_JP":{"sCountry":"JP","bUseLastName":true}},
aSetDeferPaymethodLanguage: {"ja_JP":"\uc77c\ubcf8","zh_CN":"\uc911\uad6d"},
aUseDeferPaymethod: ["ja_JP","zh_CN"],
aCheckShippingCompanyAndPaymethod: ["ja_JP","zh_CN"],
aSetDeferPaymethodLanguageForShipping: {"ja_JP":"\u65e5\u672c","zh_CN":"\uc911\uad6d"},
aCheckStoreByPaymethod: ["ja_JP","zh_CN"],
aCheckIsEmailRequiredForJs: ["en_US","zh_CN","zh_TW","ja_JP","vi_VN","en_PH"],
aSetIdCardKeyCountryLanguage: {"CN":"\uc911\uad6d\uc758","TW":"\ub300\ub9cc\uc758"},
aReverseGlobalAddress: ["en_PH","vi_VN","PHL","VNM","VN","PH"],
aNoCheckZipCode: ["KOR","JPN"],
aNotPostCodeAPICountryList: ["en_US","es_ES","pt_PT","en_PH"],
aEnableSearchExchangeAddr: ["KR","JP","CN","VN","TW","PH"],
aDuplicatedBaseAddr: ["TW","JP"],
aReverseAddressCountryCode: ["VN","PH"],
aCheckZipCode: ["PHL","en_PH","PH"]
};
var EC_GLOBAL_ORDER_LANGUAGE_CODES = CAFE24.getDeprecatedNamespace('EC_GLOBAL_ORDER_LANGUAGE_CODES');
CAFE24.GLOBAL_MEMBER_LANGUAGE_CODES = {
sAdminWebEditorLanguageCode: 'ko' ,
oNotAvailDecimalPointLanguages: ["ko_KR","ja_JP","zh_TW","vi_VN"],
oAddressCountryCode: {"KOR":"ko_KR","JPN":"ja_JP","CHN":"zh_CN","TWN":"zh_TW","VNM":"vi_VN","PHL":"en_PH"},
};
var EC_GLOBAL_MEMBER_LANGUAGE_CODES = CAFE24.getDeprecatedNamespace('EC_GLOBAL_MEMBER_LANGUAGE_CODES');
CAFE24.GLOBAL_BOARD_LANGUAGE_CODES = {
bUseLegacyBoard: true
};
var EC_GLOBAL_BOARD_LANGUAGE_CODES = CAFE24.getDeprecatedNamespace('EC_GLOBAL_BOARD_LANGUAGE_CODES');
CAFE24.GLOBAL_MALL_LANGUAGE_CODES = {
oDesign: {
oDesignAddReplaceInfo: {"group_id":"SKIN.ADD.ADMIN.DESIGNDETAIL","replacement":{"KR":"KOREAN","US":"ENGLISH","JP":"JAPANESE","CN":"SIMPLIFIED.CHINESE","TW":"TRADITIONAL.CHINESE","ES":"SPANISH","PT":"PORTUGUESE","PH":"ENGLISH"}},
oDesignDetailLanguageCountryMap: {"KR":"ko_KR","JP":"ja_JP","CN":"zh_CN","TW":"zh_TW","US":"en_US","ES":"es_ES","PT":"pt_PT","PH":"en_PH"},
oSmartDesignSwitchTipLink: {"edibot":{"img":"\/\/img.echosting.cafe24.com\/smartAdmin\/img\/design\/img_editor_dnd.png","link":"\/\/ecsupport.cafe24.com\/board\/free\/list.html?board_act=list&board_no=12&category_no=9&cate_no=9"},"smart":{"img":"\/\/img.echosting.cafe24.com\/smartAdmin\/img\/design\/ko_KR\/img_editor_smart.png","link":"\/\/sdsupport.cafe24.com"}},
oSmartDesignDecoShopList: ["ko_KR","ja_JP","zh_CN","en_US","zh_TW","es_ES","pt_PT"],
oSmartDesignDecoMultilingual: {"list":{"ko_KR":"KOREAN","en_US":"ENGLISH","ja_JP":"JAPANESE","zh_CN":"SIMPLIFIED.CHINESE","zh_TW":"TRADITIONAL.CHINESE","es_ES":"SPANISH","pt_PT":"PORTUGUESE","vi_VN":"VIETNAMESE"},"group_id":"EDITOR.LAYER.EDITING.DECO"},
aSmartDesignModuleShopList: ["ko_KR","ja_JP","zh_CN","en_US","zh_TW","es_ES","pt_PT"]
},
oStore: {
oMultiShopCurrencyInfo: {"en_US":{"currency":"USD"},"zh_CN":{"currency":"USD","sub_currency":"CNY"},"ja_JP":{"currency":"JPY"},"zh_TW":{"currency":"TWD"},"es_ES":{"currency":"EUR"},"pt_PT":{"currency":"EUR"},"ko_KR":{"currency":"KRW"},"vi_VN":{"currency":"VND"},"en_PH":{"currency":"PHP"}},
oBrowserRedirectLanguage: {"ko":{"primary":"ko_KR","secondary":"en_US"},"en":{"detail":{"en-ph":{"primary":"en_PH","secondary":"en_US"},"en-us":{"primary":"en_US","secondary":"es_ES"},"default":{"primary":"en_US","secondary":"es_ES"}}},"ja":{"primary":"ja_JP","secondary":"en_US"},"zh":{"detail":{"zh-cn":{"primary":"zh_CN","secondary":"en_US"},"zh-tw":{"primary":"zh_TW","secondary":"zh_CN"},"default":{"primary":"en_US","secondary":"ko_KR"}}},"es":{"primary":"es_ES","secondary":"en_US"},"pt":{"primary":"pt_PT","secondary":"en_US"},"vi":{"primary":"vi_VN","secondary":"en_US"},"default":{"primary":"en_US","secondary":"ko_KR"}},
aChangeableLanguages: ["en_US","ja_JP","ko_KR"],
aNoZipCodeLanguage: ["ko_KR","ja_JP"]
},
oMobile: {
sSmartWebAppFaqUrl: "https://support.cafe24.com/hc/ko/articles/8466586607641",
sAmpFaqUrl: "https://ecsupport.cafe24.com/board/free/read.html?no=1864&board_no=5&category_no=13&cate_no=13&category_no=13&category_no=13",
},
oPromotion: {
bQrCodeAvailable: true,
bSnsMarketingAvailable: true
},
oShippingReverseAddressLanguage: ["vi_VN","en_PH"] ,
oGlobalStandardSwitchHelpCodeLink: {"SH.DS":{"link":"\/\/serviceguide.cafe24shop.com\/en_PH\/SH.DS.html"},"PR.DS":{"link":"\/\/serviceguide.cafe24shop.com\/en_PH\/PR.DS.html"},"OR.SM.BO":{"link":"\/\/serviceguide.cafe24shop.com\/en_PH\/OR.SM.BO.html"},"DE.DS":{"link":"\/\/serviceguide.cafe24shop.com\/en_PH\/DE.DS.html"},"MB.DS":{"link":"\/\/serviceguide.cafe24shop.com\/en_PH\/MB.DS.html"},"PM.DS":{"link":"\/\/serviceguide.cafe24shop.com\/en_PH\/PM.DS.html"}},
getAdminMainLocaleLanguage: function(sSkinLocaleCode) {
var oLocaleData = [];
var locale = "";
var shopLangName = "";
if (sSkinLocaleCode == "US") {
locale = "en_US";
shopLangName = "ENGLISH";
} else if (sSkinLocaleCode == "JP") {
locale = "ja_JP";
shopLangName = "JAPANESE";
} else if (sSkinLocaleCode == "CN") {
locale = "zh_CN";
shopLangName = "SIMPLIFIED.CHINESE";
} else if (sSkinLocaleCode == "TW") {
locale = "zh_TW";
shopLangName = "TRADITIONAL.CHINESE";
} else if (sSkinLocaleCode == "ES") {
locale = "es_ES";
shopLangName = "SPANISH";
} else if (sSkinLocaleCode == "PT") {
locale = "pt_PT";
shopLangName = "PORTUGUESE";
} else if (sSkinLocaleCode == "VN") {
locale = "vi_VN";
shopLangName = "VIETNAMESE";
} else if(sSkinLocaleCode == "PH") {
locale = "en_PH";
shopLangName = "ENGLISH.PH";
}
oLocaleData["locale"] = locale;
oLocaleData["shopLangName"] = shopLangName;
return oLocaleData;
}
};
var EC_GLOBAL_MALL_LANGUAGE_CODES = CAFE24.getDeprecatedNamespace('EC_GLOBAL_MALL_LANGUAGE_CODES');
CAFE24.GLOBAL_DATETIME_INFO = {
oConstants: {"STANDARD_DATE_REGEX":"\/([12]\\d{3}-(0[1-9]|1[0-2])-(0[1-9]|[12]\\d|3[01]))\/","IN_ZONE":"inZone","OUT_ZONE":"outZone","IN_FORMAT":"inFormat","OUT_FORMAT":"outFormat","IN_DATE_FORMAT":"inDateFormat","IN_TIME_FORMAT":"inTimeFormat","OUT_DATE_FORMAT":"outDateFormat","OUT_TIME_FORMAT":"outTimeFormat","IN_FORMAT_DATE_ONLY":1,"IN_FORMAT_TIME_ONLY":2,"IN_FORMAT_ALL":3,"OUT_FORMAT_DATE_ONLY":1,"OUT_FORMAT_TIME_ONLY":2,"OUT_FORMAT_ALL":3,"DATE_ONLY":"YYYY-MM-DD","TIME_ONLY":"HH:mm:ss","FULL_TIME":"YYYY-MM-DD HH:mm:ss","ISO_8601":"YYYY-MM-DD[T]HH:mm:ssZ","YEAR_ONLY":"YYYY","MONTH_ONLY":"MM","DAY_ONLY":"DD","WEEK_ONLY":"e","TIME_H_I_ONLY":"HH:mm","TIME_HOUR_ONLY":"HH","TIME_MINUTE_ONLY":"mm","POSTGRE_FULL_TIME":"YYYY-MM-DD HH24:MI:SS","POSTGRE_TIME_ONLY":" HH24:MI:SS","MICRO_SECOND_ONLY":"u","SEOUL":"Asia\/Seoul","TOKYO":"Asia\/Tokyo","SHANGHAI":"Asia\/Shanghai","TAIPEI":"Asia\/Taipei","HANOI":"Asia\/Bangkok","LOS_ANGELES":"America\/Los_Angeles","LISBON":"Europe\/Lisbon","MADRID":"Europe\/Madrid","SINGAPORE":"Asia\/Singapore","UTC":"Etc\/UTC","MAX_DATETIME":"9999-12-31 23:59:59"},
oOptions: {"inZone":"Asia\/Seoul","inFormat":"YYYY-MM-DD HH:mm:ss","inDateFormat":"YYYY-MM-DD","inTimeFormat":"HH:mm:ss","outZone":"Asia\/Seoul","outFormat":"YYYY-MM-DD HH:mm:ss","outDateFormat":"YYYY-MM-DD","outTimeFormat":"HH:mm:ss"},
oPolicies: {"shop":{"outZone":"Asia\/Seoul","outFormat":"YYYY-MM-DD HH:mm:ss","outDateFormat":"YYYY-MM-DD","outTimeFormat":"HH:mm:ss"}},
sOverrideTimezone: '',
sMomentNamespace: 'EC_GLOBAL_MOMENT'
};
CAFE24.FRONT_JS_CONFIG_MANAGE = {"sSmartBannerScriptUrl":"https:\/\/app4you.cafe24.com\/SmartBanner\/tunnel\/scriptTags?vs=1563164396689206","sMallId":"yeon5732","sDefaultAppDomain":"https:\/\/app4you.cafe24.com","sWebLogOffFlag":"F","cdnUrl":"https:\/\/cafe24.poxo.com\/ec01\/yeon5732\/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==\/_"};
var EC_FRONT_JS_CONFIG_MANAGE = CAFE24.getDeprecatedNamespace('EC_FRONT_JS_CONFIG_MANAGE');
CAFE24.FRONT_JS_CONFIG_SHOP = {"search_period":[],"calendar_config":{"maxDate":"2027-05-09","locale":"ko"},"aProductPurchaseInfo_11996":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_11994":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_11987":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_11991":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_11989":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_11995":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_11993":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_11992":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_11986":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_11929":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_11435":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_11967":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_11955":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_11947":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_11946":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_11914":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_11824":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_11978":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_11981":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_11974":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_11980":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_11982":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_11979":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_11983":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_11973":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_11977":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_11971":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_11976":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_11975":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_11972":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_11969":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_11968":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_11970":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_11961":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_11962":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_11964":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_11963":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_11966":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_11965":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_11957":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_11959":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_11956":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_11958":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_11954":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_11960":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_11421":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_11953":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_11952":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_11951":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_11950":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_11948":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_11945":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_11949":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_11938":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_11943":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_11940":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_11942":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_11944":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_11941":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_11939":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_11933":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_11936":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_11934":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_11930":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_11932":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_11935":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_11931":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_11928":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_11926":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_11927":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_11918":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_11925":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_11922":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_11920":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_11924":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_11919":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_11923":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_11910":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_11921":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_11915":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_11911":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_11916":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_11912":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_11909":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_11917":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_11913":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_11905":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_11904":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_11907":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_11906":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_11903":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_11908":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_11897":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_11901":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_11898":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_11896":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_11902":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_11899":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_11894":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_11900":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_11889":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_11755":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_11742":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_11502":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_11473":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_11318":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_11293":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_11017":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_10860":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_10762":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_10759":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_8894":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_9630":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_10124":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_10509":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_10488":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_8253":{"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":2505081404,"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>
<!-- Uneedcomms Keepgrow Script -->
<script id="kg-service-init" data-hosting="cafe24" src="//storage.keepgrow.com/admin/keepgrow-service/keepgrow-service_cdd9aaa8-1d95-4da2-9f48-35b1a061c701.js"></script>
<!-- Uneedcomms Keepgrow Script -->
<!-- 인스타그램 연동아이콘 -->
<div style="z-index:999999;width:40px;height:40px;position:fixed;right:6.4%;bottom:285px">
<a href="https://www.instagram.com/ssoaeng_y/" target="_blank"><img src="https://cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/ssoaeng/circle-insta.png" width="100%"></a>
</div>
<!-- 유튜브 연동아이콘 -->
<div style="z-index:999999;width:40px;height:40px;position:fixed;right:6.4%;bottom:233px">
<a href="https://www.youtube.com/@ssoaengbubu" target="_blank"><img src="https://cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/ssoaeng/circle_youtube.png" width="100%"></a>
</div>
<!-- 카카오톡 연동아이콘 4 -->
<div style="z-index:999999;width:56px;height:56px;position:fixed;right:5.9%;bottom:164px">
<a href="#" target="_self" onclick="window.open('https://pf.kakao.com/_Mhxbxob/chat','NewWindow','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,copyhistory=no,width=750,height=800')" onfocus="blur()"><img src="https://cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/ssoaeng/katok.png" width="100%"></a></div>
<div id="wrap">
<!-- 좌측 -->
<!-- header -->
<div id="header">
<div class="left_zone">
<div class="logo">
<!-- 로고 -->
<a href="/index.html"><img src="https://cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/_dj/img/logo.png" alt="로고"></a>
</div>
<div class="menu">
<ul class="category"><!-- 카테고리 시작 --><li class="store">
<div id="category" class="xans-element- xans-layout xans-layout-category"><div id="flip_1"><a href="#none" class="cate_title">CATEGORY<img src="https://cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/_dj/img/cate_arrow.jpg"></a></div>
<div id="panel_1">
<div class="position">
<ul>
<li class="xans-record-"><a href="/product/list.html?cate_no=41">NEW 5%</a></li>
<li class="xans-record-"><a href="/product/list.html?cate_no=30"><font color="#ec6a1c">BEST 50</font></a></li>
<li class="xans-record-"><a href="/product/list.html?cate_no=100">FAMILY</a></li>
<li class="xans-record-"><a href="/product/list.html?cate_no=102">SET</a></li>
<li class="xans-record-"><a href="/product/list.html?cate_no=27">OUTER</a></li>
<li class="xans-record-"><a href="/product/list.html?cate_no=26">TOP</a></li>
<li class="xans-record-"><a href="/product/list.html?cate_no=81">COUPLE</a></li>
<li class="xans-record-"><a href="/product/list.html?cate_no=28">DRESS</a></li>
<li class="xans-record-"><a href="/product/list.html?cate_no=29">BOTTOM</a></li>
<li class="xans-record-"><a href="/product/list.html?cate_no=42">SHOES & BAG</a></li>
<li class="xans-record-"><a href="/product/list.html?cate_no=32">ACC</a></li>
<li class="xans-record-"><a href="/product/list.html?cate_no=104">season off ~30%</a></li>
</ul>
</div>
</div>
</div>
</li>
<li class="margin">
<!-- 고객센터 -->
<div id="flip"><a href="#none" class="cate_title">C/S<img src="https://cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/_dj/img/cate_arrow.jpg"></a></div>
<div id="panel">
<p class="tel">쏘앵 카카오채널 1:1 상담</p>
<p class="time">AM11-PM3<br>LUNCH PM12-PM1:00<br>(SAT.RED CLOSED)</p>
</div>
</li>
<!-- 카테고리 끝 -->
</ul></div>
</div>
<div class="right_zone">
<div class="inner">
<div id="find_btn"><a href="#none"><img src="https://cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/_dj/img/left_search_btn.png"></a></div>
<div id="find_view">
<form id="searchBarForm" name="" action="/product/search.html" method="get" target="_self" enctype="multipart/form-data" >
<input id="banner_action" name="banner_action" value="" type="hidden" /><div class="xans-element- xans-layout xans-layout-searchheader "><!--
$product_page=/product/detail.html
$category_page=/product/list.html
-->
<fieldset>
<legend>검색</legend>
<input id="keyword" name="keyword" fw-filter="" fw-label="검색어" fw-msg="" class="inputTypeText" placeholder="" onmousedown="SEARCH_BANNER.clickSearchForm(this)" value="" type="text" /><input type="image" src="https://cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/_dj/img/s72_find_btn.jpg" alt="검색" onclick="SEARCH_BANNER.submitSearchBanner(this); return false;">
</fieldset>
</div>
</form> </div>
</div>
</div>
</div>
<div id="container">
<!-- ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★
- 직접 수정하실 경우 꼭! 백업 후 작업해주세요. ^ ^
- 현재 편집창에서 이미지를 직접 바꾸실 경우 경로가 바뀌어 차후 유지/보수가 어려워집니다.
아래 표기된 경로와 파일명으로 FTP 접속 > 업로드 > 덮어쓰기로 처리해주세요!
(제공해드리는 원본파일명으로 제작되었으니 FTP 업로드방법을 참조하시어 작업하시면 됩니다.)
- ★ FTP 경로 : sde_design/skin1(스킨번호)/_dj/img ★ 사이트의 모든 이미지는 해당 FTP 경로에 업로드하시면 됩니다.
- 왼쪽 로고+메뉴부분 : dj/header.html
- 좌측 검색창에 위 주소를 복사해 검색하시면 해당 파일을 열수 있습니다.
- 원하시는 수정 페이지를 쉽게 찾으시는 방법 !
사이트를 연 상태에서 상단 주소창에 표시된 주소중 도메인을 제외한 url로 좌측 검색창에서 검색하시면 됩니다. (html까지만)
ex) http://ecudemo50534.cafe24.com/product/list.html?cate_no=24 이라면 product/list.html 로 검색하세요!
★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ -->
<div id="main_item_all">
<div class="xans-element- xans-product xans-product-listmain-4 xans-product-listmain xans-product-4 ec-base-product best_item"><!--
$count = 5
※ 노출시킬 상품의 갯수를 숫자로 설정할 수 있으며, 설정하지 않을경우, 최대 200개로 자동제한됩니다.
※ 상품 노출갯수가 많으면 쇼핑몰에 부하가 발생할 수 있습니다.
-->
<div class="main_item_list item_left">
<ul class="prdList best_ul grid2">
<li id="anchorBoxId_11996" class="xans-record-">
<div class="box_design_main" onclick="window.location.href='/product/detail.html?product_no=11996&cate_no=1&display_group=5';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=11996&cate_no=1&display_group=5" name="anchorBoxName_11996"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202505/71da312de04981048a45974e5050d2a6.jpg" id="eListPrdImage11996_5" alt="이에이-sk"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=11996&cate_no=1&display_group=5';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=11996&cate_no=1&display_group=5" class=""><span style="font-size:12px;color:#555555;">이에이-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-4 xans-product-listitem xans-product-4 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:12px;color:#555555;text-decoration:line-through;">48,000won</span></li>
<li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:12px;color:#008BCC;font-weight:bold;">45,600won</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_11994" class="xans-record-">
<div class="box_design_main" onclick="window.location.href='/product/detail.html?product_no=11994&cate_no=1&display_group=5';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=11994&cate_no=1&display_group=5" name="anchorBoxName_11994"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202505/6e88958558105c72eaac2f8187aa8f1e.webp" id="eListPrdImage11994_5" alt="레이어드 레깅스"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=11994&cate_no=1&display_group=5';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=11994&cate_no=1&display_group=5" class=""><span 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 style="font-size:12px;color:#555555;text-decoration:line-through;">33,000won</span></li>
<li class=" xans-record-">
<p class="title2 displaynone"></p><span 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>
<li id="anchorBoxId_11987" class="xans-record-">
<div class="box_design_main" onclick="window.location.href='/product/detail.html?product_no=11987&cate_no=1&display_group=5';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=11987&cate_no=1&display_group=5" name="anchorBoxName_11987"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202505/2aebd828b05920c0cb2eded667d0dde3.webp" id="eListPrdImage11987_5" alt="더비즈-p"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=11987&cate_no=1&display_group=5';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=11987&cate_no=1&display_group=5" class=""><span 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 style="font-size:12px;color:#555555;text-decoration:line-through;">53,000won</span></li>
<li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:12px;color:#008BCC;font-weight:bold;">50,400won</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=11474&cate_no=1&display_group=12';" class="list1" data-thumb=""><img src="https://cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/_dj/img/s74_main_imga1-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_11991" class="xans-record-">
<div class="box_design_main" onclick="window.location.href='/product/detail.html?product_no=11991&cate_no=1&display_group=5';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=11991&cate_no=1&display_group=5" name="anchorBoxName_11991"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202505/f34601152ff3c856bd42c53049c53b0a.jpg" id="eListPrdImage11991_5" alt="베로드-t"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=11991&cate_no=1&display_group=5';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=11991&cate_no=1&display_group=5" class=""><span 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 style="font-size:12px;color:#555555;text-decoration:line-through;">32,000won</span></li>
<li class=" xans-record-">
<p class="title2 displaynone"></p><span 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 id="anchorBoxId_11989" class="xans-record-">
<div class="box_design_main" onclick="window.location.href='/product/detail.html?product_no=11989&cate_no=1&display_group=5';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=11989&cate_no=1&display_group=5" name="anchorBoxName_11989"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202505/1e5b49f40a71379136bd16fcde932fea.jpg" id="eListPrdImage11989_5" alt="터부링-ops"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=11989&cate_no=1&display_group=5';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=11989&cate_no=1&display_group=5" class=""><span style="font-size:12px;color:#555555;">터부링-ops</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 style="font-size:12px;color:#555555;text-decoration:line-through;">31,000won</span></li>
<li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:12px;color:#008BCC;font-weight:bold;">29,500won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
</ul>
</div>
</div>
<!-- //추천상품 -->
<!-- //추천상품 -->
<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_11995" class="xans-record-">
<div class="box_design_main new_padding" onclick="window.location.href='/product/detail.html?product_no=11995&cate_no=1&display_group=2';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=11995&cate_no=1&display_group=2" name="anchorBoxName_11995"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202505/a49c632a3caaa4621b3e5ceebd6d4902.webp" id="eListPrdImage11995_2" alt="드웨이-t"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=11995&cate_no=1&display_group=2';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=11995&cate_no=1&display_group=2" class=""><span 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-1 xans-product-listitem xans-product-1 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;text-decoration:line-through;">36,000won</span></li>
<li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">34,200won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_11993" class="xans-record-">
<div class="box_design_main new_padding" onclick="window.location.href='/product/detail.html?product_no=11993&cate_no=1&display_group=2';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=11993&cate_no=1&display_group=2" name="anchorBoxName_11993"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202505/4fa71e570d49d2911df95577e3e2fd3c.webp" id="eListPrdImage11993_2" alt="테이메-bl"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=11993&cate_no=1&display_group=2';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=11993&cate_no=1&display_group=2" class=""><span style="font-size:11px;color:#222222;">테이메-bl</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 style="font-size:11px;color:#222222;text-decoration:line-through;">34,000won</span></li>
<li class=" xans-record-">
<p class="title2 displaynone"></p><span 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_11992" class="xans-record-">
<div class="box_design_main new_padding" onclick="window.location.href='/product/detail.html?product_no=11992&cate_no=1&display_group=2';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=11992&cate_no=1&display_group=2" name="anchorBoxName_11992"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202505/a614c60c2602cc7e5a60c73c44b99bdf.jpg" id="eListPrdImage11992_2" alt="구크 린넨-p"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=11992&cate_no=1&display_group=2';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=11992&cate_no=1&display_group=2" class=""><span 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 style="font-size:11px;color:#222222;text-decoration:line-through;">39,000won</span></li>
<li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">37,100won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_11986" class="xans-record-">
<div class="box_design_main new_padding" onclick="window.location.href='/product/detail.html?product_no=11986&cate_no=1&display_group=2';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=11986&cate_no=1&display_group=2" name="anchorBoxName_11986"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202505/cc5319e0a077894fd106e427acd8f810.jpg" id="eListPrdImage11986_2" alt="데리터-t"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=11986&cate_no=1&display_group=2';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=11986&cate_no=1&display_group=2" class=""><span 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-1 xans-product-listitem xans-product-1 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;text-decoration:line-through;">26,000won</span></li>
<li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">24,700won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_11996" class="xans-record-">
<div class="box_design_main new_padding" onclick="window.location.href='/product/detail.html?product_no=11996&cate_no=1&display_group=2';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=11996&cate_no=1&display_group=2" name="anchorBoxName_11996"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202505/71da312de04981048a45974e5050d2a6.jpg" id="eListPrdImage11996_2" alt="이에이-sk"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=11996&cate_no=1&display_group=2';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=11996&cate_no=1&display_group=2" class=""><span 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-1 xans-product-listitem xans-product-1 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;text-decoration:line-through;">48,000won</span></li>
<li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">45,600won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_11989" class="xans-record-">
<div class="box_design_main new_padding" onclick="window.location.href='/product/detail.html?product_no=11989&cate_no=1&display_group=2';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=11989&cate_no=1&display_group=2" name="anchorBoxName_11989"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202505/1e5b49f40a71379136bd16fcde932fea.jpg" id="eListPrdImage11989_2" alt="터부링-ops"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=11989&cate_no=1&display_group=2';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=11989&cate_no=1&display_group=2" class=""><span style="font-size:11px;color:#222222;">터부링-ops</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 style="font-size:11px;color:#222222;text-decoration:line-through;">31,000won</span></li>
<li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">29,500won</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_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 style="font-size:11px;color:#111111;">베퓨-t</span> <img src="https://cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/upload/custom_60.gif" alt="" /> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-11 xans-product-listitem xans-product-11 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#111111;font-weight:bold;">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>
<li id="anchorBoxId_11435" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=11435&cate_no=1&display_group=12';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=11435&cate_no=1&display_group=12" name="anchorBoxName_11435"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202408/df09efd289e6f72521fff00624a6c9e6.webp" id="eListPrdImage11435_12" alt="크로셰-nb"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=11435&cate_no=1&display_group=12';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=11435&cate_no=1&display_group=12" class=""><span style="font-size:11px;color:#111111;">크로셰-nb</span> <img src="https://cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/upload/custom_60.gif" alt="" /> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-11 xans-product-listitem xans-product-11 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#111111;font-weight:bold;">55,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
<li class=" xans-record-">
<p class="title2 displaynone"></p></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_11967" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=11967&cate_no=1&display_group=12';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=11967&cate_no=1&display_group=12" name="anchorBoxName_11967"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202504/bac61f6fb4ee0ddad304791d5798da77.jpg" id="eListPrdImage11967_12" alt="헤므-p"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=11967&cate_no=1&display_group=12';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=11967&cate_no=1&display_group=12" class=""><span style="font-size:11px;color:#111111;">헤므-p</span> <img src="https://cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/upload/custom_60.gif" alt="" /> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-11 xans-product-listitem xans-product-11 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#111111;font-weight:bold;">33,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
<li class=" xans-record-">
<p class="title2 displaynone"></p></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_11955" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=11955&cate_no=1&display_group=12';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=11955&cate_no=1&display_group=12" name="anchorBoxName_11955"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202504/ceb1b4385f9fa4d50e42516420f08594.webp" id="eListPrdImage11955_12" alt="테머-t"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=11955&cate_no=1&display_group=12';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=11955&cate_no=1&display_group=12" class=""><span style="font-size:11px;color:#111111;">테머-t</span> <img src="https://cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/upload/custom_60.gif" alt="" /> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-11 xans-product-listitem xans-product-11 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#111111;font-weight:bold;">24,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_11947" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=11947&cate_no=1&display_group=12';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=11947&cate_no=1&display_group=12" name="anchorBoxName_11947"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202504/4974a5fce2b334fa966be899deb077b7.webp" id="eListPrdImage11947_12" alt="헤리프-t"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=11947&cate_no=1&display_group=12';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=11947&cate_no=1&display_group=12" class=""><span style="font-size:11px;color:#111111;">헤리프-t</span> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-11 xans-product-listitem xans-product-11 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#111111;font-weight:bold;">31,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
<li class=" xans-record-">
<p class="title2 displaynone"></p></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_11946" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=11946&cate_no=1&display_group=12';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=11946&cate_no=1&display_group=12" name="anchorBoxName_11946"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202504/a15231fe55715ec00dff8d5aabb201c5.webp" id="eListPrdImage11946_12" alt="페머-p"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=11946&cate_no=1&display_group=12';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=11946&cate_no=1&display_group=12" class=""><span style="font-size:11px;color:#111111;">페머-p</span> <img src="https://cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/upload/custom_60.gif" alt="" /> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-11 xans-product-listitem xans-product-11 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#111111;font-weight:bold;">36,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_11914" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=11914&cate_no=1&display_group=12';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=11914&cate_no=1&display_group=12" name="anchorBoxName_11914"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202504/a60d105984c8a88525fb13d3748ee7ac.webp" id="eListPrdImage11914_12" alt="마이흐-t"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=11914&cate_no=1&display_group=12';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=11914&cate_no=1&display_group=12" class=""><span style="font-size:11px;color:#111111;">마이흐-t</span> <img src="https://cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/upload/custom_60.gif" alt="" /> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-11 xans-product-listitem xans-product-11 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#111111;font-weight:bold;">39,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
<li class=" xans-record-">
<p class="title2 displaynone"></p></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_11824" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=11824&cate_no=1&display_group=12';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=11824&cate_no=1&display_group=12" name="anchorBoxName_11824"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202502/87de7e7cf742b8b03ea5bdfb4b7b4b97.jpg" id="eListPrdImage11824_12" alt="쿠마르 레깅스"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=11824&cate_no=1&display_group=12';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=11824&cate_no=1&display_group=12" class=""><span style="font-size:11px;color:#111111;">쿠마르 레깅스</span> <img src="https://cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/upload/custom_60.gif" alt="" /> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-11 xans-product-listitem xans-product-11 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#111111;font-weight:bold;">29,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
<li class=" xans-record-">
<p class="title2 displaynone"></p></li>
</ul>
</div>
</div>
</div>
</li>
</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_11996" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=11996&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=11996&cate_no=1&display_group=3" name="anchorBoxName_11996"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202505/71da312de04981048a45974e5050d2a6.jpg" id="eListPrdImage11996_3" alt="이에이-sk"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=11996&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=11996&cate_no=1&display_group=3" class=""><span 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 style="font-size:11px;color:#222222;text-decoration:line-through;">48,000won</span></li>
<li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">45,600won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_11991" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=11991&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=11991&cate_no=1&display_group=3" name="anchorBoxName_11991"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202505/f34601152ff3c856bd42c53049c53b0a.jpg" id="eListPrdImage11991_3" alt="베로드-t"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=11991&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=11991&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">베로드-t</span> <img src="https://cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/upload/custom_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 style="font-size:11px;color:#222222;text-decoration:line-through;">32,000won</span></li>
<li class=" xans-record-">
<p class="title2 displaynone"></p><span 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_11989" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=11989&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=11989&cate_no=1&display_group=3" name="anchorBoxName_11989"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202505/1e5b49f40a71379136bd16fcde932fea.jpg" id="eListPrdImage11989_3" alt="터부링-ops"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=11989&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=11989&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">터부링-ops</span> <img src="https://cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/upload/custom_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 style="font-size:11px;color:#222222;text-decoration:line-through;">31,000won</span></li>
<li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">29,500won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_11987" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=11987&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=11987&cate_no=1&display_group=3" name="anchorBoxName_11987"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202505/2aebd828b05920c0cb2eded667d0dde3.webp" id="eListPrdImage11987_3" alt="더비즈-p"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=11987&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=11987&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">더비즈-p</span> <img src="https://cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/upload/custom_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 style="font-size:11px;color:#222222;text-decoration:line-through;">53,000won</span></li>
<li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">50,400won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_11993" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=11993&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=11993&cate_no=1&display_group=3" name="anchorBoxName_11993"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202505/4fa71e570d49d2911df95577e3e2fd3c.webp" id="eListPrdImage11993_3" alt="테이메-bl"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=11993&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=11993&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">테이메-bl</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 style="font-size:11px;color:#222222;text-decoration:line-through;">34,000won</span></li>
<li class=" xans-record-">
<p class="title2 displaynone"></p><span 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_11995" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=11995&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=11995&cate_no=1&display_group=3" name="anchorBoxName_11995"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202505/a49c632a3caaa4621b3e5ceebd6d4902.webp" id="eListPrdImage11995_3" alt="드웨이-t"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=11995&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=11995&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">드웨이-t</span> <img src="https://cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/upload/custom_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 style="font-size:11px;color:#222222;text-decoration:line-through;">36,000won</span></li>
<li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">34,200won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_11992" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=11992&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=11992&cate_no=1&display_group=3" name="anchorBoxName_11992"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202505/a614c60c2602cc7e5a60c73c44b99bdf.jpg" id="eListPrdImage11992_3" alt="구크 린넨-p"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=11992&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=11992&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">구크 린넨-p</span> <img src="https://cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/upload/custom_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 style="font-size:11px;color:#222222;text-decoration:line-through;">39,000won</span></li>
<li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">37,100won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_11994" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=11994&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=11994&cate_no=1&display_group=3" name="anchorBoxName_11994"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202505/6e88958558105c72eaac2f8187aa8f1e.webp" id="eListPrdImage11994_3" alt="레이어드 레깅스"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=11994&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=11994&cate_no=1&display_group=3" class=""><span 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 style="font-size:11px;color:#222222;text-decoration:line-through;">33,000won</span></li>
<li class=" xans-record-">
<p class="title2 displaynone"></p><span 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_11986" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=11986&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=11986&cate_no=1&display_group=3" name="anchorBoxName_11986"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202505/cc5319e0a077894fd106e427acd8f810.jpg" id="eListPrdImage11986_3" alt="데리터-t"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=11986&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=11986&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">데리터-t</span> <img src="https://cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/upload/custom_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 style="font-size:11px;color:#222222;text-decoration:line-through;">26,000won</span></li>
<li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">24,700won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_11978" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=11978&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=11978&cate_no=1&display_group=3" name="anchorBoxName_11978"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202504/7c4c09099d336204e4dbc0089164233f.webp" id="eListPrdImage11978_3" alt="카리키-t"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=11978&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=11978&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">카리키-t</span> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">16,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_11981" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=11981&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=11981&cate_no=1&display_group=3" name="anchorBoxName_11981"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202504/7683f04f60059e078e403da3a7a297fe.webp" id="eListPrdImage11981_3" alt="루에뉘-nb"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=11981&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=11981&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">루에뉘-nb</span> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">46,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_11974" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=11974&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=11974&cate_no=1&display_group=3" name="anchorBoxName_11974"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202504/e42f54b67930ac1f853dda0059c4823f.jpg" id="eListPrdImage11974_3" alt="느에뜨-bl"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=11974&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=11974&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">느에뜨-bl</span> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">59,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_11980" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=11980&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=11980&cate_no=1&display_group=3" name="anchorBoxName_11980"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202504/906f22f3d5939172cbbdaf0b234f9aac.webp" id="eListPrdImage11980_3" alt="머팡-jp"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=11980&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=11980&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">머팡-jp</span> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">69,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_11982" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=11982&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=11982&cate_no=1&display_group=3" name="anchorBoxName_11982"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202504/db7c0fb9f078b47229ea87952694d1f0.jpg" id="eListPrdImage11982_3" alt="체트잉-bl"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=11982&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=11982&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">체트잉-bl</span> <img src="https://cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/upload/custom_60.gif" alt="" /> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">33,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_11979" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=11979&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=11979&cate_no=1&display_group=3" name="anchorBoxName_11979"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202504/d6a7c38689b95e7b2224711cfea2b0a2.jpg" id="eListPrdImage11979_3" alt="드에브-p ㅣ 아이보리"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=11979&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=11979&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">드에브-p ㅣ 아이보리</span> <img src="https://cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/upload/custom_60.gif" alt="" /> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">34,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_11983" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=11983&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=11983&cate_no=1&display_group=3" name="anchorBoxName_11983"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202504/d5322b57d1dde991ea3520bbd8234dae.webp" id="eListPrdImage11983_3" alt="헤므-p ㅣ 차콜"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=11983&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=11983&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">헤므-p ㅣ 차콜</span> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">33,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_11973" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=11973&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=11973&cate_no=1&display_group=3" name="anchorBoxName_11973"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202504/84c3ac0d77f5af2f7c58b2c7386fc661.jpg" id="eListPrdImage11973_3" alt="너카러-ops"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=11973&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=11973&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">너카러-ops</span> <img src="https://cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/upload/custom_60.gif" alt="" /> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">29,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_11977" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=11977&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=11977&cate_no=1&display_group=3" name="anchorBoxName_11977"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202504/4e1449600377b240181e8c58cc344958.jpg" id="eListPrdImage11977_3" alt="베페-p"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=11977&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=11977&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">베페-p</span> <img src="https://cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/upload/custom_60.gif" alt="" /> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">29,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_11971" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=11971&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=11971&cate_no=1&display_group=3" name="anchorBoxName_11971"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202504/db2038c82f9b80e9ce6f3134032c74bb.webp" id="eListPrdImage11971_3" alt="에비케-bl"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=11971&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=11971&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">에비케-bl</span> <img src="https://cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/upload/custom_60.gif" alt="" /> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">51,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_11976" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=11976&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=11976&cate_no=1&display_group=3" name="anchorBoxName_11976"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202504/e27d982f3a152dbf03d09c483e6709c9.jpg" id="eListPrdImage11976_3" alt="네미츠-t"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=11976&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=11976&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">네미츠-t</span> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">34,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_11975" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=11975&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=11975&cate_no=1&display_group=3" name="anchorBoxName_11975"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202504/bcdd23ca7ac313bb99f21e392a9a5393.webp" id="eListPrdImage11975_3" alt="메루크-p ㅣ s - m size"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=11975&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=11975&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">메루크-p ㅣ s - m size</span> <img src="https://cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/upload/custom_60.gif" alt="" /> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">59,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_11972" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=11972&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=11972&cate_no=1&display_group=3" name="anchorBoxName_11972"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202504/3d90bebfad7251ccf1165b276e5057d3.jpg" id="eListPrdImage11972_3" alt="헤므-p ㅣ 크림"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=11972&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=11972&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">헤므-p ㅣ 크림</span> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">33,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_11969" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=11969&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=11969&cate_no=1&display_group=3" name="anchorBoxName_11969"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202504/f9f17846435da09b127677bc035c6bee.webp" id="eListPrdImage11969_3" alt="(family) 캐즈-t"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=11969&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=11969&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">(family) 캐즈-t</span> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">16,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_11968" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=11968&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=11968&cate_no=1&display_group=3" name="anchorBoxName_11968"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202504/529953acd814a0a07c346dd78d96fc28.webp" id="eListPrdImage11968_3" alt="(family) 앤토느-t"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=11968&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=11968&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">(family) 앤토느-t</span> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">16,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_11970" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=11970&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=11970&cate_no=1&display_group=3" name="anchorBoxName_11970"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202504/6be17a0aca119332d27a2cc10fa10a8c.webp" id="eListPrdImage11970_3" alt="(family) 데빅-p"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=11970&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=11970&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">(family) 데빅-p</span> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">16,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_11961" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=11961&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=11961&cate_no=1&display_group=3" name="anchorBoxName_11961"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202504/4508efb92142f1f24d3a201457d9682a.webp" id="eListPrdImage11961_3" alt="탑&amp;스커트"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=11961&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=11961&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">탑&스커트</span> <img src="https://cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/upload/custom_60.gif" alt="" /> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">39,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_11962" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=11962&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=11962&cate_no=1&display_group=3" name="anchorBoxName_11962"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202504/cb61ad6592aa161f840bba8a086e5707.jpg" id="eListPrdImage11962_3" alt="오베로-nb"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=11962&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=11962&cate_no=1&display_group=3" class=""><span 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 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_11967" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=11967&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=11967&cate_no=1&display_group=3" name="anchorBoxName_11967"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202504/bac61f6fb4ee0ddad304791d5798da77.jpg" id="eListPrdImage11967_3" alt="헤므-p"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=11967&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=11967&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">헤므-p</span> <img src="https://cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/upload/custom_60.gif" alt="" /> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">33,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_11964" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=11964&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=11964&cate_no=1&display_group=3" name="anchorBoxName_11964"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202504/52dc6193812c24b534791654bb38ad9f.jpg" id="eListPrdImage11964_3" alt="디머드-nt"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=11964&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=11964&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">디머드-nt</span> <img src="https://cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/upload/custom_60.gif" alt="" /> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">44,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_11963" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=11963&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=11963&cate_no=1&display_group=3" name="anchorBoxName_11963"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202504/ca6c4d10cc9f80343150ad14b784ac7c.webp" id="eListPrdImage11963_3" alt="애느류-bl"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=11963&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=11963&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">애느류-bl</span> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">33,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_11966" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=11966&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=11966&cate_no=1&display_group=3" name="anchorBoxName_11966"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202504/a62c2f6b86336f10e3a978e59bef81e0.webp" id="eListPrdImage11966_3" alt="베니퍼-t"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=11966&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=11966&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">베니퍼-t</span> <img src="https://cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/upload/custom_60.gif" alt="" /> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">29,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_11965" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=11965&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=11965&cate_no=1&display_group=3" name="anchorBoxName_11965"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202504/53db6b062a9e0b98a7dd5ea8b7ffc80d.webp" id="eListPrdImage11965_3" alt="메프이-p"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=11965&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=11965&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">메프이-p</span> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">34,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_11955" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=11955&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=11955&cate_no=1&display_group=3" name="anchorBoxName_11955"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202504/ceb1b4385f9fa4d50e42516420f08594.webp" id="eListPrdImage11955_3" alt="테머-t"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=11955&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=11955&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">테머-t</span> <img src="https://cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/upload/custom_60.gif" alt="" /> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">24,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_11957" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=11957&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=11957&cate_no=1&display_group=3" name="anchorBoxName_11957"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202504/c959b364fbae14f345f117f45a1ccb81.webp" id="eListPrdImage11957_3" alt="케미프-p ㅣ 그린"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=11957&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=11957&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">케미프-p ㅣ 그린</span> <img src="https://cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/upload/custom_60.gif" alt="" /> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">43,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_11959" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=11959&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=11959&cate_no=1&display_group=3" name="anchorBoxName_11959"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202504/ef5c28b866afe575a22acdec3bb5f845.jpg" id="eListPrdImage11959_3" alt="퍼레비-t"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=11959&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=11959&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">퍼레비-t</span> <img src="https://cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/upload/custom_60.gif" alt="" /> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">39,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_11956" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=11956&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=11956&cate_no=1&display_group=3" name="anchorBoxName_11956"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202504/bd1b08669fe6ee59140c6ac4c08d4029.jpg" id="eListPrdImage11956_3" alt="로퓨 바람막이-jp"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=11956&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=11956&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">로퓨 바람막이-jp</span> <img src="https://cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/upload/custom_60.gif" alt="" /> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">52,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_11958" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=11958&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=11958&cate_no=1&display_group=3" name="anchorBoxName_11958"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202504/c2781e9139623d9bbc7cfadbf59f24ff.jpg" id="eListPrdImage11958_3" alt="르키르 가디건"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=11958&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=11958&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">르키르 가디건</span> <img src="https://cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/upload/custom_60.gif" alt="" /> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">36,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_11954" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=11954&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=11954&cate_no=1&display_group=3" name="anchorBoxName_11954"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202504/ffb12c1861d9b60f925afd297c68c074.jpg" id="eListPrdImage11954_3" alt="보므코-p ㅣ 핑크"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=11954&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=11954&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">보므코-p ㅣ 핑크</span> <img src="https://cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/upload/custom_60.gif" alt="" /> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">44,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_11960" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=11960&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=11960&cate_no=1&display_group=3" name="anchorBoxName_11960"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202504/425ae37c5b1befbb4a5b7b49ca08fae2.webp" id="eListPrdImage11960_3" alt="드에브-p"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=11960&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=11960&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">드에브-p</span> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">34,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_11435" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=11435&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=11435&cate_no=1&display_group=3" name="anchorBoxName_11435"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202408/df09efd289e6f72521fff00624a6c9e6.webp" id="eListPrdImage11435_3" alt="크로셰-nb"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=11435&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=11435&cate_no=1&display_group=3" class=""><span 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 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_11421" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=11421&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=11421&cate_no=1&display_group=3" name="anchorBoxName_11421"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202407/461c8f8ebee33d0b34c848f4121a01e0.webp" id="eListPrdImage11421_3" alt="이에-t"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=11421&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=11421&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">이에-t</span> <img src="https://cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/upload/custom_60.gif" alt="" /> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">31,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_11953" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=11953&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=11953&cate_no=1&display_group=3" name="anchorBoxName_11953"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202504/f5ac299d7d4d5707a7fb05180b0ea91b.webp" id="eListPrdImage11953_3" alt="(family) 이블에-t"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=11953&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=11953&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">(family) 이블에-t</span> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">19,200won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_11952" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=11952&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=11952&cate_no=1&display_group=3" name="anchorBoxName_11952"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202504/7f427b7d5999ea658c487f628304dc05.jpg" id="eListPrdImage11952_3" alt="(family) 루베르-t"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=11952&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=11952&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">(family) 루베르-t</span> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">16,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_11951" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=11951&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=11951&cate_no=1&display_group=3" name="anchorBoxName_11951"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202504/a32d643ef12ce524dde9b2c9ea29a52c.jpg" id="eListPrdImage11951_3" alt="샤딕-p"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=11951&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=11951&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">샤딕-p</span> <img src="https://cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/upload/custom_60.gif" alt="" /> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">33,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_11947" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=11947&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=11947&cate_no=1&display_group=3" name="anchorBoxName_11947"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202504/4974a5fce2b334fa966be899deb077b7.webp" id="eListPrdImage11947_3" alt="헤리프-t"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=11947&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=11947&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">헤리프-t</span> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">31,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_11946" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=11946&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=11946&cate_no=1&display_group=3" name="anchorBoxName_11946"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202504/a15231fe55715ec00dff8d5aabb201c5.webp" id="eListPrdImage11946_3" alt="페머-p"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=11946&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=11946&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">페머-p</span> <img src="https://cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/upload/custom_60.gif" alt="" /> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">36,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_11950" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=11950&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=11950&cate_no=1&display_group=3" name="anchorBoxName_11950"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202504/92acfe3967b259383f2f5c91959eed31.jpg" id="eListPrdImage11950_3" alt="네브로-n"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=11950&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=11950&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">네브로-n</span> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">21,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_11948" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=11948&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=11948&cate_no=1&display_group=3" name="anchorBoxName_11948"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202504/196caf1136dcc4d1134f01f07ae0de2e.jpg" id="eListPrdImage11948_3" alt="체티니-p ㅣ 차콜"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=11948&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=11948&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">체티니-p ㅣ 차콜</span> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">39,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_11945" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=11945&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=11945&cate_no=1&display_group=3" name="anchorBoxName_11945"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202504/9dd2193eac1474ce2969a94ca1dd6654.jpg" id="eListPrdImage11945_3" alt="도로프-t"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=11945&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=11945&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">도로프-t</span> <img src="https://cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/upload/custom_60.gif" alt="" /> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">53,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_11949" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=11949&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=11949&cate_no=1&display_group=3" name="anchorBoxName_11949"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202504/72e9c5ef5fa4fda2aa9eba86ca9198f8.webp" id="eListPrdImage11949_3" alt="제브니 가디건"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=11949&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=11949&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">제브니 가디건</span> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">51,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_11938" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=11938&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=11938&cate_no=1&display_group=3" name="anchorBoxName_11938"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202504/fd0d36e296ab490ccd7ac6ca3b46b37a.webp" id="eListPrdImage11938_3" alt="테이즈-nt"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=11938&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=11938&cate_no=1&display_group=3" class=""><span 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 style="font-size:11px;color:#222222;font-weight:bold;">60,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_11943" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=11943&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=11943&cate_no=1&display_group=3" name="anchorBoxName_11943"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202504/66671308e5f227fd1c953feb90b4e592.jpg" id="eListPrdImage11943_3" alt="거티츠-t"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=11943&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=11943&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">거티츠-t</span> <img src="https://cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/upload/custom_60.gif" alt="" /> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">26,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_11940" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=11940&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=11940&cate_no=1&display_group=3" name="anchorBoxName_11940"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202504/c3c4f9fcdf2cdd8788633928e5b43de3.jpg" id="eListPrdImage11940_3" alt="포니르-set"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=11940&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=11940&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">포니르-set</span> <img src="https://cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/upload/custom_60.gif" alt="" /> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">41,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_11942" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=11942&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=11942&cate_no=1&display_group=3" name="anchorBoxName_11942"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202504/7f6592e11f1568f4304d0e2702e11fb5.jpg" id="eListPrdImage11942_3" alt="그메러-t"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=11942&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=11942&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">그메러-t</span> <img src="https://cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/upload/custom_60.gif" alt="" /> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">39,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_11944" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=11944&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=11944&cate_no=1&display_group=3" name="anchorBoxName_11944"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202504/ccaaa1d6b66fcec35888bbeed647ad0b.webp" id="eListPrdImage11944_3" alt="메이빅-p"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=11944&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=11944&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">메이빅-p</span> <img src="https://cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/upload/custom_60.gif" alt="" /> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">36,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_11941" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=11941&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=11941&cate_no=1&display_group=3" name="anchorBoxName_11941"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202504/8e7e6114a10dda6017ab0d73bde2c041.jpg" id="eListPrdImage11941_3" alt="케미프-p ㅣ 블랙"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=11941&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=11941&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">케미프-p ㅣ 블랙</span> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">43,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_11939" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=11939&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=11939&cate_no=1&display_group=3" name="anchorBoxName_11939"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202504/089be5522ca9b92febbe81a28342fcd8.jpg" id="eListPrdImage11939_3" alt="데브니-p"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=11939&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=11939&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">데브니-p</span> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">57,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_11933" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=11933&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=11933&cate_no=1&display_group=3" name="anchorBoxName_11933"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202504/e720e0d58ecf3d002cb180eebc69b5c4.webp" id="eListPrdImage11933_3" alt="보므코-p ㅣ 소라"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=11933&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=11933&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">보므코-p ㅣ 소라</span> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">44,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_11936" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=11936&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=11936&cate_no=1&display_group=3" name="anchorBoxName_11936"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202504/21eb7e12554f049935a66546f9e3d054.jpg" id="eListPrdImage11936_3" alt="베코츠-p ㅣ 오렌지"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=11936&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=11936&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">베코츠-p ㅣ 오렌지</span> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">48,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_11934" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=11934&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=11934&cate_no=1&display_group=3" name="anchorBoxName_11934"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202504/b0e0b52df192181d50d4f96dc2fc524e.webp" id="eListPrdImage11934_3" alt="차프렌-t"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=11934&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=11934&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">차프렌-t</span> <img src="https://cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/upload/custom_60.gif" alt="" /> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">38,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 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 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_11932" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=11932&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=11932&cate_no=1&display_group=3" name="anchorBoxName_11932"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202504/63e22ca929971ebc70a758a4b1b37354.jpg" id="eListPrdImage11932_3" alt="페리너-bl"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=11932&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=11932&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">페리너-bl</span> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">43,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_11935" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=11935&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=11935&cate_no=1&display_group=3" name="anchorBoxName_11935"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202504/d4f4ae783f4da5c7d8f80bef2298e62a.jpg" id="eListPrdImage11935_3" alt="라트링-t"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=11935&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=11935&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">라트링-t</span> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">23,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_11931" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=11931&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=11931&cate_no=1&display_group=3" name="anchorBoxName_11931"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202504/ff651f6d9e1d29661a8edfbfca6b9298.jpg" id="eListPrdImage11931_3" alt="에브프-p"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=11931&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=11931&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">에브프-p</span> <img src="https://cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/upload/custom_60.gif" alt="" /> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">35,000won</span><span id="span_product_tax_type_text" style=""> </span></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=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=11929&cate_no=1&display_group=3" name="anchorBoxName_11929"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202504/36065b6af563dfe0ef9e49b0be5ed396.webp" id="eListPrdImage11929_3" alt="베퓨-t"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=11929&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=11929&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">베퓨-t</span> <img src="https://cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/upload/custom_60.gif" alt="" /> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">33,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_11928" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=11928&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=11928&cate_no=1&display_group=3" name="anchorBoxName_11928"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202504/ef5dcd1a142817219d3e05cca4c41ec7.jpg" id="eListPrdImage11928_3" alt="케리츠-p"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=11928&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=11928&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">케리츠-p</span> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">31,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_11926" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=11926&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=11926&cate_no=1&display_group=3" name="anchorBoxName_11926"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202504/34174a84b57d5ab0ef991ec3b51a583f.webp" id="eListPrdImage11926_3" alt="페디언-set"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=11926&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=11926&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">페디언-set</span> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">44,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_11927" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=11927&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=11927&cate_no=1&display_group=3" name="anchorBoxName_11927"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202504/0b8deaca041d313a4089011698d045cc.webp" id="eListPrdImage11927_3" alt="코렌도-t"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=11927&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=11927&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">코렌도-t</span> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">34,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_11918" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=11918&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=11918&cate_no=1&display_group=3" name="anchorBoxName_11918"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202504/dfd9d79144d23e37056c9fca287c6a2c.jpg" id="eListPrdImage11918_3" alt="루디스-t"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=11918&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=11918&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">루디스-t</span> <img src="https://cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/upload/custom_60.gif" alt="" /> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">39,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_11925" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=11925&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=11925&cate_no=1&display_group=3" name="anchorBoxName_11925"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202504/4e4d9d3bb99ae4618fd170b17f36dc9d.webp" id="eListPrdImage11925_3" alt="너트링-sk"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=11925&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=11925&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">너트링-sk</span> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">67,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_11922" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=11922&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=11922&cate_no=1&display_group=3" name="anchorBoxName_11922"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202504/7c3ff1fb48870a4c13ac39526ac76fda.jpg" id="eListPrdImage11922_3" alt="와이린-t"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=11922&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=11922&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">와이린-t</span> <img src="https://cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/upload/custom_60.gif" alt="" /> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">31,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_11920" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=11920&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=11920&cate_no=1&display_group=3" name="anchorBoxName_11920"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202504/4bd32372c83806625c6c90ab2afe32e8.webp" id="eListPrdImage11920_3" alt="네비어-t"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=11920&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=11920&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">네비어-t</span> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">31,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_11924" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=11924&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=11924&cate_no=1&display_group=3" name="anchorBoxName_11924"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202504/868924b44d3ba42863303090d89b8d1e.jpg" id="eListPrdImage11924_3" alt="타부이-t ㅣ 네이비"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=11924&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=11924&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">타부이-t ㅣ 네이비</span> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">43,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_11919" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=11919&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=11919&cate_no=1&display_group=3" name="anchorBoxName_11919"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202504/9ed177777fd0c606cfb4930cf4db9a89.jpg" id="eListPrdImage11919_3" alt="페잉-p ㅣ 핑크"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=11919&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=11919&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">페잉-p ㅣ 핑크</span> <img src="https://cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/upload/custom_60.gif" alt="" /> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">29,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_11923" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=11923&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=11923&cate_no=1&display_group=3" name="anchorBoxName_11923"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202504/0b525bc50f21fccaa61e8812286c5d63.webp" id="eListPrdImage11923_3" alt="머그르-sk ㅣ 화이트 ㅣ 바지안감"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=11923&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=11923&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">머그르-sk ㅣ 화이트 ㅣ 바지안감</span> <img src="https://cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/upload/custom_60.gif" alt="" /> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">51,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_11910" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=11910&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=11910&cate_no=1&display_group=3" name="anchorBoxName_11910"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202504/48bc7b06f8e4f70234e95b2146819009.webp" id="eListPrdImage11910_3" alt="러빅-t"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=11910&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=11910&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">러빅-t</span> <img src="https://cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/upload/custom_60.gif" alt="" /> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">29,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_11921" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=11921&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=11921&cate_no=1&display_group=3" name="anchorBoxName_11921"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202504/15a6e7e63a6e7f9a401adf03e2ccd847.jpg" id="eListPrdImage11921_3" alt="리버이-nb ㅣ 소라"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=11921&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=11921&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">리버이-nb ㅣ 소라</span> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">49,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_11915" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=11915&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=11915&cate_no=1&display_group=3" name="anchorBoxName_11915"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202504/3c8a10f23a821a8baa784be751ea71f1.jpg" id="eListPrdImage11915_3" alt="타부이-t ㅣ 베이지"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=11915&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=11915&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">타부이-t ㅣ 베이지</span> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">43,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_11911" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=11911&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=11911&cate_no=1&display_group=3" name="anchorBoxName_11911"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202504/bbb208f16b9de8fbf8deb71068bcea34.webp" id="eListPrdImage11911_3" alt="벤머-nb"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=11911&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=11911&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">벤머-nb</span> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">77,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_11914" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=11914&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=11914&cate_no=1&display_group=3" name="anchorBoxName_11914"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202504/a60d105984c8a88525fb13d3748ee7ac.webp" id="eListPrdImage11914_3" alt="마이흐-t"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=11914&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=11914&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">마이흐-t</span> <img src="https://cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/upload/custom_60.gif" alt="" /> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">39,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_11916" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=11916&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=11916&cate_no=1&display_group=3" name="anchorBoxName_11916"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202504/0404cf69e319735db68aee1b92cfc982.jpg" id="eListPrdImage11916_3" alt="베코츠-p ㅣ 연그레이"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=11916&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=11916&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">베코츠-p ㅣ 연그레이</span> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">48,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_11912" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=11912&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=11912&cate_no=1&display_group=3" name="anchorBoxName_11912"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202504/aa7cbc718760ba8bf31693fdf3e7606b.jpg" id="eListPrdImage11912_3" alt="헤미드-t ㅣ 블루"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=11912&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=11912&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">헤미드-t ㅣ 블루</span> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">23,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_11909" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=11909&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=11909&cate_no=1&display_group=3" name="anchorBoxName_11909"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202504/b6afbdfdcbf60e15d194fcc8dc68d2e9.jpg" id="eListPrdImage11909_3" alt="메인프-nt"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=11909&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=11909&cate_no=1&display_group=3" class=""><span 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 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_11917" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=11917&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=11917&cate_no=1&display_group=3" name="anchorBoxName_11917"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202504/5a47457b540e7eeb2bdd7f295d6739c5.jpg" id="eListPrdImage11917_3" alt="체디코-t ㅣ 그레이"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=11917&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=11917&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">체디코-t ㅣ 그레이</span> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">28,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_11913" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=11913&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=11913&cate_no=1&display_group=3" name="anchorBoxName_11913"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202504/6b49a4c374c8da10e34eef909148474f.jpg" id="eListPrdImage11913_3" alt="머머트-p ㅣ 크림"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=11913&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=11913&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">머머트-p ㅣ 크림</span> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">36,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_11905" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=11905&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=11905&cate_no=1&display_group=3" name="anchorBoxName_11905"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202504/d32540c9dfd4747c8457a74fcce400ac.jpg" id="eListPrdImage11905_3" alt="체디코-t"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=11905&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=11905&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">체디코-t</span> <img src="https://cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/upload/custom_60.gif" alt="" /> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">28,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_11904" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=11904&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=11904&cate_no=1&display_group=3" name="anchorBoxName_11904"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202504/a3a4d977b18216b5666a842bd26eb792.jpg" id="eListPrdImage11904_3" alt="페잉-p ㅣ 옐로우"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=11904&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=11904&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">페잉-p ㅣ 옐로우</span> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">29,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_11907" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=11907&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=11907&cate_no=1&display_group=3" name="anchorBoxName_11907"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202504/e9fc027351bd889917a75631a35297c8.webp" id="eListPrdImage11907_3" alt="레시프-t"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=11907&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=11907&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">레시프-t</span> <img src="https://cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/upload/custom_60.gif" alt="" /> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">29,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_11906" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=11906&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=11906&cate_no=1&display_group=3" name="anchorBoxName_11906"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202504/57b61d41421e176d934e9d4a1841c419.webp" id="eListPrdImage11906_3" alt="토레너-sk"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=11906&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=11906&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">토레너-sk</span> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">62,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_11903" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=11903&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=11903&cate_no=1&display_group=3" name="anchorBoxName_11903"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202504/c4b2ecdb06f9eb4bddf6d1a25482d801.jpg" id="eListPrdImage11903_3" alt="메키그-t"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=11903&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=11903&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">메키그-t</span> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">29,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_11908" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=11908&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=11908&cate_no=1&display_group=3" name="anchorBoxName_11908"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202504/8d14fcc44b10e7882fdbbe5238bb04a9.webp" id="eListPrdImage11908_3" alt="머그르-sk ㅣ 블랙 ㅣ 바지안감"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=11908&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=11908&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">머그르-sk ㅣ 블랙 ㅣ 바지안감</span> <img src="https://cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/upload/custom_60.gif" alt="" /> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">51,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_11897" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=11897&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=11897&cate_no=1&display_group=3" name="anchorBoxName_11897"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202503/bd31e38d26b341fadae454ab9119de9a.webp" id="eListPrdImage11897_3" alt="에비츠-p"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=11897&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=11897&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">에비츠-p</span> <img src="https://cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/upload/custom_60.gif" alt="" /> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">68,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_11901" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=11901&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=11901&cate_no=1&display_group=3" name="anchorBoxName_11901"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202503/c64a2c1f92e50da8bdb99b7b7e271b15.webp" id="eListPrdImage11901_3" alt="프레니-ops"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=11901&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=11901&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">프레니-ops</span> <img src="https://cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/upload/custom_60.gif" alt="" /> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">54,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_11898" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=11898&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=11898&cate_no=1&display_group=3" name="anchorBoxName_11898"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202503/8b997906a02d9f6bdaf563bb4d47d017.jpg" id="eListPrdImage11898_3" alt="페저르-nb"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=11898&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=11898&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">페저르-nb</span> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">68,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_11896" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=11896&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=11896&cate_no=1&display_group=3" name="anchorBoxName_11896"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202503/3542af5b65eaffb3814d89b88e6b75a5.jpg" id="eListPrdImage11896_3" alt="레디크-t"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=11896&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=11896&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">레디크-t</span> <img src="https://cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/upload/custom_60.gif" alt="" /> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">19,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_11902" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=11902&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=11902&cate_no=1&display_group=3" name="anchorBoxName_11902"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202503/c9e19d12062cadd48aaefe60b0827089.jpg" id="eListPrdImage11902_3" alt="포제-p ㅣ s - l size"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=11902&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=11902&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">포제-p ㅣ 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 style="font-size:11px;color:#222222;font-weight:bold;">63,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_11899" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=11899&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=11899&cate_no=1&display_group=3" name="anchorBoxName_11899"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202503/df08cb5a58b4c925709b3635ff1206b0.webp" id="eListPrdImage11899_3" alt="헤미드-t ㅣ 화이트"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=11899&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=11899&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">헤미드-t ㅣ 화이트</span> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">23,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_11894" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=11894&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=11894&cate_no=1&display_group=3" name="anchorBoxName_11894"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202503/3e1fe911a6ea69c6d4438a203d079540.jpg" id="eListPrdImage11894_3" alt="(family) 레키디-t"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=11894&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=11894&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">(family) 레키디-t</span> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">17,600won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_11900" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=11900&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=11900&cate_no=1&display_group=3" name="anchorBoxName_11900"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202503/da10fd82554bb52d87b7ab9f907a9365.jpg" id="eListPrdImage11900_3" alt="체딩-p"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=11900&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=11900&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">체딩-p</span> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">101,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_11889" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=11889&cate_no=1&display_group=3';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=11889&cate_no=1&display_group=3" name="anchorBoxName_11889"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202503/1826868a2ca73ac375a1350ea2a8a687.jpg" id="eListPrdImage11889_3" alt="체티니-p"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=11889&cate_no=1&display_group=3';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=11889&cate_no=1&display_group=3" class=""><span style="font-size:11px;color:#222222;">체티니-p</span> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">39,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
</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_11755" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=11755&cate_no=1&display_group=4';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=11755&cate_no=1&display_group=4" name="anchorBoxName_11755"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202502/5f627b8d540faae30934d0805d4abcfb.jpg" id="eListPrdImage11755_4" alt="메리 슈즈"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=11755&cate_no=1&display_group=4';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=11755&cate_no=1&display_group=4" class=""><span style="font-size:11px;color:#222222;">메리 슈즈</span> <img src="https://cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/upload/custom_60.gif" alt="" /> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-3 xans-product-listitem xans-product-3 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">56,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_11742" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=11742&cate_no=1&display_group=4';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=11742&cate_no=1&display_group=4" name="anchorBoxName_11742"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202501/2ea440611f7dfbc522cc49c42a384dc9.jpg" id="eListPrdImage11742_4" alt="슬림 슈즈"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=11742&cate_no=1&display_group=4';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=11742&cate_no=1&display_group=4" class=""><span style="font-size:11px;color:#222222;">슬림 슈즈</span> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-3 xans-product-listitem xans-product-3 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">43,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_11502" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=11502&cate_no=1&display_group=4';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=11502&cate_no=1&display_group=4" name="anchorBoxName_11502"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202409/f3831dec95b79702c41140db7667e34b.jpg" id="eListPrdImage11502_4" alt="데일리 양말"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=11502&cate_no=1&display_group=4';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=11502&cate_no=1&display_group=4" class=""><span style="font-size:11px;color:#222222;">데일리 양말</span> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-3 xans-product-listitem xans-product-3 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">5,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_11473" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=11473&cate_no=1&display_group=4';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=11473&cate_no=1&display_group=4" name="anchorBoxName_11473"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202409/cd8d1381992fa3a7647f921109172f52.jpg" id="eListPrdImage11473_4" alt="페러 양말"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=11473&cate_no=1&display_group=4';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=11473&cate_no=1&display_group=4" class=""><span style="font-size:11px;color:#222222;">페러 양말</span> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-3 xans-product-listitem xans-product-3 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">6,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_11318" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=11318&cate_no=1&display_group=4';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=11318&cate_no=1&display_group=4" name="anchorBoxName_11318"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202405/765c56fe213653e2495983409e1b43ff.jpg" id="eListPrdImage11318_4" alt="헤어밴드 ㅣ 폭10cm"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=11318&cate_no=1&display_group=4';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=11318&cate_no=1&display_group=4" class=""><span style="font-size:11px;color:#222222;">헤어밴드 ㅣ 폭10cm</span> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-3 xans-product-listitem xans-product-3 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">5,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_11293" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=11293&cate_no=1&display_group=4';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=11293&cate_no=1&display_group=4" name="anchorBoxName_11293"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202405/09cbe8fc225db833b004dc76ade3c989.jpg" id="eListPrdImage11293_4" alt="메쉬 플랫"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=11293&cate_no=1&display_group=4';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=11293&cate_no=1&display_group=4" class=""><span style="font-size:11px;color:#222222;">메쉬 플랫</span> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-3 xans-product-listitem xans-product-3 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">45,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_11017" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=11017&cate_no=1&display_group=4';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=11017&cate_no=1&display_group=4" name="anchorBoxName_11017"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202401/ea619dba95e96978d9f23d02ad69d6cc.jpg" id="eListPrdImage11017_4" alt="버렌 스타킹 양말"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=11017&cate_no=1&display_group=4';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=11017&cate_no=1&display_group=4" class=""><span style="font-size:11px;color:#222222;">버렌 스타킹 양말</span> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-3 xans-product-listitem xans-product-3 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">4,500won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_10860" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=10860&cate_no=1&display_group=4';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=10860&cate_no=1&display_group=4" name="anchorBoxName_10860"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202311/e440acc3817a10793ef6d5db0e24b6bb.jpg" id="eListPrdImage10860_4" alt="램버 안경"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=10860&cate_no=1&display_group=4';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=10860&cate_no=1&display_group=4" class=""><span style="font-size:11px;color:#222222;">램버 안경</span> <img src="https://cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/upload/custom_60.gif" alt="" /> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-3 xans-product-listitem xans-product-3 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">12,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_10762" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=10762&cate_no=1&display_group=4';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=10762&cate_no=1&display_group=4" name="anchorBoxName_10762"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202310/9f84ffb05ee7ab1657d3d6e95a6cea52.jpg" id="eListPrdImage10762_4" alt="머턴-cap"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=10762&cate_no=1&display_group=4';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=10762&cate_no=1&display_group=4" class=""><span style="font-size:11px;color:#222222;">머턴-cap</span> <img src="https://cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/upload/custom_60.gif" alt="" /> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-3 xans-product-listitem xans-product-3 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">18,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_10759" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=10759&cate_no=1&display_group=4';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=10759&cate_no=1&display_group=4" name="anchorBoxName_10759"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202310/4ddb76619d76b61727346907b4aeea99.jpg" id="eListPrdImage10759_4" alt="스웨이드 백팩"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=10759&cate_no=1&display_group=4';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=10759&cate_no=1&display_group=4" class=""><span style="font-size:11px;color:#222222;">스웨이드 백팩</span> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-3 xans-product-listitem xans-product-3 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">28,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_8894" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=8894&cate_no=1&display_group=4';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=8894&cate_no=1&display_group=4" name="anchorBoxName_8894"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202111/7e6bc8c2a67eafcbd26cf4d3a9d358f9.jpg" id="eListPrdImage8894_4" alt="로다 머리삔"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=8894&cate_no=1&display_group=4';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=8894&cate_no=1&display_group=4" class=""><span style="font-size:11px;color:#222222;">로다 머리삔</span> <img src="https://cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/upload/custom_60.gif" alt="" /> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-3 xans-product-listitem xans-product-3 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">10,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_9630" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=9630&cate_no=1&display_group=4';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=9630&cate_no=1&display_group=4" name="anchorBoxName_9630"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202209/9318efc2f87b6fbc425eabc0a3424866.jpg" id="eListPrdImage9630_4" alt="진주 목걸이"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=9630&cate_no=1&display_group=4';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=9630&cate_no=1&display_group=4" class=""><span style="font-size:11px;color:#222222;">진주 목걸이</span> <img src="https://cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/upload/custom_60.gif" alt="" /> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-3 xans-product-listitem xans-product-3 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">8,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_10124" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=10124&cate_no=1&display_group=4';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=10124&cate_no=1&display_group=4" name="anchorBoxName_10124"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202302/3b7acb99a4bfd030e765c7369a448499.jpg" id="eListPrdImage10124_4" alt="로나 선글라스"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=10124&cate_no=1&display_group=4';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=10124&cate_no=1&display_group=4" class=""><span style="font-size:11px;color:#222222;">로나 선글라스</span> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-3 xans-product-listitem xans-product-3 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">16,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_10509" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=10509&cate_no=1&display_group=4';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=10509&cate_no=1&display_group=4" name="anchorBoxName_10509"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202307/0f04fc1cb5fb72c657cf398e81b078e3.jpg" id="eListPrdImage10509_4" alt="아르 벨트"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=10509&cate_no=1&display_group=4';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=10509&cate_no=1&display_group=4" class=""><span style="font-size:11px;color:#222222;">아르 벨트</span> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-3 xans-product-listitem xans-product-3 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">12,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_10488" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=10488&cate_no=1&display_group=4';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=10488&cate_no=1&display_group=4" name="anchorBoxName_10488"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202306/4ecf281f620c5a94d9328a36d1d4469c.jpg" id="eListPrdImage10488_4" alt="에퓨 선글라스"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=10488&cate_no=1&display_group=4';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=10488&cate_no=1&display_group=4" class=""><span style="font-size:11px;color:#222222;">에퓨 선글라스</span> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-3 xans-product-listitem xans-product-3 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">14,000won</span><span id="span_product_tax_type_text" style=""> </span></li>
</ul>
</div>
</div>
</div>
</li>
<li id="anchorBoxId_8253" class="xans-record-">
<div class="box_design_main more_item" onclick="window.location.href='/product/detail.html?product_no=8253&cate_no=1&display_group=4';">
<div class="thumbnail">
<a href="/product/detail.html?product_no=8253&cate_no=1&display_group=4" name="anchorBoxName_8253"><img src="//cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/product/medium/202102/160e8bc7707f5869329a1bbd6d0dc443.jpg" id="eListPrdImage8253_4" alt="무지 양말"></a>
</div>
<div class="description item_list" onclick="window.location.href='/product/detail.html?product_no=8253&cate_no=1&display_group=4';">
<div class="inner">
<p class="name"><a href="/product/detail.html?product_no=8253&cate_no=1&display_group=4" class=""><span style="font-size:11px;color:#222222;">무지 양말</span> <img src="https://cafe24.poxo.com/ec01/yeon5732/O7m2mjHdzMQjY1cTacOt9sFaxsKV37xn4fIhMjo2niUEvEMbdjfo04L4JotqcHbrJkxgOoxU3fw7td8cEL8Wmg==/_/web/upload/custom_60.gif" alt="" /> </a></p>
<ul class="xans-element- xans-product xans-product-listitem-3 xans-product-listitem xans-product-3 spec"><li class=" xans-record-">
<p class="title2 displaynone"></p><span style="font-size:11px;color:#222222;font-weight:bold;">2,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" src="//openapi.toup.net/common/js/md5.min.js" ></script>
<script type="text/javascript" src="//static.criteo.net/js/ld/ld.js" async="true"></script>
<script type="text/javascript">
setTimeout(function() {
window._criteo_email = document.getElementById("_criteo_email") ? document.getElementById("_criteo_email").innerHTML : "" ;
window._criteo_email = typeof _criteoMd5 === "function" && window._criteo_email != '' ? _criteoMd5(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: "setHashedEmail", email: window._criteo_email } ,
{ 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;">- 반품주소지 : 서울시 동대문구 약령중앙로 19-5 거성빌딩 6층 쏘앵</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>
<!-- Mirae Log Analysis Script Ver 1.0 -->
<script TYPE="text/javascript">
var mi_adkey = "eafae2io";
var mi_script = "<scr"+"ipt "+"type='text/javascr"+"ipt' src='http://log1.toup.net/mirae_log.js?t="+(new Date().getTime())+"' async='true'></scr"+"ipt>";
document.writeln(mi_script);
</script>
<!-- Mirae Log Analysis Script END -->
<!-- 기본적으로 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=f70e198d3233338ab7dc7e8f282f92d2&u=yeon5732.1"></script>
<script> (function (i, s, o, g) {
a = s.createElement(o), m = s.getElementsByTagName(o)[0];
a.async = 1;
a.src = g;
a.setAttribute('crossorigin', 'anonymous');
m.parentNode.insertBefore(a, m);
a.onload = function() {
if (typeof window.initCaWebAnalytics === 'function') {
window.initCaWebAnalytics({"mid":"yeon5732","stype":"e","domain":"","shop_no":1,"lang":"ko_KR","mobile_flag":"F","send_endpoint":"https://ca-log.cafe24data.com","path_role":"MAIN"});
}
};
})(window, document, 'script', '//optimizer.poxo.com/ca2/analytics.js');</script>
<script>
try {
// Account ID 적용
if (!wcs_add) var wcs_add = {};
wcs_add["wa"] = "s_396dc22179cd";
// 네이버 페이 White list가 있을 경우
wcs.checkoutWhitelist = ["yeon5732.cafe24.com", "www.yeon5732.cafe24.com", "m.yeon5732.cafe24.com", "ssoaeng.co.kr", "www.ssoaeng.co.kr", "m.ssoaeng.co.kr"];
// 레퍼러
wcs.setReferer("");
// 유입 추적 함수 호출
wcs.inflow("ssoaeng.co.kr");
// 로그수집
wcs_do();
} catch (e) {};
</script>
<!-- External Script Start -->
<!-- fbe -->
<!-- CMC3 script -->
<div id="fbe_common_top_script" style="display:none;">
<script type="text/javascript">
if (typeof facebookChannel === 'undefined') {
var facebookChannel = {
mall_id: CAFE24.SHOP.getMallID(),
shop_no: CAFE24.SDE_SHOP_NUM,
shop_id: CAFE24.SHOP.getMallID() + '.' + CAFE24.SDE_SHOP_NUM,
external_id: null,
event_id: null,
setInitActivated: function(is_activated) {
window.top.fbe_init_activated = !!is_activated;
},
getInitActivated: function() {
return !!window.top.fbe_init_activated;
},
setEventActivated: function(event_type, is_activated) {
if (typeof event_type === 'string' && event_type) {
let key = 'fbe_' + event_type + '_activated'
window.top[key] = !!is_activated;
}
},
getEventActivated: function(event_type) {
if (typeof event_type === 'string' && event_type) {
let key = 'fbe_' + event_type + '_activated'
return !!window.top[key];
}
return false;
},
getCookie: function(name) {
return (name = (document.cookie + ';').match(name + '=.*;')) && name[0].split(/=|;/)[1];
},
getExternalId: function() {
return facebookChannel.getCookie('fb_external_id');
},
getEventId: function() {
return facebookChannel.getCookie('fb_event_id');
},
getInt: function(value) {
let value_int = parseInt(value);
value_int = isNaN(value_int) ? 0 : value_int;
return value_int;
},
getFloat: function(value) {
let value_float = parseFloat(value);
value_float = isNaN(value_float) ? 0.00 : value_float.toFixed(2);
return value_float;
},
init: function() {
if (facebookChannel.getInitActivated()) {
return;
}
facebookChannel.setInitActivated(true);
!function(f,b,e,v,n,t,s)
{if(f.fbq)return;n=f.fbq=function(){n.callMethod?
n.callMethod.apply(n,arguments):n.queue.push(arguments)};
if(!f._fbq)f._fbq=n;n.push=n;n.loaded=!0;n.version='2.0';
n.queue=[];t=b.createElement(e);t.async=!0;
t.src=v;s=b.getElementsByTagName(e)[0];
s.parentNode.insertBefore(t,s)}(window,document,'script',
'https://connect.facebook.net/en_US/fbevents.js');
if ((typeof EC_GLOBAL_INFO !== 'undefined' && EC_GLOBAL_INFO.getCountryCode() === 'US') || (typeof SHOP !== 'undefined' && SHOP.getLanguage() === 'en_US')) {
fbq('dataProcessingOptions', ['LDU'], 0, 0);
}
if (typeof ECLOG !== 'undefined' && !!ECLOG.EXTERNAL_ID) {
ECLOG.EXTERNAL_ID.chk(facebookChannel.shop_id, function(error, external_id) {
if (error || !external_id) {
external_id = facebookChannel.getExternalId();
console.info('external_id is cookie value.', '(1)');
}
fbq('init', '2129130783993076',{external_id: external_id}, {agent: 'plcafe24'});
fbq('trackSingle', '2129130783993076', 'PageView');
facebookChannel.external_id = external_id;
});
} else {
let external_id = facebookChannel.getExternalId();
console.info('external_id is cookie value.', '(2)');
fbq('init', '2129130783993076',{external_id: external_id}, {agent: 'plcafe24'});
fbq('trackSingle', '2129130783993076', 'PageView');
facebookChannel.external_id = external_id;
}
},
pixelEvent: function(event_type, callback, is_cookie_event) {
if (facebookChannel.getEventActivated(event_type)) {
return;
}
facebookChannel.setEventActivated(event_type, true);
is_cookie_event = !!is_cookie_event;
let retry = 0;
let execute = function() {
if (!facebookChannel.external_id) {
if (retry < 10) {
retry++;
if (retry >= 5) {
console.warn('retry #' + retry, event_type);
}
setTimeout(execute, 1000);
} else {
console.warn('external_id is empty.');
}
return;
}
if (callback.length === 0) {
callback();
}
else if (!is_cookie_event && typeof ECLOG !== 'undefined' && !!ECLOG.EVENT_ID) {
ECLOG.EVENT_ID.chk(facebookChannel.shop_id, function(error, event_id) {
if (error || !event_id) {
event_id = facebookChannel.getEventId();
console.info('event_id is cookie value.', '(1)');
}
facebookChannel.event_id = event_id;
if (event_id) {
callback(event_id);
} else {
console.warn('event_id is empty.', '(1)');
}
});
}
else {
let event_id = facebookChannel.getEventId();
console.info('event_id is cookie value.', '(2)');
facebookChannel.event_id = event_id;
if (event_id) {
callback(event_id);
} else {
console.warn('event_id is empty.', '(2)');
}
}
};
execute();
},
messengerChatPlugin: function() {
let event_type = 'messenger';
let sdk_version = '';
let locale = '';
if (!sdk_version) {
console.warn('sdk_version is empty.');
return;
}
if (!locale) {
console.warn('locale is empty.');
return;
}
if (facebookChannel.getEventActivated(event_type)) {
return;
}
facebookChannel.setEventActivated(event_type, true);
window.fbAsyncInit = function() {
FB.init({
appId : '216637735743129',
autoLogAppEvents : true,
xfbml : true,
version : sdk_version
});
};
(function(d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) return;
js = d.createElement(s); js.id = id;
js.src = 'https://connect.facebook.net/' + locale + '/sdk/xfbml.customerchat.js';
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));
}
};
facebookChannel.init();
}
</script>
<noscript><img height="1" width="1" style="display:none"
src="https://www.facebook.com/tr?id=2129130783993076&ev=PageView&noscript=1"
/></noscript>
</div>
<!-- CMC3 script -->
<!-- External Script End -->
<script type="text/javascript" src="//t1.kakaocdn.net/kakao_js_sdk/v1/kakao.min.js" charset="utf-8"></script>
<script type="text/javascript" src="/ind-script/i18n.php?lang=ko_KR&domain=front&v=2505081404" charset="utf-8"></script>
<script src="/ind-script/optimizer.php?filename=zZlbV-M2EMffwa_9HIbutqevJCwtZ6FwCLs8K_I4GaxbdSF4P33HdtglZX2TzTk9HBLH0f-nkTSaGcXpVktIT3-1aW6ZhJ22RWrB6WA5pI8uxdM_VPLofkm72gU0jBfp4z8BbLl_-5D8npyMVMKzB6uYcPsbCde6QJhKCVZEDSEBnuQqWqo01yoXyH0U4jT5SH9RndO3Xtv_zJuxekP6g9XNmAeP1EBSK-VT4Nf1xQP67f23c-ZZIlGN4Ahckwru6bpf5YxF5fMBeM1DZdaFtnKplbdaCLD9ulsR3JkxC4vZZoA9waPob5VbXc_UkdOCFFodeW2OBCo4WjOlhtjVILiWUquhrZ-Zot2oyLWNBT-8l1rnQRpB6_JzETMmvdZrFJDevdI39nXMSotO6izQLbdDM67DPCheTWjVLgu0bWSrEw8ldBhBrpp-aXbPa4Rg30qhWTZKJINnVb83awf2qW1xWsRGizJHMdj1MshZEL6aAieZ9YsOr6sarbbaHHR4UWM-s4LptKheb_EZRNcu6cAsay_50ukkLdJzWIfN-A7Jjzfallfo_GjxHeRgQXFYBlu9l7cW-fhBO2CWb0etsmd5Xr6NpuOz2XqDtej_kVszivTKkeu7qSRgDtVmKkWCZ1mVt8ZxjAgbpED5xASSXNsX3vcbCV0wNxlbGawy9xZPBEOzCO_XwxaEgXcfx5ap7E1ynrMDCq9IO-nd-BSK_WzTJDRnlKMK3R_cf1gwJqwsCa8yZtOPyW_JSZpTljfIi0iIOD1RrcZ2xMNVHQ-rLyj91ZnwBTka9Tfsqv_bJoHfmAq2AgHcR6H2y_vo2iqtEfqfuMTwAd0IVURpX0qZnXQJlfW8oFfmQ5whzXymn569ZbVV9ef640qLTAc_NzYuwfZALyXbzA49R0dFcolULM-IviTcihKbgMaLMdIROw23BF4wV8Dsy3cRVPYmLU_HPshJ_vsdtuw4Q41GqXlsWqDKZgGdv6ljIkFfm9TS6nptaWFfI6eOujo27Rt5kJ7vPx3ndIpnfqolc2FCzMnlMElFnUQOEWfxgeEHZFVnhxjGFRaQLqzeUf5eMr6FeMqEHflKvx_RaMxeR0dLz1Cki1AVo3RT6uj5vYMnhJ1nothfLnVQHZZdM0XJ6QC2g7XQm_4ScOslVU0ePYLrb720pfH6M5SjbGGuVLx5jdZJkOuuXxx65Dc2A8tHzuFrQJPqphNMd20yiNHrqT0U8iY6900ZyzUK6CyHevTnYLTD-P4f0G27Q-AAAB-9qV4TqP6BCfK7Wl5ASYe7bCLlXlOoWE4aTb0_4t0SFOQ4dWtcsXKCDX9alsU75FnwmlI78hpDoXkXvzeC8HirTTDxGzTQqUuCpY3-hFMW5rqsEtw-XkzzkAPUpL1X-9pfWD0vKmfw2j3pnq1n4VSHp-nDa4qBS5XreCcQDCVbC5hgkWF-a7WA455fegaYc9X6gKJFbCKyVJPlj6lyQTVK6HYJZ8Oe0FkdPFzgM7X8Fw&type=js&k=1659801f7521d60ddda89826af35d5160611b76f&t=1745986622" ></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 = '원';
</script></body></html>