Blame view

pages/createQuestionnaire/createQuestionnaire.scss 1.22 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%;
354e3811   杨鑫   '验收'
13
14
15
16
17
  		
  	}
  	::v-deep .u-form-item--left{
  		width:20%;
  		flex:none;
4dfe89e4   monkeyhouyi   初始化
18
  	}
15ee21cf   monkeyhouyi   调查问卷,时间段选择
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
  	.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   初始化
34
  		}
15ee21cf   monkeyhouyi   调查问卷,时间段选择
35
36
  		.bottom {
  			padding: 20rpx 4%;
4dfe89e4   monkeyhouyi   初始化
37
  			display: flex;
15ee21cf   monkeyhouyi   调查问卷,时间段选择
38
39
40
41
  			background-color: #EDFFF5;
  			border: #0FBB59  solid 1rpx;
  			border-radius: 0 0 20rpx 20rpx;
  			.u-btn {
4dfe89e4   monkeyhouyi   初始化
42
  				width: 18%;
15ee21cf   monkeyhouyi   调查问卷,时间段选择
43
44
45
46
47
48
  			}
  			:first-child {
  				margin-left: 0;
  			}
  			:last-child {
  				margin-right: 0;
4dfe89e4   monkeyhouyi   初始化
49
50
51
  			}
  		}
  	}
15ee21cf   monkeyhouyi   调查问卷,时间段选择
52
  	.page-footer{
4dfe89e4   monkeyhouyi   初始化
53
  		position: fixed;
15ee21cf   monkeyhouyi   调查问卷,时间段选择
54
  		left: 0;
4dfe89e4   monkeyhouyi   初始化
55
  		bottom: 0;
15ee21cf   monkeyhouyi   调查问卷,时间段选择
56
57
58
59
  		display: flex;
  		flex-direction: row;
  		align-items: center;
  		justify-content: space-between;
4dfe89e4   monkeyhouyi   初始化
60
  		width: 100%;
15ee21cf   monkeyhouyi   调查问卷,时间段选择
61
62
63
64
  		height: 120rpx;
  		background-color: #FFFFFF;
  		padding-bottom: constant(safe-area-inset-bottom);
  		padding-bottom: env(safe-area-inset-bottom);
354e3811   杨鑫   '验收'
65
  		z-index: 10;
15ee21cf   monkeyhouyi   调查问卷,时间段选择
66
67
68
69
70
  		.u-btn {
  			width: 30%;
  		}
  		.u-icon {
  			margin-right: 10rpx;
4dfe89e4   monkeyhouyi   初始化
71
72
73
  		}
  	}
  }