Files
hoperun-custom-sign/src/main/resources/static/error.html
Jimgo 25d326e4a7 🆗 添加2025年调休与节假日配置
🆗 调整样式兼容手机端访问
2024-11-29 16:04:56 +08:00

56 lines
1.4 KiB
HTML

<!DOCTYPE html>
<html lang="zh">
<head>
<title>404 Not Found</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<style>
body {
color: #A1A2AF;
font-family: "Microsoft YaHei", "Segoe UI", "Lucida Grande", Helvetica,
Arial, sans-serif;
}
.layout {
width: 1190px;
margin: 150px auto;
}
.err {
position: relative;
width: 568px;
height: 306px;
margin: 100px auto 40px;
background: url("/img/airplane-404page.jpg") no-repeat 21px 18px;
font-size: 14px;
}
.err_text {
position: absolute;
top: 246px;
left: 239px;
}
.err_back {
position: absolute;
top: 257px;
left: 353px;
width: 154px;
height: 38px;
text-indent: -999px;
overflow: hidden;
}
</style>
</head>
<body>
<div class="layout">
<div class="main">
<div class="err">
<p class="err_text">
非常抱歉,您访
<br>
问的页面不存在
</p>
<a href="/index.html" class="err_back">返回首页</a>
</div>
</div>
</div>
</body>
</html>