dailySignIn.wxss
1.1 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
/* pages/signIn/dailySignIn/dailySignIn.wxss */
.content_box {
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
padding: 35rpx 32rpx;
}
.hint_box {
width: 100%;
height: 60rpx;
line-height: 60rpx;
background: linear-gradient(to right, rgba(255, 201, 136, 0.9), #ffad50);
box-shadow: 0rpx 15rpx 30rpx 0rpx rgba(255, 214, 167, 1);
border-radius: 30rpx;
font-size: 27rpx;
color: #fff;
padding: 0 14rpx;
box-sizing: border-box;
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 1;
overflow: hidden;
}
.list_img {
width: 100%;
height: 448rpx;
display: flex;
align-items: center;
justify-content: center;
margin-top: 36rpx;
}
.list_img image {
width: 100%;
height: 100%;
}
.list_info {
width: 100%;
font-size: 28rpx;
color: #000;
margin-top: 59rpx;
line-height: 60rpx;
}
.bottom_box {
width: 100%;
height: 165rpx;
position: fixed;
bottom: 0;
left: 0;
background: rgba(255, 173, 80, 1);
border-radius: 36rpx 36rpx 0rpx 0rpx;
font-size: 28rpx;
color: #fff;
display: flex;
align-items: center;
justify-content: center;
}