首次提交:初始化项目代码
This commit is contained in:
@@ -0,0 +1,180 @@
|
||||
<!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, #cffafe 0%, #a5f3fc 100%);
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
box-shadow: 0 1.25rem 3.75rem rgba(6, 182, 212, 0.3);
|
||||
animation: float 6s ease-in-out infinite;
|
||||
}
|
||||
|
||||
.error-icon i {
|
||||
font-size: 3.50rem;
|
||||
color: #0891b2;
|
||||
}
|
||||
|
||||
.error-number {
|
||||
font-size: 5rem;
|
||||
font-weight: 700;
|
||||
background: linear-gradient(135deg, #0891b2 0%, #06b6d4 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);
|
||||
}
|
||||
|
||||
.btn-secondary {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
gap: 0.50rem;
|
||||
padding: 0.88rem 2rem;
|
||||
background: white;
|
||||
color: #64748b;
|
||||
border: 0.06rem solid #e2e8f0;
|
||||
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);
|
||||
margin-left: 0.75rem;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.btn-secondary:hover {
|
||||
background: #f8fafc;
|
||||
border-color: #cbd5e1;
|
||||
color: #334155;
|
||||
}
|
||||
|
||||
@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(6, 182, 212, 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-search"></i>
|
||||
</div>
|
||||
|
||||
<div class="error-number">404</div>
|
||||
|
||||
<h1 class="error-title">页面未找到</h1>
|
||||
|
||||
<p class="error-description">
|
||||
您访问的页面不存在或已被移除。请检查网址是否正确,或返回后台首页继续操作。
|
||||
</p>
|
||||
|
||||
<div class="flex items-center justify-center gap-3">
|
||||
<a href="/dashboard/home" class="btn-primary">
|
||||
<i class="fas fa-home"></i> 返回后台首页
|
||||
</a>
|
||||
<button onclick="history.back()" class="btn-secondary">
|
||||
<i class="fas fa-arrow-left"></i> 返回上一页
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user