daySignIn.wxss
1.6 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
89
90
91
92
93
94
95
96
97
98
99
100
/* pages/signIn/daySignIn/daySignIn.wxss */
.banner_box {
display: flex;
align-items: center;
justify-content: space-between;
flex-wrap: wrap;
padding: 30rpx 35rpx;
}
.banner_item {
width: 212rpx;
height: 78rpx;
background: #ffad50;
border-radius: 16rpx;
font-size: 28rpx;
color: #fff;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 8rpx;
}
.banner_value {
background: #f5f6fa;
color: #000;
}
.content_box {
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
}
.circle_box {
width: 300rpx;
height: 300rpx;
background: linear-gradient(100deg, rgba(255, 201, 136, 0.8), #ffad50);
box-shadow: 0rpx 15rpx 30rpx 0rpx rgba(255, 211, 160, 1);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
font-size: 48rpx;
color: #fff;
}
.time_info {
font-size: 32rpx;
margin-top: 35rpx;
}
.list_info {
font-size: 28rpx;
font-weight: bold;
color: #000;
text-align: center;
margin: 50rpx auto;
}
.footer_box {
width: 100%;
position: fixed;
bottom: 0;
left: 0;
}
.footer_item {
height: 100rpx;
background: #ffad50;
border-radius: 16rpx 16rpx 0 0;
display: flex;
align-items: center;
justify-content: space-between;
}
.footer_item view {
width: 25%;
text-align: center;
font-size: 28rpx;
color: #fff;
}
.footer_time {
height: 117rpx;
background: #f5f6fa;
}
.footer_time view {
font-size: 24rpx;
color: #000;
text-align: center;
}
.footer_info view{
width: 100%;
text-align: center;
}