1996 年 Château Haut Brion 奧比昂紅酒

HK$3,442.80
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 = "cd4baedc-4954-4382-82cd-0d2572e772ac"; // 促销活动数据 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 == 'd929934c-16f1-4735-9609-bf8fddb75c6b' && variant.id != this.variantId) { this.variantId = variant.id; this.getData(); } } getData() { const reqBody = { product_id: "d929934c-16f1-4735-9609-bf8fddb75c6b", 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 = 'cd4baedc-4954-4382-82cd-0d2572e772ac'; 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 = 'd929934c-16f1-4735-9609-bf8fddb75c6b'; 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 == 'd929934c-16f1-4735-9609-bf8fddb75c6b' && 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 = 'd929934c-16f1-4735-9609-bf8fddb75c6b'; 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我哋就直送上門
質量保證 如實描述
客戶隱私保障

描述

🏆 友誠酒藏 · 呈獻 1996 年侯伯王紅酒 · 波爾多左岸傳奇年份 · 限量發售 🏆

友誠酒藏誠意為您呈獻 1996 年 Château Haut-Brion 侯伯王紅酒。這款被譽為二十世紀末最具陳年潛力的波爾多經典年份之一,現正處於完美飲用窗口。它不僅是一款卓越的佳釀,更是極具收藏與投資價值的稀世珍品,不容錯過!

💰 收藏價值分析

  • Parker 評分:獲得國際知名酒評家 92-94 分的高度評價,品質備受肯定。

  • 稀缺性增長:隨飲用年限增長,市場供應量逐年減少,更顯其彌足珍貴。

  • 投資表現:近 5 年市場價格穩步上升,年均增幅約 7-10%,展現強勁的增值潛力。

  • 適飲期:目前已進入最佳品飲階段,預計可持續至 2030 年,兼具品鑑與收藏雙重價值。

🍷 1996 年奧比昂風味特點

此年份奧比昂展現出典型的格拉夫產區特性,香氣複雜豐富,口感結構卓越:

  • 香氣:帶有濃郁的黑醋栗、石墨、煙熏與松露氣息,層次豐富而迷人。

  • 酒體結構:緊實有力,單寧成熟圓潤,帶來平衡且優雅的口感。

  • 餘韻:持久優雅,陳年 25 年後風味層次更加豐富多變,令人回味無窮。

🍇 1996 年波爾多左岸風土氣候解析:造就傳奇的經典年份

1996年被公認為法國波爾多左岸頂級紅酒的卓越年份之一。當年的氣候條件為赤霞珠(Cabernet Sauvignon)的生長提供了完美的舞台。雖然夏季初期的天氣略顯不穩定,但自八月底至整個九月,波爾多迎來了異常乾燥且陽光充足的「印第安夏」(Indian Summer)。

這種極致的氣候條件使得葡萄能夠達到完美的酚類物質成熟度,同時保留了優異的酸度。對於位於佩薩克-雷奧良(Pessac-Léognan)產區的 Château Haut-Brion 而言,這意味著酒款不僅擁有了堅實的單寧骨架,更賦予了其極強的陳年潛力,這也是為何1996年份波爾多經典紅酒至今仍備受全球藏家追捧的核心原因。

🏰 侯伯王莊園(Château Haut-Brion)的歷史底蘊與獨特風土

身為**1855波爾多列級名莊第一級(First Growth)**中唯一位於梅多克(Médoc)地區之外的酒莊,侯伯王莊園(Château Haut-Brion,又譯奧比昂酒莊)擁有近六百年的悠久歷史。

  • 獨特的礫石土壤: 酒莊坐落於深厚的古老河卵石與礫石台地上,這種地形不僅排水性極佳,還能在白天吸收熱量、夜間釋放,幫助葡萄完美成熟。

  • 標誌性的「泥土與煙燻」氣息: 獨特的微氣候與風土,造就了 Haut-Brion 無可替代的礦物感、熱磚、雪茄盒以及標誌性的煙燻風味,使其在五大酒莊中具備最高的辨識度。

🍷 頂級佳釀品飲與專業侍酒指南

為了讓這款步入適飲期的頂級波爾多一級莊老酒展現最完美的狀態,正確的侍酒與保存方式至關重要。以下為專業品酒師提供的操作建議:

