1988年 Chateau Latour 拉圖紅酒

HK$3,771.50
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 = "61400eee-5f83-4503-9d86-b3d7961a84b8"; // 促销活动数据 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 == 'fd17959e-f129-444c-800f-043b80a167f4' && variant.id != this.variantId) { this.variantId = variant.id; this.getData(); } } getData() { const reqBody = { product_id: "fd17959e-f129-444c-800f-043b80a167f4", 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 = '61400eee-5f83-4503-9d86-b3d7961a84b8'; 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 = 'fd17959e-f129-444c-800f-043b80a167f4'; 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 == 'fd17959e-f129-444c-800f-043b80a167f4' && 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 = 'fd17959e-f129-444c-800f-043b80a167f4'; 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我哋就直送上門
質量保證 如實描述
客戶隱私保障

描述

🏆 友誠酒藏 · 呈獻 1988 年拉圖紅酒 · 波爾多傳奇年份稀世珍藏 · 限量發售 🏆

友誠酒藏誠意為您呈獻 1988 年 Château Latour 拉圖紅酒。這款跨越三十五載歷史的葡萄酒瑰寶,是波爾多傳奇一級酒莊的稀世珍藏,完美展現釀酒大師對完美的極致追求。這是一款集歷史、品味與投資於一身的頂級佳釀,現正限量發售!

🌟 收藏家的稀世珍寶

  • 年份價值:1988 年被譽為波爾多經典年份之一,酒質卓越,具備優異的陳年實力。

  • 稀有程度:距今已 35 年,存世數量極為有限,使其成為難得一遇的珍品。

  • 投資潛力:作為老年份的頂級名莊酒款,其收藏價值持續攀升,是極具潛力的資產。

  • 國際聲譽:羅伯特·帕克 (Robert Parker) 評分接近完美,深受全球收藏家追捧。

🍇 璀璨的風味畫卷

1988 年拉圖紅酒經過歲月沉澱,已發展出迷人的複雜性與深度:

  • 酒體特征:深邃的寶石紅色,陳年後呈現出複雜而成熟的磚紅色調,引人入勝。

  • 香氣層次:濃郁的黑醋栗、乾果香氣與雪松、煙草、皮革的經典氣息交織,層次豐富,馥郁迷人。

  • 口感質地:單寧已趨於柔和,展現出極致的平衡與優雅,口感絲滑醇厚。

  • 餘韻持久:品鑑後數分鐘仍然回味無窮,餘韻深邃悠長,彰顯頂級佳釀的非凡魅力。


🍷 1988 Chateau Latour 拉圖堡:深度鑑賞與專家數據

作為波爾多五大酒莊(First Growth)中的「硬漢」,拉圖酒莊(Château Latour)以其雄渾的結構和驚人的陳年潛力著稱。1988 年份雖然常被夾在 1989 和 1990 兩個傳奇年份之間,但懂酒的行家都知道,1988 年的拉圖展現了最經典、最傳統的波爾多風格是長線投資與品鑑的絕佳選擇。

📊 產品技術規格與評分 (Technical Specifications)

這張表格為專業收藏家提供了必要的技術細節,有助於建立產品的專業權威性。

規格項目 (Specification) 詳細數據 (Details)
產區 (Appellation) 法國波爾多 - 波亞克 (Pauillac, Bordeaux)
分級 (Classification) 1855 梅多克列級酒莊第一級 (Premier Grand Cru Classé)
葡萄品種 (Blend) 75% 赤霞珠 (Cabernet Sauvignon), 20% 梅洛 (Merlot), 4% 品麗珠 (Cabernet Franc), 1% 小維多 (Petit Verdot)
酒精濃度 (ABV) 12.5% (經典年份的優雅度數)
適飲期 (Drink Date) 現在至 2040 年+ (正值巔峰適飲期,仍具陳年潛力)
權威評分 (Scores) Wine Spectator: 94分
土壤特性 (Terroir) 獨特的「Enclos」礫石土壤,排水性極佳,賦予酒體深邃礦物感

🕰️ 年份報告:被低估的經典 1988 (The Vintage Report)

