
/* CSS Document */



a:hover{ text-decoration:none;}
/* background:rgba(0,0,0,0);filter:progid:DXImageTransform.Microsoft.gradient(startcolorstr=#7F000000,endcolorstr=#7F000000);*/
li{ list-style:none;}
.clear{ clear:both !important; height:0px !important; width:0px !important; float:none !important; margin:0px !important; padding:0px !important; border:0px !important; line-height:0 !important; position:relative !important; }
img{ vertical-align: middle;}
input:focus{ outline: none;}/*去除按钮选中的高亮标签*/
textarea:focus{ outline: none;}/*去除文本框选中的高亮标签*/
button:focus{ outline: none;}/*去除按钮选中的高亮标签*/
select:focus{ outline: none;}/*去除下拉框选中的高亮标签*/
img{vertical-align: middle;}
div,p,table,td,ul,li,span,a,ol,input,label{ padding:0px; margin:0px; border:0px;}
input::-ms-input-placeholder{ /* Internet Explorer 10+ */ color:#aaa; font-size:12px;}
input::-webkit-input-placeholder{ /* WebKit browsers */ color:#aaa; font-size:12px;}
input::-moz-placeholder{ /* Mozilla Firefox 4 to 18 */  color:#aaa; font-size:12px;}
input::-moz-placeholder{ /* Mozilla Firefox 19+ */ color:#aaa; font-size:12px;}
input::-moz-placeholder{ /* Mozilla Firefox 19+ */ color:#aaa; font-size:12px;}
textarea::-webkit-input-placeholder{color:#aaa; font-size:12px; font-family:"Helvetica Neue",Helvetica,Arial,"Microsoft Yahei","Hiragino Sans GB","Heiti SC","WenQuanYi Micro Hei"}





.fl{ float:left;}
.fr{ float:right;}
/*渐变从左向右*/
.jianbian2{
    height: 200px;
    background: -webkit-linear-gradient(to right,blue, yellow); /* Safari 5.1 - 6.0 */
    background: -o-linear-gradient(to right,blue, yellow); /* Opera 11.1 - 12.0 */
    background: -moz-linear-gradient(to right,blue, yellow); /* Firefox 3.6 - 15 */
    background: linear-gradient(to right,white, yellow); /* 标准的语法（必须放在最后） */
}

/*黑白照片*/
.gray { 
-webkit-filter: grayscale(100%); 
   -moz-filter: grayscale(100%); 
    -ms-filter: grayscale(100%); 
     -o-filter: grayscale(100%); 
        filter: grayscale(100%); 
        filter: gray; 
}

.gray:hover { 
-webkit-filter: grayscale(0%); 
   -moz-filter: grayscale(0%); 
    -ms-filter: grayscale(0%); 
     -o-filter: grayscale(0%); 
        filter: grayscale(0%); 
        filter: gray; 
}
/*圆角5px*/
.radius5{ 
-webkit-border-radius:5px; 
   -moz-border-radius:5px; 
    -ms-border-radius:5px; 
     -o-border-radius:5px; 
        border-radius:5px; 
}
/*圆角10px*/
.radius10{ 
-webkit-border-radius:10px; 
   -moz-border-radius:10px; 
    -ms-border-radius:10px; 
     -o-border-radius:10px; 
        border-radius:10px; 
}
/*图片变大*/
.tra{
-webkit-transform: scale(1);
   -moz-transform: scale(1);
    -ms-transform: scale(1);
     -o-transform: scale(1);
           filter: scale(1);
           filter: transform;
       transition: all 0.5s ease 0s;
-webkit-transform: all 0.5s ease 0s; 
	cursor:pointer;
	
}
.tra:hover{
-webkit-transform: scale(1.15);
   -moz-transform: scale(1.15);
    -ms-transform: scale(1.15);
     -o-transform: scale(1.15);
           filter: scale(1.15);
           filter: transform;
       transition: all 0.5s ease 0s;
-webkit-transform: all 0.5s ease 0s; 
	cursor:pointer;
	
}
/*透明度50%*/
.opacity5{ filter:alpha(opacity=50);-moz-opacity:0.5; -khtml-opacity:0.5;opacity: 0.5;}


/*投影*/
.shadow5{ 
		transition: all 0.3s ease 0s;
-webkit-transform: all 0.3s ease 0s; 
}

.shadow5:hover{ 
-webkit-box-shadow:rgba(0,0,0,0.05) 5px 5px 5px; 
   -moz-box-shadow:rgba(0,0,0,0.05) 5px 5px 5px; 
    -ms-box-shadow:rgba(0,0,0,0.05) 5px 5px 5px; 
     -o-box-shadow:rgba(0,0,0,0.05) 5px 5px 5px; 
        box-shadow:rgba(0,0,0,0.05) 5px 5px 5px; 
		transition: all 0.3s ease 0s;
-webkit-transform: all 0.3s ease 0s; 
}

.shadow6{ 
-webkit-box-shadow:rgba(0,0,0,0.08) 5px 5px 30px;
   -moz-box-shadow:rgba(0,0,0,0.08) 5px 5px 30px;
    -ms-box-shadow:rgba(0,0,0,0.08) 5px 5px 30px;
     -o-box-shadow:rgba(0,0,0,0.08) 5px 5px 30px;
        box-shadow:rgba(0,0,0,0.08) 5px 5px 30px;
		transition: all 0.5s ease 0s;
-webkit-transform: all 0.5s ease 0s; 
}

/*投影*/
.shadow10{ 
-webkit-box-shadow:rgba(0,0,0,0.13) 0px 0px 10px; 
   -moz-box-shadow:rgba(0,0,0,0.13) 0px 0px 10px; 
    -ms-box-shadow:rgba(0,0,0,0.13) 0px 0px 10px; 
     -o-box-shadow:rgba(0,0,0,0.13) 0px 0px 10px; 
        box-shadow:rgba(0,0,0,0.13) 0px 0px 10px; 
}
/*图片居中*/
.chuizhi{
	-webkit-align-items: center;
    display: -webkit-flex;
    -webkit-justify-content: star;
}

/*图片居中2*/
.jz{
	display:-webkit-box;
 display:-webkit-flex;
 display:-moz-box;
 display:-moz-flex;
display:-ms-flexbox;
display:flex;
/* 水平居中*/ 
	   -webkit-box-align:center;
		  -moz-box-align:center;
		   -ms-flex-pack:center;
 /* IE 10 */
 -webkit-justify-content:center; 
	-moz-justify-content:center;
	     justify-content:center;
/* IE 11+,Firefox 22+,Chrome 29+,Opera 12.1*/
/* 垂直居中 */ 
		-webkit-box-pack:center;
		  -ms-flex-align:center;
		   -moz-box-pack:center;
/* IE 10 */
	 -webkit-align-items:center;
	    -moz-align-items:center;
	    	 align-items:center;

}






/*图片翻转*/
.flip{
	-webkit-transform: rotate(0deg);
       -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
         -o-transform: rotate(0deg);
            transform: rotate(0deg);
           transition: all 0.3s ease;
    -webkit-transform: all 0.3s ease;
 }
.flip:hover{
	-webkit-transform: rotate(360deg);
       -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
         -o-transform: rotate(360deg);
            transform: rotate(360deg);
           transition: all 0.3s ease;
    -webkit-transform: all 0.3s ease;  
	cursor:pointer;
}





.indexwen{ width:920px; background:#fff}
.indexwen .indexwen_nei{ width:158px; background:#fff; padding: 0px 25px;    border: 1px solid #f3f3f3;}
.indexwen .indexwen_nei .indexwen_nei_xun .nei_xun_title{ background:url(../image/bg5.jpg) no-repeat 0% 50%; font-size:18px; color:#333; padding-left:25px; margin:15px 0px}
.indexwen .indexwen_nei .indexwen_nei_xun .nei_xun_body{ border-top:1px solid #f2f2f2; padding:10px 0px}
.indexwen .indexwen_nei .indexwen_nei_xun .nei_xun_body a{ display:inline-block; padding:6px 4px; margin-right:7px;overflow: hidden;
text-overflow:ellipsis;
white-space: nowrap;}
.indexwen .indexwen_nei .indexwen_nei_xun .nei_xun_body a:hover{ background:#ff2d2c; color:#fff; border-radius:3px}
.indexwen .indexwen_nei .indexwen_nei_xun .nei_xun_body a:nth-child(2n){ margin-right:0px}
.huid{ width: 660px; padding: 0px 25px; background:#fff;    border-bottom: 1px dashed #e7e7e7;    border-top: 1px solid #f3f3f3;}
.huid .huid_sou{ width:639px; margin:40px auto}
.huid .huid_sou .huid_sou_left{ border:1px solid #6d131d; width:497px; background:url(../image/bg6.jpg) no-repeat 3% 57%; padding-left:40px}
.huid .huid_sou .huid_sou_left .huid_sou_left_nei{ width:100%; line-height:42px; font-size:14px}
.huid .huid_sou .huid_sou_right{ width:100px}
.huid .huid_sou .huid_sou_right .huid_sou_right_nei{ line-height:44px; font-size:15px; color:#fff; width:100%; background:#b01f30; cursor:pointer}


.indexwen_bottom{ padding: 0px 25px 25px 25px}
.indexwen_bottom .indexwen_bottom_title{ font-size:24px; padding-top:20px; padding-bottom:15px}
.indexwen_bottom .indexwen_bottom_body .bottom_body_title ul li{ font-size:15px; color:#666; border:1px solid #dcdcdc; margin-right:-1px; padding:0px 15px; cursor:pointer; line-height:40px;transition: all 0.3s ease;
    -webkit-transform: all 0.3s ease; position:relative}
.indexwen_bottom .indexwen_bottom_body .bottom_body_title ul li:hover{ background:#ef5231; color:#fff;transition: all 0.3s ease;
    -webkit-transform: all 0.3s ease;}
.indexwen_bottom .indexwen_bottom_body .bottom_body_title ul li:before{ content: ""; position: absolute; bottom: -4px; left: 0; right: 0; margin: 0 auto; background: url(../image/bn6.png) no-repeat 50%; width: 8px; height: 4px; display: inline-block; opacity: 0;transition: all 0.3s ease;-webkit-transform: all 0.3s ease;}
.indexwen_bottom .indexwen_bottom_body .bottom_body_title ul li:hover:before{ opacity: 1;transition: all 0.3s ease;-webkit-transform: all 0.3s ease;}
.indexwen_bottom .indexwen_bottom_body .bottom_body_title ul li.on{ color: #fff; background: #ff3b21;}
.indexwen_bottom .indexwen_bottom_body .bottom_body_title ul li.on:before{ opacity: 1;}
.indexwen_bottom .indexwen_bottom_body .bottom_body_wen{ padding-top:15px; padding-left:15px}
.indexwen_bottom .indexwen_bottom_body .bottom_body_wen .body_wen_xun a{ display:inline-block; width:250px;overflow: hidden;
text-overflow:ellipsis;white-space: nowrap; margin-right:48px; line-height:30px}
.indexwen_bottom .indexwen_bottom_body .bottom_body_wen .body_wen_xun a:hover{ color:#ef5231}
.indexwen_bottom .indexwen_bottom_body .bottom_body_wen .body_wen_xun a:nth-child(3n){ margin-right:0px}






.huid .huid_top .huid_xun{ border-top: 1px dashed #e7e7e7; display: inline-block; padding: 33px 0px; width: 100%;}
.huid .huid_top .huid_xun:last-child{ border-bottom: 1px dashed #dcdcdc;}
.huid .huid_top .huid_xun .huid_xun_left{ width: 46px; height: 46px; border-radius: 100%; overflow: hidden;}
.huid .huid_top .huid_xun .huid_xun_left img{ width: 100%; min-height: 100%;}
.huid .huid_top .huid_xun .huid_xun_right{ width: 564px; padding-left: 15px;}
.huid .huid_top .huid_xun .huid_xun_right .xun_right_top dd span{ font-size: 12px; color: #888888; display: inline-block;overflow: hidden; line-height: 21px;}
.huid .huid_top .huid_xun .huid_xun_right .xun_right_top dd span:nth-child(3){ font-size: 16px;  color: #444444; padding-left: 10px; width: 235px;text-overflow:ellipsis;white-space: nowrap;}
.huid .huid_top .huid_xun .huid_xun_right .xun_right_top dd span:nth-child(1){ width: 80px;text-overflow:ellipsis;white-space: nowrap;}
.huid .huid_top .huid_xun .huid_xun_right .xun_right_top dt{ color: #888888; font-size: 12px;}
.huid .huid_top .huid_xun .huid_xun_right .xun_right_top dt span:nth-child(1){ padding-right: 10px;}
.huid .huid_top .huid_xun .huid_xun_right .xun_right_bottom{overflow: hidden;text-overflow:ellipsis;white-space: nowrap; padding-top: 5px; color: #888888; font-size: 12px;}
.huid .huid_bottom{width: 300px; margin: 0 auto; padding: 24px 0px;}
.huid .huid_bottom a{ font-size: 12px ; color: #888888; background: #fafafa; display: inline-block; border: 1px solid #dcdcdc;  text-align: center; line-height: 40px; width: 100%;}







.tiw{ width: 920px;}
.tiw .tiw_top{ padding: 30px 25px; position: relative; background:#fff;}
.tiw .tiw_top:before{ content: ""; background: url(../image/bn1.png) no-repeat 50% 50%; width: 36px; height: 34px; display: inline-block; position: absolute; left: 10px; top: 0;}
.tiw_top_title h1{font-size:22px;color:#333333;font-weight:bolder;}
.tiw .tiw_top .tiw_top_title{ padding-bottom: 20px; padding-left: 17px;}
.tiw .tiw_top .tiw_top_title dl dd{ font-size: 22px; color: #333333; font-weight: bolder; padding-bottom: 15px;}
.tiw .tiw_top .tiw_top_title dl dt{ font-size: 12px; color: #9399a7; line-height: 38px;}
.tiw .tiw_top .tiw_top_title dl dt div:nth-child(1){ margin-right: 10px;}
.tiw .tiw_top .tiw_top_title p{ color: #888888; font-size: 12px;}
.tiw .tiw_top .tiw_top_title p span{ padding-right: 20px;}
.tiw .tiw_top .tiw_top_title .top_title_nei{ color: #888888; font-size: 14px; padding: 25px 0px;}
.tiw .tiw_top .tiw_top_title .top_title_nei span{ color: #333333;}
.tiw .tiw_top .tiw_top_title a{ font-size: 14px; color: #6f0706; padding-top: 15px; display: inline-block;}
.tiw .tiw_top .tiw_top_title a .fa-caret-down{ padding-left: 5px; color: #996500; font-size: 12px;}
.tiw .tiw_top .tiw_top_wne{ background: #f6f6f6; padding: 13px 17px; display:none;}
.tiw .tiw_top .tiw_top_wne p{ color: #666666; font-size: 15px;}
.tiw .tiw_top .tiw_top_wne .top_wne_nei{ width: 100%; height: 110px; padding-left: 15px; padding-top: 15px; border: 1px solid #EEEEEE; margin-top: 15px;}
.tiw .tiw_top .tiw_top_wne .top_wne_bottom{ padding-top: 10px;}
.tiw .tiw_top .tiw_top_wne .top_wne_bottom .wne_bottom_left{ color: #bbbbbb; cursor: pointer;}
.tiw .tiw_top .tiw_top_wne .top_wne_bottom .wne_bottom_left i{ padding-right: 5px;}
.tiw .tiw_top .tiw_top_wne .top_wne_bottom .wne_bottom_right{ line-height: 28px;}
.tiw .tiw_top .tiw_top_wne .top_wne_bottom .wne_bottom_right dd{ font-size: 13px ;color: #888888; padding-right: 10px;}
.tiw .tiw_top .tiw_top_wne .top_wne_bottom .wne_bottom_right dd span{ color: #fe552e;}
.tiw .tiw_top .tiw_top_wne .top_wne_bottom .wne_bottom_right dt{ width: 78px;}
.tiw .tiw_top .tiw_top_wne .top_wne_bottom .wne_bottom_right dt .bottom_right_nei{ height: 28px; line-height: 28px; background: #0cb467; text-align: center; color: #fff; font-size: 13px; width: 100%; cursor: pointer;}
.tiw .tiw_bottom{ padding: 30px 40px; position: relative; margin-top: 15px; background:#fff;}
.tiw .tiw_bottom:before{ content: ""; background: url(../image/bn2.png) no-repeat 50% 50%; width: 32px; height: 29px; display: inline-block; position: absolute; left: 10px; top: 0;}
.tiw .tiw_bottom .tiw_bottom_title{ font-size: 18px; color: #333333; padding-bottom: 25px;}
.tiw .tiw_bottom .tiw_bottom_title span{ color: #ffab24;}
.tiw .tiw_bottom .tiw_bottom_wen .bottom_wen_xun .wen_xun_top .xun_top_left dd{ width: 54px; height: 54px; border-radius: 100%; overflow: hidden;}
.tiw .tiw_bottom .tiw_bottom_wen .bottom_wen_xun{ border-top: 1px dashed #dcdcdc; padding: 30px 0px;}
.tiw .tiw_bottom .tiw_bottom_wen .bottom_wen_xun:last-child{ padding-bottom: 0px;}
.tiw .tiw_bottom .tiw_bottom_wen .bottom_wen_xun .wen_xun_top .xun_top_left dd img{ width: 100%; min-height: 100%;}
.tiw .tiw_bottom .tiw_bottom_wen .bottom_wen_xun .wen_xun_top .xun_top_left dt{ padding-left: 10px;}
.tiw .tiw_bottom .tiw_bottom_wen .bottom_wen_xun .wen_xun_top .xun_top_left dt p{ font-size: 16px; color: #444444; padding-bottom: 5px;}
.tiw .tiw_bottom .tiw_bottom_wen .bottom_wen_xun .wen_xun_top .xun_top_left dt div{ font-size: 14px; color: #888888;}
.tiw .tiw_bottom .tiw_bottom_wen .bottom_wen_xun .wen_xun_top .xun_top_right span{ font-size: 14px; color: #888888;}
.tiw .tiw_bottom .tiw_bottom_wen .bottom_wen_xun .wen_xun_top .xun_top_right span:nth-child(1){ padding-right: 5px;}
.tiw .tiw_bottom .tiw_bottom_wen .bottom_wen_xun .wen_xun_nei{ color: #444444; font-size: 16px; line-height: 30px; padding-top: 10px;}
.tiw .tiw_bottom .tiw_bottom_wen .bottom_wen_xun .wen_xun_bottom{ width: 85px; line-height: 30px; line-height: 30px; border-radius: 100px; font-size: 12px; color: #444444; cursor: pointer; margin-top: 15px;}
.tiw .tiw_bottom .tiw_bottom_wen .bottom_wen_xun .wen_xun_bottom span:nth-child(1){ padding-right:10px}
.wen_xun_nei p{font-size: 16px;line-height: 32px;text-indent: 2em;padding: 6px 0px;color: #2A2A2A;}
.tiw .tiw_di{  margin-top:10px; background:#fff}
.tiw .tiw_di .tiw_di_title{ font-size:18px; color:#2a2a2a; border-bottom:1px solid #ededed; padding:15px 30px}
.tiw .tiw_di .tiw_di_body{ padding:20px 30px;}
.tiw .tiw_di .tiw_di_body .di_body_xun{ width:100%; display:inline-block; padding-bottom:15px; color:#666}
.tiw .tiw_di .tiw_di_body .di_body_xun:last-child{ padding-bottom:0px}
.tiw .tiw_di .tiw_di_body .body_xun_right span{ font-size:12px}
.tiw .tiw_di .tiw_di_body .body_xun_right span:nth-child(1){ color:#b01f30; padding-right:25px}


.tiw .tiw_bottom_jia{ background: #fff url(../image/jincia.png) no-repeat 95% 13%;}
.fenx{ position: relative; display:none;}
.fenx:hover .fenx_xiala{ display: block;}
.fenx .fenx_title{ font-size: 14px; color: #000000;}
.fenx .fenx_title .fa-share-alt{ padding-right: 10px;}
.fenx .fenx_xiala{ position: absolute; right: -85px; top: 35px; width: 137px; border: 1px solid #dcdcdc; background: #fff; font-size: 13px !important; padding-top: 0px !important; display: none;}
.fenx .fenx_xiala a{ display: inline-block; width: 100%; padding-left: 15px; color: #999999; line-height: 36px !important; width: 100% !important; margin: 0px !important; background: none !important;}
.fenx .fenx_xiala a i{ padding-right: 5px; font-size: 18px; text-align: center; display: inline-block; width: 40px;}
.fenx .fenx_xiala a .fa-weixin{ color: #1bc657;}
.fenx .fenx_xiala a .fa-weibo{ color: #dd2c1f;}
.fenx .fenx_xiala a .fa-facebook-f{ color: #6d42e5;}
.fenx .fenx_xiala a .fa-linkedin{ color: #37d8c3;}
.fenx .fenx_xiala a .fa-plus{ color: #999999;}


.fenx .fenx_xiala a:hover{ background: #f2f2f2 !important;}


.jh{ padding-top:10px}
.jh a{ display:inline-block; text-align:left; width:50%; margin-right:-4px; line-height:25px;overflow: hidden;text-overflow:ellipsis;
white-space: nowrap; color:#666}
.jh a:nth-child(2n){ text-align:right}





.tiwen{ padding:24px; background:#fff; margin-top:20px}
.tiwen dd span{ display:inline-block; font-size:24px; color:#fff; background:#ff552f; padding:4px; border-radius:5px; border:1px solid #bf6d57; margin-right:5px}
.tiwen dd span:last-child{ margin-right:0px}
.tiwen dt{ text-align:center; color:#666; padding-top:15px}
.tiwen .tiwen_bottom{ margin-top:28px}
.tiwen .tiwen_bottom a{ width:92px; line-height:34px; text-align:center; display:inline-block; color:#fe552c; border:1px solid #fe552c;transition: all 0.3s ease;
    -webkit-transform: all 0.3s ease;}
.tiwen .tiwen_bottom a:hover{ background:#fe552c; color:#fff;transition: all 0.3s ease;
    -webkit-transform: all 0.3s ease;}





.hotjh .hot_nei .hot_wen .hot_wen_xun .pic_icon{ width:105px; color:#cb0d1c; line-height:35px; border:0px solid #cb0d1c; height:auto}
.hotjh .hot_nei .hot_wen .hot_wen_xun .pic_icon i{ margin-left:5px;}

.photo li{width: 74px;margin: 0 1.5px;}





.zx{ width: 920px;}
.zx .zx_top{ border: 1px solid #ededed; overflow: hidden; background:#fff}
.zx .zx_top .zx_top_title ul li{ background: #fafafa; width: 152px; text-align: center; line-height: 45px; cursor: pointer; transition: all 0.3s ease;-webkit-transform: all 0.3s ease; position: relative; color: #333;border-left: 1px solid #ededed;border-bottom: 1px solid #ededed;}
.zx .zx_top .zx_top_title ul li:nth-child(1){ border-left:0px;}
.zx .zx_top .zx_top_title ul li:hover{ background: #fff;transition: all 0.3s ease;  -webkit-transform: all 0.3s ease; border-bottom: 1px solid #fff; color: #ff3b21;}
.zx .zx_top .zx_top_title ul li:hover:before{ opacity: 1;transition: all 0.3s ease;
    -webkit-transform: all 0.3s ease;}
.zx .zx_top .zx_top_title ul li:before{ content: ""; position: absolute; top: 0; left: 0; width: 100%; background: #ff3b21; height: 2px; opacity: 0;transition: all 0.3s ease;
    -webkit-transform: all 0.3s ease;}
.zx .zx_top .zx_top_title ul li.on{ background: #fff;transition: all 0.3s ease;  -webkit-transform: all 0.3s ease; border-bottom: 1px solid #fff; color: #ff3b21;}    
.zx .zx_top .zx_top_title ul li.on:before{ opacity: 1;}

.zx .zx_top .zx_top_wen .top_wen_xun{ line-height: 75px; width: 100%; padding: 0px 40px;}
.zx .zx_top .zx_top_wen .top_wen_xun a{ color: #666; padding-right: 20px; font-size: 12px; display: inline-block;} 
.zx .zx_top .zx_top_wen .top_wen_xun a:last-child{ padding-right: 0px;}
.zx .zx_top .zx_top_wen .top_wen_xun a:hover{ color: #ff3b21;}
.zx .zx_bottom{ margin-top: 10px; padding: 0px 30px; background:#fff; border:1px solid #ededed}
.zx .zx_bottom .zx_bottom_title{ border-bottom: 1px solid #dcdcdc;}
.zx .zx_bottom .zx_bottom_title ul li{ display: inline-block; width: 105px; text-align: center; line-height: 50px; color: #333;transition: all 0.3s ease;-webkit-transform: all 0.3s ease; position: relative; cursor: pointer;}
.zx .zx_bottom .zx_bottom_title ul li:hover{ color: #fff; background: #ff3b21;}
.zx .zx_bottom .zx_bottom_title ul li a:hover{ color: #fff; background: #ff3b21;}
.zx .zx_bottom .zx_bottom_title ul li:before{ content: ""; position: absolute; bottom: -8px; left: 0; right: 0; margin: 0 auto; background: url(../image/bn4.png) no-repeat 50%; width: 15px; height: 8px; display: inline-block; opacity: 0;transition: all 0.3s ease;-webkit-transform: all 0.3s ease;}
.zx .zx_bottom .zx_bottom_title ul li:hover:before{ opacity: 1;transition: all 0.3s ease;-webkit-transform: all 0.3s ease;}
.zx .zx_bottom .zx_bottom_title ul li.on{ color: #fff; background: #ff3b21;}
.zx .zx_bottom .zx_bottom_title ul li.on a{ color: #fff; background: #ff3b21;}
.zx .zx_bottom .zx_bottom_title ul li.on:before{ opacity: 1;}
.zx .zx_bottom .zx_bottom_wen{ padding-bottom: 63px; overflow: hidden;}
.zx .zx_bottom .zx_bottom_wen .bottom_wen_xun .wen_xun_xun{  display: inline-block; border-bottom: 1px dashed #dcdcdc; width: 100%; position: relative; padding: 25px 0px 25px 25px}
.zx .zx_bottom .zx_bottom_wen .bottom_wen_xun .wen_xun_xun:before{ content: ""; width: 8px; height: 8px; position: absolute; left: 5px; top: 32px;}
.zx .zx_bottom .zx_bottom_wen .bottom_wen_xun .wen_xun_xun:last-child{ border-bottom: 0px; padding-bottom: 0px;}
.zx .zx_bottom .zx_bottom_wen .bottom_wen_xun .wen_xun_xun dd{ padding-bottom: 10px;}
.zx .zx_bottom .zx_bottom_wen .bottom_wen_xun .wen_xun_xun dd span:nth-child(1){ font-size: 18px; color: #333;}
.zx .zx_bottom .zx_bottom_wen .bottom_wen_xun .wen_xun_xun dd span:nth-child(2){ font-size: 12px; color: #aea3ab; padding-left: 20px;}
.zx .zx_bottom .zx_bottom_wen .bottom_wen_xun .wen_xun_xun dt span:nth-child(1){ font-size: 12px; color: #333;}
.zx .zx_bottom .zx_bottom_wen .bottom_wen_xun .wen_xun_xun dt span:nth-child(1) i{ color: #ff3b21;font-style:normal;}
.zx .zx_bottom .zx_bottom_wen .bottom_wen_xun .wen_xun_xun dt span:nth-child(2){ font-size: 12px; color: #aea3ab; padding-left: 20px;}



.fenye{ padding-top: 63px;}
.fenye b{ font-weight: normal; margin-right: 5px;}
.fenye a{ display: inline-block; padding: 7px 10px; border: 1px solid #ececec; background: #fafafa; margin-right: 5px;}
.fenye a:hover{color: #fff; border: 1px solid #b01f30; background: #b01f30;}
.fenye b.on{display: inline-block; padding: 7px 10px; border: 1px solid #ececec; background: #b01f30; margin-right: 5px; color: #fff; border: 1px solid #b01f30;}
.fenye span i{ font-style: normal; color: #b01f30;}





.hotjh{ width: 920px;}
.hotjh .hot_nei{ padding: 0px 25px; background: #fff;}
.hotjh .hot_nei .hot_title{ font-size:24px; color: #0e0e0e; border-bottom:1px solid #dcdcdc; padding: 20px 0px;}
.hotjh .hot_nei .hot_title span{ font-weight: bolder; padding-right: 5px;}
.hotjh .hot_nei .hot_wen .hot_wen_xun{ padding: 25px 0px; border-bottom: 1px dashed #dcdcdc; position:relative;}
.hotjh .hot_nei .hot_wen .hot_wen_xun .pic_icon{ bottom:0; top:auto;}
.hotjh .hot_nei .hot_wen .hot_wen_xun:last-child{ border-bottom: 0px;}

.hotjh .hot_nei .hot_wen .hot_wen_xun .wen_xun_title .xun_title_top dd{ font-size: 15px; color: #4a8cda; width: 25px; height: 25px; text-align: center; line-height: 24px; border: 1px solid #4A8CDA; border-radius: 5px; margin-right: 10px;}
.hotjh .hot_nei .hot_wen .hot_wen_xun .wen_xun_title .xun_title_top dt{ color: #030102; font-size: 18px;}
.hotjh .hot_nei .hot_wen .hot_wen_xun .wen_xun_title .xun_title_top dt span{ color: #b01f30;}
.hotjh .hot_nei .hot_wen .hot_wen_xun .xun_title_bottom{ color: #99989d; padding-top: 10px; padding-bottom: 20px;}
.hotjh .hot_nei .hot_wen .hot_wen_xun .xun_title_bottom span{ color: #b01f30; font-weight: bolder; padding-right: 3px;}
.hotjh .hot_nei .hot_wen .hot_wen_xun .wen_xun_body{ text-indent: 2.5em; position: relative; line-height: 22px; color:#666; font-size:14px;}
.hotjh .hot_nei .hot_wen .hot_wen_xun .wen_xun_body.on{ height:auto !important;}
.hotjh .hot_nei .hot_wen .hot_wen_xun .wen_xun_body.in{ height:70px; overflow:hidden;}
.hotjh .hot_nei .hot_wen .hot_wen_xun .wen_xun_body:before{ content: ""; position: absolute;; left: 0; top: 0px; width: 25px; height: 25px; background: url(../image/bg3.jpg) no-repeat 50%;}
.hotjh .hot_nei .hot_wen .hot_wen_xun .wen_xun_body p:nth-child(1){ padding-top:3px;}


.hot_img{ margin-top: 10px; padding: 15px 25px; background: #fff;}
.hot_img .hot_img_title{ font-size: 15px; color: #333; border-bottom: 2px solid #dcdcdc; padding: 12px 0px; position: relative;}
.hot_img .hot_img_title:before{ content: ""; background: #b01f30; width: 132px; height: 2px; position: absolute; left: 0; bottom: -2px;}
.hot_img .hot_img_wen .img_wen_xun{ margin-top: 15px; margin-right: 10px; width: 210px; height: 140px; overflow: hidden;}
.hot_img .hot_img_wen .img_wen_xun img{ width: 100%; min-height: 100%;}
.hot_img .hot_img_wen .img_wen_xun:nth-child(4n){ margin-right: 0px;}











.jia{ color: #35ac46 !important;}
.tiw .tiw_bottom_jia:before{background: url(../image/bg7.jpg) no-repeat 50% 50% !important;}





.picshowlist{ position:absolute; bottom:25px}




