2008年 Romanee-Conti Richebourg 羅曼尼裡奇堡紅酒

HK$37,190.60
class SpzCustomDiscountFlashsale extends SPZ.BaseElement { constructor(element) { super(element); this.xhr_ = SPZServices.xhrFor(this.win); this.getFlashSaleApi = "\/api\/storefront\/promotion\/flashsale\/display_setting\/product_setting"; this.timer = null; this.variantId = "c69aa37e-39fe-4ed5-a69c-f1874e712cfd"; // 促销活动数据 this.flashsaleData = {} } isLayoutSupported(layout) { return layout == SPZCore.Layout.CONTAINER; } buildCallback() { this.templates_ = SPZServices.templatesForDoc(); this.viewport_ = this.getViewport(); // 挂载bind函数 解决this指向问题 this.render = this.render.bind(this); this.resize = this.resize.bind(this); this.switchVariant = this.switchVariant.bind(this); } mountCallback() { // 获取数据 this.getData(); this.element.onclick = (e) => { const cur = this.win.document.querySelector(".app_discount_flashsale_desc"); const setting = this.flashsaleData.product_setting; const landingUrl = `/promotions/discount-default/${this.flashsaleData.discount_info.id}`; const finalUrl = appDiscountUtils.resolveDiscountHref(setting, landingUrl); if (finalUrl && appDiscountUtils.inProductBody(this.element) && e.target !== cur) { this.win.open(finalUrl, '_blank', 'noopener'); } } // 绑定 this.viewport_.onResize(this.resize); // 监听子款式切换,重新渲染 this.win.document.addEventListener('dj.variantChange', this.switchVariant); } unmountCallback() { // 解绑 this.viewport_.removeResize(this.resize); this.win.document.removeEventListener('dj.variantChange', this.switchVariant); // 清除定时器 if (this.timer) { clearTimeout(this.timer); this.timer = null; } } resize() { if (this.timer) { clearTimeout(this.timer) this.timer = null; } this.timer = setTimeout(() => { this.render(); }, 200) } switchVariant(event) { const variant = event.detail.selected; if (variant.product_id == '7e3f91ce-6dcf-4914-b76b-6bf713c32de2' && variant.id != this.variantId) { this.variantId = variant.id; this.getData(); } } getData() { const reqBody = { product_id: "7e3f91ce-6dcf-4914-b76b-6bf713c32de2", product_type: "default", variant_id: this.variantId } this.flashsaleData = {}; this.win.fetch(this.getFlashSaleApi, { method: "POST", body: JSON.stringify(reqBody), headers: { "Content-Type": "application/json" } }).then(async (response) => { if (response.ok) { this.flashsaleData = await response.json(); this.render(); } else { this.clearDom(); } }).catch(err => { this.clearDom(); }); } clearDom() { const children = this.element.querySelector('*:not(template)'); children && SPZCore.Dom.removeElement(children); } render() { this.templates_ .findAndRenderTemplate(this.element, { isMobile: appDiscountUtils.judgeMobile(), isRTL: appDiscountUtils.judgeRTL(), inProductDetail: appDiscountUtils.inProductBody(this.element), flashsaleData: this.flashsaleData, image_domain: this.win.SHOPLAZZA.image_domain, }) .then((el) => { this.clearDom(); this.element.appendChild(el); }) } } SPZ.defineElement('spz-custom-discount-flashsale', SpzCustomDiscountFlashsale);
const TAG = "spz-custom-product-automatic"; class SpzCustomProductAutomatic extends SPZ.BaseElement { constructor(element) { super(element); this.variant_id = 'c69aa37e-39fe-4ed5-a69c-f1874e712cfd'; this.isRTL = SPZ.win.document.dir === 'rtl'; this.isAddingToCart_ = false; // 加购中状态 } static deferredMount() { return false; } buildCallback() { this.action_ = SPZServices.actionServiceForDoc(this.element); this.templates_ = SPZServices.templatesForDoc(this.element); this.xhr_ = SPZServices.xhrFor(this.win); this.setupAction_(); this.viewport_ = this.getViewport(); } mountCallback() { this.init(); // 监听事件 this.bindEvent_(); } async init() { this.handleFitTheme(); const data = await this.getDiscountList(); this.renderApiData_(data); } async getDiscountList() { const productId = '7e3f91ce-6dcf-4914-b76b-6bf713c32de2'; const variantId = this.variant_id; const productType = 'default'; const reqBody = { product_id: productId, variant_id: variantId, discount_method: "DM_AUTOMATIC", customer: { customer_id: window.C_SETTINGS.customer.customer_id, email: window.C_SETTINGS.customer.customer_email }, product_type: productType } const url = `/api/storefront/promotion/display_setting/text/list`; const data = await this.xhr_.fetchJson(url, { method: "post", body: reqBody }).then(res => { return res; }).catch(err => { this.setContainerDisabled(false); }) return data; } async renderDiscountList() { this.setContainerDisabled(true); const data = await this.getDiscountList(); this.setContainerDisabled(false); // 重新渲染 抖动问题处理 this.renderApiData_(data); } clearDom() { const children = this.element.querySelector('*:not(template)'); children && SPZCore.Dom.removeElement(children); } async renderApiData_(data) { const parentDiv = document.querySelector('.automatic_discount_container'); const newTplDom = await this.getRenderTemplate(data); if (parentDiv) { parentDiv.innerHTML = ''; parentDiv.appendChild(newTplDom); } else { console.log('automatic_discount_container is null'); } } doRender_(data) { const renderData = data || {}; return this.templates_ .findAndRenderTemplate(this.element, renderData) .then((el) => { this.clearDom(); this.element.appendChild(el); }); } async getRenderTemplate(data) { const renderData = data || {}; return this.templates_ .findAndRenderTemplate(this.element, { ...renderData, isRTL: this.isRTL }) .then((el) => { this.clearDom(); return el; }); } setContainerDisabled(isDisable) { const automaticDiscountEl = document.querySelector('.automatic_discount_container_outer'); if(isDisable) { automaticDiscountEl.setAttribute('disabled', ''); } else { automaticDiscountEl.removeAttribute('disabled'); } } // 绑定事件 bindEvent_() { window.addEventListener('click', (e) => { let containerNodes = document.querySelectorAll(".automatic-container .panel"); let bool; Array.from(containerNodes).forEach((node) => { if(node.contains(e.target)){ bool = true; } }) // 是否popover面板点击范围 if (bool) { return; } if(e.target.classList.contains('drowdown-icon') || e.target.parentNode.classList.contains('drowdown-icon')){ return; } const nodes = document.querySelectorAll('.automatic-container'); Array.from(nodes).forEach((node) => { node.classList.remove('open-dropdown'); }) // 兼容主题 this.toggleProductSticky(true); }) // 监听变体变化 document.addEventListener('dj.variantChange', async(event) => { // 重新渲染 const variant = event.detail.selected; if (variant.product_id == '7e3f91ce-6dcf-4914-b76b-6bf713c32de2' && variant.id != this.variant_id) { this.variant_id = variant.id; this.renderDiscountList(); } }); } // 兼容主题 handleFitTheme() { // top 属性影响抖动 let productInfoEl = null; if (window.SHOPLAZZA.theme.merchant_theme_name === 'Wind' || window.SHOPLAZZA.theme.merchant_theme_name === 'Flash') { productInfoEl = document.querySelector('.product-info-body .product-sticky-container'); } else if (window.SHOPLAZZA.theme.merchant_theme_name === 'Hero') { productInfoEl = document.querySelector('.product__info-wrapper .properties-content'); } if(productInfoEl){ productInfoEl.classList.add('force-top-auto'); } } // 兼容 wind/flash /hero 主题 (sticky属性影响 popover 层级展示, 会被其他元素覆盖) toggleProductSticky(isSticky) { let productInfoEl = null; if (window.SHOPLAZZA.theme.merchant_theme_name === 'Wind' || window.SHOPLAZZA.theme.merchant_theme_name === 'Flash') { productInfoEl = document.querySelector('.product-info-body .product-sticky-container'); } else if (window.SHOPLAZZA.theme.merchant_theme_name === 'Hero') { productInfoEl = document.querySelector('.product__info-wrapper .properties-content'); } if(productInfoEl){ if(isSticky) { // 还原该主题原有的sticky属性值 productInfoEl.classList.remove('force-position-static'); return; } productInfoEl.classList.toggle('force-position-static'); } } setupAction_() { this.registerAction('handleDropdown', (invocation) => { const discount_id = invocation.args.discount_id; const nodes = document.querySelectorAll('.automatic-container'); Array.from(nodes).forEach((node) => { if(node.getAttribute('id') != `automatic-${discount_id}`) { node.classList.remove('open-dropdown'); } }) const $discount_item = document.querySelector(`#automatic-${discount_id}`); $discount_item && $discount_item.classList.toggle('open-dropdown'); // 兼容主题 this.toggleProductSticky(); }); // 加购事件 this.registerAction('handleAddToCart', (invocation) => { // 阻止事件冒泡 const event = invocation.event; if (event) { event.stopPropagation(); event.preventDefault(); } // 如果正在加购中,直接返回 if (this.isAddingToCart_) { return; } const quantity = invocation.args.quantity || 1; this.addToCart(quantity); }); } // 加购方法 async addToCart(quantity) { // 设置加购中状态 this.isAddingToCart_ = true; const productId = '7e3f91ce-6dcf-4914-b76b-6bf713c32de2'; const variantId = this.variant_id; const url = '/api/cart'; const reqBody = { product_id: productId, variant_id: variantId, quantity: quantity }; try { const data = await this.xhr_.fetchJson(url, { method: 'POST', body: reqBody }); // 触发加购成功提示 this.triggerAddToCartToast_(); return data; } catch (error) { error.then(err=>{ this.showToast_(err?.message || err?.errors?.[0] || 'Unknown error'); }) } finally { // 无论成功失败,都重置加购状态 this.isAddingToCart_ = false; } } showToast_(message) { const toastEl = document.querySelector("#apps-match-drawer-add_to_cart_toast"); if (toastEl) { SPZ.whenApiDefined(toastEl).then((apis) => { apis.showToast(message); }); } } // 触发加购成功提示 triggerAddToCartToast_() { // 如果主题有自己的加购提示,则不显示 const themeAddToCartToastEl = document.querySelector('#add-cart-event-proxy'); if (themeAddToCartToastEl) return; // 显示应用的加购成功提示 this.showToast_("添加成功"); } triggerEvent_(name, data) { const event = SPZUtils.Event.create(this.win, `${ TAG }.${ name }`, data || {}); this.action_.trigger(this.element, name, event); } isLayoutSupported(layout) { return layout == SPZCore.Layout.CONTAINER; } } SPZ.defineElement(TAG, SpzCustomProductAutomatic);
class SpzCustomDiscountBundle extends SPZ.BaseElement { constructor(element) { super(element); } isLayoutSupported(layout) { return layout == SPZCore.Layout.LOGIC; } mountCallback() {} unmountCallback() {} setupAction_() { this.registerAction('showAddToCartToast', () => { const themeAddToCartToastEl = document.querySelector('#add-cart-event-proxy') if(themeAddToCartToastEl) return const toastEl = document.querySelector('#apps-match-drawer-add_to_cart_toast') SPZ.whenApiDefined(toastEl).then((apis) => { apis.showToast("添加成功"); }); }); } buildCallback() { this.setupAction_(); }; } SPZ.defineElement('spz-custom-discount-toast', SpzCustomDiscountBundle);
/** @private {string} */ class SpzCustomAnchorScroll extends SPZ.BaseElement { static deferredMount() { return false; } constructor(element) { super(element); /** @private {Element} */ this.scrollableContainer_ = null; } isLayoutSupported(layout) { return layout == SPZCore.Layout.LOGIC; } buildCallback() { this.viewport_ = this.getViewport(); this.initActions_(); } setTarget(containerId, targetId) { this.containerId = '#' + containerId; this.targetId = '#' + targetId; } scrollToTarget() { const container = document.querySelector(this.containerId); const target = container.querySelector(this.targetId); const {scrollTop} = container; const eleOffsetTop = this.getOffsetTop_(target, container); this.viewport_ .interpolateScrollIntoView_( container, scrollTop, scrollTop + eleOffsetTop ); } initActions_() { this.registerAction( 'scrollToTarget', (invocation) => this.scrollToTarget(invocation?.caller) ); this.registerAction( 'setTarget', (invocation) => this.setTarget(invocation?.args?.containerId, invocation?.args?.targetId) ); } /** * @param {Element} element * @param {Element} container * @return {number} * @private */ getOffsetTop_(element, container) { if (!element./*OK*/ getClientRects().length) { return 0; } const rect = element./*OK*/ getBoundingClientRect(); if (rect.width || rect.height) { return rect.top - container./*OK*/ getBoundingClientRect().top; } return rect.top; } } SPZ.defineElement('spz-custom-anchor-scroll', SpzCustomAnchorScroll); const STRENGTHEN_TRUST_URL = "/api/strengthen_trust/settings"; class SpzCustomStrengthenTrust extends SPZ.BaseElement { constructor(element) { super(element); this.renderElement_ = null; } isLayoutSupported(layout) { return layout == SPZCore.Layout.CONTAINER; } buildCallback() { this.xhr_ = SPZServices.xhrFor(this.win); const renderId = this.element.getAttribute('render-id'); SPZCore.Dom.waitForChild( document.body, () => !!document.getElementById(renderId), () => { this.renderElement_ = SPZCore.Dom.scopedQuerySelector( document.body, `#${renderId}` ); if (this.renderElement_) { this.render_(); } this.registerAction('track', (invocation) => { this.track_(invocation.args); }); } ); } render_() { this.fetchData_().then((data) => { if (!data) { return; } SPZ.whenApiDefined(this.renderElement_).then((apis) => { apis?.render(data); document.querySelector('#strengthen-trust-render-1539149753700').addEventListener('click',(event)=>{ if(event.target.nodeName == 'A'){ this.track_({type: 'trust_content_click'}); } }) }); }); } track_(data = {}) { const track = window.sa && window.sa.track; if (!track) { return; } track('trust_enhancement_event', data); } parseJSON_(string) { let result = {}; try { result = JSON.parse(string); } catch (e) {} return result; } fetchData_() { return this.xhr_ .fetchJson(STRENGTHEN_TRUST_URL) .then((responseData) => { if (!responseData || !responseData.data) { return null; } const data = responseData.data; const moduleSettings = (data.module_settings || []).reduce((result, moduleSetting) => { return result.concat(Object.assign(moduleSetting, { logos: (moduleSetting.logos || []).map((item) => { return moduleSetting.logos_type == 'custom' ? this.parseJSON_(item) : item; }) })); }, []); return Object.assign(data, { module_settings: moduleSettings, isEditor: window.self !== window.top, }); }); } } SPZ.defineElement('spz-custom-strengthen-trust', SpzCustomStrengthenTrust);
24小時在線咨詢
買滿$10,000我哋就直送上門
質量保證 如實描述
客戶隱私保障

描述

友誠酒藏專業銷售服務現誠摯向您提供高品質的選購體驗,我們特別呈獻並尊重每一瓶紅酒的獨特價值。友誠酒藏榮幸推出 2008年 Romanée-Conti Richebourg 羅曼尼裡奇堡紅酒,以下為此珍釀的詳細介紹:

  • 年份特色: 2008年是羅曼尼裡奇堡一個令人難忘的年份,充滿著優雅和複雜性。這款紅酒展現出獨特的果香和風土特色,呈現出羅曼尼裡奇堡一貫的高品質。

  • 保存狀態: 我們確保此酒的保存狀態極佳,包括標籤、瓶身和瓶蓋等方面均保持完好,並一直存放於專業的溫濕控酒窖中。

  • 品鑑價值: Romanée-Conti Richebourg 作為一個頂級莊園,其年份紅酒一直備受推崇。我們根據酒款的卓越品鑑價值,提供您公道的售價。

  • 購買流程: 我們的購買流程簡單而迅速。您只需透過下方的聯絡方式與我們聯繫,我們的專業團隊將快速回應您的查詢,確保您能輕鬆購得心儀的酒款。

  • 保密保護: 我們承諾保護客戶的隱私,您的個人資訊和交易詳情都將嚴格保密。

🍷 深度品鑑:2008 Domaine de la Romanée-Conti Richebourg Grand Cru

酒款亮點: 2008 年的 DRC Richebourg 被視為勃艮第「奇蹟之年」的經典代表。這款酒完美融合了 Richebourg 特有的強勁骨架與 2008 年份特有的清冽酸度,展現出無與倫比的優雅與陳年潛力。對於頂級收藏家而言,這是一瓶兼具力量與細膩的藝術品。

📊 產品詳細規格 (Technical Specifications)

規格項目 詳細資料
酒莊 (Producer) Domaine de la Romanée-Conti (DRC)
產區 (Region) 法國勃艮第 (Burgundy), 沃恩-羅曼尼 (Vosne-Romanée)
分級 (Classification) 特級園 (Grand Cru)
葡萄品種 (Grape) 100% 黑皮諾 (Pinot Noir)
年份 (Vintage) 2008
平均樹齡 (Vine Age) 平均 40-50 年以上老藤
年產量 (Production) 極度稀缺 (該年份產量極低)
評分 (Scores) Robert Parker: 94-96
適飲期 (Drink Date) 2023 - 2050+ (現已進入適飲期,但仍有極大陳年空間)

🌟 2008 年份報告與風土特色

年份特徵: 2008 年在勃艮第是一個涼爽且充滿挑戰的年份,但收穫季節完美的「北風」拯救了葡萄,帶來了漫長的成熟期。這賦予了 2008 年 DRC Richebourg 極其精緻的酸度和清晰的結構感。相較於溫暖年份的肥美,2008 年展現的是**「古典、純淨、通透」**的風格,是資深勃艮第愛好者追捧的智者之選。

Richebourg 風土解析: Richebourg(李其堡)特級園位於 La Romanée-Conti 和 La Romanée 的北側。在 DRC 的產品線中,它常被形容為「身著絲絨的拳擊手」。它比 La Tâche 更具野性與香料感,擁有宏大的酒體結構,需要時間來馴服其單寧,而 2008 年的優雅特質恰好平衡了這份野性。


👅 專業品飲筆記 (Tasting Notes)

  • 色澤: 深邃且明亮的紅寶石色,邊緣帶有石榴紅的光澤。

  • 香氣: 展現出爆炸性的香氣層次。初聞是黑色漿果(黑櫻桃、黑醋栗)的氣息,隨後散發出紫羅蘭、東方香料、丁香、以及陳年帶來的森林地表(Sous-bois)和松露的複雜香氣。

  • 口感: 入口強勁有力,單寧絲滑但緊緻。酸度活躍,支撐起飽滿的酒體。尾韻悠長,帶有礦物質的鹹鮮感和摩卡咖啡的回味。這是一款具有「肌肉感」的黑皮諾。


🍽️ 侍酒與收藏指南 (Serving & Storage)

為了讓您手中的 2008 DRC Richebourg 發揮最佳表現,友誠酒藏建議:

侍酒建議 說明
最佳侍酒溫度 16°C - 18°C (避免溫度過高導致酒精感突出)
醒酒時間 建議原瓶醒酒 2-3 小時,或使用寬底醒酒器 1-1.5 小時以釋放香氣。
酒杯選擇 建議使用大肚的勃艮第杯 (Burgundy Glass) 以聚集細膩香氣。
搭配餐點 慢燉野味、松露料理、烤乳鴿、高品質的和牛或陳年康泰芝士 (Comté)。
保存建議 需存放於恆溫 (12-14°C)、恆濕 (70%) 且避光的專業酒櫃中。

💡 常見問題與投資分析 (FAQ & Investment Value)

Q: 為什麼 2008 年的 DRC Richebourg 具有極高的收藏價值? A: 除了 DRC 本身作為「酒王」的品牌溢價外,2008 年因氣候原因產量稀少。隨著時間推移,市場上流通的瓶數急劇減少。Richebourg 強大的陳年潛力(可達 40-50 年)使其成為抵抗通貨膨脹的優質實物資產。

Q: 如何確保這瓶酒的來源與真偽? A: 友誠酒藏承諾所有名莊酒款均經過嚴格檢驗。我們關注酒標完整性、酒液水位 (Fill level)、以及瓶封狀態。對於 DRC 這樣的高單價酒款,我們確保其來源可追溯,並一直保存在專業的溫濕控環境中,這對老酒的品質至關重要。

Q: 現在開瓶還是繼續收藏? A: 2008 年份目前已進入「試飲窗口」的初期。如果您喜歡清新、果香與酸度並存的口感,現在即可享用(需醒酒)。如果您追求更深沉的菌菇、皮革等三級香氣(Tertiary aromas),建議可再收藏 5-10 年。

選擇友誠酒藏,是為您的珍藏增添不凡價值的明智選擇。我們致力於提供專業、可靠、保密的選購體驗,讓這瓶頂級紅酒在您的窖藏中最大程度地發揮其價值。

聯繫方式 WhatsApp: 92976199

關於友誠酒藏

友誠酒藏以誠信為本,致力於為香港及澳門的客戶搜羅全球頂級佳釀。我們用心挑選每一款酒,不僅提供廣受歡迎的經典酒款,更積極發掘獨具特色的小眾精品。我們堅持所有酒品來源可靠,確保正品,並提供具競爭力的價格。瀏覽我們的精選酒單,或直接聯繫我們,讓友誠酒藏為您推薦心儀的佳釀。

有趣的知識

查看全部