Blame view

yslvdao-miniapp/pages/advertisementTime/advertisementTime.scss 1.11 KB
d64cd58f   wesley88   上传验收小程序
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
  .page{
  	position: absolute;
  	left: 0;
  	top: 0;
  	width: 100%;
  	overflow-y: scroll;
  	height: calc(100% - 120rpx);
  	background-color: #f6f6f6;
  }
  .calendar-box {
  	margin: 20rpx;
  	background-color: #fff;
  	border-radius: 14rpx;
  	overflow: hidden;
  	.wn-calendar {
  		.labels {
  			background-color: #fff;
  		}
  	}
  }
  .form-box {
  	padding: 0 20rpx;
  	.add-list{
  		padding: 0 4%;
  		background-color: #FFFFFF;
  		border-radius: 20rpx;
  		margin-top: 20rpx;
  		width: 100%;
  		}
  		.btns {
  			display: flex;
  			margin-top: 20rpx;
  			.u-btn {
  				padding: 0 60rpx;
  			}
  		}
  }
  /* 保存按钮 */
  .page-footer{
  	position: fixed;
  	left: 0;
  	bottom: 0;
  	width: 100%;
  	height: 120rpx;
  	background-color: #FFFFFF;
  	padding: 20rpx 20rpx;
  	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: 70rpx;
  			background-color: #3f9b6a;
  			text{
  				font-size: 28rpx;
  				color: #FFFFFF;
  			}
  		}
  	}
  }