/** 瀑布流效果 **/

/*pinterest*/
.entry-content{
    overflow: hidden;
}
/** 荣誉认证图片 **/
.pinterestUl-about li{
	width:-webkit-calc(20% - 20px);
	width:calc(20% - 20px);	padding:0;
	margin:0;
	list-style: none;
	float:left;
	overflow: hidden;
	border: 1px solid #fff;
	box-shadow: 0 2px 1px rgba(100, 100, 100, 0.3);
	z-index:1;
	-webkit-transition: top 0.2s ease-out, left 0.2s ease-out, 
		box-shadow 0.2s ease-out, border 0.2s ease-out;
	transition: top 0.2s ease-out, left 0.2s ease-out, 
		box-shadow 0.2s ease-out, border 0.2s ease-out;
	margin-left: 16px;
	margin-bottom: 10px;
	text-align: center;
	color:#666;
}

.pinterestUl-about li:hover{
	border: 1px solid #21759B;
	background-color: #fafafa;
	box-shadow: 0 2px 6px rgba(33, 117, 155, 0.5);
}
.pinterestUl-about li div {
	padding: 10px;
	font-size: 14px;
	height: 60px;
    display: flex;
    align-content: center;
    align-items: center;
    justify-content: center;
}
.pinterestUl-about li img {
	max-width: 100%;
	height: 150px;
	display: inline-block;
}

/** 形象展示图片 **/
.pinterestUl-figure li{
	width:-webkit-calc(20% - 20px);
	width:calc(20% - 20px);	padding:0;
	margin:0;
	list-style: none;
	float:left;
	overflow: hidden;
	border: 1px solid #fff;
	box-shadow: 0 2px 1px rgba(100, 100, 100, 0.3);
	z-index:1;
	-webkit-transition: top 0.2s ease-out, left 0.2s ease-out, 
		box-shadow 0.2s ease-out, border 0.2s ease-out;
	transition: top 0.2s ease-out, left 0.2s ease-out, 
		box-shadow 0.2s ease-out, border 0.2s ease-out;
	margin-left: 16px;
	margin-bottom: 10px;
	text-align: center;
	color:#666;
}

.pinterestUl-figure li:hover{
	border: 1px solid #21759B;
	background-color: #fafafa;
	box-shadow: 0 2px 6px rgba(33, 117, 155, 0.5);
}
.pinterestUl-figure li div {
	padding: 10px;
	font-size: 14px;
	height: 50px;
    display: flex;
    align-content: center;
    align-items: center;
    justify-content: center;
}
.pinterestUl-figure li img {
	max-width: 100%;
	height: 120px;
	display: inline-block;
}

@media screen and (max-width: 779px){
	.entry-content {
		min-height: auto;
		overflow: initial; 
	}
	.entry-content .pinterestUl{
		position: static;
	}
	#staff-change-box {
		display: none;
	}
	.pinterestUl .pinterestLi {
		width: -webkit-calc(49.5% - 20px);
		width: calc(49.5% - 20px);
	}
}
@media screen and (max-width: 580px){
	.pinterestUl .pinterestLi {
		width: auto;
	}
	.pinterestUl-about .pinterestLi-about {
		width: auto;
	}
}
@media screen and (max-width: 400px){
	.pinterestUl .pinterestLi{
		margin: 0 auto;
		width: 100%;
	}
	.pinterestUl-about .pinterestLi-about{
		margin: 0 auto;
		width: 100%;
	}
	.pinterestUl-about .pinterestLi-about img {
	width:95%;
	display: block;
	margin: 0 auto;
}