2026-05-06 16:22:41 +08:00
|
|
|
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100..900&display=swap');
|
2026-05-01 20:10:55 +08:00
|
|
|
|
2026-05-06 16:22:41 +08:00
|
|
|
:root {
|
2026-05-06 22:01:03 +08:00
|
|
|
--primary: #ffcc00;
|
2026-05-07 22:10:27 +08:00
|
|
|
--yellow: #ffcc00;
|
2026-05-06 22:01:03 +08:00
|
|
|
--light-yellow: #fceea7;
|
2026-05-07 22:10:27 +08:00
|
|
|
--dark-yellow: #4e492b;
|
2026-05-06 16:22:41 +08:00
|
|
|
--black: #1a1a1a;
|
2026-05-06 22:01:03 +08:00
|
|
|
--deep-black: #0a0a0a;
|
2026-05-07 22:10:27 +08:00
|
|
|
--gray: #f4f4f4;
|
|
|
|
|
--text-color: #333;
|
|
|
|
|
--accent: #FFD700;
|
|
|
|
|
--text: #1a1a1a;
|
2026-05-06 22:01:03 +08:00
|
|
|
--card-bg: #1a1a1a;
|
|
|
|
|
--bg-alt: #fcfaf2;
|
|
|
|
|
--text-main: #333;
|
|
|
|
|
--text-muted: #888;
|
2026-05-07 22:10:27 +08:00
|
|
|
--surface: #fffdf7;
|
|
|
|
|
--surface-soft: #fff9e8;
|
2026-05-06 16:22:41 +08:00
|
|
|
}
|
2026-05-01 20:10:55 +08:00
|
|
|
|
2026-05-06 16:22:41 +08:00
|
|
|
/* 1. 先處理 body 和全域,確保沒人亂給外距 */
|
|
|
|
|
* {
|
|
|
|
|
margin: 0;
|
|
|
|
|
padding: 0;
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
}
|
2026-05-01 20:10:55 +08:00
|
|
|
|
2026-05-06 22:01:03 +08:00
|
|
|
|
|
|
|
|
html,
|
|
|
|
|
body {
|
|
|
|
|
background-color: var(--deep-black);
|
|
|
|
|
color: #eeeeee;
|
2026-05-07 22:10:27 +08:00
|
|
|
height: 100%;
|
|
|
|
|
margin: 0;
|
|
|
|
|
padding: 0;
|
|
|
|
|
overflow-x: hidden;
|
2026-05-06 16:22:41 +08:00
|
|
|
}
|
2026-05-01 20:10:55 +08:00
|
|
|
|
2026-05-06 16:22:41 +08:00
|
|
|
body {
|
|
|
|
|
font-family: 'Noto Sans TC', system-ui, sans-serif;
|
|
|
|
|
color: var(--text-color);
|
|
|
|
|
line-height: 1.6;
|
|
|
|
|
}
|
2026-05-01 20:10:55 +08:00
|
|
|
|
2026-05-06 16:22:41 +08:00
|
|
|
header {
|
|
|
|
|
width: 100%;
|
2026-05-07 22:10:27 +08:00
|
|
|
height: 100vh;
|
|
|
|
|
min-height: 100dvh;
|
|
|
|
|
background-image: url('img/header.jpg');
|
|
|
|
|
background-position: center center;
|
2026-05-06 16:22:41 +08:00
|
|
|
background-repeat: no-repeat;
|
2026-05-07 22:10:27 +08:00
|
|
|
background-size: 108%;
|
2026-05-06 16:22:41 +08:00
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
text-align: center;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
position: relative;
|
|
|
|
|
}
|
2026-05-01 20:10:55 +08:00
|
|
|
|
2026-05-06 16:22:41 +08:00
|
|
|
/* 導覽列 */
|
|
|
|
|
nav {
|
|
|
|
|
background-color: var(--black);
|
2026-05-06 22:01:03 +08:00
|
|
|
padding: 0.8rem;
|
2026-05-07 22:10:27 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
nav ul {
|
|
|
|
|
list-style: none;
|
2026-05-06 16:22:41 +08:00
|
|
|
display: flex;
|
|
|
|
|
justify-content: center;
|
2026-05-07 22:10:27 +08:00
|
|
|
gap: 24px;
|
2026-05-06 16:22:41 +08:00
|
|
|
}
|
2026-05-01 20:10:55 +08:00
|
|
|
|
2026-05-06 16:22:41 +08:00
|
|
|
nav a {
|
|
|
|
|
color: var(--yellow);
|
|
|
|
|
text-decoration: none;
|
2026-05-06 22:01:03 +08:00
|
|
|
font-size: 0.95rem;
|
|
|
|
|
letter-spacing: 1px;
|
2026-05-06 16:22:41 +08:00
|
|
|
}
|
2026-05-01 20:10:55 +08:00
|
|
|
|
2026-05-06 22:01:03 +08:00
|
|
|
|
2026-05-06 16:22:41 +08:00
|
|
|
nav a:hover {
|
|
|
|
|
color: white;
|
|
|
|
|
}
|
2026-05-01 20:10:55 +08:00
|
|
|
|
2026-05-06 16:22:41 +08:00
|
|
|
#particles {
|
2026-05-07 22:10:27 +08:00
|
|
|
position: fixed;
|
|
|
|
|
inset: 0;
|
|
|
|
|
width: 100vw;
|
|
|
|
|
height: 100vh;
|
2026-05-06 16:22:41 +08:00
|
|
|
display: block;
|
2026-05-07 22:10:27 +08:00
|
|
|
z-index: 0;
|
2026-05-06 16:22:41 +08:00
|
|
|
pointer-events: none;
|
|
|
|
|
}
|
2026-05-01 20:10:55 +08:00
|
|
|
|
2026-05-07 22:10:27 +08:00
|
|
|
header,
|
|
|
|
|
nav,
|
|
|
|
|
.container,
|
|
|
|
|
footer {
|
|
|
|
|
position: relative;
|
|
|
|
|
z-index: 1;
|
|
|
|
|
}
|
|
|
|
|
|
2026-05-06 16:22:41 +08:00
|
|
|
/* 橫幅 Hero Section */
|
|
|
|
|
.hero {
|
|
|
|
|
position: relative;
|
2026-05-07 22:10:27 +08:00
|
|
|
z-index: 1;
|
|
|
|
|
height: 100%;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
align-items: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.hero h1,
|
|
|
|
|
.hero p {
|
|
|
|
|
margin: 0;
|
|
|
|
|
padding: 0.5rem;
|
2026-05-06 16:22:41 +08:00
|
|
|
}
|
2026-05-01 20:10:55 +08:00
|
|
|
|
2026-05-06 16:22:41 +08:00
|
|
|
.hero h1 {
|
|
|
|
|
font-size: 2.5rem;
|
|
|
|
|
line-height: 1.2;
|
|
|
|
|
color: var(--yellow);
|
|
|
|
|
text-shadow: 0 0 30px rgba(255, 221, 0, 0.8);
|
|
|
|
|
}
|
2026-04-11 22:40:09 +08:00
|
|
|
|
2026-05-06 16:22:41 +08:00
|
|
|
.hero p {
|
|
|
|
|
font-size: 1.2rem;
|
|
|
|
|
color: var(--gray);
|
|
|
|
|
}
|
2026-05-01 20:10:55 +08:00
|
|
|
|
2026-05-06 16:22:41 +08:00
|
|
|
.btn {
|
|
|
|
|
display: inline-block;
|
|
|
|
|
padding: 10px 30px;
|
|
|
|
|
background: var(--yellow);
|
|
|
|
|
color: #000;
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
border-radius: 50px;
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
transition: all 0.3s;
|
|
|
|
|
}
|
2026-04-11 22:40:09 +08:00
|
|
|
|
2026-05-06 16:22:41 +08:00
|
|
|
.btn:hover {
|
|
|
|
|
transform: scale(1.1);
|
|
|
|
|
background: #FFEE66;
|
|
|
|
|
}
|
2026-05-01 20:10:55 +08:00
|
|
|
|
|
|
|
|
|
2026-05-06 16:22:41 +08:00
|
|
|
/* 區塊容器 */
|
|
|
|
|
.container {
|
|
|
|
|
max-width: 1000px;
|
|
|
|
|
margin: 0 auto;
|
|
|
|
|
padding: 40px 20px;
|
|
|
|
|
}
|
2026-05-01 20:10:55 +08:00
|
|
|
|
2026-05-06 22:01:03 +08:00
|
|
|
.section-title {
|
|
|
|
|
color: var(--yellow);
|
|
|
|
|
text-align: center;
|
2026-05-07 22:10:27 +08:00
|
|
|
font-size: 1.35rem;
|
|
|
|
|
letter-spacing: 3px;
|
|
|
|
|
margin-bottom: 20px;
|
2026-05-06 22:01:03 +08:00
|
|
|
text-transform: uppercase;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.section-title::after {
|
|
|
|
|
content: "";
|
|
|
|
|
display: block;
|
|
|
|
|
width: 50px;
|
|
|
|
|
height: 3px;
|
|
|
|
|
background: var(--yellow);
|
|
|
|
|
margin: 15px auto 0;
|
|
|
|
|
}
|
|
|
|
|
|
2026-05-07 22:10:27 +08:00
|
|
|
.subtitle-wrap {
|
|
|
|
|
margin: 4px auto 28px;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.subtitle-wrap::before,
|
|
|
|
|
.subtitle-wrap::after {
|
|
|
|
|
content: "";
|
|
|
|
|
flex: 1;
|
|
|
|
|
height: 2px;
|
|
|
|
|
background-color: var(--yellow);
|
|
|
|
|
max-width: 56px;
|
|
|
|
|
opacity: 0.7;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.sub-title {
|
|
|
|
|
font-size: 0.72rem;
|
|
|
|
|
color: #7e7e7e;
|
|
|
|
|
letter-spacing: 2.4px;
|
|
|
|
|
margin: 0 18px;
|
|
|
|
|
}
|
|
|
|
|
|
2026-05-06 22:01:03 +08:00
|
|
|
|
|
|
|
|
|
2026-05-06 16:22:41 +08:00
|
|
|
.story-grid {
|
|
|
|
|
display: grid;
|
|
|
|
|
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
|
|
|
|
|
gap: 40px;
|
|
|
|
|
max-width: 1200px;
|
|
|
|
|
margin: 0 auto;
|
|
|
|
|
}
|
2026-05-01 20:10:55 +08:00
|
|
|
|
2026-05-06 16:22:41 +08:00
|
|
|
.card {
|
2026-05-07 22:10:27 +08:00
|
|
|
background: linear-gradient(135deg, var(--surface-soft) 0%, #ffffff 100%);
|
|
|
|
|
border: 1px solid rgba(255, 204, 0, 0.18);
|
|
|
|
|
border-radius: 14px;
|
2026-05-06 16:22:41 +08:00
|
|
|
padding: 30px;
|
2026-05-06 22:01:03 +08:00
|
|
|
transition: 0.4s;
|
2026-05-07 22:10:27 +08:00
|
|
|
box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
|
2026-05-06 16:22:41 +08:00
|
|
|
}
|
2026-04-11 22:40:09 +08:00
|
|
|
|
2026-05-06 16:22:41 +08:00
|
|
|
.card:hover {
|
2026-05-07 22:10:27 +08:00
|
|
|
transform: translateY(-8px);
|
2026-05-06 22:01:03 +08:00
|
|
|
border-color: var(--yellow);
|
2026-05-07 22:10:27 +08:00
|
|
|
box-shadow: 0 16px 32px rgba(0, 0, 0, 0.14);
|
2026-05-06 16:22:41 +08:00
|
|
|
}
|
2026-05-01 20:10:55 +08:00
|
|
|
|
2026-05-06 16:22:41 +08:00
|
|
|
.card h3 {
|
2026-05-07 22:10:27 +08:00
|
|
|
color: #2e2e2e;
|
2026-05-06 16:22:41 +08:00
|
|
|
margin-bottom: 15px;
|
|
|
|
|
}
|
2026-05-01 20:10:55 +08:00
|
|
|
|
2026-05-07 22:10:27 +08:00
|
|
|
.card p {
|
|
|
|
|
color: #585858;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* 統一 section 版型 */
|
2026-05-06 16:22:41 +08:00
|
|
|
section {
|
2026-05-07 22:10:27 +08:00
|
|
|
margin-top: 0 !important;
|
2026-05-06 16:22:41 +08:00
|
|
|
margin-bottom: 60px;
|
2026-05-07 22:10:27 +08:00
|
|
|
background: var(--surface);
|
|
|
|
|
padding: 44px 36px;
|
|
|
|
|
border-radius: 16px;
|
|
|
|
|
border: 1px solid rgba(255, 204, 0, 0.15);
|
|
|
|
|
box-shadow: 0 14px 34px rgba(0, 0, 0, 0.15);
|
2026-05-06 16:22:41 +08:00
|
|
|
position: relative;
|
|
|
|
|
z-index: 10;
|
|
|
|
|
}
|
2026-05-01 20:10:55 +08:00
|
|
|
|
2026-05-06 16:22:41 +08:00
|
|
|
/* 作品列表表格 */
|
|
|
|
|
table {
|
|
|
|
|
width: 100%;
|
|
|
|
|
border-collapse: collapse;
|
|
|
|
|
margin-top: 20px;
|
2026-05-07 22:10:27 +08:00
|
|
|
border-radius: 12px;
|
2026-05-06 22:01:03 +08:00
|
|
|
overflow: hidden;
|
2026-05-07 22:10:27 +08:00
|
|
|
background: #fff;
|
|
|
|
|
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
|
2026-05-06 16:22:41 +08:00
|
|
|
}
|
2026-05-01 20:10:55 +08:00
|
|
|
|
2026-05-06 16:22:41 +08:00
|
|
|
table th {
|
|
|
|
|
background-color: var(--yellow);
|
|
|
|
|
color: var(--black);
|
|
|
|
|
padding: 12px;
|
|
|
|
|
}
|
2026-04-11 22:40:09 +08:00
|
|
|
|
2026-05-06 16:22:41 +08:00
|
|
|
table td {
|
|
|
|
|
padding: 12px;
|
2026-05-07 22:10:27 +08:00
|
|
|
border-bottom: 1px solid #ececec;
|
2026-05-06 16:22:41 +08:00
|
|
|
text-align: center;
|
2026-05-07 22:10:27 +08:00
|
|
|
color: #4a4a4a;
|
2026-05-06 16:22:41 +08:00
|
|
|
}
|
2026-05-01 20:10:55 +08:00
|
|
|
|
2026-05-06 16:22:41 +08:00
|
|
|
a {
|
|
|
|
|
color: var(--text-color);
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
}
|
2026-05-01 20:10:55 +08:00
|
|
|
|
2026-05-07 22:10:27 +08:00
|
|
|
.story-archive {
|
|
|
|
|
overflow: hidden;
|
2026-05-06 16:22:41 +08:00
|
|
|
}
|
2026-05-01 20:10:55 +08:00
|
|
|
|
2026-05-07 22:10:27 +08:00
|
|
|
/* 備註:移除主軸上方獨立鑽石後,將主軸上下邊界微調 4px,保留你要的留白節奏 */
|
|
|
|
|
.merged-storyline {
|
2026-05-06 16:22:41 +08:00
|
|
|
position: relative;
|
2026-05-07 22:10:27 +08:00
|
|
|
padding-top: 18px;
|
|
|
|
|
padding-bottom: 4px;
|
|
|
|
|
max-width: 960px;
|
|
|
|
|
margin: 0 auto;
|
2026-05-06 16:22:41 +08:00
|
|
|
}
|
2026-05-01 20:10:55 +08:00
|
|
|
|
2026-05-07 22:10:27 +08:00
|
|
|
/* 備註:主軸往上/下各延伸 4px,避免線段在視覺上被截斷 */
|
|
|
|
|
.merged-storyline::before {
|
|
|
|
|
content: "";
|
2026-05-06 16:22:41 +08:00
|
|
|
position: absolute;
|
2026-05-07 22:10:27 +08:00
|
|
|
top: -4px;
|
|
|
|
|
bottom: -4px;
|
|
|
|
|
left: 50%;
|
|
|
|
|
width: 4px;
|
|
|
|
|
transform: translateX(-50%);
|
|
|
|
|
background: linear-gradient(180deg, #ffde5f 0%, #ffcc00 45%, #f3b700 100%);
|
|
|
|
|
border-radius: 8px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.story-node {
|
|
|
|
|
position: relative;
|
|
|
|
|
width: calc(50% - 34px);
|
|
|
|
|
margin-bottom: 28px;
|
|
|
|
|
padding: 16px 18px;
|
|
|
|
|
background: linear-gradient(135deg, var(--surface-soft) 0%, #fff 100%);
|
|
|
|
|
border: 1px solid rgba(255, 204, 0, 0.18);
|
|
|
|
|
border-radius: 12px;
|
|
|
|
|
box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* 備註:改回 Font Awesome 鑽石圖示,並加上 border-box 讓圓圈節點中心準確對齊主軸 */
|
|
|
|
|
.story-node::before {
|
|
|
|
|
content: "\f3a5";
|
|
|
|
|
font-family: "Font Awesome 6 Free";
|
|
|
|
|
font-weight: 900;
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 6px;
|
|
|
|
|
width: 30px;
|
|
|
|
|
height: 30px;
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
display: grid;
|
|
|
|
|
place-items: center;
|
|
|
|
|
line-height: 1;
|
|
|
|
|
border-radius: 50%;
|
|
|
|
|
background: #fffdf5;
|
|
|
|
|
color: #e0b400;
|
|
|
|
|
/* border: 2px solid var(--yellow);
|
|
|
|
|
box-shadow: 0 0 0 4px var(--surface), 0 4px 10px rgba(0, 0, 0, 0.14); */
|
|
|
|
|
z-index: 2;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* 備註:時間標籤改成 concert 的日期章語言,並把字級放大到原本兩倍以上 */
|
|
|
|
|
.story-node::after {
|
|
|
|
|
content: attr(data-era);
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: -14px;
|
|
|
|
|
background-color: var(--yellow);
|
|
|
|
|
color: #303030;
|
|
|
|
|
font-size: 0.7rem;
|
|
|
|
|
font-weight: 700;
|
|
|
|
|
letter-spacing: 0.5px;
|
|
|
|
|
border-radius: 7px;
|
|
|
|
|
padding: 3px 9px;
|
|
|
|
|
border: 2px solid #fff;
|
|
|
|
|
box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.16);
|
|
|
|
|
z-index: 3;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* 備註:改用奇偶自動分邊,新增中間節點時不需要手動加 class */
|
|
|
|
|
.merged-storyline .story-node:nth-of-type(odd) {
|
|
|
|
|
margin-right: auto;
|
|
|
|
|
margin-top: 30px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.merged-storyline .story-node:nth-of-type(odd)::before {
|
|
|
|
|
right: -49px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.merged-storyline .story-node:nth-of-type(odd)::after {
|
|
|
|
|
right: -10px;
|
|
|
|
|
top: -20px;
|
|
|
|
|
transform: rotate(30deg);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.merged-storyline .story-node:nth-of-type(even) {
|
|
|
|
|
margin-left: auto;
|
|
|
|
|
margin-top: 10px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.merged-storyline .story-node:nth-of-type(even)::before {
|
|
|
|
|
left: -49px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.merged-storyline .story-node:nth-of-type(even)::after {
|
|
|
|
|
left: -10px;
|
|
|
|
|
top: -20px;
|
|
|
|
|
transform: rotate(-30deg);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.story-node h3 {
|
|
|
|
|
color: #303030;
|
|
|
|
|
margin-bottom: 8px;
|
|
|
|
|
font-size: 1rem;
|
|
|
|
|
line-height: 1.5;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.story-node p {
|
|
|
|
|
color: #575757;
|
|
|
|
|
font-size: 0.9rem;
|
|
|
|
|
line-height: 1.7;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media (max-width: 900px) {
|
|
|
|
|
|
|
|
|
|
/* 備註:手機版主軸維持在左側,避免鑽石與內容互相遮擋 */
|
|
|
|
|
.merged-storyline::before {
|
|
|
|
|
left: 18px;
|
|
|
|
|
transform: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.story-node {
|
|
|
|
|
width: calc(100% - 44px);
|
|
|
|
|
margin-left: 44px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.story-node {
|
|
|
|
|
margin-right: 0;
|
|
|
|
|
margin-left: 44px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.story-node::before {
|
|
|
|
|
left: -39px;
|
|
|
|
|
right: auto;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.story-node::after {
|
|
|
|
|
left: 14px;
|
|
|
|
|
right: auto;
|
|
|
|
|
transform: rotate(-8deg);
|
|
|
|
|
}
|
2026-05-06 16:22:41 +08:00
|
|
|
}
|
2026-05-01 20:10:55 +08:00
|
|
|
|
2026-05-06 16:22:41 +08:00
|
|
|
/* 頁尾 */
|
|
|
|
|
footer {
|
|
|
|
|
background-color: var(--black);
|
|
|
|
|
color: white;
|
|
|
|
|
text-align: center;
|
2026-05-07 22:10:27 +08:00
|
|
|
padding: 50px 0 20px;
|
2026-05-06 16:22:41 +08:00
|
|
|
}
|
2026-05-01 20:10:55 +08:00
|
|
|
|
2026-05-06 16:22:41 +08:00
|
|
|
.highlight {
|
|
|
|
|
color: var(--dark-yellow);
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
}
|