-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcooling.html
More file actions
83 lines (73 loc) · 3.39 KB
/
cooling.html
File metadata and controls
83 lines (73 loc) · 3.39 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
<!DOCTYPE html>
<html lang="zh-Hant">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CPU 散熱器 - 電腦硬體架構指南</title>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;700;800&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
</head>
<body>
<header>
<div class="logo">3D電腦硬體介紹網站</div>
<div class="menu-toggle">
<i class="fas fa-bars"></i>
</div>
<nav>
<ul>
<li><a href="index.html">首頁</a></li>
<li><a href="comparison.html">元件比較</a></li>
<li><a href="overview.html">架構總覽</a></li>
</ul>
</nav>
</header>
<main class="container">
<section class="detail-hero">
<div class="detail-info">
<h1>CPU 散熱器 (CPU Cooler)</h1>
<p class="subtitle" style="color: var(--text-muted); font-size: 1.2rem;">Thermal Solution - cpu的冷氣</p>
</div>
<img src="cpu cooler.png" alt="CPU Cooler Image" class="detail-img">
</section>
<section>
<div class="info-section">
<h2>基本定義</h2>
<p>CPU 散熱器的專一目標是迅速將中央處理器 (CPU) 在高速運算時產生的廢熱移除,防止核心過熱降頻或損壞。</p>
</div>
<div class="info-section">
<h2>功能說明</h2>
<ul style="padding-left: 20px; line-height: 1.6;">
<li><strong>熱傳導:</strong> 透過導熱膏與金屬底座,將 CPU 表面熱量傳導至散熱器。</li>
<li><strong>空冷 (Air Cooling):</strong> 利用熱導管將熱量傳至鰭片,再由風扇吹走。</li>
<li><strong>水冷 (Liquid Cooling):</strong> 利用水冷液循環將熱量帶到冷排散發,效率通常較高。</li>
</ul>
</div>
<div class="info-section">
<h2>系統角色與交互關係</h2>
<div style="margin-top: 1rem; display: flex; gap: 1rem; flex-wrap: wrap;">
<div class="glass-panel" style="flex: 1;">
<h3 style="color: var(--primary-color)">防止過熱降頻 (Throttling)</h3>
<p>CPU 持續高效運作的關鍵。如果散熱器效能不足,CPU 用到一半就會因為溫度撞牆而強制變慢。</p>
</div>
</div>
</div>
</section>
<div style="text-align: center; margin: 4rem 0;">
<a href="index.html" class="glass-panel" style="display: inline-block;">← 返回首頁導覽</a>
</div>
</main>
<footer>
<div class="footer-content">
<p>聯絡資訊:</p>
<div class="contact-item">
<i class="fab fa-google"></i> Gmail: c113181121@nkust.edu.tw
</div>
<div class="contact-item">
<i class="fab fa-github"></i> github: <a href="https://github.com/EK181121"
target="_blank">https://github.com/EK181121</a>
</div>
</div>
</footer>
</body>
</html>