body {
	background: #F1F1F1;
}

.content {
	width: 15.09rem;
	min-height: 100vh;
	margin: auto;
	background: #F1F1F1;
}

.content .head {
	padding: 0 26px;
	box-sizing: border-box;
}

.content .head h2 {
	color: #666666;
	font-size: 49px;
	font-weight: normal;
	margin-top: 0.79rem;
}

.content .head p {
	color: #666666;
	font-size: 14px;
	margin-top: 19px;
	padding-bottom: 0.84rem;
}

.content .product {
	overflow: hidden;
	background: #F1F1F1;
}

.content .product .offset {
	width: calc(100% + 0.3rem);
	display: flex;
	flex-wrap: wrap;
}

.content .product .item {
	font-size: 13px;
	margin-right: 0.3rem;
	margin-bottom: 0.3rem;
	overflow: hidden;
	display: block;
}

.content .product .odd {
	/*width: 3.6rem;*/
	width: 23.8%;
}

.content .product .event {
	/*width: 7.25rem;*/
	width: 46.4%;
}

.content .product .item .top {
	width: 100%;
	height: 3.6rem;
	overflow: hidden;
	cursor: pointer;
}

.content .product .item .top img {
	width: 100%;
	height: 100%;
	transition: all .4s;
}

.content .product .item .top img:hover {
	transform: scale(1.1);
}

.content .product .item .bottom {
	height: 100px;
	padding: 15px;
	box-sizing: border-box;
	background: #FFFFFF;
	overflow: hidden;
}

.content .product .item .bottom p {
	font-size: 13px;
	line-height: 20px;
}

@media only screen and (max-width: 1600px) {
	.content {
		width: 90%;
	}
	
	.content .product .odd {
		width: 24%;
	}
	
	.content .head {
		padding: 0;
	}
	
	.content .head h2 {
		font-size: 35px;
	}
}

@media only screen and (max-width: 1150px) {
	.content {
		width: 100%;
		padding: 0 20px;
		box-sizing: border-box;
	}
	
	.content .head h2 {
		margin-top: 20px;
	}
	
	.content .head p {
		font-size: 15px;
		line-height: 26px;
		padding-bottom: 20px;
	}
	
	.content .product .item .bottom {
		padding: 8px;
		overflow: hidden;
		height: 126px;
	}
	
	.content .product .item .bottom p {
		line-height: 22px;
	}
}