*{
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}
body{
	color: #333;
	font-size: 16px;
}
a{
	color: #333;
	text-decoration: none;
	display: inline-block;
}
a:hover{
	color: #CD1A2C;
}

.banner{
	width: 100%;
	display: block;
}
.app{
	width: calc(100% - 20px);
	max-width: 1200px;
	margin: 0 auto;
}
.news{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.news-list{
	width: 560px;
	margin-bottom: 40px;
}
.news-title{
	font-size: 24px;
	color: #d11829;
	display: flex;
	justify-content: space-between;
	border-bottom: 1px solid #ddd;
	line-height: 42px;
	margin-bottom: 10px;
}
.news-title>p{
	border-bottom: 2px solid #CD1A2C;
	transform: translateY(1px);
}
.news-title-more{
	font-size: 14px;
	color: #999999;
}
.news-item{
	display: flex;
	justify-content: space-between;
	line-height: 32px;
	font-size: 14px;
	color: #333333;
}
.news-item>a{
	width: calc(100% - 100px);
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.news-item>span{
	color: #999;
}

.nav{
	background-color: #f8f8f8;
}
.nav-con{
	display: flex;
	justify-content: space-between;
	line-height: 40px;
	align-items: center;
	flex-wrap: wrap;
}
.nav-seach{
	width: 100%;
	padding: 0 10px;
	border: none;
	background: transparent;
	height: 30px;
	position: absolute;
	top: 0;
	left: 0;
}
.nav-seach-con{
	position: relative;
	width: 220px;
	height: 32px;
	border-radius: 4px;
	border: solid 1px #999999;
}
.nav-seach-con>i{
	position: absolute;
	width: 30px;
	height: 30px;
	right: 0;
	top: 0;
	cursor: pointer;
	background-image: url(./img/search.jpg);
	background-position:center;
	background-repeat: no-repeat;
}
.nav-ads{
	padding-left: 40px;
	line-height: 40px;
	height: 40px;
	background-image: url(./img/inform.jpg);
	background-position: left center;
	background-repeat: no-repeat;
	font-size: 14px;
	color: #333333;
}
.nav-ads>a{
	display: none;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.nav-ads>a:first-child{
	display: block;
}
.nav-ads span{
	color: #666;
	margin-left: 20px;
}

.top{
	margin: 20px auto 50px auto;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.top1{
	width: 380px;
	height: 280px;
	position: relative;
}
.top1-list{
	position: absolute;
	width: 100%;
	height: 100%;
}
.top1-item{
	position: absolute;
	width: 100%;
	height: 100%;
	top:0;
	left: 0;
	background-size: cover;
	background-position: center;
}
.top1-item>p{
	line-height: 40px;
	padding: 0 10px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	background-color: rgba(0,0,0,0.6);
	color: #fff;
	position: absolute;
	bottom: 0;
	width: 100%;
}
.top1-left,.top1-right{
	width: 36px;
	height: 36px;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	background-repeat: no-repeat;
	background-image: url(../img/left.png);
	background-size: contain;
	background-position: center;
	z-index: 10;
	cursor: pointer;
}
.top1-right{
	left: auto;
	right: 0;
	transform: translateY(-50%) rotate(180deg);
}

.top3{
	width: 250px;
	height: 280px;
	display: flex;
	align-content: space-between;
	flex-wrap: wrap;
}
.top3>a{
	width: 250px;
	height: 50px;
	line-height: 50px;
	position: relative;
	display: flex;
	justify-content: space-between;
	color: #fff;
	padding: 0 16px;
}

.top2{
	width: 780px;
}
.top2-title{
	font-size: 16px;
    width: 780px;
    display: flex;
    justify-content: space-between;
}
.top2-titles{
	display: flex;
	align-items: center;
	width: 160px;
	justify-content: space-between;
}
.top2-titles>p{
	cursor: pointer;
    border-bottom: 2px solid #CD1A2C;
    color: #d11829;
}
/* .top2-titles>p.active{
	color: #CD1A2C;
} */
.top2-titles>i{
	display: block;
	width: 1px;
	height: 14px;
	background-color: #ddd;
}
.top2-titles-left,.top2-titles-right{
	width: 371px;
    border-bottom: 1px solid #ddd;
    display: flex;
    justify-content: space-between;
    height: 45px;
    line-height: 45px;
}
.top2-item{
	display: flex;
	justify-content: space-between;
	font-size: 14px;
	line-height: 30px;
}
.top2-item>a{
	width: calc(100% - 100px);
	padding-left: 14px;
	position: relative;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.top2-item>a::after{
	content:"";
	position: absolute;
	left:0;
	top: 50%;
	transform: translateY(-50%);
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background-color: #ddd;
}
.top2-item>span{
	color: #666;
}
.top2-list{
	display: block !important;
	width: 371px;
}
.top2-list-box{
	width: 780px;
	display: flex;
	justify-content: space-between;
}

@media screen and (max-width: 768px) {
	.nav-con {
		padding-bottom: 10px;
	}
	.nav-ads{
		width: 100%;
	}
	.nav-ads>a{
		width: 100%;
	}
	.nav-seach-con,.nav-seach{
		width: 100%;
		background-position:right center
	}
	.top{
		justify-content: center;
	}
	.top1,.top3{
		display: none;
	}
	.top2,.news-list{
		width: 100%;
	}
	.news-title,.top2-titles{
		font-size: 18px;
	}
}