Blame view

pages/advertisementTime/advertisementTime.scss 1.11 KB
4dfe89e4   monkeyhouyi   初始化
1
2
3
4
5
  .page{
  	position: absolute;
  	left: 0;
  	top: 0;
  	width: 100%;
15ee21cf   monkeyhouyi   调查问卷,时间段选择
6
7
8
  	overflow-y: scroll;
  	height: calc(100% - 120rpx);
  	background-color: #f6f6f6;
4dfe89e4   monkeyhouyi   初始化
9
  }
15ee21cf   monkeyhouyi   调查问卷,时间段选择
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;
  			}
  		}
4dfe89e4   monkeyhouyi   初始化
37
38
39
40
41
42
  }
  /* 保存按钮 */
  .page-footer{
  	position: fixed;
  	left: 0;
  	bottom: 0;
4dfe89e4   monkeyhouyi   初始化
43
  	width: 100%;
15ee21cf   monkeyhouyi   调查问卷,时间段选择
44
  	height: 120rpx;
4dfe89e4   monkeyhouyi   初始化
45
  	background-color: #FFFFFF;
15ee21cf   monkeyhouyi   调查问卷,时间段选择
46
  	padding: 20rpx 20rpx;
4dfe89e4   monkeyhouyi   初始化
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%;
15ee21cf   monkeyhouyi   调查问卷,时间段选择
60
  			height: 70rpx;
4dfe89e4   monkeyhouyi   初始化
61
62
63
64
65
66
67
68
  			background-color: #3f9b6a;
  			text{
  				font-size: 28rpx;
  				color: #FFFFFF;
  			}
  		}
  	}
  }