首頁
1
資源下載/線上諮詢單
2
相關下載
3
國楊 StairsPump 泵浦型錄4
https://www.nationrise.com.tw/custom_142329.html 國楊 StairsPump 泵浦型錄 國楊 StairsPump 泵浦型錄 :root { --primary-color: #0056b3; --secondary-color: #0088cc; --dark-color: #1e293b; --light-bg: #f8fafc; --card-bg: #ffffff; --border-color: #e2e8f0; --text-muted: #64748b; --radius: 12px; } * { box-sizing: border-box; margin: 0; padding: 0; } body { font-family: 'Noto Sans TC', sans-serif; background-color: var(--light-bg); color: var(--dark-color); line-height: 1.6; } .container { max-width: 1200px; margin: 0 auto; padding: 40px 20px; } /* Header */ .catalog-header { text-align: center; margin-bottom: 32px; } .catalog-header h1 { font-size: 2.1rem; color: var(--primary-color); margin-bottom: 10px; font-weight: 700; } .catalog-header p { color: var(--text-muted); font-size: 1.02rem; max-width: 720px; margin: 0 auto; } /* 麵包屑,強化內部連結與頁面脈絡 */ .breadcrumb { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 18px; } .breadcrumb a { color: var(--secondary-color); text-decoration: none; } .breadcrumb a:hover { text-decoration: underline; } /* Controls: Search & Filters */ .controls-wrapper { display: flex; flex-direction: column; gap: 18px; margin-bottom: 32px; align-items: center; } .search-bar { position: relative; width: 100%; max-width: 500px; } .search-bar input { width: 100%; padding: 12px 20px 12px 45px; border: 1px solid var(--border-color); border-radius: 30px; font-size: 1rem; outline: none; transition: all 0.2s; background: #fff; } .search-bar input:focus { border-color: var(--secondary-color); box-shadow: 0 0 0 4px rgba(0,136,204,0.12); } .search-bar svg { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); color: var(--text-muted); width: 18px; height: 18px; } .search-empty { display: none; text-align: center; color: var(--text-muted); padding: 30px 0; font-size: 0.95rem; } .filter-tags { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; } .filter-btn { background: #fff; border: 1px solid var(--border-color); padding: 8px 18px; border-radius: 20px; cursor: pointer; font-size: 0.92rem; color: var(--dark-color); transition: all 0.2s; font-family: inherit; } .filter-btn[aria-pressed="true"] { background: var(--primary-color); color: #fff; border-color: var(--primary-color); } .filter-btn:hover { border-color: var(--primary-color); } /* Grid Layout */ .catalog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 24px; } /* Card Item */ .catalog-card { background: var(--card-bg); border-radius: var(--radius); border: 1px solid var(--border-color); overflow: hidden; display: flex; flex-direction: column; transition: transform 0.2s, box-shadow 0.2s; } .catalog-card:hover { transform: translateY(-4px); box-shadow: 0 12px 24px rgba(0,0,0,0.08); } .card-preview { background: #eef2f7; aspect-ratio: 16/10; display: flex; align-items: center; justify-content: center; position: relative; border-bottom: 1px solid var(--border-color); overflow: hidden; } .card-preview img { width: 100%; height: 100%; object-fit: cover; } .card-preview .icon-fallback { display: none; flex-direction: column; align-items: center; gap: 6px; color: #94a3b8; } .card-preview .icon-fallback svg { width: 46px; height: 46px; } .card-preview.no-image img { display: none; } .card-preview.no-image .icon-fallback { display: flex; } .card-badge { position: absolute; top: 12px; right: 12px; background: rgba(15,23,42,0.72); color: #fff; font-size: 0.72rem; padding: 4px 10px; border-radius: 12px; } .card-body { padding: 18px 20px 20px; flex-grow: 1; display: flex; flex-direction: column; } .card-category { font-size: 0.78rem; font-weight: 700; color: var(--secondary-color); margin-bottom: 6px; } .card-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; color: var(--dark-color); line-height: 1.4; } .card-title a { color: inherit; text-decoration: none; } .card-title a:hover { text-decoration: underline; } .card-desc { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 16px; flex-grow: 1; } .card-meta { font-size: 0.78rem; color: #94a3b8; margin-bottom: 14px; display: flex; gap: 14px; flex-wrap: wrap; } .card-meta span { display: inline-flex; align-items: center; gap: 4px; } .card-meta svg { width: 13px; height: 13px; } .card-actions { display: flex; gap: 10px; } .btn { flex: 1; padding: 10px; text-align: center; border-radius: 6px; text-decoration: none; font-size: 0.88rem; font-weight: 500; transition: background 0.2s, border-color 0.2s; display: inline-flex; align-items: center; justify-content: center; gap: 6px; } .btn svg { width: 14px; height: 14px; } .btn-outline { border: 1px solid var(--border-color); color: var(--dark-color); background: #fff; } .btn-outline:hover { background: #f1f5f9; } .btn-primary { background: var(--primary-color); color: #fff; border: 1px solid var(--primary-color); } .btn-primary:hover { background: #00438d; } /* 內文說明區塊:補上純文字內容給搜尋引擎索引 */ .intro-copy { font-size: 0.94rem; color: var(--text-muted); max-width: 820px; margin: 0 auto 36px; text-align: center; } .intro-copy strong { color: var(--dark-color); } .fallback-box { margin-top: 40px; padding: 20px 24px; background: #fff; border: 1px solid var(--border-color); border-radius: var(--radius); font-size: 0.9rem; color: var(--text-muted); } .fallback-box a { color: var(--secondary-color); } /* FAQ */ .faq-section { margin-top: 50px; max-width: 820px; margin-left: auto; margin-right: auto; } .faq-section h2 { font-size: 1.4rem; margin-bottom: 16px; color: var(--dark-color); } .faq-item { border-bottom: 1px solid var(--border-color); padding: 14px 0; } .faq-item summary { cursor: pointer; font-weight: 600; font-size: 0.98rem; list-style: none; } .faq-item summary::-webkit-details-marker { display: none; } .faq-item summary::before { content: "+"; color: var(--primary-color); font-weight: 700; margin-right: 10px; } .faq-item[open] summary::before { content: "–"; } .faq-item p { margin: 10px 0 0 20px; font-size: 0.9rem; color: var(--text-muted); } .contact-cta { margin-top: 44px; padding: 22px 26px; background: #eaf3fb; border-radius: var(--radius); display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 14px; } .contact-cta p { margin: 0; font-size: 0.92rem; color: var(--dark-color); } .contact-cta a { flex: none; } @media (max-width: 768px) { .catalog-grid { grid-template-columns: 1fr; } } { "@context": "https://schema.org", "@type": "CollectionPage", "name": "國楊StairsPump 泵浦型錄與技術文件下載中心", "description": "國楊興業提供Stairs Pump宏奇泵浦及各系列泵浦完整PDF型錄下載", "url": "https://www.nationrise.com.tw/custom_135832.html", "inLanguage": "zh-Hant-TW", "publisher": { "@type": "Organization", "name": "國楊興業", "url": "https://www.nationrise.com.tw/" }, "hasPart": [ { "@type": "DigitalDocument", "name": "SB/SBI/SBN 立式多段離心泵浦型錄(60Hz)", "encodingFormat": "application/pdf", "url": "https://www.nationrise.com.tw/product_1631867.html" }, { "@type": "DigitalDocument", "name": "CB/CBI/HBI/HBN 臥式多段離心泵浦型錄", "encodingFormat": "application/pdf", "url": "https://www.nationrise.com.tw/product_1631868.html" }, { "@type": "DigitalDocument", "name": "SB/SBI/SBN 立式多段離心泵浦型錄(50Hz)", "encodingFormat": "application/pdf", "url": "https://www.nationrise.com.tw/product_1631885.html" }, { "@type": "DigitalDocument", "name": "陸上清水離心泵浦型錄", "encodingFormat": "application/pdf", "url": "https://www.nationrise.com.tw/product_cg415214.html" }, { "@type": "DigitalDocument", "name": "沉水深井式清水泵浦型錄", "encodingFormat": "application/pdf", "url": "https://www.nationrise.com.tw/product_cg415215.html" }, { "@type": "DigitalDocument", "name": "沉水汙物汙水泵浦型錄", "encodingFormat": "application/pdf", "url": "https://www.nationrise.com.tw/product_cg415217.html" }, { "@type": "DigitalDocument", "name": "其他系列泵浦型錄", "encodingFormat": "application/pdf", "url": "https://www.nationrise.com.tw/product_cg415220.html" }, { "@type": "DigitalDocument", "name": "膨脹水箱、閥件規格書", "encodingFormat": "application/pdf", "url": "https://www.nationrise.com.tw/product_cg415261.html" } ] } { "@context": "https://schema.org", "@type": "BreadcrumbList", "itemListElement": [ { "@type": "ListItem", "position": 1, "name": "首頁", "item": "https://www.nationrise.com.tw/index.html" }, { "@type": "ListItem", "position": 2, "name": "相關下載", "item": "https://www.nationrise.com.tw/custom_cg52534.html" }, { "@type": "ListItem", "position": 3, "name": "國楊StairsPump 泵浦型錄下載", "item": "https://www.nationrise.com.tw/custom_135832.html" } ] } { "@context": "https://schema.org", "@type": "FAQPage", "mainEntity": [ { "@type": "Question", "name": "Stairs Pump 型錄可以直接提供給客戶或用於投標文件嗎?", "acceptedAnswer": { "@type": "Answer", "text": "可以。型錄內容可直接提供給業主、工程顧問或投標文件使用,如需原廠格式檔案或報價,歡迎來電或填寫線上諮詢單洽詢。" } }, { "@type": "Question", "name": "立式多段泵浦與臥式多段泵浦該如何選擇?", "acceptedAnswer": { "@type": "Answer", "text": "立式多段泵浦(SB系列)佔地面積小,適合機房空間有限的場地;臥式多段泵浦(CB/HBI系列)維修保養較方便,常用於需長時間連續運轉的工廠或製程用水系統,實際選型建議依現場揚程、流量與安裝空間評估。" } }, { "@type": "Question", "name": "型錄提供50Hz與60Hz兩種版本,差異是什麼?", "acceptedAnswer": { "@type": "Answer", "text": "台灣電力系統為60Hz,若專案地點或外銷地區電源為50Hz,需選用對應版本,兩者外觀與安裝尺寸多數可對照,但實際性能曲線仍以型錄標示為準。" } }, { "@type": "Question", "name": "型錄是否有中英雙語版本?", "acceptedAnswer": { "@type": "Answer", "text": "是,型錄內容為中英雙語編排,方便同時用於國內工程文件與海外客戶、代理商溝通。" } } ] } 國楊 Stairs Pump 泵浦型錄下載 提供 Stairs Pump 宏奇泵浦、國楊 NR 變頻加壓給水機組與膨脹水箱之產品型錄 PDF 規格書,可依型號搜尋或分類篩選 國楊興業代理 宏奇 Stairs Pump 全系列泵浦,型錄涵蓋 SB/SBI/SBN 立式多段泵浦、CB/CBI/HBI/HBN 臥式多段離心泵浦、國楊 陸上清水離心泵浦、沉水深井式清水泵浦、沉水汙物汙水泵浦與膨脹水箱閥件, 內容包含外觀尺寸圖、性能曲線與材質規格,適用於大樓給水、加壓機組、灌溉與鍋爐給水等系統設計選型參考。 全部型錄 Stairs Pump 陸上清水離心泵浦 沉水/深井/汙水泵浦 膨脹水箱、閥件 PDF 規格書 Stairs Pump · 60Hz SB/SBI/SBN 立式多段泵浦(60Hz) 直立式多段設計,體積小、佔地少,適合空間有限的機房與加壓站;SBI為不鏽鋼材質,可依現場需求選配。 2026/05/24 PDF / __MB 查看商品頁 下載型錄 型錄封面待補 PDF 規格書 Stairs Pump · 臥式 CB/CBI/HBI/HBN 臥式多段離心泵浦 臥式多段離心結構,運轉穩定、維修方便,常見於工廠製程用水、消防加壓與社區大樓給水系統。 2026/05/24 PDF / __MB 查看商品頁 下載型錄 型錄封面待補 PDF 規格書 Stairs Pump · 50Hz SB/SBI/SBN 立式多段泵浦(50Hz) 與60Hz機型同系列設計,適用50Hz電源環境或外銷專案,規格與外觀尺寸可對照60Hz版本參考。 2026/05/24 PDF / __MB 查看商品頁 下載型錄 型錄封面待補 PDF 規格書 陸上清水離心泵浦 陸上清水離心泵浦系列 適用於一般廠房、大樓給水與工業清水輸送系統,完整規格與型號對照請參考型錄內容。 2026/05/24 PDF / __MB 查看商品頁 下載型錄 型錄封面待補 PDF 規格書 沉水深井式清水泵浦 沉水深井式清水泵浦系列 適用於大樓、社區與井用取水系統,馬達與泵體全沉水設計,適合深井抽水應用。 2026/05/24 PDF / __MB 查看商品頁 下載型錄 型錄封面待補 PDF 規格書 沉水汙物汙水泵浦 沉水汙物汙水泵浦系列 針對污水處理、建築地下室排水與積水排除設計,適合含固體物之污水環境使用。 2026/05/24 PDF / __MB 查看商品頁 下載型錄 型錄封面待補 PDF 規格書 其他系列泵浦 其他系列泵浦 涵蓋國楊興業其他特殊需求或客製化泵浦產品,適用於一般清水系列以外的應用場景。 2026/05/24 PDF / __MB 查看商品頁 下載型錄 型錄封面待補 PDF 規格書 膨脹水箱、閥件 膨脹水箱與專用閥件規格書 包含密閉式膨脹水箱、安全閥、壓力表等系統配件之安裝與規格尺寸說明。 2026/05/24 PDF / __MB 查看商品頁 下載型錄 找不到符合的型錄,歡迎填寫線上選型/詢價諮詢單,由專人協助查找。 常見問題 立式多段泵浦與臥式多段泵浦該如何選擇? 立式多段泵浦(SB系列)佔地面積小,適合機房空間有限的場地;臥式多段泵浦(CB/HBI系列)維修保養較方便,常用於需長時間連續運轉的工廠或製程用水系統,實際選型建議依現場揚程、流量與安裝空間評估。 型錄提供50Hz與60Hz兩種版本,差異是什麼? 台灣為60Hz,若專案地點或外銷地區電源為50Hz,需選用對應版本,兩者外觀與安裝尺寸多數可對照,但實際性能曲線仍以型錄標示為準。 需要協助選型或報價?請直接與國楊興業聯繫。 來電諮詢:02-2951-0005 (function () { var grid = document.getElementById('catalogGrid'); var cards = Array.prototype.slice.call(grid.querySelectorAll('.catalog-card')); var searchInput = document.getElementById('searchInput'); var filterButtons = Array.prototype.slice.call(document.querySelectorAll('.filter-btn')); var emptyMsg = document.getElementById('searchEmpty'); var activeCategory = 'all'; // 圖片載入失敗時,切換成備用圖示,避免破圖影響體驗 grid.querySelectorAll('.card-preview img').forEach(function (img) { img.addEventListener('error', function () { img.closest('.card-preview').classList.add('no-image'); }); img.addEventListener('load', function () { img.closest('.card-preview').classList.remove('no-image'); }); }); function applyFilters() { var keyword = searchInput.value.trim().toLowerCase(); var visibleCount = 0; cards.forEach(function (card) { var matchesCategory = activeCategory === 'all' || card.getAttribute('data-category') === activeCategory; var title = card.querySelector('.card-title').innerText.toLowerCase(); var desc = card.querySelector('.card-desc').innerText.toLowerCase(); var matchesKeyword = !keyword || title.indexOf(keyword) !== -1 || desc.indexOf(keyword) !== -1; var show = matchesCategory && matchesKeyword; card.style.display = show ? 'flex' : 'none'; if (show) visibleCount++; }); emptyMsg.style.display = visibleCount === 0 ? 'block' : 'none'; } filterButtons.forEach(function (btn) { btn.addEventListener('click', function () { filterButtons.forEach(function (b) { b.setAttribute('aria-pressed', 'false'); }); btn.setAttribute('aria-pressed', 'true'); activeCategory = btn.getAttribute('data-category'); applyFilters(); }); }); searchInput.addEventListener('input', applyFilters); })();
https://www.nationrise.com.tw/ 國楊興業Stairs Pump Stairs泵浦
國楊興業|專業 Stairs Pump 宏奇泵浦、各式泵浦系統規劃、變頻加壓給水機組架設、膨脹水箱銷售 諮詢請來電:02-2951-0005

