/* pages/myNews/faq.wxss */
.titleArea {
  margin-top: 20px;
  font-size: 20px;
  color: #fff;
  background: pink;
  text-align: center;
}
.searchArea{
  margin: 1%;
  width:98%;
  white-space:nowrap;
  padding: 10px;
}

.topTitle {
  position: static;
  width: 100%;
  height: 30px;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.topTitle .title {
  margin-left: 10px;
  font-size: 20px;
  font-weight: bolder;
  color: #000;
}

.topTitle .leftLine {
  height: 20px;
  border-left: 5px solid #efc04c;
  margin-left: 5%;
}

.topTitle .rightTitle {
  position: absolute;
  right: 5%;
  display: flex;
  flex-direction: row;
}

.topTitle .rightTitle text {
  margin-right: 5px;
}

.topTitle .rightTitle image {
  margin-top: 3px;
  margin-right: 5px;
  width: 12px;
  height: 12px;
}

.hotFaqs{
  width:100%;
  white-space:nowrap;
}

.faqItem{
  width:90%;
  margin-top: 10px;
  margin-left: 0;
  margin-right: 0;
  padding:10px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  border-radius: 5px;
  border: 1rpx solid gray;
}

.faqRow1{
  width:100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.faqCotent{
  font-size: 18px;
}

.faqReplycount{
  font-size: 16px;
}

.faqRow2{
  width:100%;
  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;
}