.l_photo_list{
	display:-webkit-box;
	display:-webkit-flex;
	display:-ms-flexbox;
	display:flex;
	-webkit-flex-wrap:wrap;
		-ms-flex-wrap:wrap;
			flex-wrap:wrap;
	-webkit-box-pack:justify;
	-webkit-justify-content:space-between;
		-ms-flex-pack:justify;
			justify-content:space-between;
	margin-top: 30px;
}

.l_photo_list img{
	width:100%;
	height: auto;
}

.l_photo_list .item{
	width:-webkit-calc(50% - 10px);
	width:calc(50% - 10px);
	margin-bottom:20px;
	overflow:hidden;
}

.l_photo_list .item .photo{
	width:100%;
	height: 350px;
	-webkit-background-size:cover;
			background-size:cover;
	background-position:center;
	margin-bottom:5px;
}

.l_photo_list .item .title{
	font-style:italic;
	color: rgb(102, 102, 102);
	font-size:14px;
	text-align:left;
}

@media(max-width:991px){
	.l_photo_list .item .photo{
		height: 200px;
	}
}

@media(max-width:460px){
	.l_photo_list .item{
		width:100%;
	}

	.l_photo_list .item .photo{
		height: 300px;
	}
}