answer-question.wxss
2.1 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
/* 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;*/
flex-direction: column;
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;
}
.btn {
width: 364rpx;
background-color: #323232;
color:#E2C8B1;
font-size: 30rpx;
border-radius: 6rpx;
text-align: center;
}
.btn text {
height: 66rpx;
line-height: 66rpx;
}
.checkbox {
display: flex;
/*align-items: center;*/
justify-content: space-between;
margin-bottom: 21rpx;
}
radio .wx-radio-input {
border: none;
color: #ffffff;
}
radio .wx-radio-input.wx-radio-input-checked{
border: none;
background: #ffffff;
}
/*选中后的对勾样式*/
radio .wx-radio-input.wx-radio-input-checked::before{
color: #E3CAB3;
background: #ffffff;
border: none;
}
checkbox .wx-checkbox-input {
border: none;
color: #ffffff;
}
checkbox .wx-checkbox-input.wx-checkbox-input-checked{
border: none;
background: #ffffff;
}
/*选中后的对勾样式*/
checkbox .wx-checkbox-input.wx-checkbox-input-checked::before{
color: #E3CAB3;
background: #ffffff;
border: none;
}