/* ----- 1. 整體文章容器與基礎設定 ----- */
.cc-article {
max-width: 850px;
margin: 2rem auto;
font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
/* 針對外部 #3C3C3C 背景,使用更深的曜石黑作對比,讓卡片浮現 */
background: #242426;
color: #e0e0e0;
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 #4a4a4d; /* 增加邊框層次感 */
}
/* ----- 2. 標題與分隔線 ----- */
.cc-article h1 { color: #ffffff; border-bottom: 2px solid #555; padding-bottom: 12px; font-size: 28px; line-height: 1.4; margin-bottom: 24px; font-weight: bold; }
.cc-article h2 { color: #ffd43b; margin-top: 40px; font-size: 24px; font-weight: bold; }
.cc-article h3 { color: #4dabf7; font-size: 22px; margin-top: 0; margin-bottom: 16px; font-weight: bold; }
.divider-line { border: 1px solid #444; margin: 30px 0; }
.divider-icon { text-align: center; font-size: 24px; color: #777; letter-spacing: 6px; }
/* ----- 3. 重點引用框 (Blockquotes) ----- */
.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);
}
.quote-yellow { border-left: 4px solid #ffd43b; color: #fff; }
/* ----- 4. 螢光筆重點 (Highlights) - BUG 已修復,拿掉 color:#000 ----- */
.hl-green { color: #51cf66; background-color: #171717; padding: 2px 8px; border-radius: 4px; font-weight: bold; }
.hl-yellow { color: #ffd43b; background-color: #171717; padding: 2px 8px; border-radius: 4px; font-weight: bold;}
.hl-orange { color: #ff922b; background-color: #171717; 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: #d0d0d8; font-size: 15.5px; }
.cc-list li::before { content: "✅"; position: absolute; left: 0; top: 0; font-size: 14px; }
.cc-article a { color: #4dabf7; text-decoration: none; border-bottom: 1px solid #1a3a5a; transition: 0.2s; font-weight: 500;}
.cc-article a:hover { color: #7ac0ff; border-bottom-color: #4dabf7; }
/* ----- 6. 漸層大按鈕 (購買連結) ----- */
.btn-buy {
display: inline-flex; align-items: center; justify-content: center; gap: 8px;
background: linear-gradient(135deg, #e07b39, #d65c14); 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 頁籤系統 (:has 魔法) ----- */
.cc-tabs-nav {
display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 24px;
justify-content: center; border-bottom: 2px dashed #444; padding-bottom: 20px;
}
.cc-tabs-nav a {
display: inline-block; padding: 12px 28px; border-radius: 30px; background: #333336; color: #c0c0d0;
font-size: 16px; font-weight: 600; text-decoration: none; transition: 0.2s; border: 1px solid #4a4a4d;
}
.cc-tabs-nav a:hover { background: #4dabf7; color: #fff; transform: translateY(-2px); box-shadow: 0 4px 12px rgba(77,171,247,0.4); border-color: #4dabf7; }
.cc-tabs-container {
background: #1e1e20; border-radius: 16px; padding: 28px 32px;
box-shadow: inset 0 2px 10px rgba(0,0,0,0.3); border-left: 5px solid #4dabf7; min-height: 250px;
}
.cc-tab-panel { display: none; animation: fadeIn 0.4s ease; }
.cc-tab-panel:target { display: block; }
/* 💡 核心魔法:如果容器內沒有任何 panel 被 target,就預設顯示 #plan-11-11-20-2 */
.cc-tabs-container:not(:has(.cc-tab-panel:target)) #plan-11-11-20-2 { 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: #4dabf7 !important;}
/* ----- 手機版微調 (RWD) ----- */
@media (max-width: 600px) {
.cc-article { padding: 20px 16px; margin: 1rem; border-radius: 16px; }
.cc-article h1 { font-size: 22px; }
.btn-buy { font-size: 16px; padding: 12px 20px; width: 100%; text-align: center; }
.cc-tabs-nav a { font-size: 14px; padding: 10px 16px; flex: 1 1 auto; text-align: center; }
.cc-tabs-container { padding: 20px 16px; }
}
列印本文 [14]
👨👩👧👦 1 次瀏覽 內容目錄
🎉 狂歡雙十一:CloudCone 購物節超值方案強勢登場!
🔥 一句話總結懶人包:
之前介紹過很多次的 CloudCone,這次也推出了雙十一購物節的專屬優惠!雖然這次不包含免費備份,但磁碟空間與網路流量與去年黑五相比都有大幅提升,最佛心的是——現有客戶也能直接購買唷! 🐱👤🐱🚀🐱👓
💡 溫故知新: 還不熟悉這家優質主機商的朋友,可以先回顧一下之前的評測文章 👉 VPS介紹 – CloudCone [5],或是直接前往 CloudCone 官網 [6] 逛逛。
📊 雙十一推薦方案比較
🛒 11.11.20-2:高性價比推薦款
- CPU: 2 Cores @ Intel Xeon E5
- 記憶體: 2GB
- 硬碟空間: 40GB SSD (RAID 10)
- 網路流量: 5TB @ 1Gbps (10 Gbit NIC)
- IPv4 / IPv6: 1 個 / 3 個
- 專屬福利: 免費 AnyCast DNS
- 年租費: $16.52 USD (約 $471 台幣)
🚀 11.11.20-3:進階記憶體與大容量
- CPU: 2 Cores @ Intel Xeon E5
- 記憶體: 3GB
- 硬碟空間: 60GB SSD (RAID 10)
- 網路流量: 5TB @ 1Gbps (10 Gbit NIC)
- IPv4 / IPv6: 1 個 / 3 個
- 專屬福利: 免費 AnyCast DNS
- 年租費: $21.07 USD (約 $601 台幣)
🔖 參考資料:CloudCone:$14/年/1GB記憶體 – 主機百科 [13]
