﻿@charset "UTF-8";
/**
 *
 * @authors Your Name (you@example.org)
 * @date    2020-09-28 14:56:16
 * @version $Id$
 */
section.banner{
	width: 100%;
	height: 600px;
	margin-top: 98px;
	background:url(../images/banner_news.jpg) no-repeat center;
	position: relative;
	animation: myfirst 1s;
	-webkit-animation: myfirst 1s; /* Safari and Chrome */
	overflow: hidden;
}
section.banner .title{
	margin-top: 229px;
	overflow: hidden;
	width: 100%;
}
section.banner .title img{
	display: block;
	margin: 0 auto;
}
@keyframes myfirst
{
from {width: 0;}
to {width: 100%;}
}

@-webkit-keyframes myfirst /* Safari and Chrome */
{
from {width: 0;}
to {width: 100%;}
}

section.list_news{

}
section.list_news li{
	margin-top: 62px;
	margin-bottom: 20px;
}
section.list_news li .pic{
	float: left;
	width: 500px;
	height: 260px;
	position: relative;
	overflow: hidden;
}
section.list_news li .pic img{
	width: 100%;
	height: 100%;
	position: absolute;
	top:50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	z-index: 1;
	transition:all 1s;
}
section.list_news li:hover .pic img{
	width: 110%;
	height: 110%;
}
section.list_news li .detail{
	float: left;
	margin-left: 51px;
	width: 846px;
}
section.list_news li .detail h3{
	font-size:20px;
	margin-top: 30px;
	white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
section.list_news li .detail p{
	font-size:15px;
	line-height: 24px;
	color: #666666;
	margin-top: 37px;
	display: -webkit-box;
overflow: hidden;
-webkit-box-orient: vertical;
-webkit-line-clamp: 2;
}
section.list_news li .detail span{
	font-size:16px;
	color: #666666;
	display: block;
	margin-top: 30px;
	padding-top: 37px;
	position: relative;
}
section.list_news li .detail span:after{
	content:'';
	width: 36px;
	height:1px;
	background-color:#c7ad8c;
	position: absolute;
	top:0;
	left: 0;
	z-index: 1;
	transition:all 1s;
}
section.list_news li:hover .detail h3{
	color: #404671;
}
section.list_news li:hover .detail span:after{
	width: 100%;
	background-color:#404671;
}

section.banner.news .title{
	margin-top: 167px;
	overflow: hidden;
	width: 100%;
}
section.article_news{
	margin-top: -164px;
	position: relative;
	z-index: 2;
}
div.news{
	background-color:#fff;
	overflow: hidden;
	padding: 0 40px;
	width: 1320px;
}
div.news h1{
	margin-top: 58px;
	font-size:36px;
	text-align: center;
	color: #eb4200;
    font-weight: normal;
}
div.news>span{
	display: block;
	text-align: center;
	font-size:14px;
	color: #999999;
	margin-top: 23px;
	padding-bottom: 36px;
	border-bottom: 1px solid #eee;
}
div.news .details p{
	font-size:15px;
	line-height: 28px;
	color: #666;
	margin-top: 20px;
}
div.news .details p img{
	max-width: 100%;
}
