h4 {
	margin: 0;
}

.col a {
	text-decoration: none;
	color: #1E98D7;
	font-size: 13px;
}

.img_top {
	width: 100%;
	position: relative;
}

.img_top img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.img_top .mobile_banner {
	display: none;
}

.top_text {
	top: 50%;
	left: 8%;
	transform: translateY(-50%);
	position: absolute;
}

.top_text strong {
	color: #fff !important;
	line-height: 55px;
}

.content {
	width: 100%;
	border: 0;
	overflow: hidden;
	background-size: 100% 100%;
	background-repeat: no-repeat;
	overflow: hidden;
}

.content_box {
	/* max-width: 1320px; */
	margin: 0 auto;
	padding: 0 0 60px;
}

.content_box .row .col strong {
	color: #fff !important;
}

.content_title {
	width: 100%;
	margin: 100px 0;

}

.content_title strong {
	color: #ffffff !important;
	text-align: center;
}

.img_box {
	width: 200px;
	height: 150px;
	margin: 0px auto 20px;
	overflow: hidden;
	cursor: pointer;
	border-radius: 5%;

}

.img_box:hover img {
	animation: zoomIn 1s forwards;
}

@keyframes zoomIn {
	0% {
		transform: scale(1);
	}

	100% {
		transform: scale(1.1);
	}
}

@media screen and (max-width: 768px) {
	.content_title {
		margin: 50px 0
	}
	.img_box {
		width: 100%;
	}
	.content_box {
		padding: 0 0 100px;
	}

	.top_text strong {
		line-height: 12px !important;
	}
  	.img_top .pc_banner {
		display: none;
	}
	.img_top .mobile_banner {
		display: block;
	}
}

@media screen and (max-width: 567px) {
	.img_box {
		width: 200px;
	}
}