<!DOCTYPE html>
<html lang="zh">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>地区访问限制</title>
<style>
body {
font-family: 'Arial', 'Microsoft YaHei', sans-serif;
background-color: #f7f7f7;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
}
.container {
text-align: center;
background: #fff;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
border-radius: 8px;
padding: 40px 60px;
width: 90%;
max-width: 500px;
}
.container h1 {
color: #ff9800;
font-size: 36px;
margin-bottom: 20px;
}
.container p {
color: #555;
font-size: 18px;
margin-bottom: 30px;
}
.container .btn {
background-color: #ff9800;
color: #fff;
padding: 12px 30px;
border: none;
border-radius: 4px;
font-size: 16px;
cursor: pointer;
transition: background-color 0.3s;
}
.container .btn:hover {
background-color: #e68a00;
}
.container .icon {
font-size: 50px;
color: #ff9800;
margin-bottom: 20px;
}
.footer {
position: absolute;
bottom: 20px;
font-size: 14px;
color: #777;
}
</style>
</head>
<body>
<div class="container">
<div class="icon">🌍</div>
<h1>地区访问受限</h1>
<p>抱歉,由于您的所在地不在我们的服务区域内,暂时无法访问此网站。如果您有任何疑问,请联系管理员。</p>
<button class="btn" onclick="window.location.href='mailto:admin@maxiaoku.com'">联系我们</button>
</div>
<div class="footer">
<p>© 2024 马小酷. All rights reserved.</p>
</div>
</body>
</html>
Article
♾️ html 代码:
现在已有 407 次阅读,0 条评论,1 人点赞