Blame view

yslvdao-miniapp/pages/createQuestionnaire/createQuestionnaire.scss 1.22 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
69
70
71
72
73
  .page{
  	padding: 0 20rpx 20rpx;
  	background-color: #f6f6f6;
  	font-size: 24rpx;
  	font-weight: 500;
  	position: relative;
  	.form-box {
  		padding: 0 4%;
  		background-color: #FFFFFF;
  		border-radius: 20rpx;
  		margin-top: 20rpx;
  		width: 100%;
  		
  	}
  	::v-deep .u-form-item--left{
  		width:20%;
  		flex:none;
  	}
  	.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;
  			}
  		}
  		.bottom {
  			padding: 20rpx 4%;
  			display: flex;
  			background-color: #EDFFF5;
  			border: #0FBB59  solid 1rpx;
  			border-radius: 0 0 20rpx 20rpx;
  			.u-btn {
  				width: 18%;
  			}
  			:first-child {
  				margin-left: 0;
  			}
  			:last-child {
  				margin-right: 0;
  			}
  		}
  	}
  	.page-footer{
  		position: fixed;
  		left: 0;
  		bottom: 0;
  		display: flex;
  		flex-direction: row;
  		align-items: center;
  		justify-content: space-between;
  		width: 100%;
  		height: 120rpx;
  		background-color: #FFFFFF;
  		padding-bottom: constant(safe-area-inset-bottom);
  		padding-bottom: env(safe-area-inset-bottom);
  		z-index: 10;
  		.u-btn {
  			width: 30%;
  		}
  		.u-icon {
  			margin-right: 10rpx;
  		}
  	}
  }