Files
fast_response/superadmin/application/admin/view/development/getdetails.html
2025-04-22 13:48:18 +08:00

38 lines
822 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>项目详情</title>
<style>
body {
font-family: Arial, sans-serif;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
background-color: #f4f4f9;
}
.container {
text-align: center;
background-color: #fff;
padding: 20px;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.container h1 {
color: #333;
}
.container p {
color: #666;
}
</style>
</head>
<body>
<div class="container">
<h1>项目开发中</h1>
<p>敬请期待</p>
</div>
</body>
</html>