pool.wxss
1.0 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/pool/pool.wxss */
page{
width:100%;
height: 100%;
background: #8DE063;
}
.content{
position: absolute;
top:10%;
left:0;
width:100%;
height: 600rpx;
}
.content image{
width:100%;
height: 100%;
}
.txt_box{
display: flex;
align-items: center;
flex-direction: column;
justify-content: center;
position: absolute;
width:100%;
left:0;
bottom:0;
z-index:100;
}
.pool_txt{
color:#FFFFFF;
font-weight: bold;
font-size: 36rpx;
margin: 0 0 22rpx 0;
text-align: center;
}
.pool_num{
width:520rpx;
height: 100rpx;
margin: 0 auto 20rpx auto;
line-height: 100rpx;
border:3rpx solid #fff;
color:#fff;
font-size:52rpx;
text-align: center;
border-radius: 50rpx;
}
.pool_btn{
position: relative;
background: #FFf;
color:#8DE063;
font-size:52rpx;
}
.pool_btn button{
position: absolute;
top:0;
left:0;
width:100%;
height: 100%;
z-index:1000;
opacity: 0;
}
.pool_btn:active{
opacity: 0.7;
}
.poolsub_txt{
color:#fff;
font-size:26rpx;
width:434rpx;
margin: 0 auto 34rpx auto;
text-align: center;
}