.banner{
	width: 100%;
	min-width: 1230px;
	height: 300px;
	background:url(../../img/banner/banner-blog-2.jpg);
	background-size: cover;
	background-position: center 0;
	position: relative;
}
.banner::before{
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 0;
	background-color: rgba(0, 0, 0, 0.5);
}
.banner h1{
	color: #fff;
	position: absolute;
	z-index: 2;
	transform: translate(-50%,-50%);
	width: 1200px;
	left: 50%;
	top: 50%;
	text-align: center;
	font-size: 55px;
	font-weight: bold;
}
.list{
	background-color: #fff;
	padding-top: 30px;
	padding-bottom: 60px;
}
.list .container{
	width: 1000px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
}
.list .all{
	width: 600px;
}
.list .side{
	width: 360px;
}
.all .blog{
	margin-top: 30px;
	border-bottom: 1px solid #e9e9e9;
    padding-bottom: 30px;
}
.all .blog:first-of-type{
	margin-top: 0;
}
.blog .tit{
	font-size: 28px;
	font-weight: bold;
	color: #000;
	line-height: 1.3;
	margin-bottom: 8px;
}
.blog .tit a{
	color: inherit;
}
.blog .tit a:hover{
	color: #dd1215;
}
.blog .meta{
	display: flex;
	justify-content: space-between;
	font-size: 15px;
	color: #555;
	line-height: 1.5;
	align-items: center;
	margin-bottom: 10px;
}
.blog .pic{
	height: 400px;
}
.blog .pic a{
	width: 100%;
	height: 100%;
	display: block;
}
.blog .pic a img{
	width: 100%;
    height: 100%;
    object-fit: cover;
}
.blog .con .desc{
	line-height: 1.8;
	font-size: 16px;
	color: #222222;
	margin: 15px 0;
}
.blog .con .read a{
	display: inline-block;
	min-width: 80px;
	line-height: 1.5;
	color: #fff;
	font-weight: bold;
	font-size: 16px;
	padding: 10px 20px;
	background-color: #000;
}
.blog .con .read a:hover{
	background-color: #dd1215;
}
/*边栏*/
.side .wrapper{
	padding: 20px;
	border: 1px solid rgba(0, 0, 0, .15);
	margin-bottom: 20px;
}
.side .wrapper:last-of-type{
	margin-bottom: 0;
}
.side .wrapper .w-tit{
	font-size: 18px;
	color: #000;
	font-weight: bold;
	line-height: 1.8;
}
.side .wrapper .w-con{
	margin-top: 15px;
}
.recent .tiny{
	padding-bottom: 15px;
	border-bottom: 1px solid #f0f0f0;
	margin-bottom: 15px;
	display: flex;
}
.recent .tiny .pic{
	width: 80px;
	height: 80px;
	margin-right: 15px;
}
.recent .tiny .pic a{
	width: 100%;
	height: 100%;
	display: block;
}
.recent .tiny .pic a img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.recent .tiny:last-of-type{
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}
.recent .tiny .con{
	width: calc(100% - 95px);
}
.recent .tiny .con .tit{
	font-size: 16px;
	color: #000;
	line-height: 1.5;
	overflow:hidden;
	text-overflow:ellipsis;
	display:-webkit-box;
	-webkit-box-orient:vertical;
	-webkit-line-clamp:2;
}
.recent .tiny .con .tit a{
	color: inherit;
	font-size: inherit;
}
.recent .tiny .con .tit a:hover{
	color: #dd1215;
}
.recent .tiny .con .date{
	color: #555;
	font-size: 14px;
	line-height: 1.3;
	margin-top: 10px;
}
/*分页*/
.paginations span,
.paginations a{
	display: inline-block;
    font-size: 16px;
    padding: 0 10px;
    height: 32px;
    line-height: 32px;
    margin: 0;
    margin-right: 8px;
    border: 1px solid rgba(0,0,0,0.15);
    box-sizing: content-box;
    color: #000;
    background: #fff;
/*    border-radius: 5px;*/
}
.paginations .page-numbers.current {
    background: #dd1215;
    color: #fff;
    border-color: #dd1215;
}
.paginations span.inactive, 
.paginations span.dots {
    cursor: auto;
    color: #999;
}
.paginations{
	margin-top: 20px;
}
.paginations .next{
	margin-right: 0;
}
.paginations .pagination-wrap{
	text-align: left;
	font-size: 0;
}
.paginations a:hover,
.paginations a:focus, 
.paginations a.active{
    background-color: #af0003;
    border: 1px solid #af0003;
    opacity: 0.9;
    color: #fff;
}