
.product li {
    float: left;
    width: 234px;
    height: 260px;
    padding: 20px 0 20px;
    z-index: 1;
    margin-left: 14px;
    margin-bottom: 14px;
    background: #fff;
    -webkit-transition: all .2s linear;
    transition: all .2s linear;
    position: relative;
    background-color: #f5f5f5;
}
 
.pro-img {
    width: 180px;
    height: 180px;
    margin: 0 auto 14px;
}
 
.pro-img a {
    width: 100%;
    height: 100%;
}
 
.pro-img img {
    display: block;
    width: 100%;
    height: 100%;
}
 
.product li h3 {
    margin: 0 10px;
    font-size: 14px;
    font-weight: 400;
    text-align: center;
}
 
.product li h3 a {
    color: #333;
}
 
.desc {
    margin: 0 10px 10px;
    height: 18px;
    font-size: 12px;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    color: #b0b0b0;
}
 
.price {
    font-size: 14px;
    margin: 0 10px 10px;
    text-align: center;
    color: #ff6700;
}
 
.price del {
    color: #b0b0b0;
}
 
.review {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 3;
    width: 234px;
    height: 0;
    overflow: hidden;
    font-size: 12px;
    background: #f19728;
    opacity: 0;
    -webkit-transition: all .2s linear;
    transition: all .2s linear;
}
 
.review a {
    color: #757575;
    display: block;
    padding: 8px 30px;
    outline: 0;
}
 
.review a span {
    display: block;
    margin-bottom: 5px;
    color: #fff;
}
 
.product li:hover {
    -webkit-box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    -webkit-transform: translate3d(0, -2px, 0);
    transform: translate3d(0, -2px, 0);
}
 
.product li:hover .review {
    opacity: 1;
    height: 62px;
}