body {
	margin: 0;
	padding: 0;
}

.top-d {
	height: 120px;
	text-align: center;
}

.sub-title-d {
	color: #e3e3e3;
	font-size: 32px;
	margin-top: 100px;
	text-transform: uppercase;
}

.title-d {
	color: #99241b;
	font-size: 40px;
	position: relative;
	bottom: 49px;
	font-weight: bold;
}

.text-d {
	font-size: 17px;
	color: #999999;
	position: relative;
	bottom: 30px;
}

.container-d{
	display: flex;
	width: 1400px;
	margin: 0 auto;
	flex-wrap: wrap;
	}

.products {
	height: 390px;
	width: 322px;
	background-color: #f5f5f5;
	margin-right: 20px;
	margin-bottom: 24px;
	border: 3px #fff solid;
}

.products:hover {
	border: 3px red solid;
}

.image {
	width: 322px;
	height: 252px;
}

.font {
	text-align: center;
	margin: 0 auto;
}

.d {
	font-size: 20px;
	margin-bottom: 12px;
	margin-top: 21px;
}

.description-d {
	display: inline-block;
	width: 300px;
	font-size: 14px;
	color: #999999;
	line-height: 20px;
}

.red {
	color: #99241b;
	font-size: 14px;
}


/* 屏幕为1170的时候显示的内容大小 */
@media screen and (max-width: 1170px) {
    .top{
		height: 120px;
		text-align: center;
	}
	.products{
		width:350px !important;
	}
	.image{
		width: 350px !important;
	} 
 }
/* 屏幕为960的时候显示的内容大小*/
@media screen and (max-width: 992px) {
    .top{
		height: 120px;
		text-align: center;

	}
	.products{
		width:488px !important;
	}
	.image{
		width: 488px !important;
	}
	
}
/* 屏幕为780的时候显示的内容大小 */
@media screen and (max-width: 767px) {
    .top{
		height: 120px;
		text-align: center;
	}
	.products{
		width:760px !important;
	}
	.image{
		width: 760px !important;
	}
	.description-d{
		width: 375px !important;
	}
	.container-d{
			width: 100%;
			}
}
@media screen and (max-width: 375px) {
    .top{
		height: 120px;
		text-align: center;
	}
	.products{
		width:376px !important;
	}
	.image{
		width: 376px !important;
	}
	.container-d{
		display: flex;
		flex-direction: column;
		}
		.container-d{
			width: 100%;
			}
}