/* 轮播 */

.carousel {
	width: 100%;
	height: 300px;
	overflow: hidden;
}

.carousel img {
	width: 100%;
	height: 100%;
	
}

/* 导航 */

.navigate {
	background: #ffffff;
	border-bottom: 1px solid #dcdcdc;
}

.navigate .center {
	width: 1200px;
	height: 60px;
	margin: 0 auto;
	font-size: 14px;
	color: #333333;
	display: flex;
	align-items: center;
}

.navigate .center img {
	margin-right: 6px;
}

.navigate .center a {
	color: #333333;
}

.navigate .center span {
	margin: 0 6px;
}

/* 产品展示 */

.product {
	background: #ffffff;
}

.product .center {
	width: 1200px;
	margin: 0 auto;
	padding: 50px 0 96px 0;
}

.product .center .upper {
	position: relative;
	text-align: center;
	padding-bottom: 18px;
	color: #333333;
	font-size: 24px;
	font-weight: bold;
	margin-bottom: 44px;
}

.product .center .upper::after {
	content: '';
	width: 40px;
	height: 2px;
	background: #134b9f;
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translateX(-50%);
}

.product .center .centre {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 68px;
}

.product .center .centre li {
	position: relative;
	cursor: pointer;
	margin-top: 53px;
	width: 577px;
}

.product .center .centre li:nth-child(1) {
	margin-top: 0;
}

.product .center .centre li:nth-child(2) {
	margin-top: 0;
}

.product .center .centre li .img {
	width: 100%;
	height: 300px;
	object-fit: cover;
	display: block;
}

.product .center .centre li .rubric {
	display: flex;
	align-items: center;
	padding: 18px 46px;
	background: #3e99df;
}

.product .center .centre li .rubric b {
	color: #ffffff;
	font-size: 30px;
	margin-right: 66px;
	line-height: 40px;
	max-width: 100%;
	flex: 0 0 auto;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.product .center .centre li .rubric span {
	color: #ffffff;
	font-size: 22px;
	line-height: 29px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	min-width: 24%;
}

.product .center .centre li .details {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	background: rgba(0, 0, 0, 0.6);
	transform: scale(0);
	transition: transform 0.3s;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.product .center .centre li:hover .details {
	transform: scale(1, 1);
}

.product .center .centre li .details img {
	margin-bottom: 40px;
}

.product .center .centre li .details p {
	width: 460px;
	text-align: center;
	line-height: 20px;
	font-size: 16px;
	color: #ffffff;
}

.product .center .below {}<!--0.00016403198242188-->