clock.wxss
1.8 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
/* pages/clock/clock.wxss */
@import "../../templates/templates.wxss";
page {
height: 100%;
}
.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;
background-repeat: no-repeat;
-webkit-background-size: 100%;
background-size: 100%;
background-image: url('http://science.w.bronet.cn/static/images/background.png');
/*background-image: url('https://timgsa.baidu.com/timg?image&quality=80&size=b9999_10000&sec=1544437670097&di=0d34697ed78ebad78dafee6c88ed704a&imgtype=0&src=http%3A%2F%2Fimg.zcool.cn%2Fcommunity%2F0157955848b69ea801219c77902534.jpg');*/
}
.modal {
width: 100%;
height: 100%;
position: absolute;
left: 0;
top: 0;
background-color: transparent;
/*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;
}
.circle_small text {
/* width:90rpx; */
/* height:90rpx; */
text-align: center;
}
.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%);
}