
@media screen and (max-width:1180px){
	.productList {
		width: 100%;
		text-align: center;
	}
	.productList li:nth-child(2n+1) {
		margin-left: 0;
	}
	.productList li {
		width: 48%;
		display: inline-block;
		box-sizing: border-box;
		min-height: 185px;
	}
}

@media screen and (max-width:666px){
	.productList {
		width: 100%;
		text-align: center;
	}
	.productList li:nth-child(2n+1) {
		margin-left: 0;
	}
	.productList li {
		width: 48%;
		display: inline-block;
		box-sizing: border-box;
		min-height: 185px;
	}
}

.price {
    color: #000;
    font-family: roboto, noto sans kr;
    display: block;
    margin-top: 5px;
    width: 100%;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
}