-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjoin.html
More file actions
166 lines (147 loc) · 4.55 KB
/
join.html
File metadata and controls
166 lines (147 loc) · 4.55 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>加入我们 - AI探索实验室</title>
<style>
/* 添加基础样式到最前面 */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'PingFang SC', 'Microsoft YaHei', sans-serif;
}
body {
background: #0A0F1E;
color: #fff;
min-height: 100vh;
overflow-x: hidden; /* 防止水平滚动条 */
}
/* 确保内容从导航栏下方开始 */
.papers-section,
.join-section {
padding-top: 120px; /* 给导航栏留出空间 */
min-height: 100vh;
background: linear-gradient(180deg, #0A0F1E, #1a1f35);
margin-top: 0; /* 移除可能的顶部边距 */
}
/* 基础样式与导航栏样式同上 */
/* 加入我们部分样式 */
.join-section {
padding: 120px 50px;
min-height: 100vh;
background: linear-gradient(180deg, #0A0F1E, #1a1f35);
}
.section-title {
text-align: center;
font-size: 2.8em;
margin-bottom: 60px;
background: linear-gradient(45deg, #60A5FA, #3B82F6, #60A5FA);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
animation: shine 3s linear infinite;
}
.intro-section {
max-width: 800px;
margin: 0 auto;
text-align: center;
color: #94A3B8;
line-height: 1.8;
font-size: 1.1em;
}
.personal-link {
color: #60A5FA;
text-decoration: none;
transition: color 0.3s ease;
}
.personal-link:hover {
color: #3B82F6;
}
/* 导航栏样式 */
.nav-bar {
display: flex;
justify-content: space-between;
align-items: center;
padding: 20px 50px;
background: rgba(10, 15, 30, 0.8);
position: fixed;
width: 100%;
z-index: 1000;
backdrop-filter: blur(20px);
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.logo {
color: #fff;
font-size: 24px;
font-weight: bold;
text-shadow: 0 0 20px rgba(96, 165, 250, 0.5);
background: linear-gradient(45deg, #60A5FA, #3B82F6);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
animation: shine 3s linear infinite;
}
.nav-links {
display: flex;
gap: 30px;
}
.nav-links a {
color: #fff;
text-decoration: none;
padding: 8px 20px;
border-radius: 20px;
transition: all 0.4s ease;
position: relative;
overflow: hidden;
}
.nav-links a::before {
content: '';
position: absolute;
bottom: 0;
left: 50%;
transform: translateX(-50%);
width: 0;
height: 2px;
background: #60A5FA;
transition: width 0.3s ease;
}
.nav-links a:hover::before {
width: 80%;
}
.nav-links a.active {
background: rgba(96, 165, 250, 0.1);
box-shadow: 0 0 20px rgba(96, 165, 250, 0.2);
}
.nav-links a:hover {
background: rgba(96, 165, 250, 0.1);
transform: translateY(-2px);
}
@keyframes shine {
from {
background-position: 200% center;
}
}
</style>
</head>
<body>
<!-- 导航栏 -->
<nav class="nav-bar">
<div class="logo">AI探索实验室</div>
<div class="nav-links">
<a href="index.html">首页</a>
<a href="research.html">研究领域</a>
<a href="papers.html">论文</a>
<a href="join.html" class="active">加入我们</a>
<a href="author.html">作者</a>
</div>
</nav>
<!-- 加入我们部分 -->
<section class="join-section">
<h2 class="section-title">关于我们</h2>
<!-- 实验室介绍 -->
<div class="intro-section">
<p>欢迎加入AI探索实验室,一起探索人工智能的无限可能!</p>
</div>
</section>
</body>
</html>