.section{
  height:430px;
}
.section .products
{
 clear:both;
 width:1000px;
 background:#FFFFFF;
}
.section .products ul li {
  float:left;
  width:170px;
  height:170px;
  margin:9px;
  border: 1px solid #E8E8E8;
  border-radius:10px;
  text-align:center;
  font-size:14px;
  font-weight:bold;
  color:#808080;
  box-shadow:3px 3px 3px #A8A8A8;
  transition: all 0.5s;
}
.section .products ul li:hover{
  transform:scale(1.2);
  background:#FFFFFF;
  border: 1px solid #D8D8D8;
}