/* 新闻资讯 */
body {
    padding-top: 84px;
}

.banner {
    width: 100%;
    height: 400px;
    margin-bottom: 86px;
}

.banner img {
    width: 100%;
    height: 100%;
}

.view-title {
    width: 100%;
    height: 75px;
    position: relative;
    margin-bottom: 40px;
    padding-top: 30px;
}

.view-title .en-title {
    width: 100%;
    font-size: 62px;
    font-weight: bold;
    color: #eeeeee;
    position: absolute;
    z-index: -1;
    top: -5px;
    left: 0;
    text-align: center;
	letter-spacing: 3px;
	font-family:Arial, Helvetica, sans-serif;
}
.view-title .zh-title {
    width: 100%;
    font-size: 38px;
    color: #333333;
    text-align: center;
}

.switch-link {
    height: 20px;
    margin-bottom: 74px;
}

.switch-link .center-box {
    display: flex;
    align-items: center;
    justify-content: center;
}

.switch-link .center-box .link {
    border-right: solid 1px #5d5d5d;
    padding: 0 1.8rem;
    color: #333333;
	line-height: 1.4rem;
	font-size:16px;
}
.switch-link .center-box .link.act {
    color: #aa2c34;
}

.switch-link .center-box .link:last-child {
    padding-right: none;
    border-right: none;
    margin-right: none;
}


.page-list{
	height: 50px;
	margin-bottom: 80px;
}
.page-list .center-box{
	display: flex;
	align-items: center;
	justify-content: center;
}
.page-list .center-box .page-link{
	display: block;
	width: 50px;
	height: 50px;
	border-radius: 100px;
	text-align: center;
	line-height: 50px;
	font-size: 16px;
	color: #999999;
	margin: 0 10px;
	border: solid 1px #eaeaea;
}
.page-list .center-box .page-link.act{
	background-color: #08377b;
	color: #ffffff;
}

.news-list{
	min-height: 800px;
	margin-bottom:60px;
}

.news-list .link{
	display: block;
	width: 100%;
	overflow:hidden;
	display: flex;
	transition: 300ms;
	align-items: flex-start;
	justify-content: space-between;
	border-bottom: solid 1px #eeeeee;
	padding:50px 0;
}
.news-list .link:hover{
	border-bottom: solid 1px #aa2c34;
}
.news-list .link:hover .left-text .content .news-title{
	color: #aa2c34;
}
.news-list .link .left-text{
	width: 960px;
	height: 100%;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}
.news-list .link .left-text .time{
	width: 110px;
	height: 94px;
	margin-right: 60px;
}
.news-list .link .left-text .time .day{
	font-size: 38px;
	color: #666;
	width: 100%;
	margin-bottom: 10px;
}
.news-list .link .left-text .time .year{
	width: 100%;
	margin-bottom: 10px;
	font-size: 16px;
	color: #999999;
	padding-left:5px;
}
.news-list .link .left-text .time img{
	padding-left:5px;
}

.news-list .link .left-text .zst{
	display: block;
	width: 50px;
	height: 1px;
	margin-top: 30px;
	color: #b2b2b2;
	background-color: #b2b2b2;
	margin-right: 60px;
}
.news-list .link .left-text .content{
	position: relative;
	width: 720px;
	height: 100%;
	color: #333333;
}
.news-list .link .left-text .content .news-title{
	width: 100%;
	transition: 300ms;
	font-size: 22px;
	margin-bottom:30px;
	color:#333;
	font-weight:bold;
}
.news-list .link .left-text .content .contents{
	width: 100%;
	font-size: 14px;
	color: #666666;
	line-height: 28px;
}

.news-list .link:hover .left-text .content .more{
	color: #333333;
}
.news-list .link .left-text .content .more{
	transition: 300ms;
	font-size: 14px;
	color: #999;
	margin-top:30px;
}

.news-list .link .right-img{
    width: 320px;
    height: 190px;
    position: relative;
    overflow: hidden;
    transition: .8s;
}
.news-list .link .right-img img {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    object-fit: cover;
    transition: .8s;
}
.news-list .link:hover .right-img img  {
    transform: scale(1.1);
}