/* ----- 1. 專屬調色盤與外層容器 ----- */
.bf-article {
--bg-app: #3C3C3C;
--bg-card: #242426;
--bg-panel: #1e1e20;
--bg-input: #2a2a2d;
--text-main: #e0e0e0;
--text-muted: #d0d0d8;
--color-blue: #4dabf7;
--color-yellow: #ffd43b;
--color-orange: #ff922b;
--color-green: #51cf66;
--color-red: #ff6b6b;
--border-light: #4a4a4d;
--border-hover: #4dabf7;
--gradient-btn: linear-gradient(135deg, #e07b39, #d65c14);
max-width: 880px;
margin: 2rem auto;
font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
background-color: var(--bg-card);
color: var(--text-main);
line-height: 1.8;
border-radius: 20px;
box-shadow: 0 12px 40px rgba(0,0,0,0.5);
padding: 36px 40px 48px;
border: 1px solid var(--border-light);
}
/* ----- 2. 標題與重點排版 ----- */
.bf-article h1 { color: #ffffff; border-bottom: 2px solid #555; padding-bottom: 12px; font-size: 28px; line-height: 1.5; margin-bottom: 24px; font-weight: 700; text-align: center; }
.bf-article h2 { color: var(--color-yellow); margin-top: 50px; font-size: 26px; text-align: center; font-weight: 700; background: #1a1a1c; padding: 10px; border-radius: 8px; border: 1px solid #444; }
.bf-article h3 { color: var(--color-blue); font-size: 22px; margin-top: 0; margin-bottom: 16px; font-weight: 700; }
.bf-quote { background: #1a1a1c; padding: 18px 24px; border-radius: 12px; margin: 24px 0; font-size: 16px; box-shadow: inset 2px 2px 8px rgba(0,0,0,0.2); border-left: 4px solid var(--color-yellow); }
.hl-green { color: var(--color-green); background-color: #171717; padding: 2px 8px; border-radius: 4px; font-weight: bold; }
.hl-yellow { color: var(--color-yellow); background-color: #171717; padding: 2px 8px; border-radius: 4px; font-weight: bold; }
.hl-orange { color: var(--color-orange); background-color: #171717; padding: 2px 8px; border-radius: 4px; font-weight: bold; }
.hl-red { color: var(--color-red); background-color: #171717; padding: 2px 8px; border-radius: 4px; font-weight: bold; }
.divider-icon { text-align: center; font-size: 24px; color: #777; letter-spacing: 6px; margin: 40px 0; border-top: 1px dashed #444; padding-top: 30px; }
/* ----- 3. 連結與按鈕 ----- */
.bf-article a.text-link { color: var(--color-blue); text-decoration: none; border-bottom: 1px solid #1a3a5a; transition: 0.2s; font-weight: 500; }
.bf-article a.text-link:hover { color: #7ac0ff; border-bottom-color: var(--color-blue); }
.btn-buy { display: inline-flex; align-items: center; justify-content: center; gap: 8px; background: var(--gradient-btn); color: #ffffff !important; font-weight: 700; font-size: 16px; padding: 12px 24px; border-radius: 8px; text-decoration: none !important; border: none !important; box-shadow: 0 4px 12px rgba(224,123,57,0.3); margin-top: 16px; transition: 0.3s; }
.btn-buy:hover { transform: translateY(-3px); box-shadow: 0 8px 16px rgba(224,123,57,0.5); }
/* ----- 4. 純 CSS 頁籤系統 ----- */
.vps-tabs-nav { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 24px; justify-content: center; border-bottom: 2px dashed #444; padding-bottom: 20px; }
.vps-tabs-nav a { display: inline-block; padding: 10px 22px; border-radius: 30px; background: var(--bg-input); color: var(--text-muted); font-size: 15px; font-weight: 600; text-decoration: none; transition: 0.2s; border: 1px solid var(--border-light); }
.vps-tabs-nav a:hover { background: var(--color-blue); color: #fff; transform: translateY(-2px); box-shadow: 0 4px 12px rgba(77,171,247,0.4); border-color: var(--color-blue); }
.vps-tabs-container { background: var(--bg-panel); border-radius: 16px; padding: 28px 32px; box-shadow: inset 0 2px 10px rgba(0,0,0,0.3); border-left: 5px solid var(--color-blue); min-height: 250px; margin-bottom: 30px; }
.vps-tab-panel { display: none; animation: fadeIn 0.4s ease; }
.vps-tab-panel:target { display: block; }
/* 💡 核心魔法:為各個區塊設定對應的預設顯示頁籤 */
.cc-group:not(:has(.vps-tab-panel:target)) #cc-jade { display: block; }
.ovh-group:not(:has(.vps-tab-panel:target)) #ovh-bv { display: block; }
.lb-group:not(:has(.vps-tab-panel:target)) #lb-b1 { display: block; }
.hd1-group:not(:has(.vps-tab-panel:target)) #hd-la { display: block; }
.hd2-group:not(:has(.vps-tab-panel:target)) #hd-labf4 { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }
/* ----- 5. 條列清單與標籤 ----- */
.vps-list { list-style: none; padding-left: 0; margin-bottom: 20px; }
.vps-list li { margin-bottom: 12px; padding-left: 30px; position: relative; color: var(--text-muted); font-size: 15px; line-height: 1.6; }
.vps-list li::before { content: "✅"; position: absolute; left: 0; top: 0; font-size: 14px; }
.info-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 20px 0; }
.info-tags a { background: var(--bg-input); padding: 6px 12px; border-radius: 20px; font-size: 13px; color: #a0c3ff; border: 1px solid #3a3a3d !important; text-decoration: none !important; transition: 0.2s; }
.info-tags a:hover { background: #3a3a3d; color: #fff; border-color: var(--color-blue) !important; }
/* ----- 手機版微調 (RWD) ----- */
@media (max-width: 600px) {
.bf-article { padding: 20px 16px; margin: 1rem; border-radius: 16px; }
.bf-article h1 { font-size: 22px; }
.btn-buy { font-size: 15px; padding: 12px 16px; width: 100%; text-align: center; }
.vps-tabs-nav a { font-size: 13px; padding: 8px 14px; flex: 1 1 auto; text-align: center; }
.vps-tabs-container { padding: 20px 16px; }
}
列印本文 [63]
👨👩👧👦 1 次瀏覽 內容目錄
🛒 2019 黑色星期五:超值 VPS 主機推薦總匯大閱兵!
🔥 站長精選懶人包:
一年一度的黑五大拜拜又來啦!這次幫大家整理了四家極具特色的 VPS 廠商:CloudCone、OVH、Letbox 以及 HostDoc。不論你是要找大容量、無限流量,還是極致性價比的方案,這篇都能滿足你的需求!趕快往下尋寶吧 🚀😎
☁️ CloudCone
📖 深度評測 👉 VPS介紹 – CloudCone [19]
💎 JADE BLACK 方案
- CPU: Intel Xeon E5系列 @ 1 Core
- 記憶體: 1GB
- 硬碟空間: 20GB SSD (RAID 10)
- 網路流量: 3TB @ 1Gbps (10 Gbit NIC)
- IPv4 / IPv6: 1 個 / 3 個
- 專屬福利: 免費每日備份、免費 AnyCast DNS
- 年租費: $20 USD
🛒 BLKFIDY-1 方案
- CPU: Intel Xeon E5系列 @ 1 Core
- 記憶體: 1GB
- 硬碟空間: 20GB SSD (RAID 10)
- 網路流量: 3TB @ 1Gbps (10 Gbit NIC)
- IPv4 / IPv6: 1 個 / 3 個
- 專屬福利: 免費每日備份、免費 AnyCast DNS
- 月租費: $2 USD
🛒 BLKFIDY-2 方案
- CPU: Intel Xeon E5系列 @ 1 Core
- 記憶體: 2GB
- 硬碟空間: 40GB SSD (RAID 10)
- 網路流量: 3TB @ 1Gbps (10 Gbit NIC)
- IPv4 / IPv6: 1 個 / 3 個
- 專屬福利: 免費每日備份、免費 AnyCast DNS
- 月租費: $3 USD
🏢 OVH
📖 深度評測 👉 VPS介紹 – OVH [29]
🇺🇸 VPS BV (預設) [30]
🇸🇬 SSD VPS 1 [31]
🇺🇸 VPS BV 方案 (美國東岸)
- 所在位置: 維吉尼亞州, Vint Hill
- CPU: 1 Cores @ Intel Xeon E3-12xx v2 2599.998 MHz
- 記憶體: 2GB
- 硬碟空間: 20GB SSD
- 網路流量: 無限制 @ 100Mbps
- IPv4 / IPv6: 1 個 / 1 個
- 年租費: USD$17.88 (約549台幣)
🇸🇬 SSD VPS 1 方案 (新加坡)
- 所在位置: 新加坡
- CPU: 1 Cores @ Intel (Haswell, no TSX) 2099.998 MHz
- 記憶體: 2GB
- 硬碟空間: 20GB SSD
- 網路流量: 無限制 @ 100Mbps
- IPv4 / IPv6: 1 個 / 1 個
- 年租費: USD$32.16 (約989台幣)
📦 Letbox
📖 深度評測 👉 VPS介紹 – Letbox [38]
🚀 NB1 方案
- CPU: 2 Core
- 記憶體: 4GB
- 硬碟空間: 20GB NVMe SSD
- 網路流量: 5TB @ 1Gbps
- IPv4 / IPv6: 1 個 / 1 個 (64個可發Ticket免費申請)
- 年租費: $50 USD
👑 B1 方案 (雙硬碟款)
- CPU: 1 Core
⚠️ (20%使用率限制) - 記憶體: 1GB
- 硬碟空間: 20GB NVMe SSD + 128GB HDD (SAS)
- 網路流量: 5TB @ 1Gbps
- IPv4 / IPv6: 1 個 / 1 個 (64個可發Ticket免費申請)
- 費用: 月租 $3 USD / 年租 $30.12 USD
💾 SB1 方案 (大容量款)
- CPU: 1 Core
⚠️ (20%使用率限制) - 記憶體: 1GB
- 硬碟空間: 256GB HDD (SAS)
- 網路流量: 5TB @ 1Gbps
- IPv4 / IPv6: 1 個 / 1 個 (64個可發Ticket免費申請)
- 費用: 月租 $3 USD / 年租 $30.12 USD
🏥 HostDoc
📖 深度評測 👉 VPS介紹 – HostDoc [47]
📦 LA Storage 方案
- CPU: Intel I9-9900K @ 1 Core
- 記憶體: 2GB
- 硬碟空間: 100GB HDD
- 網路流量: 1TB @ 10Gbps
- IPv4 / IPv6: 2 個 / 64 個
- 月租費: $2.49 EUR
⚡ Dallas Dual Compute 方案
- CPU: Intel Xeon Gold 6128 @ 4 Core
- 記憶體: 4GB
- 硬碟空間: 25GB NVMe SSD + 100GB HDD
- 網路流量: 1TB @ 10Gbps
- IPv4 / IPv6: 1 個 / 64 個
- 月租費: $4.49 EUR
🦃 Kansas Gobbler 方案
- CPU: Intel Xeon E7-4780 @ 8 Core
- 記憶體: 12GB
- 硬碟空間: 100GB SSD
- 網路流量: 10TB @ 10Gbps
- IPv4 / IPv6: 1 個 / 64 個
- 費用: 月租 $12.87 USD / 年租 $128.73 USD
🔥 LABF4 (預設) [59]
🔥 KCBF6 [60]
🔥 LABF4 黑五專屬方案
- CPU: Intel I9-9900K @ 1 Core
- 記憶體: 1GB
- 硬碟空間: 20GB NVMe SSD
- 網路流量: 1TB @ 10Gbps
- IPv4 / IPv6: 1 個 / 64 個
- 費用: 月租 $3.85 USD / 年租 $38.66 USD
🔥 KCBF6 黑五專屬方案
- CPU: Intel Xeon E7-4780 @ 4 Core
- 記憶體: 4GB
- 硬碟空間: 100GB SSD
- 網路流量: Unmetered (無限制) @ 1Gbps
- IPv4 / IPv6: 1 個 / 64 個
- 費用: 月租 $6.43 USD / 年租 $64.43 USD
