Files
PropertyDeployment/resources/Web/MicroCommunityWeb/html/pages/frame/download/property.html
2025-12-09 20:22:03 +08:00

199 lines
4.6 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, #4ecdc4, #556cdc);
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, #4ecdc4, #556cdc);
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, #4ecdc4, #556cdc);
color: white;
padding: 16px 40px;
border-radius: 50px;
font-size: 18px;
font-weight: bold;
text-decoration: none;
box-shadow: 0 4px 15px rgba(78, 205, 196, 0.5);
transition: all 0.3s ease;
margin-bottom: 25px;
}
.download-btn:hover {
transform: translateY(-3px);
box-shadow: 0 6px 20px rgba(78, 205, 196, 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;
}
.features {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 15px;
margin-top: 25px;
}
.feature {
background-color: #f8f9fa;
border-radius: 10px;
padding: 15px;
width: 140px;
text-align: center;
}
.feature i {
font-size: 24px;
color: #4ecdc4;
margin-bottom: 10px;
}
.feature span {
font-size: 14px;
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;
}
.features {
gap: 10px;
}
.feature {
width: calc(50% - 10px);
padding: 12px;
}
}
</style>
</head>
<body>
<div class="container">
<div class="logo">Pro</div>
<h1>业主端应用下载</h1>
<a href="/install/propertyApp.apk" class="download-btn">下载管理端</a>
</div>
<!--http://127.0.0.1:3000/pages/frame/download/property.html-->
</body>
</html>