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
/* pages/start/start.wxss */
/* pages/start/start.wxss */
.container {
width: 100%;
height: 100%;
padding: 0;
position: fixed;
top:0;
left:0;
bottom:0;
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-between;
box-sizing: border-box;
}
.container image{
width:100%;
height: 100%;
}
.logo_box{
position: absolute;
top:30%;
left:50%;
transform: translateX(-50%);
}
.logo {
font-size: 54rpx;
color: greenyellow;
width: 158rpx;
height: 213rpx;
border-radius: 20rpx;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto;
}
.logo image{
width: 100%;
height: 100%;
}
.title {
font-size: 40rpx;
color: #FF9FC1;
font-weight: bold;
text-align: center;
margin-top: 42rpx;
}
.bottom_btn button{
position: absolute;
bottom:40%;
left:50%;
transform: translateX(-50%);
font-size: 32rpx;
color: #54B431;
font-weight: bold;
width: 250rpx;
height: 80rpx;
border:1rpx solid #54B431;
box-shadow:0rpx 8rpx 16rpx 0rpx rgba(60,148,27,0.16);
border-radius: 40rpx;
display: flex;
align-items: center;
justify-content: center;
}