/* pages/myNews/faq.wxss */
.searchArea {
  position: fixed;
  top: 8%;
  width: 100%;
  height: 60px;
  background-color: #fff;
  z-index: 190;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.searchArea text {
  font-size: 16px;
  font-weight: 400;
  margin: 0 10px;
}

.searchArea>input {
  flex: 1;
  margin-right:10px;
  height: 40px;
  line-height: 40px;
  font-size: 14px;
  background: #f6f6f6;
  border-radius: 30px;
  text-align: center;
}

.searchArea view {
  font-size: 16px;
  color: #fb689b;
  font-weight: 400;
  margin: 0 10px;
}

.input_center {
  text-align: center;
  color: #bcbcbc;
}

.content {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 15%;
  margin-bottom: 60px;
}

.hotFaqs {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.faqItem {
  width: 100%;
  margin-top: 20px;
}

.faqContent {
  margin: 0 3%;
  padding: 3% 5%;
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  box-shadow: 0 0 8px -3px rgb(0, 0, 0, 0.3);
}

.faqRow1 {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-bottom: 10px;
}

.faqRow1 .faqCotent {
  width: 80%;
  word-break: break-all;
}

.newFaqButton {
  position: fixed;
  bottom: 0;
  width: 100%;
  display: flex;
  align-items: center;
  /* background: #fff; */
}

.newFaqButton view {
  text-align: center;
  margin: 0 auto;
  width: 80%;
  height: 50px;
  line-height: 50px;
  border-radius: 25px;
  margin-bottom: 10px;
  background: linear-gradient(to right, #e85c6d, #fb689b);
  color: #fff;
  font-size: 18px;
}