1993年 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 = "e6ea3b27-b4ef-4ee7-aa24-78471808253a"; // 促销活动数据 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 == '651aac03-c26d-4faf-b92f-8f346563b0fb' && variant.id != this.variantId) { this.variantId = variant.id; this.getData(); } } getData() { const reqBody = { product_id: "651aac03-c26d-4faf-b92f-8f346563b0fb", 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 = 'e6ea3b27-b4ef-4ee7-aa24-78471808253a'; 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 = '651aac03-c26d-4faf-b92f-8f346563b0fb'; 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 == '651aac03-c26d-4faf-b92f-8f346563b0fb' && 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 = '651aac03-c26d-4faf-b92f-8f346563b0fb'; 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我哋就直送上門
質量保證 如實描述
客戶隱私保障

描述

🏆 友誠酒藏 · 呈獻 1993 年拉圖紅酒 · 罕見絕版收藏 · 限量發售 🏆

友誠酒藏誠意為您呈獻 1993 年 Château Latour 拉圖紅酒。這款來自法國波爾多頂級產區的拉圖酒莊珍釀,因其年份的稀有性卓越品質,已成為葡萄酒收藏家們爭相追逐的絕版收藏品。錯過不再!

🍷 深度品鑑:1993年拉圖堡 (Château Latour)——被低估的經典與時光沈澱

針對藏家與品酒師的專業分析:為何這款 1993年份拉圖紅酒值得您現在入手?

1993 年對於波爾多來說是一個極具挑戰性的年份,但正如葡萄酒界的一句名言:「在偉大的年份買小酒莊,在困難的年份買大酒莊。」作為波爾多五大酒莊 (First Growth) 中以酒體宏大、陳年能力極強著稱的拉圖堡 (Château Latour),在 1993 年展現了驚人的釀造工藝,釀造出了該年份最頂級的葡萄酒之一。這瓶酒不僅是1993年出生年份酒 (Birth Year Wine) 的最佳選擇,更是資深藏家眼中展現風土與釀酒師功力的「教科書級」珍釀。


📊 1993 Château Latour 專業鑒賞參數表 (Technical Data)

這份詳細的參數表將幫助您更直觀地了解這款波爾多頂級老酒的特性:

參數項目 詳細資訊 備註說明
酒莊分級 波爾多 1855 分級一級莊 (Premier Grand Cru Classé) 世界公認的頂級紅酒標竿
產區風土 (Terroir) 法國波爾多 - 波亞克 (Pauillac) 擁有深厚的礫石土壤,賦予酒體力量與結構感
葡萄品種 (Blend) 約 75% 赤霞珠 (Cabernet Sauvignon), 20% 梅洛 (Merlot), 4% 品麗珠, 1% 小維多 經典的波爾多左岸混釀比例
當前狀態 (Status) 適飲期巔峰 (Peak Drinking) 經過 30+ 年陳年,單寧已完全柔化
陳年潛力 極強,保存良好可至 2035+ 年 拉圖以「長壽」著稱,即便困難年份亦然
酒精濃度 12.5% - 13% 展現老派波爾多優雅、克制的風格
醒酒建議 建議瓶醒 (Breathe) 30-60 分鐘 需小心處理老酒沈澱,不宜過度劇烈醒酒
適飲溫度 16°C - 18°C 過高溫會使酒精感突出,掩蓋老酒細緻香氣

🍇 歷經30年歲月:口感與風味檔案 (Tasting Notes)

