<!--pages/myNews/myNews.wxml-->
<view class="topBg">
	<image class='background-image' src='/img/faqTop.png' mode="widthFix"></image>
</view>
<view class="title" bindtap='back'>
	<image src="/img/left1.png" style="width:40px;height:40px;margin-right:5px"></image>在线答疑检索
</view>

<view class="searchArea">
	<text>关键词索引</text>
	<input class="input" name="keyword" placeholder="搜索从这里开始" bindinput="keywordInput" placeholder-class="input_center" value='{{keyword}}'/>
	<view bindtap="searchFaq">搜索</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">
					<view class="faqCotent">{{item.content}}</view>
					<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>