項目 專業建議 影響與原因
醒酒時間(Decanting) 原瓶透氣 30-45 分鐘,或輕柔換瓶 經過近30年陳年,酒體已相對脆弱。奧比昂紅酒醒酒時間不宜過長,主要目的是讓沉澱物分離,並喚醒封閉的香氣,避免過度氧化流失層次感。
侍酒溫度(Serving Temp) 16°C - 18°C 過高的溫度會使酒精感突兀,過低則會鎖住其複雜的黑松露與煙燻香氣。精準的紅酒品飲溫度能完美展現其優雅結構。
推薦酒杯(Glassware) 頂級波爾多紅酒杯 (大肚鬱金香型) 較寬的杯腹能提供足夠的表面積讓酒液與空氣接觸,收束的杯口則能有效聚攏其細緻的泥土與成熟黑果香氣。
保存環境(Storage) 恆溫 12-14°C,濕度 70-75% 這是頂級紅酒保存方法與溫度的黃金標準。避光、防震、平放,能確保軟木塞濕潤,防止酒液提前老化或變質。

🍽️ 米其林級餐酒搭配建議(Food Pairing)

1996 年 Château Haut-Brion 擁有成熟柔順的單寧與複雜的香氣,是一款極具「美食親和力」的佳釀。尋找適合搭配波爾多紅酒的頂級食材,能讓味蕾體驗昇華至全新境界:

菜系類型 推薦頂級食材與料理 搭配風味解析
法式經典料理 黑松露烤菲力牛排、烤羊排佐迷迭香 料理中的黑松露能完美呼應酒款中標誌性的松露與蕈菇香氣;而優質紅肉的蛋白質能進一步柔化酒體的單寧,使口感更加絲滑。
頂級中式珍饈 炭烤北京烤鴨、紅燒鮑魚、蔥燒海參 烤鴨的油脂與煙燻外皮與 Haut-Brion 的煙燻焦油味是絕配;而濃郁的醬香型中菜能與紅酒的陳年複雜度產生美妙的共鳴。
熟成起司組合 康堤起司(Comté)、羅克福藍紋起司 經過長時間熟成的硬質起司,其堅果與鹹鮮風味能提升紅酒中的果香甜美感,為品飲畫下完美的句點。

💡 為什麼現在是收藏 1996 年 Château Haut-Brion 的最佳時機?

對於尋求五大酒莊收藏指南的投資者與愛好者而言,1996年侯伯王正處於其生命週期中最具魅力的「巔峰適飲期」。隨著全球消耗量增加,市面上的流通狀況已呈現「喝一瓶少一瓶」的稀缺狀態。無論是作為高端商務宴請的壓軸酒款,還是個人酒窖的珍貴藏品,這款自帶歷史光環與極致品鑑價值的波爾多左岸傳奇,都將是您不可多得的明智之選。

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

友誠酒藏致力於為您提供最優質的頂級葡萄酒。我們對所售酒款進行嚴格把關,確保其品質卓越,來源可靠:

  • 專業真偽鑑定:友誠酒藏採用先進 UV 光譜分析技術,確保酒款真實性,杜絕假冒問題。

  • 市場定價透明:基於國際拍賣行、Wine-Searcher 等多平台數據分析,提供公允市場價,確保您購得物超所值的佳釀。

  • 品質保證:我們所售酒款力求達到最佳品相,以下因素將提升其收藏價值:

    • 完整原箱:若有原裝木箱,可提升 15-20% 價值。

    • 完美酒標:酒標、肩標完好無損,保持完美品相。

    • 理想液位:液位在頸部或以上。

    • 存儲條件:確保酒款在恆溫恆濕專業窖藏環境中保存。

    • 來源證明:若有購買證明或可靠來源證明,則更具信譽。

📢 友誠酒藏 · 其他精選頂級名莊

除了 1996 年 Château Haut-Brion,友誠酒藏同時提供其他年份奧比昂及頂級名莊佳釀,歡迎一併諮詢:

  • 其他年份 Château Haut-Brion

  • 波爾多一級莊二級莊全系列

  • DRC 等世界頂級酒款

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

對這款 1996 年 Château Haut-Brion 侯伯王紅酒或其他頂級名莊珍釀感興趣嗎?立即聯繫友誠酒藏,開啟您的收藏之旅!

WhatsApp:92976199

關於友誠酒藏

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

有趣的知識

查看全部