.newsBackground {
	width: 100%;
	height: 380px;
	background: url(../images/newsListBG.jpg);
	background-size: 110% 110%;
	animation:myfirst 15s;
	-moz-animation:myfirst 15s; /* Firefox */
	-webkit-animation:myfirst 15s; /* Safari and Chrome */
	-o-animation:myfirst 15s; /* Opera */
	animation-fill-mode: forwards;
}

@keyframes myfirst
{
from {background-size: 110% 110%;}
to {background-size: 100% 100%;}
}

@-moz-keyframes myfirst /* Firefox */
{
from {background-size: 110% 110%;}
to {background-size: 100% 100%;}
}

@-webkit-keyframes myfirst /* Safari and Chrome */
{
from {background-size: 110% 110%;}
to {background-size: 100% 100%;}
}

@-o-keyframes myfirst /* Opera */
{
from {background-size: 110% 110%;}
to {background-size: 100% 100%;}
}

.newsListContainer {
	width: 1200px;
	position: absolute;
	left:50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	padding-bottom: 90px;
}

.newsModuleContainer {
	width: 1200px;
	margin: 0 auto;
	margin-top: 30px;
}

.newsChild {
	width: 100%;
	margin-bottom: 30px;
}

.newsImg {
	width: 300px;
	height: 225px;
	overflow: hidden;
}

.newsFontContainer {
	width: 880px;
	margin-left: 20px;
}

.newsFont_1 {
	font-size: 28px;
	font-weight: 500;
	color: #fff;
}

.newsFont_2 {
	font-size: 14px;
	color: #9B989D;
	margin-top: 20px;
}

.newsFont_3 {
	font-size: 14px;
	color: #9B989D;
	margin-top: 20px;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}

.newsButton {
	width: 180px;
	height: 40px;
	border: 1px solid #fff;
	line-height: 40px;
	text-align: center;
	color: #fdd947;
	margin-top: 49px;
	transition: 0.3s linear;
	z-index: 2;
	position: relative;
	font-size: 16px;
}

.line {
	width: 100%;
	border-top: 1px solid #343537;
	margin-top: 30px;
}

.newsButton:after {
	width: 0;
	cursor:pointer;
	position: absolute;
	content: "";
	top: 0;
	bottom: 0;
	left: 0;
	z-index: -1;
	background: #fdd947;
	transition: 0.3s linear;
}

.newsChild:hover {
	cursor: pointer;
}

.newsChild:hover .newsFont_1 {
	color: #fdd947;
}

.newsChild:hover .newsButton {
	color: #fff;
	border: 1px solid #fdd947;
}

.newsChild:hover .newsButton:after {
	width: 100%;
}