﻿@charset "utf-8";


html { }
html, img, fieldset { border: 0; }
html, body, form { margin: 0; padding: 0; }
body { color: #000; background-color: #fff; }
body, td { }

h1, h2, h3, h4, h5, h6 { margin: 0; padding: 0; font-size: 14px; }

ul, ol { margin: 0; padding: 5px 5px 5px 40px; }
dl, p { margin: 0; padding: 5px 0; }

a,
a:link { color: #000; text-decoration: none; }
    a:active { }
    a:hover { }
    a:visited { }

/* 浮动元素 */
.rectbox:after { content: "."; display: block; height: 0; clear: both; visibility: hidden; }
.rectbox { clear: both; *display: inline-block; }
    .rectbox .left { float: left; _display: inline; }
    .rectbox .right { float: right; _display: inline; }


/*================ Form 元素统一 =================*/
textare { overflow-y: visible; }
label { cursor: pointer; _cursor: default; }
input[type="submit"] { cursor: pointer; }
input[type="button"] { cursor: pointer; }
input[type="reset"] { cursor: pointer; }
input.submit { cursor: pointer; }
input.button { cursor: pointer; }
input.reset { cursor: pointer; }
input.disabled { cursor: default; }
input[disabled] { }
input.readonly { color: #999; border: 1px solid #ccc; background: #f3f3f3; }
input[readOnly] { color: #999; border: 1px solid #ccc; background: #f3f3f3; }
*html input { direction: expression(function(sjd){
			if(document.readyState=="complete"){
				sjd.style.direction = "ltr";                                     /* 只 执行一次*/
				sjd.className += " "+sjd.type;                            /* 根据type 类型 添加 className，弥补IE6 无法使用 [type=""] 改用 input.type */
			}
		}(this)); unicode-bidi: expression(function(sjd){
			if(document.readyState=="complete"){
				/* input  只读时 ie6 添加 className " readonly" */
				if(sjd.readOnly == true) {
					if(sjd.className.search(" readonly")==-1){sjd.className += " readonly";}
				} 
				else {if(sjd.className.search(" readonly")!=-1){sjd.className = sjd.className.replace(" readonly","")}
				} 
				/* input被禁用时 ie6 添加 className " disabled" */
				if(sjd.disabled == true) {
					if(sjd.className.search(" disabled")==-1){sjd.className += " disabled";}
				}
				else {if(sjd.className.search(" disabled")!=-1){sjd.className = sjd.className.replace(" disabled","")}
				} 
			}
		}(this)); }


/* IE6 背景图缓存优化  IE6 fixed box hack */
*html html { direction: expression(function(el){
	el.style.direction = "ltr";
	try { document.execCommand('BackgroundImageCache', false, true); } catch(e) {}
}(this)); }


/************  
	常用 类 使用  
	----------------------------

	------ A 虚线 ------
	----------------------------
		a {outline:0;zoom:expression(function(sjd){sjd.style.zoom = "1";sjd.hideFocus=true;}(this))}


	------ :first-child{} ------
	----------------------------
		div:first-child{} ;
		div.first-child{} ;
		*html div {zoom:expression(function(sjd){
			sjd.style.zoom = "1";
			if(sjd == sjd.parentNode.getElementsByTagName(sjd.tagName)[0]){sjd.className += " first-child"}
		}(this))}
		
		.className:first-child{} 
		.className_first-child{} 
		*html .className {zoom:expression(function(sjd){
			sjd.style.zoom = "1";
			if(sjd == sjd.parentNode.getElementsByTagName(sjd.tagName)[0]){sjd.className += " className_first-child"}
		}(this))}
	----------------------------

	------ :hover{} ------------
	----------------------------
		div:hover{} ;
		div.hover{} ;
		*html div {zoom:expression(function(sjd){
			sjd.style.zoom = "1";
			sjd.onmouseover =  function(){ if(!this.contains(event.fromElement)){this.className +=' hover'} };
			sjd.onmouseout  =  function(){ if(!this.contains(event.toElement)){this.className =this.className.replace(' hover','')} };
		}(this))}
		.className:hover{} 
		.className_hover{} 
		*html .className {zoom:expression(function(sjd){
			sjd.style.zoom = "1";
			sjd.onmouseover =  function(){ if(!this.contains(event.fromElement)){this.className +=' className_hover'} };
			sjd.onmouseout  =  function(){ if(!this.contains(event.toElement)){this.className =this.className.replace(' className_hover','')} };
		}(this))}

	----------------------------

	------ PNG图 ---------------
	----------------------------
	背景
	*html .className {zoom:expression( function(sjd){sjd.style.zoom=1;if (sjd.className.search(" ie6bg")==-1){sjd.className += " ie6bg"}}(this));}
	前景
	*html .className img {zoom:expression( function(sjd){sjd.style.zoom=1;if (sjd.className.search(" ie6img")==-1){sjd.className += " ie6img"}}(this));}
	
********************/

/* CSS Document
Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--> v1.0 | 20080212 */

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td { margin: 0; padding: 0; border: 0; outline: 0; font-size: 100%; vertical-align: baseline; background: transparent; }
body { line-height: 1; }
ol, ul { list-style: none; }
blockquote, q { quotes: none; }
    blockquote:before, blockquote:after,
    q:before, q:after { content: ''; content: none; }

/* remember to define focus styles! */
:focus { outline: 0; }

/* remember to highlight inserts somehow! */
ins { text-decoration: none; }
del { text-decoration: line-through; }

/* tables still need 'cellspacing="0"' in the markup */
table { border-collapse: collapse; border-spacing: 0; }


/*----------basic----------*/

.bt:hover,
.bt:hover * { cursor: pointer; text-decoration: none; opacity: 0.8; filter: alpha(opacity=80); }
    .bt:hover.lt,
    .bt:hover.lt * { opacity: 0.95; filter: alpha(opacity=95); }
    .bt:hover.gt,
    .bt:hover.gt * { opacity: 0.6; filter: alpha(opacity=60); }
.clear { clear: both; }
.flex { display: flex; }
    .flex.lt { width: 105%; }
    .flex.gt { width: 125%; }
.ht05 { height: 5px; }
.ht10 { height: 10px; }
.ht15 { height: 15px; }
.ht20 { height: 20px; }
.ht25 { height: 25px; }
.ht30 { height: 30px; }
.ht35 { height: 35px; }
.ht40 { height: 40px; }
.ht45 { height: 45px; }
.ht50 { height: 50px; }
.ht55 { height: 55px; }
.ht60 { height: 60px; }
.ht65 { height: 65px; }
.ht70 { height: 70px; }
.ht75 { height: 75px; }
.ht80 { height: 80px; }
.ht85 { height: 85px; }
.ht90 { height: 90px; }
.ht95 { height: 95px; }
.ht100 { height: 100px; }
.ht200 { height: 200px; }
.ht300 { height: 300px; }
.ht400 { height: 400px; }
.ht500 { height: 500px; }
.wh05 { display: inline-block; width: 5px; }
.wh10 { display: inline-block; width: 10px; }
.wh15 { display: inline-block; width: 15px; }
.wh20 { display: inline-block; width: 20px; }
.wh25 { display: inline-block; width: 25px; }
.wh30 { display: inline-block; width: 30px; }
.wh35 { display: inline-block; width: 35px; }
.wh40 { display: inline-block; width: 40px; }
.wh45 { display: inline-block; width: 45px; }
.wh50 { display: inline-block; width: 50px; }
.wh55 { display: inline-block; width: 55px; }
.wh60 { display: inline-block; width: 60px; }
.wh65 { display: inline-block; width: 65px; }
.wh70 { display: inline-block; width: 70px; }
.wh75 { display: inline-block; width: 75px; }
.wh80 { display: inline-block; width: 80px; }
.wh85 { display: inline-block; width: 85px; }
.wh90 { display: inline-block; width: 90px; }
.wh95 { display: inline-block; width: 95px; }
.wh100 { display: inline-block; width: 100px; }
.none { display: none; }
.hide { opacity: 0; filter: alpha(opacity=0); }
.ie-radius { border-radius: 5px; behavior: url(css/ie-css3.htc); }
.f_left { float: left; }
.f_right { float: right; }
/*----------custom----------*/

.page_banner { height: 200px; }
.page_banner1 { height: 700px; position: relative; }
.page_banner_web { text-align: center; padding-top: 90px; }
    .page_banner_web h2 { color: #fff; font-weight: normal; font-size: 30px; font-family: 方正兰亭超细黑简体; }
    .page_banner_web h3 { color: #fff; font-size: 30px; font-weight: normal; margin-top: 15px; }
        .page_banner_web h3 span { display: inline-block; width: 120px; height: 1px; line-height: 1px; background: #fff; vertical-align: middle; margin-right: 8px; }

.page_banner_web1 { text-align: center; padding-top: 90px; width:95%; margin:0 auto; }
    .page_banner_web1 h2 { font-size: 30px; font-family: 方正兰亭超细黑简体; color: #fff; }
    .page_banner_web1 h3 { font-size: 30px; font-weight: normal; color: #fff; margin-top: 20px; margin-bottom: 60px; }
        .page_banner_web1 h3 span { display: inline-block; height: 1px; line-height: 1px; width: 120px; background: #fff; vertical-align: middle; margin-right: 10px; }
    .page_banner_web1 p { font-size: 25px; color: #fff; line-height: 40px; margin-top: 20px; }
.page_banner_pic { position: absolute; left: 50%; margin-left: -425px; bottom: 40px; }
    .page_banner_pic img { display: block; }

.page_banner2 { height: 200px; }
.page_banner_web2 { text-align: center; padding-top: 90px; }
    .page_banner_web2 h3 { color: #fff; font-family: 方正兰亭超细黑简体; font-size: 30px; font-weight: normal; }
    .page_banner_web2 h4 { font-size: 30px; font-weight: normal; color: #fff; margin-top: 20px; }
        .page_banner_web2 h4 span { display: inline-block; width: 120px; height: 1px; line-height: 1px; background: #fff; vertical-align: middle; margin-right: 8px; }
    .page_banner_web2 p { font-size: 16px; color: #fff; line-height: 25px; margin-top: 35px; }
.banner_sb { background: url(../img/icon21.png) no-repeat center center; margin-top: 65px; display: none; }
    .banner_sb span { }
        .banner_sb span img { display: block; margin: 0 auto; }


.page_dqwz { padding: 37px 0; border-bottom: 1px solid #cacaca; }
    .page_dqwz p { font-size: 14px; color: #666; }
        .page_dqwz p a { color: #666; display: inline-block; }
        .page_dqwz p span { float: right; }
            .page_dqwz p span em { display: inline-block; height: 1px; line-height: 1px; width: 26px; background: #000; vertical-align: middle; margin-right: 9px; }
.cgal_tb { padding-bottom: 95px; }
    .cgal_tb ul { margin: 0 -3%; }
        .cgal_tb ul li { float: left; width: 44%; margin: 85px 3% 0; }
.cgal_tb_pic { line-height: 45px; }
    .cgal_tb_pic img { vertical-align: middle; }
.cgal_tb ul li h3 { font-size: 20px; font-weight: normal; margin-top: 25px; }
    .cgal_tb ul li h3 a { color: #010101; }
.cgal_tb ul li p { font-size: 14px; color: #666; line-height: 25px; margin-top: 25px; }
.cgal_tb ul li span { display: inline-block; margin-top: 45px; font-size: 14px; color: #666; }
.cgal_btn { text-align: center; margin-top: 125px; }
    .cgal_btn p { font-size: 14px; }
        .cgal_btn p em { display: inline-block; height: 1px; line-height: 1px; width: 26px; background: #000; vertical-align: middle; margin-right: 9px; }
        .cgal_btn p a { color: #333; }
.footer { background: url(../img/footer.jpg) no-repeat center center; background-size: cover; }
.footer_m { padding-bottom: 50px; }
.footer_logo { text-align: center; padding: 39px 0; border-bottom: 1px solid #c3c3c3; }
    .footer_logo img { }
.footer_nav { float: left; margin-top: 40px; }
    .footer_nav ul li { float: left; margin-left: 40px; }
        .footer_nav ul li:first-child { margin-left: 0; }
        .footer_nav ul li h3 { font-size: 18px; font-weight: normal; }
            .footer_nav ul li h3 a { color: #fff; }
        .footer_nav ul li ul { margin-top: 25px; }
            .footer_nav ul li ul li { float: none; margin-left: 0; margin-top: 10px; font-size: 14px; }
                .footer_nav ul li ul li a { color: #fff; }
.footer_xq { float: right; margin-right: 10px; margin-top: 40px; }
.footer_ewm { float: left; margin-top: 10px; }
    .footer_ewm img { display: block; width:126px; height:127px; }
.footer_web { float: left; margin-left: 20px; }
    .footer_web h2 { font-size: 30px; color: #fff; margin-bottom: 10px; }
    .footer_web p { font-size: 14px; color: #fff; line-height: 25px; padding-left: 34px; }
        .footer_web p.p1 { background: url(../img/icon4.png) no-repeat left center; }
        .footer_web p.p2 { background: url(../img/icon5.png) no-repeat left center; }
.footer_link { margin-top: 15px; }
    .footer_link a { margin-right: 26px; }
.footer_bq { line-height: 40px; text-align: center; background: rgba(0,0,0,0.1); }
    .footer_bq p { font-size: 12px; color: #fff; }


.wrap1 {  width: 95%; max-width: 1600px; margin: 0 auto; position: relative; }


.about_tb { margin-top: 85px; }
    .about_tb ul { margin: 0 -2%; }
        .about_tb ul li { float: left; width: 29.333%; margin: 0 2%; text-align: center; }
.about_tb_pic { }
    .about_tb_pic img { display: block; margin: 0 auto; }
.about_tb_web { background: url(../img/icon12.png) no-repeat center bottom; min-height: 140px; margin-top: 30px; }
    .about_tb_web h3 { font-size: 25px; font-weight: normal; color: #000; }
    .about_tb_web p { font-size: 14px; color: #666; line-height: 25px; margin-top: 15px; }
.about_tit { text-align: center; margin-top: 100px; }
    .about_tit h2 { font-size: 60px; color: #333; font-weight: normal; }
        .about_tit h2 span { display: inline-block; height: 1px; line-height: 1px; width: 191px; background: #5a5a5a; vertical-align: middle; margin-right: 23px; }
.about_hd { width: 75%; margin: 115px auto 0; }
.about_owl { }
    .about_owl .item { }
        .about_owl .item img { display: block; margin: 0 auto; max-width: 100%; }

    .about_owl.owl-theme .owl-controls { top: 50%; margin-top: -44px; height: 0; }
        .about_owl.owl-theme .owl-controls .owl-nav [class*=owl-] { position: absolute; margin: 0; padding: 0; }
        .about_owl.owl-theme .owl-controls .owl-nav .owl-prev { left: -60px; }
        .about_owl.owl-theme .owl-controls .owl-nav .owl-next { right: -60px; }

.about_lx { background: #509adc; padding: 33px; margin-top: 75px; }
.about_lx_m { border: 1px solid #cbe1f5; padding: 55px 0 65px; }
.about_lx_l { float: left; margin-left: 55px; }
    .about_lx_l h3 { color: #fff; font-weight: normal; font-size: 20px; line-height: 29px; }
    .about_lx_l h2 { font-size: 50px; color: #fff; font-weight: normal; margin-top: 25px; margin-bottom: 70px; }
    .about_lx_l p { font-size: 14px; color: #fff; }
        .about_lx_l p.p1 { margin-top: 10px; padding-left: 32px; line-height: 20px; background: url(../img/icon18.png) no-repeat left center; }
    .about_lx_l h4 { font-size: 30px; color: #fff; margin-top: 22px; margin-bottom: 35px; }
        .about_lx_l h4 a { margin-left: 35px; position:relative; }
            .about_lx_l h4 a span { position:absolute; top:45px; left:50%; margin-left:-65px; width:130px; height:130px; background:url(../img/ewm.png) no-repeat center center; background-size:130px 130px; display:none;  }
        .about_lx_l h4 a:hover span { display:block; }
        .about_lx_l h4 img { vertical-align: middle; margin-bottom: 5px; }
.about_lx_r { float: right; margin-right: 150px; }
    .about_lx_r p { font-size: 14px; color: #fff; margin-top: 15px; }
        .about_lx_r p:first-child { margin-top: 0; }
        .about_lx_r p.p1 { margin-top: 55px; }
    .about_lx_r h4 { font-size: 18px; font-weight: normal; color: #fff; margin-top: 15px; }
        .about_lx_r h4 span { margin-left: 35px; }
        .about_lx_r h4.h4_1 { margin-top: 45px; margin-bottom: 80px; }

.page_main { background: #fafafa; padding-top: 30px; }
    .page_main .wrap1 { background: #fff; }
.page_dsfzf { width: 80%; margin: 0 auto; padding-bottom: 130px; }
.page_web { padding-left: 60px; text-align: center; padding-top: 65px; }
    .page_web h3 { font-size: 30px; color: #999; font-weight: normal; margin-bottom: 30px; }
        .page_web h3 span { display: inline-block; border-bottom: 4px solid #689ecc; padding-bottom: 19px; min-width: 270px; white-space: nowrap; }
    .page_web p { font-size: 14px; color: #666; line-height: 25px; }
.dsfzf_tb { padding-left: 60px; }
.dsfzf_item { margin-top: 72px; }
    .dsfzf_item h3 { font-size: 20px; color: #666; position: relative; }
        .dsfzf_item h3 span { display: block; width: 38px; height: 38px; line-height: 38px; text-align: center; color: #fff; font-weight: normal; background: #2c85d4; border-radius: 40px; position: absolute; left: -60px; top: 50%; margin-top: -19px; }
.dsfzf_item_pic { margin-top: 50px; }
    .dsfzf_item_pic.dzqz_item_pic { padding-left: 20px; }
    .dsfzf_item_pic img { display: block; max-width: 100%; margin: 0 auto; }
.dsfzf_item_web { }
    .dsfzf_item_web h4 { font-size: 14px; color: #666; font-weight: normal; padding-left: 20px; background: url(../img/icon24.png) no-repeat left 9px; line-height: 25px; margin-top: 30px; }
        .dsfzf_item_web h4 span { font-weight: bold; }
    .dsfzf_item_web p { font-size: 14px; color: #666; line-height: 25px; margin-top: 30px; padding-left: 20px; }
        .dsfzf_item_web p span { color: #333; }
.kzzf_web { text-align: center; margin-top: 45px; }
    .kzzf_web p { font-size: 20px; color: #666; }
.kzzf_btn { margin-top: 45px; }
    .kzzf_btn a { margin: 0 25px; }
.jklx_btn { margin-top: 60px; }
    .jklx_btn a { margin-right: 95px; }

.wxxcx_t { height: 290px; text-align: center; padding-top: 115px; }
    .wxxcx_t h2 { font-size: 60px; font-weight: normal; color: #fff; }
    .wxxcx_t p { font-size: 50px; color: #fff; margin-top: 30px; }

.page_web_pic { margin-top: 100px; margin-bottom: 50px; }
    .page_web_pic img { display: block; margin: 0 auto; max-width: 100%; }
.yyal_tb { }
    .yyal_tb ul li { text-align: center; float: left; width: 20%; line-height: 45px; margin-top: 65px; }
        .yyal_tb ul li img { max-width: 100%; vertical-align: middle; }

.yhzf_tb { padding-bottom: 120px; }
.yhzf_item_t { text-align: center; padding-top: 65px; }
    .yhzf_item_t p { font-size: 30px; color: #fffefe; line-height: 56px; background: #f5a100; }
    .yhzf_item_t.yhzf_item_t1 p { background: #2c85d3; }
.yhzf_item { width: 83.5%; margin: 0 auto; }
.yhzf_item_pic { margin-top: 100px; }
    .yhzf_item_pic img { display: block; margin: 0 auto; max-width: 100%; }
.yhzf_item_web { text-align: center; margin-top: 105px; }
    .yhzf_item_web p { font-size: 16px; color: #666; line-height: 30px; }
.yhzf_item .page_web { padding-left: 0; padding-top: 80px; }
    .yhzf_item .page_web h3 { margin-bottom: 50px; }
    .yhzf_item .page_web p { font-size: 16px; }
.yhzf_item .dsfzf_item h3 { margin-bottom: 30px; }
.yhzf_item .dsfzf_item_web h4 { margin-top: 0; }
.dsfzf_item.dsfzf_item1 .dsfzf_item_web h4 { margin-top: 25px; }
    .dsfzf_item.dsfzf_item1 .dsfzf_item_web h4 span { color: #333; }
.dsfzf_item.dsfzf_item1 .dsfzf_item_web p { margin-top: 0; }
.cpys_item_web { }
    .cpys_item_web p { font-size: 14px; color: #999; margin-top: 8px; }
        .cpys_item_web p span { display: inline-block; width: 21px; height: 21px; line-height: 21px; text-align: center; border-radius: 21px; background: #2c85d4; color: #fff; margin-right: 20px; }
.cg_web_pic { }
    .cg_web_pic h4 { font-size: 16px; color: #666; }
    .cg_web_pic img { display: block; margin: 30px auto 0; max-width: 100%; }
.dsfzf_item_web p.p1 { color: #333; font-weight: bold; padding-left: 0; }

.news_tb { padding-bottom: 100px; }
    .news_tb ul { margin: 0 -4%; }
        .news_tb ul li { float: left; width: 42%; margin: 75px 4% 0; }
            .news_tb ul li h3 { font-size: 20px; color: #666; font-weight: normal; }
.news_tb_pic { margin-top: 20px; }
    .news_tb_pic img { display: block; width: 100%; }
.news_tb ul li h4 { color: #000; font-size: 20px; font-weight: normal; margin-top: 25px; }
.news_tb ul li p { font-size: 14px; color: #666; line-height: 20px; margin-top: 10px; min-height: 60px; overflow: hidden; }

.news_tb.zcfg_tb { }
    .news_tb.zcfg_tb ul li h4 { margin-top: 10px; }
        .news_tb.zcfg_tb ul li h4 a:hover { color: #2481d3; font-weight: bold; }

.news_xq { padding-bottom: 45px; }
.news_xq_tit { margin-top: 55px; }
    .news_xq_tit h2 { font-size: 30px; color: #333; font-weight: normal; text-align: center; }
    .news_xq_tit p { text-align: center; margin-top: 20px; }
        .news_xq_tit p span { font-size: 14px; color: #999; }
.news_xq_pic { margin-top: 60px; }
    .news_xq_pic img { display: block; margin: 0 auto; max-width: 100%; }
.news_xq_m { margin-top: 40px; }
    .news_xq_m p { font-size: 14px; color: #666; line-height: 26px; text-indent: 2em; margin-top: 20px; }
.news_xq_sx { margin-top: 80px; }
    .news_xq_sx p { font-size: 14px; margin-top: 7px; }
        .news_xq_sx p a { display: inline-block; line-height: 16px; color: #333; padding-left: 27px; }
            .news_xq_sx p a:hover { color: #2481d3; }
            .news_xq_sx p a.next { background: url(../img/icon34.png) no-repeat left center; }
            .news_xq_sx p a.prev { background: url(../img/icon35.png) no-repeat left center; }
            .news_xq_sx p a.next:hover { background: url(../img/icon34_1.png) no-repeat left center; }
            .news_xq_sx p a.prev:hover { background: url(../img/icon35_1.png) no-repeat left center; }

.page_zxpx { }
.zxpx_l { float: left; margin-left: 30px; border-left: 1px solid #cacaca; transition: all 0s; -webkit-transition: all 0s; -moz-transition: all 0s; -ms-transition: all 0s; -o-transition: all 0s; }
    .zxpx_l ul { padding-top: 30px; }
        .zxpx_l ul li { margin-left: -18px; margin-top: 50px; }
            .zxpx_l ul li a { display: block; padding-left: 48px; line-height: 36px; font-size: 16px; color: #666; }
            .zxpx_l ul li.li1 a { background: url(../img/icon38.jpg) no-repeat left center; }
            .zxpx_l ul li.li2 a { background: url(../img/icon39.jpg) no-repeat left center; }
            .zxpx_l ul li.li3 a { background: url(../img/icon40.jpg) no-repeat left center; }
            .zxpx_l ul li.li4 a { background: url(../img/icon41.jpg) no-repeat left center; }
            .zxpx_l ul li a label { display: inline-block; vertical-align: top; height: 36px; background: url(../img/icon37.jpg) no-repeat left center; width: 0; margin-right: 5px; }
            .zxpx_l ul li:hover a label, .zxpx_l ul li.in a label { width: 24px; }
            .zxpx_l ul li:hover a, .zxpx_l ul li.in a { font-size: 20px; color: #2481d3; }
            .zxpx_l ul li.li1:hover a, .zxpx_l ul li.li1.in a { background: url(../img/icon38_1.png) no-repeat left center; }
            .zxpx_l ul li.li2:hover a, .zxpx_l ul li.li2.in a { background: url(../img/icon39_1.png) no-repeat left center; }
            .zxpx_l ul li.li3:hover a, .zxpx_l ul li.li3.in a { background: url(../img/icon40_1.png) no-repeat left center; }
            .zxpx_l ul li.li4:hover a, .zxpx_l ul li.li4.in a { background: url(../img/icon41_1.png) no-repeat left center; }
.zxpx_r { padding-left: 270px; padding-top: 60px; padding-bottom: 100px; }
.zxpx_zx { }
    .zxpx_zx h3 { text-align: center; font-size: 30px; color: #333; }
    .zxpx_zx h4 { font-size: 16px; color: #333; line-height: 40px; margin-top: 50px; }
    .zxpx_zx p { font-size: 14px; color: #333; line-height: 40px; }

.zxpx_px_change { }
    .zxpx_px_change span { display: inline-block; margin-left: 15px; font-size: 14px; color: #666; cursor: pointer; }
        .zxpx_px_change span:first-child { margin-left: 0; }
        .zxpx_px_change span label { width: 0; display: inline-block; height: 14px; vertical-align: top; background: url(../img/icon37.jpg) no-repeat left center; margin-right: 5px; }
        .zxpx_px_change span:hover, .zxpx_px_change span.in { color: #2481d3; }
            .zxpx_px_change span:hover label, .zxpx_px_change span.in label { width: 22px; }
.zxpx_px_tb { margin-top: 50px; }
.zxpx_px_item { }
    .zxpx_px_item h4 { font-size: 16px; color: #333; line-height: 40px; margin-top: 50px; }
    .zxpx_px_item p { font-size: 14px; color: #333; line-height: 40px; }

.hlwjr_item { width: 1100px; }
    .hlwjr_item .dsfzf_item_web { float: left; }
        .hlwjr_item .dsfzf_item_web.dsfzf_item_web1 { margin-top: 175px; }
        .hlwjr_item .dsfzf_item_web.dsfzf_item_web2 { margin-top: 150px; }
        .hlwjr_item .dsfzf_item_web.dsfzf_item_web3 { margin-top: 80px; }
        .hlwjr_item .dsfzf_item_web.dsfzf_item_web4 { margin-top: 80px; }
        .hlwjr_item .dsfzf_item_web.dsfzf_item_web5 { margin-top: 100px; }
        .hlwjr_item .dsfzf_item_web h4 { margin-top: 20px; font-weight: bold; }
        .hlwjr_item .dsfzf_item_web p { padding-left: 0; font-size: 14px; color: #de1717; width: 500px; white-space: nowrap; position: relative; }
.hlwjr_item_pic { float: right; margin-top: 20px; width: 505px; }
    .hlwjr_item_pic img { display: block; margin: 0 auto; }
