@charset "urf-8";
.content{
	background: #F6F6F6;
	padding-bottom: 100px;
}
.content .box{
	padding: 0;
}
.content .box .service-list{
	font-size: 14px;
	line-height: 25px;
	color: #000000;
	box-shadow: 0px 1px 12px rgba(0, 0, 0, 0.09);
	border-radius: 4px;
	background-color: #fff;
	margin-top: -60px;
	
}
.content .box .service-list .item{
	height: 300px;
	position: relative;
	float: left;
	width: 20%;
	text-align: center;
	box-sizing: border-box;
	cursor: pointer;
}
.content .box .service-list .item:after{
	content: "";
	display: block;
	position: absolute;
	right: 0;
	top: 50%;
	height: 24%;
	width: 1px;
	background-color: #BBBBBB;
	transform: translateY(-50%);
}
.content .box .service-list .item:last-child:after{
	display: none;
}
.content .box .service-list .item .ico{
	display: inline-block;
	max-width: 104px;
	width: 50%;
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
}
.content .box .service-list .item .ico:after{
	padding-top: 100%;
	content: "";
	display: block;
}
.content .box .service-list .item:nth-child(1) .ico{
	background-image: url(../images/service-item1.png);
}
.content .box .service-list .item:nth-child(2) .ico{
	background-image: url(../images/service-item2.png);
}
.content .box .service-list .item:nth-child(3) .ico{
	background-image: url(../images/service-item3.png);
}
.content .box .service-list .item:nth-child(4) .ico{
	background-image: url(../images/service-item4.png);
}
.content .box .service-list .item:nth-child(5) .ico{
	background-image: url(../images/service-item5.png);
}
.content .box .service-list .item:hover{
	background-color: #FFD836;
	box-shadow: 0px 3px 6px #FFD836;
	transform: scale(1.15);
	border-radius: 4px;
}
.content .box .service-list .item:hover:after{
	display: none;
}
.content .box .service-list .item:hover .ico{
	width: 40%;
}
.content .box .service-list .item:hover .h1{
	display: block;
}
.content .box .service-list .item:nth-child(1):hover .ico{
	background-image: url(../images/service-item1-active.png);
}
.content .box .service-list .item:nth-child(2):hover .ico{
	background-image: url(../images/service-item2-active.png);
}
.content .box .service-list .item:nth-child(3):hover .ico{
	background-image: url(../images/service-item3-active.png);
}
.content .box .service-list .item:nth-child(4):hover .ico{
	background-image: url(../images/service-item4-active.png);
}
.content .box .service-list .item:nth-child(5):hover .ico{
	background-image: url(../images/service-item5-active.png);
}
.content .box .service-list .item .h1{
	display: none;
}

.content .box .service-list .block{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%);
	width:90%;
}

@media screen and (max-width: 768px) {
	.content .box .service-list{
		margin:20px auto;
	}
	.content .box .service-list .item{
		width: 100%;
		height: 200px;
	}
	.content .box .service-list .item:after{
		display: none;
	}
	.content .box .service-list .item:hover{
		background-color: #FFD836;
		box-shadow: 0px 3px 6px #FFD836;
		transform: scale(1.05);
		border-radius: 4px;
	}
	.content .box .service-list .item:hover .ico{
		width: 30%;
	}
}