

.product {
    display: inline;
    display: inline-block;
    width: 31%;
    margin: 1%;
    position: relative;
    box-shadow: 0 3px 5px #ccc;
    border-radius: 5px;
    vertical-align: top;
    cursor:pointer;
    transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

.product:after {
    content: "";
    background-size: 100% auto;
    width: 100%;
    height: 20px;
    bottom: -20px;
    position: absolute;
}

.img_box {
    text-align: center;
    background: #f3f3f3;
    height: 213px;
    line-height: 213px;
    overflow: hidden;
    
}

.product img {
    vertical-align: middle;
    max-width: 100%;
    max-height: 100%;
    
}

.product .type {
    display: block;
    padding: 10px;
    font-size: 20px;
    color: #00a0e9;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product .product_name {
    padding: 0 10px;
    margin-bottom: 20px;
    height: 38px;
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.product:hover {
    /* -webkit-transform: scale(1.2,1.2);
    -moz-transform: scale(1.2,1.2);
    transform: scale(1.2,1.2); */
    -webkit-transform: translate(0, -10px);
    -moz-transform: translate(0, -10px);
    transform: translate(0, -10px);
    box-shadow:3px 5px 10px #ccc
}
