Spaces:
Running
Running
File size: 10,325 Bytes
c3fff35 d2e2cb2 c3fff35 cba0a11 |
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 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 |
<!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>
<link rel="icon" href="https://i.imgur.com/zFvVXeB.png">
<style>
:root {
--neon-green: #00ff88;
--neon-purple: #bc13fe;
--cyber-blue: #0066ff;
--dark-bg: #0a0a12;
--grid-color: rgba(0, 255, 136, 0.1);
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Segoe UI', system-ui;
}
body {
background: var(--dark-bg);
color: white;
position: relative;
overflow-x: hidden;
scroll-behavior: smooth;
}
/* 赛博背景 */
.cyber-bg {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: -2;
background:
linear-gradient(45deg, var(--cyber-blue) 0%, transparent 50%),
linear-gradient(-45deg, var(--neon-purple) 0%, transparent 50%),
var(--dark-bg);
animation: bgMove 20s linear infinite;
background-size: 200% 200%;
}
.cyber-grid {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-image:
linear-gradient(var(--grid-color) 1px, transparent 1px),
linear-gradient(90deg, var(--grid-color) 1px, transparent 1px);
background-size: 30px 30px;
z-index: -1;
opacity: 0.3;
}
/* 头部区域 */
.hero {
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
padding: 20px;
position: relative;
}
.logo {
width: 150px;
height: 150px;
margin-bottom: 30px;
animation: float 3s ease-in-out infinite;
border: 2px solid var(--neon-green);
border-radius: 50%;
box-shadow: 0 0 30px var(--neon-green);
}
.nav-buttons {
margin: 40px 0;
display: flex;
gap: 25px;
flex-wrap: wrap;
justify-content: center;
}
.btn {
padding: 12px 35px;
border: 2px solid var(--neon-green);
border-radius: 30px;
color: var(--neon-green);
text-decoration: none;
transition: all 0.3s;
background: rgba(0, 0, 0, 0.3);
backdrop-filter: blur(5px);
display: flex;
align-items: center;
gap: 8px;
}
.btn:hover {
background: var(--neon-green);
color: var(--dark-bg);
box-shadow: 0 0 30px var(--neon-green);
}
/* 内容区块 */
.section {
padding: 80px 20px;
position: relative;
}
.section-title {
text-align: center;
margin-bottom: 50px;
font-size: 2.2em;
text-shadow: 0 0 15px var(--neon-green);
}
/* 高亮框 */
.highlight-box {
background: rgba(0, 255, 136, 0.1);
border: 1px solid var(--neon-green);
padding: 25px;
border-radius: 15px;
margin: 30px auto;
max-width: 800px;
}
/* 卡片布局 */
.grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 25px;
max-width: 1200px;
margin: 0 auto;
}
.card {
background: rgba(10, 10, 18, 0.7);
border: 1px solid var(--neon-green);
border-radius: 15px;
padding: 25px;
transition: all 0.3s;
backdrop-filter: blur(10px);
}
.card:hover {
transform: translateY(-10px);
box-shadow: 0 0 30px var(--neon-green);
}
/* 模型标签 */
.model-tag {
background: rgba(0, 255, 136, 0.15);
padding: 8px 15px;
border-radius: 20px;
border: 1px solid var(--neon-green);
}
/* 注册方式 */
.register-method {
padding: 12px;
margin: 10px 0;
background: rgba(255, 255, 255, 0.05);
border-radius: 8px;
display: flex;
align-items: center;
gap: 10px;
}
/* 动画 */
@keyframes float {
0%, 100% { transform: translateY(0); }
50% { transform: translateY(-20px); }
}
@keyframes bgMove {
0% { background-position: 0% 0%; }
50% { background-position: 100% 100%; }
100% { background-position: 0% 0%; }
}
@media (max-width: 768px) {
.section-title {
font-size: 1.8em;
}
.btn {
padding: 10px 25px;
}
}
</style>
</head>
<body>
<div class="cyber-bg"></div>
<div class="cyber-grid"></div>
<section class="hero">
<img src="https://error418-blog.hf.space/upload/%E5%A4%B4%E5%83%8F2.jpg"
alt="avatar"
class="logo">
<h1 class="section-title">不会玩电路的红石</h1>
<p class="daily-quote" style="font-size:1.1em;margin:20px 0;">「 让AI技术普惠每个人 」</p>
<div class="nav-buttons">
<a href="https://space.bilibili.com/522549816" class="btn" target="_blank">
<img src="https://www.bilibili.com/favicon.ico" width="24" alt="B站">
B站主页
</a>
<a href="https://error418-blog.hf.space" class="btn" target="_blank">
🌐 个人博客
</a>
</div>
</section>
<section class="section">
<h2 class="section-title">🚀 公益AI平台</h2>
<div class="highlight-box">
<h3 style="color: var(--neon-green); margin-bottom: 15px;">🌟 平台特色</h3>
<ul style="line-height: 2; list-style: none;">
<li>► 模型价格 ≤ 市场价30%</li>
<li>► 新用户注册即赠 $1 额度</li>
<li>► 永久免费翻译服务 (0倍率)</li>
<li>► 多平台账号互通</li>
<li>► 免费的翻译服务</li>
</ul>
</div>
<div class="grid" style="max-width: 1000px;">
<div class="card">
<h3 style="color: var(--neon-green);">免费翻译模型</h3>
<div style="margin-top:20px; display: flex; flex-wrap: wrap; gap: 12px;">
<span class="model-tag">DeepSeek-v3</span>
<span class="model-tag">Doubao</span>
<span class="model-tag">Qwen-72B</span>
<span class="model-tag">GLM-3 Turbo</span>
<span class="model-tag">Moonshot v1</span>
</div>
</div>
<div class="card">
<h3 style="color: var(--neon-green);">📝 注册登录</h3>
<div style="margin-top: 20px;">
<div class="register-method">
<img src="https://tse2-mm.cn.bing.net/th/id/OIP-C.pOnicxSRbC8M0SdWCKDlJAHaHa?rs=1&pid=ImgDetMain" width="24" alt="GitHub">
GitHub
<div class="register-method">
<img src="https://cdn.ldstatic.com/original/3X/9/d/9dd49731091ce8656e94433a26a3ef36062b3994.png" width="24" alt="Linux.do">
Linux.do
</div>
<div>
由于SMTP服务商跑路,只能用Linu.xo或者Github注册
</div>
</div>
</div>
</div>
</section>
<section class="section" style="background: rgba(0, 255, 136, 0.03);">
<div class="highlight-box" style="text-align: center;">
<h2 style="color: var(--neon-green);">🎁 加入官方QQ群</h2>
<p style="margin: 20px 0; font-size: 1.1em;">
群号:<span style="color: var(--neon-green);">971947103</span><br>
进群可享:不定时免费额度 | 第一手消息 | 优先技术支持
</p>
<img src="qr.png"
alt="QQ群二维码"
style="width: 220px; margin: 0 auto; border-radius: 12px; border: 2px solid var(--neon-green);">
</div>
</section>
<script>
// 动态文字效果
const quotes = [
"开放 · 共享 · 创新",
"让每个开发者都用得起AI",
"技术不应该成为门槛",
"始于热爱,成于坚持"
];
function updateDailyQuote() {
const element = document.querySelector('.daily-quote');
const randomIndex = Math.floor(Math.random() * quotes.length);
element.textContent = `「 ${quotes[randomIndex]} 」`;
}
// 初始化
window.addEventListener('load', () => {
updateDailyQuote();
setInterval(updateDailyQuote, 5000);
// 卡片入场动画
const observer = new IntersectionObserver((entries) => {
entries.forEach(entry => {
if (entry.isIntersecting) {
entry.target.style.opacity = 1;
entry.target.style.transform = 'translateY(0)';
}
});
});
document.querySelectorAll('.card, .highlight-box').forEach(el => {
el.style.opacity = 0;
el.style.transform = 'translateY(30px)';
el.style.transition = 'all 0.6s ease-out';
observer.observe(el);
});
});
</script>
</body>
</html> |