為什麼選擇 1988 年份? 對於波爾多愛好者來說,1988 年是一個「古典主義」的回歸。當年的氣候條件造就了果味純淨、單寧結構緊緻的葡萄酒。與更加成熟甜美的 1989 或 1990 年相比,1988 Château Latour 更具備嚴謹的酸度和骨架,這意味著它在年輕時可能顯得封閉,但經過 30 多年的瓶中陳年(Bottle Aging),如今已轉化為極致的優雅與複雜度。

長尾關鍵詞提示:波爾多1988年份評價、拉圖紅酒陳年能力、舊世界紅酒投資價值


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

為了讓您享受到這瓶價值不菲的佳釀的最佳風味,請參考以下專業侍酒建議。正確的醒酒與溫度控制是釋放老酒香氣的關鍵。

侍酒步驟 專家建議
侍酒溫度 (Temperature) 16°C - 18°C。過高的溫度會讓酒精味掩蓋細緻的松露與雪松香氣。
醒酒時間 (Decanting) 建議在飲用前 1 到 2 小時 開瓶透氣。由於是 30 年以上老酒,建議使用過濾器小心換瓶(Double Decant),以去除底部天然沉澱物(Sediment),同時讓酒液適度接觸氧氣甦醒。
推薦酒杯 (Glassware) 波爾多寬體紅酒杯,有助於集中陳年老酒的複雜香氣。
最佳佐餐 (Food Pairing)

經典西式: 烤小羊排(Pauillac Lamb)、松露燉飯、陳年康泰納乳酪(Comté)。


中式搭配: 能夠駕馭紅燒肉、蔥燒海參或東坡肉等油脂豐富且醬汁濃郁的菜餚,酒體中的酸度能完美解膩。

💡 藏家常見問題 (FAQ) - 專家解惑

Q:1988 年的拉圖紅酒現在喝會太老嗎? A:完全不會。拉圖酒莊以「長壽」聞名世界。1988 年份正處於其生命的成熟巔峰期。現在開瓶,您可以感受到年輕紅酒無法比擬的「三級香氣」,如濕森林土壤、皮革、雪松和乾果的風味,且單寧已軟化如絲綢。

Q:友誠酒藏如何確保這瓶老酒的保存狀況? A:對於老年份名莊酒(Back Vintage),倉儲條件是決定價值的核心。友誠酒藏的所有 1988 Latour 均在恆溫、恆濕、避光的專業酒窖中保存,且我們會嚴格檢查酒液高度(Ullage)與酒塞狀況,確保您收到的每一瓶酒都處於完美的陳年狀態。

Q:這款酒適合做為傳家寶或商務贈禮嗎? A:絕對適合。作為五大酒莊之一,Château Latour 具有極高的品牌辨識度與市場流通性。贈送 1988 年份的拉圖,不僅代表著品味,更象徵著「歷久彌新」的美好寓意,是頂級商務宴請或收藏的理想之選。

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

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

  • 精準估價:友誠酒藏參考國際拍賣行情,為所售酒款提供真實的市場價值參考。

  • 專業團隊:資深品酒師與葡萄酒投資專家組成的團隊,為您精選最佳酒款。

  • 交易保障:所有交易過程透明公開,確保您安心購買。

  • 稀有現貨:作為稀有的老年份頂級名莊,1988 年拉圖現貨供應,機會難得。

  • 專業評估標準:我們重視酒液狀態(瓶口高度與液面保存情況)、外觀完整性(酒標、瓶帽保存程度)、儲存歷史(專業恆溫酒窖的保存證明),若有原始包裝(原廠木箱 OWC)和可靠的來源追溯,更能提升其價值。

📈 市場洞察

  • 收藏趨勢:老年份頂級名莊的收藏價值持續攀升,市場需求穩健。

  • 亞洲市場:香港和大中華區收藏家對老年份名莊的熱情不減,交易活躍。

  • 投資價值:長期保值,部分老年份已成為高端投資品,是資產配置的理想選擇。

📞 立即聯繫,珍藏傳奇年份!

對這款 1988 年 Château Latour 或友誠酒藏的其他頂級珍釀感興趣嗎?立即聯繫我們的專業顧問,開啟您的收藏之旅!

諮詢熱線:WhatsApp:92976199 服務時間:24 小時

關於友誠酒藏

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

有趣的知識

查看全部