
/*业务系统 底部三张图，max-width:1920通栏，3张平分*/
.detail_module_2 {
	max-width:1920px;
	padding-top: 25px;
	padding-bottom: 50px;
	margin: 0 auto;
}
.detail_module_2 .h3_title { font-size: 24px; line-height: 60px; font-family:'微软雅黑'; text-align: center; }
.detail_module_2 .con_p { font-size: 15px; line-height: 30px; margin-top: 5px; text-align: center; }
.detail_module_2 .item_box {
	display: flex;
	flex-wrap: wrap;
	justify-content: stretch; /*图片撑满容器*/
	margin-top: 55px;
	gap:5px; /*图片之间间隙5px*/
}
.detail_module_2 .item_box .item {
	position: relative;
	width: calc( (100% - 10px) / 3 ); /*3张图片平分，减去2个5px间隙*/
	padding-top: 21%; /*你可以根据图片实际比例调整这个百分比，控制图片高度*/
}
.detail_module_2 .item_box .item img {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	width:100%;
	height:100%;
	object-fit:cover; /*图片铺满盒子不变形裁切*/
}

@media screen and (max-width: 768px){
	.detail_module_2 { padding-top: 10px; padding-bottom: 25px; }
	.detail_module_2 .h3_title { font-size: 20px; line-height: 27px; }
	.detail_module_2 .con_p { line-height: 21px; margin-top: 15px; }
	.detail_module_2 .item_box { margin-top: 25px; }
	.detail_module_2 .item_box .item {
		width:100%;
		padding-top: 52.16%;
		margin-bottom:15px;
	}
}
