clock.wxss
1.2 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
73
74
/* pages/clock/clock.wxss */
.content_box {
width: 100%;
height: 100%;
position: fixed;
left: 0;
top: 0;
background: #3899e5;
display: flex;
/* justify-content: center; */
flex-direction: column;
align-items: center;
padding-top: 115rpx;
}
.modal {
width: 100%;
height: 100%;
position: absolute;
left: 0;
top: 0;
background-color: #000000;
opacity: 0.8;
z-index: 10;
}
.circle_large, .circle_middle, .circle_small {
width: 327rpx;
height: 327rpx;
background: rgba(255, 255, 255, 0.3);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
}
.circle_middle {
width: 286rpx;
height: 286rpx;
}
.circle_small {
width: 251rpx;
height: 251rpx;
font-size: 36rpx;
background: #fff;
color: #fc5b63;
padding: 80rpx;
box-sizing: border-box;
}
.icon-dui{
font-size: 90rpx;
}
.punch_info{
width: 600rpx;
font-size: 32rpx;
color: #FFFFFF;
margin-top: 60rpx;
text-align: center;
}
.punch_btn {
width: 200rpx;
height: 80rpx;
background: rgba(63, 169, 245, 1);
border-radius: 10rpx;
font-size: 36rpx;
color: #fff;
display: flex;
align-items: center;
justify-content: center;
position: fixed;
bottom: 70rpx;
left: 50%;
transform: translateX(-50%);
}