.picL{
	display: flex;
	flex-wrap: wrap;
/*	flex-direction: row-reverse;*/
	margin: 50px 0 0;
}
.picL li{
	width: calc((100%/6) - 10px);
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
/*	justify-content: center;*/
	align-items: center;
	margin: 0 5px 50px;
}
.picL li > .thumb{
	width: 250px;
	height: 300px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #F9F9F9;
/*	border-radius: 50%;*/
/*	background: #fff;*/
/*	border: 1px solid #f2f2f2;*/
	transform: scale(1);
	transition: all 0.3s ;
}
.picL li:hover > .thumb{
	background: #fff;
	box-shadow: 0 0 30px rgba(354,79,90,0.15);
	transform: scale(1.05);
	transition: all 0.3s ;
}
.picL li img{
	mix-blend-mode: darken;
}
.picL li .text{
	text-align: center;
	margin: 30px 0 15px;
}
.picL li .text .title{
	font-size: 1.2em;
	line-height: 1.3em;
    max-height: 2.6em;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.picL li .text .code{
	font-size: 1em;
	opacity: 0.7;
	margin: 5px 0;
}
.picL li .text .price{
	font-size: 1.2em;
}
.nopost{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	min-height: 200px;
	color: #999;
	font-size: 1.1em;
	margin: 0 0 50px;
}


@media(max-width:1850px){
	.picL li{
		width: calc((100%/6) - 10px);
	}
}
@media(max-width:1600px){
	.picL li{
		width: calc((100%/5) - 10px);
	}
}
@media(max-width:1350px){
	.picL li{
		width: calc((100%/4) - 10px);
	}
}
@media(max-width:1080px){
	.picL li{
		width: calc((100%/3) - 10px);
	}
}
@media(max-width:820px){
	.picL li{
		width: calc((100%/2) - 10px);
	}
}
@media(max-width:768px){
	.picL{
		margin: 30px 0 0;
	}
	.picL li > .thumb{
		width: 100%;
		height: 170px;
		padding: 15px;
	}
	.picL li img{
		width: 100%;
		height: 100%;
		object-fit: contain
	}
}