-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathquestion-list.html
More file actions
109 lines (100 loc) · 3.04 KB
/
question-list.html
File metadata and controls
109 lines (100 loc) · 3.04 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width,initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no">
<title>问题分类</title>
<link rel="stylesheet" href="css/base.css">
<link rel="stylesheet" href="css/common.css">
<script src="js/scale.js"></script>
<style>
li {
padding: 0.626rem 1rem;
list-style-type: none;
background: #fff;
border-bottom: 1px solid #eaeaea;
}
li img {
float: left;
margin-right: 0.5rem;
margin-top: 0.5rem;
width: 1.5rem;
height: 1.5rem;
vertical-align: middle;
}
li div {
float: left;
}
li .title {
font-size: 0.75rem;
font-weight: bold;
color: #444;
line-height: 1.5rem;
cursor: pointer;
}
li .cata {
font-size: 0.625rem;
color: #959595;
line-height: 1rem
}
.tip {
padding: 1rem;
line-height: 1rem;
}
.tip h3 {
font-weight: bold;
}
</style>
</head>
<body>
<ul>
<li class="fix">
<img src="imgs/iconfont-jichusheshifuwu.png" alt="公共设施">
<div>
<p class="title">公共设施</p>
<p class="cata ell">窨井盖缺失、道路破损等,欢迎爆料</p>
</div>
</li>
<li class="fix">
<img src="imgs/icon-shuling.png" alt="环境卫生">
<div>
<p class="title">环境卫生</p>
<p class="cata ell">脏乱差、乱扔、乱倒、乱张贴等,随时报料。</p>
</div>
</li>
<li class="fix">
<img src="imgs/icon-jiandu.png" alt="市场监管">
<div>
<p class="title">市场监管</p>
<p class="cata ell">假烟、假酒、地沟油、传销、消费维权等,
<br> 快速报料。
</p>
</div>
</li>
<li class="fix">
<img src="imgs/iconfont-anquan.png" alt="公共安全">
<div>
<p class="title">公共安全</p>
<p class="cata ell">恶性社会事件、群体性事件等,及时报料。</p>
</div>
</li>
<li class="fix">
<img src="imgs/icon-xiaofang.png" alt="消防安全">
<div>
<p class="title">消防安全</p>
<p class="cata ell">堵塞消防通道、安全出口锁闭、消防设施器材
<br>损坏等,马上报料。
</p>
</div>
</li>
</ul>
<div class="tip f05">
<h3>注意:</h3>
<div class="tip-list">
<p>如遇到噪音等紧急情况,请致电110报警</p>
<p>如遇斗殴等紧急突发事件,请致电110报警</p>
<p>如遇火灾等紧急突发事件,请致电119报警</p>
</div>
</div>
</body>
</html>