<!--pages/myNews/myNews.wxml-->
<image class='background-image' src='/img/faqTop.png' mode="widthFix"></image>
<view class="title" bindtap='back'>
	<image src="/img/left1.png" style="width:40px;height:40px;margin-right:5px"></image>在线答疑
</view>
<view class="titleArea">
	<text>亲爱的志愿者\n欢迎来到志愿者服务大厅</text>
</view>
<view class="searchArea">
	<text>关键词索引</text>
	<input class="input" name="keyword" placeholder="搜索从这里开始" bindinput="keywordInput" placeholder-class="input_center" />
	<view bindtap="searchFaq">搜索</view>
</view>
<view class='topTitle'>
	<view class='leftTitle'>
		<view class='leftLine'></view>
		<text class="hot_title">热门资讯</text>
	</view>
	<view class='rightTitle' bindtap='myFaq'>
		<text>我的咨询</text>
		<view></view>
	</view>
</view>
<view class="content">
	<view class="hotFaqs">
		<view bindtap='faqDetail' wx:for="{{faqList}}" class="faqItem" data-index="{{item.id}}" wx:key="{{index}}">
			<view class="faqContent">
				<view class="faqRow1">
					<text class="faqCotent">{{item.content}}</text>
					<view class="faqReplycount">回复:{{item.reply_count}}</view>
				</view>
				<view class="faqRow2">最佳答案:{{item.best_detail_content}}</view>
			</view>
		</view>

	</view>

	<view bindtap='newFaq' class="newFaqButton">
		<view>立即咨询</view>
	</view>
</view>