.header {
	width: 100%;
	height: 100px;
	background-color: #FFFFFF;
	position: fixed;
	top: 0;
	z-index: 99;
	box-shadow: 0 0 2px 2px #E8E8ED;
	font-family: MicrosoftYaHei;
}

.header header {
	width: 1200px;
	height: 100px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: relative;
}

.header-left {
	width: 300px;
	display: flex;
	/*justify-content: center;*/
	flex-flow: wrap;
	align-items: center;
}

.header .navHref {
	/*width: 600px;*/
	font-size: 18px;
	letter-spacing: 2px;
	display: flex;
	justify-content: space-between;
}

.header .navHref li a {
	display: block;
	width: 110px;
	height: 32px;
	line-height: 32px;
	text-align: center;
}

.header .navHref li a img{
	margin: 0 auto;
}

.header-right{
	width: 190px;
}
.header-right p:nth-child(2){
	font-size: 26px;
	letter-spacing: 3px;
	color: #549931;
	font-weight: bold;
	font-family: Impact;
}

.header-right p:nth-child(1) {
	font-size: 16px;
	color: #8a8a8a;
	letter-spacing: 2px;
}

.activity {
	color: #fff !important;
	background-color: #50972c;
	border-radius: 18px;
}

.area-box{
	position: absolute;
	top: 39px;
	left: 215px;
}
.area-lab{
	position: relative;
	top: 0;
	left: 0;
	font-size: 14px;
	color: #555555;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	border: 1px solid #999;
	padding: 6px 15px;
	background-color: #ffffff;
	z-index: 99;
}
.area-box:hover .area-lab{
	border-bottom: medium none;
}
.area-box:hover .area-city{
	display: block;
}
.area-city{
	position: absolute;
	width: 300px;
	background-color: #FFFFFF;
	top: 36px;
	left: 0px;
	box-shadow: rgba(0, 0, 0, 0.1) 0px 5px 20px 0px;
	border-radius: 0 5px 5px 5px;
	border: 1px solid #999;
	display: none;
	animation-name: box1;
	animation-duration: 1s;
	z-index: 98;
}
@keyframes box1 {
	0% {
		opacity: 0.3;
	}
	100% {
		opacity: 1;
	}
}

.area-city .city__ul{
	display: flex;
	flex-flow: column;
	padding: 15px;
}
.area-city .city__ul li{
	display: flex;
	flex-direction: row;
	align-items: center;
	padding-bottom: 30px;
}
.area-city .city__ul .city__ul_title{
	width: 60px;
	text-align: right;
	padding-right: 10px;
	font-weight: 700;
	font-size: 14px;
}
.area-city .city__ul .city__ul_item{
	display: flex;
	flex-direction: row;
	font-size: 12px;
}
.area-city .city__ul .city__ul_item span{
	padding-right: 10px;
}
