body, html { font-size: 100%; 	padding: 0; margin: 0;}

/* Reset */
*,
*:after,
*:before {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

/* Clearfix hack by Nicolas Gallagher: http://nicolasgallagher.com/micro-clearfix-hack/ */
.clearfix:before,
.clearfix:after {
	content: " ";
	display: table;
}

.clearfix:after {
	clear: both;
}

body{
	color: #D5D6E2;
	font-weight: 500;
	font-size: 1.05em;
	font-family: "Microsoft YaHei","Segoe UI", "Lucida Grande", Helvetica, Arial,sans-serif;
}
.demo{padding: 2em 0}
	.product-grid{
		font-family: 'Roboto', sans-serif;
		position: relative;
	}
	.product-grid .product-image{
		overflow: hidden;
		position: relative;
	}
	.product-grid .product-image:before{
		content: "";
		background: rgba(0,0,0,0.3);
		width: 100%;
		height: 100%;
		opacity: 0;
		position: absolute;
		top: 0;
		left: 0;
		z-index: 1;
		transition: all 0.4s ease-out 0s;
	}
	.product-grid:hover .product-image:before{ opacity: 1; }
	.product-grid .product-image a{ display: block; }
	.product-grid .product-image img{
		width: 100%;
		height: auto;
	}
	.product-image .pic-1{
		opacity: 1;
		backface-visibility: hidden;
		transition: all 0.4s ease-out 0s;
	}
	.product-grid:hover .product-image .pic-1{ opacity: 0; }
	.product-image .pic-2{
		width: 100%;
		height: 100%;
		opacity: 0;
		backface-visibility: hidden;
		transform: scale(3);
		position: absolute;
		top: 0;
		left: 0;
		transition: all 0.4s ease-out 0s;
	}
	.product-grid:hover .product-image .pic-2 {
		opacity: 1;
		transform: scale(1);
	}
	.product-image .product-trend-label,
	.product-image .product-discount-label{
		content: "";
		color: #fff;
		font-size: 24px;
		line-height: 40px;
		font-weight: 700;
		text-align: center;
		padding: 0 7px;
		position: absolute;
		top: 30px;
		left: 12px;
		z-index: 3;
	}
	.product-image .product-discount-label{
		left: auto;
		right: 6px;
	}
	.product-grid .social {
		padding: 0;
		margin: 0;
		list-style: none;
		transform: translateY(-50%);
		position: absolute;
		top: 50%;
		left: 35%;
		z-index: 4;
	}
	.product-grid .social li {
		margin: 0 0 12px;
		opacity: 0;
		transform: translateX(-60px);
		transition: transform .3s ease-out 0s;
	}
	.popup {
    border-radius: 85px;
    height: 85px;
    width: 85px;
    background: #5aae3e;
    line-height: 85px;
    color: #fff;
    font-size: 24px;
   }
	.product-grid:hover .social li {
		opacity: 1;
		transform: translateX(0);
	}
	.product-grid:hover .social li:nth-child(2){ transition-delay: 0.1s; }
	.product-grid:hover .social li:nth-child(3){ transition-delay: 0.2s; }
	.product-grid:hover .social li:nth-child(4){ transition-delay: 0.3s; }
	.product-grid .social li a {
		color: #fff;
		font-size: 22px;
		transition: all 0.3s;
	}
	.product-grid .social li a:hover { color: #e74c3c;; }
	.product-grid .social li a:before,
	 .product-grid .social li a:after{
		content: attr(data-tip);
		color: #000;
		background: #fff;
		font-size: 14px;
		padding: 5px 10px;
		white-space: nowrap;
		display: none;
		transform: translateY(-50%);
		position: absolute;
		left: 33px;
		top: 50%;
		transition: all 0.3s;
	}
	.product-grid .social li a:after{
		content: '';
		background: linear-gradient(-45deg, #fff 49%, transparent 50%);
		width: 10px;
		height: 10px;
		top: 40%;
		left: 20px;
	}
	.product-grid .social li a:hover:before,
	.product-grid .social li a:hover:after{
		  display: block;
	}
	.product-grid .product-content{ padding: 12px 0; }
	.product-grid .title{
		font-size: 15px;
		font-weight: 400;
		text-transform: capitalize;
		margin: 0 0 5px;
	}
	.product-grid .title a{ color: #959595; }
	.product-grid .title a:hover{ color: #e74c3c;; }
	.product-grid .price{
		color: #333;
		font-size: 14px;
		font-weight: 400;
	}
	.product-grid .price span{
		color: #333;
		text-decoration: line-through;
		margin-right: 3px;
	}
	.product-grid .price.discount{ color: #e74c3c;; }
	@media only screen and (max-width:990px){
		.product-grid{ margin-bottom: 30px; }
	}