/*=============reset==================================*/
/* 禁止选中文本与长按事件（如无文本选中需求，此为必选项） */
/*html, body {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}*/
/*默认鼠标样式与字体圆滑*/
body{
	cursor:default;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
/* 清零 */
body,div,ul,li,ol,h1,h2,h3,h4,h5,h6,input,textarea,select,p,dl,dt,dd,a,img,button,form,table,th,td,tr,tbody,article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section,fieldset{
	margin: 0;
	padding: 0;
	border: none;
}
/*设置HTML5元素为块级元素*/
article,aside,details,figcaption,figure,header, footer,hgroup,menu,nav,section{
	display: block;
}
/*去除iPhone中默认的input样式*/
input{
	-webkit-appearance:none;
	resize:none;
}
textarea{
	resize:none;
}
/*图片自适应*/
img{
    max-width: 100%;
    width:auto\9; /*IE8*/
    -ms-interpolation-mode:bicubic; /*为了照顾IE图片缩放失真*/
}
h1, h2, h3, h4, h5, h6 {
	font-size: 100%;
    font-weight: normal;
}
address, cite, em, i{
	font-style: normal;
}
strong{
	font-weight: bold;
}
ul, ol, li{
	list-style: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
/*淸浮动*/
.clear {
     clear: both;
     display: block;
     overflow: hidden;
     visibility: hidden;
     width: 0;
     height: 0;
}
.clearfix:after ,.clearfix:before{
     clear: both;
     content: ' ';
     display: block;
     font-size: 0;
     line-height: 0;
     visibility: hidden;
     width: 0;
     height: 0;
}
.clearfix {
     zoom: 1;
}
/*单行文本溢出省略*/
.text_ellipsis{
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.multi_line-3{
	text-overflow: ellipsis;
    overflow: hidden;
    -webkit-line-clamp: 3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}
body{
	font-size:14px;
	font-family:"helvetica Neue", Helvetica, Tahoma, Arial, "Microsoft YaHei", "微软雅黑", STXihei, "华文细黑", Heiti, "黑体", SimSun, "宋体", sans-serif;
	background:#fff;
	overflow-x: hidden;
}
small {
	font-size: 14px;
}
a {
	color:#3c3c3c;
	text-decoration: none;
}
a:link{
   color: #3c3c3c;
    text-decoration: none;
}
a:visited{
   color: #3c3c3c;
    text-decoration: none;
}
a:hover{
   color: #3c3c3c;
   text-decoration: none;
}
a:active{
   color: #3c3c3c;
    text-decoration: none;
}
.fl{
	float:left;
}
.fr{
	float:right;
}
.text_indent{
	text-indent:2em;
}
.hide{
	display: none;
}
.show{
	display: block;
}
.flex{
	width: 100%;
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
}
.flexItem{
	-webkit-flex: 1;
	flex: 1;
}
p{
	color: #000;
}
.search_title strong{
  font-size:20px;
  color:red;
  padding: 0 5px;
}