Files
2025-12-09 20:22:03 +08:00

164 lines
3.8 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>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Helvetica Neue', Arial, sans-serif;
}
body {
background: linear-gradient(135deg, #6e8efb, #a777e3);
color: #333;
min-height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 20px;
}
.container {
background-color: rgba(255, 255, 255, 0.9);
border-radius: 20px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
width: 100%;
max-width: 500px;
padding: 40px 30px;
text-align: center;
}
.logo {
width: 80px;
height: 80px;
background: linear-gradient(135deg, #6e8efb, #a777e3);
border-radius: 16px;
margin: 0 auto 20px;
display: flex;
align-items: center;
justify-content: center;
color: white;
font-size: 30px;
font-weight: bold;
}
h1 {
font-size: 28px;
margin-bottom: 15px;
color: #2c3e50;
}
p {
font-size: 16px;
line-height: 1.6;
color: #7f8c8d;
margin-bottom: 30px;
}
.download-btn {
display: inline-block;
background: linear-gradient(to right, #6e8efb, #a777e3);
color: white;
padding: 16px 40px;
border-radius: 50px;
font-size: 18px;
font-weight: bold;
text-decoration: none;
box-shadow: 0 4px 15px rgba(110, 142, 251, 0.5);
transition: all 0.3s ease;
margin-bottom: 25px;
}
.download-btn:hover {
transform: translateY(-3px);
box-shadow: 0 6px 20px rgba(110, 142, 251, 0.7);
}
.download-btn:active {
transform: translateY(1px);
}
.app-info {
background-color: #f8f9fa;
border-radius: 12px;
padding: 20px;
text-align: left;
margin-top: 20px;
}
.app-info h3 {
font-size: 18px;
margin-bottom: 12px;
color: #2c3e50;
}
.info-item {
display: flex;
justify-content: space-between;
padding: 8px 0;
border-bottom: 1px solid #eee;
}
.info-item:last-child {
border-bottom: none;
}
.label {
color: #7f8c8d;
}
.value {
font-weight: 500;
color: #2c3e50;
}
.footer {
margin-top: 30px;
color: #ecf0f1;
font-size: 14px;
text-align: center;
}
.qr-note {
margin-top: 20px;
font-size: 14px;
color: #ecf0f1;
}
@media (max-width: 600px) {
.container {
padding: 30px 20px;
}
h1 {
font-size: 24px;
}
p {
font-size: 15px;
}
.download-btn {
padding: 14px 30px;
font-size: 16px;
}
}
</style>
</head>
<body>
<div class="container">
<div class="logo">App</div>
<h1>用户端应用下载</h1>
<a href="/install/ownerApp.apk" class="download-btn">下载应用</a>
</div>
<!--http://127.0.0.1:3000/pages/frame/download/owner.html-->
</body>
</html>