﻿@charset "utf-8";
/* CSS Document */

body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form, 
fieldset,input,textarea,p,blockquote,th,td { 
	margin:0; 
	padding:0;
	font-family: 微软雅黑;
} 
table { 
	border-collapse:collapse; /*让表格边框细线*/
	border-spacing:0; /*清除边框间距*/
} 
fieldset,img { 
	border:0 none; /*有些浏览器默认这些标签有边框，所以要清除默认边框*/
	display:block;
} 
address,caption,cite,code,dfn,em,i,u,b,strong,th,var { 
	font-style:normal; 
	font-weight:normal; 
	/*清除标签默认文本样式和加粗*/
}
input,textarea{
	outline:0 none;/*去掉文本框的默认轮廓线*/
} 
ol,ul { 
	list-style:none; /*清除列表默认样式*/
} 
caption,th { 
	text-align:left; /*清除标签默认文本居中对齐*/
} 
h1,h2,h3,h4,h5,h6 { 
	font-size:100%; 
	font-weight:normal; /*清除标题标签的默认样式*/
} 
a{
	text-decoration:none;/*大部分页面中的链接没有下划线*/
}

.clearfix:after{
		height:0;
		content:" ";
		display:block;
		overflow:hidden;
		clear:both;
	}
.clearfix{
	zoom:1;/*IE低版本浏览器不支持after伪类所以要加这一句*/
}

input, select { /* 去掉点击时  出现 边框*/
	outline: medium none;
}

.hidden{  /*单行溢出省略号 显示*/
	overflow: hidden;;text-overflow: ellipsis;;white-space: nowrap;
}
.clamp{ /*多行溢出省略号 显示*/
	overflow : hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

     
.lst03{ margin-top:13px;}
.lst03 li{ padding:16px 25px 16px 14px; height:144px; border-bottom:1px solid #ebebeb;}
.lst03 li:hover{ background:#d52929}
.lst03 .pic{ float:left;}
.lst03 .pic img{ width:189px; height:144px;}
.lst03 .subr{ margin-left:206px}
.lst03 .subr h2{ padding:12px 0 16px;  font-size:16px; line-height:16px; color:#004ea2}
.lst03 .subr p{ font-size:14px; line-height:26px; color:#8a8a8a}
.lst03 .subr p a.more{ margin-top:11px; display:block; float:right; width:106px; text-align:center; height:31px; line-height:31px; color:#fff; background:#d52929}
.lst03 li:hover .subr h2,
.lst03 li:hover .subr p{ color:#fff;}
.lst03 li:hover .subr p a.more{ background:#fff; color:#004ea2}
