.containter{
	max-width: 1200px;
	width: 100%;
	margin: 0 auto;
	/* border: 1px solid red; */
	padding: 0 20px;
	box-sizing: border-box;
}
.header{
	width: 100%;
	height: 60px;
	background: rgb(23, 23, 23);
}
.header .logo{
	display: block;
	width: 110px;
	height: 44px;
	margin-top: 10px;
	position: relative;
}
.header .logo:after{
	display: block;
	content: '陕西爱耐特通信网络技术有限公司';
	width: 250px;
	line-height: 44px;
	font-size: 16px;
	position: absolute;
	left: 110px;
	top: 0;
	color: #ffffff;
}
.header .logo img{
	width: 100%;
	height: 100%;
}
.header .nav{
	display: flex;
	justify-content: space-around;
	align-items: center;
	width: 50%;
	height: 60px;
	margin-left: 34%;
}
.header .nav a{
	color: #ffffff;
}
.header .nav li:hover a{
	color: #3d85c6;
}
.header .nav li.active a, .header .active{
	color: #3d85c6;
}



.header .global{
	float: right;
	color: #fff;
	width: 60px;
	position: relative;
	/* text-align: center; */
}
.header .global a{
	display: block;
	line-height: 60px;
	color: #fff;
	background: url(../img/global.png) no-repeat left center;
	background-size: 20px;
	padding-left: 25px;
}
.header .global ul{
	position: absolute;
	left: -10px;
	top: 60px;
	z-index: 99;
	width: 100px;
	padding: 10px 20px;
	box-sizing: border-box;
	/* background: rgba(0,0,0,.1); */
	color: #fff;
	/* border-radius: 5px; */
	box-shadow: 0 0 10px 1px rgba(0,0,0,0.16);
	display: none;
}
.header .global li{
	line-height: 30px;
	cursor: pointer;
	/* text-align: center; */
	padding-left: 25px;
	color: #fff;
}
.header .global li:first-of-type{
	border-bottom: 1px solid #f6f6f6;
	background: url(../img/cn.jpg) no-repeat left center;
	background-size: 20px;
}
.header .global li:last-of-type{
	background: url(../img/en.jpg) no-repeat left center;
	background-size: 20px;
}
/* .header .global a:hover{
	color: #3d85c6;
} */
.header .global:hover ul{
	display: block !important;
}
.header_menu{
	width: 40px;
	height: 40px;
	/* line-height: 40px; */
	position: absolute;
	right: 30px;
	top: 10px;
	display: none;
	background: url(../img/menu.png) no-repeat center center,#222;
	border-radius: 4px;
	background-size: 60%;
}
.header_mobile{
	/* border: 1px solid red; */
	width: 100%;
	background: rgb(23, 23, 23);
	position: absolute;
	top: 60px;
	left: 0;
	padding: 20px;
	box-sizing: border-box;
	display: none;
	z-index: 99;
	box-sizing: border-box;
}
.header_mobile.active{display: block !important;}
.header_mobile a{
	display: block;
	margin: 0 15px 15px;
	color: #ffffff;
	/* padding: 10px 0; */
	min-height: 40px;
	border-bottom: 1px dashed #E6E6E6;
	
}
 

/* Footer */
.footer{
	background: rgb(23, 23, 23);
	padding: 20px 0;
	color: #fff;
	text-align: center;
}
.footer a{
	display: inline-block;
	padding: 0 10px;
	color: #ccc;
}

@media (min-width: 768px) {
	.header_mobile{
		display: none !important;
	}
}

@media (max-width: 768px) {
  .header_menu{display: block;}
  .header .nav{display: none;}
}


@media (max-width: 1200px) {
  .header .nav{
	  width: 70%;
  }
  .header_menu{display: block;}
  .header .nav{display: none;}
}

@media (max-width: 1024px) {
 .header_menu{display: block;}
 .header .nav{display: none;}
}