1992年 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 = "ab235cc0-aa0e-43ce-ae40-8b6c04a6d4b3"; // 促销活动数据 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 == 'b82eed06-fec2-427d-969c-f09173055a02' && variant.id != this.variantId) { this.variantId = variant.id; this.getData(); } } getData() { const reqBody = { product_id: "b82eed06-fec2-427d-969c-f09173055a02", 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 = 'ab235cc0-aa0e-43ce-ae40-8b6c04a6d4b3'; 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 = 'b82eed06-fec2-427d-969c-f09173055a02'; 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 == 'b82eed06-fec2-427d-969c-f09173055a02' && 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 = 'b82eed06-fec2-427d-969c-f09173055a02'; 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我哋就直送上門
質量保證 如實描述
客戶隱私保障

描述

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

友誠酒藏誠意為您呈獻 1992 年 Château Latour 拉圖紅酒。這款來自法國波爾多頂級產區的拉圖酒莊珍釀,因其歷史罕見的年份卓越的收藏價值,已成為葡萄酒收藏家們夢寐以求的珍品。這是您將投資級葡萄酒納入收藏的絕佳機會!

🏰 酒款精華

  • 年份:1992 年

  • 酒莊:Château Latour 拉圖酒莊

  • 產地:法國波爾多頂級產區波雅克(Pauillac),世界五大一級酒莊之一。

  • 收藏特點

    • 歷史罕見年份:1992 年的拉圖紅酒市場極為稀有,是名副其實的珍藏品。

    • 投資級葡萄酒收藏:具備穩定的增值潛力,是理想的長期投資。

    • 國際頂級酒莊原裝:保證純正血統,品質卓越。

💎 投資價值評估

1992 年的拉圖紅酒,其價值不僅體現在極高的稀缺性上,更在於其作為頂級名莊出品所帶來的卓越品質和陳年潛力

  • 稀缺性分析:1992 年份的拉圖極其珍貴,市場流通量稀少,使其成為難得一遇的收藏機會。

  • 完美保存:酒款在理想的環境下保存,確保其品質和價值維持在最佳狀態。

  • 原裝完整:原始包裝的完整性及其酒標的清晰度,進一步彰顯其收藏價值。


🍷 深度解析:1992 Château Latour 拉圖堡——被低估的歲月瑰寶

作為 波爾多五大酒莊 (Premier Grand Cru Classé) 中以酒體強勁、陳年能力極強著稱的拉圖酒莊(Château Latour),即使在 1992 年這樣充滿挑戰的年份,依然展現了其不可撼動的釀酒工藝與風土實力。這款酒不僅是 頂級波爾多紅酒收藏 的拼圖,更是體驗老酒成熟韻味的絕佳選擇。

📊 產品詳細規格 (Product Specifications)

此表格旨在幫助藏家快速了解酒款的技術參數,提升 葡萄酒專業度 認知。

規格屬性 (Attribute) 詳細資料 (Details)
酒莊名稱 Château Latour (拉圖酒莊 / 拉圖堡)
產區 (Appellation) 法國波爾多 - 波雅克 (Pauillac, Bordeaux)
分級 (Classification) 1855年梅多克列級酒莊第一級 (Premier Grand Cru Classé)
葡萄品種 (Varietals) 以赤霞珠 (Cabernet Sauvignon) 為主,混釀梅洛 (Merlot) 等
年份 (Vintage) 1992 年 (已進入完全成熟期)
酒精濃度 約 12.5% - 13% (依批次略有不同)
適飲溫度 16°C - 18°C
建議醒酒時間 老酒建議瓶醒 (Bottle Breathe) 或輕柔過濾沈澱,約 30-60 分鐘
口感關鍵詞 優雅、雪松、煙草、森林地表、成熟黑醋栗

👅 專業品飲筆記 (Tasting Notes)

