header .navBar .anquan {
	color: #FFCC66;
	font-weight: bold;
}
.headPage {
	position: relative;
}
.headPage .bg {
	width: 100%;
	height: 100%;
}
/* 联系我们按钮样式 - 从左到右变色效果 */
.headPage .infoBlank {
	border: none;
	outline: none;
	font-size: 0.24rem;
	color: #333;
	padding: 0.18rem 0.42rem;
	background: #FFCC66;
	border-radius: 0.04rem;
	position: absolute;
	bottom: 2.3rem;
	left: 50%;
	transform: translate(-50%);
	cursor: pointer;
	z-index: 9;
	overflow: hidden;
	transition: color 0.25s ease;
}

/* 从左到右变色效果 - 白底黄字 */
.headPage .infoBlank::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: #fff;
	transition: left 0.25s ease;
	z-index: -1;
}

.headPage .infoBlank:hover::before {
	left: 0;
}

.headPage .infoBlank:hover {
	color: #FFCC66;
	transform: translate(-50%);
}

.content {
	padding: 0.8rem 2.45rem 0.8rem 2.45rem;
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
.content:nth-child(even) .lImg {
	/*margin: 0 2.45rem 0 3.15rem;*/
	width: 4.58rem;
	height: 4.58rem;
	margin-right: 2.45rem;
	/* 初始淡出状态 */
	opacity: 0;
	transform: translateX(-50px);
	transition: opacity 0.6s ease, transform 0.6s ease;
	margin-left: -100px;
}
.content:nth-child(odd) .lImg {
	/*margin: 0 2.45rem 0 3.15rem;*/
	width: 4.58rem;
	height: 4.58rem;
	margin-left: 2.45rem;
	margin-right: -100px;
	/* 初始淡出状态 */
	opacity: 0;
	transform: translateX(-50px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}
.content .intro {
	flex: 1;
	/*padding-right: 3.5rem;*/
	/* 初始淡出状态 */
	opacity: 0;
	transform: translateY(50px);
	transition: opacity 0.6s ease, transform 0.6s ease;
	padding-top: 100px;
}

/* 动画完成后的状态 */
.content .lImg.animated-complete {
	opacity: 1;
	transform: translateX(0);
}
.content .intro.animated-complete {
	opacity: 1;
	transform: translateY(0);
}
.intro .classicy {
	margin-bottom: 0.7rem;
}
.intro .classicy span {
	font-size: 0.72rem;
	color: #eee;
}
.intro .classicy h2{
	display: inline;
	font-size: 0.36rem;
	color: #333;
	margin-left: -0.86rem;
}
.intro p {
	font-size: 0.18rem;
	color: #666;
	line-height: 0.36rem; 
}

.indemnity {
	background: #F0F5F9;
}
.indemnity .lImg{
	margin: 0;
	margin-left: 2.47rem;
}