/************************* PC ************************/
body,html{
	overflow-x: hidden;
}
.pageWrap{
	width: 100%;
	height: auto;
	position: relative;
	
}
.wrap{
	width: 1200px;
	height: auto;
	margin: 0 auto;
	position: relative;
	z-index: 9;
}
.bg1{
	position: absolute;
	top: 60px;
	left: 0;
	width: 100%;
}
.bg2{
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
}
.headNav{
	width: 100%;
	height: 60px;
	background-color: #fff;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 998;
}
.headNav .box{
	width: 1200px;
	height: 60px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 0 auto;
}
.headNav .box .logo{
	width: 69px;
	height: 35px;
}
.headNav .box .navBox{
	width: 800rpx;
	height: 60rpx;
	display: flex;
	justify-content: flex-end;
	align-items: center;
}
.headNav .box .navBox .nav{
	font-size: 16px;
	color: #000000;
	height: 30px;
	line-height: 30px;
	margin-left: 60px;
	display: block;
	position: relative;
	cursor: pointer;
}
.headNav .box .navBox .nav::after{
	content: '';
	position: absolute;
	display: block;
	width: 100%;
	height: 5px;
	background-color: #F44F46;
	opacity: 0;
	transition: opacity 0.5s;
}
.headNav .box .navBox .nav:hover::after{
	opacity: 1;
}

.footNav{
	width: 100%;
	height: 80px;
	position: relative;
	z-index: 9;
}
.footWrap{
	width: 100%;
}
.footWord{
	text-align: center;
	color: #FFFFFF;
	line-height: 25px;
	letter-spacing: 1px;
}