*{
	margin: 0;
	padding: 0;
}
body,html{
	font-family: "微软雅黑";
}
li{
	list-style: none;
}
a:hover,a:visited,a:focus{
	text-decoration: none;
}
.bold{
	font-weight: 700;
}
input:-webkit-autofill,textarea:-webkit-autofill,select:-webkit-autofill {
    box-shadow: inset 0 0 0 1000px #fff;
}
input{
    outline:none;
    background:transparent;
    border:none;
    outline:medium;
}
*:focus{ 
    outline: none;
    background-color: transparent;
}
::selection{
	background:transparent; 
}
::-moz-selection{
	background:transparent; 
}
span.has-danger {
	color: #E81414;
	display: block;
	text-align: left;
	font-size: 12px;
	font-weight: normal;
}
.line-clamp-1 {
	overflow: hidden;
  	text-overflow:ellipsis;
  	white-space:nowrap;
}
.line-clamp-2 {
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	text-overflow:ellipsis;
}
.line-clamp-3 {
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	text-overflow:ellipsis;
}
.line-clamp-4 {
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 4;
	text-overflow:ellipsis;
}
/*头部样式*/
.header-out{
	width: 1440px;
	margin: 0 auto;
}
.header{
	width: 100%;
	padding: 0 60px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 80px;
}
.header img.logoPng{
	height: 48px;
}
.header .right{
	display: flex;
	align-items: center;
}
.header .links li{
	display: inline-block;
	margin-right: 40px;
}
.header .links li a{
	color: #8F8D8D;
	display: inline-block;
	position: relative;
}
.header .links li a span{
	display: inline-block;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background-color: #000000;
	position: absolute;
	bottom: -12px;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	display: none;
}
.header .about_company{
	position: relative;
}
.header .about_btn{
	cursor: pointer;
}
.header .about_company .about_content{
	position: absolute;
	display: none;
	z-index: 9;
	top: 30px;
	background-color: #BFBFBF;
	width: calc(100% + 20px);
	left: -10px;
}
.header .about_company .about_content>div{
	padding: 10px;
	border-radius: 3px;
}
.header .about_company .about_content>div:hover{
	background-color: #419bf9; 
}
.header .about_company .about_content>div>a{
	color: #fff;
}
.header .modalBtn{
	padding: 8px 25px;
	border: 1px solid #8F8D8D;
	border-radius: 20px;
	color: #8F8D8D;
	display: inline-block;
	cursor: pointer;
}
.header .modalBtn>a{
	color: #8F8D8D;
}
.header .links li a.active{
	color: #000000;
}
.header .links li a.active span{
	display: block;
}
.header .phone{
	color: #000000;
	cursor: pointer;
	position: relative;
}
.header .phone a#infoPhone{
	display: inline-block;
	/*border: 1px solid #999999;*/
	padding: 5px 10px;
	/*color: #8F8D8D;*/
	color: #fff;
	background-color: #419bf9;
	border-radius: 3px;
}
.header .phone .member-operate{
	position: absolute;
	display: none;
	z-index: 9;
}
.header .phone .member-operate>li{
	width: 85px;
	height: 40px;
	line-height: 40px;
	background-color: #999999;
	color: #fff;
	text-align: center;
}
.header .phone .member-operate>li:hover{
	background-color: #E81414;
}
.header .phone .member-operate>li>a{
	color: #fff;
}
/*头部样式*/