/* 全局样式 */
body {
  font-family: 'Microsoft YaHei', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  background-color: #f5f5f5;
  color: #333;
}

/* 错误容器样式 */
.error-container {
  text-align: center;
  padding: 40px;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* 错误码样式 */
h1 {
  font-size: 72px;
  margin: 0;
  color: #e74c3c;
}

/* 错误标题样式 */
h2 {
  font-size: 24px;
  margin: 20px 0;
}

/* 错误描述样式 */
p {
  color: #666;
  margin-bottom: 30px;
}

/* 返回链接样式 */
a {
  display: inline-block;
  padding: 10px 20px;
  background-color: #3498db;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.3s;
}

a:hover {
  background-color: #2980b9;
}