feedback.scss
1.8 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
.page-feedback {
padding-top: 112rpx;
.content {
padding: 0 24rpx;
.t1 {
font-size: 28rpx;
color: #292b33;
font-weight: bold;
margin-bottom: 24rpx;
}
.type {
padding: 24rpx;
background: #ffffff;
border-radius: 10rpx;
margin-bottom: 16rpx;
.box {
width: 206rpx;
height: 72rpx;
margin-right: 16rpx;
background: #f5f5f7;
border-radius: 6rpx;
font-size: 24rpx;
color: #292b33;
transition: all 0.4s ease;
&.curr {
background-color: #1969f9;
color: #ffffff;
}
}
}
.suggest {
padding: 24rpx;
background-color: #ffffff;
.t2 {
font-size: 24rpx;
color: #484b59;
margin-bottom: 16rpx;
}
textarea {
width: 100%;
height: 216rpx;
background: #f5f5f7;
border-radius: 10rpx;
padding: 24rpx;
box-sizing: border-box;
font-size: 26rpx;
}
}
}
.btn {
position: fixed;
bottom: 0;
left: 0;
right: 0;
width: 100%;
z-index: 9;
background: #ffffff;
box-shadow: 0px -4rpx 20rpx 0px rgba(198, 199, 204, 0.1);
border-radius: 10rpx 10rpx 0px 0px;
padding: 24rpx;
.btn1 {
width: 100%;
height: 68rpx;
background: #1969f9;
border-radius: 10rpx;
font-size: 28rpx;
color: #ffffff;
}
}
}