CINXE.COM

녹십자웰빙 공식몰

<!DOCTYPE html> <html 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.eyJpc3MiOiJlYXJuZXN0cmVlLmNhZmUyNC5jb20iLCJhdWQiOiJqcy1lcnJvci10cmFjZXItYXBpLmNhZmUyNC5jb20iLCJtYWxsX2lkIjoiZWFybmVzdHJlZSIsInNob3Bfbm8iOjEsInBhdGhfcm9sZSI6Ik1BSU4iLCJsYW5ndWFnZV9jb2RlIjoia29fS1IiLCJjb3VudHJ5X2NvZGUiOiJLUiIsImlzX3l0cyI6ZmFsc2UsImlzX2NvbnRhaW5lciI6dHJ1ZSwid29ya3NwYWNlIjoicHJvZHVjdGlvbiJ9.6bDHvpLV13LeDBFLvuEpg__Nc1oZQmPV02nxNe5lAgY', {"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="녹십자웰빙 공식스토어 신규오픈 🎉 지금 가입하면 쿠폰팩 5만원 바로 사용가능!" /> <meta name="keywords" content="녹십자웰빙몰" /><meta http-equiv="Content-Type" content="text/html; charset=utf-8"><meta name="viewport" content="width=device-width, initial-scale=1"/><meta name="mobile-web-app-capable" content="yes"/><meta name="format-detection" content="telephone=no"/><!-- PG크로스브라우징필수내용 --><meta http-equiv="Cache-Control" content="no-cache"><meta http-equiv="Expires" content="0"><meta http-equiv="Pragma" content="no-cache"><!-- // PG크로스브라우징필수내용 --><link rel="preconnect" href="https://img.echosting.cafe24.com"><meta name="made-by" content="웹퍼블릭" code="82DF1EBD0586" site="https://webpublic.co.kr"/><!-- 라이선스 여부 체크하는 부분으로 삭제하시면 사이트가 정상 노출되지 않습니다. --><link rel="preconnect" href="https://fonts.googleapis.com"><link rel="preconnect" href="https://fonts.gstatic.com" crossorigin><link href="https://fonts.googleapis.com/css2?family=Manrope:wght@500;700&amp;display=swap" rel="stylesheet"><!-- Enliple Tracker Start : onetag --><script async src="https://cdn.onetag.co.kr/0/tcs.js?eid=1h82kk60miib51h82kk60m"></script><!-- Enliple Tracker End : onetag --> <!-- Facebook Channel Site Verification --> <meta name="facebook-domain-verification" content="zdrlzhib5x7bou8ernecby6tqwnre5" /> <!-- Facebook Channel Site Verification --> <!-- Google Channel Site Verification --> <meta name="google-site-verification" content="vPjR2hTM8eoqyxrKzWiElW9-kRRb87CSOS6WFV7b5vc" /> <!-- Google Channel Site Verification --> <!-- Google tag (gtag.js) --> <script async src="https://www.googletagmanager.com/gtag/js?id=G-63DP45NS5Q"></script> <script> window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments);} gtag('js', new Date()); gtag('config', 'G-63DP45NS5Q'); </script> <!-- Google Tag Manager --> <script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start': new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0], j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src= 'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f); })(window,document,'script','dataLayer','GTM-T955FKFZ');</script> <!-- End Google Tag Manager --> <link rel="canonical" href="https://gcwellbeingmall.co.kr" /> <meta property="og:url" content="https://gcwellbeingmall.co.kr" /> <meta property="og:title" content="녹십자웰빙 공식몰" /> <meta property="og:description" content="녹십자웰빙 공식스토어 신규오픈 🎉 지금 가입하면 쿠폰팩 5만원 바로 사용가능!" /> <meta property="og:site_name" content="녹십자웰빙몰" /> <meta property="og:type" content="website" /> <meta property="og:image" content="//ecimg.cafe24img.com/pg1028b89924010001/earnestree/web/upload/share-image-1-710b4a34fef03cee86d2b8ac74af76e3.jpg" /> <meta name="naver-site-verification" content="3407e8f534faf595ef1aefc8ec42969bf8a9b0bc" /> <link rel="shortcut icon" href="//ecimg.cafe24img.com/pg1028b89924010001/earnestree/web/upload/favicon-da2f797697ec4e61e3cd43bf2d4d94f9.ico" /> <link rel="manifest" href="//optimizer.poxo.com/json/earnestree/pwa/manifest-94ba0ab268431adf86d2456128f90352.json" crossorigin="anonymous" /> <script type="text/javascript" src="//wcs.naver.net/wcslog.js"></script> <script type="text/javascript">var CAFE24API = { instance : [], MALL_ID : 'earnestree', SHOP_NO : 1, init : function (appInfo) { if (typeof appInfo == 'object') { if (appInfo.hasOwnProperty('client_id')) { var appKey = appInfo.client_id; } } else { var appKey = appInfo; } if (appKey) { if (!this.instance[appKey]) { CAFE24API.clientId = appKey; if (appInfo.hasOwnProperty('version')) { CAFE24API.version = appInfo.version; } else { if (CAFE24API.hasOwnProperty('version')) { delete CAFE24API.version; } } var copyObject = CAFE24API.constructor(); for (var attr in CAFE24API) { if (CAFE24API.hasOwnProperty(attr)) { copyObject[attr] = CAFE24API[attr]; } } this.instance[appKey] = copyObject; } return this.instance[appKey]; } }, initializeXhr : function () { try { return new XMLHttpRequest(); } catch (error) { return new window.ActiveXObject('Microsoft.XMLHTTP'); } }, fullPath: function (url) { return 'https://earnestree.cafe24api.com' + url; }, getLoginProvider: function (callback) { if (!CAFE24API.__chkValidSessionScope(callback, 'customer')) { return; } callback({'login': CAPP_ASYNC_METHODS.AppCommon.getLoginProvider()}); }, getCustomerProvider: function (callback) { if (!CAFE24API.__chkValidSessionScope(callback, 'customer')) { return; } callback({'login': CAPP_ASYNC_METHODS.AppCommon.getCustomerProvider()}); }, getMemberID: function (callback) { if (!CAPP_ASYNC_METHODS.IS_LOGIN) { callback(null); } else { callback(CAPP_ASYNC_METHODS.AppCommon.getMemberID()); } }, getEncryptedMemberId: function (client_id, callback) { if (!CAFE24API.__chkValidSessionScope(callback, 'customer')) { return; } callback(null, CAPP_ASYNC_METHODS.AppCommon.getEncryptedMemberId(client_id)); }, getMemberInfo: function (callback) { callback({'id': CAPP_ASYNC_METHODS.AppCommon.getMemberInfo()}); }, getCustomerIDInfo: function (callback) { if (!CAFE24API.__scopeErr(callback, 'application')) { return; } callback(null, {'id': CAPP_ASYNC_METHODS.AppCommon.getCustomerIDInfo()}); }, getCustomerInfo: function (callback) { if (!CAFE24API.__chkValidSessionScope(callback, 'customer')) { return; } callback(null, {'customer': CAPP_ASYNC_METHODS.AppCommon.getCustomerInfo()}); }, getMileageInfo: function (callback) { if (!CAFE24API.__chkValidSessionScope(callback, 'customer')) { return; } callback(null, {'mileage': CAPP_ASYNC_METHODS.AppCommon.getMileageInfo()}); }, getPointInfo: function (callback) { if (!CAFE24API.__chkValidSessionScope(callback, 'customer')) { return; } callback(null, {'point': CAPP_ASYNC_METHODS.AppCommon.getPointInfo()}); }, getDepositInfo: function (callback) { if (!CAFE24API.__chkValidSessionScope(callback, 'customer')) { return; } callback(null, {'deposit': CAPP_ASYNC_METHODS.AppCommon.getDepositInfo()}); }, getCreditInfo: function (callback) { if (!CAFE24API.__chkValidSessionScope(callback, 'customer')) { return; } callback(null, {'credit': CAPP_ASYNC_METHODS.AppCommon.getCreditInfo()}); }, getCartList: function (callback) { if (!CAFE24API.__scopeErr(callback, 'personal')) { return; } CAPP_ASYNC_METHODS.AppCommon.getCartList().then(function(data){ callback(null, {'carts': data}); }); }, getCartInfo: function (callback) { if (!CAFE24API.__chkValidSessionScope(callback, 'personal')) { return; } callback(null, {'cart': CAPP_ASYNC_METHODS.AppCommon.getCartInfo()}); }, getCartItemList: function (callback) { if (!CAFE24API.__scopeErr(callback, 'order')) { return; } callback(null, {'items': CAPP_ASYNC_METHODS.AppCommon.getCartItemList()}); }, getCartCount: function (callback) { if (!CAFE24API.__chkValidSessionScope(callback, 'personal')) { return; } callback(null, CAPP_ASYNC_METHODS.AppCommon.getCartCount()); }, getCouponCount: function (callback) { if (!CAFE24API.__chkValidSessionScope(callback, 'promotion')) { return; } callback(null, CAPP_ASYNC_METHODS.AppCommon.getCouponCount()); }, getWishCount: function (callback) { if (!CAFE24API.__chkValidSessionScope(callback, 'personal')) { return; } callback(null, CAPP_ASYNC_METHODS.AppCommon.getWishCount()); }, getShopInfo: function (callback) { if (!CAFE24API.__scopeErr(callback, 'store')) { return; } callback(null, {'shop': CAPP_ASYNC_METHODS.AppCommon.getShopInfo()}); }, addCurrentProductToCart: function (mall_id, time, app_key, member_id, hmac, callback) { if (!CAFE24API.__scopeErr(callback, 'order')) { return; } CAPP_ASYNC_METHODS.AppCommon.addCurrentProductToCart(mall_id, time, app_key, member_id, hmac).then(function(data){ callback(null, {'cart': data}); }).catch(function (data) { if (data) { callback(new Error('422'), {'error': {code: data.code, message: data.message}}); } else { callback(new Error('422'), {'error': {code: 422, message: 'This sdk is not available on the current page'}}); } }); }, precreateOrder: function (mall_id, time, app_key, member_id, hmac, callback) { if (!CAFE24API.__scopeErr(callback, 'order')) { return; } CAPP_ASYNC_METHODS.AppCommon.precreateOrder(mall_id, time, app_key, member_id, hmac).then(function(data){ callback(null, {'order': data}); }).catch(function (data) { if (data) { callback(new Error('422'), {'error': {code: data.code, message: data.message}}); } else { callback(new Error('422'), {'error': {code: 422, message: 'This sdk is not available on the current page'}}); } }); }, getOrderItemList: function (start_date, end_date, order_status, page, count, order_id, callback) { if (!CAFE24API.__scopeErr(callback, 'order')) { return; } CAPP_ASYNC_METHODS.AppCommon.getOrderItemList(start_date, end_date, order_status, page, count, order_id).then(function(data){ callback(null, {'items': data}); }).catch(function (data) { if (data) { callback(new Error('422'), {'error': {code: data.code, message: data.message}}); } else { callback(new Error(422), { 'error': { code: 422, message: 'This sdk is not available on the current page' } }); } }); }, getOrderDetailInfo: function (shop_no, order_id, callback) { if (!CAFE24API.__scopeErr(callback, 'order')) { return; } CAPP_ASYNC_METHODS.AppCommon.getOrderDetailInfo(shop_no, order_id).then(function(data){ callback(null, {'orders': data}); }).catch(function (data) { if (data) { callback(new Error('422'), {'error': {code: data.code, message: data.message}}); } else { callback(new Error(422), { 'error': { code: 422, message: 'This sdk is not available on the current page' } }); } }); }, getClaimableItemList: function (order_id, customer_service_type, callback) { if (!CAFE24API.__scopeErr(callback, 'order')) { return; } CAPP_ASYNC_METHODS.AppCommon.getClaimableItemList(order_id, customer_service_type).then(function(data){ callback(null, {'items': data}); }).catch(function (data) { if (data) { callback(new Error('422'), {'error': {code: data.code, message: data.message}}); } else { callback(new Error(422), { 'error': { code: 422, message: 'This sdk is not available on the current page' } }); } }); }, emptyCart: function (basket_shipping_type, callback) { if (!CAFE24API.__scopeErr(callback, 'personal')) { return; } CAPP_ASYNC_METHODS.AppCommon.emptyCart(basket_shipping_type).then(function (data) { callback(null, {'result': data}); }).catch(function (data) { if (data) { callback(new Error('422'), {'error': {code: data.code, message: data.message}}); } else { callback(new Error(422), { 'error': { code: 422, message: 'This sdk is not available on the current page' } }); } }) ; }, deleteCartItems: function (basket_shipping_type, product_list, callback) { if (!CAFE24API.__scopeErr(callback, 'personal')) { return; } CAPP_ASYNC_METHODS.AppCommon.deleteCartItems(basket_shipping_type, product_list).then(function (data) { callback(null, {'result': data}); }).catch(function (data) { if (data) { callback(new Error('422'), {'error': {code: data.code, message: data.message}}); } else { callback(new Error(422), { 'error': { code: 422, message: 'This sdk is not available on the current page' } }); } }) ; }, addCart: function (basket_type, prepaid_shipping_fee, product_list, callback) { if (!CAFE24API.__scopeErr(callback, 'personal')) { return; } CAPP_ASYNC_METHODS.AppCommon.addCart(basket_type, prepaid_shipping_fee, product_list).then(function (data) { callback(null, data); }).catch(function (data) { if (data) { callback(new Error('422'), {'error': {code: data.code, message: data.message}}); } else { callback(new Error(422), { 'error': { code: 422, message: 'This sdk is not available on the current page' } }); } }) }, addBundleProductsCart: function (basket_type, prepaid_shipping_fee, product_list, callback) { if (!CAFE24API.__scopeErr(callback, 'personal')) { return; } CAPP_ASYNC_METHODS.AppCommon.addBundleProductsCart(basket_type, prepaid_shipping_fee, product_list).then(function (data) { callback(null, data); }).catch(function (data) { if (data) { callback(new Error('422'), {'error': {code: data.code, message: data.message}}); } else { callback(new Error(422), { 'error': { code: 422, message: 'This sdk is not available on the current page' } }); } }) }, get : function(url, callback) { return CAFE24API.complete('GET', url, this, null, callback); }, post : function(url, params, callback) { return CAFE24API.complete('POST', url, this, params, callback); }, put : function(url, params, callback) { return CAFE24API.complete('PUT', url, this, params, callback); }, delete : function(url, callback) { return CAFE24API.complete('DELETE', url, this, null, callback); }, complete : function(method, url, obj, params, callback) { var xhr = CAFE24API.sendXhr(method, url, obj, params, callback); xhr.onreadystatechange = function () { if (xhr.readyState === XMLHttpRequest.DONE) { if (xhr.status >= 200 && xhr.status <= 208) { callback(null, JSON.parse(xhr.responseText)); } else { callback(new Error(xhr.status), JSON.parse(xhr.responseText)); } } }; }, sendXhr : function (method, url, obj, params, callback) { if (method !== 'POST') { var url = obj.fullPath(url); } var xhr = obj.initializeXhr(); var queryVars = {}; if (obj.clientId) queryVars['cafe24_app_key'] = obj.clientId; if (obj.version) queryVars['cafe24_api_version'] = obj.version; if (params === null) { var seperator = url.indexOf('?') == -1 ? '?' : '&'; var queryString = []; for (var key in queryVars) { queryString.push(key + '=' + queryVars[key]); } if (queryString.length > 0) { url = url + seperator + queryString.join('&'); } } xhr.open(method, url, true); if (typeof params == 'object' && params !== null) { xhr.setRequestHeader('Content-type','application/x-www-form-urlencoded; charset=utf-8'); for (var key in queryVars) { params[key] = queryVars[key]; } params = 'formData=' + JSON.stringify(params); } xhr.send(params || null); return xhr; }, __sessionErr: function (callback) { callback(new Error(403), {'error': {code: 403, message: 'Failed to get session. Only available when log in.'}}); }, __scopeErr: function (callback, scope) { if (typeof CAFE24.APPSCRIPT_SDK_DATA != "undefined" && jQuery.inArray(scope, CAFE24.APPSCRIPT_SDK_DATA ) > -1 ) { return true; } callback(new Error(403), {'error': {code: 403, message: 'You do not have the necessary authority(scope) to use the SDK.'}}); }, __chkValidSessionScope: function (callback, scope) { if (!CAPP_ASYNC_METHODS.IS_LOGIN) { CAFE24API.__sessionErr(callback); return false; } if (!CAFE24API.__scopeErr(callback, scope)) { return false; } return true; } }; </script> <script type="text/javascript"> window.CAFE24 = window.CAFE24 || {}; CAFE24.MANIFEST_CACHE_REVISION = '2412041351'; 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 = false; var EC_MOBILE = CAFE24.MOBILE; var EC_MOBILE_DEVICE = CAFE24.MOBILE_DEVICE; var EC_MOBILE_USE = CAFE24.MOBILE_USE; CAFE24.SKIN_CODE = "skin3"; 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 'earnestree'},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 'SGD'},getCurrencyList : function(sCurrencyCode) { var aCurrencyList = {"JPY":{"currency_symbol":"&yen;","decimal_place":0,"round_method_type":"F"},"VND":{"currency_symbol":"&#8363;","decimal_place":0,"round_method_type":"F"},"PHP":{"currency_symbol":"&#8369;","decimal_place":2,"round_method_type":"R"},"USD":{"currency_symbol":"$","decimal_place":2,"round_method_type":"R"},"CNY":{"currency_symbol":"&yen;","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":".&#1583;.&#1576;","decimal_place":3,"round_method_type":"R"},"BDT":{"currency_symbol":"&#2547;","decimal_place":2,"round_method_type":"R"},"GBP":{"currency_symbol":"&pound;","decimal_place":2,"round_method_type":"R"},"CAD":{"currency_symbol":"C$","decimal_place":2,"round_method_type":"R"},"CZK":{"currency_symbol":"K&#269;","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":"&#8377;","decimal_place":2,"round_method_type":"R"},"IDR":{"currency_symbol":"Rp","decimal_place":0,"round_method_type":"F"},"ILS":{"currency_symbol":"&#8362;","decimal_place":2,"round_method_type":"R"},"JOD":{"currency_symbol":" &#1583;&#1610;&#1606;&#1575;&#1585;","decimal_place":3,"round_method_type":"R"},"KWD":{"currency_symbol":"&#1583;&#1610;&#1606;&#1575;&#1585;","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":"&#8360;","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":"&#65020;","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":"&#3647;","decimal_place":2,"round_method_type":"R"},"TRY":{"currency_symbol":"TL","decimal_place":2,"round_method_type":"R"},"AED":{"currency_symbol":"&#1601;&#1604;&#1587;","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":"earnestree.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":"earnestree","sDefaultAppDomain":"https:\/\/app4you.cafe24.com","sWebLogOffFlag":"F","cdnUrl":"https:\/\/ecimg.cafe24img.com\/pg1028b89924010001\/earnestree"}; var EC_FRONT_JS_CONFIG_MANAGE = CAFE24.getDeprecatedNamespace('EC_FRONT_JS_CONFIG_MANAGE'); 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'); CAFE24.FRONT_JS_CONFIG_SHOP = {"search_period":[],"calendar_config":{"maxDate":"2026-12-04","locale":"ko"},"aProductPurchaseInfo_17":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_28":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_38":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_76":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_70":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_25":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_21":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_63":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_46":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_43":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_50":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_183":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_181":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_166":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_158":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_32":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_97":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true}}; var EC_FRONT_JS_CONFIG_SHOP = CAFE24.getDeprecatedNamespace('EC_FRONT_JS_CONFIG_SHOP'); typeof window.CAFE24 === "undefined" && (window.CAFE24 = {}); CAFE24.BOARD = {"config_4":{"board_no":4,"use_block":"F","use_report":"F"}}; CAFE24.FRONTEND = {"FW_MANIFEST_CACHE_REVISION":2412041351,"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="//img.echosting.cafe24.com/editors/froala/css/froala_style_ec.min.css?vs=2412041351" charset="utf-8"/> <link rel="stylesheet" type="text/css" href="//optimizer.poxo.com/css/common/c8eead5148b15c5560d7679206a6426c23ffd87f/1733204431" crossorigin="anonymous" /><link rel="stylesheet" type="text/css" href="//optimizer.poxo.com/css/earnestree/e826bb9b51e9783daa5137a25e75159566bee3bb.292ef39e1527ef1649588bd28524ac10/1730352804" crossorigin="anonymous" /> <style type="text/css"> </style> <title>녹십자웰빙 공식몰</title></head><body id="main"><div id="skipNavigation"> <p><a href="#category">전체상품목록 바로가기</a></p> <p><a href="#contents">본문 바로가기</a></p> </div> <div id="wrap" class="loading" style="opacity:0;"> <div id="container"> <!-- 상단 공통 영역입니다. 이 영역에 대한 스타일은 "/_wp/css/header.css"에 정의되어 있습니다. --> <!-- 탑배너 --> <div id="tbanner" class="swiper-container" webpb-banner-code="p8d8" hidden> <ul class="swiper-wrapper"><li class="swiper-slide" webpb-banner> <a href="%7B#link%7D" target="{#link_target}" style="color:{#color1};background-color:{#color2};">{#text_1}</a> </li> <li class="swiper-slide" webpb-banner> <a href="%7B#link%7D" target="{#link_target}" style="color:{#color1};background-color:{#color2};">{#text_1}</a> </li> </ul></div> <!-- // --> <header id="header"><div class="site-wrap logo-wrap"> <div class="topArea_logo"> <!-- 상단 로고 --> <!-- 상단 로고 영역 상단 헤더, 로그인, 주문서 화면에서 노출됩니다. --> <div webpb-banner-code="yua1" hidden> <div webpb-banner> <a href="/">{#pc_thumb_tag}</a> </div> </div> <!--//--> </div> <div class="topArea_statelog pc_view"> <div class="statelog"> <a href="/member/login.html" class="xans-element- xans-layout xans-layout-statelogoff ">로그인 </a> <a href="/member/join.html" class="xans-element- xans-layout xans-layout-statelogoff ">회원가입 </a> <a href="/myshop/order/list.html">주문조회</a> </div> </div> </div> <div class="inner inner__in"> <div class="site-wrap"> <div class="topArea_navigation"> <span class="logo"> <!-- 상단 로고 (스크롤시 노출) --> <!-- 상단 로고 영역 상단 헤더, 로그인, 주문서 화면에서 노출됩니다. --> <div webpb-banner-code="yua1" hidden> <div webpb-banner> <a href="/">{#pc_thumb_tag}</a> </div> </div> <!--//--> </span> <!-- 상단 메뉴 --> <div class="navigation_"> <div class="cate-swiper-container swiper-container"> <div class="cate-mask-left"></div> <div class="cate-mask-right"></div> <div class="xans-element- xans-layout xans-layout-category items swiper-wrapper"><div data-param="?cate_no=23" class="swiper-slide tm first xans-record-"> <a href="/product/list.html?cate_no=23" class="wp-cate">전제품</a> </div> <div data-param="?cate_no=42" class="swiper-slide tm xans-record-"> <a href="/product/list.html?cate_no=42" class="wp-cate">베스트</a> </div> <div data-param="?cate_no=43" class="swiper-slide tm xans-record-"> <a href="/product/list.html?cate_no=43" class="wp-cate">🎉올세일페스타 ~81%</a> </div> <div data-param="?cate_no=111" class="swiper-slide tm xans-record-"> <a href="/product/list.html?cate_no=111" class="wp-cate">👀100원 챌린지</a> </div> <div data-param="?cate_no=113" class="swiper-slide tm xans-record-"> <a href="/product/list.html?cate_no=113" class="wp-cate">1+1 득템찬스</a> </div> <div data-param="?cate_no=130" class="swiper-slide tm xans-record-"> <a href="/product/list.html?cate_no=130" class="wp-cate">추천SET</a> </div> <!--div class="swiper-slide tm"><a href="/timesale/" class="wp-cate">1+1득템찬스</a></div--> <div class="swiper-slide tm event"><a href="/board/gallery/list.html?board_no=8&amp;category_no=1" class="wp-cate">이벤트</a></div> <div class="swiper-slide tm"><a href="/membership.html" class="wp-cate">회원혜택</a></div> <div class="swiper-slide tm community"> <a href="/board/free/list.html?board_no=1" class="wp-cate">커뮤니티</a> <div class="sub-list boardlink"> <ul class="xans-element- xans-layout xans-layout-boardinfo"><li class="xans-record-"><a href="/board/free/list.html?board_no=1">공지사항</a></li> <li class="xans-record-"><a href="/board/product/list.html?board_no=6">상품 Q&A</a></li> <li class="xans-record-"><a href="/board/free/list.html?board_no=3">자주묻는 질문</a></li> </ul> </div> </div> <div class="swiper-slide tm"><a href="/brand/index.html" class="wp-cate">브랜드스토리</a></div> <!-- <div class="swiper-slide tm first"><a href="" class="wp-cate">전제품</a></div> <div class="swiper-slide tm"><a href="" class="wp-cate">베스트</a></div> <div class="swiper-slide tm"><a href="" class="wp-cate">NEW 잔티젠특가</a></div> <div class="swiper-slide tm"><a href="/brand/index.html" class="wp-cate">브랜드스토리</a></div> <div class="swiper-slide tm"><a href="/timesale/" class="wp-cate">타임특가</a></div> <div class="swiper-slide tm"><a href="/board/review/list.html?board_no=4" class="wp-cate">리뷰</a></div> <div class="swiper-slide tm"><a href="/board/gallery/list.html?board_no=8&category_no=1" class="wp-cate">이벤트</a></div> <div class="swiper-slide tm"><a href="/membership.html" class="wp-cate">멤버십</a></div> <div class="swiper-slide tm"><a href="/inquiry/index.html" class="wp-cate">제휴문의</a></div> --> <!-- 커뮤니티(게시판연동) --> <!-- <div class="swiper-slide tm"> <a href="/board/free/list.html?board_no=1" class="cate wp-cate">커뮤니티</a> <div class="sub-list boardlink"> <ul module="Layout_BoardInfo"> <li><a href="" ></a></li> <li><a href="" ></a></li> <li><a href="" ></a></li> </ul> </div> </div><!--//--> </div> </div> </div> <!--//--> <!-- 전체메뉴 버튼 --> <div class="menu_navi"> <a href="javascript:;" class="fold"><div class="fold-icon"><span class="line1"></span><span class="line2"></span><span class="line3"></span></div></a> </div> <!--//--> <!-- 검색 버튼 --> <div class="menu_search"> <a href="javascript:;"><img src="/skin_img/ico_head_search_000.svg" alt="상품검색">상품검색</a> </div> <!--//--> <!-- 장바구니 버튼 --> <div class="xans-element- xans-layout xans-layout-orderbasketcount menu_basket "><a href="/order/basket.html"><img src="/skin_img/ico_head_basket_000.svg" alt="장바구니">장바구니 <span class="count EC-Layout_Basket-count-display"><span class="EC-Layout-Basket-count">0</span></span></a> </div> <!--//--> <!-- 마이페이지 버튼 --> <div class="menu_user"> <a href="/myshop/index.html"><img src="/skin_img/ico_head_user_000.svg" alt="마이페이지">마이페이지</a> </div> <!--//--> </div> </div> <!-- 상품검색 화면 --> <div class="search-form"> <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 --> <div class="site-wrap"> <div class="tlt-search">SEARCH</div> <div class="search-box"> <fieldset> <input id="keyword" name="keyword" fw-filter="" fw-label="검색어" fw-msg="" class="inputTypeText" placeholder="" onmousedown="SEARCH_BANNER.clickSearchForm(this)" value="" type="text" /><button type="button" class="btnSearch"><img src="/skin_img/ico_head_search_000.svg" alt="검색"> 검색</button> <ul class="autoDrop" id=""></ul> </fieldset> <div class="search-dropbox"> <div class="xans-element- xans-search xans-search-hotkeyword"><h5>추천 검색어</h5> <p> <a href="/product/search.html?keyword=다이어트" class="xans-record-">다이어트</a> <a href="/product/search.html?keyword=유산균" class="xans-record-">유산균</a><a href="/product/search.html?keyword=그린세라" class="xans-record-">그린세라</a><a href="/product/search.html?keyword=노화방지" class="xans-record-">노화방지</a><a href="/product/search.html?keyword=잔티젠" class="xans-record-">잔티젠</a> </p> </div> </div> </div> <div class="bt-search-close"><a href="javascript:;"></a></div> </div> </div> </form> <div class="back-panel"></div> </div> <!--//--> <!-- 전체메뉴 화면--> <aside id="aside" class="xans-element- xans-layout xans-layout-slidepackage "><div class="back-panel"></div> <div class="aside_wrap"> <div class="btnClose"> <span class="line first"></span><span class="line second"></span> </div> <div class="site-wrap"> <!-- Mob화면에서만 노출 --> <div class="membership m_view"> <div class="btn_login"> <div class="xans-element- xans-layout xans-layout-statelogoff "><div class="txt_login"><a href="/member/login.html">로그인 해주세요.</a></div> <div class="bt_signUp"><a href="/member/login.html">로그인</a></div> <div class="bt_signIn"> <a href="/member/join.html">회원가입</a> <!-- 회원 혜택 플로팅 이미지 --> <div class="asideBenefitImg type1" webpb-banner-code="duwx" hidden> <!--div class="swiper-container"--> <div> <div class="swiper-wrapper"> <div class="swiper-slide" webpb-banner> <a href="%7B#link%7D" target="{#link_target}"> <!-- PC image --><div class="img pc_view">{#pc_thumb_tag}</div> <!-- M image --><div class="img m_view">{#m_thumb_tag}</div> </a> </div> </div> </div> </div> </div> </div> </div> <div class="sc_box"> <ul> <li><a href="/myshop/index.html"><span class="ico"><img src="/skin_img/icon_my_page.svg" alt=""></span>마이페이지</a></li> <li><a href="/myshop/order/list.html"><span class="ico"><img src="/skin_img/icon_my_order.svg" alt=""></span>주문조회</a></li> <li><a href="/product/recent_view_product.html"><span class="ico"><img src="/skin_img/icon_my_view.svg" alt=""></span>최근본상품</a></li> </ul></div> </div> <!-- //Mob화면에서만 노출 --> <div class="m_view"> <div class="all_menu_box"> <div id="slideCateList" class="categoryCont"> <ul class="xans-element- xans-layout xans-layout-category categoryList"><li class="tm xans-record-"> <a href="/product/list.html?cate_no=23">전제품</a> </li> <li class="tm xans-record-"> <a href="/product/list.html?cate_no=42">베스트</a> </li> <li class="tm xans-record-"> <a href="/product/list.html?cate_no=43">🎉올세일페스타 ~81%</a> </li> <li class="tm xans-record-"> <a href="/product/list.html?cate_no=111">👀100원 챌린지</a> </li> <li class="tm xans-record-"> <a href="/product/list.html?cate_no=113">1+1 득템찬스</a> </li> <li class="tm xans-record-"> <a href="/product/list.html?cate_no=130">추천SET</a> </li> <!--li class="tm"><a href="/timesale/">타임특가</a></li--> <li class="tm"><a href="/board/gallery/list.html?board_no=8&amp;category_no=1">이벤트</a></li> <li class="tm"><a href="/membership.html">회원혜택</a></li> <li class="tm"> <div class="commuCont"> <ul class="commuList"> <li> <a href="javascript:;" class="cateView">커뮤니티</a> <a href="#none" class="cate view toggle-cate" data-expand-target="bs-menu"></a> <ul style="display:none;" class="xans-element- xans-layout xans-layout-boardinfo bs-menu"><li class="xans-record-"><a href="/board/free/list.html?board_no=1" class="cate">공지사항</a></li> <li class="xans-record-"><a href="/board/product/list.html?board_no=6" class="cate">상품 Q&A</a></li> <li class="xans-record-"><a href="/board/free/list.html?board_no=3" class="cate">자주묻는 질문</a></li> </ul> </li> </ul> </div> </li> <li class="tm"><a href="/brand/index.html">브랜드스토리</a></li> </ul> </div> </div> <!-- 하단 롤링배너 --> <div class="asideBenefitImg type2" webpb-banner-code="06nt" hidden> <div class="swiper-container"> <div class="swiper-wrapper"> <div class="swiper-slide" webpb-banner> <a href="%7B#link%7D" target="{#link_target}"> <!-- PC image --><div class="img pc_view">{#pc_thumb_tag}</div> <!-- M image --><div class="img m_view">{#m_thumb_tag}</div> </a> </div> </div> </div> </div> </div> <!--//--> <!-- pc화면에서만 노출 --> <div class="all_menu_box pc_view"> <div id="slideCateList" class="categoryCont"> <ul class="categoryList"> <!-- 상품분류(관리자연동) --><li id="cate23" data-param="?cate_no=23" class="xans-element- xans-layout xans-layout-category xans-record-"><a href="/product/list.html?cate_no=23" class="cateView">전제품</a> <a href="#none" class="cate view toggle-cate" cate="?cate_no=23" data-expand-target="sub02_23"></a> </li> <li id="cate42" data-param="?cate_no=42" class="xans-element- xans-layout xans-layout-category xans-record-"><a href="/product/list.html?cate_no=42" class="cateView">베스트</a> <a href="#none" class="cate view toggle-cate" cate="?cate_no=42" data-expand-target="sub02_42"></a> </li> <li id="cate43" data-param="?cate_no=43" class="xans-element- xans-layout xans-layout-category xans-record-"><a href="/product/list.html?cate_no=43" class="cateView">🎉올세일페스타 ~81%</a> <a href="#none" class="cate view toggle-cate" cate="?cate_no=43" data-expand-target="sub02_43"></a> </li> <li id="cate111" data-param="?cate_no=111" class="xans-element- xans-layout xans-layout-category xans-record-"><a href="/product/list.html?cate_no=111" class="cateView">👀100원 챌린지</a> <a href="#none" class="cate view toggle-cate" cate="?cate_no=111" data-expand-target="sub02_111"></a> </li> <li id="cate113" data-param="?cate_no=113" class="xans-element- xans-layout xans-layout-category xans-record-"><a href="/product/list.html?cate_no=113" class="cateView">1+1 득템찬스</a> <a href="#none" class="cate view toggle-cate" cate="?cate_no=113" data-expand-target="sub02_113"></a> </li> <li id="cate130" data-param="?cate_no=130" class="xans-element- xans-layout xans-layout-category xans-record-"><a href="/product/list.html?cate_no=130" class="cateView">추천SET</a> <a href="#none" class="cate view toggle-cate" cate="?cate_no=130" data-expand-target="sub02_130"></a> </li> <!--//--> <!-- 상품분류(기획전연동) --> <!--//--> <!--li class="tm"><a href="/timesale/">타임특가</a></li--> <li class="tm event"><a href="/board/gallery/list.html?board_no=8&amp;category_no=1">이벤트</a></li> <li class="tm"><a href="/membership.html">회원혜택</a></li> <li class="tm"><a href="/brand/index.html">브랜드스토리</a></li> </ul> </div> <div class="commuCont"> <ul class="commuList"> <li> <a href="javascript:;" class="cateView">커뮤니티</a> <a href="#none" class="cate view toggle-cate" data-expand-target="bs-menu"></a> <ul style="display:none;" class="xans-element- xans-layout xans-layout-boardinfo bs-menu"><li class="xans-record-"><a href="/board/free/list.html?board_no=1" class="cate">공지사항</a></li> <li class="xans-record-"><a href="/board/product/list.html?board_no=6" class="cate">상품 Q&A</a></li> <li class="xans-record-"><a href="/board/free/list.html?board_no=3" class="cate">자주묻는 질문</a></li> </ul> </li> </ul> </div> <!-- pc화면에서만 노출 --> <div class="boardCont"> <div class="memberList pc_view"> <a href="/myshop/index.html" class="cateView">마이페이지</a> <ul> <li><a href="/member/modify.html">회원정보 수정</a></li> <li><a href="/myshop/mileage/historyList.html">적립금</a></li> <li><a href="/myshop/wish_list.html">관심상품</a></li> <li><a href="/product/recent_view_product.html">최근 본 상품</a></li> <li class="displaynone"><a href="/myshop/coupon/coupon.html">쿠폰</a></li> <li class="displaynone"><a href="/board/consult/list.html">1:1 맞춤상담</a></li> <li><a href="/myshop/addr/list.html">배송 주소록 관리</a></li> <li class="displaynone"><a href="/myshop/regular_delivery.html">정기배송 관리</a></li> <li class="displaynone"><a href="/myshop/board_list.html">나의 게시글</a></li> </ul> </div> <div class="loginList pc_view"> <ul class="xans-element- xans-layout xans-layout-statelogoff "><li><a href="/myshop/order/list.html">주문조회</a></li> <li><a href="/member/login.html">로그인</a></li> <li><a href="/member/join.html">회원가입</a></li> </ul> </div> <div class="bannerList"> <!-- <p module="Lidyout_giftBanner"><a href="/order/gift_list.html" class="giftBanner">고객사은품 안내</a></p> --> <!-- <p module="Layout_couponzoneBanner"><a href="/coupon/coupon_zone.html" class="couponzoneBanner">쿠폰존</a></p> --> </div> </div> <!-- //pc화면에서만 노출 --> </div> <!-- //pc화면에서만 노출 --> </div> <div class="loginState m_view"> <p><a href="/board/free/list.html?board_no=1">공지사항</a></p> <p><a href="/board/product/list.html?board_no=6">Q&amp;A</a></p> </div> </div> </aside> <!--//--></div> </header><main id="contents" role="main"><!-- ########################################################################################################################################################## [ W E B P U B L I C ] 이 쇼핑몰은 웹퍼블릭 서비스를 이용하고 있습니다. [ 대표전화 ] 0507-1316-9190 [ 홈페이지 ] https://webpublic.co.kr 디자인의 모든 저작권은 웹퍼블릭에 있으며, 1Copy 라이선스로 최초 적용된 쇼핑몰에서만 사용할 수 있습니다. ※ 웹퍼블릭 콘텐츠 라이선스 고지 ※ 🔹 본 사이트에 존재하는 모든 기술적 소스코드의 저작권은 오직 웹퍼블릭에 있습니다. 🔹 본 사이트에 존재하는 기술적 소스코드를 사용하거나 변형하여 활용하는 경우, 저작권법에 의거하여 법적 고지를 위반하는 것으로 판단합니다. 🔹 웹퍼블릭은 디자인 및 콘텐츠 보호를 최우선으로 하며, 민형사상의 조치를 취할 수 있습니다. ########################################################################################################################################################## --><!-- ✔️ 메인페이지 입니다. 🔅파일을 열 때는 아래 @import 영역에 마우스 오버 후 "[파일열기]" 를 클릭하세요. 🔅각 영역을 비노출할 경우 '@'를 삭제하고, 추후 사용시 다시 '@'를 넣어주시면 됩니다. 🔅배너이미지 교체 시 '웹퍼블릭 배너매니저'에서 교체해 주세요. --><!-- [🏞️ 배너] 메인 슬라이드 --><div class="index_ban_100 -wp-stand-by" webpb-banner-code="lo5z" hidden> <div class="swiper-container"> <div class="swiper-wrapper"> <div class="swiper-slide" webpb-banner> <a href="%7B#link%7D" target="{#link_target}"> <!-- PC image --><div class="img pc_view">{#pc_thumb_tag}</div> <!-- M image --><div class="img m_view">{#m_thumb_tag}</div> <div class="txt"> <span class="p1 animate__animated animate__fadeInUp80 animate__delay-200m animate__fast txt-small" style="color:{#color1};">{#text_1}</span> <span class="p2 animate__animated animate__fadeInUp80 animate__delay-300m animate__fast txt-big" style="color:{#color2};">{#text_2}</span> <span class="p3 animate__animated animate__fadeIn animate__delay-1s animate__fast txt-bt pc_view" style="color:{#color3};background-color:{#color4};">{#text_3}</span> </div> </a> </div> </div> <div class="swiper-pagination pagination"></div> <div class="swiper-button-next"></div> <div class="swiper-button-prev"></div> </div> </div> <!-- [🏞️ 배너] 인기 카테고리 --> <div class="index_ban_200"> <div class="mainTabMenu"> <ul class="list"><li>브랜드</li> <!-- <li>라이프</li> --> <!-- 라이프 탭 주석 처리 --> <li>건강·고민별</li> <!-- <li>기타</li> --> <!-- 기타 탭 주석 처리 --> </ul></div> <div class="mainTabCont"> <div class="site-wrap" webpb-banner-code="jgqr" hidden> <ul><li webpb-banner> <a href="%7B#link%7D" target="{#link_target}" data-attr="{#text_1}" style="color:{#color1};">{#pc_thumb_tag}</a> </li> <li webpb-banner> <a href="%7B#link%7D" target="{#link_target}" data-attr="{#text_1}" style="color:{#color1};">{#pc_thumb_tag}</a> </li> </ul></div> <!-- <div class="site-wrap" webpb-banner-code="8dxg" hidden> --> <!-- <ul> --> <!-- <li webpb-banner> --> <!-- <a href="{#link}" target="{#link_target}" data-attr="{#text_1}" style="color:{#color1};">{#pc_thumb_tag}</a> --> <!-- </li> --> <!-- <li webpb-banner> --> <!-- <a href="{#link}" target="{#link_target}" data-attr="{#text_1}" style="color:{#color1};">{#pc_thumb_tag}</a> --> <!-- </li> --> <!-- </ul> --> <!-- </div> --> <div class="site-wrap" webpb-banner-code="h9f9" hidden> <ul><li webpb-banner> <a href="%7B#link%7D" target="{#link_target}" data-attr="{#text_1}" style="color:{#color1};">{#pc_thumb_tag}</a> </li> <li webpb-banner> <a href="%7B#link%7D" target="{#link_target}" data-attr="{#text_1}" style="color:{#color1};">{#pc_thumb_tag}</a> </li> </ul></div> <!-- <div class="site-wrap" webpb-banner-code="845w" hidden> --> <!-- <ul> --> <!-- <li webpb-banner> --> <!-- <a href="{#link}" target="{#link_target}" data-attr="{#text_1}" style="color:{#color1};">{#pc_thumb_tag}</a> --> <!-- </li> --> <!-- <li webpb-banner> --> <!-- <a href="{#link}" target="{#link_target}" data-attr="{#text_1}" style="color:{#color1};">{#pc_thumb_tag}</a> --> <!-- </li> --> <!-- </ul> --> <!-- </div> --> </div> </div> <!-- [상품진열] ⏰ 타임특가 --> <!-- ✔️ 타임특가는 "관리자 > 프로모션 > 고객 혜택 관리" 와 연동됩니다. 메일로 전달해드린 매뉴얼의 "타임세일" 부분을 참고해주세요. --> <div data-root-margin="0px" data-threshold="0.1" data-is-loop="F" class="xans-element- xans-product xans-product-listmain-4 xans-product-listmain xans-product-4 index_prd_400 timesale-active wp-stand-by wp-effect"><div class="site-wrap"> <div class="productItem ec-base-product"> <div class="section-title animate__animated animate__fadeInUp animate__fast"> </div> <div class="swiper-container"> <!-- 🔅 옵션 설정 🔅 1. 상품진열 개수는 $count 의 숫자를 조정해주시면 됩니다. $count = 21 $basket_result = /product/add_basket.html $basket_option = /product/basket_option.html --> <h3 class="displaynone"> <!-- time icon --><!--img src="/skin_img/ico_time.svg"--> <span style="display: ;">1+1<p> 하나사면 하나더 득템찬스, 특별한 혜택으로 건강을 챙기세요!</p></span> <span style="display: none;"><img src="" alt="1+1<p> 하나사면 하나더 득템찬스, 특별한 혜택으로 건강을 챙기세요!</p>"></span> </h3> <ul class="prdList swiper-wrapper"> <li id="anchorBoxId_17" class="swiper-slide xans-record-"> <div class="prdList__item"> <div class="thumbnail"> <div class="prdImg"> <a href="/product/11-녹십자웰빙-프로비던스-100억-lgg-장건강-유산균-60캡슐/17/category/1/display/5/" name="anchorBoxName_17"><img src="//ecimg.cafe24img.com/pg1028b89924010001/earnestree/web/product/medium/20241128/48fda4e3a81c4d9b338cdb688d1a2f4c.jpg" id="eListPrdImage17_5" alt="녹십자웰빙 프로비던스 100억 LGG 유산균 60캡슐"></a> </div> <div class="color displaynone"> </div> <div class="iconarea"> <span class="ico2 "><img src="//ecimg.cafe24img.com/pg1028b89924010001/earnestree/web/upload/icon_202408091411014100.png" class="icon_img ec-product-listwishicon" alt="관심상품 등록 전" productno="17" categoryno="1" icon_status="off" login_status="T" individual-set="F" /></span> <span class="ico1 "><img src="//ecimg.cafe24img.com/pg1028b89924010001/earnestree/web/upload/icon_202408091410579600.png" onClick="category_add_basket('17','1', '5', 'A0000', false, '1', 'P000000R', 'A', 'F', '0');" alt="장바구니 담기" class="ec-admin-icon cart" /></span> </div> </div> <div class="description"> <span class="discount_rate" data-prod-custom="90000" data-prod-price="39900" data-sale-price=""></span> <span class="chk"><input type="checkbox" class="ProductCompareClass xECPCNO_17 displaynone"></span> <div class="name"> <a href="/product/11-녹십자웰빙-프로비던스-100억-lgg-장건강-유산균-60캡슐/17/category/1/display/5/" class=""><span class="title displaynone"><span style="font-size:17px;color:#000000;font-weight:bold;">상품명</span> :</span> <span style="font-size:17px;color:#000000;font-weight:bold;">[1+1] 녹십자웰빙 프로비던스 100억 LGG 장건강 유산균 60캡슐</span></a><div class="likeButton displaynone"><button type="button"><strong></strong></button></div> </div> <ul class="xans-element- xans-product xans-product-listitem-4 xans-product-listitem xans-product-4 spec"><li column_name="price_custom" class=" product_custom xans-record-"> <strong class="title displaynone"><span style="font-size:14px;color:#aaaaaa;">소비자가</span> :</strong> <span style="font-size:14px;color:#aaaaaa;text-decoration:line-through;">90,000원</span></li> <li column_name="product_price" class=" product_price xans-record-"> <strong class="title displaynone"><span style="font-size:16px;color:#000000;font-weight:bold;">판매가</span> :</strong> <span style="font-size:16px;color:#000000;font-weight:bold;">39,900원</span><span id="span_product_tax_type_text" style=""> </span></li> </ul> <!-- 배송기간/예정일 표시 <ul class="spec"> <li><strong class="title">배송기간 :</strong> 2일 ~ 3일 이내</li> <li><strong class="title">배송예정일 :</strong> 12/06 배송 예정</li> <li><strong class="title">배송예정일 :</strong> 12/07 배송 예정</li> </ul>--><div class="icon"> </div> <div class="option"></div> </div> </div> </li> <li id="anchorBoxId_28" class="swiper-slide xans-record-"> <div class="prdList__item"> <div class="thumbnail"> <div class="prdImg"> <a href="/product/11-녹십자웰빙-pnt-혈당케어-30정/28/category/1/display/5/" name="anchorBoxName_28"><img src="//ecimg.cafe24img.com/pg1028b89924010001/earnestree/web/product/medium/20241128/9165d5f1eb0ccac144a919b473eadcbe.jpg" id="eListPrdImage28_5" alt="녹십자웰빙 PNT 혈당케어 30정"></a> </div> <div class="color displaynone"> </div> <div class="iconarea"> <span class="ico2 "><img src="//ecimg.cafe24img.com/pg1028b89924010001/earnestree/web/upload/icon_202408091411014100.png" class="icon_img ec-product-listwishicon" alt="관심상품 등록 전" productno="28" categoryno="1" icon_status="off" login_status="T" individual-set="F" /></span> <span class="ico1 "><img src="//ecimg.cafe24img.com/pg1028b89924010001/earnestree/web/upload/icon_202408091410579600.png" onClick="category_add_basket('28','1', '5', 'A0000', false, '1', 'P00000BC', 'A', 'F', '0');" alt="장바구니 담기" class="ec-admin-icon cart" /></span> </div> </div> <div class="description"> <span class="discount_rate" data-prod-custom="48000" data-prod-price="18900" data-sale-price=""></span> <span class="chk"><input type="checkbox" class="ProductCompareClass xECPCNO_28 displaynone"></span> <div class="name"> <a href="/product/11-녹십자웰빙-pnt-혈당케어-30정/28/category/1/display/5/" class=""><span class="title displaynone"><span style="font-size:17px;color:#000000;font-weight:bold;">상품명</span> :</span> <span style="font-size:17px;color:#000000;font-weight:bold;">[1+1] 녹십자웰빙 PNT 혈당케어 30정</span></a><div class="likeButton displaynone"><button type="button"><strong></strong></button></div> </div> <ul class="xans-element- xans-product xans-product-listitem-4 xans-product-listitem xans-product-4 spec"><li column_name="price_custom" class=" product_custom xans-record-"> <strong class="title displaynone"><span style="font-size:14px;color:#aaaaaa;">소비자가</span> :</strong> <span style="font-size:14px;color:#aaaaaa;text-decoration:line-through;">48,000원</span></li> <li column_name="product_price" class=" product_price xans-record-"> <strong class="title displaynone"><span style="font-size:16px;color:#000000;font-weight:bold;">판매가</span> :</strong> <span style="font-size:16px;color:#000000;font-weight:bold;">18,900원</span><span id="span_product_tax_type_text" style=""> </span></li> </ul> <!-- 배송기간/예정일 표시 <ul class="spec"> <li><strong class="title">배송기간 :</strong> 2일 ~ 3일 이내</li> <li><strong class="title">배송예정일 :</strong> 12/06 배송 예정</li> <li><strong class="title">배송예정일 :</strong> 12/07 배송 예정</li> </ul>--><div class="icon"> </div> <div class="option"></div> </div> </div> </li> <li id="anchorBoxId_38" class="swiper-slide xans-record-"> <div class="prdList__item"> <div class="thumbnail"> <div class="prdImg"> <a href="/product/11-녹십자웰빙-pnt-밀크씨슬-30정/38/category/1/display/5/" name="anchorBoxName_38"><img src="//ecimg.cafe24img.com/pg1028b89924010001/earnestree/web/product/medium/20241128/3fdfaf615e90513d0c50af23418a05c7.jpg" id="eListPrdImage38_5" alt="녹십자웰빙 PNT 밀크씨슬 30정"></a> </div> <div class="color displaynone"> </div> <div class="iconarea"> <span class="ico2 "><img src="//ecimg.cafe24img.com/pg1028b89924010001/earnestree/web/upload/icon_202408091411014100.png" class="icon_img ec-product-listwishicon" alt="관심상품 등록 전" productno="38" categoryno="1" icon_status="off" login_status="T" individual-set="F" /></span> <span class="ico1 "><img src="//ecimg.cafe24img.com/pg1028b89924010001/earnestree/web/upload/icon_202408091410579600.png" onClick="category_add_basket('38','1', '5', 'A0000', false, '1', 'P00000BM', 'A', 'F', '0');" alt="장바구니 담기" class="ec-admin-icon cart" /></span> </div> </div> <div class="description"> <span class="discount_rate" data-prod-custom="48000" data-prod-price="18900" data-sale-price=""></span> <span class="chk"><input type="checkbox" class="ProductCompareClass xECPCNO_38 displaynone"></span> <div class="name"> <a href="/product/11-녹십자웰빙-pnt-밀크씨슬-30정/38/category/1/display/5/" class=""><span class="title displaynone"><span style="font-size:17px;color:#000000;font-weight:bold;">상품명</span> :</span> <span style="font-size:17px;color:#000000;font-weight:bold;">[1+1] 녹십자웰빙 PNT 밀크씨슬 30정</span></a><div class="likeButton displaynone"><button type="button"><strong></strong></button></div> </div> <ul class="xans-element- xans-product xans-product-listitem-4 xans-product-listitem xans-product-4 spec"><li column_name="price_custom" class=" product_custom xans-record-"> <strong class="title displaynone"><span style="font-size:14px;color:#aaaaaa;">소비자가</span> :</strong> <span style="font-size:14px;color:#aaaaaa;text-decoration:line-through;">48,000원</span></li> <li column_name="product_price" class=" product_price xans-record-"> <strong class="title displaynone"><span style="font-size:16px;color:#000000;font-weight:bold;">판매가</span> :</strong> <span style="font-size:16px;color:#000000;font-weight:bold;">18,900원</span><span id="span_product_tax_type_text" style=""> </span></li> </ul> <!-- 배송기간/예정일 표시 <ul class="spec"> <li><strong class="title">배송기간 :</strong> 2일 ~ 3일 이내</li> <li><strong class="title">배송예정일 :</strong> 12/06 배송 예정</li> <li><strong class="title">배송예정일 :</strong> 12/07 배송 예정</li> </ul>--><div class="icon"> </div> <div class="option"></div> </div> </div> </li> <li id="anchorBoxId_76" class="swiper-slide xans-record-"> <div class="prdList__item"> <div class="thumbnail"> <div class="prdImg"> <a href="/product/11-녹십자웰빙-pnt-비오틴-맥스-5000-60정/76/category/1/display/5/" name="anchorBoxName_76"><img src="//ecimg.cafe24img.com/pg1028b89924010001/earnestree/web/product/medium/20241128/09a995e271c2260dda4eeae8de559bdf.jpg" id="eListPrdImage76_5" alt="녹십자웰빙 PNT 비오틴 맥스 5000"></a> </div> <div class="color displaynone"> </div> <div class="iconarea"> <span class="ico2 "><img src="//ecimg.cafe24img.com/pg1028b89924010001/earnestree/web/upload/icon_202408091411014100.png" class="icon_img ec-product-listwishicon" alt="관심상품 등록 전" productno="76" categoryno="1" icon_status="off" login_status="T" individual-set="F" /></span> <span class="ico1 "><img src="//ecimg.cafe24img.com/pg1028b89924010001/earnestree/web/upload/icon_202408091410579600.png" onClick="category_add_basket('76','1', '5', 'A0000', false, '1', 'P00000CY', 'A', 'F', '0');" alt="장바구니 담기" class="ec-admin-icon cart" /></span> </div> </div> <div class="description"> <span class="discount_rate" data-prod-custom="60000" data-prod-price="26900" data-sale-price=""></span> <span class="chk"><input type="checkbox" class="ProductCompareClass xECPCNO_76 displaynone"></span> <div class="name"> <a href="/product/11-녹십자웰빙-pnt-비오틴-맥스-5000-60정/76/category/1/display/5/" class=""><span class="title displaynone"><span style="font-size:17px;color:#000000;font-weight:bold;">상품명</span> :</span> <span style="font-size:17px;color:#000000;font-weight:bold;">[1+1] 녹십자웰빙 PNT 비오틴 맥스 5000 60정</span></a><div class="likeButton displaynone"><button type="button"><strong></strong></button></div> </div> <ul class="xans-element- xans-product xans-product-listitem-4 xans-product-listitem xans-product-4 spec"><li column_name="price_custom" class=" product_custom xans-record-"> <strong class="title displaynone"><span style="font-size:14px;color:#aaaaaa;">소비자가</span> :</strong> <span style="font-size:14px;color:#aaaaaa;text-decoration:line-through;">60,000원</span></li> <li column_name="product_price" class=" product_price xans-record-"> <strong class="title displaynone"><span style="font-size:16px;color:#000000;font-weight:bold;">판매가</span> :</strong> <span style="font-size:16px;color:#000000;font-weight:bold;">26,900원</span><span id="span_product_tax_type_text" style=""> </span></li> </ul> <!-- 배송기간/예정일 표시 <ul class="spec"> <li><strong class="title">배송기간 :</strong> 2일 ~ 3일 이내</li> <li><strong class="title">배송예정일 :</strong> 12/06 배송 예정</li> <li><strong class="title">배송예정일 :</strong> 12/07 배송 예정</li> </ul>--><div class="icon"> </div> <div class="option"></div> </div> </div> </li> </ul> <div class="swiper-scrollbar"></div> </div> <div class="swiper-button-next"></div> <div class="swiper-button-prev"></div> </div> </div> </div> <!-- [상품진열] 베스트 --> <div class="index_prd_100 wp-effect" data-root-margin="0px" data-threshold="0.1" data-is-loop="F"> <div class="site-wrap"> <div class="xans-element- xans-product xans-product-listmain-1 xans-product-listmain xans-product-1 swiper-container productItem ec-base-product"><!-- 🔅 옵션 설정 🔅 1. 상품진열 개수는 $count 의 숫자를 조정해주시면 됩니다. 2. 모바일 모드에서 "더보기" 를 사용하지 않으려면 $moreview를 no로 변경합니다. 3. "더보기" 로 노출된 상품 목록까지 브라우저가 기억하고자 하신다면 $cache 부분을 yes로 변경하세요. (새로고침을 해도 마지막으로 본 영역까지 노출됩니다.) $count = 200 $basket_result = /product/add_basket.html $basket_option = /product/basket_option.html --> <div class="section-title animate__animated animate__fadeInUp animate__fast"> <h3> <span style="display: ;">BEST <p>녹십자웰빙의 가장 많이 팔린 베스트셀러 제품 모음</p></span> <span style="display: none;"><img src="" alt="BEST <p>녹십자웰빙의 가장 많이 팔린 베스트셀러 제품 모음</p>"></span> </h3> </div> <ul class="prdList grid4 m_grid2 swiper-wrapper"> <li id="anchorBoxId_70" class="swiper-slide xans-record-"> <div class="prdList__item"> <div class="thumbnail"> <div class="prdImg"> <a href="/product/올세페녹십자웰빙-pnt-스페르미딘-60정2개월분/70/category/1/display/2/" name="anchorBoxName_70"><img src="//ecimg.cafe24img.com/pg1028b89924010001/earnestree/web/product/medium/20241203/caa53cd41192e5614baaba9bed749d14.jpg" id="eListPrdImage70_2" alt="녹십자웰빙 PNT 스페르미딘 60정(2개월분)"></a> </div> <div class="color displaynone"> </div> <div class="iconarea"> <span class="ico2 "><img src="//ecimg.cafe24img.com/pg1028b89924010001/earnestree/web/upload/icon_202408091411014100.png" class="icon_img ec-product-listwishicon" alt="관심상품 등록 전" productno="70" categoryno="1" icon_status="off" login_status="T" individual-set="F" /></span> <span class="ico1 "><img src="//ecimg.cafe24img.com/pg1028b89924010001/earnestree/web/upload/icon_202408091410579600.png" onClick="CAPP_SHOP_NEW_PRODUCT_OPTIONSELECT.selectOptionCommon(70, 1, 'basket', '')" alt="장바구니 담기" class="ec-admin-icon cart" /></span> </div> </div> <div class="description"> <span class="discount_rate" data-prod-custom="55000" data-prod-price="43900" data-sale-price=""></span> <span class="chk"><input type="checkbox" class="ProductCompareClass xECPCNO_70 displaynone"></span> <div class="name"> <a href="/product/올세페녹십자웰빙-pnt-스페르미딘-60정2개월분/70/category/1/display/2/" class=""><span class="title displaynone"><span style="font-size:17px;color:#000000;font-weight:bold;">상품명</span> :</span> <span style="font-size:17px;color:#000000;font-weight:bold;">[올세페]녹십자웰빙 PNT 스페르미딘 60정(2개월분)</span></a><div class="likeButton displaynone"><button type="button"><strong></strong></button></div> </div> <ul class="xans-element- xans-product xans-product-listitem-1 xans-product-listitem xans-product-1 spec"><li column_name="price_custom" class=" product_custom xans-record-"> <strong class="title displaynone"><span style="font-size:14px;color:#999999;">소비자가</span> :</strong> <span style="font-size:14px;color:#999999;text-decoration:line-through;">55,000원</span></li> <li column_name="product_price" class=" product_price xans-record-"> <strong class="title displaynone"><span style="font-size:16px;color:#000000;font-weight:bold;">판매가</span> :</strong> <span style="font-size:16px;color:#000000;font-weight:bold;">43,900원</span><span id="span_product_tax_type_text" style=""> </span></li> </ul> <!-- 배송기간/예정일 표시 <ul class="spec"> <li><strong class="title">배송기간 :</strong> 2일 ~ 3일 이내</li> <li><strong class="title">배송예정일 :</strong> 12/06 배송 예정</li> <li><strong class="title">배송예정일 :</strong> 12/07 배송 예정</li> </ul>--><div class="icon"> </div> <div class="option"></div> </div> </div> </li> <li id="anchorBoxId_25" class="swiper-slide xans-record-"> <div class="prdList__item"> <div class="thumbnail"> <div class="prdImg"> <a href="/product/올세페녹십자웰빙-두뇌엔-ps-포스파티딜세린-60캡슐/25/category/1/display/2/" name="anchorBoxName_25"><img src="//ecimg.cafe24img.com/pg1028b89924010001/earnestree/web/product/medium/20241203/2074ba77178ac75459ddd84f01f9b257.jpg" id="eListPrdImage25_2" alt="녹십자웰빙 두뇌엔 PS 포스파티딜세린 60캡슐"></a> </div> <div class="color displaynone"> </div> <div class="iconarea"> <span class="ico2 "><img src="//ecimg.cafe24img.com/pg1028b89924010001/earnestree/web/upload/icon_202408091411014100.png" class="icon_img ec-product-listwishicon" alt="관심상품 등록 전" productno="25" categoryno="1" icon_status="off" login_status="T" individual-set="F" /></span> <span class="ico1 "><img src="//ecimg.cafe24img.com/pg1028b89924010001/earnestree/web/upload/icon_202408091410579600.png" onClick="CAPP_SHOP_NEW_PRODUCT_OPTIONSELECT.selectOptionCommon(25, 1, 'basket', '')" alt="장바구니 담기" class="ec-admin-icon cart" /></span> </div> </div> <div class="description"> <span class="discount_rate" data-prod-custom="80000" data-prod-price="41900" data-sale-price=""></span> <span class="chk"><input type="checkbox" class="ProductCompareClass xECPCNO_25 displaynone"></span> <div class="name"> <a href="/product/올세페녹십자웰빙-두뇌엔-ps-포스파티딜세린-60캡슐/25/category/1/display/2/" class=""><span class="title displaynone"><span style="font-size:17px;color:#000000;font-weight:bold;">상품명</span> :</span> <span style="font-size:17px;color:#000000;font-weight:bold;">[올세페]녹십자웰빙 두뇌엔 PS 포스파티딜세린 60캡슐</span></a><div class="likeButton displaynone"><button type="button"><strong></strong></button></div> </div> <ul class="xans-element- xans-product xans-product-listitem-1 xans-product-listitem xans-product-1 spec"><li column_name="price_custom" class=" product_custom xans-record-"> <strong class="title displaynone"><span style="font-size:14px;color:#999999;">소비자가</span> :</strong> <span style="font-size:14px;color:#999999;text-decoration:line-through;">80,000원</span></li> <li column_name="product_price" class=" product_price xans-record-"> <strong class="title displaynone"><span style="font-size:16px;color:#000000;font-weight:bold;">판매가</span> :</strong> <span style="font-size:16px;color:#000000;font-weight:bold;">41,900원</span><span id="span_product_tax_type_text" style=""> </span></li> </ul> <!-- 배송기간/예정일 표시 <ul class="spec"> <li><strong class="title">배송기간 :</strong> 2일 ~ 3일 이내</li> <li><strong class="title">배송예정일 :</strong> 12/06 배송 예정</li> <li><strong class="title">배송예정일 :</strong> 12/07 배송 예정</li> </ul>--><div class="icon"> </div> <div class="option"></div> </div> </div> </li> <li id="anchorBoxId_21" class="swiper-slide xans-record-"> <div class="prdList__item"> <div class="thumbnail"> <div class="prdImg"> <a href="/product/올세페녹십자웰빙-위건강엔-그린세라-30포-2박스/21/category/1/display/2/" name="anchorBoxName_21"><img src="//ecimg.cafe24img.com/pg1028b89924010001/earnestree/web/product/medium/20241129/eea82c9dd7f72337d70f204baa053b0d.jpg" id="eListPrdImage21_2" alt="녹십자웰빙 위건강엔 그린세라 30포"></a> </div> <div class="color displaynone"> </div> <div class="iconarea"> <span class="ico2 "><img src="//ecimg.cafe24img.com/pg1028b89924010001/earnestree/web/upload/icon_202408091411014100.png" class="icon_img ec-product-listwishicon" alt="관심상품 등록 전" productno="21" categoryno="1" icon_status="off" login_status="T" individual-set="F" /></span> <span class="ico1 "><img src="//ecimg.cafe24img.com/pg1028b89924010001/earnestree/web/upload/icon_202408091410579600.png" onClick="category_add_basket('21','1', '2', 'A0000', false, '1', 'P000000V', 'A', 'F', '0');" alt="장바구니 담기" class="ec-admin-icon cart" /></span> </div> </div> <div class="description"> <span class="discount_rate" data-prod-custom="110000" data-prod-price="47900" data-sale-price=""></span> <span class="chk"><input type="checkbox" class="ProductCompareClass xECPCNO_21 displaynone"></span> <div class="name"> <a href="/product/올세페녹십자웰빙-위건강엔-그린세라-30포-2박스/21/category/1/display/2/" class=""><span class="title displaynone"><span style="font-size:17px;color:#000000;font-weight:bold;">상품명</span> :</span> <span style="font-size:17px;color:#000000;font-weight:bold;">[올세페]녹십자웰빙 위건강엔 그린세라 30포 2박스</span></a><div class="likeButton displaynone"><button type="button"><strong></strong></button></div> </div> <ul class="xans-element- xans-product xans-product-listitem-1 xans-product-listitem xans-product-1 spec"><li column_name="price_custom" class=" product_custom xans-record-"> <strong class="title displaynone"><span style="font-size:14px;color:#999999;">소비자가</span> :</strong> <span style="font-size:14px;color:#999999;text-decoration:line-through;">110,000원</span></li> <li column_name="product_price" class=" product_price xans-record-"> <strong class="title displaynone"><span style="font-size:16px;color:#000000;font-weight:bold;">판매가</span> :</strong> <span style="font-size:16px;color:#000000;font-weight:bold;">47,900원</span><span id="span_product_tax_type_text" style=""> </span></li> </ul> <!-- 배송기간/예정일 표시 <ul class="spec"> <li><strong class="title">배송기간 :</strong> 2일 ~ 3일 이내</li> <li><strong class="title">배송예정일 :</strong> 12/06 배송 예정</li> <li><strong class="title">배송예정일 :</strong> 12/07 배송 예정</li> </ul>--><div class="icon"> </div> <div class="option"></div> </div> </div> </li> <li id="anchorBoxId_63" class="swiper-slide xans-record-"> <div class="prdList__item"> <div class="thumbnail"> <div class="prdImg"> <a href="/product/올세페녹십자웰빙-프로비던스-메타-프로바이오틱스-30포-3박스/63/category/1/display/2/" name="anchorBoxName_63"><img src="//ecimg.cafe24img.com/pg1028b89924010001/earnestree/web/product/medium/20241129/af386cbd239de981ba4a3757ba24b16a.jpg" id="eListPrdImage63_2" alt="녹십자웰빙 프로비던스 메타 프로바이오틱스"></a> </div> <div class="color displaynone"> </div> <div class="iconarea"> <span class="ico2 "><img src="//ecimg.cafe24img.com/pg1028b89924010001/earnestree/web/upload/icon_202408091411014100.png" class="icon_img ec-product-listwishicon" alt="관심상품 등록 전" productno="63" categoryno="1" icon_status="off" login_status="T" individual-set="F" /></span> <span class="ico1 "><img src="//ecimg.cafe24img.com/pg1028b89924010001/earnestree/web/upload/icon_202408091410579600.png" onClick="category_add_basket('63','1', '2', 'A0000', false, '1', 'P00000CL', 'A', 'F', '0');" alt="장바구니 담기" class="ec-admin-icon cart" /></span> </div> </div> <div class="description"> <span class="discount_rate" data-prod-custom="135000" data-prod-price="39900" data-sale-price=""></span> <span class="chk"><input type="checkbox" class="ProductCompareClass xECPCNO_63 displaynone"></span> <div class="name"> <a href="/product/올세페녹십자웰빙-프로비던스-메타-프로바이오틱스-30포-3박스/63/category/1/display/2/" class=""><span class="title displaynone"><span style="font-size:17px;color:#000000;font-weight:bold;">상품명</span> :</span> <span style="font-size:17px;color:#000000;font-weight:bold;">[올세페]녹십자웰빙 프로비던스 메타 프로바이오틱스 30포 3박스</span></a><div class="likeButton displaynone"><button type="button"><strong></strong></button></div> </div> <ul class="xans-element- xans-product xans-product-listitem-1 xans-product-listitem xans-product-1 spec"><li column_name="price_custom" class=" product_custom xans-record-"> <strong class="title displaynone"><span style="font-size:14px;color:#999999;">소비자가</span> :</strong> <span style="font-size:14px;color:#999999;text-decoration:line-through;">135,000원</span></li> <li column_name="product_price" class=" product_price xans-record-"> <strong class="title displaynone"><span style="font-size:16px;color:#000000;font-weight:bold;">판매가</span> :</strong> <span style="font-size:16px;color:#000000;font-weight:bold;">39,900원</span><span id="span_product_tax_type_text" style=""> </span></li> </ul> <!-- 배송기간/예정일 표시 <ul class="spec"> <li><strong class="title">배송기간 :</strong> 2일 ~ 3일 이내</li> <li><strong class="title">배송예정일 :</strong> 12/06 배송 예정</li> <li><strong class="title">배송예정일 :</strong> 12/07 배송 예정</li> </ul>--><div class="icon"> </div> <div class="option"></div> </div> </div> </li> <li id="anchorBoxId_17" class="swiper-slide xans-record-"> <div class="prdList__item"> <div class="thumbnail"> <div class="prdImg"> <a href="/product/11-녹십자웰빙-프로비던스-100억-lgg-장건강-유산균-60캡슐/17/category/1/display/2/" name="anchorBoxName_17"><img src="//ecimg.cafe24img.com/pg1028b89924010001/earnestree/web/product/medium/20241128/48fda4e3a81c4d9b338cdb688d1a2f4c.jpg" id="eListPrdImage17_2" alt="녹십자웰빙 프로비던스 100억 LGG 유산균 60캡슐"></a> </div> <div class="color displaynone"> </div> <div class="iconarea"> <span class="ico2 "><img src="//ecimg.cafe24img.com/pg1028b89924010001/earnestree/web/upload/icon_202408091411014100.png" class="icon_img ec-product-listwishicon" alt="관심상품 등록 전" productno="17" categoryno="1" icon_status="off" login_status="T" individual-set="F" /></span> <span class="ico1 "><img src="//ecimg.cafe24img.com/pg1028b89924010001/earnestree/web/upload/icon_202408091410579600.png" onClick="category_add_basket('17','1', '2', 'A0000', false, '1', 'P000000R', 'A', 'F', '0');" alt="장바구니 담기" class="ec-admin-icon cart" /></span> </div> </div> <div class="description"> <span class="discount_rate" data-prod-custom="90000" data-prod-price="39900" data-sale-price=""></span> <span class="chk"><input type="checkbox" class="ProductCompareClass xECPCNO_17 displaynone"></span> <div class="name"> <a href="/product/11-녹십자웰빙-프로비던스-100억-lgg-장건강-유산균-60캡슐/17/category/1/display/2/" class=""><span class="title displaynone"><span style="font-size:17px;color:#000000;font-weight:bold;">상품명</span> :</span> <span style="font-size:17px;color:#000000;font-weight:bold;">[1+1] 녹십자웰빙 프로비던스 100억 LGG 장건강 유산균 60캡슐</span></a><div class="likeButton displaynone"><button type="button"><strong></strong></button></div> </div> <ul class="xans-element- xans-product xans-product-listitem-1 xans-product-listitem xans-product-1 spec"><li column_name="price_custom" class=" product_custom xans-record-"> <strong class="title displaynone"><span style="font-size:14px;color:#999999;">소비자가</span> :</strong> <span style="font-size:14px;color:#999999;text-decoration:line-through;">90,000원</span></li> <li column_name="product_price" class=" product_price xans-record-"> <strong class="title displaynone"><span style="font-size:16px;color:#000000;font-weight:bold;">판매가</span> :</strong> <span style="font-size:16px;color:#000000;font-weight:bold;">39,900원</span><span id="span_product_tax_type_text" style=""> </span></li> </ul> <!-- 배송기간/예정일 표시 <ul class="spec"> <li><strong class="title">배송기간 :</strong> 2일 ~ 3일 이내</li> <li><strong class="title">배송예정일 :</strong> 12/06 배송 예정</li> <li><strong class="title">배송예정일 :</strong> 12/07 배송 예정</li> </ul>--><div class="icon"> </div> <div class="option"></div> </div> </div> </li> <li id="anchorBoxId_28" class="swiper-slide xans-record-"> <div class="prdList__item"> <div class="thumbnail"> <div class="prdImg"> <a href="/product/11-녹십자웰빙-pnt-혈당케어-30정/28/category/1/display/2/" name="anchorBoxName_28"><img src="//ecimg.cafe24img.com/pg1028b89924010001/earnestree/web/product/medium/20241128/9165d5f1eb0ccac144a919b473eadcbe.jpg" id="eListPrdImage28_2" alt="녹십자웰빙 PNT 혈당케어 30정"></a> </div> <div class="color displaynone"> </div> <div class="iconarea"> <span class="ico2 "><img src="//ecimg.cafe24img.com/pg1028b89924010001/earnestree/web/upload/icon_202408091411014100.png" class="icon_img ec-product-listwishicon" alt="관심상품 등록 전" productno="28" categoryno="1" icon_status="off" login_status="T" individual-set="F" /></span> <span class="ico1 "><img src="//ecimg.cafe24img.com/pg1028b89924010001/earnestree/web/upload/icon_202408091410579600.png" onClick="category_add_basket('28','1', '2', 'A0000', false, '1', 'P00000BC', 'A', 'F', '0');" alt="장바구니 담기" class="ec-admin-icon cart" /></span> </div> </div> <div class="description"> <span class="discount_rate" data-prod-custom="48000" data-prod-price="18900" data-sale-price=""></span> <span class="chk"><input type="checkbox" class="ProductCompareClass xECPCNO_28 displaynone"></span> <div class="name"> <a href="/product/11-녹십자웰빙-pnt-혈당케어-30정/28/category/1/display/2/" class=""><span class="title displaynone"><span style="font-size:17px;color:#000000;font-weight:bold;">상품명</span> :</span> <span style="font-size:17px;color:#000000;font-weight:bold;">[1+1] 녹십자웰빙 PNT 혈당케어 30정</span></a><div class="likeButton displaynone"><button type="button"><strong></strong></button></div> </div> <ul class="xans-element- xans-product xans-product-listitem-1 xans-product-listitem xans-product-1 spec"><li column_name="price_custom" class=" product_custom xans-record-"> <strong class="title displaynone"><span style="font-size:14px;color:#999999;">소비자가</span> :</strong> <span style="font-size:14px;color:#999999;text-decoration:line-through;">48,000원</span></li> <li column_name="product_price" class=" product_price xans-record-"> <strong class="title displaynone"><span style="font-size:16px;color:#000000;font-weight:bold;">판매가</span> :</strong> <span style="font-size:16px;color:#000000;font-weight:bold;">18,900원</span><span id="span_product_tax_type_text" style=""> </span></li> </ul> <!-- 배송기간/예정일 표시 <ul class="spec"> <li><strong class="title">배송기간 :</strong> 2일 ~ 3일 이내</li> <li><strong class="title">배송예정일 :</strong> 12/06 배송 예정</li> <li><strong class="title">배송예정일 :</strong> 12/07 배송 예정</li> </ul>--><div class="icon"> </div> <div class="option"></div> </div> </div> </li> <li id="anchorBoxId_46" class="swiper-slide xans-record-"> <div class="prdList__item"> <div class="thumbnail"> <div class="prdImg"> <a href="/product/올세페네이처스웨이-키즈-유산균-초코볼-50개/46/category/1/display/2/" name="anchorBoxName_46"><img src="//ecimg.cafe24img.com/pg1028b89924010001/earnestree/web/product/medium/20241129/554efa178e641b6f7b0261e5a589b79d.jpg" id="eListPrdImage46_2" alt="네이처스웨이 키즈 유산균 초코볼 50개"></a> </div> <div class="color displaynone"> </div> <div class="iconarea"> <span class="ico2 "><img src="//ecimg.cafe24img.com/pg1028b89924010001/earnestree/web/upload/icon_202408091411014100.png" class="icon_img ec-product-listwishicon" alt="관심상품 등록 전" productno="46" categoryno="1" icon_status="off" login_status="T" individual-set="F" /></span> <span class="ico1 "><img src="//ecimg.cafe24img.com/pg1028b89924010001/earnestree/web/upload/icon_202408091410579600.png" onClick="CAPP_SHOP_NEW_PRODUCT_OPTIONSELECT.selectOptionCommon(46, 1, 'basket', '')" alt="장바구니 담기" class="ec-admin-icon cart" /></span> </div> </div> <div class="description"> <span class="discount_rate" data-prod-custom="32000" data-prod-price="20900" data-sale-price=""></span> <span class="chk"><input type="checkbox" class="ProductCompareClass xECPCNO_46 displaynone"></span> <div class="name"> <a href="/product/올세페네이처스웨이-키즈-유산균-초코볼-50개/46/category/1/display/2/" class=""><span class="title displaynone"><span style="font-size:17px;color:#000000;font-weight:bold;">상품명</span> :</span> <span style="font-size:17px;color:#000000;font-weight:bold;">[올세페]네이처스웨이 키즈 유산균 초코볼 50개</span></a><div class="likeButton displaynone"><button type="button"><strong></strong></button></div> </div> <ul class="xans-element- xans-product xans-product-listitem-1 xans-product-listitem xans-product-1 spec"><li column_name="price_custom" class=" product_custom xans-record-"> <strong class="title displaynone"><span style="font-size:14px;color:#999999;">소비자가</span> :</strong> <span style="font-size:14px;color:#999999;text-decoration:line-through;">32,000원</span></li> <li column_name="product_price" class=" product_price xans-record-"> <strong class="title displaynone"><span style="font-size:16px;color:#000000;font-weight:bold;">판매가</span> :</strong> <span style="font-size:16px;color:#000000;font-weight:bold;">20,900원</span><span id="span_product_tax_type_text" style=""> </span></li> </ul> <!-- 배송기간/예정일 표시 <ul class="spec"> <li><strong class="title">배송기간 :</strong> 2일 ~ 3일 이내</li> <li><strong class="title">배송예정일 :</strong> 12/06 배송 예정</li> <li><strong class="title">배송예정일 :</strong> 12/07 배송 예정</li> </ul>--><div class="icon"> </div> <div class="option"></div> </div> </div> </li> <li id="anchorBoxId_43" class="swiper-slide xans-record-"> <div class="prdList__item"> <div class="thumbnail"> <div class="prdImg"> <a href="/product/올세페네이처스웨이-키즈-비타구미-멀티비타민-70구미/43/category/1/display/2/" name="anchorBoxName_43"><img src="//ecimg.cafe24img.com/pg1028b89924010001/earnestree/web/product/medium/20241129/e0eda59132045eae8a46b222d6391ee3.jpg" id="eListPrdImage43_2" alt="네이처스웨이 키즈 비타구미 멀티비타민 70구미"></a> </div> <div class="color displaynone"> </div> <div class="iconarea"> <span class="ico2 "><img src="//ecimg.cafe24img.com/pg1028b89924010001/earnestree/web/upload/icon_202408091411014100.png" class="icon_img ec-product-listwishicon" alt="관심상품 등록 전" productno="43" categoryno="1" icon_status="off" login_status="T" individual-set="F" /></span> <span class="ico1 "><img src="//ecimg.cafe24img.com/pg1028b89924010001/earnestree/web/upload/icon_202408091410579600.png" onClick="CAPP_SHOP_NEW_PRODUCT_OPTIONSELECT.selectOptionCommon(43, 1, 'basket', '')" alt="장바구니 담기" class="ec-admin-icon cart" /></span> </div> </div> <div class="description"> <span class="discount_rate" data-prod-custom="24000" data-prod-price="19900" data-sale-price=""></span> <span class="chk"><input type="checkbox" class="ProductCompareClass xECPCNO_43 displaynone"></span> <div class="name"> <a href="/product/올세페네이처스웨이-키즈-비타구미-멀티비타민-70구미/43/category/1/display/2/" class=""><span class="title displaynone"><span style="font-size:17px;color:#000000;font-weight:bold;">상품명</span> :</span> <span style="font-size:17px;color:#000000;font-weight:bold;">[올세페]네이처스웨이 키즈 비타구미 멀티비타민 70구미</span></a><div class="likeButton displaynone"><button type="button"><strong></strong></button></div> </div> <ul class="xans-element- xans-product xans-product-listitem-1 xans-product-listitem xans-product-1 spec"><li column_name="price_custom" class=" product_custom xans-record-"> <strong class="title displaynone"><span style="font-size:14px;color:#999999;">소비자가</span> :</strong> <span style="font-size:14px;color:#999999;text-decoration:line-through;">24,000원</span></li> <li column_name="product_price" class=" product_price xans-record-"> <strong class="title displaynone"><span style="font-size:16px;color:#000000;font-weight:bold;">판매가</span> :</strong> <span style="font-size:16px;color:#000000;font-weight:bold;">19,900원</span><span id="span_product_tax_type_text" style=""> </span></li> </ul> <!-- 배송기간/예정일 표시 <ul class="spec"> <li><strong class="title">배송기간 :</strong> 2일 ~ 3일 이내</li> <li><strong class="title">배송예정일 :</strong> 12/06 배송 예정</li> <li><strong class="title">배송예정일 :</strong> 12/07 배송 예정</li> </ul>--><div class="icon"> </div> <div class="option"></div> </div> </div> </li> <li id="anchorBoxId_50" class="swiper-slide xans-record-"> <div class="prdList__item"> <div class="thumbnail"> <div class="prdImg"> <a href="/product/올세페네이처스웨이-비타구미-비타민d3-1000iu-140구미/50/category/1/display/2/" name="anchorBoxName_50"><img src="//ecimg.cafe24img.com/pg1028b89924010001/earnestree/web/product/medium/20241129/9462275709f79eb587f46a3fef274613.jpg" id="eListPrdImage50_2" alt="네이처스웨이 비타구미 비타민D3 1000IU 140구미"></a> </div> <div class="color displaynone"> </div> <div class="iconarea"> <span class="ico2 "><img src="//ecimg.cafe24img.com/pg1028b89924010001/earnestree/web/upload/icon_202408091411014100.png" class="icon_img ec-product-listwishicon" alt="관심상품 등록 전" productno="50" categoryno="1" icon_status="off" login_status="T" individual-set="F" /></span> <span class="ico1 "><img src="//ecimg.cafe24img.com/pg1028b89924010001/earnestree/web/upload/icon_202408091410579600.png" onClick="CAPP_SHOP_NEW_PRODUCT_OPTIONSELECT.selectOptionCommon(50, 1, 'basket', '')" alt="장바구니 담기" class="ec-admin-icon cart" /></span> </div> </div> <div class="description"> <span class="discount_rate" data-prod-custom="45000" data-prod-price="38000" data-sale-price=""></span> <span class="chk"><input type="checkbox" class="ProductCompareClass xECPCNO_50 displaynone"></span> <div class="name"> <a href="/product/올세페네이처스웨이-비타구미-비타민d3-1000iu-140구미/50/category/1/display/2/" class=""><span class="title displaynone"><span style="font-size:17px;color:#000000;font-weight:bold;">상품명</span> :</span> <span style="font-size:17px;color:#000000;font-weight:bold;">[올세페]네이처스웨이 비타구미 비타민D3 1000IU 140구미</span></a><div class="likeButton displaynone"><button type="button"><strong></strong></button></div> </div> <ul class="xans-element- xans-product xans-product-listitem-1 xans-product-listitem xans-product-1 spec"><li column_name="price_custom" class=" product_custom xans-record-"> <strong class="title displaynone"><span style="font-size:14px;color:#999999;">소비자가</span> :</strong> <span style="font-size:14px;color:#999999;text-decoration:line-through;">45,000원</span></li> <li column_name="product_price" class=" product_price xans-record-"> <strong class="title displaynone"><span style="font-size:16px;color:#000000;font-weight:bold;">판매가</span> :</strong> <span style="font-size:16px;color:#000000;font-weight:bold;">38,000원</span><span id="span_product_tax_type_text" style=""> </span></li> </ul> <!-- 배송기간/예정일 표시 <ul class="spec"> <li><strong class="title">배송기간 :</strong> 2일 ~ 3일 이내</li> <li><strong class="title">배송예정일 :</strong> 12/06 배송 예정</li> <li><strong class="title">배송예정일 :</strong> 12/07 배송 예정</li> </ul>--><div class="icon"> </div> <div class="option"></div> </div> </div> </li> <li id="anchorBoxId_31" class="swiper-slide xans-record-"> <div class="prdList__item"> <div class="thumbnail"> <div class="prdImg"> <a href="/product/녹십자웰빙-pnt-액상-마그네슘-30포/31/category/1/display/2/" name="anchorBoxName_31"><img src="//ecimg.cafe24img.com/pg1028b89924010001/earnestree/web/product/medium/20241129/c149094be13942069a489d8d545a4a32.jpg" id="eListPrdImage31_2" alt="녹십자웰빙 PNT 액상 마그네슘 30포"></a> </div> <div class="color displaynone"> </div> <div class="iconarea"> <span class="ico2 "><img src="//ecimg.cafe24img.com/pg1028b89924010001/earnestree/web/upload/icon_202408091411014100.png" class="icon_img ec-product-listwishicon" alt="관심상품 등록 전" productno="31" categoryno="1" icon_status="off" login_status="T" individual-set="F" /></span> <span class="ico1 displaynone"></span> </div> </div> <div class="description"> <span class="discount_rate" data-prod-custom="40000" data-prod-price="29900" data-sale-price=""></span> <span class="chk"><input type="checkbox" class="ProductCompareClass xECPCNO_31 displaynone"></span> <div class="name"> <a href="/product/녹십자웰빙-pnt-액상-마그네슘-30포/31/category/1/display/2/" class=""><span class="title displaynone"><span style="font-size:17px;color:#000000;font-weight:bold;">상품명</span> :</span> <span style="font-size:17px;color:#000000;font-weight:bold;">녹십자웰빙 PNT 액상 마그네슘 30포</span></a><div class="likeButton displaynone"><button type="button"><strong></strong></button></div> </div> <ul class="xans-element- xans-product xans-product-listitem-1 xans-product-listitem xans-product-1 spec"><li column_name="price_custom" class=" product_custom xans-record-"> <strong class="title displaynone"><span style="font-size:14px;color:#999999;">소비자가</span> :</strong> <span style="font-size:14px;color:#999999;text-decoration:line-through;">40,000원</span></li> <li column_name="product_price" class=" product_price xans-record-"> <strong class="title displaynone"><span style="font-size:16px;color:#000000;font-weight:bold;">판매가</span> :</strong> <span style="font-size:16px;color:#000000;font-weight:bold;">29,900원</span><span id="span_product_tax_type_text" style=""> </span></li> </ul> <!-- 배송기간/예정일 표시 <ul class="spec"> <li><strong class="title">배송기간 :</strong> 2일 ~ 3일 이내</li> <li><strong class="title">배송예정일 :</strong> 12/06 배송 예정</li> <li><strong class="title">배송예정일 :</strong> 12/07 배송 예정</li> </ul>--><div class="icon"><img src="//ecimg.cafe24img.com/pg1028b89924010001/earnestree/web/upload/icon_202409111513044600.png" class="icon_img" alt="품절" /> </div> <div class="option"></div> </div> </div> </li> </ul> <div class="swiper-scrollbar"></div> </div> </div> </div> <!-- 📝 리뷰 --> <div data-root-margin="0px" data-threshold="0.1" data-is-loop="F" class="xans-element- xans-board xans-board-fixed-4 xans-board-fixed xans-board-4 index_board_review review_list_grp wp-stand-by wp-effect"><div class="site-wrap"> <div class="section-title animate__animated animate__fadeInUp animate__fast"> <h3>리뷰</h3> <p>고객님들이 직접 작성한 리뷰를 확인해보세요</p> <a class="more" href="/board/review/list.html?board_no=4">더보기</a> </div> <div class="review__list swiper-container"> <ul class="swiper-wrapper"> <!-- 🔅 옵션 설정 🔅 1. 리뷰 노출 개수는 $count 의 숫자를 조정해주시면 됩니다. $count = 8 $login_page_url = /member/login.html $deny_access_url = /index.html $main_list_reply_view = no --><li data-review-no="5" class="swiper-slide xans-record-"> <!-- # 리뷰 썸네일 속성 - src = "업로드 된 이미지" (1순위) - data-prod-img = "상품 이미지 경로" (2순위) - data-error-img = "첨부 이미지와 상품 이미지가 모두 없을 경우 노출 되는 이미지" (3순위) # 클래스 설명 - .open-review 가 감싸고 있는 영역을 클릭 시 읽기 팝업 레이어 표시 --> <div class="item " > <div class="thumb"> <a href="/product/$1/$2/" class="open-review"> <img src="//ecimg.cafe24img.com/pg1028b89924010001/earnestree/file_data/276606885a539ccb2340f1a43a2138f4.jpg" data-prod-img="" data-error-img="/board/review/img/noimage.jpg" class="thumb-review">  </a> <div class="thumb-attach"></div> </div> <div class="content open-review "> <span class="icon"></span><span class="icon fixed_icon"><img src="//img.echosting.cafe24.com/skin/admin_ko_KR/board/ico_fixed_post.png" alt="" class="ec-common-rwd-image" /></span> <div class="subject">[테스트]포토리뷰01<span class="comment"></span> </div> <div class="cont">포토리뷰</div> </div> <div class="content_right"> <div class="member"></div> <div class="vote displaynone">추천 <span>0</span> </div> <div class="date displaynone">24.08.20</div> <div class="hit displaynone">조회 33,833</div> </div> <div class="product_wrap"> <div class="product_thumb"><a href="/product/$1/$2/"><img src="" data-error-img="/board/review/img/noimage.jpg" alt="" class="small-thumb-review"></a></div> <div class="product_info"> <div class="name"><a href="/product/$1/$2/"></a></div> <div class="rate rate5">5.0</div> </div> </div> </div> </li> </ul> </div> <div class="swiper-scrollbar"></div> <div class="swiper-button-next"></div> <div class="swiper-button-prev"></div> </div> </div> <!-- [🏞️ 1단 배너] --> <div class="index_ban_300" webpb-banner-code="5dpl" hidden> <div class="site-wrap"> <div webpb-banner> <a href="%7B#link%7D" target="{#link_target}"> <!-- PC image --><div class="pc_view">{#pc_thumb_tag}</div> <!-- M image --><div class="m_view">{#m_thumb_tag}</div> </a> </div> </div> </div> <!-- [상품진열] 신제품 --> <div class="index_prd_200"> <div class="site-wrap"> <div data-root-margin="0px" data-threshold="0.1" data-is-loop="F" class="xans-element- xans-product xans-product-listmain-2 xans-product-listmain xans-product-2 productItem ec-base-product wp-effect"><!-- 🔅 옵션 설정 🔅 1. 상품진열 개수는 $count 의 숫자를 조정해주시면 됩니다. 2. 모바일 모드에서 "더보기" 를 사용하지 않으려면 $moreview를 no로 변경합니다. 3. "더보기" 로 노출된 상품 목록까지 브라우저가 기억하고자 하신다면 $cache 부분을 yes로 변경하세요. (새로고침을 해도 마지막으로 본 영역까지 노출됩니다.) $basket_result = /product/add_basket.html $basket_option = /product/basket_option.html --> <div class="section-title animate__animated animate__fadeInUp animate__fast"> <h3> <span style="display: ;">NEW <p>최신 건강 트렌드를 반영한 녹십자웰빙만의 신제품</p></span> <span style="display: none;"><img src="" alt="NEW <p>최신 건강 트렌드를 반영한 녹십자웰빙만의 신제품</p>"></span> </h3> </div> <ul class="prdList grid4 m_grid2"> <li id="anchorBoxId_183" class="timesale-timer xans-record-"> <div class="prdList__item"> <div class="thumbnail"> <div class="prdImg"> <a href="/product/녹십자웰빙-어삼진액-프리미엄-골드-20ml-x-30병/183/category/1/display/3/" name="anchorBoxName_183"><img src="//ecimg.cafe24img.com/pg1028b89924010001/earnestree/web/product/medium/20241126/c5f31fd9adc8991efa893dacc0b05eba.jpg" id="eListPrdImage183_3" alt="녹십자웰빙 어삼진액 프리미엄 골드 20ml x 30병 "></a> </div> <div class="color displaynone"> </div> <div class="iconarea"> <span class="ico2 "><img src="//ecimg.cafe24img.com/pg1028b89924010001/earnestree/web/upload/icon_202408091411014100.png" class="icon_img ec-product-listwishicon" alt="관심상품 등록 전" productno="183" categoryno="1" icon_status="off" login_status="T" individual-set="F" /></span> <span class="ico1 "><img src="//ecimg.cafe24img.com/pg1028b89924010001/earnestree/web/upload/icon_202408091410579600.png" onClick="CAPP_SHOP_NEW_PRODUCT_OPTIONSELECT.selectOptionCommon(183, 1, 'basket', '')" alt="장바구니 담기" class="ec-admin-icon cart" /></span> </div> </div> <div class="description"> <span class="discount_rate" data-prod-custom="140000" data-prod-price="99000" data-sale-price=""></span> <span class="chk"><input type="checkbox" class="ProductCompareClass xECPCNO_183 displaynone"></span> <div class="name"> <a href="/product/녹십자웰빙-어삼진액-프리미엄-골드-20ml-x-30병/183/category/1/display/3/" class=""><span class="title displaynone"><span style="font-size:17px;color:#000000;font-weight:bold;">상품명</span> :</span> <span style="font-size:17px;color:#000000;font-weight:bold;">녹십자웰빙 어삼진액 프리미엄 골드 20ml x 30병</span></a><div class="likeButton displaynone"><button type="button"><strong></strong></button></div> </div> <ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li column_name="price_custom" class=" product_custom xans-record-"> <strong class="title displaynone"><span style="font-size:14px;color:#aaaaaa;">소비자가</span> :</strong> <span style="font-size:14px;color:#aaaaaa;text-decoration:line-through;">140,000원</span></li> <li column_name="product_price" class=" product_price xans-record-"> <strong class="title displaynone"><span style="font-size:14px;color:#000000;">판매가</span> :</strong> <span style="font-size:14px;color:#000000;">99,000원</span><span id="span_product_tax_type_text" style=""> </span></li> </ul> <!-- 배송기간/예정일 표시 <ul class="spec"> <li><strong class="title">배송기간 :</strong> 2일 ~ 3일 이내</li> <li><strong class="title">배송예정일 :</strong> 12/06 배송 예정</li> <li><strong class="title">배송예정일 :</strong> 12/07 배송 예정</li> </ul>--><div class="icon"> </div> <div class="option"></div> </div> </div> </li> <li id="anchorBoxId_181" class="timesale-timer xans-record-"> <div class="prdList__item"> <div class="thumbnail"> <div class="prdImg"> <a href="/product/녹십자웰빙-pnt-루테인-아스타잔틴-미니캡슐-30캡슐/181/category/1/display/3/" name="anchorBoxName_181"><img src="//ecimg.cafe24img.com/pg1028b89924010001/earnestree/web/product/medium/20241121/763f2edb871c41dff66c47df3d58134c.jpg" id="eListPrdImage181_3" alt="녹십자웰빙 PNT 루테인 아스타잔틴 미니캡슐"></a> </div> <div class="color displaynone"> </div> <div class="iconarea"> <span class="ico2 "><img src="//ecimg.cafe24img.com/pg1028b89924010001/earnestree/web/upload/icon_202408091411014100.png" class="icon_img ec-product-listwishicon" alt="관심상품 등록 전" productno="181" categoryno="1" icon_status="off" login_status="T" individual-set="F" /></span> <span class="ico1 "><img src="//ecimg.cafe24img.com/pg1028b89924010001/earnestree/web/upload/icon_202408091410579600.png" onClick="CAPP_SHOP_NEW_PRODUCT_OPTIONSELECT.selectOptionCommon(181, 1, 'basket', '')" alt="장바구니 담기" class="ec-admin-icon cart" /></span> </div> </div> <div class="description"> <span class="discount_rate" data-prod-custom="24000" data-prod-price="19900" data-sale-price=""></span> <span class="chk"><input type="checkbox" class="ProductCompareClass xECPCNO_181 displaynone"></span> <div class="name"> <a href="/product/녹십자웰빙-pnt-루테인-아스타잔틴-미니캡슐-30캡슐/181/category/1/display/3/" class=""><span class="title displaynone"><span style="font-size:17px;color:#000000;font-weight:bold;">상품명</span> :</span> <span style="font-size:17px;color:#000000;font-weight:bold;">녹십자웰빙 PNT 루테인 아스타잔틴 미니캡슐 30캡슐</span></a><div class="likeButton displaynone"><button type="button"><strong></strong></button></div> </div> <ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li column_name="price_custom" class=" product_custom xans-record-"> <strong class="title displaynone"><span style="font-size:14px;color:#aaaaaa;">소비자가</span> :</strong> <span style="font-size:14px;color:#aaaaaa;text-decoration:line-through;">24,000원</span></li> <li column_name="product_price" class=" product_price xans-record-"> <strong class="title displaynone"><span style="font-size:14px;color:#000000;">판매가</span> :</strong> <span style="font-size:14px;color:#000000;">19,900원</span><span id="span_product_tax_type_text" style=""> </span></li> </ul> <!-- 배송기간/예정일 표시 <ul class="spec"> <li><strong class="title">배송기간 :</strong> 2일 ~ 3일 이내</li> <li><strong class="title">배송예정일 :</strong> 12/06 배송 예정</li> <li><strong class="title">배송예정일 :</strong> 12/07 배송 예정</li> </ul>--><div class="icon"> </div> <div class="option"></div> </div> </div> </li> <li id="anchorBoxId_166" class="timesale-timer xans-record-"> <div class="prdList__item"> <div class="thumbnail"> <div class="prdImg"> <a href="/product/boonja-nk-시그니처-4종-세트/166/category/1/display/3/" name="anchorBoxName_166"><img src="//ecimg.cafe24img.com/pg1028b89924010001/earnestree/web/product/medium/20241016/156a9e3929eb8f95aa596d8e80fcc2a5.jpg" id="eListPrdImage166_3" alt="BOONJA NK 시그니처 4종 세트"></a> </div> <div class="color displaynone"> </div> <div class="iconarea"> <span class="ico2 "><img src="//ecimg.cafe24img.com/pg1028b89924010001/earnestree/web/upload/icon_202408091411014100.png" class="icon_img ec-product-listwishicon" alt="관심상품 등록 전" productno="166" categoryno="1" icon_status="off" login_status="T" individual-set="F" /></span> <span class="ico1 "><img src="//ecimg.cafe24img.com/pg1028b89924010001/earnestree/web/upload/icon_202408091410579600.png" onClick="category_add_basket('166','1', '3', 'A0000', false, '1', 'P00000GK', 'A', 'F', '0');" alt="장바구니 담기" class="ec-admin-icon cart" /></span> </div> </div> <div class="description"> <span class="discount_rate" data-prod-custom="200000" data-prod-price="129000" data-sale-price=""></span> <span class="chk"><input type="checkbox" class="ProductCompareClass xECPCNO_166 displaynone"></span> <div class="name"> <a href="/product/boonja-nk-시그니처-4종-세트/166/category/1/display/3/" class=""><span class="title displaynone"><span style="font-size:17px;color:#000000;font-weight:bold;">상품명</span> :</span> <span style="font-size:17px;color:#000000;font-weight:bold;">BOONJA NK 시그니처 4종 세트</span></a><div class="likeButton displaynone"><button type="button"><strong></strong></button></div> </div> <ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li column_name="price_custom" class=" product_custom xans-record-"> <strong class="title displaynone"><span style="font-size:14px;color:#aaaaaa;">소비자가</span> :</strong> <span style="font-size:14px;color:#aaaaaa;text-decoration:line-through;">200,000원</span></li> <li column_name="product_price" class=" product_price xans-record-"> <strong class="title displaynone"><span style="font-size:14px;color:#000000;">판매가</span> :</strong> <span style="font-size:14px;color:#000000;">129,000원</span><span id="span_product_tax_type_text" style=""> </span></li> </ul> <!-- 배송기간/예정일 표시 <ul class="spec"> <li><strong class="title">배송기간 :</strong> 2일 ~ 3일 이내</li> <li><strong class="title">배송예정일 :</strong> 12/06 배송 예정</li> <li><strong class="title">배송예정일 :</strong> 12/07 배송 예정</li> </ul>--><div class="icon"> </div> <div class="option"></div> </div> </div> </li> <li id="anchorBoxId_158" class="timesale-timer xans-record-"> <div class="prdList__item"> <div class="thumbnail"> <div class="prdImg"> <a href="/product/녹십자웰빙-pnt-이노시톨-밸런스-4000-30포/158/category/1/display/3/" name="anchorBoxName_158"><img src="//ecimg.cafe24img.com/pg1028b89924010001/earnestree/web/product/medium/20241030/5071ec68a023235ead3cc57a6ecbf911.jpg" id="eListPrdImage158_3" alt="녹십자웰빙 PNT 이노시톨 밸런스 4000"></a> </div> <div class="color displaynone"> </div> <div class="iconarea"> <span class="ico2 "><img src="//ecimg.cafe24img.com/pg1028b89924010001/earnestree/web/upload/icon_202408091411014100.png" class="icon_img ec-product-listwishicon" alt="관심상품 등록 전" productno="158" categoryno="1" icon_status="off" login_status="T" individual-set="F" /></span> <span class="ico1 "><img src="//ecimg.cafe24img.com/pg1028b89924010001/earnestree/web/upload/icon_202408091410579600.png" onClick="CAPP_SHOP_NEW_PRODUCT_OPTIONSELECT.selectOptionCommon(158, 1, 'basket', '')" alt="장바구니 담기" class="ec-admin-icon cart" /></span> </div> </div> <div class="description"> <span class="discount_rate" data-prod-custom="45000" data-prod-price="33900" data-sale-price=""></span> <span class="chk"><input type="checkbox" class="ProductCompareClass xECPCNO_158 displaynone"></span> <div class="name"> <a href="/product/녹십자웰빙-pnt-이노시톨-밸런스-4000-30포/158/category/1/display/3/" class=""><span class="title displaynone"><span style="font-size:17px;color:#000000;font-weight:bold;">상품명</span> :</span> <span style="font-size:17px;color:#000000;font-weight:bold;">녹십자웰빙 PNT 이노시톨 밸런스 4000 30포</span></a><div class="likeButton displaynone"><button type="button"><strong></strong></button></div> </div> <ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li column_name="price_custom" class=" product_custom xans-record-"> <strong class="title displaynone"><span style="font-size:14px;color:#aaaaaa;">소비자가</span> :</strong> <span style="font-size:14px;color:#aaaaaa;text-decoration:line-through;">45,000원</span></li> <li column_name="product_price" class=" product_price xans-record-"> <strong class="title displaynone"><span style="font-size:14px;color:#000000;">판매가</span> :</strong> <span style="font-size:14px;color:#000000;">33,900원</span><span id="span_product_tax_type_text" style=""> </span></li> </ul> <!-- 배송기간/예정일 표시 <ul class="spec"> <li><strong class="title">배송기간 :</strong> 2일 ~ 3일 이내</li> <li><strong class="title">배송예정일 :</strong> 12/06 배송 예정</li> <li><strong class="title">배송예정일 :</strong> 12/07 배송 예정</li> </ul>--><div class="icon"> </div> <div class="option"></div> </div> </div> </li> <li id="anchorBoxId_32" class="timesale-timer xans-record-"> <div class="prdList__item"> <div class="thumbnail"> <div class="prdImg"> <a href="/product/11-녹십자웰빙-pnt-리포좀-비타민c-30정/32/category/1/display/3/" name="anchorBoxName_32"><img src="//ecimg.cafe24img.com/pg1028b89924010001/earnestree/web/product/medium/20241128/92f510e7d2a32f6e7a3e2026723471a2.jpg" id="eListPrdImage32_3" alt="녹십자웰빙 PNT 리포좀 비타민C 30정"></a> </div> <div class="color displaynone"> </div> <div class="iconarea"> <span class="ico2 "><img src="//ecimg.cafe24img.com/pg1028b89924010001/earnestree/web/upload/icon_202408091411014100.png" class="icon_img ec-product-listwishicon" alt="관심상품 등록 전" productno="32" categoryno="1" icon_status="off" login_status="T" individual-set="F" /></span> <span class="ico1 "><img src="//ecimg.cafe24img.com/pg1028b89924010001/earnestree/web/upload/icon_202408091410579600.png" onClick="category_add_basket('32','1', '3', 'A0000', false, '1', 'P00000BG', 'A', 'F', '0');" alt="장바구니 담기" class="ec-admin-icon cart" /></span> </div> </div> <div class="description"> <span class="discount_rate" data-prod-custom="72000" data-prod-price="29900" data-sale-price=""></span> <span class="chk"><input type="checkbox" class="ProductCompareClass xECPCNO_32 displaynone"></span> <div class="name"> <a href="/product/11-녹십자웰빙-pnt-리포좀-비타민c-30정/32/category/1/display/3/" class=""><span class="title displaynone"><span style="font-size:17px;color:#000000;font-weight:bold;">상품명</span> :</span> <span style="font-size:17px;color:#000000;font-weight:bold;">[1+1] 녹십자웰빙 PNT 리포좀 비타민C 30정</span></a><div class="likeButton displaynone"><button type="button"><strong></strong></button></div> </div> <ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li column_name="price_custom" class=" product_custom xans-record-"> <strong class="title displaynone"><span style="font-size:14px;color:#aaaaaa;">소비자가</span> :</strong> <span style="font-size:14px;color:#aaaaaa;text-decoration:line-through;">72,000원</span></li> <li column_name="product_price" class=" product_price xans-record-"> <strong class="title displaynone"><span style="font-size:14px;color:#000000;">판매가</span> :</strong> <span style="font-size:14px;color:#000000;">29,900원</span><span id="span_product_tax_type_text" style=""> </span></li> </ul> <!-- 배송기간/예정일 표시 <ul class="spec"> <li><strong class="title">배송기간 :</strong> 2일 ~ 3일 이내</li> <li><strong class="title">배송예정일 :</strong> 12/06 배송 예정</li> <li><strong class="title">배송예정일 :</strong> 12/07 배송 예정</li> </ul>--><div class="icon"> </div> <div class="option"></div> </div> </div> </li> <li id="anchorBoxId_97" class="timesale-timer xans-record-"> <div class="prdList__item"> <div class="thumbnail"> <div class="prdImg"> <a href="/product/올세페녹십자웰빙-pnt-종합-멀티비타민-미네랄-30정-2박스/97/category/1/display/3/" name="anchorBoxName_97"><img src="//ecimg.cafe24img.com/pg1028b89924010001/earnestree/web/product/medium/20241129/e50d34b7316ff55f21f8ff18acd8234d.jpg" id="eListPrdImage97_3" alt="녹십자웰빙 PNT 종합 멀티비타민 미네랄 30정"></a> </div> <div class="color displaynone"> </div> <div class="iconarea"> <span class="ico2 "><img src="//ecimg.cafe24img.com/pg1028b89924010001/earnestree/web/upload/icon_202408091411014100.png" class="icon_img ec-product-listwishicon" alt="관심상품 등록 전" productno="97" categoryno="1" icon_status="off" login_status="T" individual-set="F" /></span> <span class="ico1 "><img src="//ecimg.cafe24img.com/pg1028b89924010001/earnestree/web/upload/icon_202408091410579600.png" onClick="category_add_basket('97','1', '3', 'A0000', false, '1', 'P00000DT', 'A', 'F', '0');" alt="장바구니 담기" class="ec-admin-icon cart" /></span> </div> </div> <div class="description"> <span class="discount_rate" data-prod-custom="48000" data-prod-price="26900" data-sale-price=""></span> <span class="chk"><input type="checkbox" class="ProductCompareClass xECPCNO_97 displaynone"></span> <div class="name"> <a href="/product/올세페녹십자웰빙-pnt-종합-멀티비타민-미네랄-30정-2박스/97/category/1/display/3/" class=""><span class="title displaynone"><span style="font-size:17px;color:#000000;font-weight:bold;">상품명</span> :</span> <span style="font-size:17px;color:#000000;font-weight:bold;">[올세페]녹십자웰빙 PNT 종합 멀티비타민 미네랄 30정 2박스</span></a><div class="likeButton displaynone"><button type="button"><strong></strong></button></div> </div> <ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li column_name="price_custom" class=" product_custom xans-record-"> <strong class="title displaynone"><span style="font-size:14px;color:#aaaaaa;">소비자가</span> :</strong> <span style="font-size:14px;color:#aaaaaa;text-decoration:line-through;">48,000원</span></li> <li column_name="product_price" class=" product_price xans-record-"> <strong class="title displaynone"><span style="font-size:14px;color:#000000;">판매가</span> :</strong> <span style="font-size:14px;color:#000000;">26,900원</span><span id="span_product_tax_type_text" style=""> </span></li> </ul> <!-- 배송기간/예정일 표시 <ul class="spec"> <li><strong class="title">배송기간 :</strong> 2일 ~ 3일 이내</li> <li><strong class="title">배송예정일 :</strong> 12/06 배송 예정</li> <li><strong class="title">배송예정일 :</strong> 12/07 배송 예정</li> </ul>--><div class="icon"> </div> <div class="option"></div> </div> </div> </li> <li id="anchorBoxId_76" class="timesale-timer xans-record-"> <div class="prdList__item"> <div class="thumbnail"> <div class="prdImg"> <a href="/product/11-녹십자웰빙-pnt-비오틴-맥스-5000-60정/76/category/1/display/3/" name="anchorBoxName_76"><img src="//ecimg.cafe24img.com/pg1028b89924010001/earnestree/web/product/medium/20241128/09a995e271c2260dda4eeae8de559bdf.jpg" id="eListPrdImage76_3" alt="녹십자웰빙 PNT 비오틴 맥스 5000"></a> </div> <div class="color displaynone"> </div> <div class="iconarea"> <span class="ico2 "><img src="//ecimg.cafe24img.com/pg1028b89924010001/earnestree/web/upload/icon_202408091411014100.png" class="icon_img ec-product-listwishicon" alt="관심상품 등록 전" productno="76" categoryno="1" icon_status="off" login_status="T" individual-set="F" /></span> <span class="ico1 "><img src="//ecimg.cafe24img.com/pg1028b89924010001/earnestree/web/upload/icon_202408091410579600.png" onClick="category_add_basket('76','1', '3', 'A0000', false, '1', 'P00000CY', 'A', 'F', '0');" alt="장바구니 담기" class="ec-admin-icon cart" /></span> </div> </div> <div class="description"> <span class="discount_rate" data-prod-custom="60000" data-prod-price="26900" data-sale-price=""></span> <span class="chk"><input type="checkbox" class="ProductCompareClass xECPCNO_76 displaynone"></span> <div class="name"> <a href="/product/11-녹십자웰빙-pnt-비오틴-맥스-5000-60정/76/category/1/display/3/" class=""><span class="title displaynone"><span style="font-size:17px;color:#000000;font-weight:bold;">상품명</span> :</span> <span style="font-size:17px;color:#000000;font-weight:bold;">[1+1] 녹십자웰빙 PNT 비오틴 맥스 5000 60정</span></a><div class="likeButton displaynone"><button type="button"><strong></strong></button></div> </div> <ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li column_name="price_custom" class=" product_custom xans-record-"> <strong class="title displaynone"><span style="font-size:14px;color:#aaaaaa;">소비자가</span> :</strong> <span style="font-size:14px;color:#aaaaaa;text-decoration:line-through;">60,000원</span></li> <li column_name="product_price" class=" product_price xans-record-"> <strong class="title displaynone"><span style="font-size:14px;color:#000000;">판매가</span> :</strong> <span style="font-size:14px;color:#000000;">26,900원</span><span id="span_product_tax_type_text" style=""> </span></li> </ul> <!-- 배송기간/예정일 표시 <ul class="spec"> <li><strong class="title">배송기간 :</strong> 2일 ~ 3일 이내</li> <li><strong class="title">배송예정일 :</strong> 12/06 배송 예정</li> <li><strong class="title">배송예정일 :</strong> 12/07 배송 예정</li> </ul>--><div class="icon"> </div> <div class="option"></div> </div> </div> </li> <li id="anchorBoxId_70" class="timesale-timer xans-record-"> <div class="prdList__item"> <div class="thumbnail"> <div class="prdImg"> <a href="/product/올세페녹십자웰빙-pnt-스페르미딘-60정2개월분/70/category/1/display/3/" name="anchorBoxName_70"><img src="//ecimg.cafe24img.com/pg1028b89924010001/earnestree/web/product/medium/20241203/caa53cd41192e5614baaba9bed749d14.jpg" id="eListPrdImage70_3" alt="녹십자웰빙 PNT 스페르미딘 60정(2개월분)"></a> </div> <div class="color displaynone"> </div> <div class="iconarea"> <span class="ico2 "><img src="//ecimg.cafe24img.com/pg1028b89924010001/earnestree/web/upload/icon_202408091411014100.png" class="icon_img ec-product-listwishicon" alt="관심상품 등록 전" productno="70" categoryno="1" icon_status="off" login_status="T" individual-set="F" /></span> <span class="ico1 "><img src="//ecimg.cafe24img.com/pg1028b89924010001/earnestree/web/upload/icon_202408091410579600.png" onClick="CAPP_SHOP_NEW_PRODUCT_OPTIONSELECT.selectOptionCommon(70, 1, 'basket', '')" alt="장바구니 담기" class="ec-admin-icon cart" /></span> </div> </div> <div class="description"> <span class="discount_rate" data-prod-custom="55000" data-prod-price="43900" data-sale-price=""></span> <span class="chk"><input type="checkbox" class="ProductCompareClass xECPCNO_70 displaynone"></span> <div class="name"> <a href="/product/올세페녹십자웰빙-pnt-스페르미딘-60정2개월분/70/category/1/display/3/" class=""><span class="title displaynone"><span style="font-size:17px;color:#000000;font-weight:bold;">상품명</span> :</span> <span style="font-size:17px;color:#000000;font-weight:bold;">[올세페]녹십자웰빙 PNT 스페르미딘 60정(2개월분)</span></a><div class="likeButton displaynone"><button type="button"><strong></strong></button></div> </div> <ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li column_name="price_custom" class=" product_custom xans-record-"> <strong class="title displaynone"><span style="font-size:14px;color:#aaaaaa;">소비자가</span> :</strong> <span style="font-size:14px;color:#aaaaaa;text-decoration:line-through;">55,000원</span></li> <li column_name="product_price" class=" product_price xans-record-"> <strong class="title displaynone"><span style="font-size:14px;color:#000000;">판매가</span> :</strong> <span style="font-size:14px;color:#000000;">43,900원</span><span id="span_product_tax_type_text" style=""> </span></li> </ul> <!-- 배송기간/예정일 표시 <ul class="spec"> <li><strong class="title">배송기간 :</strong> 2일 ~ 3일 이내</li> <li><strong class="title">배송예정일 :</strong> 12/06 배송 예정</li> <li><strong class="title">배송예정일 :</strong> 12/07 배송 예정</li> </ul>--><div class="icon"> </div> <div class="option"></div> </div> </div> </li> </ul> <div class="moreProduct"> <a href="#none" class="btnMore"><span class="txt">더보기</span><span class="curernt">1</span>/<span class="all"></span><i aria-hidden="true" class="icon icoArrowBottom"></i></a> </div> <!--div module="product_listmore_2" class="more"> <a href="#none" onclick="" class="btnMore"> 더보기<span id="more_current_page_"></span>/<span id="more_total_page_"></span> <i aria-hidden="true" class="icon icoArrowBottom"></i> </a> </div--> </div> </div> </div> <!-- [🎞️ 영상 & 상품진열] 함께 나누고싶은 특별함 --> <div class="index_prd_300 wp-stand-by wp-effect" data-root-margin="0px" data-threshold="0.1" data-is-loop="F"> <div class="site-wrap"> <div class="section-title animate__animated animate__fadeInUp animate__fast"></div> <div class="productItem ec-base-product"> <div class="bnr" webpb-banner-code="yii4" hidden> <div class="mov" webpb-banner> <div class="video"> <iframe width="560" height="315" src="https://www.youtube.com/embed/videoseries?si=rElvGt0lllvs8rha&amp;list=PLxlccd-Vm0UvsZZlbpSk0gHyq3-peyJzy&amp;controls=0&amp;mute=1&amp;autoplay=1&amp;loop=1" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe> <!--<iframe width="560" height="315" src="https://www.youtube.com/embed/{#html}?controls=0&mute=1&autoplay=1&loop=1&playlist={#html}" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>--> </div> </div> <!-- <div class="displaynone" webpb-banner> <a href="{#link}" target="{#link_target}"> <div class="img pc_view">{#pc_thumb_tag}</div> <div class="img m_view">{#m_thumb_tag}</div> </a> </div> --> </div> <div class="prod displaynone"> </div> </div> </div> </div> <!-- [🏞️ 3단 슬라이드 배너] 이벤트 --> <div class="index_ban_400 wp-stand-by wp-effect" data-root-margin="0px" data-threshold="0.1" data-is-loop="F" webpb-banner-code="8id0" hidden> <div class="site-wrap"> <div class="section-title animate__animated animate__fadeInUp animate__fast"> <h3>이벤트</h3> <p>진행중인 이벤트를 놓치지 마세요</p><p> </p></div> </div> <div class="swiper-container"> <div class="swiper-wrapper"> <div class="swiper-slide" webpb-banner> <a href="%7B#link%7D" target="{#link_target}"> <!-- PC image --><div class="img pc_view">{#pc_thumb_tag}</div> <!-- M image --><div class="img m_view">{#m_thumb_tag}</div> </a> </div> <div class="swiper-slide" webpb-banner> <a href="%7B#link%7D" target="{#link_target}"> <!-- PC image --><div class="img pc_view">{#pc_thumb_tag}</div> <!-- M image --><div class="img m_view">{#m_thumb_tag}</div> </a> </div> </div> <div class="swiper-pagination"></div> <div class="swiper-button-next"></div> <div class="swiper-button-prev"></div> </div> </div> <!-- [🏞️ 2딘 배너] --> <!--import(/index_banner_600.html)--> <!-- 공지사항 --> <!--import(/index_board_notice.html)--> <!-- 레이어 팝업--> <div class="main--modal displaynone" webpb-banner-code="1xti" hidden> <div class="main-modal-box wp-stand-by"> <div class="swiper-container"> <div class="swiper-wrapper"> <div class="swiper-slide" webpb-banner> <a href="%7B#link%7D" target="{#link_target}"> <!-- PC image --><div class="img pc_view">{#pc_thumb_tag}</div> <!-- M image --><div class="img m_view">{#m_thumb_tag}</div> </a> </div> <div class="swiper-slide" webpb-banner> <a href="%7B#link%7D" target="{#link_target}"> <!-- PC image --><div class="img pc_view">{#pc_thumb_tag}</div> <!-- M image --><div class="img m_view">{#m_thumb_tag}</div> </a> </div> </div> <div class="swiper-pagination"></div> </div> <div class="main-btn-box"> <a href="javascript:;" class="left close" data-day="1">오늘 하루 보지 않기</a> <a href="javascript:;" class="right close">닫기</a> </div> </div> </div> </main><!-- 하단 공통 영역입니다. 이 영역에 대한 스타일은 "/_wp/css/footer.css"에 정의되어 있습니다. --><footer id="footer"><h2 class="blind">회사정보</h2> <div class="site-wrap"> <div class="xans-element- xans-layout xans-layout-footer "><div class="footArea_address"> <!-- 하단 로고 --> <div class="info_logo pc_view" webpb-banner-code="k46q" hidden> <div webpb-banner> {#pc_thumb_tag} </div> </div> <!--//--> <ul class="util"> <li><a href="/shopinfo/company.html">회사소개</a></li> <li><a href="/member/mall_agreement.html">이용약관</a></li> <li><a href="/member/privacy.html"><strong>개인정보 취급방침</strong></a></li> <li><a href="/shopinfo/guide.html">이용안내</a></li> </ul> <!-- 하단 상점정보 --><div class="address"> <div class="heading m_view"> <h3 class="title">사업자정보<span class="arrow active"></span> </h3> </div> <div class="content"> <span>법인명(상호) : 주식회사 어니스트리 </span> <span class="line">|</span> <span>주소 : 07335 파크원타워2 33층 서울특별시 영등포구 여의대로 108 (여의도동)</span> <br><span>대표자 : <a href="mailto:">김상현, 복정인</a></span> <span class="line">|</span> <span>전화 : <a href="tel:1577-5560">1577-5560</a></span> <span class="line">|</span> <span class="">개인정보관리책임자 : 주식회사 어니스트리(<a href="mailto:gcwb@gccorp.com">gcwb@gccorp.com</a>)</span> <br><span>사업자등록번호 444-81-03486</span> <span class="line">|</span> <span>통신판매업신고 제 2024-서울영등포-1627 호 <a href="#none" onclick="window.open('http://www.ftc.go.kr/bizCommPop.do?wrkr_no=4448103486', 'bizCommPop', 'width=750, height=950;');return false;">[사업자정보확인]</a></span> <!-- <span>팩스 : </span> --> <div class="copyright">Copyright © <strong>녹십자웰빙몰</strong>. All rights reserved.</div> </div> </div> <!--//--> </div> <!-- 하단 고객센터 --> <div class="xans-element- xans-layout xans-layout-info footArea_customer "><div class="heading"> <h3 class="title">고객센터</h3> </div> <div class="content"> <ul class=""> <li class="tel">1577-5560</li> <li class="runtime">평일 : 10:00 ~ 17:00 점심시간 : 12:00 ~ 13:00 주말 및 공휴일은 휴무입니다.</li> </ul> </div> <!-- SNS 아이콘 --> <div class="sns-lnk" webpb-banner-code="rcdb" hidden> <div class="icon" webpb-banner><a href="%7B#link%7D" target="{#link_target}">{#pc_thumb_tag}</a></div> <div class="icon" webpb-banner><a href="%7B#link%7D" target="{#link_target}">{#pc_thumb_tag}</a></div> </div> <!--//--> </div> <!--//--> <!-- 하단 커뮤니티 --> <div class="footArea_community pc_view"> <div class="heading"> <h3 class="title">커뮤니티</h3> </div> <div class="content"> <ul> <li><a href="/board/free/list.html?board_no=1">공지사항</a></li> <li><a href="/board/product/list.html?board_no=6">상품Q&amp;A</a></li> <li><a href="/board/review/list.html?board_no=4">리뷰</a></li> </ul> <ul><li class="xans-element- xans-layout xans-layout-statelogoff "><a href="/member/join_member.html">회원가입</a> </li> <li class="xans-element- xans-layout xans-layout-statelogoff "><a href="/member/login.html">로그인</a> </li> <li><a href="/myshop/index.html">마이페이지</a></li> <li><a href="/myshop/order/list.html">주문조회</a></li> </ul> </div> </div> <!--//--> </div> </div> </footer><!-- 우측 하단 고정 버튼 --><div class="bottom-nav" webpb-banner-code="7fq6" hidden> <div class="bottom-nav__chat" webpb-banner> <a href="javascript:;" onclick="javascript:window.open('{#link}', 'chat', 'width=450, height=550');">{#pc_thumb_tag}</a> </div> <div> <div class="bottom-nav__top"> <a href="" title="화면 최상단으로 이동하기"><span>Top</span></a> </div> </div> </div> <!--//--> <div id="progressPaybar" style="display:none;"> <div id="progressPaybarBackground" class="layerProgress"></div> <div id="progressPaybarView"> <div class="box"> <h3>현재 결제가 진행중입니다.</h3> <p class="txt"> 본 결제 창은 결제완료 후 자동으로 닫히며,결제 진행 중에 본 결제 창을 닫으시면<br> 주문이 되지 않으니 결제 완료 될 때 까지 닫지 마시기 바랍니다. </p> <div class="progressbar"><img src="//img.echosting.cafe24.com/skin/skin/common/img_loading.gif" alt="loading" loading="lazy"></div> </div> </div> </div> <div id="layoutDimmed" class="dimmed"></div> </div> </div> <div class="mul13 displaynone"> <div class="m13s m13c1"></div> <div class="m13s m13c2"></div> </div> <!-- 에러 예외 처리 --> <script async src="/_wp/js/error_display.js"></script> <!--import(/_wp/animate_not_support.html)--> <!-- 웹퍼블릭 배너매니저 [ 스킨명 : [PC] 닥터코스 반응형 v2 ] --> <style>[webpb-banner-code][hidden] { display:none !important }</style> <script> if (!document.getElementById('webpbBannerManager')){ let webpb_src = 'https://ecimg.cafe24img.com/pg1028b89924010001/earnestree/web/upload/appfiles/AIFBrluHGdhkEsW6ewuLoA/2aa327703f7159d658825e62eeaaf815.js'; document.write('<script id="webpbBannerManager" src="' + webpb_src + '?v=' + Date.now() + '"><\/script>'); } </script> <!-- aedi common. 지우시면 안됩니다! --> <script> if (typeof aisum_params === "undefined") { var aisum_params = new Object(); aisum_params.type = "self"; aisum_params.siteID = "2555"; } </script> <script type="text/javascript" src="https://api.aedi.ai/common/js/v1/ctad.js"></script> <!-- Google Tag Manager (noscript) --> <noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-T955FKFZ" height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript> <!-- End Google Tag Manager (noscript) --> <script type="text/javascript"> (function(w, d, a){ w.__beusablerumclient__ = { load : function(src){ var b = d.createElement("script"); b.src = src; b.async=true; b.type = "text/javascript"; d.getElementsByTagName("head")[0].appendChild(b); } };w.__beusablerumclient__.load(a + "?url=" + encodeURIComponent(d.URL)); })(window, document, "//rum.beusable.net/load/b240920e154845u365"); </script> <span itemscope="" itemtype="https://schema.org/Organization"> <link itemprop="url" href="https://gcwellbeingmall.co.kr"> <a itemprop="sameAs" href="https://www.instagram.com/gcwellbeing_official/"></a> </span> <script type="text/javascript" src="/app/Eclog/js/cid.generate.js?vs=e6b9d5a22c79c6e4bde01404152f6a3a&u=earnestree.1"></script> <script> try { // Account ID 적용 if (!wcs_add) var wcs_add = {}; wcs_add["wa"] = "s_dcc9e65d994"; // 네이버 페이 White list가 있을 경우 wcs.checkoutWhitelist = ["earnestree.cafe24.com", "www.earnestree.cafe24.com", "m.earnestree.cafe24.com", "gcwellbeingmall.co.kr", "www.gcwellbeingmall.co.kr", "m.gcwellbeingmall.co.kr"]; // 레퍼러 wcs.setReferer(""); // 유입 추적 함수 호출 wcs.inflow("gcwellbeingmall.co.kr"); // 로그수집 wcs_do(); } catch (e) {}; </script> <!-- External Script Start --> <!-- crt --> <!-- CMC script --> <div id="crt_common_top_script" style="display:none;"> <!-- Criteo 로더 파일 --> <script type="text/javascript" src="//static.criteo.com/js/ld/ld.js" async="true"></script> <!-- END Criteo 로더 파일 --> <!-- Criteo Visit Tag --> <script type="text/javascript"> if (hasCriteoTag() === false) { window.criteo_q = window.criteo_q || []; window.criteo_q.push( { event: "flushEvents"}, { event: "setAccount", account: "115750"}, { event: "setSiteType", type: "d" }, { event: "viewPage"} ); } function hasCriteoTag() { var currentPathRole = getPathRole(); if (currentPathRole === '') { return true; } var tagImplementedPathRoles = ['MAIN','PRODUCT_LIST','PRODUCT_SEARCH','PRODUCT_DETAIL','ORDER_BASKET','ORDER_ORDERRESULT']; return tagImplementedPathRoles.includes(currentPathRole); } function getPathRole() { const metas = document.getElementsByTagName('meta'); for (let i = 0; i < metas.length; i++) { if (metas[i].getAttribute('name') === 'path_role') { return metas[i].getAttribute('content'); } } return ''; } </script> <!-- END Criteo Visit Tag --> <script type="text/javascript"> var email_sha256 = SHA256(''); function SHA256(s){ if (s == '') { return ''; } var chrsz = 8; var hexcase = 0; function safe_add (x, y) { var lsw = (x & 0xFFFF) + (y & 0xFFFF); var msw = (x >> 16) + (y >> 16) + (lsw >> 16); return (msw << 16) | (lsw & 0xFFFF); } function S (X, n) { return ( X >>> n ) | (X << (32 - n)); } function R (X, n) { return ( X >>> n ); } function Ch(x, y, z) { return ((x & y) ^ ((~x) & z)); } function Maj(x, y, z) { return ((x & y) ^ (x & z) ^ (y & z)); } function Sigma0256(x) { return (S(x, 2) ^ S(x, 13) ^ S(x, 22)); } function Sigma1256(x) { return (S(x, 6) ^ S(x, 11) ^ S(x, 25)); } function Gamma0256(x) { return (S(x, 7) ^ S(x, 18) ^ R(x, 3)); } function Gamma1256(x) { return (S(x, 17) ^ S(x, 19) ^ R(x, 10)); } function core_sha256 (m, l) { var K = new Array(0x428A2F98, 0x71374491, 0xB5C0FBCF, 0xE9B5DBA5, 0x3956C25B, 0x59F111F1, 0x923F82A4, 0xAB1C5ED5, 0xD807AA98, 0x12835B01, 0x243185BE, 0x550C7DC3, 0x72BE5D74, 0x80DEB1FE, 0x9BDC06A7, 0xC19BF174, 0xE49B69C1, 0xEFBE4786, 0xFC19DC6, 0x240CA1CC, 0x2DE92C6F, 0x4A7484AA, 0x5CB0A9DC, 0x76F988DA, 0x983E5152, 0xA831C66D, 0xB00327C8, 0xBF597FC7, 0xC6E00BF3, 0xD5A79147, 0x6CA6351, 0x14292967, 0x27B70A85, 0x2E1B2138, 0x4D2C6DFC, 0x53380D13, 0x650A7354, 0x766A0ABB, 0x81C2C92E, 0x92722C85, 0xA2BFE8A1, 0xA81A664B, 0xC24B8B70, 0xC76C51A3, 0xD192E819, 0xD6990624, 0xF40E3585, 0x106AA070, 0x19A4C116, 0x1E376C08, 0x2748774C, 0x34B0BCB5, 0x391C0CB3, 0x4ED8AA4A, 0x5B9CCA4F, 0x682E6FF3, 0x748F82EE, 0x78A5636F, 0x84C87814, 0x8CC70208, 0x90BEFFFA, 0xA4506CEB, 0xBEF9A3F7, 0xC67178F2); var HASH = new Array(0x6A09E667, 0xBB67AE85, 0x3C6EF372, 0xA54FF53A, 0x510E527F, 0x9B05688C, 0x1F83D9AB, 0x5BE0CD19); var W = new Array(64); var a, b, c, d, e, f, g, h, i, j; var T1, T2; m[l >> 5] |= 0x80 << (24 - l % 32); m[((l + 64 >> 9) << 4) + 15] = l; for ( var i = 0; i<m.length; i+=16 ) { a = HASH[0]; b = HASH[1]; c = HASH[2]; d = HASH[3]; e = HASH[4]; f = HASH[5]; g = HASH[6]; h = HASH[7]; for ( var j = 0; j<64; j++) { if (j < 16) W[j] = m[j + i]; else W[j] = safe_add(safe_add(safe_add(Gamma1256(W[j - 2]), W[j - 7]), Gamma0256(W[j - 15])), W[j - 16]); T1 = safe_add(safe_add(safe_add(safe_add(h, Sigma1256(e)), Ch(e, f, g)), K[j]), W[j]); T2 = safe_add(Sigma0256(a), Maj(a, b, c)); h = g; g = f; f = e; e = safe_add(d, T1); d = c; c = b; b = a; a = safe_add(T1, T2); } HASH[0] = safe_add(a, HASH[0]); HASH[1] = safe_add(b, HASH[1]); HASH[2] = safe_add(c, HASH[2]); HASH[3] = safe_add(d, HASH[3]); HASH[4] = safe_add(e, HASH[4]); HASH[5] = safe_add(f, HASH[5]); HASH[6] = safe_add(g, HASH[6]); HASH[7] = safe_add(h, HASH[7]); } return HASH; } function str2binb (str) { var bin = Array(); var mask = (1 << chrsz) - 1; for(var i = 0; i < str.length * chrsz; i += chrsz) { bin[i>>5] |= (str.charCodeAt(i / chrsz) & mask) << (24 - i%32); } return bin; } function Utf8Encode(string) { string = string.replace(/\r\n/g,"\n"); var utftext = ""; for (var n = 0; n < string.length; n++) { var c = string.charCodeAt(n); if (c < 128) { utftext += String.fromCharCode(c); } else if((c > 127) && (c < 2048)) { utftext += String.fromCharCode((c >> 6) | 192); utftext += String.fromCharCode((c & 63) | 128); } else { utftext += String.fromCharCode((c >> 12) | 224); utftext += String.fromCharCode(((c >> 6) & 63) | 128); utftext += String.fromCharCode((c & 63) | 128); } } return utftext; } function binb2hex (binarray) { var hex_tab = hexcase ? "0123456789ABCDEF" : "0123456789abcdef"; var str = ""; for(var i = 0; i < binarray.length * 4; i++) { str += hex_tab.charAt((binarray[i>>2] >> ((3 - i%4)*8+4)) & 0xF) + hex_tab.charAt((binarray[i>>2] >> ((3 - i%4)*8 )) & 0xF); } return str; } s = Utf8Encode(s); return binb2hex(core_sha256(str2binb(s), s.length * chrsz)); } </script> </div> <!-- CMC script --> <!-- CMC script --> <div id="crt_main_script" style="display:none;"> <script type="text/javascript"> window.criteo_q = window.criteo_q || []; window.criteo_q.push( { event: "flushEvents"}, { event: "setAccount", account: "115750"}, { event: "setEmail", email: email_sha256, hash_method: "sha256" }, { event: "setSiteType", type: "d" }, { event: "viewHome" } ); </script> </div> <!-- CMC script --> <!-- 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', '3680752542235035',{external_id: external_id}, {agent: 'plcafe24'}); fbq('trackSingle', '3680752542235035', 'PageView'); facebookChannel.external_id = external_id; }); } else { let external_id = facebookChannel.getExternalId(); console.info('external_id is cookie value.', '(2)'); fbq('init', '3680752542235035',{external_id: external_id}, {agent: 'plcafe24'}); fbq('trackSingle', '3680752542235035', '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=3680752542235035&ev=PageView&noscript=1" /></noscript> </div> <!-- CMC3 script --> <!-- gcs --> <!-- Google tag (gtag.js) --> <script async src="https://www.googletagmanager.com/gtag/js?id=GT-NNVRL3WL"></script> <script> window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments);} gtag('js', new Date()); gtag('config', 'GT-NNVRL3WL'); </script> <script> gtag('event', 'conversion', { 'send_to': 'AW-10786228128/zGiqCOiM4PsCEKCPo5co', 'value': 0.0, }); </script> <!-- kmp --> <!-- CMC3 script --> <div id="kmp_common_top_script" style="display:none;"> <script type="text/javascript" charset="UTF-8" src="//t1.daumcdn.net/adfit/static/kp.js"></script> <script type="text/javascript"> kakaoPixel('7261342749407362781').pageView(); kakaoPixel.setServiceOrigin('20001'); </script> </div> <!-- CMC3 script --> <!-- nco --> <!-- ttk_cafe24ads --> <!-- CMC script --> <div id="ttk_cafe24ads_common_top_script" style="display:none;"> <script type="text/javascript"> !function (w, d, t) { w.TiktokAnalyticsObject=t;var ttq=w[t]=w[t]||[];ttq.methods=["page","track","identify","instances","debug","on","off","once","ready","alias","group","enableCookie","disableCookie"],ttq.setAndDefer=function(t,e){t[e]=function(){t.push([e].concat(Array.prototype.slice.call(arguments,0)))}};for(var i=0;i<ttq.methods.length;i++)ttq.setAndDefer(ttq,ttq.methods[i]);ttq.instance=function(t){for(var e=ttq._i[t]||[],n=0;n<ttq.methods.length;n++)ttq.setAndDefer(e,ttq.methods[n]);return e},ttq.load=function(e,n){var i="https://analytics.tiktok.com/i18n/pixel/events.js";ttq._i=ttq._i||{},ttq._i[e]=[],ttq._i[e]._u=i,ttq._t=ttq._t||{},ttq._t[e]=+new Date,ttq._o=ttq._o||{},ttq._o[e]=n||{},ttq._partner=ttq._partner||"Cafe24"; var o=document.createElement("script");o.type="text/javascript",o.async=!0,o.src=i+"?sdkid="+e+"&lib="+t;var a=document.getElementsByTagName("script")[0];a.parentNode.insertBefore(o,a)}; ttq.load('CR7TCBJC77UD53UU2BF0'); ttq.page(); }(window, document, 'ttq'); if (typeof tiktokCmcPixel === 'undefined') { var tiktokCmcPixel = { getCookie: function(name) { return (name = (document.cookie + ';').match(name + '=.*;')) && name[0].split(/=|;/)[1]; }, getEventId: function() { const self = tiktokCmcPixel; return self.getCookie('fb_event_id'); }, getExternalId: function() { const self = tiktokCmcPixel; return self.getCookie('fb_external_id'); }, pixelEvent: function(callback) { const self = tiktokCmcPixel; if (typeof ECLOG !== 'undefined') { ECLOG.EXTERNAL_ID.chk(CAFE24.SHOP.getMallID()+'.' + CAFE24.SDE_SHOP_NUM, function(error, externalId) { if (!error && externalId) { ECLOG.EVENT_ID.chk(CAFE24.SHOP.getMallID()+'.' + CAFE24.SDE_SHOP_NUM, function(error, eventId) { if (!error && eventId) { callback(eventId, externalId); } else { const eventId = self.getEventId(); if (eventId) callback(self.getEventId(), externalId); } }); } else { const eventId = self.getEventId(); const externalId = self.getExternalId(); if (eventId && externalId) callback(self.getEventId(), self.getExternalId()); } }); } else { const eventId = self.getEventId(); const externalId = self.getExternalId(); if (eventId && externalId) callback(self.getEventId(), self.getExternalId()); } }, basketEvent : function(eventId, externalId) { EC$("body").bind("EC_PRODUCT_ACTION_BASKET", function (e, params) { ttq.identify({ external_id: eventId }); ttq.instance('CR7TCBJC77UD53UU2BF0').track("AddToCart", { contents : [params.contents.map(v => ({content_id :"" + params.product_no,content_name: v.name, content_category:params.category ? Object.values(params.category)[0].category_name : '' ,price: v.price, quantity : v.quantity }))],content_type:"product",currency: 'KRW',value:params.total_price },{event_id : externalId} ); }); }, basketEvent2:function() { const self = tiktokCmcPixel; self.pixelEvent(self.basketEvent) } } } if (typeof tiktokCmcPixel !== 'undefined') window.addEventListener('load', tiktokCmcPixel.basketEvent2, false); </script> </div> <!-- CMC script --> <!-- External Script End --> <script type="text/javascript" src="//t1.daumcdn.net/adfit/static/kp.js" charset="utf-8"></script> <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=2412041351" charset="utf-8"></script> <script src="//optimizer.poxo.com/js/common/74770df0bbd2b22460828eb95be90b5ad4566f29/1733204431" crossorigin="anonymous"></script><script src="//optimizer.poxo.com/js/earnestree/8c92eac3d907eab2c165f758044e3837838b64de/1730352784" crossorigin="anonymous"></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) { } CAFE24.KAKAO_PIXEL_BRIDGE.init("7261342749407362781"); 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":"\uc6d0"},"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-225.cafe24.com","log_server2":"elg-db-svcm-319.cafe24.com","mid":"earnestree","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 = '원'; var EC_ASYNC_LIVELINKON_ID = ''; CAFE24.APPSCRIPT_ASSIGN_DATA = CAFE24.APPSCRIPT_ASSIGN_DATA || [{'src':'https://calendar-app.cafe24.com/openapi/inject.js?vs=20240821151926.1&client_id=A8RQp67UIt9nBlqvThz2jC'},{'src':'https://cdn.snapfit.co.kr/script/earnestree.cafe24.com/main.js?vs=20240903142616.1&client_id=FeYs6eUsDEvHiV3TxOQ8qO'},{'src':'https://ecimg.cafe24img.com/pg1028b89924010001/earnestree/web/upload/appfiles/AIFBrluHGdhkEsW6ewuLoA/b7503af77491b662d28759e3512cd215.js?vs=20240809140523.1&client_id=AIFBrluHGdhkEsW6ewuLoA'}]; CAFE24.APPSCRIPT_SDK_DATA = CAFE24.APPSCRIPT_SDK_DATA || ['store','supply','category','product','collection','order','shipping','customer','application','mileage','promotion','community','design','notification','personal','privacy','salesreport']; var EC_APPSCRIPT_ASSIGN_DATA = CAFE24.getDeprecatedNamespace('EC_APPSCRIPT_ASSIGN_DATA'); var EC_APPSCRIPT_SDK_DATA = CAFE24.getDeprecatedNamespace('EC_APPSCRIPT_SDK_DATA'); </script></body></html>

Pages: 1 2 3 4 5 6 7 8 9 10