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
| /* pages/welcome/welcome.wxss */
| page{
| height: 100%;
| }
| .welcome{
| position: relative;
| height: 100%;
| width: 100%;
| }
| .welcome image{
| width: 100%;height: 100%
| }
| button{
| width: 100%;
| background: #00C085;
| color: #fff;
| }
| .agreement{
| font-size:22rpx;
| left: 50%;
| transform: translate(-50%, -50%);
| position: absolute;
| bottom: 33rpx;
| white-space: nowrap;
| }
| .user-grey{color: #999}
| .user-agree{color:#00C085}
| .button-hover{
| color: #fff;
| background-color: #00C085;
| }
| button{width: 690rpx;margin: auto; border-radius: 10rpx;font-size: 34rpx;
| position: absolute;bottom: 191rpx; left: 50%;
| transform: translate(-50%, -50%);
| }
| button:after {border: 0px;}
|
|