You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
<!DOCTYPE html><html lang="zh-CN">
<head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>404 - 页面不存在</title> <style> * { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif; min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 20px; background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); }
.container { text-align: center; color: white; max-width: 500px; }
h1 { font-size: 100px; margin: 0; font-weight: 700; text-shadow: 4px 4px 0 rgba(0, 0, 0, 0.2); }
.message { font-size: 24px; margin: 20px 0; }
.desc { font-size: 14px; margin: 20px 0; opacity: 0.9; }
.buttons { margin-top: 40px; display: flex; gap: 15px; justify-content: center; }
.btn { display: inline-block; padding: 10px 24px; background: white; color: #667eea; text-decoration: none; border-radius: 25px; font-weight: 600; transition: transform 0.3s; }
.btn:hover { transform: translateY(-2px); }
.btn-outline { background: transparent; color: white; border: 2px solid white; }
@media (max-width: 600px) { h1 { font-size: 70px; }
.message { font-size: 18px; } } </style></head>
<body> <div class="container"> <h1>404</h1> <div class="message">页面不存在</div> <div class="desc">抱歉,您访问的页面不存在或已被移除</div> <div class="buttons"> <button class="btn btn-outline" onclick="history.back()">返回上一页</button> </div> </div> <script> console.error('404:', window.location.href); </script></body>
</html>
|