.img1Block {
	position: relative;
}
.img-1 {
	display: block;
	width: 100%;
}
.consultBlock {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.consultMain {
	width: 76%;
	height: 50px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	border-radius: 10px;
	padding-left: 16px;
	background: #fff;
}
.consultBlock img {
	display: block;
	width: 20px;
}
.consultBlock input {
	width: 65%;
	height: 100%;
	padding: 0 10px;
	border: none; /* 去除placeholder外的边框 */
	outline: none; /* 去除点击input框时显示的边框 */
	cursor: pointer; /* 点击显示光标光标呈现为指示链接的指针（一只手） */
}
.consultBlock input::placeholder {
	color: #ccc;
}
.consultBlock button {
	width: calc(35% - 20px);
	height: 100%;
	padding: 0 10px;
	border-radius: 0 10px 10px 0;
	color: #fff;
	border: none;
	/* font-family: "SourceHanSansCN-Medium"; */
}
.introduction {
	position: relative;
	padding: 20px 100px;
	border-radius: 10px;
	margin-top: -80px;
	background: #fff;
	box-shadow: 0 0 6px rgba(0, 0, 0, .5);
}
.introduction img {
	display: block;
	width: 80%;
}
.introduction .info {
	margin-top: 10px;
}
.serveBlock {
	background: #F7F8FA;
	padding: 60px 0;
}
.serveMain {
	margin-top: 20px;
}
.serveMain div[class^="col-"] {
	padding: 0;
}
/* css给图片弄遮罩 */
/* .serveMain .imgBlock > div.imgParentMask {
	position: relative;
}
.imgBlock > div.imgParentMask::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease-out;
  z-index: 1;
}
.imgBlock > div.imgParentMask:hover::before {
  opacity: 1;
} */
.serveMain .imgBlock img {
	display: block;
	width: 100%;
}

/* .serveMain .imgBlock:active ~ .imgBlock .borderBotteom {
	border: 1px solid red;
	display: none;
} */
/* .serveMain .imgBlock:hover ~ .imgBlock .borderBotteom,
.serveMain .imgBlock:hover + .imgBlock .borderBotteom {
	border: 1px solid red;
	display: none;
} */
/* .serveMain .imgBlock:not(:nth-child(1)) > .borderBotteom {
	display: none;
} */
.serveMain .imgBlock > .borderBotteom {
	display: none;
}
.serveMain .imgBlock > .borderBotteom.active {
	display: block;
}
.serveMain .borderBotteom {
	height: 2px;
	position: relative;
	background: #2B51A4;
	margin-top: 10px;
}
.serveMain .borderBotteom:before {
	position: absolute;
	left: 50%;
	top: 10px;
	margin-left: -5px;
	content: '';
	width: 16px;
	height: 2px;
	background: #2B51A4;
}
.serveMain .borderBotteom:after {
	position: absolute;
	left: 50%;
	top: 16px;
	margin-left: -5px;
	content: '';
	width: 10px;
	height: 0;
	border-left: 8px solid transparent;
	border-right: 8px solid transparent;
	border-top: 14px solid #2B51A4;
}
.serveItem {
	margin: 60px 0 20px 0;
}
.serveItem .fwIconImg {
	display: block;
	width: 80px;
	margin: 0 auto;
}
.zzzsBox {
	overflow: hidden;
	padding: 0;
}
.zzzsBolck {
	width: 200%;
	display: flex;
	/* overflow-x: scroll; */
	/* scroll-snap-type: x mandatory; */
	margin: 40px 0;
	animation-name: zzzsMove;
	animation-duration: 10s;
	animation-iteration-count: infinite;
	animation-timing-function: linear;
}
.zzzsBolck > div {
	width: calc(1170px / 9);
	/* width: 30%; */
	/* width: 340px; */
	display: flex;
	flex-shrink: 0;
	justify-content: center;
	align-items: center;
	/* scroll-snap-align: center; */
	/* scroll-snap-stop: always; */
	/* padding: 0 3%; */
	padding: 0 15px;
}
.zzzsBolck > div:nth-child(1) {
	/* margin-left: -1.5%; */
}
.zzzsBolck > div > div {
	height: 100%;
	display: flex;
	flex-direction: column;
	/* justify-content: flex-end; */
	justify-content: space-between;
}
.zzzsBolck img {
	display: block;
	width: 100%;
}
.zzzsBolck .zsTitle {
	margin-top: 10px;
}
/* 鼠标上移，停止动画 */
.zzzsBox:hover > .zzzsBolck {
	cursor: pointer;
	animation-play-state: paused;
}
/* 创建动画 */
@keyframes zzzsMove {
	from {
		transform: translateX(0);
	}
	to {
		/* transform: translateX(-1170px); */
		transform: translateX(var(--zzzsTranslateX));
	}
}

/* 分割线标题-start */
.subTitleBlock {
	position: relative;
	margin-top: 10px;
	height: 20px;
}
.subTitleMain {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.subTitleBlock .leftBorder,
.subTitleBlock .rightBorder {
	width: 36%;
	position: relative;
	height: 1px;
	background: #ccc;
}
.subTitleBlock .border-1 {
	width: 100%;
}
.subTitleBlock .border-2 {
	width: 26%;
	height: 3px;
	background: #ccc;
}
.subTitleBlock .text {
	width: 28%;
	color: #ccc;
}
.subTitleBlock .leftBorder .border-2 {
	position: absolute;
	right: 0;
	top: -3px;
}
.subTitleBlock .rightBorder .border-2 {
	position: absolute;
	left: 0;
	top: -3px;
}
/* 分割线标题-end */
