/*
 * iweb23-style011
 *
 * Copyright 2016, TANK
 * 
 * 
 * 2016 / 06 / 01
 */


/* + products
*----------------------------------------------------------------------------*/
#products {
	margin: 30px 0;
}

#products ,
#products ul {
	overflow: hidden;
}

#products ul li {
	overflow: hidden;
	position: relative;
	margin: 10px 0;
	margin-right: 2%;
	float: left;
	width: 31%;
}

#products ul li .info {
	position: absolute;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.7);
	top: -1000px;
	z-index: 10;
	transition: all 0.4s ease-in-out 0s;
}

#products ul li:hover .info {
	top: 0;
}

#products ul li:hover .info a {
	position: absolute;
	width: 100%;
	display: block;
	top: 45%;
}

#products ul li:hover .info a h4 ,
#products ul li:hover .info a p {
	text-align: center;
	color: #e71a1f;
}

#products ul li:hover .info a p {
	overflow: hidden;
	height: 23px;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;	
	color: #b7b7b7;
}


/************ = 適應性 = ************/
/* +width:480 ↓
*----------------------------------------------------------------------------*/
@media screen and (max-width: 480px) {
	#products ul li {
		width: 48%;
	}
}


/* +width:450 ↓
*----------------------------------------------------------------------------*/
@media screen and (max-width: 450px) {
	#products ul li {
		margin-right: 0;
		width: 100%;
	}
}
