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.
117 lines
3.0 KiB
117 lines
3.0 KiB
<!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 href="https://cdn.jsdelivr.net/npm/antd@5.12.8/dist/reset.css" rel="stylesheet">
|
|
<style>
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
body {
|
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
|
|
background-color: #f0f2f5;
|
|
color: #333;
|
|
}
|
|
|
|
.container {
|
|
max-width: 600px;
|
|
margin: 0 auto;
|
|
padding: 20px;
|
|
min-height: 100vh;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
}
|
|
|
|
.error-card {
|
|
background: white;
|
|
border-radius: 12px;
|
|
padding: 40px;
|
|
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
|
|
text-align: center;
|
|
}
|
|
|
|
.error-icon {
|
|
width: 80px;
|
|
height: 80px;
|
|
background-color: #fff2f0;
|
|
color: #ff4d4f;
|
|
border-radius: 50%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-size: 40px;
|
|
margin: 0 auto 24px;
|
|
}
|
|
|
|
.error-title {
|
|
font-size: 24px;
|
|
font-weight: 600;
|
|
color: #333;
|
|
margin-bottom: 16px;
|
|
}
|
|
|
|
.error-message {
|
|
font-size: 16px;
|
|
color: #666;
|
|
margin-bottom: 32px;
|
|
line-height: 1.5;
|
|
}
|
|
|
|
.back-button {
|
|
display: inline-block;
|
|
padding: 10px 24px;
|
|
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
|
color: white;
|
|
text-decoration: none;
|
|
border-radius: 6px;
|
|
font-size: 14px;
|
|
font-weight: 500;
|
|
transition: opacity 0.3s ease;
|
|
}
|
|
|
|
.back-button:hover {
|
|
opacity: 0.9;
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
.container {
|
|
padding: 16px;
|
|
}
|
|
|
|
.error-card {
|
|
padding: 32px 24px;
|
|
}
|
|
|
|
.error-icon {
|
|
width: 64px;
|
|
height: 64px;
|
|
font-size: 32px;
|
|
}
|
|
|
|
.error-title {
|
|
font-size: 20px;
|
|
}
|
|
|
|
.error-message {
|
|
font-size: 14px;
|
|
}
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<div class="error-card">
|
|
<div class="error-icon">⚠️</div>
|
|
<h1 class="error-title">发生错误</h1>
|
|
<p class="error-message">{{ message }}</p>
|
|
<a href="/" class="back-button">返回首页</a>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html> |