html {
	width:100%;
	height:100%;
	-webkit-font-smoothing:antialiased;
	color: #FFFFFF;
}
body {
	width:100%;
	height:100%;
	font-family:Noto Sans CJK SC, Source Han Sans SC, Source Han Sans CN, sans-serif,"Microsoft YaHei","黑体","Helvetica Neue",Helvetica,STHeiTi,sans-serif;
}
* {
	margin:0;
	padding:0;
	outline:none;
	list-style:none;
}
i, em, b {
	font-style:normal;
	font-weight:normal;
}
h1, h2, h3, h4, h5, h6{
	font-size:100%;
	font-weight:normal;
}
table{
	border-collapse:collapse;  
	border-spacing:0;
}
button,input,select,textarea{
	border:none;
	font-size:100%;
	font-family:"Microsoft YaHei","黑体","Helvetica Neue",Helvetica,STHeiTi,sans-serif;
}

a{text-decoration:none;}
a:link{text-decoration:none;}
a:hover{text-decoration:none;}
a:active{text-decoration:none;}
a:visited{text-decoration:none;}

/*基本清除样式*/
.clear{
	clear:both !important;
}
.clearfix:after{
	content: '';
	clear: both !important;
	display: block;
	width: 0;
	height: 0;
	visibility: hidden;
}
.none{
	display:none !important;
}
.hidden{
	visibility:hidden !important;
}

/*页面基础样式*/

/*float 居中 父级元素需要overflow:hidden 否则可能出现横向滚动条*/
.float-center{
	position: relative;
	float: left;
	left: 50%;
}
.float-center:after{
	content: '';
	clear: both !important;
	display: block;
	width: 0;
	height: 0;
	visibility: hidden;
}
.float-center>*{
	position: relative;
	float: left;
	right: 50%;
}

/*通用页面宽度*/
.cont-wrapper{
	position: relative;
	width: 90%;
	/*width: 1200px;*/
	margin: 0 auto;
}
.wrapper{
	position: relative;
	width: 1400px;
	margin: 0 auto;
}
/*自适应页面宽度*/
.auto-wrapper{
	width: 100%;
	min-width: 1200px;
}

/*默认图片模糊*/
.img-filter{
	-webkit-filter: blur(10px);
	   -moz-filter: blur(10px);
	    -ms-filter: blur(10px);
	        filter: blur(10px);
	filter: progid:DXImageTransform.Microsoft.Blur(PixelRadius=10, MakeShadow=false);
}

.djc-ui-left{
	float: left;
}

.djc-ui-right{
	float: right;
}

.border-box{
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
}

.noMarginR{
	margin-right: 0 !important;
}
/*阴影实现*/
.block-shadow{
	-webkit-box-shadow: 0 2px 3px #CCCCCC;
	-moz-box-shadow: 0 2px 3px #CCCCCC;
	box-shadow:0 2px 3px #CCCCCC;
	filter:progid:DXImageTransform.Microsoft.Shadow(Strength=3,Direction=135,Color='#CCCCCC');/*IE7-8使用滤镜*/
}

/*超出显示省略号 必须规定宽度 only CSS3*/
.text-ignore{
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

/*使连续文字自动换行*/
.text-normal{
	word-wrap: break-word;
	word-break: break-all;
}

/* 向上的箭头 */

.arrow-top{
    display: inline-block;
    vertical-align: middle;
  	margin-left: 8px;
	font-size: 0;
	line-height: 0;
	border-width: 7px;
	border-color: #004198;
	border-top-width: 0;
	border-style: dashed;
	border-bottom-style: solid;
	border-left-color: transparent;
	border-right-color: transparent;
	cursor: pointer;
	transition: all .6s;
}
/* 向右的箭头 */

.arrow-right {
	font-size: 0;
	line-height: 0;
	border-width: 10px;
	border-color: red;
	border-right-width: 0;
	border-style: dashed;
	border-left-style: solid;
	border-top-color: transparent;
	border-bottom-color: transparent;
}
/* 向下的箭头 */

.arrow-bottom {
font-size: 0;
line-height: 0;
border-width: 10px;
border-color: red;
border-bottom-width: 0;
border-style: dashed;
border-top-style: solid;
border-left-color: transparent;
border-right-color: transparent;
}
/* 向左的箭头 */

.arrow-left {
font-size: 0;
line-height: 0;
border-width: 10px;
border-color: red;
border-left-width: 0;
border-style: dashed;
border-right-style: solid;
border-top-color: transparent;
border-bottom-color: transparent;
}

/*弹出层遮罩并且垂直居中显示*/
.pop-wraper{
	display: table;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	z-index: 9990;
	background: rgba(0,0,0,0.7);
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#b2000000,endColorstr=#b2000000);/*还是做一下IE8的兼容*/
}
.pop-outer{
	display: table-cell;
	vertical-align: middle;
}


.yzmimg { padding-left: 136px; margin-top: 30px; }
.yzmimg .txt { border: 1px solid #eaeaea; width: 150px; padding: 10px; display: inline-block; vertical-align: middle; }
.yzmimg .yzm { display: inline-block; vertical-align: middle; }