149 lines
4.5 KiB
HTML
149 lines
4.5 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>
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
|
|
<script src="https://cdn.tailwindcss.com"></script>
|
|
<style>
|
|
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
|
|
|
|
body {
|
|
font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
|
|
background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
|
|
min-height: 100vh;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.error-container {
|
|
text-align: center;
|
|
padding: 3.75rem 2.50rem;
|
|
}
|
|
|
|
.error-icon {
|
|
width: 7.50rem;
|
|
height: 7.50rem;
|
|
margin: 0 auto 2rem;
|
|
border-radius: 2rem;
|
|
background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
box-shadow: 0 1.25rem 3.75rem rgba(251, 191, 36, 0.3);
|
|
animation: float 6s ease-in-out infinite;
|
|
}
|
|
|
|
.error-icon i {
|
|
font-size: 3.50rem;
|
|
color: #d97706;
|
|
}
|
|
|
|
.error-number {
|
|
font-size: 5rem;
|
|
font-weight: 700;
|
|
background: linear-gradient(135deg, #d97706 0%, #f59e0b 100%);
|
|
-webkit-background-clip: text;
|
|
-webkit-text-fill-color: transparent;
|
|
background-clip: text;
|
|
margin-bottom: 1rem;
|
|
letter-spacing: -0.25rem;
|
|
}
|
|
|
|
.error-title {
|
|
font-size: 1.50rem;
|
|
font-weight: 600;
|
|
color: #1e293b;
|
|
margin-bottom: 0.75rem;
|
|
}
|
|
|
|
.error-description {
|
|
font-size: 0.94rem;
|
|
color: #64748b;
|
|
max-width: 26.25rem;
|
|
margin: 0 auto 2rem;
|
|
line-height: 1.6;
|
|
}
|
|
|
|
.btn-primary {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 0.50rem;
|
|
padding: 0.88rem 2rem;
|
|
background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
|
|
color: white;
|
|
border: none;
|
|
border-radius: 0.88rem;
|
|
font-size: 0.94rem;
|
|
font-weight: 500;
|
|
cursor: pointer;
|
|
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
|
|
box-shadow: 0 0.25rem 0.94rem rgba(99, 102, 241, 0.4);
|
|
text-decoration: none;
|
|
}
|
|
|
|
.btn-primary:hover {
|
|
transform: translateY(-0.12rem);
|
|
box-shadow: 0 0.38rem 1.25rem rgba(99, 102, 241, 0.5);
|
|
}
|
|
|
|
@keyframes float {
|
|
0%, 100% { transform: translateY(0); }
|
|
50% { transform: translateY(-0.62rem); }
|
|
}
|
|
|
|
.bg-decoration {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
overflow: hidden;
|
|
pointer-events: none;
|
|
z-index: -1;
|
|
}
|
|
|
|
.bg-decoration::before {
|
|
content: '';
|
|
position: absolute;
|
|
top: -12.50rem;
|
|
right: -6.25rem;
|
|
width: 25rem;
|
|
height: 25rem;
|
|
background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
|
|
border-radius: 50%;
|
|
}
|
|
|
|
.bg-decoration::after {
|
|
content: '';
|
|
position: absolute;
|
|
bottom: -9.38rem;
|
|
left: -6.25rem;
|
|
width: 18.75rem;
|
|
height: 18.75rem;
|
|
background: radial-gradient(circle, rgba(251, 191, 36, 0.1) 0%, transparent 70%);
|
|
border-radius: 50%;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="bg-decoration"></div>
|
|
|
|
<div class="error-container">
|
|
<div class="error-icon">
|
|
<i class="fas fa-lock"></i>
|
|
</div>
|
|
|
|
<div class="error-number">401</div>
|
|
|
|
<h1 class="error-title">未授权访问</h1>
|
|
|
|
<p class="error-description">
|
|
您没有权限访问此页面。请先登录后台管理系统,或联系管理员获取访问权限。
|
|
</p>
|
|
|
|
</div>
|
|
</body>
|
|
</html> |