feat:建立concert.html
This commit is contained in:
@@ -1,308 +1,237 @@
|
||||
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100..900&display=swap');
|
||||
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100..900&display=swap');
|
||||
|
||||
:root {
|
||||
/* 1. 核心主角:水晶黃 */
|
||||
--primary: #FFDD00;
|
||||
/* 主色:應援黃 */
|
||||
--accent: #FFD700;
|
||||
/* 強調:較深一點的金色,用於 Hover 效果 */
|
||||
--secondary: #ea9a87;
|
||||
/* 次要:規範中的粉橘,用於柔和的提醒 */
|
||||
--text: #190604;
|
||||
/* 標題:採用規範中最深的 Core-900,壓住亮度 */
|
||||
--text-muted: #666666;
|
||||
/* 次要文字:規範中的 Gray-700 */
|
||||
--text-white: #ffffff;
|
||||
/* 純白:用於深色底部的文字 */
|
||||
:root {
|
||||
--yellow: #FFD700;
|
||||
/* 應援黃色 */
|
||||
--dark-yellow: #4e492b;
|
||||
--black: #1a1a1a;
|
||||
--gray: #f4f4f4;
|
||||
--text-color: #333;
|
||||
--dark: #777;
|
||||
--accent: #FFD700;
|
||||
}
|
||||
|
||||
/* 背景顏色 */
|
||||
--bg: #292929;
|
||||
/* 大背景:規範中的輕灰 */
|
||||
--bg-alt: #ffffff;
|
||||
/* 區塊背景:純白 */
|
||||
/* 1. 先處理 body 和全域,確保沒人亂給外距 */
|
||||
* {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
/* 4. 交互細節 */
|
||||
--interactive-hover: #862617;
|
||||
/* 懸停:規範中的深紅,點綴黃色的對比 */
|
||||
--shadow: rgba(0, 0, 0, 0.1);
|
||||
html {
|
||||
background: #0A0A0A;
|
||||
min-height: 100%;
|
||||
}
|
||||
|
||||
/* 灰色系 (Gray Scale) */
|
||||
--gray-900: #333333;
|
||||
--gray-700: #777;
|
||||
--gray-500: #999999;
|
||||
--gray-300: #cccccc;
|
||||
--gray-100: #eeeeee;
|
||||
body {
|
||||
font-family: 'Noto Sans TC', system-ui, sans-serif;
|
||||
color: var(--text-color);
|
||||
line-height: 1.6;
|
||||
overflow-x: hidden;
|
||||
}
|
||||
|
||||
--font-size: 16px;
|
||||
}
|
||||
header {
|
||||
/* aspect-ratio: 1920 / 1080; */
|
||||
width: 100%;
|
||||
/* 改用 vh (螢幕高度) 通常比 aspect-ratio 更能解決首屏留白問題 */
|
||||
min-height: 100vh;
|
||||
background-image: url(img/header.jpg);
|
||||
background-size: cover;
|
||||
background-position: center;
|
||||
background-repeat: no-repeat;
|
||||
|
||||
* {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
|
||||
body {
|
||||
font-family: 'Noto Sans TC', system-ui, sans-serif;
|
||||
background: var(--bg);
|
||||
color: var(--text);
|
||||
line-height: 1.6;
|
||||
overflow-x: hidden;
|
||||
}
|
||||
text-align: center;
|
||||
overflow: hidden;
|
||||
position: relative;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
vertical-align: bottom;
|
||||
/* 消除某些瀏覽器對區塊元素的底邊留白 */
|
||||
}
|
||||
|
||||
header {
|
||||
height: 100vh;
|
||||
/* background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.8)), url('https://via.placeholder.com/1920x1080/FFDD00/000000?text=SECHSKIES') center/cover no-repeat; */
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
text-align: center;
|
||||
position: relative;
|
||||
}
|
||||
/* 導覽列 */
|
||||
nav {
|
||||
background-color: var(--black);
|
||||
padding: 0.5rem;
|
||||
position: sticky;
|
||||
top: 0;
|
||||
z-index: 1000;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.hero {
|
||||
z-index: 2;
|
||||
}
|
||||
nav a {
|
||||
color: var(--yellow);
|
||||
text-decoration: none;
|
||||
margin: 0 20px;
|
||||
font-weight: bold;
|
||||
transition: 0.3s;
|
||||
}
|
||||
|
||||
.hero h1 {
|
||||
font-size: 2.5rem;
|
||||
line-height: 1.2;
|
||||
color: var(--primary);
|
||||
text-shadow: 0 0 30px rgba(255, 221, 0, 0.8);
|
||||
margin-bottom: 0.5rem;
|
||||
}
|
||||
nav a:hover {
|
||||
color: white;
|
||||
}
|
||||
|
||||
.hero p {
|
||||
font-size: 1.2rem;
|
||||
margin-bottom: 2rem;
|
||||
}
|
||||
#particles {
|
||||
position: absolute;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
display: block;
|
||||
z-index: 1;
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
.btn {
|
||||
display: inline-block;
|
||||
padding: 10px 30px;
|
||||
background: var(--primary);
|
||||
color: var(--text-white);
|
||||
font-weight: bold;
|
||||
border-radius: 50px;
|
||||
text-decoration: none;
|
||||
transition: all 0.3s;
|
||||
}
|
||||
/* 橫幅 Hero Section */
|
||||
.hero {
|
||||
z-index: 2;
|
||||
position: relative;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.btn:hover {
|
||||
transform: scale(1.1);
|
||||
background: #FFEE66;
|
||||
}
|
||||
.hero h1 {
|
||||
font-size: 2.5rem;
|
||||
line-height: 1.2;
|
||||
color: var(--yellow);
|
||||
text-shadow: 0 0 30px rgba(255, 221, 0, 0.8);
|
||||
}
|
||||
|
||||
section {
|
||||
padding: 100px 8%;
|
||||
}
|
||||
.hero p {
|
||||
font-size: 1.2rem;
|
||||
/* margin-bottom: 2rem; */
|
||||
color: var(--gray);
|
||||
|
||||
h2 {
|
||||
font-size: 3rem;
|
||||
color: var(--text-muted);
|
||||
text-align: center;
|
||||
margin-bottom: 60px;
|
||||
position: relative;
|
||||
}
|
||||
}
|
||||
|
||||
h2:after {
|
||||
content: '';
|
||||
width: 80px;
|
||||
height: 4px;
|
||||
background: var(--primary);
|
||||
position: absolute;
|
||||
bottom: -15px;
|
||||
left: 50%;
|
||||
transform: translateX(-50%);
|
||||
}
|
||||
.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;
|
||||
}
|
||||
|
||||
/* 故事背景 */
|
||||
#story {
|
||||
background: #111;
|
||||
}
|
||||
.btn:hover {
|
||||
transform: scale(1.1);
|
||||
background: #FFEE66;
|
||||
}
|
||||
|
||||
.story-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
|
||||
gap: 40px;
|
||||
max-width: 1200px;
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
.card {
|
||||
background: rgba(255, 255, 255, 0.05);
|
||||
border-radius: 20px;
|
||||
padding: 30px;
|
||||
transition: transform 0.4s, box-shadow 0.4s;
|
||||
}
|
||||
/* 區塊容器 */
|
||||
.container {
|
||||
max-width: 1000px;
|
||||
margin: 0 auto;
|
||||
padding: 40px 20px;
|
||||
}
|
||||
|
||||
.card:hover {
|
||||
transform: translateY(-15px);
|
||||
box-shadow: 0 20px 40px rgba(255, 221, 0, 0.2);
|
||||
}
|
||||
.story-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
|
||||
gap: 40px;
|
||||
max-width: 1200px;
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
.card h3 {
|
||||
color: var(--primary);
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
.card {
|
||||
/* background: rgba(0, 0, 0, 0.85); */
|
||||
border-radius: 20px;
|
||||
padding: 30px;
|
||||
transition: transform 0.4s, box-shadow 0.4s;
|
||||
}
|
||||
|
||||
/* 成員介紹 */
|
||||
#members {
|
||||
background: linear-gradient(#1A1A2E, #0A0A0A);
|
||||
}
|
||||
.card:hover {
|
||||
transform: translateY(-15px);
|
||||
box-shadow: 0 5px 5px rgba(255, 221, 0, 0.2);
|
||||
}
|
||||
|
||||
.members-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
|
||||
gap: 30px;
|
||||
max-width: 1200px;
|
||||
margin: 0 auto;
|
||||
}
|
||||
.card h3 {
|
||||
color: var(--yellow);
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
|
||||
.member {
|
||||
text-align: center;
|
||||
}
|
||||
section {
|
||||
margin-bottom: 60px;
|
||||
background: rgba(255, 255, 255, 0.95);
|
||||
padding: 30px;
|
||||
border-radius: 15px;
|
||||
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
|
||||
position: relative;
|
||||
z-index: 10;
|
||||
}
|
||||
|
||||
.member img {
|
||||
width: 100%;
|
||||
border-radius: 20px;
|
||||
border: 4px solid var(--primary);
|
||||
transition: all 0.4s;
|
||||
}
|
||||
h2 {
|
||||
border-left: 5px solid var(--yellow);
|
||||
padding-left: 15px;
|
||||
color: var(--black);
|
||||
margin-bottom: 25px;
|
||||
}
|
||||
|
||||
.member:hover img {
|
||||
border-color: #FFEE66;
|
||||
transform: scale(1.05);
|
||||
}
|
||||
/* 作品列表表格 */
|
||||
table {
|
||||
width: 100%;
|
||||
border-collapse: collapse;
|
||||
margin-top: 20px;
|
||||
}
|
||||
|
||||
.member h3 {
|
||||
margin-top: 15px;
|
||||
color: var(--primary);
|
||||
}
|
||||
table th {
|
||||
background-color: var(--yellow);
|
||||
color: var(--black);
|
||||
padding: 12px;
|
||||
}
|
||||
|
||||
/* 歷年作品時間軸 */
|
||||
#discography {
|
||||
background: #111;
|
||||
}
|
||||
table td {
|
||||
padding: 12px;
|
||||
border-bottom: 1px solid #ddd;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.timeline {
|
||||
max-width: 1000px;
|
||||
margin: 0 auto;
|
||||
position: relative;
|
||||
}
|
||||
a {
|
||||
color: var(--text-color);
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.timeline:before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
left: 50%;
|
||||
top: 0;
|
||||
bottom: 0;
|
||||
width: 6px;
|
||||
/* background: var(--primary); */
|
||||
opacity: 0.3;
|
||||
}
|
||||
/* 現在的故事線樣式 */
|
||||
.timeline {
|
||||
border-left: 3px solid var(--yellow);
|
||||
padding-left: 20px;
|
||||
margin-left: 10px;
|
||||
}
|
||||
|
||||
.timeline-item {
|
||||
margin: 60px 0;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
position: relative;
|
||||
}
|
||||
.timeline-item {
|
||||
margin-bottom: 20px;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.timeline-item:nth-child(odd) {
|
||||
/* flex-direction: row-reverse; */
|
||||
}
|
||||
.timeline-item::before {
|
||||
content: '';
|
||||
width: 12px;
|
||||
height: 12px;
|
||||
background: var(--black);
|
||||
border: 3px solid var(--yellow);
|
||||
border-radius: 50%;
|
||||
position: absolute;
|
||||
left: -31px;
|
||||
top: 5px;
|
||||
}
|
||||
|
||||
.timeline-content {
|
||||
width: 45%;
|
||||
background: rgba(255, 221, 0, 0.1);
|
||||
padding: 25px;
|
||||
border-radius: 15px;
|
||||
border: 2px solid var(--primary);
|
||||
}
|
||||
/* 頁尾 */
|
||||
footer {
|
||||
background-color: var(--black);
|
||||
color: white;
|
||||
text-align: center;
|
||||
padding: 20px 0;
|
||||
margin-top: 50px;
|
||||
}
|
||||
|
||||
.timeline-year {
|
||||
width: 80px;
|
||||
height: 80px;
|
||||
background: var(--primary);
|
||||
color: #000;
|
||||
font-weight: bold;
|
||||
font-size: 1.5rem;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
border-radius: 50%;
|
||||
flex-shrink: 0;
|
||||
box-shadow: 0 0 20px rgba(255, 221, 0, 0.6);
|
||||
}
|
||||
|
||||
/* 現在的故事線 */
|
||||
#now {
|
||||
background: linear-gradient(to bottom, #1A1A2E, #0A0A0A);
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.now-content {
|
||||
max-width: 800px;
|
||||
margin: 0 auto;
|
||||
font-size: 1.2rem;
|
||||
}
|
||||
|
||||
/* 頁尾 */
|
||||
footer {
|
||||
background: var(--gray-900);
|
||||
text-align: center;
|
||||
padding: 60px 20px;
|
||||
color: var(--text-muted);
|
||||
border-top: 1px solid var(--primary);
|
||||
}
|
||||
|
||||
footer p {
|
||||
color: var(--text-white);
|
||||
font-size: 1rem;
|
||||
margin-bottom: 15px;
|
||||
letter-spacing: 2px;
|
||||
}
|
||||
|
||||
/* 廣告連結容器 */
|
||||
.studio-link {
|
||||
display: inline-block;
|
||||
margin-top: 10px;
|
||||
color: var(--text-muted);
|
||||
text-decoration: none;
|
||||
font-size: 0.9rem;
|
||||
transition: all 0.3s ease;
|
||||
padding: 5px 15px;
|
||||
border: 1px solid transparent;
|
||||
border-radius: 20px;
|
||||
}
|
||||
|
||||
/* 廣告連結內的工作室名稱 */
|
||||
.studio-link strong {
|
||||
transition: 0.3s;
|
||||
}
|
||||
|
||||
/* 懸停效果:讓你的廣告連結更亮眼 */
|
||||
.studio-link:hover {
|
||||
color: var(--text-white);
|
||||
background: rgba(255, 255, 255, 0.05);
|
||||
border-color: var(--text-muted);
|
||||
transform: translateY(-3px);
|
||||
}
|
||||
|
||||
.studio-link:hover strong {
|
||||
text-shadow: 0 0 1px var(--primary);
|
||||
/* 懸停時名字發光 */
|
||||
}
|
||||
|
||||
/* 粒子背景效果 */
|
||||
#particles {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
z-index: 1;
|
||||
pointer-events: none;
|
||||
}
|
||||
.highlight {
|
||||
color: var(--dark-yellow);
|
||||
font-weight: bold;
|
||||
}
|
||||
Reference in New Issue
Block a user