.header{
  width:1200px;
  height:80px;
  margin:0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo{

}
.logo img{
  height:46px;
}
.slogon img{
  height:50px;
}
.header-concat{

}
.header-concat-tel{
  font-size:18px;
}
.header-concat-tel span{
  color:#d9d9d9;
  display: inline-block;
  padding:0 10px;
}
.header-concat-mail{
  font-size:12px;
  color:#999;
  text-align:right;
}
.mobile-nav-btn{
	display: none;
}
.nav {
  margin-top:20px;
  width:1200px;
  margin:0 auto;
}

.nav-list{
	display: flex;
	justify-content: space-between;
}

.nav-item {
	line-height: 45px;
	width: 130px;
	text-align: center;
	cursor: pointer;
	position: relative;
}

.nav-item-name a {
  font-size:18px;
	display: inline-block;
	width: 100%;
	color: #666;
}
.nav-drop-btn{
	display: none;
}

.nav-item:hover .nav-item-name a,.nav-item.curr .nav-item-name a {
	color: #BB2821;
  border-bottom:3px solid #BB2821
}

.nav-drop-list {
	position: absolute;
	width: 130px;
	left: 0;
	top: 48px;
	background-color: #FFFFFF;
	z-index: 19;
	display: none;
}

.nav-drop-item a {
	color: #555555;
	display: inline-block;
	width: 100%;
	position: relative;
}

.nav-drop-item a::after {
	content: '';
	display: inline-block;
	width: 72px;
	height: 1px;
	border-bottom: 1px solid #eeeeee;
	position: absolute;
	bottom: 0;
	left: 50%;
	margin-left: -36px;
}

.nav-drop-item:last-child a::after {
	display: none;
}

.nav-drop-item:hover a {
	color: #333333;
	background-color: #f8f8f8;
}
.footer, .footer a{
	width:100%;
	height:250px;
	background: #333;
	color:#fff;
	font-size: 14px;
}
.footer-con{
	display: flex;
	justify-content: space-between;
}
.footer-left{
	padding-top:50px;
	height:200px;
	line-height: 30px;
}
.footer-right{
	width: 260px;
	display: flex;
	flex-wrap: wrap;
	padding-top:50px;
	height:200px;
	line-height: 30px;
	align-items: flex-end;
	align-content: flex-end;
}
.footer-right p{
	width:100%;
	text-align:right;
}


@media screen and (max-width: 1000px) {
	html,
	body {
		font-size: 14px;
		overflow-x: hidden;
	}
	.container{
		width:100%;
	}
	.header{
		width:100%;
		height:40px;
		padding:0 10px;
		display: flex;
		align-items: center;
		justify-content: space-between;
	}

	.header .slogon, .header .header-concat{
		display: none;
	}
	.logo img{
		height:24px;
	}

	.mobile-nav-btn{
		display: block;
		width:40px;
		height:40px;
		overflow:hidden;
	}
	.mobile-nav-btn i{
		font-size:30px;
		line-height:40px;
	}

	.nav {
		margin:0;
		display: block;
		position: fixed;
		width: 100%;
		height: 100%;
		right: -100%;
		top: 0;
		z-index: 201;
		background-color: rgba(0, 0, 0, 0.7);
		min-width: 1px;
	}
	.nav-list{
		display: block;
		position: absolute;
		width: 65%;
		height: 100%;
		background-color: #FFFFFF;
		top: 0;
		right: 0;
		overflow-y: auto;
	}

	.nav-item {
		width: 100%;
		margin-right: 0;
		text-align: left;
		border-bottom: 1px solid #e5e5e5;
		position: relative;
		line-height: 45px;
	}

	.nav-item-name a {
		font-size:18px;
		display: inline-block;
		width: 100%;
		color: #666;
		padding-left:15px;
	}
	.nav-item:hover .nav-item-name a {
		color: #666;
		border-bottom:none;
	}

	.nav-drop-btn {
		position: absolute;
		display: block;
		width: 44px;
		height: 44px;
		right: 10px;
		top: 0;
		overflow: hidden;
	}

	.nav-drop-btn i {
		width:100%;
		height:100%;
		display: inline-block;
		font-size:24px;
		line-height: 44px;
		text-align:center;
	}
	.nav-drop-btn.close_ .icon-plus {
		display: block;
	}
	.nav-drop-btn.close_ .icon-minus {
		display: none;
	}
	.nav-drop-btn.open_ .icon-plus {
		display: none;
	}
	.nav-drop-btn.open_ .icon-minus {
		display: block;
	}
	.nav-drop-list {
		position: initial;
		width: 100%;
		background-color: #ececec;

	}

	.nav-drop-item a {
		color: #555555;
		display: inline-block;
		width: 100%;
		position: relative;
		padding:0 10px 0 30px;
	}
	.nav-drop-item:hover a {
		color: #333333;
		background-color: #f8f8f8;
	}
	.footer, .footer a{
		height:initial;
	}
	.footer-con{
		display: flex;
		justify-content: space-between;
		flex-direction: column;
		font-size:12px;
	}
	.footer-left{
		height: inherit;
		padding:30px 15px 20px;
		line-height: 24px;
	}
	.footer-right{
		display: none;
	}
}