69 lines
1.9 KiB
HTML
69 lines
1.9 KiB
HTML
|
<!DOCTYPE html>
|
|||
|
<html lang="zh-CN">
|
|||
|
<head>
|
|||
|
<meta charset="UTF-8">
|
|||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|||
|
<title>网站已封禁</title>
|
|||
|
<style>
|
|||
|
body {
|
|||
|
margin: 0;
|
|||
|
padding: 0;
|
|||
|
background-color: #cc0000; /* 调整后的红色背景 */
|
|||
|
display: flex;
|
|||
|
justify-content: center;
|
|||
|
align-items: center;
|
|||
|
height: 100vh;
|
|||
|
font-family: Arial, sans-serif;
|
|||
|
}
|
|||
|
|
|||
|
.warning-box {
|
|||
|
background-color: rgba(255, 255, 255, 0.1);
|
|||
|
border: none;
|
|||
|
padding: 40px;
|
|||
|
text-align: center;
|
|||
|
border-radius: 10px;
|
|||
|
width: 80%;
|
|||
|
max-width: 600px;
|
|||
|
position: relative;
|
|||
|
box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
|
|||
|
}
|
|||
|
|
|||
|
.warning-box h1 {
|
|||
|
font-size: 1.5rem;
|
|||
|
margin-bottom: 20px;
|
|||
|
color: #000;
|
|||
|
}
|
|||
|
|
|||
|
.warning-box p {
|
|||
|
font-size: 0.9rem;
|
|||
|
line-height: 1.6;
|
|||
|
color: #000;
|
|||
|
}
|
|||
|
|
|||
|
.close-button {
|
|||
|
position: absolute;
|
|||
|
top: 10px;
|
|||
|
left: 50%;
|
|||
|
transform: translateX(-50%);
|
|||
|
color: #000;
|
|||
|
border: none;
|
|||
|
width: 50px;
|
|||
|
height: 50px;
|
|||
|
font-size: 2.5rem;
|
|||
|
cursor: pointer;
|
|||
|
display: flex;
|
|||
|
justify-content: center;
|
|||
|
align-items: center;
|
|||
|
z-index: 10;
|
|||
|
background: none;
|
|||
|
}
|
|||
|
</style>
|
|||
|
</head>
|
|||
|
<body>
|
|||
|
<div class="warning-box">
|
|||
|
<button class="close-button">×</button>
|
|||
|
<h1>此页面已被管理员封禁</h1>
|
|||
|
<p>您尝试访问的网站已被学校管理员封禁,如需了解更多详情,请联系学校网络管理部门。</p>
|
|||
|
</div>
|
|||
|
</body>
|
|||
|
</html>
|