/* index ~  serviceItems design */

.serviceItems {
	position: relative;
	padding: 35px 0 90px;
	background: #5f55ce;
	text-align: center;
}

.serviceItems .icon {
	font-size: 120px;
	transition: all .3s;
}

.serviceItems h3 {
	margin-bottom: 20px;
}

.flex {
	display: flex;
	justify-content: space-between;
}

.s-item {
	padding: 0 16px;
	position: relative;
}
.s-item:hover .icon{
	font-size: 150px;
}


.serviceItems * {
	color: #fff;
}

.serviceItems .desc {
	display: flex;
	flex-wrap: wrap;
}

.serviceItems .desc li {
	margin-top: 12px;
	padding-left: 7.5px;
	padding-right: 7.5px;
	width: 50%;
}

.serviceItems .desc li span {
	position: relative;
	display: block;
	padding: 6px 0;
	border: 1px solid #fff;
}

.serviceItems .desc li:hover span {
	color: #5f55ce;
	background: #fff;
}




label {
	display: inline-block;
	max-width: 100%;
	margin-bottom: 5px;
	font-weight: 700;
	color: #555;
}

.fwln {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin-bottom: 80px;
}

.fwln li {
	width: 25%;
	text-align: center;
	cursor: pointer;
	margin-bottom: 20px;
}

@media (max-width:768px) {
	.fwln li {
		width: 100% !important;
	}
}

.icon_lists .icon {
	display: block;
	height: 100px;
	line-height: 100px;
	font-size: 52px;
	font-weight: 100;
	margin: 10px auto;
	color: #333;
	-webkit-transition: font-size 0.25s linear, width 0.25s linear;
	-moz-transition: font-size 0.25s linear, width 0.25s linear;
	transition: font-size 0.25s linear, width 0.25s linear;
}

.icon_lists .icon:hover {
	font-size: 100px;
}

.icon_lists .svg-icon {
	/* 通过设置 font-size 来改变图标大小 */
	width: 1em;
	/* 图标和文字相邻时，垂直对齐 */
	vertical-align: -0.15em;
	/* 通过设置 color 来改变 SVG 的颜色/fill */
	fill: currentColor;
	/* path 和 stroke 溢出 viewBox 部分在 IE 下会显示
		normalize.css 中也包含这行 */
	overflow: hidden;
}

.icon_lists li .name,
.icon_lists li .code-name {
	color: #666;
}

.boxList .item {
	margin-bottom: 40px;
}

.icon_lists .name {
	font-weight: 600;
}

.icon_lists .code-name {
	padding: 0 10%;
}



/* index ~  feedback customer */
.customer {
	position: relative;
	padding: 50px 0;
	background: #2c313f;
}


.customer ul li a {
	display: block;
	width: 99%;
	margin: 0 auto;
	background-color: #333949;
	text-align: center;
}

/* .customer ul li:first-child{padding-top: 4%; text-align: center;} */
/* .customer ul li:first-child img{margin-bottom: 20px;} */
@media (min-width: 1200px) {
	.customer ul li {
		margin: 1% 0;
	}

	/* .customer ul li:first-child{text-align: right;} */
	/* .customer ul li:first-child *{margin-right: 1%;.customer ul li:first-child} */
	.customer ul li a:hover {
		background-color: #5f55ce;
		-webkit-box-shadow: 0 0 17px #282c39;
		-moz-box-shadow: 0 0 17px #282c39;
		box-shadow: 0 0 17px #282c39;
		-webkit-transform: scale(1.2);
		-moz-transform: scale(1.2);
		transform: scale(1.2);
	}

	.customer ul li a:hover img {
		position: relative;
		top: -0.5px;
		left: 0.5px;
		-webkit-transform: scale(0.96);
		-moz-transform: scale(0.96);
		transform: scale(0.96);
	}
}

