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

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 = "dd8364c9-b48b-4bfb-b40a-c380af15af97"; // 促销活动数据 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 == 'd1142d3c-990e-4863-8199-b3348d4005b4' && variant.id != this.variantId) { this.variantId = variant.id; this.getData(); } } getData() { const reqBody = { product_id: "d1142d3c-990e-4863-8199-b3348d4005b4", 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 = 'dd8364c9-b48b-4bfb-b40a-c380af15af97'; 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 = 'd1142d3c-990e-4863-8199-b3348d4005b4'; 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 == 'd1142d3c-990e-4863-8199-b3348d4005b4' && 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 = 'd1142d3c-990e-4863-8199-b3348d4005b4'; 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我哋就直送上門
質量保證 如實描述
客戶隱私保障

描述

🏆 友誠酒藏 · 呈獻 1947 年侯伯王紅酒 · 波爾多戰後傳奇 · 博物館級珍藏 · 限量發售 🏆

友誠酒藏誠意為您呈獻 1947 年 Château Haut-Brion 侯伯王紅酒。這款來自格拉夫產區的傳奇佳釀,代表了二戰後波爾多重生的輝煌時刻。作為極度稀有的老年份,它具有無可比擬的收藏價值。友誠酒藏精選此頂級珍品,讓您有機會將這份時間的藝術品納入珍藏!

🍷 酒款資料

  • 酒莊:Château Haut-Brion(侯伯王酒莊)

  • 分級:1855 年波爾多一級酒莊 (Premier Grand Cru Classé)

  • 年份:1947(戰後珍稀年份)

  • 產區:法國波爾多格拉夫 (現今的佩薩克-雷奧良)

  • 葡萄品種:赤霞珠、梅洛、品麗珠傳統混釀

  • 稀有度:極高(全球存世量極少)

⭐ 年份意義

1947 年被譽為 20 世紀最偉大的波爾多年份之一,這一年得益於極佳的天氣條件,產出了濃縮度高、風味複雜的葡萄。Haut-Brion 1947 因其卓越品質和超過 75 年的陳年歷史而成為葡萄酒史上的傳奇,是博物館級別的收藏珍品

✨ 品鑒特點

經過數十年的陳年,1947 年的 Haut-Brion 展現出迷人的複雜性:

  • 風味:複雜的乾果、松露、雪茄盒和皮革風味,伴隨著細膩的礦物質和泥土氣息。

  • 平衡性:這款酒的平衡性令人驚嘆,完美展現了陳年波爾多經典的卓越特性。

  • 至臻佳釀:被葡萄酒鑑賞家視為至臻佳釀,每一口都充滿了歷史的韻味。

💎 收藏價值

作為戰後時期的稀世珍釀,Château Haut-Brion 1947 不僅是葡萄酒愛好者夢寐以求的品鑒對象,更是全球拍賣市場上的重要投資藏品。其極度稀缺性和歷史意義使其價值持續攀升,成為頂級收藏家的必爭之物。

🍇 博物館級老酒專屬照護與品鑑指南 (頂級老酒保存條件)

對於如 1947 年 Château Haut-Brion 這類拍賣級別名莊酒,正確的保存與品飲方式是維持其波爾多五大酒莊收藏價值的絕對關鍵。以下為本酒款的專屬照護與品飲建議:

照護與品鑑項目 專業建議指引 關鍵影響與注意事項
窖藏溫度 恆溫 10°C - 15°C (理想值 13°C) 避免溫度劇烈波動,以防酒液加速老化或軟木塞熱脹冷縮破壞百年密封性。
環境濕度 維持在 70% - 75% 之間 確保 1947 年珍貴的原始軟木塞保持濕潤,防止過度乾燥導致空氣滲入造成酒液氧化。
光線與震動 絕對避光(杜絕紫外線),靜置無震動環境 紫外線會分解紅酒中的單寧與色素;震動會擾亂瓶底沉澱物並破壞陳年老酒脆弱的酒體結構。

