-
Notifications
You must be signed in to change notification settings - Fork 488
Expand file tree
/
Copy pathblock-img.html
More file actions
142 lines (130 loc) · 3.53 KB
/
block-img.html
File metadata and controls
142 lines (130 loc) · 3.53 KB
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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<title>图片已屏蔽 | K-Vault</title>
<link rel="icon" type="image/x-icon" href="/favicon.ico">
<link rel="apple-touch-icon" href="/logo.png">
<link rel="shortcut icon" href="/favicon.ico">
<link rel="stylesheet" href="/theme.css">
<script src="/theme.js?v=20260305"></script>
<meta charset="UTF-8">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=Edge">
<meta name="robots" content="noindex, nofollow">
<meta name="viewport" content="width=device-width,initial-scale=1">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free/css/all.min.css">
<style>
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
min-height: 100vh;
background: linear-gradient(135deg, #ffd7e4 0%, #c8f1ff 100%);
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Noto Sans SC', sans-serif;
display: flex;
align-items: center;
justify-content: center;
padding: 20px;
}
.container {
background: rgba(255, 255, 255, 0.92);
backdrop-filter: blur(20px);
-webkit-backdrop-filter: blur(20px);
border-radius: 24px;
padding: 48px 40px;
max-width: 500px;
text-align: center;
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
border: 1px solid rgba(255, 255, 255, 0.5);
animation: fadeIn 0.5s ease-out;
}
@keyframes fadeIn {
from { opacity: 0; transform: translateY(20px); }
to { opacity: 1; transform: translateY(0); }
}
.icon {
width: 80px;
height: 80px;
background: linear-gradient(135deg, #f56c6c, #e74c3c);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 24px;
font-size: 2.5em;
color: white;
box-shadow: 0 8px 24px rgba(245, 108, 108, 0.3);
}
.title {
font-size: 1.5em;
font-weight: 700;
color: #333;
margin-bottom: 16px;
}
.message {
color: #666;
line-height: 1.8;
margin-bottom: 24px;
font-size: 0.95em;
}
.message-en {
color: #999;
font-size: 0.85em;
margin-bottom: 32px;
}
.footer {
color: #999;
font-size: 0.85em;
}
.footer a {
color: #8a4bff;
text-decoration: none;
font-weight: 500;
transition: all 0.3s;
}
.footer a:hover {
text-decoration: underline;
}
.back-btn {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 12px 24px;
background: linear-gradient(135deg, #8a4bff, #9b6dff);
color: white;
border: none;
border-radius: 12px;
font-size: 0.95em;
font-weight: 500;
cursor: pointer;
transition: all 0.3s;
text-decoration: none;
margin-bottom: 24px;
}
.back-btn:hover {
transform: translateY(-2px);
box-shadow: 0 8px 24px rgba(138, 75, 255, 0.3);
}
</style>
<link rel="stylesheet" href="/mobile-refactor.css">
</head>
<body>
<div class="container">
<div class="icon">
<i class="fas fa-ban"></i>
</div>
<h1 class="title">图片已屏蔽</h1>
<p class="message">
抱歉,当前图片未能通过审查,可能含有不良内容,故无法加载显示。
</p>
<p class="message-en">
Sorry, this image failed content review and cannot be displayed.
</p>
<a href="javascript:history.back()" class="back-btn">
<i class="fas fa-arrow-left"></i>
返回上一页
</a>
<p class="footer">
Powered by <a href="https://github.com/katelya77/K-Vault">K-Vault</a>
</p>
</div>
</body>
</html>