2017年 Romanee-Saint-Vivant 羅曼尼聖維旺紅酒

HK$23,514.40
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 = "2852aee1-f8aa-4970-b5b2-7fbc96ee18fa"; // 促销活动数据 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 == 'e2247e95-ad58-465d-ac8e-6f072e205fee' && variant.id != this.variantId) { this.variantId = variant.id; this.getData(); } } getData() { const reqBody = { product_id: "e2247e95-ad58-465d-ac8e-6f072e205fee", 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 = '2852aee1-f8aa-4970-b5b2-7fbc96ee18fa'; 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 = 'e2247e95-ad58-465d-ac8e-6f072e205fee'; 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 == 'e2247e95-ad58-465d-ac8e-6f072e205fee' && 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 = 'e2247e95-ad58-465d-ac8e-6f072e205fee'; 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我哋就直送上門
質量保證 如實描述
客戶隱私保障

描述

2017年 Domaine de la Romanée-Conti (DRC) - Romanée-Saint-Vivant Grand Cru 深度賞析與收藏指南

🍷 傳奇名莊的優雅靈魂:酒款綜述

這款 2017年 Romanée-Saint-Vivant (RSV) 源自世界最頂級的 Domaine de la Romanée-Conti (DRC/羅曼尼康帝酒莊)是勃艮第(Burgundy)特級園中以「優雅、迷人、極致細膩」著稱的代表作。不同於 Richebourg 的強勁宏大,Romanée-Saint-Vivant 展現的是如絲綢般的質感與深邃的香氣層次。對於資深紅酒收藏家與投資者而言,2017 年份展現了驚人的純淨度與果香表現力,是一款既具備陳年潛力,又能在相對年輕時展現風采的頂級佳釀。

規格項目 詳細資料
酒莊 (Producer) Domaine de la Romanée-Conti (DRC)
產區 (Region) 法國 勃艮第 (Burgundy) / Côte de Nuits / Vosne-Romanée
分級 (Classification) Grand Cru (特級園)
葡萄品種 (Grape) 100% 黑皮諾 (Pinot Noir)
年份 (Vintage) 2017
子地塊 (Lieu-dit) Marey-Monge (酒標標註)
土壤特性 (Terroir) 深厚的棕色石灰岩黏土,賦予酒體卓越的深度
適飲溫度 16°C - 18°C
建議醒酒時間 建議原瓶透氣 2-3 小時,讓香氣充分綻放
酒精濃度 13% - 13.5% (視具體批次微調)

👅 專業品鑑筆記:感官的極致饗宴

2017年的氣候賦予了這款酒極佳的平衡感與通透度,被評為「經典且迷人」的年份。

  • 色澤 (Appearance): 呈現深邃而明亮的寶石紅,邊緣帶有年輕活力的紫羅蘭光澤。

  • 香氣 (Aroma): 開瓶即散發出極具標誌性的 乾燥玫瑰花瓣東方香料 氣息。隨後,新鮮採摘的紅櫻桃、野草莓、黑莓果香層層遞進,並伴隨著檀香、濕潤泥土與些許礦物質的冷冽感,展現出極高的複雜度。

  • 口感 (Palate): 入口瞬間展現出 Romanée-Saint-Vivant 特有的絲絨質感。單寧精緻而緊密,毫無粗糙感。酸度活潑支撐起酒體骨架,紅果風味在口中爆發,中後段帶出煙燻與烘烤香草的餘韻。

  • 尾韻 (Finish): 餘味悠長繚繞,帶有回甘的甜美與優雅的辛香,展現了DRC特級園無與倫比的持久力。


