answer-question.wxss
1.2 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
/* pages/index/answer-question/answer-question.wxss */
.content {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 52rpx 40rpx;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
border-top: 1rpx solid #f2f2f2;
}
.title {
font-size: 34rpx;
color: #333333;
}
.tips {
font-size: 28rpx;
color: #333333;
margin-top: 56rpx;
font-weight: bold;
}
.questions-box {
width: 100%;
margin-top: 38rpx;
}
.question-item {
padding: 28rpx;
box-shadow: 4rpx 8rpx 60rpx rgba(51, 51, 51, 0.1);
display: flex;
flex-direction: column;
justify-content: flex-start;
margin-bottom: 60rpx;
}
.question-item .question {
font-size: 30rpx;
color: #333333;
font-weight: bold;
}
.question-item .section {
display: flex;
align-items: center;
justify-content: flex-start;
}
.question-item .section text {
font-size: 26rpx;
color: #333333;
margin-top: 10rpx;
margin-right: 10rpx;
}
.question-item .section .img {
width: 34rpx;
height: 20rpx;
}
.question-item .section .active {
color:#E2C8B1;
}