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
|
| .list {
| display: -webkit-box;
| display: -webkit-flex;
| display: flex;
| -webkit-box-pack:justify;
| -webkit-justify-content:space-between;
| justify-content:space-between;
| -webkit-flex-wrap: wrap;
| flex-wrap: wrap;
| padding-bottom: 100rpx;
| padding: 5px;
| background: #161922;
| box-sizing: border-box;
| }
| navigator {
| width: 50%;
| height: 90vw;
| padding: 5px;
| box-sizing: border-box;
| overflow: hidden;
| }
| navigator image{
| width: 100%;
| height: 100%;
| min-height: 390rpx;
| border-radius: 10rpx;
| }
|
|