國楊 Stairs Pump 泵浦型錄下載

提供 Stairs Pump 宏奇泵浦、國楊 NR 變頻加壓給水機組與膨脹水箱之產品型錄 PDF 規格書,
可依型號搜尋或分類篩選

國楊興業代理 宏奇 Stairs Pump 全系列泵浦,型錄涵蓋 SB/SBI/SBN 立式多段泵浦CB/CBI/HBI/HBN 臥式多段離心泵浦、國楊 陸上清水離心泵浦、沉水深井式清水泵浦、沉水汙物汙水泵浦與膨脹水箱閥件, 內容包含外觀尺寸圖、性能曲線與材質規格,適用於大樓給水、加壓機組、灌溉與鍋爐給水等系統設計選型參考。

找不到符合的型錄,歡迎填寫線上選型/詢價諮詢單,由專人協助查找。

常見問題

立式多段泵浦與臥式多段泵浦該如何選擇?

立式多段泵浦(SB系列)佔地面積小,適合機房空間有限的場地;臥式多段泵浦(CB/HBI系列)維修保養較方便,常用於需長時間連續運轉的工廠或製程用水系統,實際選型建議依現場揚程、流量與安裝空間評估。

型錄提供50Hz與60Hz兩種版本,差異是什麼?

台灣為60Hz,若專案地點或外銷地區電源為50Hz,需選用對應版本,兩者外觀與安裝尺寸多數可對照,但實際性能曲線仍以型錄標示為準。

需要協助選型或報價?請直接與國楊興業聯繫。

來電諮詢:02-2951-0005