2011年拉圖紅酒 Chateau Latour

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 = "5a36b8d1-4596-4b2e-b6ca-5d8e78659803"; // 促销活动数据 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 == 'd0cfb6d0-24c8-4a80-a69d-dd800b3bb2cc' && variant.id != this.variantId) { this.variantId = variant.id; this.getData(); } } getData() { const reqBody = { product_id: "d0cfb6d0-24c8-4a80-a69d-dd800b3bb2cc", 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 = '5a36b8d1-4596-4b2e-b6ca-5d8e78659803'; 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 = 'd0cfb6d0-24c8-4a80-a69d-dd800b3bb2cc'; 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 == 'd0cfb6d0-24c8-4a80-a69d-dd800b3bb2cc' && 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 = 'd0cfb6d0-24c8-4a80-a69d-dd800b3bb2cc'; 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我哋就直送上門
質量保證 如實描述
客戶隱私保障

描述

🏆 友誠酒藏 · 呈獻 2011 年拉圖紅酒 · 波爾多頂級珍釀 · 限量發售 🏆

友誠酒藏誠意為您呈獻 2011 年 Château Latour 拉圖紅酒。這款來自波爾多五大一級莊之一的拉圖酒莊珍釀,即使在挑戰性年份中,依然憑藉其嚴格的選果和精湛的釀造工藝,釀造出了品質卓越的葡萄酒。它在收藏家和投資者中始終保持著極高的聲譽和價值。

🍷 2011 年拉圖紅酒特點

  • 產區:法國波爾多波雅克 (Pauillac)

  • 分級:波爾多一級酒莊 (Premier Grand Cru Classé)

  • 主要葡萄品種:以赤霞珠 (Cabernet Sauvignon) 為主

  • 香氣特點:展現經典的黑醋栗、雪松、礦物質和煙草香氣,層次豐富。

  • 口感結構:單寧結實,酸度平衡,口感優雅細膩,餘韻悠長。

💎 2011 年拉圖市場價值

儘管 2011 年被認為是波爾多具有挑戰性的年份,但拉圖酒莊在這一年份中仍釀造出了品質卓越的葡萄酒。由於產量有限且品質出眾,2011 年拉圖在收藏市場中持續保持穩定價值。

隨著時間推移和陳年潛力的展現,這一年份的拉圖紅酒價值逐漸提升,目前正處於適合飲用和收藏的黃金時期

🍷 2011 Château Latour 深度解析:經典與力量的完美平衡

