2004 Chateau Latour 拉圖 紅酒

HK$3,730.65
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 = "1deb15fc-618c-4df5-ae67-f93e04e3dcd3"; // 促销活动数据 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 == '76058335-7ba6-412c-92a2-3f378db0382d' && variant.id != this.variantId) { this.variantId = variant.id; this.getData(); } } getData() { const reqBody = { product_id: "76058335-7ba6-412c-92a2-3f378db0382d", 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 = '1deb15fc-618c-4df5-ae67-f93e04e3dcd3'; 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 = '76058335-7ba6-412c-92a2-3f378db0382d'; 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 == '76058335-7ba6-412c-92a2-3f378db0382d' && 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 = '76058335-7ba6-412c-92a2-3f378db0382d'; 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我哋就直送上門
質量保證 如實描述
客戶隱私保障

描述

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

友誠酒藏誠意為香港葡萄酒愛好者呈獻 2004 年 Château Latour 拉圖紅酒。這款來自波爾多左岸梅多克地區標誌性一級酒莊的珍釀,完美展現了其典型的風土特色。2004 年的拉圖,現已進入理想飲用期,是您不容錯過的收藏與品鑑佳選。

🍷 2004 年 Château Latour 市場價值分析

  • 市場定位:作為波爾多左岸梅多克地區的標誌性一級酒莊,2004 年拉圖展現出典型的梅多克風土特色,兼具力量與優雅。

  • 口感特點:酒體中等至飽滿,散發著濃郁的黑醋栗、礦物質和雪松香氣,單寧結構精細,口感平衡。

  • 飲用窗口:目前處於理想飲用期,預計可持續至 2035 年左右,風味將持續發展。

  • 投資表現:過去五年價格穩步上升,年均增長約 3-5%,體現出穩健的收藏價值。

🍷 深度賞析:2004 Château Latour 拉圖堡——被低估的經典年份與收藏價值

作為波爾多左岸**波亞克(Pauillac)**產區的王者,Château Latour(拉圖酒莊)一直以其雄渾、強勁且極具陳年潛力的風格著稱。2004 年份雖然夾在酷熱的 2003 年與傳奇的 2005 年之間,常被市場忽略,但對於資深藏家而言,2004 Château Latour 是一個回歸經典、展現極致優雅與風土純粹性的年份,目前正進入最佳適飲期,是體驗一級莊(First Growth)魅力的絕佳選擇。

📊 專家級酒款規格參數表 (Technical Data)

這份詳細數據有助於您了解這款酒的釀造精隨,也是專業藏家關注的重點:

規格項目 詳細內容
全名 Grand Vin de Château Latour 2004
產區 (Appellation) 法國波爾多 - 波亞克 (Pauillac, Bordeaux)
分級 (Classification) 1855 梅多克列級酒莊第一級 (Premier Grand Cru Classé)
葡萄品種 (Blend) 89% 赤霞珠 (Cabernet Sauvignon), 10% 梅洛 (Merlot), 1% 小維多 (Petit Verdot)
酒精濃度 13% Vol
種植密度 10,000 株/公頃 (高密度種植確保果實濃縮度)
陳釀工藝 100% 全新法國橡木桶陳釀 18 個月
權威評分 (Scores) Robert Parker (WA): 95分
適飲窗口 現在 - 2040年+ (正值巔峰適飲期)
醒酒建議 建議瓶醒 (Double Decant) 或入醒酒器至少 2-3 小時

🍇 專業品飲筆記 (Tasting Notes)

2004 年拉圖紅酒展現了該酒莊標誌性的結構感,同時比其他年份多了一份細膩與古典美:

  • 色澤:呈現深邃、幾乎不透光的深紅寶石色,邊緣帶有微微的石榴紅光暈,顯示出經過歲月沉澱的成熟感。

  • 香氣 (Nose):香氣複雜且層次分明。開瓶後首先湧現的是黑醋栗(Cassis)與黑莓的濃郁果香,緊接著是拉圖標誌性的鉛筆芯(Graphite)濕潤泥土雪松木與些許煙草氣息。隨著醒酒時間拉長,會散發出黑松露與皮革的高級陳年香氣。

  • 口感 (Palate):酒體飽滿(Full-bodied),單寧充沛但經過時間打磨已變得如天鵝絨般絲滑。酸度明亮,支撐起整體的骨架,入口能感受到濃縮的黑色水果風味與礦物感的完美平衡。

  • 餘韻 (Finish):餘味悠長繚繞,帶有令人愉悅的甘草與烘烤橡木香,展現出一級莊紅酒驚人的延續力。


