
/* 手机端 */
@media screen and (max-width:768px){
	#nav{display: none;}
	
	
}

/* 平板端, PC端*/
@media screen and (min-width:769px){
	#top{
		width: 100%;
		height: 40px;
		border-bottom: 1px solid #ddd;
		background-color: #eee;
		padding: 0 5%;
		box-sizing: border-box;
		display: flex;
		justify-content: space-between;
		align-items: center;
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		z-index: 100;
	}
	#top h1{
		font-size: 15px;
		font-weight: normal;
	}
	#top a{
		color: #666;
	}
	#top a:hover{
		color: #f60;
		text-decoration: underline;
	}
	#top .navlist{
		height: 15px;
		display: flex;
		align-items: center;
	}
	#top .navlist a{
		height: 15px;
		border-right: 2px solid #999;
		padding: 0 5px;
		line-height: 15px;
	}
	#top .navlist a:last-child{
		border-right: 0;
	}
	
}
