Blame view

lvdao-miniapp/pages/advertisementTime/advertisementTime.scss 1.11 KB
3f535f30   杨鑫   '初始'
1
2
3
4
5
  .page{
  	position: absolute;
  	left: 0;
  	top: 0;
  	width: 100%;
e5b57447   杨鑫   '分包问卷'
6
7
8
  	overflow-y: scroll;
  	height: calc(100% - 120rpx);
  	background-color: #f6f6f6;
3f535f30   杨鑫   '初始'
9
  }
e5b57447   杨鑫   '分包问卷'
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
  .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;
  			}
  		}
3f535f30   杨鑫   '初始'
37
38
39
40
41
42
  }
  /* 保存按钮 */
  .page-footer{
  	position: fixed;
  	left: 0;
  	bottom: 0;
3f535f30   杨鑫   '初始'
43
  	width: 100%;
e5b57447   杨鑫   '分包问卷'
44
  	height: 120rpx;
3f535f30   杨鑫   '初始'
45
  	background-color: #FFFFFF;
e5b57447   杨鑫   '分包问卷'
46
  	padding: 20rpx 20rpx;
3f535f30   杨鑫   '初始'
47
48
49
50
51
52
53
54
55
56
57
58
59
  	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%;
e5b57447   杨鑫   '分包问卷'
60
  			height: 70rpx;
3f535f30   杨鑫   '初始'
61
62
63
64
65
66
67
68
  			background-color: #3f9b6a;
  			text{
  				font-size: 28rpx;
  				color: #FFFFFF;
  			}
  		}
  	}
  }