.banner{
	position: relative;
}
.banner h4{
	position: absolute;
	top: 0;
	left: 0;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	
	color: #fff;
	font-size:2rem;
	font-weight: bold;
}
.main-wrapper{
	width: 100%;
	background: #f2f2f2;
}
.main{
	width: 100%;
	max-width: 1220px;
	margin: 0 auto;
	background: #f2f2f2;
	box-sizing: border-box;
	padding:1rem 1rem 5rem 1rem;
	display: flex;
	justify-content: space-between;
}
.main .left{
	max-width: 750px;
}
.main .left h4{
	font-size: 1.09rem;
	color: #666;
}
.main .left ul li{
	margin:1rem 0;
}
.main .left ul li a{
	display: block;
	overflow: hidden;
}
.main .left ul li a:hover img{
	transform: scale(1.1);
}
.main .left ul li a img{
	transition: all .5s;
}
.main .left ul li:hover{
	color: #00A7E1;
}


.main .left ul li h5{
	font-size: 16px;
	color: #666;
	line-height: 2rem;
	display: flex;
	align-items: center;
}
.main .left ul li h5 span{
	margin-right: 0.5rem;
}
.main .left ul li h5 span:hover{
	color: #00A7E1;
	cursor: pointer;
}

.main .left ul li p{
	display: flex;
	align-items: center;
}
.main .left ul li p span{
	display: flex;
	align-items: center;
	font-size: 12px;
	color: #666;
	margin-right:0.5rem;
}
.main .left ul li p span i b{
	font-weight: normal;
}
.main .left ul li p span img{
	margin-right: 0.5rem;
	width: auto;
}
.main .left ul li h6{
	font-size: 12px;
	color: #666;
	line-height: 15px;
	box-sizing: border-box;
	padding-top: 0.5rem;
	border-top:3px solid #666 ;
	margin-top: 0.5rem;
	overflow : hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp:3;
	-webkit-box-orient: vertical;
}

.main .left .page{
	display: flex;
	justify-content: center;
}
.main .left .page span{
	display: block;
	padding:0 8px;
	margin: 0 5px;
	color: #666;
}
.main .left .page span.active{
	color:#fff;
	background: #000;
}
.main .right{
	width: 350px;
	
}
.main .right .first{
	margin-bottom: 1rem;
}
.main .right .first .title{
	height: 50px;
	background: #cccccc;
	text-align: center;
	line-height: 50px;
	color: #666;
	font-size: 14px;
}
.main .right .first .center{
	height: 180px;
	background: #fff;
	box-sizing: border-box;
	padding: 1.5rem 1rem;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: flex-start;
}
.main .right .first .center img{
	width: auto;
}
.main .right .first .center p span{
	color: #666;
	font-size: 12px;
	margin-left: 10px;
}

.main .right .second .title{
	height: 50px;
	background: #cccccc;
	text-align: center;
	line-height: 50px;
	color: #666;
	font-size: 14px;
}
.main .right .second ul li{
	margin-bottom: 0.5rem;
}
.main .right .second ul li img{
	width: auto;
}
.main .right .second ul li a{
	display: block;
	height: 200px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background: #fff;
	box-sizing: border-box;
	padding: 1rem;
}
.main .right .second ul li a p{
	overflow : hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp:2;
	-webkit-box-orient: vertical;
	font-size: 14px;
	color: #666;
}
.main .right .third h4{
	font-size: 14px;
	color: #666;
	line-height: 2rem;
}
.main .right .third ul li{
	margin-bottom: 1rem;
}
.main .right .third ul li a{
	display: flex;
	justify-content: space-around;
}
.main .right .third ul li a .img{
	width: 50%;
	height:150px;
	background: #fff;
}
.main .right .third ul li a .word{
	width: 50%;
	height:150px;
	text-align: center;
	color: #666;
	font-size: 14px
}


.main .right .more h4{
	font-size:14px;
	color: #666;
	line-height: 1.5em;
}
.main .right .more p{
	font-size:14px;
	color: #666;
	line-height:1.5em;
	margin: 0.5rem 0;
}
.main .right .more .tell a{
	display: block;
	width: 150px;
	height: 40px;
	text-align: center;
	line-height: 40px;
	background: #bd3a00;
	color:#fff;
	font-size: 14px;
	
}


@media only screen and (max-width:1200px) {
	.main{
		flex-direction: column;
		align-items: center;
	}
	.main .right{
		width:750px;
		margin-top: 1rem;
	}
}

@media only screen and (max-width:768px){
	.main .left{
		width: 100%
	}
	.main .right{
		width: 100%
	}
	.main .right .first .center{
		padding: 3rem 1rem;
	}
}
@media only screen and (max-width:480px){
	.main .left ul li h5 span{
		width: 90%;
		overflow: hidden;
		text-overflow:ellipsis;
		white-space: nowrap;
	}
	.main .left ul li p{
		/*flex-direction: column;
		align-items: flex-start;*/
	}
	.main .left ul li p span i b{
		display: none;
	}
}
@media only screen and (max-width:375px){
	/*.main .left ul li p{
		flex-direction: column;
		align-items: flex-start;
	}*/
}


