index.html
3.0 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<header>
<img class="mask" src="./assets/logo.jpg" alt="">
<!-- logo 下载 -->
<div class="logo-download">
<img src="./assets/logo.jpg" alt="">
<h3>蒙自水利智慧巡检app</h3>
<a href="https://www.ynzhsk.cn/uploads/apk_xj/109.apk"><button click="download">立即下载</button></a>
</div>
</header>
<main>
<div class="new">
<div class="title">新功能</div>
<div class="content">
<p class="info">版本:1.0.1 时间:2022/4/4</p>
<p>更新无数据提示,优化巡检流程</p>
</div>
</div>
<div class="preview">
<div class="title">预览</div>
<div class="swiper">
<img src="./assets/page1.jpg" alt="">
<img src="./assets/page2.jpg" alt="">
<img src="./assets/page3.jpg" alt="">
<img src="./assets/page4.jpg" alt="">
<img src="./assets/page5.jpg" alt="">
</div>
</div>
</main>
<footer>
<div class="brief">
<div class="title">简介</div>
<p>智慧巡检app,是腾亿融媒互联网有限公司为水利工程打造的一体化,多元化的智慧app</p>
</div>
</footer>
</body>
<style>
body {
padding: 0px 20px 0px 20px
}
.logo-download {
display: flex;
flex-direction: column;
justify-content: space-around;
align-items: center;
height: 180px;
margin-top: 50px;
margin-bottom: 20px;
}
.logo-download img {
width: 90px;
border-radius: 15px;
}
.logo-download button {
width: 208px;
background-color: rgb(74, 144, 225);
color: white;
padding: 5px 50px;
border-radius: 20px;
}
.title {
font-size: 18px;
margin-bottom: 15px;
}
.new {
padding: 20px 0;
}
.info {
font-size: 12px;
opacity: 0.5;
}
.preview {
margin: 25px 0px 20px 0px;
padding: 20px 0px;
border-top: 0.8px solid rgb(209, 209, 209);
border-bottom: 0.8px solid rgb(209, 209, 209);
}
.preview .swiper {
display: flex;
width: 100%;
flex-wrap: nowrap;
overflow: scroll;
overflow-y: hidden;
}
@media screen and (min-width: 800px) {
.preview .swiper {
overflow: hidden;
}
}
.preview img {
margin-right: 20px;
width: 140px;
}
.mask {
position: absolute;
left: 0px;
bottom: calc(100% - 130px);
width: 100%;
height: auto;
filter: blur(20px);
z-index: -1;
}
</style>
</html>