.banner{
	width: 100%;
	height: 400px;
}
.banner img{
	width: 100%;
}
.news{
	width: 80%;
	margin: 0 auto;
}
.news .btn{
	margin: 50px 20px;
}
.news .btn .company{
	width: 160px;
	height: 50px;
	line-height: 50px;
	text-align: center;
	background: #f5f5f5;
	border-radius: 25px;
	margin-right: 30px;
}
.news .btn .company:hover{
	background: #555;
	color: #fff;
}
.news .content li{
	width: 48%;
	margin: 0 0 50px;
	cursor: pointer;
}
.news .content li:nth-child(odd){	
	float: left;	
}
.news .content li:nth-child(even){
	float: right;
}
.news .content li .title{
	font-weight: normal;
    font-size: 16px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    word-break: break-all;
	height: 30px;
	color: #333;
}
.news .content li .descript{
	color: #999;
    line-height: 24px;
    height: 72px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: wrap;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	text-indent: 2em;
	transition: all 0.6s cubic-bezier(0.215,0.61,0.355,1) 0s;
	
	
	
	
}
.news .content li .time{
	color: #999;
}
.news .content li span{
	display: inline-block;
	width: 60px;
    border-bottom: 2px solid rgba(223,78,0,1);
    margin: 20px 0 10px;
	border-color: rgba(223,78,0,1); 

}
.news .content li:hover span{
	width: 100%;
	transition: all 0.6s cubic-bezier(0.215,0.61,0.355,1) 0s;
}
.news .content li:hover .descript,.news .content li:hover .title{
    display: block;
    margin-top: -15px;
    padding-bottom: 15px;
	transition: all 0.6s cubic-bezier(0.215,0.61,0.355,1) 0s;
}