result.wxss
641 字节
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
/* pages/result/result.wxss */
.resultimg{
display: flex;
align-items: center;
justify-content: center;
width:140rpx;
height: 140rpx;
border-radius: 50%;
margin: 220rpx auto 34rpx auto;
}
.resultimg image{
width: 100%;
height: 100%;
display: block;
}
.result_txt{
text-align: center;
color:#333;
font-weight: bold;
font-size:32rpx;
}
.start_btn{
margin: 143rpx auto 0 auto;
width:300rpx;
height: 80rpx;
border-radius: 40rpx;
color:#21AE59;
font-size:34rpx;
font-weight: bold;
border:1rpx solid #21AE59;
z-index:20rpx;
display: flex;
align-items: center;
justify-content: center;
}
.start_btn:active{
opacity: 0.7;
}