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
|
| swiper {
| height: 360rpx;
| width: 100%;
| }
|
| .slide-image {
| position: absolute;
| height: 350rpx;
| width: 98%;
| z-index: 5;
| top: 10rpx;
| margin-left: 5rpx;
| margin-right: 5rpx;
| border-radius: 20rpx;
| }
|
| .active {
| opacity: 1;
| z-index: 10;
| height: 350rpx;
| top: 10rpx;
| transform: scale(1.0);
| transition: all 0.2s ease-in 0s;
| /* transition: all .625s ease; *//* transition: all 0.2s ease-in 0s; *//* transform:scale(0.7); */
| }
|
|
| .nav_container {
| display: flex;
| flex-wrap: wrap;
| padding-top: 50rpx;
| }
|
| .icon_item {
| width: 33.33333%;
| text-align: center;
| margin: auto;
| padding-bottom: 27rpx;
| }
|
| .icon_item text {
| display: block;
| color: #626262;
| font-size: 30rpx;
| margin-top: 15rpx;
| }
|
| .icon_item image {
| width: 100rpx;
| height: 100rpx;
| border-radius: 50%;
| }
|
| .title_img {
| width: 100%;
| height: 120rpx;
| margin-top: 20rpx;
| }
|
| .ads{
| width: 100%;
| text-align: center;
| margin-bottom: 10px;
| }
|
| .ads image{
| width: 95%;
| }
|
|