-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.html
108 lines (94 loc) · 2.66 KB
/
404.html
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge"/><meta name="renderer" content="webkit"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0"/>
<script type="text/javascript" src="./include/jquery.min.js"></script>
<script type="text/javascript" src="./include/class.main.js" ></script>
<link href="./include/jquery.autocomplete.css" rel="stylesheet">
<script type="text/javascript" src="./include/jquery.autocomplete.js"></script>
<title>404,资源未找到</title>
<style type="text/css">
html,body{
background: #FFF;
overflow-y:auto;
overflow-x:hidden;
width:100%;
height: 100%;
text-align: center;
}
.error-pic {
height: 248px;
background: url(./source/images/errpic.png) center no-repeat;
}
#word{
max-height:210px;
overflow-y:auto;
overflow-x:hidden;
}
h1{ color:red;}
h2{color:green;}
h3{color:blue;}
h4{color:blue;font-size:50px}
*{ box-sizing: border-box;}
div.search {padding: 30px 0;}
form {
position: relative;
width: 300px;
margin: 0 auto;
}
input, button {
border: none;
outline: none;
}
input {
width: 100%;
height: 42px;
padding-left: 13px;
}
button {
height: 42px;
width: 42px;
cursor: pointer;
position: absolute;
}
/*搜索框6*/
.bar6 {background: 00FFFF;}
.bar6 input {
border: 2px solid #FF0000;
border-radius: 5px;
background: transparent;
top: 0;
right: 0;
}
.bar6 button {
background:#FF0000;
border-radius: 0 5px 5px 0;
width: 60px;
top: 0;
right: 0;
}
.bar6 button:before {
content: "搜索";
font-size: 13px;
color: #0F0F0F;
}
</style>
</head>
<body>
<div class="error-pic"></div>
<h3 class="tj-txt">呀,非常抱歉!</h3>
<p style="color: #4F4F4F;">您查找的资源不存在或已被删除,也许您可以搜索资源 或<a href="./" target="_top" style="text-decoration: none;margin:0 5px;">跳到首页</a></p>
<div class="search bar6">
<form action="index.php" method="get">
<input id="wd" type="text" name="wd" placeholder="请输入关键词" >
<button type="submit"></button>
<div id="word" ></div>
</form>
<div id="footer" class="footer" >
<br>免责声明:本页所有视频均收集于互联网,版权归原创者所有<br>
</div>
</div>
</body>
</html>