242 lines
7.0 KiB
HTML
242 lines
7.0 KiB
HTML
<!DOCTYPE html>
|
||
<html lang="zh-CN">
|
||
<head>
|
||
<meta charset="UTF-8">
|
||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
<title>光湖语言世界 · HoloLake</title>
|
||
<style>
|
||
* {
|
||
margin: 0;
|
||
padding: 0;
|
||
box-sizing: border-box;
|
||
}
|
||
|
||
body {
|
||
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
|
||
background: linear-gradient(135deg, #0a1628 0%, #163e6b 50%, #0a1628 100%);
|
||
min-height: 100vh;
|
||
color: #fff;
|
||
display: flex;
|
||
flex-direction: column;
|
||
align-items: center;
|
||
justify-content: center;
|
||
padding: 40px 20px;
|
||
}
|
||
|
||
.container {
|
||
max-width: 1000px;
|
||
width: 100%;
|
||
text-align: center;
|
||
}
|
||
|
||
.logo {
|
||
font-size: 4rem;
|
||
margin-bottom: 10px;
|
||
}
|
||
|
||
h1 {
|
||
font-size: 2.5rem;
|
||
font-weight: 300;
|
||
letter-spacing: 0.2em;
|
||
margin-bottom: 10px;
|
||
background: linear-gradient(90deg, #f5e6c8, #fff, #f5e6c8);
|
||
-webkit-background-clip: text;
|
||
-webkit-text-fill-color: transparent;
|
||
background-clip: text;
|
||
}
|
||
|
||
.subtitle {
|
||
color: #8b9dc3;
|
||
font-size: 1rem;
|
||
letter-spacing: 0.1em;
|
||
margin-bottom: 60px;
|
||
}
|
||
|
||
.gates {
|
||
display: flex;
|
||
gap: 40px;
|
||
justify-content: center;
|
||
flex-wrap: wrap;
|
||
}
|
||
|
||
.gate {
|
||
background: rgba(22, 62, 107, 0.3);
|
||
border: 1px solid rgba(245, 230, 200, 0.2);
|
||
border-radius: 20px;
|
||
padding: 40px;
|
||
width: 400px;
|
||
transition: all 0.3s ease;
|
||
backdrop-filter: blur(10px);
|
||
}
|
||
|
||
.gate:hover {
|
||
transform: translateY(-5px);
|
||
border-color: rgba(245, 230, 200, 0.4);
|
||
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
|
||
}
|
||
|
||
.gate-icon {
|
||
font-size: 3rem;
|
||
margin-bottom: 20px;
|
||
}
|
||
|
||
.gate h2 {
|
||
font-size: 1.5rem;
|
||
font-weight: 400;
|
||
margin-bottom: 15px;
|
||
color: #f5e6c8;
|
||
}
|
||
|
||
.gate p {
|
||
color: #8b9dc3;
|
||
font-size: 0.9rem;
|
||
margin-bottom: 30px;
|
||
line-height: 1.6;
|
||
}
|
||
|
||
.btn {
|
||
display: inline-block;
|
||
padding: 15px 40px;
|
||
background: linear-gradient(90deg, #163e6b, #3b82f6);
|
||
color: #fff;
|
||
text-decoration: none;
|
||
border-radius: 30px;
|
||
font-size: 0.95rem;
|
||
letter-spacing: 0.05em;
|
||
transition: all 0.3s ease;
|
||
border: none;
|
||
cursor: pointer;
|
||
}
|
||
|
||
.btn:hover {
|
||
transform: scale(1.05);
|
||
box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
|
||
}
|
||
|
||
.btn-secondary {
|
||
background: transparent;
|
||
border: 1px solid rgba(245, 230, 200, 0.3);
|
||
margin-top: 10px;
|
||
}
|
||
|
||
.btn-secondary:hover {
|
||
background: rgba(245, 230, 200, 0.1);
|
||
border-color: rgba(245, 230, 200, 0.5);
|
||
}
|
||
|
||
.members {
|
||
display: flex;
|
||
gap: 15px;
|
||
justify-content: center;
|
||
margin-top: 20px;
|
||
flex-wrap: wrap;
|
||
}
|
||
|
||
.member {
|
||
display: flex;
|
||
align-items: center;
|
||
gap: 8px;
|
||
padding: 8px 15px;
|
||
background: rgba(255, 255, 255, 0.05);
|
||
border-radius: 20px;
|
||
font-size: 0.85rem;
|
||
transition: all 0.2s ease;
|
||
}
|
||
|
||
.member:hover {
|
||
background: rgba(255, 255, 255, 0.1);
|
||
}
|
||
|
||
.member-emoji {
|
||
font-size: 1.2rem;
|
||
}
|
||
|
||
.footer {
|
||
margin-top: 80px;
|
||
color: #5a7094;
|
||
font-size: 0.8rem;
|
||
letter-spacing: 0.1em;
|
||
}
|
||
|
||
.badge {
|
||
display: inline-block;
|
||
padding: 4px 10px;
|
||
background: rgba(245, 230, 200, 0.1);
|
||
border-radius: 4px;
|
||
font-size: 0.75rem;
|
||
margin-top: 15px;
|
||
color: #f5e6c8;
|
||
}
|
||
|
||
@media (max-width: 900px) {
|
||
.gates {
|
||
flex-direction: column;
|
||
align-items: center;
|
||
}
|
||
|
||
.gate {
|
||
width: 100%;
|
||
max-width: 400px;
|
||
}
|
||
|
||
h1 {
|
||
font-size: 1.8rem;
|
||
}
|
||
}
|
||
</style>
|
||
</head>
|
||
<body>
|
||
<div class="container">
|
||
<div class="logo">◐</div>
|
||
<h1>光湖语言世界</h1>
|
||
<p class="subtitle">HoloLake Language World · AI 的操作系统</p>
|
||
|
||
<div class="gates">
|
||
<!-- 左边:语言主控层 -->
|
||
<div class="gate">
|
||
<div class="gate-icon">🔐</div>
|
||
<h2>语言主控层</h2>
|
||
<p>冰朔专属入口<br>系统核心架构 · 全局控制</p>
|
||
<a href="/code/" class="btn">进入主控层</a>
|
||
<div class="badge">需账号密码</div>
|
||
</div>
|
||
|
||
<!-- 右边:光湖频道 -->
|
||
<div class="gate">
|
||
<div class="gate-icon">🌊</div>
|
||
<h2>光湖频道</h2>
|
||
<p>团队成员工作区<br>个人代码仓库 · 协作频道</p>
|
||
<div class="members">
|
||
<a href="/code/bingshuo/feimao" class="member">
|
||
<span class="member-emoji">🐱</span>
|
||
<span>肥猫</span>
|
||
</a>
|
||
<a href="/code/bingshuo/awen" class="member">
|
||
<span class="member-emoji">🌊</span>
|
||
<span>Awen</span>
|
||
</a>
|
||
<a href="/code/bingshuo/yeye" class="member">
|
||
<span class="member-emoji">📄</span>
|
||
<span>页页</span>
|
||
</a>
|
||
<a href="/code/bingshuo/juzi" class="member">
|
||
<span class="member-emoji">🍊</span>
|
||
<span>桔子</span>
|
||
</a>
|
||
<a href="/code/bingshuo/hauer" class="member">
|
||
<span class="member-emoji">🌺</span>
|
||
<span>花尔</span>
|
||
</a>
|
||
</div>
|
||
<a href="/code/user/sign_up" class="btn btn-secondary">注册账号</a>
|
||
</div>
|
||
</div>
|
||
|
||
<div class="footer">
|
||
<p>冰朔(TCS-0002∞)创建 · 铸渊(ICE-GL-ZY001)守护</p>
|
||
<p style="margin-top: 8px;">国作登字-2026-A-00037559</p>
|
||
</div>
|
||
</div>
|
||
</body>
|
||
</html>
|