删除无用文件
This commit is contained in:
parent
710c42635f
commit
24d65300da
130
平台端web/首页.html
130
平台端web/首页.html
|
|
@ -1,130 +0,0 @@
|
|||
<!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>
|
||||
body {
|
||||
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
|
||||
margin: 0;
|
||||
padding: 20px;
|
||||
background-color: #f8f9fa;
|
||||
}
|
||||
.welcome-section {
|
||||
text-align: center;
|
||||
padding: 40px 20px;
|
||||
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
||||
color: white;
|
||||
border-radius: 10px;
|
||||
margin-bottom: 30px;
|
||||
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
|
||||
}
|
||||
.welcome-section h1 {
|
||||
font-size: 2.5rem;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
.welcome-section p {
|
||||
font-size: 1.2rem;
|
||||
max-width: 800px;
|
||||
margin: 0 auto;
|
||||
line-height: 1.6;
|
||||
}
|
||||
.features-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
|
||||
gap: 20px;
|
||||
margin-bottom: 30px;
|
||||
}
|
||||
.feature-card {
|
||||
background: white;
|
||||
padding: 20px;
|
||||
border-radius: 8px;
|
||||
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
|
||||
transition: transform 0.3s ease, box-shadow 0.3s ease;
|
||||
}
|
||||
.feature-card:hover {
|
||||
transform: translateY(-5px);
|
||||
box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
|
||||
}
|
||||
.feature-card h2 {
|
||||
color: #3498db;
|
||||
margin-bottom: 15px;
|
||||
font-size: 1.5rem;
|
||||
}
|
||||
.feature-card p {
|
||||
color: #555;
|
||||
line-height: 1.6;
|
||||
}
|
||||
.statistics-section {
|
||||
background: white;
|
||||
padding: 30px;
|
||||
border-radius: 8px;
|
||||
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
|
||||
}
|
||||
.statistics-section h2 {
|
||||
color: #2c3e50;
|
||||
text-align: center;
|
||||
margin-bottom: 25px;
|
||||
}
|
||||
.stats-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
|
||||
gap: 20px;
|
||||
text-align: center;
|
||||
}
|
||||
.stat-item {
|
||||
padding: 20px;
|
||||
}
|
||||
.stat-item .number {
|
||||
font-size: 2.5rem;
|
||||
font-weight: bold;
|
||||
color: #3498db;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
.stat-item .label {
|
||||
color: #7f8c8d;
|
||||
font-size: 1.1rem;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="welcome-section">
|
||||
<h1>欢迎使用大妈系统平台</h1>
|
||||
<p>这是一个功能强大且易于使用的系统平台,为您提供全方位的服务和支持。</p>
|
||||
</div>
|
||||
|
||||
<div class="features-grid">
|
||||
<div class="feature-card">
|
||||
<h2>权限管理</h2>
|
||||
<p>集中管理用户权限,灵活分配角色和访问控制,确保系统安全可靠。</p>
|
||||
</div>
|
||||
<div class="feature-card">
|
||||
<h2>产品管理</h2>
|
||||
<p>完整的产品信息管理功能,支持产品添加、编辑、删除等操作。</p>
|
||||
</div>
|
||||
<div class="feature-card">
|
||||
<h2>用户管理</h2>
|
||||
<p>方便的用户信息维护,包括用户列表查看、权限设置等功能。</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="statistics-section">
|
||||
<h2>系统统计</h2>
|
||||
<div class="stats-grid">
|
||||
<div class="stat-item">
|
||||
<div class="number">128</div>
|
||||
<div class="label">产品数量</div>
|
||||
</div>
|
||||
<div class="stat-item">
|
||||
<div class="number">56</div>
|
||||
<div class="label">用户数量</div>
|
||||
</div>
|
||||
<div class="stat-item">
|
||||
<div class="number">24</div>
|
||||
<div class="label">系统功能</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
Loading…
Reference in New Issue