<%--
|
Created by IntelliJ IDEA.
|
User: Dell
|
Date: 2023/8/14
|
Time: 13:47
|
To change this template use File | Settings | File Templates.
|
--%>
|
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
|
<!DOCTYPE html>
|
<!DOCTYPE html>
|
<html>
|
<head>
|
<title>404 - 页面未找到</title>
|
<style>
|
body {
|
margin: 0;
|
padding: 0;
|
text-align: center;
|
background: url("/HxzkFlow/images/404.png") no-repeat center center fixed;
|
background-size: cover;
|
}
|
.content {
|
display: flex;
|
flex-direction: column;
|
align-items: center;
|
justify-content: center;
|
height: 100vh;
|
}
|
|
h1 {
|
font-size: 4rem;
|
color: #ffffff;
|
margin-bottom: 1rem;
|
}
|
|
p {
|
color: #ffffff;
|
margin-bottom: 2rem;
|
}
|
|
.button {
|
background-color: #ffffff;
|
color: #000000;
|
padding: 0.75rem 1.5rem;
|
text-decoration: none;
|
border-radius: 4px;
|
transition: background-color 0.3s ease;
|
}
|
|
.button:hover {
|
background-color: #f2f2f2;
|
}
|
</style>
|
</head>
|
<body style="overflow: hidden">
|
<div class="content" style="position: relative;top: 0px;left: 420px">
|
<a class="button" href="/HxzkFlow/page/index.jsp" onclick="canselupdate()">返回主页</a>
|
</div>
|
<script>
|
|
function canselupdate(){
|
location.reload();
|
// $(".update").hide();
|
// $(".heimu").hide();
|
// $(".updateZong").hide();
|
}
|
</script>
|
</body>
|
</html>
|