* {
	margin: 0;
	padding: 0;
	list-style: none;
}

/* 头部导航 */
.minHeader {
	position: relative;
	height: 40px;
	line-height: 40px;
	background-color: #fbfbfb;
	border-bottom: 1px #eaeaea solid;
}

.minHeader .headerLogo,
.minHeader .headerButton {
	display: none;
}

.minHeader .headerNav {
	max-width: 1200px;
	margin: 0 auto;
}

.minHeader .headerNav ul li {
	float: left;
	padding: 0 10px;
	line-height: 40px;
	font-size: 13px;
}

.minHeader .headerNav li a {
	display: block;
	color: #6b6b6b;
	text-decoration: none;
}

.minHeader .headerNav li a:hover {
	text-decoration: underline;
}

@media (max-width: 767px) {
	.minHeader {
		height: 50px;
		line-height: 50px;
	}
	
	.minHeader .headerLogo{
		width: 67px;
		height: 30px;
		float: left;
		margin: 10px;
		display: block;
	}
	
	.minHeader .headerLogo a,
	.minHeader .headerLogo img {
		width: 100%;
		height: 100%;
		display: block;
	}
	
	.minHeader .headerButton {
		width: 44px;
		height: 34px;
		float: right;
		margin: 12px 10px 0 0;
		display: block;
	}
	
	.minHeader .headerButton a {
		padding: 9px 10px;
		border: 2px solid #ddd;
		display: block;
	}
	
	.minHeader .headerButton span {
		display: block;
		width: 22px;
		height: 2px;
		border-radius: 1px;
		background: #888;
		display: block;
		transition: all 0.2s; 
	}
	
	.minHeader .headerButton span:nth-child(1){
		transform: translateY(-4px);
	}
	
	.minHeader .headerButton span:nth-child(3){
		transform: translateY(4px);
	}
	
	.minHeader .headerButton .on span:nth-child(1) {
		transform: rotate(45deg) translate(0, 1.5px);
	}
	
	.minHeader .headerButton .on span:nth-child(2) {
		display: none;
	}
	
	.minHeader .headerButton .on span:nth-child(3) {
		transform: rotate(-45deg) translate(0, -1.5px);
	}
	
	.minHeader .headerNav {
		width: 100%;
		position: absolute;
		top: 51px;
		left: 0;
		background: #fbfbfb;
		max-height: 340px;
		overflow: auto;
		border-bottom: 1px solid #e7e7e7;
		display: none;
	}
	
	.minHeader .headerNav.now{
		/* display: block; */
	}
	
	.minHeader .headerNav ul li{
		float: none;
		font-size: 14px;
		text-align: center;
	}
}