body{
	margin: 0;
	padding: 0;
}
li{
	list-style: none;
}
a{
	text-decoration: none;
}

body{
	background-color: #f2f2f2;
}
.header{
	background-color: #fff;
	padding: 40px 0;
}
.header ul{
	display: flex;
	margin: auto;
	width: 1300px;
	padding: 0;
}
.header ul li{
	font-size: 18px;
	font-weight: bold;
	margin: 10px;
	padding: 20px 62px;
	background-color: #f9fafb;
	text-align: center;
	border-radius: 4px;
}
.header ul li:hover{
	background-color: #0f5bff;
}
.header ul li i{
	color: #0f5bff;
	font-size: 30px;
}
.header ul li p{
	margin: 0;
	padding: 0;
	color: #333;
	padding-top: 5px;
}
.header ul li:hover i{
	color: #fff;
}
.header ul li:hover p{
	color: #fff;
}
.header ul li a{
	display: block;
}

.goods{
	width: 1300px;
	margin: auto;
}
.goods ul{
	display: flex;
	flex-wrap: wrap;
	padding: 0;
}
.goods ul li{
	position: relative;
	top: 0;
	display: flex;
	width: 48%;
	height: 200px;
	margin: 1%;
	border-radius: 5px;
	padding: 15px;
	box-sizing: border-box;
	background-color: #fff;
	transition: all .3s;
}
.goods ul li:hover{
	top: -3px;
	box-shadow: 0 0 30px #ddd;
}
.tqg-img{
	width: 170px;
	height: 170px;
	border-radius: 5px;
	overflow: hidden;
}
.tqg-img:hover img{
	transform: scale(1.1);
}
.tqg-img img{
	display: block;
	width: 170px;
	height: 170px;
	border-radius: 5px;
	transition: all .3s;
}
.tqg-info{
	margin-left: 15px;
	flex: 1;
	font-family: Arial;
}
.tqg-info h4{
	margin: 0;
	font-size: 17px;
	line-height: 26px;
	height: 52px;
	overflow: hidden;
	padding-top: 5px;
}
.tqg-info a{
	color: #333;
	text-decoration: none;
}
.tqg-info a:hover{
	color: #e1251b;
}
	
.tqg-ps{
	display: flex;
	padding-top: 15px;
}
.tqg-quan,.tqg-quan2,.tqg-quan3{
	position: relative;
	color: #e1251b;
	font-size: 12px;
	border: 1px solid #e1251b;
	margin-right: 10px;
	padding: 0px 5px;
	line-height: 20px;
	border-radius: 3px;
}
.tqg-quan3{
	background-color: #fe0137;
	color: #fff;
	border-color: #fe0137;
}
.tqg-quan{
	padding-left: 32px;
}
.tqg-quan span{
	position: absolute;
	background-color: #e1251b;
	color: #fff;
	height: 20px;
	line-height: 20px;
	width: 24px;
	text-align: center;
	top: 0;
	left: 0;
}
.tqg-num{
	display: flex;
	padding-top: 25px;
	font-size: 13px;
	color: #e1251b;
}
.tqg-num span{
	font-size: 28px;
	line-height: 10px;
}
.tqg-price{
	font-size: 13px;
	color: #999;
	text-decoration: line-through;
	padding-left: 10px;
}
.tqg-des{
	color: #0f5bff;
	font-size: 13px;
	padding-top: 5px;
}
.tqg-no{
	position: absolute;
	right: 0;
	bottom: 20px;
	background-color: #f2f2f2;
	border-radius: 25px 0 0 25px;
	font-size: 30px;
	font-family: Impact;
	padding: 5px 20px;
	color: #999;
}
.goods li:hover .tqg-no{
	background-color: #e1251b;
	color: #fff;
}