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
| /* pages/guideInfo/guideInfo.wxss */
| page{
| height: 100%;
| }
| .scanEvildoingInfo{
| display:flex;
| flex-direction:column;
| height:100%;
| }
| .banner{
| width:100%;
| height:388rpx;
| }
| .title{
| font-weight: bold;
| font-size: 16px;
| padding: 0 4vh 0 4vh;
| }
| .title_m{
| text-align: center;
| }
| .title_l{
| text-align: left;
| }
| .content{
| font-size: 14px;
| line-height: 22px;
| padding: 1vh 3vh;
| }
| .middle{
| display: flex;
| justify-content: center;
| align-items: center;
| }
| .border-bottom{
| padding-bottom: 1vh;
| border-bottom: 2px solid #ddd;
| }
| .border{
| border: 1px solid #000;
| }
|
| .sureButton{
| display:flex;
| justify-content:center;
| padding: 2vh 0 2vh 0;
| background:#fff;
| }
|
| .flex1{
| flex: 1;
| overflow-y: scroll;
| }
|
|