拉菲 chateau lafite 各年份紅酒

HK$949,999.05
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 = "e6f25132-c00a-41fc-b1cc-a1a1e4cecc30"; // 促销活动数据 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"); if (this.flashsaleData.product_setting.is_redirection && appDiscountUtils.inProductBody(this.element) && e.target !== cur) { this.win.open(`/promotions/discount-default/${this.flashsaleData.discount_info.id}`); } } // 绑定 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 == '8475dfd0-544d-4c59-ad40-b0926d8b3ed9' && variant.id != this.variantId) { this.variantId = variant.id; this.getData(); } } getData() { const reqBody = { product_id: "8475dfd0-544d-4c59-ad40-b0926d8b3ed9", 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 = 'e6f25132-c00a-41fc-b1cc-a1a1e4cecc30'; 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 = '8475dfd0-544d-4c59-ad40-b0926d8b3ed9'; 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 == '8475dfd0-544d-4c59-ad40-b0926d8b3ed9' && 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 = '8475dfd0-544d-4c59-ad40-b0926d8b3ed9'; 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我哋就直送上門
質量保證 如實描述
客戶隱私保障

描述


傳奇之巔:Château Lafite Rothschild 拉菲古堡(拉菲羅斯柴爾德)

波爾多五大酒莊之首 / 皇室御用之酒 / 收藏家的終極目標

在葡萄酒的世界裡,拉菲 (Château Lafite Rothschild) 不僅僅是一個品牌,更是一種象徵。作為法國波爾多 波亞克 (Pauillac) 產區的一級酒莊(First Growth),拉菲憑藉其數百年的穩定品質、細膩優雅的風格以及驚人的陳年潛力,被譽為「葡萄酒中的國王」。無論是 1982 年的傳奇年份,還是近年的卓越新作,拉菲始終是香港紅酒收藏家與投資者的首選。

為什麼選擇拉菲? (The Lafite Difference)

  • 極致的優雅平衡:不同於其他波爾多名莊的強勁厚重,拉菲以「杏仁與紫羅蘭的香氣」及絲綢般的單寧著稱,風格內斂而深邃。

  • 液體黃金的投資價值:拉菲是全球拍賣市場上流動性最高的紅酒之一,抗跌力升值空間長期領跑,是資產配置的優良選擇。

  • 嚴苛的釀造工藝:堅持低產量,僅使用樹齡 45 年以上的葡萄藤釀造正牌酒(Grand Vin),確保每一滴酒液都承載著風土的精華。


深度解析:拉菲精選年份評分與投資指南

對於頂級紅酒而言,年份 (Vintage) 是決定價格與口感的關鍵。友誠酒藏為您整理了拉菲歷年的權威評分(Robert Parker / James Suckling)與適飲期建議,助您精準選購。

📊 拉菲重點年份對比表 (Vintage Chart)

年份 (Vintage) 權威評分 (RP/JS) 口感特徵 (Tasting Notes) 適飲期與收藏建議 投資潛力指數
1982 100 (滿分) 傳奇年份。濃郁的雪松、黑醋栗、煙草與礦物質香氣。口感極其飽滿,餘韻無窮。 目前處於巔峰期,珍稀藏品,適合極致品鑑或拍賣。 ⭐⭐⭐⭐⭐ (極高)
2000 98+ / 100 千禧之作。結構宏大,果香純淨,單寧如天鵝絨般順滑。 已進入適飲期,仍有 30+ 年陳年潛力。 ⭐⭐⭐⭐⭐
2009 99+ / 98 溫暖年份代表。口感甜美、圓潤,帶有濃郁的黑莓與香料氣息。 早飲性佳,但陳年後更顯複雜,極具收藏價值。 ⭐⭐⭐⭐
2010 100 / 100 古典風格的巔峰。酸度、單寧與酒體完美平衡,極具穿透力。 建議醒酒後飲用,是留給下一代的傳家之寶。 ⭐⭐⭐⭐⭐
2012 91 / 94 優雅細緻。展現出鉛筆芯、深色漿果與花香。酒體中等,平衡感極佳。 現已進入適飲期,性價比極高,適合商務宴請或自飲。 ⭐⭐⭐
2016 99 / 100 完美的平衡之作。深邃、精準,展現了拉菲最純粹的優雅。 需長時間陳年,未來升值潛力巨大。 ⭐⭐⭐⭐

友誠酒藏專家提示:如果您尋求即時飲用的享受,推薦選擇 2004、2007、2011 或 2012 年份;如果您是以收藏投資為目的,1982、2000、2009、2010 及 2016 則是不二之選。


專業侍酒建議:如何完美呈現拉菲的風味?

