start.wxss
1.1 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
/* pages/start/start.wxss */
.start{
position: fixed;
top:0;
left:0;
bottom:0;
width:100%;
height: 100%;
z-index:10;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
}
.start image{
width:100%;
height: 100%;
display: block;
}
.start_main{
position: absolute;
width:100%;
top:12%;
left:50%;
transform: translateX(-50%);
}
.start_bigtxt{
margin: 50rpx 0 12rpx 0;
color:rgba(33,174,89,1);
font-weight: bold;
font-size:44rpx;
text-align: center;
}
.start_minitxt{
color:rgba(33,174,89,0.5);
font-size:30rpx;
text-align: center;
font-weight: bold;
}
.start_mainimg{
margin: 0 auto;
display: flex;
align-items: center;
justify-content: center;
width:256rpx;
height: 360rpx;
}
.start_mainimg image{
width:100%;
height: 100%;
display: block;
}
.start_btn{
position: absolute;
bottom:28%;
left:50%;
transform: translateX(-50%);
width:300rpx;
height: 80rpx;
border-radius: 40rpx;
color:#21AE59;
font-size:34rpx;
font-weight: bold;
border:1rpx solid rgba(33,174,89,0.9);
z-index:20rpx;
display: flex;
align-items: center;
justify-content: center;
}
.start_btn:active{
opacity: 0.7;
}