-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcase.html
More file actions
83 lines (73 loc) · 3.39 KB
/
case.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>機殼 (Case) - 電腦硬體架構指南</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>機殼 (Case)</h1>
<p class="subtitle" style="color: var(--text-muted); font-size: 1.2rem;">Computer Chassis - 電腦的房子</p>
</div>
<img src="case.png" alt="PC Case" class="detail-img">
</section>
<section>
<div class="info-section">
<h2>基本定義</h2>
<p>機殼是承載所有電腦硬體的框架。它保護內部精密的電子元件免受灰塵、液體和物理撞擊的損害,同時提供結構支撐。</p>
</div>
<div class="info-section">
<h2>功能說明</h2>
<ul style="padding-left: 20px; line-height: 1.6;">
<li><strong>保護與結構:</strong> 穩固地安裝主機板、電源、硬碟等元件。</li>
<li><strong>風流引導 (Airflow):</strong> 設計良好的機殼能引導冷空氣進入、熱空氣排出,避免熱量堆積。</li>
<li><strong>I/O 擴充:</strong> 提供前置 USB 插槽、耳機孔、開機鍵等方便操作的介面。</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)">散熱的基礎</h3>
<p>一個擁有良好散熱孔位與風道設計的機殼,能讓 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>