<!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>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
padding: 20px;
}
.container {
background: white;
border-radius: 20px;
padding: 40px;
box-shadow: 0 20px 60px rgba(0,0,0,0.3);
max-width: 600px;
width: 100%;
}
h1 {
text-align: center;
color: #333;
margin-bottom: 10px;
}
.subtitle {
text-align: center;
color: #666;
margin-bottom: 40px;
}
.card {
background: #f8f9fa;
border-radius: 12px;
padding: 25px;
margin-bottom: 20px;
border-left: 4px solid #667eea;
transition: transform 0.2s;
}
.card:hover {
transform: translateX(5px);
}
.card h2 {
color: #333;
margin-bottom: 10px;
font-size: 20px;
}
.card p {
color: #666;
margin-bottom: 15px;
}
.btn {
display: inline-block;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
padding: 12px 30px;
text-decoration: none;
border-radius: 8px;
font-weight: bold;
transition: opacity 0.2s;
}
.btn:hover {
opacity: 0.9;
}
.status {
background: #e7f3ff;
border-radius: 8px;
padding: 15px;
margin-top: 20px;
border-left: 4px solid #0066cc;
}
.status h3 {
color: #0066cc;
margin-bottom: 10px;
}
.status ul {
margin-left: 20px;
color: #333;
}
.status li {
margin-bottom: 5px;
}
.green {
color: #28a745;
font-weight: bold;
}
.orange {
color: #fd7e14;
font-weight: bold;
}
</style>
</head>
<body>
<div class="container">
<h1>🦈 鲨鱼科技</h1>
<p class="subtitle">项目导航页面</p>
<div class="card">
<h2>📊 管理后台</h2>
<p>超级管理员和运营人员使用的后台管理系统</p>
<a href="shark-control-admin/frontend/dist/index.html" class="btn">进入管理后台 →</a>
</div>
<div class="card">
<h2>🎮 控制端</h2>
<p>客户使用的设备管理和控制平台</p>
<a href="shark-control/index.html" class="btn">进入控制端 →</a>
</div>
<div class="status">
<h3>📋 启动检查清单</h3>
<ul>
<li>XAMPP Apache: <span class="orange">请确保已启动</span></li>
<li>XAMPP MySQL: <span class="orange">请确保已启动</span></li>
<li>后端服务: <span class="orange">运行 start-all-services.bat 启动</span></li>
</ul>
</div>
</div>
</body>
</html>