.banner-box {
	width: 100%;
	height: 600px;
	display: flex;
	justify-content: center;
	overflow: hidden;
	position: relative;
	margin-bottom: 84px;
}

.banner-img-box {
	width: 100%;
	/* 或者具体的像素值 */
	height: 600px;
	/* 初始高度设为0 */
	background-image: url('../imgs2/index_PIC5.png');
	background-position: center;
	background-size: cover;
	/* 覆盖整个盒子 */
	/* 图片居中 */
	background-repeat: no-repeat;
	position: absolute;
	top: 0;
	left: 0;
}

.main-title {
	margin-bottom: 58px;
	display: flex;
	align-items: center;
	flex-direction: column;
}

.title-Eg {
	font-family: 'Arial Narrow', Arial, sans-serif;
	font-weight: bold;
	font-size: 36px;
	color: #573436;
	letter-spacing: 1px;
}

.title-CN {
	font-weight: 400;
	font-size: 28px;
	letter-spacing: 1px;
}

.case-list {
	display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
	width: 100%;
}
.case-item {
	display: flex;
	align-items: center;
	flex-direction: column;
	margin-bottom: 65px;
	color: #000 !important;
}

.case-item:hover{
	color: #000 !important;
}

.case-img-box {
	width: 340px;
	height: 454px;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
	margin-bottom: 20px;
}

.case-img-box:hover .case-img {
	transform: scale(1.2);
}

.case-img {
	transition: transform ease 0.5s;
	height: 454px;
	width: auto;
}

.case-name {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.case-name .p1 {
	font-size: 20px;
	font-weight: bold;
}

.case-name .p2 {
	font-size: 20px;
	font-weight: 400;
}

.mg-b{
	margin-bottom: 150px;
}

@media screen and (max-width:1200px) {
	.banner-box,
	.banner-img-box {
		height: 500px;
	}

	.marginleft {
		margin: 0;
	}
	.case-img-box {
		width: 300px;
		height: 400px;
	}
}

@media screen and (max-width:991px) {
	
}

@media screen and (max-width:767px) {
	.banner-box,
	.banner-img-box {
		height: 350px;
	}
	.case-img-box {
		width: 210px;
		height: 280px;
	}
}

@media screen and (max-width:576px) {
	.banner-box {
		height: 275px;
		margin-bottom: 22.5px;
	}
	
	.banner-img-box {
		height: 275px;
		background-image: url('../imgs2/index_PIC6.png');
	}
	
	.main-title{
		margin-bottom: 18px;
	}
	
	.title-Eg{
		font-size: 18px;
	}
	
	.title-CN{
		font-size: 14px;
	}
	
	.no-mg-pd{
		margin: 0;
		padding: 0 20px;
		width: 100%;
	}
	
	.case-list{
		padding: 0 10px;
	}
	.case-item{
		margin-bottom: 20px;
		padding: 0 10px;
	}
	
	.case-img-box {
		width: 100%;
		height: 122px;
		margin-bottom: 15px;
	}
	
	.case-img {
		height: auto;
		width: 100%;
	}
	
	.case-name .p1{
		font-size: 14px;
	}
	
	.case-name .p2{
		font-size: 12px;
	}
	
	.mg-b{
		margin-bottom: 60px;
	}
	
}