/* 导航 */
.box{
	width: 100%;
	overflow: hidden;
}
.navigation{
	width: 100%;
	height: 60px;
	
	display: flex;
	justify-content: center;
	position: fixed;
	left: 0;
	top: 0;
	z-index: 5;
	color: #fff;
	border-bottom: 1px solid rgba(255,255,255,0.1);
	background-color: rgba(0,0,0,0);
}

.navigation_box{
	width: 1200px;
	height: 60px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.navigation_box img{
	height: 36px;
}
.navigation_box span{
	display: inline-block;
	
	font-size: 16px;
	font-weight: bold;
	margin-left: 40px;
}

.navigation_box a{
	color: #fff;
	text-decoration:none;
}


@keyframes boxListRun {
	0% {
		transform: translateY(40px);
		opacity: 0.7;
	}

	50% {
		transform: translateY(20px);
		opacity: 0.9;
	}
	
	100% {
		transform: translateY(0px);
		opacity: 1;
	}
}

.listAnimation{
	animation: boxListRun 0.5s linear;
	animation-fill-mode: forwards;
}
