CINXE.COM

404 - Page Not Found

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>404 - Page Not Found</title> <style> /* 全局样式 */ body { font-family: Arial, sans-serif; background-color: #f4f4f4; margin: 0; padding: 0; display:flex; flex-direction: column; justify-content: center; align-items: center; min-height: 100vh; } h1 { margin:20px 0 0 0; color: #333; } p { color: #666; } /* 404 元素样式 */ #error { font-size: 66px; color: #ccc; } /* 按钮样式 */ .box {flex-direction: row;padding:2em;} a { background-color: #007bff; color: white; border: none; padding: 10px 20px; border-radius: 5px; cursor: pointer; margin-top: 20px; transition: background-color 0.3s ease; text-decoration: none; } img {margin-bottom:2em;} </style> <script type="text/javascript"> function jump(){ window.location.href='/'; } setTimeout(jump,3900); </script> </head> <body> <img src="/image/pt-logo.png" width="380px;"> <!--<div id="error">404 Not Found</div>--> <h1>未找到相关页面</h1> <p>抱歉,您访问的页面可能不存在或者被删除!</p><p>系统将在3秒后自动返回主页!</p> <h1>Page Not Found</h1> <p>Redirect to home page after 3 seconds or press the button above.</p> <div class="box"><a href="javascript:history.back();">返回上一页</a></div> </body> </html>