開瓶與醒酒


(頂級紅酒醒酒技巧)

開瓶前需直立靜置至少 1-2 週。極度不建議常規使用醒酒器 歷經近八十年的1947年波爾多紅酒極其脆弱,建議開瓶後於杯中自然甦醒,直接感受其香氣變化。過度醒酒會使珍貴香氣瞬間消散。
適飲酒杯 頂級手工波爾多杯 (Bordeaux Glass) 較大的杯肚與收窄的杯口,有助於完美聚攏這款戰後老年份紅酒極度細膩且多層次的皮革、松露與雪茄盒香氣。

📜 1947 年波爾多傳奇年份氣候解密 (氣候與風土深度分析)

為何 1947 年能成為全球紅酒投資市場中無可取代的傳奇?這一年的極端氣候造就了無法複製的侯伯王酒莊歷史年份奇蹟。

1947年季節 氣候特徵與葡萄藤生長狀況 對葡萄酒頂級風味的深遠影響
春季 (生長期) 溫暖且乾燥,開花期提早且極為順利。 完美的春季為當年的豐收與極高成熟度奠定基礎,確保了葡萄藤的健康。
夏季 (熟成期) 經歷罕見極端熱浪,創下當時波爾多的高溫紀錄。 葡萄果實水分蒸發減少,糖分、單寧與風味物質極度濃縮,造就了異常豐厚、酒精度偏高的獨特飽滿酒體。
秋季 (採收期) 持續炎熱乾燥,幾乎無降雨干擾。 確保葡萄在完全成熟且零病害的完美狀態下採收,賦予了酒款極強的陳年潛力與深邃的熟果乾風味。

📈 頂級稀有老酒的市場投資趨勢 (1947年波爾多紅酒投資)

作為香港老酒拍賣與收藏市場中的金字塔頂端標的物,1947 年的 Château Haut-Brion 具備以下不可替代的資產與歷史屬性:

  • 歷史文物級的極限稀缺性:經歷了超過 75 年的自然消耗與開瓶飲用,目前全球具備完美保存狀態、來源清晰的 1947 年 Haut-Brion 存世量極度稀少,屬於真正的拍賣會級別稀有珍釀,往往一瓶難求。

  • 抗通膨的液體黃金:相較於傳統金融市場的波動,法國波爾多一級莊的極致老酒在過去數十年間展現了穩定向上的增值曲線。其不可再生的特性,使其深受全球頂級富豪與家族辦公室的資產配置青睞。

  • 不可複製的時代釀造印記:1947 年是二戰後波爾多全面復興的象徵年份。這款酒融合了當年極端高溫氣候的恩賜,以及戰後傳統純手工釀酒工藝的純粹。它是現代溫控發酵技術普及前,完全仰賴自然風土與大師級人工經驗的歷史巔峰之作,品飲的不僅是絕佳風味,更是 20 世紀中葉的歐洲歷史縮影。

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

友誠酒藏專精於戰後老年份波爾多名莊,確保您購得的每一瓶酒都物超所值:

  • 專業鑒定:友誠酒藏擁有專業的老年份葡萄酒鑒定團隊,熟悉 1940 年代波爾多名莊的各項特徵,包括瓶型、酒標、軟木塞等細節,確保每一瓶所售的 Haut-Brion 1947 都經過嚴格的真偽鑒定流程。

  • 品質保障:我們所售酒款均經過嚴格篩選,確保其保存狀態良好,符合頂級收藏品的要求。

  • 稀有現貨:Château Haut-Brion 1947 存世量極少,友誠酒藏現貨供應,機會難得。

  • 安全保密:所有交易流程均嚴格保密,保障您的隱私。

📱 立即聯繫

擁有這款 Château Haut-Brion 1947 或對友誠酒藏其他珍稀老年份名莊紅酒感興趣嗎?立即聯繫我們,開啟您的收藏之旅!

WhatsApp:92976199

關於友誠酒藏

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

有趣的知識

查看全部