/* ----- 1. 專屬調色盤與外層容器 ----- */
.cc-xmas-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: 850px;
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. 標題與重點排版 ----- */
.cc-xmas-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; }
.cc-xmas-article h2 { color: var(--color-yellow); margin-top: 40px; font-size: 24px; text-align: center; font-weight: 700; }
.cc-xmas-article h3 { color: var(--color-blue); font-size: 22px; margin-top: 0; margin-bottom: 16px; font-weight: 700; }
.cc-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; }
.divider-icon { text-align: center; font-size: 24px; color: #777; letter-spacing: 6px; margin: 35px 0; border-top: 1px dashed #444; padding-top: 25px; }
/* ----- 3. 連結與按鈕 ----- */
.cc-xmas-article a.text-link { color: var(--color-blue); text-decoration: none; border-bottom: 1px solid #1a3a5a; transition: 0.2s; font-weight: 500; }
.cc-xmas-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: 14px 28px; 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: 12px 24px; 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: 32px 36px; box-shadow: inset 0 2px 10px rgba(0,0,0,0.3); border-left: 5px solid var(--color-blue); min-height: 250px; }
.vps-tab-panel { display: none; animation: fadeIn 0.4s ease; }
.vps-tab-panel:target { display: block; }
/* 💡 核心魔法:使用 :has() 讓 SNOWFLAKE-3 成為預設顯示頁籤 */
.plan-group:not(:has(.vps-tab-panel:target)) #plan-sf3 { 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 14px; border-radius: 20px; font-size: 13.5px; 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; }
.ref-box { background: #1a1a1c; border: 1px solid #333; border-left: 4px solid #555; padding: 12px 20px; border-radius: 8px; margin-top: 40px; font-size: 14px; color: #888; }
.ref-box a { color: #888; text-decoration: none; border-bottom: 1px dotted #555; transition: 0.2s; }
.ref-box a:hover { color: var(--color-blue); border-bottom-color: var(--color-blue); }
/* ----- 手機版微調 (RWD) ----- */
@media (max-width: 600px) {
.cc-xmas-article { padding: 24px 20px; margin: 1rem; border-radius: 16px; }
.cc-xmas-article h1 { font-size: 22px; }
.btn-buy { font-size: 15px; padding: 12px 16px; width: 100%; text-align: center; }
.vps-tabs-nav a { font-size: 13.5px; padding: 10px 16px; flex: 1 1 auto; text-align: center; }
.vps-tabs-container { padding: 24px 20px; }
}
列印本文 [19]
👨👩👧👦 1 次瀏覽 內容目錄
🎄 2019 聖誕狂歡:CloudCone 高 CP 值 VPS 優惠開箱!
🔥 一句話總結懶人包:
之前介紹過的 CloudCone [6] (評測文章:VPS介紹 – CloudCone [7]),這次也推出了超有誠意的**聖誕節專屬優惠**!雖然這次不包含免費備份,但磁碟空間與黑五相比是有稍微提升的喔!
CloudCone 一直是一家客服態度極佳的主機商,而且控制台功能真的超級優 ☝️ 所以特地挑選了幾個 CP 值爆表的方案貼出來給大家參考! 🐱👤🐱🚀🐱👓
📊 嚴選聖誕推薦方案
❄️ SNOWFLAKE-1.5 入門款
- CPU: Intel Xeon E5系列 @ 1 Core
- 記憶體: 1GB
- 硬碟空間: 35GB SSD (RAID 10)
- 網路流量: 3TB @ 1Gbps (10 Gbit NIC)
- IPv4 / IPv6: 1 個 / 3 個
- 專屬福利: 免費 AnyCast DNS
- 年租費: $23.03 USD (約 $700 台幣)
💎 SNOWFLAKE-3 超值款
- CPU: Intel Xeon E5系列 @ 1 Core
- 記憶體: 2GB
- 硬碟空間: 60GB SSD (RAID 10)
- 網路流量: 3TB @ 1Gbps (10 Gbit NIC)
- IPv4 / IPv6: 1 個 / 3 個
- 專屬福利: 免費 AnyCast DNS
- 月租費: $3.99 USD (約 $121 台幣)
🚀 SNOWFLAKE-4 進階款
- CPU: Intel Xeon E5系列 @ 2 Core
- 記憶體: 4GB
- 硬碟空間: 80GB SSD (RAID 10)
- 網路流量: 3TB @ 1Gbps (10 Gbit NIC)
- IPv4 / IPv6: 1 個 / 3 個
- 專屬福利: 免費 AnyCast DNS
- 月租費: $6.99 USD (約 $212 台幣)
