
/* 全域設定:讓網頁看起來現代化且連續 */
:root {
--primary-color: #004aad; /* 假設學校主色調為藍色 */
--secondary-color: #e63946; /* 點綴色 */
--bg-color: #f4f7f6;
--text-color: #333;
--section-bg: #ffffff;
}
body {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
line-height: 1.6;
color: var(--text-color);
background-color: var(--bg-color);
margin: 0;
padding: 0;
}
/* 容器:限制最大寬度,讓閱讀體驗更好 */
.container {
max-width: 900px;
margin: 0 auto;
padding: 40px 20px;
}
/* 頁首 Header */
header {
text-align: center;
margin-bottom: 50px;
border-bottom: 3px solid var(--primary-color);
padding-bottom: 20px;
}
header h1 {
font-size: 2.5rem;
color: var(--primary-color);
margin: 10px 0;
text-transform: uppercase;
letter-spacing: 2px;
}
/* 每個區塊 (Section) 的樣式:取代 Word 的分頁 */
section {
background: var(--section-bg);
padding: 30px;
margin-bottom: 30px; /* 區塊之間的間距 */
border-radius: 10px;
box-shadow: 0 4px 6px rgba(0,0,0,0.05); /* 輕微陰影增加立體感 */
}
h2 {
color: var(--primary-color);
border-left: 5px solid var(--secondary-color);
padding-left: 15px;
margin-top: 0;
}
p {
margin-bottom: 15px;
text-align: justify;
}
/* 列表樣式優化 */
ul {
list-style-type: none;
padding: 0;
}
ul li {
padding: 8px 0;
border-bottom: 1px solid #eee;
}
ul li:last-child {
border-bottom: none;
}
/* 科系清單的特殊排版:使用 Grid 讓它變兩欄或三欄 */
.department-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 15px;
margin-top: 20px;
}
.department-item {
background: #f8f9fa;
padding: 15px;
border-radius: 5px;
text-align: center;
font-weight: bold;
color: #555;
border: 1px solid #e0e0e0;
}
/* 設施清單樣式 */
.facility-list li::before {
content: "✔";
color: var(--secondary-color);
margin-right: 10px;
}
/* 頁尾 */
footer {
text-align: center;
margin-top: 50px;
font-size: 0.9rem;
color: #777;
}
/* Logo 預留位置 */
.logo-placeholder {
width: 100%;
height: 100px;
background-color: #eee;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 20px;
border-radius: 5px;
color: #888;
}
