advertisementTime.scss
688 Bytes
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
.page{
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
}
.calendar {
margin-top: 20rpx;
}
/* 保存按钮 */
.page-footer{
position: fixed;
left: 0;
bottom: 0;
display: flex;
width: 100%;
height: 100rpx;
background-color: #FFFFFF;
padding-bottom: constant(safe-area-inset-bottom);
padding-bottom: env(safe-area-inset-bottom);
.footer-buy{
display: flex;
align-items: center;
justify-content: space-between;
width: 100%;
height: 100%;
.cart-add{
display: flex;
align-items: center;
justify-content: center;
width: 100%;
height: 100rpx;
background-color: #3f9b6a;
text{
font-size: 28rpx;
color: #FFFFFF;
}
}
}
}