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
/* pages/myNews/myFaq.wxss */
.hotFaqs{
width:100%;
}
.faqItem{
width:90%;
margin-top: 10px;
margin-left: 0;
margin-right: 0;
padding:10px;
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
border-radius: 5px;
border: 1rpx solid gray;
}
.faqCol1{
width:82%;
display: flex;
flex-direction: column;
justify-content: space-around;
align-items: left;
}
.faqCotent{
display: flex;
flex-direction: row;
justify-content: flex-start;
align-items: center;
font-size: 17px;
}
.faqContent image {
width: 10px;
height: 10px;
}
.faqContent text {
margin-left: 5px;
width: 90%;
word-break:break-all;
}
.faqReplycount{
font-size: 14px;
margin-left: 15px;
}
.faqCol2{
width:17%;
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
font-size: 16px;
}
.newFaqButton{
position: fixed;
bottom: 10px;
height: 30px;
line-height: 30px;
border-radius: 15px;
background: linear-gradient(to right, #e85c6d, #fb689b);
color: #fff;
font-size: 14px;
}