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

HK$4,717.70
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 = "47f6fa82-aae2-445a-8788-8d1e3f2cb3c2"; // 促销活动数据 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 == '409eec24-b636-4298-841b-ae4a6164b17d' && variant.id != this.variantId) { this.variantId = variant.id; this.getData(); } } getData() { const reqBody = { product_id: "409eec24-b636-4298-841b-ae4a6164b17d", 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 = '47f6fa82-aae2-445a-8788-8d1e3f2cb3c2'; 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 = '409eec24-b636-4298-841b-ae4a6164b17d'; 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 == '409eec24-b636-4298-841b-ae4a6164b17d' && 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 = '409eec24-b636-4298-841b-ae4a6164b17d'; 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我哋就直送上門
質量保證 如實描述
客戶隱私保障

描述

🏆 友誠酒藏 · 呈獻 1998 年侯伯王紅酒 · 波爾多頂級珍釀 · 限量發售 🏆

友誠酒藏誠意為您呈獻 1998 年 Château Haut-Brion 侯伯王紅酒。侯伯王酒莊擁有超過 400 年釀酒歷史,是波爾多分級制度中唯一的格拉夫產區一級酒莊。這款 1998 年份的侯伯王,被羅伯特·帕克評為 94 分,完美融合了煙燻、黑醋栗、礦物質與橡木的風味,現已進入最佳飲用期,是您不容錯過的頂級珍釀!

🍷 酒款特點

  • 產區:法國波爾多格拉夫(Pessac-Léognan),以其獨特的風土聞名。

  • 年份:1998 年 - 被譽為波爾多右岸經典年份,侯伯王在左岸也表現出色。

  • 評分:羅伯特·帕克(Robert Parker)94 分,品質備受權威肯定。

  • 陳年潛力:可陳年至 2035 年以上,風味將持續發展,愈發醇厚複雜。

  • 口感:煙燻、黑醋栗、礦物質與橡木完美融合,口感複雜而優雅,餘韻悠長。

💰 投資價值

Château Haut-Brion 1998 已進入最佳飲用期,市場需求持續增長,是高端收藏家和投資者追捧的優質酒款。友誠酒藏所售酒款優先考慮原箱、完好酒標及適當存儲條件的酒款,確保其卓越價值。

🍷 1998 年 Château Haut-Brion 奧比昂紅酒:酒款詳細規格與年份解析

為了讓紅酒收藏家與品鑑愛好者更全面地了解這款1998年波爾多左岸紅酒推薦佳作,我們整理了以下的專業規格數據。1998年對於波爾多格拉夫(Graves)產區而言是個極佳的年份,這使得這款格拉夫產區一級酒莊的作品展現出令人驚豔的平衡度與陳年潛力。

規格項目 詳細資訊
正式名稱 Château Haut-Brion 1998 (侯伯王酒莊 / 奧比昂酒莊)
法定產區 法國波爾多 佩薩克-雷奧良 (Pessac-Léognan, Bordeaux)
酒莊分級 1855 年波爾多官方分級:一級酒莊 (Premier Grand Cru Classé)
葡萄品種比例 約 45% 梅洛 (Merlot)、44% 卡本內蘇維翁 (Cabernet Sauvignon)、11% 卡本內弗朗 (Cabernet Franc) 年份比例微調
酒精濃度 13.5% Vol.
適飲期指南 2008 年 – 2038 年(現已進入絕佳的頂級紅酒品飲體驗巔峰期)
醒酒時間建議 瓶中醒酒或使用醒酒器約 1 至 1.5 小時,以喚醒深層次香氣
酒體特徵 酒體飽滿 (Full-bodied),單寧絲滑且結構嚴謹

🏆 國際權威名家酒評與評分指南

除了羅伯特·帕克 (Robert Parker) 給予的高分肯定外,這款1998 Haut-Brion 品酒筆記在全球各大酒評權威中皆獲得極高讚譽,進一步鞏固了其在波爾多五大酒莊投資市場中的穩固地位。