如果您正在尋找關於1993年拉圖紅酒口感的描述,這款酒目前正處於極其迷人的成熟階段:

  • 視覺外觀:酒色已從年輕時的深紫紅色轉變為帶有歲月痕跡的深石榴紅,邊緣呈現迷人的磚紅色光暈,這是高品質波爾多老酒的典型特徵。

  • 香氣層次 (Nose):開瓶後,成熟的黑色漿果香氣(黑醋栗、黑莓)依然存在,但更引人入勝的是隨之而來的三級香氣 (Tertiary Aromas)。您可以清晰地捕捉到雪松盒、濕潤的森林地表、優質菸草、皮革以及淡淡的松露氣息。這是一種只有時間才能賦予的複雜香氣。

  • 口感結構 (Palate):1993年的拉圖去除了年輕時的艱澀,單寧如今已打磨得如絲般順滑,但依然保留了拉圖標誌性的「骨架感」。酸度依然活躍,支撐起整體的酒體,餘韻悠長且帶有礦物質的回甘。


💎 為何選擇 1993 年份?稀缺性與投資價值分析

1. 逆勢而上的王者風範 (Overperforming Vintage) 在搜尋波爾多1993年份評價時,許多普通酒莊表現平平,但 Château Latour 憑藉其獨特的微氣候和嚴苛的篩選標準(當年僅有約 50% 的葡萄被選用釀造正牌酒),成為了當年的「年份之星」。這使得 1993 年的拉圖比同年的其他一級莊更具收藏意義,代表了酒莊追求極致的哲學。

2. 絕佳的出生年份禮物 (Anniversary Gift) 對於出生於 1993 年的朋友,或是在這一年成立公司、結婚的客戶來說,市面上保存完美的1993年頂級紅酒已是一瓶難求。這不僅是一瓶酒,更是一段與受贈者共同成長的時光記憶,極具紀念價值。

3. 完美的保存履歷 (Provenance) 我們的酒款均經過專家團隊的嚴格檢驗,確保水位 (Ullage)、酒標 (Label) 及瓶封 (Capsule) 處於理想狀態。對於老酒收藏而言,來源的可追溯性是決定價值的關鍵。


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

為了讓這瓶珍稀佳釀發揮最佳表現,我們建議搭配以下料理:

  • 經典搭配:烤小羊排(Pauillac Lamb)、熟成牛排。肉類蛋白能與酒中殘留的單寧完美結合,提升甜美感。

  • 進階老饕:松露燉飯、野味(如鹿肉、鴿肉)或陳年康提起司 (Comté)。老酒的森林氣息與野味、菌菇類料理是天作之合。


🛡️ 友誠酒藏的三重品質承諾

  1. 恆溫恆濕倉儲:所有名莊酒款均存放於專業酒窖,確保其在休眠中完美熟成。

  2. 真偽鑑定保證:每一瓶拉圖紅酒均經過專業鑑定,杜絕假酒風險。

  3. 防震安全配送:對於此類高價值酒款,我們提供專屬的防護包裝與配送服務,確保滴酒不損。

專家提示:由於 1993 Château Latour 已進入成熟期,老酒開瓶後氧化速度較快,建議開瓶後於 2-3 小時內飲用完畢,以享受其最完美的香氣變化。

🏰 酒款核心信息

  • 年份:1993 年

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

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

  • 酒款特點

    • 罕見絕版收藏:1993 年份的拉圖紅酒市場流通稀少,極具收藏價值。

    • 波爾多頂級酒莊原裝:保證來自拉圖酒莊的純正血統。

    • 葡萄酒收藏家搶手貨:深受全球收藏家青睞,具備穩定的市場需求。

💎 珍藏價值評估

1993 年的拉圖紅酒,其價值不僅體現在稀缺性上,更在於其隨著時間推移而展現出的複雜風味和陳年潛力

  • 稀缺性:作為一個較早的年份,1993 年拉圖的存世量正在逐漸減少,使其更顯珍貴。

  • 品質保證:拉圖酒莊即使在挑戰性年份也能釀造出高品質的葡萄酒,1993 年份亦不例外。

  • 品味與投資兼具:這是一款既能享受其陳年醇厚風味,又能作為潛力投資的頂級佳釀。

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

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

  • 理想儲存:酒款存放於恆溫恆濕的專業酒窖,為您呈現狀態完美的珍釀。

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

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

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

WhatsApp:92976199

關於友誠酒藏

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

有趣的知識

查看全部