對於尋求 1992年拉圖口感 的愛好者,這款酒展現了老派波爾多的優雅與細膩,而非年輕時的張揚。

  • 色澤 (Appearance): 呈現深邃的石榴紅偏磚紅色,邊緣帶有明顯的琥珀色光暈,顯示出其 陳年紅酒 的尊貴歲月痕跡。

  • 香氣 (Nose): 開瓶後散發出經典的波雅克氣息。主導香氣包括 雪松木 (Cedar)、舊雪茄盒、濕潤的森林地表(松露與泥土氣息),以及燉煮黑李子與乾草藥的複雜香韻。

  • 口感 (Palate): 入口柔順,單寧已完全軟化並融入酒體。雖然 1992 年並非以厚重著稱,但拉圖的骨架依然存在,酸度平衡,展現出鉛筆芯、皮革與香料的層次感。

  • 餘韻 (Finish): 餘味中等偏長,帶有礦物質與淡淡的煙燻感,令人回味無窮。

💡 侍酒師建議: 此年份拉圖目前正值 最佳適飲期 (Peak Drinking Window)。建議使用老酒開瓶器(Ah-So)小心開瓶,以免軟木塞斷裂。


💎 為什麼選擇 1992 年份的拉圖? (投資與收藏價值)

紅酒投資 與收藏領域,1992 年 Château Latour 具有獨特的市場定位:

  1. 稀缺的市場流通量: 經過 30 多年的消耗,保存完好、水位標準的 1992 年拉圖在市場上已非常少見,符合 稀有年份葡萄酒 的收藏定義。

  2. 五大酒莊的抗跌性: 即便是在較為艱難的年份,拉圖酒莊憑藉其卓越的篩選機制(僅選用最優質葡萄),依然釀造出超越該年份平均水準的佳釀。這證明了其作為 藍籌級葡萄酒 (Blue-chip Wine) 的實力。

  3. 高性價比的名莊體驗: 相比於 1982 或 2000 等傳奇大年,1992 年份提供了以更合理的價格,品嚐 世界頂級一級莊 成熟風味的機會。


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

我們深知購買 高價陳年紅酒 時,來源與保存狀況是客戶最關心的問題。

  • 恆溫恆濕倉儲: 所有酒款均存放於專業酒窖中,嚴格控制溫度與濕度,確保酒液處於「冬眠」狀態,延緩老化。

  • 專業鑑定團隊: 每一瓶 1992 Château Latour 上架前,均經過專家檢視酒標(Label)、酒帽(Capsule)及水位(Ullage),確保 原裝正品

  • 安全配送服務: 提供 香港本地高端紅酒配送,全程細心呵護,確保送達您手中的佳釀完美無瑕。


❓ 常見問題 (FAQ) - 關於 1992 拉圖紅酒

Q: 1992 年的拉圖紅酒還能繼續陳年嗎? A: 1992 年份目前已進入完全成熟期,建議現時飲用以享受其最細膩的風味。雖然拉圖生命力強韌,但此年份不建議再進行長達數十年的陳放。

Q: 這款酒適合搭配什麼食物? A: 作為一款成熟的波雅克紅酒,它非常適合搭配 慢燉紅肉、烤羊架、松露料理或陳年硬質芝士(如 Comté)。避免搭配過於辛辣的食物,以免掩蓋老酒細緻的香氣。

Q: 購買後如何保存? A: 請務必將酒瓶橫放於避光、避震、溫度保持在 12-15°C 的環境中。如果您家中沒有專業酒櫃,建議儘快安排品飲。

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

  • 專業鑑定:我們所有的酒款均經過葡萄酒投資專家團隊的專業鑑定,確保其真實性與最佳保存狀態。

  • 品質保證:酒款存放於恆溫恆濕的專業酒窖,為您呈現狀態完美的珍釀。

  • 稀有現貨:罕見年份的頂級拉圖現貨供應,讓您無需等待,立即擁有這份獨特的珍寶。

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

對這款 1992 年拉圖紅酒或其他頂級名莊酒款感興趣嗎?立即聯繫友誠酒藏的專業顧問,為您的收藏添磚加瓦!

WhatsApp:92976199

關於友誠酒藏

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

有趣的知識

查看全部