  /*全局变量*/
*{
	text-decoration : none;
	list-style: none;
	margin: 0px;
	padding:0px;
}

  /*头部*/
.header{   /*头部全局*/
	width: 100%;
	height: auto;
	position: absolute;
    /* border-bottom: 1px solid #ededed;  下边框线*/
    /* box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.1);  下边框阴影 */
}	
	/*居中容器*/
.header .header-container{
	width: 60%;
	min-width: 850px;
	background: rgba(#ffffff,#ffffff, #ffffff, 0);
	position: absolute;
	left: 20%;
	right: 20%;
}
.header-container {
	/* border: 1px red solid; */
	min-width: 714px;
	height: 65px;
	margin: 0px auto;
	z-index: 99;
}
	/*左部分 logo*/
.header-container .logo{
	display: inline-block;
	background-image: url();
	background-size: 72px 38px;/*规定背景图像的尺寸*/
	background-repeat:no-repeat;/*可以拉伸背景图像的尺寸*/
	width: 72px;
	height:  38px;
	margin-top: 14px;
}
	/*左部分 字体容器*/
.header-container .nav-link-container{
	display: inline-block;/*行变块*/
	width: 60px;
	margin-left: 2px;
	margin-bottom: 5px;
	
}
	/*左部分 字体*/
.header-container .nav-link-container .nav-link{
	float: left;
	width: 78px;
	color: #999;
    font-size: 10px;
    font-weight: 300;/*粗细*/
    line-height: 13px;
}
	/*右部分容器*/
.header-container .nav-list{
	float: right;
}

.header-container .nav-list li{
	font-size: 16px;
	padding: 0px 20px;
	font-family:PingFangSC-Regular;
	display: inline-block;
	/* height: 40px; */
    line-height: 81px;
}
	/*右部分容器-首页*/
.nav-list .center-highlight{
	color:#FFFFFF;
	margin-right: 10px; 
}

.product1-center{
	text-decoration: none;
    color: #C9C6C6;
    margin-right: 5px;
}
li:hover .product1-center {
	color: #FFFFFF; 
}
	/* 右部分容器-登录 */
.header-container .nav-list .login_common{
	padding: 0px 0px 0px 20px;
}
.btn-login{
	width: 80px;
	height: 35px;
	line-height: 35px;
	display: inline-block;
	/* border: 1px solid #3388ff; */
	/* border-radius: 2px; */
	color: #1C79F2;
	text-align: center;
	background-color: #FFFFFF;
	border-radius:5px; 
}
	/*右部分容器-注册*/
 /* .header-container .nav-list .register_common{
	padding: 0px 0px 0px 10px;
} 
.header-container .nav-list .register_common .btn-register{
	width: 80px;
	height: 29.5px;
	line-height: 30px;
	display: inline-block;
	background-color:  #3388ff;
	border-radius: 2px;
	color: #ffffff;	
	text-align: center;
    cursor: pointer;  不同的光标
}*/

.login_common:hover  .btn-login{
	color: #ffffff;
	background-color: #3388ff;
}  

/* 下标箭头*/
/*
.arrow{
	width: 5px;
	height: 5px;
	border: 1px #474747 solid;
	display: inline-block;
    transform: rotate(45deg);
    border-top: 0px;
    border-left: 0px;
}
.product-center .arrow{
	position:relative;
	left: 2px;
	top: -4px;
}
li:hover i{
	border:1px #3EABDF solid;
	border-top: 0px;
    border-left: 0px;
} */









