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
| /**index.wxss**/
| .title {
| display:block;
| box-sizing: border-box;
| padding: 0 5px;
| width: 100%;
| height: 30px;
| line-height: 30px;
| border-top: 1px solid #ccc;
| margin:auto;
| font-size:14px;
| color:#333;
| text-align: left;
| font-weight: bold;
| }
|
| .list-panel{
| width: 100%;
| }
|
| .sub-title{
| display:block;
| box-sizing: border-box;
| padding: 0 5px;
| width: 100%;
| height: 30px;
| line-height: 30px;
| font-size:12px;
| color:#333;
| text-align: left;
| font-weight: bold;
| }
|
| .list {
| margin-top: 10px;
| padding-bottom: 10px;
| width: 100%;
| }
|
| .button {
| float: left;
| margin: 0 3px 3px 0;
| text-align: left;
| font-size: 14px;
| height: 28px;
| line-height:28px;
| padding:0 10px;
| }
|
|