擁有一瓶拉菲只是開始,正確的侍酒方式才能喚醒它的靈魂。

  • 最佳侍酒溫度:16°C - 18°C。溫度過高會使酒精感突兀,過低則會鎖住香氣。

  • 醒酒時間 (Decanting)

    • 年輕年份 (10-15年內):建議醒酒 2-4 小時,以軟化單寧,釋放果香。

    • 成熟年份 (15-30年):建議醒酒 1-2 小時

    • 老老年份 (30年以上):如 1982 年,建議原瓶直立靜置後,飲用前 30 分鐘輕微潷酒(Double Decant)即可,避免香氣過度揮發。

  • 搭配美食:拉菲的優雅風格適合搭配炭烤羊排A5和牛松露料理或陳年硬質芝士(如 Comté)。


友誠酒藏的承諾:源頭直採,信心保證

在購買頂級名莊酒時,來源 (Provenance)真偽 (Authenticity) 是客戶最關心的問題。友誠酒藏憑藉多年業界經驗,為您提供最高級別的保障:

  1. 嚴格溯源:我們僅從值得信賴的法國酒商(Négociants)或擁有良好溫控記錄的私人收藏家處採購。

  2. 專業倉儲:所有紅酒均存放於 24 小時恆溫恆濕的專業酒窖中,確保酒液狀態完美,瓶塞無乾縮滲漏。

  3. 防偽鑒別:針對 2012 年 2 月以後出產的拉菲,瓶身均帶有 Prooftag 氣泡防偽標籤。我們的鑑定團隊會對每一瓶酒的酒標、水位、瓶封進行嚴格檢驗。


常見問題 (FAQ) - 關於拉菲紅酒

Q: 拉菲紅酒為什麼價格差異這麼大? A: 拉菲的價格深受年份評分產量市場稀缺性影響。像 1982 或 2010 這樣的滿分年份,價格會遠高於普通年份。此外,保存狀況(水位、酒標完整度)也會影響二級市場的價格。

Q: 大拉菲(Château Lafite Rothschild)和小拉菲(Carruades de Lafite)有什麼區別? A: 「大拉菲」是正牌酒,使用葡萄園中樹齡最老、品質最好的葡萄釀造,陳年能力極強。「小拉菲」是副牌酒,使用較年輕葡萄藤的果實,梅洛(Merlot)比例較高,口感更早熟、柔順,適合較早飲用,價格也更親民。

Q: 在友誠酒藏購買拉菲,提供送貨服務嗎? A: 是的,我們提供專業的恆溫物流配送。購物滿 HK$10,000 即享免費送貨上門服務,確保美酒在運送過程中不受溫度波動影響,安全送達您手中。

Q: 我該如何辨別拉菲的真假? A: 除了查看 Prooftag 防偽標籤外,酒瓶底部的刻字、酒塞的長度與烙印、以及酒標紙張的紋理都是鑑別點。友誠酒藏承諾100% 正品保證,讓您無憂收藏。

您是否在尋覓心儀已久的稀有佳釀,或希望為您的酒窖增添具備非凡潛力的收藏級紅酒?友誠酒藏精選全球頂級名莊紅酒,為您提供專業的顧問服務、嚴格的品質把控與多元的選擇,確保您購得的每一瓶酒都物超所值!

友誠酒藏的專業銷售優勢

精選頂級酒莊佳釀 我們的酒藏涵蓋廣泛,從法國波爾多勃艮第的傳奇名莊,到美國納帕谷的膜拜酒,乃至全球各地具備投資與品飲雙重價值的限量酒款,讓您輕鬆找到夢寐以求的選擇。

🔍 嚴謹的品質溯源與鑑定 每一瓶在友誠酒藏出售的紅酒都經過嚴格的來源審核專業鑑定。我們確保酒款的儲存條件完美,狀態良好,讓您購得的每一瓶酒都值得信賴,品飲無憂,收藏有保障。

📈 具競爭力的市場定價 憑藉我們對全球紅酒市場的深入洞察與龐大網絡,友誠酒藏能為您提供最具市場競爭力的價格。無論是資深藏家還是新晉愛好者,都能在我們這裡找到性價比最高的頂級紅酒。

🤝 靈活便捷的購買體驗 我們提供多種靈活的交易與交付方式,無論您是親臨酒窖選購,還是需要安全可靠的物流配送,我們都能為您量身定制,確保您的購買體驗順暢無憂。

📦 無論單瓶或整箱,滿足您的不同需求 無論您是想添置一支心儀的酒款,還是為您的酒窖擴充批量收藏,友誠酒藏都能滿足您的個性化需求,提供專業建議與完善服務。

聯繫友誠酒藏,開啟您的品酒之旅!

📱 香港 WhatsApp:92976199

關於友誠酒藏

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

有趣的知識

查看全部