createQuestionnaire.scss
1.28 KB
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
74
75
76
.page{
padding: 20rpx 30rpx;
background-color: #fff;
font-size: 24rpx;
font-weight: 500;
position: relative;
.titles{
display: flex;
justify-content: space-between;
margin-bottom: 30rpx;
}
.uni-textarea{
padding: 20rpx 30rpx;
min-height: 50rpx;
font-size: 24rpx;
background-color: #EFEFEF;
/deep/ uni-textarea{
height: 180rpx;
}
/deep/.textarea{
width: 100%;
font-size: 24rpx;
}
}
.listCont{
margin-top: 60rpx;
.listTitile{
margin-bottom: 20rpx;
}
.uni-input{
background-color: #E0E0E0;
margin-bottom: 20rpx;
height: 80rpx;
padding: 10rpx 20rpx;
font-size: 24rpx;
}
.btnList{
display: flex;
flex-wrap: wrap;
font-weight: 200;
background-color: #E0E0E0;
padding: 14rpx 14rpx;
justify-content: space-between;
/deep/ uni-button{
width: 18%;
height:45rpx;
font-size: 24rpx;
border-radius:none;
line-height: 45rpx;
}
}
}
.page_foot{
position: fixed;
bottom: 0;
left: 0;
width: 100%;
z-index: 10;
.foot_btnList{
display: flex;
flex-wrap: wrap;
font-weight: 200;
padding: 14rpx 30rpx;
justify-content: space-between;
/deep/ uni-button{
width: 21%;
height:70rpx;
font-size: 24rpx;
border-radius:none;
line-height: 70rpx;
}
}
}
}