/*$$
{"color":[{"val":"#333333","title":"默认主体颜色"},
{"val":"#ffffff","title":"鼠标滑过导航文字颜色"},
{"val":"#666666","title":"文字颜色"}],
"background":[{"val":"#007eff","title":"鼠标滑过导航背景/按钮背景颜色"},
{"val":"#f8f8f8","title":"返回顶部按钮背景颜色"}],
"border":[{"val":"#c2c2c2","title":"边框"}]}
$$*/
#footer_151{
	width: 100%;
	position: relative;
	height: auto;
}
#footer_151 .footerBox{
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
}
#footer_151 .footnav{
	flex: 1;
	display: flex;
	position: relative;
	margin: 0 auto;
	border-radius: 20px;
	/* height: 100%; */
	align-items: center;
	padding: 0 80px;
	
}
#footer_151 .navTit{
	color: #333333;
	position: relative;
	flex: 1;
	font-size: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
}
#footer_151 .navTit i{
	position: relative;
	z-index: 10;
	line-height: 40px;
}
#footer_151 .navTit::before{
	border-radius: 30px;
	height: 0;
	position: absolute;
	left: 50%;
	top:50%;
	content: '';
	background: #007eff;
	width: 0;
	transition: all .8s;
}
#footer_151 .navTit:hover::before{
	width: 100%;
	height: 40px;
	left: 0;
	top:0;
}
#footer_151 .navTit:hover i{
	color: #ffffff;
}
#footer_151 .logo{
	height: 150px;
	width: 265px;
	border-right:#c2c2c2 solid 1px;
	font-size: 14px;
	line-height: 26px;
	padding-top: 30px;
}
#footer_151 .logo img{
	max-width: 100%;
	max-height: 40px;
	width: auto;
	height: auto;
	margin-bottom: 10px;
}
#footer_151 .footEnd{
	border-top:#c2c2c2 solid 1px;
	line-height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	font-size: 14px;
	height: 65px;
}
#footer_151 .footEnd a{
	color: #333333;
	margin: 0 10px;
}
#gotop_151{
	position: fixed;
	right: 100px;
	width:58px;
	bottom: 50px;
	z-index: 999999;
}
#gotop_151 .topList{
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content:last baseline;
	/* padding-left: 165px; */
}
#gotop_151 .topList li{
	width: 50px;
	height: 50px;
	background: #007eff;
	color: #ffffff;
	border-radius: 5px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	line-height: 20px;
	float: right;
	margin-bottom: 15px;
	position: relative;
	cursor: pointer;
}
#gotop_151 li.topBtn{
	background: #f8f8f8;
	color: #666666;
	line-height: 16px;
}
#gotop_151 .topList li .tellCon{
	width: 0;
	background: #007eff;
	position: absolute;
	right: 40px;
	display: flex;
	border-radius: 5px;
	height: 100%;
	align-items: center;
	padding: 0 10px;
	font-size: 14px;
	opacity: 0;
	transition: all .8s;
	overflow: hidden;
	justify-content: right;
}
#gotop_151 .topList li:hover .tellCon{
	width: 160px;
	opacity: 1;
}
#gotop_151 .topList li .codeCon{
	background: #007eff;
	width: 0;
	height: 100px;
	position: absolute;
	right: 65px;
	top:50%;
	margin-top: -50px;
	padding: 10px;
	opacity: 0;
	transition: all .8s;
	border-radius: 10px;
}
#gotop_151 .topList li:hover .codeCon{
	width: 100px;
	opacity: 1;
}
#gotop_151 .topList li .codeCon img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
#gotop_151 .topList li .tellCon img{
	margin-right: 10px;
}
@media screen and (max-width: 1024px){
	#footer_151 .logo{
		padding-left: 20px;
	}
}
@media screen and (max-width: 767px){
	#gotop_151{
		display: none;
	}
	#footer_151{
		display: none;
	}
}