
<!--image.css-->,
.product-grid{
            text-align: center ;
            overflow: hidden;
            position: relative;
        }
        .product-grid .product-image{
            overflow: hidden;
        }
        .product-grid .product-image img{
            width: 100%;
            height: auto;
        }
        .product-grid .product-content{
            padding: 12px 12px 15px 12px;
        }
        .product-grid:hover .product-content{
            opacity: 0;
        }
        .product-grid .title{
            font-size: 20px;
            font-weight: 600;
            margin: 0 0 10px;
        }
        .product-grid .title a{
            color: #000;
        }
        .product-grid .title a:hover{
            color: #2e86de;
        }
        .product-grid .price{
            font-size: 18px;
            font-weight: 600;
            color:#2e86de;
        }
        .product-grid .price span{
            color:#999;
            font-size: 15px;
            font-weight: 400;
            text-decoration: line-through;
            margin-left: 7px;
            display: inline-block;
        }
        .product-grid .social{
            background-color: #fff;
            width: 100%;
            padding: 0;
            margin: 0;
            list-style: none;
            opacity: 0;
            position: absolute;
            bottom: -50%;
        }
        .product-grid:hover .social{
            opacity: 1;
            bottom: 20px;
        }
        .product-grid .social li{
            display: inline-block;
        }
        .product-grid .social li a{
            color: #909090;
            font-size: 16px;
            line-height: 45px;
            text-align: center;
            height: 45px;
            width: 45px;
            margin: 0 7px;
            border: 1px solid #909090;
            border-radius: 50px;
            display: block;
            position: relative;
        }
        .product-grid .social li a:hover{
            color: #fff;
            background-color: #2e86de;
        }