權威酒評機構 / 酒評家 評分 評價摘要與風味描述
Wine Spectator 95 / 100 展現出極致的優雅,帶有烤菸草、溫暖磚瓦與深色莓果的層次,餘韻綿長且極具深度。
James Suckling 96 / 100 令人難以置信的土壤氣息,混合著雪茄盒、黑松露與成熟黑莓果香,口感絲滑醇厚。
Jancis Robinson 18.5 / 20 經典的侯伯王風格,極具泥土與礦物張力,成熟度恰到好處,是一款充滿智慧與內涵的頂級佳釀。
Decanter 95 / 100 在經歷數十年的陳化後,完美展現了佩薩克-雷奧良風土的獨特魅力,皮革與香料氣息迷人。

🍽️ 侯伯王頂級餐酒搭配建議 (Food Pairing)

一款偉大的年份老酒,需要合適的佳餚來襯托其複雜度。對於正在尋找高級法式料理配酒或是頂級晚宴用酒的您,我們建議以下搭配,能最大化地引出這款 1998 年 Haut-Brion 的獨特風味:

  • 經典肉類料理:烤小羊排佐迷迭香、熟成肋眼牛排、法式香煎鴨胸。紅肉的蛋白質能完美柔化老酒的單寧。

  • 野味與松露:由於 1998 年侯伯王帶有迷人的黑松露與泥土氣息,搭配松露燉飯、烤鵪鶉或野菇料理,能產生絕妙的香氣共鳴。

  • 熟成乳酪:康提乳酪 (Comté) 或陳年切達 (Aged Cheddar),能提升酒款尾韻的果香與甜美感。


📦 頂級紅酒收藏指南:專業保存條件建議

為確保這款稀有年份五大酒莊紅酒在未來數十年仍能維持,甚至提升其紅酒拍賣市場價值,嚴格的儲存環境至關重要。友誠酒藏的所有珍稀酒款皆存放於專業酒窖中,若您購入後打算繼續窖藏,請務必遵循以下標準:

保存關鍵要素 專業標準要求 影響與重要性
恆溫控制 12°C - 15°C (理想為 13°C) 避免溫度劇烈波動導致酒液熱脹冷縮,加速老化或破壞風味結構。
恆濕環境 70% - 80% 保持軟木塞濕潤,防止空氣滲入造成過度氧化及酒液揮發。
光線阻絕 完全避光 (尤其是紫外線) 紫外線會與酒中的化合物反應,產生異味並破壞酒體顏色 (光害)。
防震與通風 靜置無震動,保持良好通風 震動會加速化學反應使酒質變粗糙;良好的通風可防止酒標發霉及異味透過木塞滲入。

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

友誠酒藏作為香港專業紅酒服務商,擁有 10 年以上名莊紅酒經驗,為您提供無與倫比的購酒體驗:

  • 專業評估:由資深品酒師評定酒款價值,確保其真實性與最佳保存狀態。

  • 品質保證:所有酒款均在理想的儲存條件下保存,確保風味純正。

  • 稀有現貨:作為經典年份的頂級酒款,1998 年侯伯王紅酒數量有限,機會難得。

  • 誠信交易:我們熟悉國際拍賣市場,為您提供準確的酒款資訊。

📌 友誠酒藏 · 其他精選頂級酒款

我們同時提供其他年份的 Haut-Brion 及波爾多頂級酒莊酒款,包括:

  • 拉菲 (Château Lafite Rothschild)

  • 拉圖 (Château Latour)

  • 瑪歌 (Château Margaux)

  • 木桐 (Château Mouton Rothschild) 等一級酒莊

  • 以及二級酒莊的精品酒款。

無論您是想品鑑單瓶珍藏,還是為您的酒窖添置整箱投資級酒款,友誠酒藏都將為您提供最優質的選擇。

📱 立即聯繫我們

對 1998 年 Château Haut-Brion 侯伯王紅酒或其他頂級珍釀感興趣嗎?立即聯繫友誠酒藏!

WhatsApp:92976199

關於友誠酒藏

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

有趣的知識

查看全部