作為波爾多五大酒莊 (First Growths) 之一,拉圖酒莊 (Château Latour) 向來以酒體強勁、陳年潛力極佳著稱。2011 年份雖然夾在傳奇的 2009 和 2010 年份之後,但拉圖憑藉其卓越的風土條件(L'Enclos),在這一挑戰性年份中依然釀造出了令人驚嘆的佳釀。這款酒展現了波爾多左岸經典的結構感,紅酒收藏家高端品酒師不可忽視的高性價比之選。

📊 產品詳細規格 (Technical Specifications)

為了讓您更了解這款頂級佳釀,我們整理了詳細的釀造數據與規格:

規格項目 詳細資訊
酒莊名稱 拉圖酒莊 (Château Latour)
產區 (Appellation) 法國波爾多 - 普伊勒 (Pauillac, Bordeaux)
分級制度 1855年列級名莊 - 一級莊 (Premier Grand Cru Classé)
葡萄品種 84.5% 赤霞珠 (Cabernet Sauvignon), 15% 梅洛 (Merlot), 0.5% 小維多 (Petit Verdot)
酒精濃度 13%
橡木桶陳釀 100% 全新法國橡木桶
適飲期 2020 - 2045+ (現已進入適飲窗口,亦可繼續陳年)
醒酒建議 建議提前醒酒 2 - 3 小時,以釋放深層香氣
適飲溫度 16°C - 18°C

🏆 國際酒評家評分 (Critics Scores)

2011年的拉圖紅酒獲得了國際權威酒評機構的高度認可,證明了其在波爾多名莊酒中的穩定品質與投資價值。

評分機構 / 酒評家 分數 評價摘要
Robert Parker (Wine Advocate) 93-95 / 100 "展現了拉圖標誌性的力量感,單寧結構緊緻,餘韻悠長。"
James Suckling 95 / 100 "令人難以置信的純淨果香,帶有黑醋栗與礦物質氣息,非常優雅。"
Wine Spectator 94 / 100 "結構宏大,帶有石墨、煙草與深色漿果的複雜層次。"
Jancis Robinson 17.5 / 20 "經典的普伊勒風格,酸度清新,極具陳年潛力。"

👅 深度品鑑筆記 (Tasting Notes)

2011 Château Latour 被視為回歸古典風格的代表作。不同於暖年份的濃郁甜美,2011年展現的是精準、細膩與深邃

  • 色澤:深邃的寶石紅偏紫色,邊緣帶有輕微的石榴紅色澤,顯示出其陳年演變的開端。

  • 香氣 (Nose):初聞帶有強烈的黑醋栗 (Cassis) 與黑莓果香,隨後展現出普伊勒產區特有的石墨 (Graphite)、雪松木、濕泥土與些許松露的複雜香氣。經過醒酒後,會散發出優雅的紫羅蘭花香。

  • 口感 (Palate):入口單寧充沛但打磨得非常圓潤,酒體飽滿有力。酸度鮮活,平衡了濃郁的黑色水果風味。中段帶有辛香料與黑巧克力的層次感。

  • 餘韻 (Finish):收結乾淨且極為悠長,礦物質的鹹鮮感在口中久久不散,展現了一級莊應有的王者風範。

🍽️ 餐酒搭配建議 (Food Pairing)

這款酒體宏大的紅酒,最適合搭配油脂豐富或風味濃郁的高級料理,能與食物中的蛋白質產生完美的化學反應:

  • 經典搭配:乾式熟成牛排 (Dry-aged Steak)、烤羊排配迷迭香。

  • 奢華搭配:黑松露燉飯、香煎鵝肝、紅酒燉牛肉 (Boeuf Bourguignon)。

  • 起司搭配:陳年孔泰起司 (Comté) 或切達起司。


💰 為什麼選擇 2011 年份進行收藏或投資?

在考慮紅酒投資或自用收藏時,2011 年份的拉圖提供了一個極具吸引力的機會:

  1. 價格優勢:相較於 2009 或 2010 等「世紀年份」的高昂價格,2011 年份的價格更為親民,但依然保持了拉圖酒莊的頂級水準。

  2. 市場稀缺性:拉圖酒莊已於 2012 年退出波爾多期酒市場 (En Primeur),改為酒莊直出 (Ex-Château),這意味著市場上流通的舊年份庫存將越來越少,稀缺性推動了長期的升值潛力。

  3. 黃金適飲期:現在正是 2011 年份開始展現其魅力的時刻,您無需像購買新年份酒那樣等待數十年,現在即可開瓶享受,或繼續存放 10-20 年。


🛡️ 友誠酒藏的專業承諾

購買頂級佳釀,來源與保存至關重要。我們為您提供的不僅僅是一瓶酒,而是頂級的服務體驗:

  • WSET 專業選品:每一款酒均經過認證品酒師嚴格篩選。

  • 恆溫恆濕倉儲:所有名莊酒均存放在專業酒窖環境中,確保酒液處於最佳狀態。

  • 真偽保證:嚴格把關供應鏈,確保您收到的每一瓶 Château Latour 均為原廠正品,讓您的紅酒收藏無後顧之憂。

📦 友誠酒藏 · 您的購酒優勢

友誠酒藏致力於為您提供最優質的頂級葡萄酒。我們確保您購得的每一瓶酒都經過嚴格篩選,品質卓越:

  • 專業鑑定:友誠酒藏所有酒款均由具備 WSET 認證的專業品酒師進行評估,確保其真實性與最佳保存狀態。

  • 理想儲存:酒款存放於恆溫恆濕的專業酒窖,完美保留其原始風味和價值。

  • 稀有現貨:2011 年拉圖紅酒數量有限,是您不容錯過的收藏機會。

  • 品質要求透明:我們重視酒液位置(理想狀態為瓶頸或肩部位置)、酒標完整度(無嚴重破損或褪色)、存儲條件(恆溫恆濕環境保存較佳),若帶原廠木箱或有可靠來源證明,將提升其收藏價值。

❓ 常見問題

Q: 2011 年的拉圖紅酒與其他年份相比有什麼特點? A: 2011 年是波爾多較具挑戰性的年份,但拉圖酒莊嚴格的選果和釀造工藝確保了這一年份的酒依然保持卓越品質。相比更知名的 2009 和 2010 年份,2011 年份價格更為親民,同時具備良好的陳年潛力和投資價值。

Q: 如何確保購買的拉圖紅酒品質優良? A: 友誠酒藏承諾所有酒款均來源可靠,經過專業鑑定,並在理想的環境下儲存。我們建議您在選購時可向我們諮詢酒瓶照片、酒標細節和存儲條件信息。

📱 立即聯繫,珍藏頂級拉圖!

對這款 2011 年 Château Latour 或友誠酒藏的其他高端紅酒感興趣嗎?請即刻聯繫我們:

WhatsApp: 92976199(推薦,可直接發送酒款照片)

營業時間:24 小時

關於友誠酒藏

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

有趣的知識

查看全部