@charset "utf-8";
/* CSS Document */
/* css 初始化 */
/* 1.清除浏览器默认样式 */ 
body,ol,ul,h1,h2,h3,h4,h5,h6,p,th,td,dl,dd,form,fieldset,legend,input,button,textarea,select,img,table,div{margin:0;padding:0;}
/* 2.针对性处理 */
table { border-collapse:collapse; border-spacing:0; }
fieldset, img { border:0; }
address, caption, cite, code, dfn, var { font-weight:normal; font-style:normal; }
ol,ul{ list-style:none;}
textarea{ resize:none;}
img{ border:none; display:inline-block;/*img底部空白*/}
input,area{ outline:none; }		/* 谷歌浏览器表单元素外框 */

/* 3.设置全局样式 */
body{ font-family: "Microsoft YaHei","微软雅黑",Arial; }
a{
  text-decoration: none;
  color:#000;
}
a:hover{
	text-decoration: none;
}
a:focus{
	text-decoration: none;
}
/* 4.定义常用类 */
.w1200 { width:1200px; margin:0 auto;} /*版心*/
.w1170 { width:1170px; margin:0 auto;} /*版心*/
.w1400 { width:1400px; margin:0 auto;} /*版心*/
/*闭合浮动*/
.clearfix:after,.clearfix:before{ content: ""; display: table;} 
.clearfix:after{ clear: both;}
.cl{ clear:both;}
/*浮动*/
.pull-left{ float:left;}
.pull-right{ float:right;}
/*文字排版方向*/
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
.text-left {
  text-align: left;
}

/*文字的省略号*/
.d1{
  overflow: hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}
.d2{
		overflow: hidden;
		text-overflow:ellipsis;
		display: -webkit-box;
		-webkit-line-clamp: 2;
		-webkit-box-orient: vertical;	
}
.d3{
		overflow: hidden;
		text-overflow:ellipsis;
		display: -webkit-box;
		-webkit-line-clamp: 3;
		-webkit-box-orient: vertical;	
}
.d4{
		overflow: hidden;
		text-overflow:ellipsis;
		display: -webkit-box;
		-webkit-line-clamp: 4;
		-webkit-box-orient: vertical;	
}
.d5{
		overflow: hidden;
		text-overflow:ellipsis;
		display: -webkit-box;
		-webkit-line-clamp: 5;
		-webkit-box-orient: vertical;	
}
.d6{
		overflow: hidden;
		text-overflow:ellipsis;
		display: -webkit-box;
		-webkit-line-clamp: 6;
		-webkit-box-orient: vertical;	
}
.d7{
		overflow: hidden;
		text-overflow:ellipsis;
		display: -webkit-box;
		-webkit-line-clamp: 7;
		-webkit-box-orient: vertical;	
}
.d8{
		overflow: hidden;
		text-overflow:ellipsis;
		display: -webkit-box;
		-webkit-line-clamp: 8;
		-webkit-box-orient: vertical;	
}
.d9{
		overflow: hidden;
		text-overflow:ellipsis;
		display: -webkit-box;
		-webkit-line-clamp: 9;
		-webkit-box-orient: vertical;	
}


/*shisan*/
*{
	padding:0px;
	margin:0px;
	text-decoration: none;
	list-style:none;
	font-style: normal;
	font-weight: normal;
}

/*修改input里placeholder的值*/
input::-webkit-input-placeholder { 
	/* WebKit browsers */ 
	color: #333; 
} 
input:-moz-placeholder { 
	/* Mozilla Firefox 4 to 18 */ 
	color: #333; 
} 
input::-moz-placeholder { 
	/* Mozilla Firefox 19+ */ 
	color: #333; 
} 
input:-ms-input-placeholder { 
	/* Internet Explorer 10+ */ 
	color: #333; 
}

/*调查问卷*/
#flotage_func{
	position: fixed;
	top: 0px;
	left: 0;
	z-index: 999999;
	cursor: pointer;
	border: 1px solid red;
}
#flotage_func img{
	width: 234px;
	height: 120px;
	position: absolute;
	left: 0;
	bottom: 0;
}
#flotage_func span{
	width: 15px;
	height: 15px;
	display: block;
	/*background: url(../images/a-6.png) no-repeat;*/
	background-size: 15px 15px;
	position: absolute;
	right: 0px;
	top: 0px;
	cursor: pointer;

	border:1px solid red;
}

/*回到顶部*/
.return_func{
	display: none;
	width: 33px;
	position: fixed;
    right: 90px;
    bottom: 70px;
	z-index: 999;
	text-align: center;
	cursor: pointer;

	border: 1px solid red;
}
.return_func img{
	width: 33px;
	height: 40px;
}
.return_func span{
	color: #777777;
	font-size: 14px;
}


/*克隆横向导航栏固定在头部*/
.nav-fixed{
	display: none;
	position: fixed !important;
	top: 0 !important;
	left: 0;
}
