body{background: rgba(226, 229, 234, 0.3);}
@media (min-width: 992px){
	.container{
		max-width: 900px;
		padding-left: 0;
		padding-right: 0;
	}
}
@media (min-width: 1200px){
	.container{
		max-width: 1170px;
		padding-left: 0;
		padding-right: 0;
	}
}
.posts-view{
	width: 100%;
	background: #FFFFFF;
	padding: 50px;
	box-sizing: border-box;
}
.posts-view .posts-title{
	font-weight: bold;
	font-size: 32px;
	color: #2A81EF;
	line-height: 48px;
}
.posts-view .posts-date{
	font-size: 18px;
	color: #333333;
	line-height: 18px;
	margin-top: 14px;
	margin-bottom: 0;
}
.posts-view .posts-info{
	position: relative;
	margin-top: 28px;
	min-height: 250px;
}
.posts-view .posts-info img{
	 max-width: 100%;
	 margin: 16px 0;
}
.posts-view .posts-info section,.posts-view .posts-info p,.posts-view .posts-info span{
	 font-size: 18px!important;
	 color: #808080!important;
	 line-height: 30px!important;
	 font-family: "PuHuiTi"!important;
}
.posts-view .posts-info p{
	/*margin-bottom: 0;*/
}
.posts-view .posts-info p:empty{display: none;}
.posts-list{
	
}
.posts-list ul{
	list-style: none;
    margin: 0;
    padding: 0;	
}
.posts-list li{
    display: flex;
    align-items: center;
	height: 70px;
	background: #FFFFFF;	
	margin-bottom: 10px;
}
.posts-list li a{
	line-height: 20px;	
	font-size: 16px;
	color: #333333;	
	padding: 0 16px;
	box-sizing: border-box;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;		
}
.posts-list li a:hover{color: #2A81EF;}
.case-list ul{
	list-style: none;
    margin: 0;
    padding: 0;	
}
.case-list li{
	margin-bottom: 24px;
}
.case-list li .case-title{
	font-size: 16px;
	color: #333333;
	line-height: 1;
    padding: 14px 16px 0;
	margin-bottom: 0;
	overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;	
}
.case-list li .case-sub-title{
	font-size: 12px;
	color: #333333;
	line-height: 1;	
    padding: 0 16px 14px;
	margin-bottom: 0;
	margin-top: 10px;
	overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;	
}
.case-list li a{
    display: flex;
    flex-direction: column;
	background: #FFFFFF;
}
.case-list li .case-img{
	width: 100%;
	height: 180px;
	object-fit: cover;
}
.case-list li:hover .case-title{
	color: #2A81EF;
}    
.case-list li:hover .case-sub-title{
	color: #2A81EF;
}
@media (max-width: 990px) {
	.posts-view{
		padding: 20px;
	}	
	.posts-view .posts-title{
		font-size: 28px;
		line-height: 36px;
	}	
	.posts-list{
		margin-top: 24px;
	}
	.case-list{
		margin-top: 24px;
	}	
}
.toggle-page{
	display: flex;
    align-items: center;
    justify-content: space-between;
	margin-top: 28px;
}
.toggle-page .toggle-item{
	position: relative;
	width: 80px;
	height: 28px;
	line-height: 28px;
	border-radius: 14px;
	font-size: 14px;
	color: #27CDAF;
	text-align: center;	
}
.toggle-page .toggle-item label{
	position: relative;
}
.toggle-page .toggle-item::after{
	content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 14px;
    left: 0;
	border: 1px solid #27CDAF;
	transition: all 0.3s ease-in-out 0s;	
}
.toggle-page .toggle-item::before{
	content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 14px;
    left: 0;
    transform: scale(0);
	transition: all 0.3s ease-in-out 0s;	
}
.toggle-page .toggle-item:hover{
  color: #fff;
}
.toggle-page .toggle-item:hover::before{
    transform: scale(1);	
	background: #2A81EF;
	border: 1px solid #2A81EF;
}
.toggle-page .toggle-item:hover::after{
    transform: scale(0);	
}