/* ----------------三清------------------ */
*{
	margin: 0;
	padding: 0;
}
li{
	list-style: none;
}
a{
	text-decoration: none;
	color: black;
}
/* ---------------大盒子--------------- */
.container{
	width: 100%;
	height: auto;
	position: relative;
	overflow: hidden;
	font-family: "思源黑体";
	background: #f8f8fa;
}
/* ---------------外层盒子--------------- */
.box{
	width: 95%;
	height: auto;
	margin: 0 auto;
	box-sizing: border-box;
	padding: 0.5rem 0 8rem 0;
}
/* ---------------底部导航栏--------------- */
.navigation{
	width: 100%;
	height: 3.5rem;
	background: rgb(249,249,249);
	position: fixed;
	left: 0;
	bottom: 0;
	border-top: 2px solid #eee;
	z-index: 99999999;
}
.nav{
	width: 80%;
	height: 100%;
	margin: 0 auto;
}
.nav>img{
	width: 4rem;
	height: 4rem;
	position: absolute;
	left: calc(50% - 2rem);
	bottom: 0.5rem;
}
.nav>ul{
	width: calc(50% - 2rem);
	height: 100%;
	display: flex;
	justify-content: center; /* 水平居中 */
	align-items: center;     /* 垂直居中 */
}
.nav>ul>a{
	width: 50%;
	height: 60%;
	float: left;
}
.nav>ul>a>li{
	width: 100%;
	height: 100%;
}
.nav>ul>a>li>img{
	width: 1.42rem;
	height: 1.42rem;
}
.nav>ul>a>li>p{
	font-size: 12px;
}
.nav_left{
	float: left;
}
.nav_left>a{
	text-align: left;
}
.nav_right{
	float: right;
}
.nav_right>a{
	text-align: right;
}
.pactive{
	color: #F43256;
}



