CINXE.COM
页面不存在 (414)
<!DOCTYPE html> <html lang="zh-CN"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>页面不存在 (414)</title> <style> body { font-family: 'Microsoft YaHei', Arial, sans-serif; background-color: #f8f9fa; color: #333; margin: 0; padding: 0; display: flex; align-items: center; justify-content: center; height: 100vh; } .error-container { text-align: center; max-width: 600px; padding: 30px; background-color: #fff; border-radius: 10px; box-shadow: 0 2px 10px rgba(0,0,0,0.1); } h1 { font-size: 36px; margin-bottom: 10px; color: #e74c3c; } .error-code { font-size: 24px; color: #7f8c8d; margin-bottom: 20px; } p { font-size: 16px; line-height: 1.6; margin-bottom: 20px; } .btn { display: inline-block; padding: 10px 20px; background-color: #3498db; color: #fff; text-decoration: none; border-radius: 5px; transition: background-color 0.3s; } .btn:hover { background-color: #2980b9; } .error-image { max-width: 200px; margin-bottom: 20px; } </style> </head> <body> <div class="error-container"> <h1>页面不存在</h1> <div class="error-code">错误代码: 404</div> <p>您访问的页面不存在或已被删除,请检查网址是否正确或返回首页。</p> <a href="/" class="btn">返回首页</a> </div> </body> </html>