🍽️ 餐酒搭配與侍酒指南 (Food Pairing & Serving)

為了讓這瓶頂級波爾多紅酒發揮最佳表現,建議遵循以下侍酒標準:

  1. 侍酒溫度:請控制在 16°C - 18°C。過高的溫度會讓酒精感突出,掩蓋細緻的香氣。

  2. 醒酒時間:2004 年份雖然已屆成熟,但拉圖的酒體依舊強健。建議提前 2 至 3 小時開瓶醒酒,讓封閉的香氣完全釋放,單寧更加柔順。

  3. 完美搭配

    • 經典紅肉:乾式熟成牛排(Dry-aged Steak)、烤羊排佐迷迭香(Lamb Chops)。

    • 野味料理:紅酒燉野味、烤乳鴿或鹿肉,能與酒中的泥土與松露氣息呼應。

    • 陳年乳酪:搭配康提(Comté)或帕馬森(Parmesan)等硬質乳酪。


💰 市場分析:為什麼現在收藏 2004 年份?

  • 性價比優勢:相較於 2000、2005、2009 等「世紀年份」的高昂價格,2004 年 Château Latour 提供了極佳的價格優勢(Value Choice),且評分依然維持在 95 分的高水準,是精明藏家「喝得起的一級莊」。

  • 進入適飲期:許多新年份的拉圖(如 2010 年後)仍需數十年陳年,而 2004 年份現在正是開瓶即飲的黃金時刻,無需再漫長等待。

  • 稀缺性:隨著市場的消耗,保存狀況完美的 2004 年原箱酒款數量正在逐年減少,未來具備穩健的增值空間。


🛡️ 友誠酒藏 (You Cheng Jiuzang) 的品質承諾

友誠酒藏,我們深知每一瓶Château Latour 都是液體的黃金。我們為您提供的不僅是商品,更是安心:

  • 恆溫恆濕倉儲:所有名莊酒款均存放於專業酒窖環境,確保軟木塞狀態與酒液品質。

  • 來源溯源:嚴格把關供應鏈,保證 100% 正品,杜絕假酒風險。

  • 專業運送:高價值酒款採用防震、隔熱包裝,確保送達您手中時完美無瑕。

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

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

  • 專業品質保證:我們採用 UV 光源檢測、高清放大鏡分析酒標細節、微標記驗證等專業方法進行真品鑑定,並詳細檢查液位高度、酒塞狀態、酒標完整度及酒液清澈度。

  • 原始包裝評估:我們重視原木箱、原廠紙箱等原始包裝的完整度,確保您購得的酒款符合高標準。

  • 來源可靠性:我們盡力提供購買證明、進口文件或來源證明的可靠信息,讓您安心收藏。

  • 理想儲存:所有酒款均存放於專業恆溫恆濕的環境中,確保其品質維持在最佳狀態。

💡 提升 2004 年拉圖收藏價值的小貼士

若您已購得此年份佳釀,以下建議可幫助您更好地保存其價值:

  • 保持原始包裝:完整的原木箱可提升收藏價值。

  • 存儲憑證:若有專業酒窖存儲證明,更能證明理想存儲條件。

  • 購買證明:保留原始購買發票或證明文件。

  • 批次信息:了解並提供酒款的進口批次或特殊編號信息。

📞 立即安排您的品鑑與收藏!

無論您是希望品嚐這款 2004 年 Château Latour 的成熟風采,還是將其納入您的珍藏,友誠酒藏都能滿足您的需求。

WhatsApp 專線:92976199 — 發送訊息即可開始您的品鑑之旅!

關於友誠酒藏

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

有趣的知識

查看全部