Blame view

pages/createQuestionnaire/createQuestionnaire.scss 1.15 KB
4dfe89e4   monkeyhouyi   初始化
1
  .page{
15ee21cf   monkeyhouyi   调查问卷,时间段选择
2
3
  	padding: 0 20rpx 20rpx;
  	background-color: #f6f6f6;
4dfe89e4   monkeyhouyi   初始化
4
5
6
  	font-size: 24rpx;
  	font-weight: 500;
  	position: relative;
15ee21cf   monkeyhouyi   调查问卷,时间段选择
7
8
9
10
11
12
  	.form-box {
  		padding: 0 4%;
  		background-color: #FFFFFF;
  		border-radius: 20rpx;
  		margin-top: 20rpx;
  		width: 100%;
4dfe89e4   monkeyhouyi   初始化
13
  	}
15ee21cf   monkeyhouyi   调查问卷,时间段选择
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
  	.select-item {
  		background-color: #FFFFFF;
  		border-radius: 20rpx;
  		margin-top: 20rpx;
  		width: 100%;
  		.top {
  			padding: 22rpx 4%;
  			.title {
  				font-size: 30rpx;
  				margin-bottom: 20rpx;
  			}
  			.radio-box {
  				font-size: 24rpx;
  				color: #7c7c7c;
  			}
4dfe89e4   monkeyhouyi   初始化
29
  		}
15ee21cf   monkeyhouyi   调查问卷,时间段选择
30
31
  		.bottom {
  			padding: 20rpx 4%;
4dfe89e4   monkeyhouyi   初始化
32
  			display: flex;
15ee21cf   monkeyhouyi   调查问卷,时间段选择
33
34
35
36
  			background-color: #EDFFF5;
  			border: #0FBB59  solid 1rpx;
  			border-radius: 0 0 20rpx 20rpx;
  			.u-btn {
4dfe89e4   monkeyhouyi   初始化
37
  				width: 18%;
15ee21cf   monkeyhouyi   调查问卷,时间段选择
38
39
40
41
42
43
  			}
  			:first-child {
  				margin-left: 0;
  			}
  			:last-child {
  				margin-right: 0;
4dfe89e4   monkeyhouyi   初始化
44
45
46
  			}
  		}
  	}
15ee21cf   monkeyhouyi   调查问卷,时间段选择
47
  	.page-footer{
4dfe89e4   monkeyhouyi   初始化
48
  		position: fixed;
15ee21cf   monkeyhouyi   调查问卷,时间段选择
49
  		left: 0;
4dfe89e4   monkeyhouyi   初始化
50
  		bottom: 0;
15ee21cf   monkeyhouyi   调查问卷,时间段选择
51
52
53
54
  		display: flex;
  		flex-direction: row;
  		align-items: center;
  		justify-content: space-between;
4dfe89e4   monkeyhouyi   初始化
55
  		width: 100%;
15ee21cf   monkeyhouyi   调查问卷,时间段选择
56
57
58
59
60
61
62
63
64
  		height: 120rpx;
  		background-color: #FFFFFF;
  		padding-bottom: constant(safe-area-inset-bottom);
  		padding-bottom: env(safe-area-inset-bottom);
  		.u-btn {
  			width: 30%;
  		}
  		.u-icon {
  			margin-right: 10rpx;
4dfe89e4   monkeyhouyi   初始化
65
66
67
  		}
  	}
  }