* {
	margin: 0;
	padding: 0;
	text-decoration: none;
}

.content {
	/* min-width: 1200px; */
}

.content .banner {
	/* min-width: 1200px; */
	padding: 0;
	margin-bottom: 50px;
}

.banner img {
	width: 100%;
}

.serviceTitle {
	padding: 0;
	margin-bottom: 50px;
}

.serviceTitle p:nth-child(1) {
	font-size: 32px;
	font-family: Microsoft YaHei;
	font-weight: bold;
	color: #333333;
	text-align: center;
}

.serviceTitle p:nth-child(2) {
	font-size: 16px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #333333;
	text-align: center;
}

.titleList {
	padding: 0;
	margin-bottom: 100px;
	position: relative;
}

.titleList .listItem {
	position: absolute;
	width: 80%;
	height: 100%;
	top: 0;
	left: 10%;
	display: flex;
	align-items: center;
}

.titleList .listItem .item {
	width: 20%;
	height: 190px;
	margin-top: 50px;
	opacity: 0;
}
.titleList .listItem .item:nth-child(1).scroll{
	margin-top: 0;
	opacity: 1;
	transition: 1s;
}
.titleList .listItem .item:nth-child(2).scroll{
	margin-top: 0;
	opacity: 1;
	transition: 1s;
	transition-delay: .25s;
}
.titleList .listItem .item:nth-child(3).scroll{
	margin-top: 0;
	opacity: 1;
	transition: 1s;
	transition-delay: .5s;
}
.titleList .listItem .item:nth-child(4).scroll{
	margin-top: 0;
	opacity: 1;
	transition: 1s;
	transition-delay: .75s;
}
.titleList .listItem .item:nth-child(5).scroll{
	margin-top: 0;
	opacity: 1;
	transition: 1s;
	transition-delay: 1s;
}

.titleList .listItem .item img {
	width: 46px;
	height: 46px;
	display: block;
	margin: 0 auto;
	margin-bottom: 20px;
	/* margin-top: 40px; */
	transition: 1s;
}
.titleList .listItem .item:hover img{
	transform: scale(1.2);
	-ms-transform: scale(1.2);
	/* margin-bottom: 10px; */
	transition: 1s;
}
.titleList .listItem .item p:nth-child(2) {
	font-size: 14px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #FFFFFF;
	text-align: center;
}

.titleList .listItem .item p:nth-child(3) {
	font-size: 12px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #FFFFFF;
	line-height: 24px;
	text-align: center;
	width: 80%;
	margin: 0 auto;
}

.serviceList {
	padding: 0;
	margin: 0 auto;
}

.serviceList .item {
	display: flex;
	height: 368px;
	position: relative;
	background: #F5F5F5;
	margin-bottom: 30px;
	overflow: hidden;
}
.serviceList .item:hover{
	background-color: #ebebeb;
	
}

.serviceList .item img {
	width: 40%;
	position: absolute;
	left: -200px;
	top: 0;
	opacity: 0;
	transition: 1s;
}
.serviceList .item.scroll img{
	left: 0;
	opacity: 1;
	transition: 1s;
}

.serviceList .item .itemText {
	width: 60%;
	position: absolute;
	right: 0;
	top: 0;
}

.serviceList .item:nth-child(2n) img {
	position: absolute;
	right: 0px;
	left: 80%;
	top: 0;
	opacity: 0;
	transition: 1s;
}
.serviceList .item:nth-child(2n).scroll img{
	left: 60%;
	opacity: 1;
	transition: 1s;
}

.serviceList .item:nth-child(2n) .itemText {
	position: absolute;
	left: 0;
	right: 40%;
	top: 0;
}

.serviceList .item .itemText p:nth-child(1) {
	font-size: 25px;
	font-family: Source Han Sans CN;
	font-weight: bold;
	color: #333333;
	display: block;
	margin-left: 10%;
	margin-top: 10%;
}

.serviceList .item .itemText p:nth-child(2) {
	font-size: 18px;
	font-family: Source Han Sans CN;
	font-weight: 400;
	color: #666666;
	display: block;
	margin-left: 10%;
}

.serviceList .item .itemText p:nth-child(3) {
	font-size: 15px;
	font-family: Source Han Sans CN;
	font-weight: 300;
	color: #999999;
	line-height: 36px;
	display: block;
	margin-left: 10%;
	width: 80%;
	/*height: 70px;*/
	display: -webkit-box;    
	-webkit-box-orient: vertical;    
	-webkit-line-clamp: 23;
	overflow: auto;
}

.serviceList .item .itemText p:nth-child(3)::-webkit-scrollbar{
	width: 1px;
}

@media screen and (max-width: 998px){
	.img-fluid {
		max-width: 100%;
		height: 216px !important;
	}
	.serviceList .item {
		display: flex;
		height: 202px;
	}
	.serviceList .item.scroll img{
		height: 100%;
	}
	.serviceList .item .itemText p:nth-child(1){
		line-height: 30px;
		margin-right: 10px;
	}
	.serviceList .item .itemText p:nth-child(3){
		overflow: auto;
		height: 70px;
	}
	.serviceList .item .itemText p:nth-child(3)::-webkit-scrollbar{
		width: 0;
	}
	.titleList .listItem {
		position: absolute;
		width: 90%;
		height: 100%;
		top: 0;
		left: 5%;
		/* margin: 0 auto; */
		display: flex;
		align-items: center;
	}
	.titleList .listItem .item p:nth-child(2){
		font-size: 12px;
		font-weight: 600;
		margin-bottom: 0!important;
		height: 24%;
	}

	.titleList .listItem .item p:nth-child(3){
		font-size: 12px;
		font-weight: 300;
		height: 100px;
		overflow: auto;
	}
	.titleList .listItem .item p:nth-child(3)::-webkit-scrollbar{
		width: 1px;
	}

}