🗺️ 風土與釀造工藝:不可複製的稀缺性

  1. 特級園風土 (The Terroir): Romanée-Saint-Vivant 位於 Vosne-Romanée 村莊,緊鄰 Romanée-Conti 與 Richebourg。其土壤較深,黏土含量略高,這正是賦予其「女性化」、「優雅」特質的關鍵所在。DRC 在此擁有約 5.29 公頃的葡萄園,是該特級園最大的地主。

  2. 生物動力法 (Biodynamic Farming): DRC 酒莊全面採用生物動力法種植,完全不使用化學農藥,甚至使用馬匹進行耕作,以避免土壤壓實,最大程度地保護了 2017 年葡萄的天然風味與風土表達。

  3. Marey-Monge 的歷史印記: 酒標上註明的 "Marey-Monge" 字樣,代表了這塊田地的歷史傳承(DRC 於 1966 年開始租種,後於 1988 年正式買下),這是鑑別真偽與了解酒款歷史的重要細節。


💎 為什麼選擇 2017 年份進行收藏或投資?

  • 稀缺性與升值空間: DRC 的年產量極低,Romanée-Saint-Vivant 每年全球配額僅數千瓶。作為硬通貨,其在拍賣市場的價格連年攀升,是抗通脹的優質資產。

  • 年份特質: 相比 2015 或 2016 的濃縮強勁,2017 年份被酒評家認為是 "The Vintage of Pleasure" (愉悅之年)。它現在已經展現出驚人的適飲性,同時具備 20-30 年以上的陳年潛力。

  • 送禮與品味的象徵: 無論是商務宴請還是作為頂級禮品,一瓶 DRC RSV 足以展現送禮者非凡的品味與對受禮者的極度重視。


❓ 常見問題 (FAQ) - 專家解答

Q: 這瓶 2017 Romanée-Saint-Vivant 現在可以喝嗎? A: 可以。2017 年份的一個巨大優勢在於其早飲性較佳,果香開放。但若想體驗其陳年後的森林地表與松露氣息,建議繼續窖藏 5-10 年,風味將更臻完美。

Q: 為什麼要在「友誠酒藏」購買如此昂貴的酒款? A:

  • 來源保證: 我們只經手來源清晰、保存履歷完整的頂級酒款,杜絕假酒風險。

  • 恆溫倉儲: 頂級嬌貴的黑皮諾對溫度極其敏感。我們採用 24 小時專業恆溫恆濕倉儲,確保您收到的酒款處於最佳狀態。

  • 隱私與專送: 對於高價值酒款,我們提供高度隱私的交易保護與專人專車配送服務。

Q: 搭配什麼食物最合適? A: 建議搭配精緻的野味(如烤鴿肉、鵪鶉)、帶有松露醬汁的菲力牛排,或是陳年的康泰乳酪(Comté)。避免搭配過於辛辣或酸度過高的食物,以免掩蓋酒體細膩的風味。

友誠酒藏榮幸呈獻 2017年 Romanée-Saint-Vivant 紅酒,這款來自法國勃艮第的頂級珍釀展現了該產區的卓越品質。此酒以聖維旺(Saint-Vivant)特級園的優雅風采著稱,是DRC著名的葡萄酒之一。

品酒特色:

  • 複雜風味: 2017年 Romanée-Saint-Vivant 展現出多層次的風味,融合了紅莓、黑莓、香草和淡淡的花香,散發出極具誘惑的芳香。

  • 結構平衡: 酒體豐滿而平衡,單寧柔順,口感圓潤。這使得該酒即使年輕時也能展現出悠長的潛力。

  • 悠久收結: 隨著時間的推移,2017年的 Romanée-Saint-Vivant 預計會進一步演變,呈現出更豐富、更複雜的風味特點。

為什麼選擇友誠酒藏?

  • 專業保證: 友誠酒藏擁有專業的品酒師團隊,確保所售酒款的卓越品質與價值。

  • 公道價格: 我們珍惜每一瓶頂級紅酒,提供公正且有競爭力的市場價格。

  • 簡便迅速: 透過我們的聯絡方式,客戶可以輕鬆快速地洽詢,節省寶貴的時間。

  • 保密安全: 友誠酒藏尊重客戶隱私,所有交易資訊將受到嚴格保密,保障客戶權益。

選擇友誠酒藏,為您的收藏增添非凡價值,同時享受我們專業、便捷的選購服務。

聯繫方式 WhatsApp: 92976199

關於友誠酒藏

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

有趣的知識

查看全部