/*适用场景*/
#our-services{
	padding-top: 60px;
}
#our-services .pb-60{
	padding-bottom: 60px;
}
#our-services .mb-20{
	margin-bottom: 20px;
}
.feature-bg-box {
	position: relative;
	padding: 30px;
	border-radius: 4px;
	margin-bottom: 100px;
	height: 180px;
}

.gray-bg {
	background: rgb(247, 247, 247);
}

.feature-bg-box, .feature-bg-box:hover .logo {
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
}

.feature-bg-box .logo {
	position: absolute;
	top: -40px;
	left: 50%;
	width: 80px;
	height: 80px;
	margin-left: -40px;
	text-align: center;
	border-radius: 50%;
	background: #fff;
	box-shadow: 0 0 0 5px #f6f6f6;
	line-height: 80px;
}
.feature-bg-box .logo img{
	width: 80px;
	height: 80px;
	border-radius: 100%;
	margin: 0 auto;
}
.featured-item.feature-bg-box .logo i {
	color: #19b5fe;
	font-size: 40px;
	line-height: 80px;
}

.featured-item.feature-bg-box .logo i.sub-color {
	color: #ffaf36;
}
.feature-bg-box .title {
	display: inline-block;
	margin-top: 40px;
}
.feature-bg-box .title h4{
	font-weight: 600!important;
	margin-bottom: 10px;
}
.featured-item.feature-bg-box:hover {
	background: #19b5fe;
	color: #fff;
}

.featured-item.sub-color_hover:hover {
	background: #ffaf36;
}
.about-title{
    margin-top: 50px;
	font-size: 14px;
	color: #c5c5c5;
	height:100px;
	border-bottom: 1px dashed #dfdfdf;
}
.about-title h3{
	font-size: 29px;
	color: #000;
	font-weight:lighter;
	line-height: 50px;
}
.feature-bg-box{
	height: 200px;
	-webkit-transition: background-color 0.5s;
	-moz-transition: background-color 0.5s;
	-ms-transition: background-color 0.5s;
	-o-transition: background-color 0.5s;
	transition: background-color 0.5s;
}
.feature-bg-box .desc{
	overflow: hidden;
	display: -webkit-box;
	-ms-text-overflow: ellipsis;
	text-overflow: ellipsis;
	-webkit-line-clamp: 4;
	line-clamp: 4;
	-webkit-box-orient: vertical;
	-moz-box-orient: vertical;
	-ms-box-orient: vertical;
	box-orient: vertical;
}
.feature-bg-box .code-img{
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: 10;
	background: #fff;
	opacity: 0.8;
	line-height: 200px;
	-webkit-transform: scale(0);
	-moz-transform: scale(0);
	-ms-transform: scale(0);
	-o-transform: scale(0);
	transform: scale(0);
	-webkit-transition: transform 0.5s;
	-moz-transition: transform 0.5s;
	-ms-transition: transform 0.5s;
	-o-transition: transform 0.5s;
	transition: transform 0.5s;
}
.feature-bg-box .code-img img{
	margin: 0 auto;
	width: 150px;
	height: 150px;
}
.feature-bg-box:hover .code-img{
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
}