/* --- 專屬調色盤 --- */
:root {
--bg-card-main: #242426; /* 卡片主底色,對比外部 #3C3C3C */
--bg-tab-panel: #1e1e20; /* 頁籤面板底色 */
--bg-highlight: #171717; /* 重點文字/引用框底色 */
--text-main: #e0e0e0; /* 主要文字 */
--text-muted: #d0d0d8; /* 次要文字 */
--border-color: #4a4a4d; /* 邊框與分隔線 */
--color-blue: #4dabf7; /* 科技藍 */
--color-yellow: #ffd43b; /* 亮黃色 */
--color-orange: #ff922b; /* 暖橘色 */
--color-green: #51cf66; /* 翡翠綠 */
--color-red: #ff6b6b; /* 警示紅 */
--gradient-btn: linear-gradient(135deg, #e07b39, #d65c14);
}
/* ----- 1. 整體文章容器與基礎設定 ----- */
.cc-article {
max-width: 860px;
margin: 2rem auto;
font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
background: var(--bg-card-main);
color: var(--text-main);
line-height: 1.8;
border-radius: 20px;
box-shadow: 0 12px 40px rgba(0,0,0,0.5);
padding: 32px 36px 40px;
border: 1px solid var(--border-color);
}
/* ----- 2. 標題與分隔線 ----- */
.cc-article h2 { color: var(--color-yellow); margin-top: 30px; margin-bottom: 20px; font-size: 26px; text-align: center; }
.cc-article h3 { color: var(--color-blue); font-size: 22px; margin-top: 0; margin-bottom: 16px; border-bottom: 2px solid var(--border-color); padding-bottom: 10px;}
.divider-icon { text-align: center; font-size: 24px; color: #777; letter-spacing: 6px; margin: 30px 0; }
/* ----- 3. 重點引用框 (Blockquotes) ----- */
.cc-quote {
background: var(--bg-highlight); 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);
}
/* ----- 4. 螢光筆重點 (Highlights) ----- */
.hl-green { color: var(--color-green); background-color: var(--bg-highlight); padding: 2px 8px; border-radius: 4px; font-weight: bold; }
.hl-yellow { color: var(--color-yellow); background-color: var(--bg-highlight); padding: 2px 8px; border-radius: 4px; font-weight: bold;}
.hl-orange { color: var(--color-orange); background-color: var(--bg-highlight); padding: 2px 8px; border-radius: 4px; font-weight: bold; }
/* ----- 5. 條列清單與連結 ----- */
.cc-list { list-style: none; padding-left: 0; margin-bottom: 20px; }
.cc-list li { margin-bottom: 12px; padding-left: 32px; position: relative; color: var(--text-muted); font-size: 15.5px; }
.cc-list li::before { content: "✅"; position: absolute; left: 0; top: 0; font-size: 14px; }
.cc-article a { color: var(--color-blue); text-decoration: none; border-bottom: 1px solid #1a3a5a; transition: 0.2s; font-weight: 500;}
.cc-article a:hover { color: #7ac0ff; border-bottom-color: var(--color-blue); }
/* ----- 6. 漸層大按鈕 (購買連結) ----- */
.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: 18px; 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); }
/* ----- 7. 純 CSS 頁籤系統 ----- */
.cc-tabs-nav {
display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 24px;
justify-content: center; border-bottom: 2px dashed var(--border-color); padding-bottom: 20px;
}
.cc-tabs-nav a.tab-link {
display: inline-block; padding: 12px 28px; border-radius: 30px; background: #333336; color: var(--text-muted);
font-size: 16px; font-weight: 600; text-decoration: none; transition: 0.2s; border: 1px solid var(--border-color);
}
.cc-tabs-nav a.tab-link: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); }
.cc-tabs-container {
background: var(--bg-tab-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;
}
.cc-tab-panel { display: none; animation: fadeIn 0.4s ease; }
.cc-tab-panel:target { display: block; }
/* 💡 核心魔法:如果容器內沒有任何 panel 被 target,預設顯示 #offer-1 (CPU 2 Cores 基礎款) */
.cc-tabs-container:not(:has(.cc-tab-panel:target)) #offer-1 { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }
/* ----- 8. 機房資訊小標籤 ----- */
.info-tags { display: flex; flex-wrap: wrap; gap: 10px; margin: 20px 0; }
.info-tags a {
background: #2a2a2d; padding: 8px 14px; border-radius: 20px; font-size: 13.5px;
color: #a0c3ff; border: 1px solid #3a3a3d !important; text-decoration: none !important;
}
.info-tags a:hover { background: #3a3a3d; color: #fff; border-color: var(--color-blue) !important;}
/* ----- 手機版微調 ----- */
@media (max-width: 600px) {
.cc-article { padding: 20px 16px; margin: 1rem; border-radius: 16px; }
.btn-buy { font-size: 15px; padding: 12px 20px; width: 100%; text-align: center; }
.cc-tabs-nav a.tab-link { font-size: 14px; padding: 10px 16px; flex: 1 1 auto; text-align: center; }
.cc-tabs-container { padding: 20px 16px; }
}
列印本文 [13]
👨👩👧👦 0 次瀏覽 🔥 之前介紹過的 CloudCone [1](評測文章:VPS介紹 – CloudCone [2]),今天也推出了 雙十一購物節的優惠!
不過力度我覺得比起去年(VPS優惠 – CloudCone | 2020 雙十一購物節 [3])差了些 🐱👤🐱🚀🐱👓
內容目錄
📊 推薦方案比較
🛒 11.11. VPS Offer 1
- CPU: 2 Cores @ Intel Xeon E5
- 記憶體: 1GB
- 硬碟空間: 40GB SSD (RAID 10)
- 網路流量: 2TB @ 1Gbps (10 Gbit NIC)
- IPv4 / IPv6: 1 個 / 3 個
- 專屬福利: 免費 AnyCast DNS
- 年租費: $11.11 USD (約 $312 台幣)
🚀 11.11. VPS Offer 2
- CPU: 2 Cores @ Intel Xeon E5
- 記憶體: 2GB
- 硬碟空間: 80GB SSD (RAID 10)
- 網路流量: 4TB @ 1Gbps (10 Gbit NIC)
- IPv4 / IPv6: 1 個 / 3 個
- 專屬福利: 免費 AnyCast DNS
- 年租費: $21.90 USD (約 $615 台幣)
