fei.wang
2024-05-13 b9b58b9ef261cb290d93465f88a2cbd814b576f0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<%--
  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>