/* 未能缩小。正在返回未缩小的内容。
(1544,32): run-time error CSS1031: Expected selector, found '-->'
(1544,32): run-time error CSS1025: Expected comma or open brace, found '-->'
(1577,46): run-time error CSS1062: Expected semicolon or closing curly-brace, found '!important'
(1948,144): run-time error CSS1062: Expected semicolon or closing curly-brace, found '!important'
(2121,66): run-time error CSS1062: Expected semicolon or closing curly-brace, found '!important'
 */
.bg {
    background-color: #000;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.5;
    filter: alpha(opacity=50);
    -moz-opacity: 0.5;
}

.box {
    position: fixed;
    min-width: 400px;
    min-height: 150px;
    left: 50%;
    top: 40%;
    margin-left: -200px;
    margin-top: -75px;
    height: auto;
    z-index: 10000;
    background-color: #fff;
    border: solid 1px #dddddd;
}

.box_head {
    background-color: #f7f7f7;
    border-bottom: solid 1px #dddddd;
    padding: 10px;
}

.box_title {
    letter-spacing: 2px;
    font-size: 16px;
    font-weight: bold;
}

.box_close {
    background: url("/Images/global.png") no-repeat -218px 3px;
    float: right;
    width: 19px;
    height: 19px;
    cursor: pointer;
}

.box_content {
    min-width: 100px;
    min-height: 50px;
    color: #000000;
    font-size: 16px;
    padding: 20px;
    text-align: center;
}
/*1.位置属性(position, top, right, z-index, display, float等)
2.大小(width, height, padding, margin)
3.文字系列(font, line-height, letter-spacing, color- text-align等)
4.背景(background, border等)
5.其他(animation, transition等)*/

.bg-theme {
    background-color: #000;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.5;
    filter: alpha(opacity=50);
    -moz-opacity: 0.5;
}

.box-theme {
    position: fixed;
    left: 50%;
    top: 50%;
    z-index: 10000;
    background-color: #FF6633;
    min-width: 560px;
    min-height: 380px;
    margin-left: -280px;
    margin-top: -190px;
    border-radius: 2px;
    display: none;
}

.box-head {
    min-height: 70px;
    text-align: center;
}

.box-close {
    float: right;
    width: 20px;
    height: 20px;
    cursor: pointer;
    margin: 24px 24px 0 -44px;
    background: url(/Images/box/box-close.png) no-repeat;
    background-size: 20px 20px;
}

.box-title {
    padding: 20px;
    letter-spacing: 2px;
    font-size: 20px;
    color: #fff;
    display: inline-block;
}


    .box-title i {
        margin-right: 20px;
        float: left;
        width: 28px;
        height: 28px;
        background: url(/Images/box/success-ico.png) no-repeat center center;
        background-size: 28px 28px;
    }

.box-content {
    min-height: 260px;
    color: #AEAEAE;
    font-size: 12px;
    text-align: center;
    background-color: #FFF;
}

    .box-content ul {
        padding: 10px 0;
        line-height: 50px;
        display: inline-block;
    }

        .box-content ul li {
            height: 50px;
        }

            .box-content ul li.code-li {
                display: inline-flex;
                display: -webkit-flex;
                padding-top: 11px;
            }

            .box-content ul li:first-child {
                height: 40px;
            }

            .box-content ul li:last-child {
                line-height: normal;
                display: inline-block;
                padding: 15px 0;
            }

            .box-content ul li input {
                width: 355px;
                height: 36px;
                padding-left: 20px;
                font-size: 14px;
                border-radius: 5px;
                border: 1px solid #E4E4E4;
                -moz-box-sizing: border-box;
                box-sizing: border-box;
            }

            .box-content ul li .ipt-code {
                width: 245px;
                border-top-right-radius: 0;
                border-bottom-right-radius: 0;
                border-right: none;
            }

            .box-content ul li .btn-code {
                width: 110px;
                padding-left: 0;
                color: #FF4400;
                background: url(/Images/box/cut-line.png) no-repeat left center;
                background-size: 2px 19px;
                border-left: none;
                border-top-left-radius: 0;
                border-bottom-left-radius: 0;
            }


            .box-content ul li .btn-form {
                padding: 0;
                background-color: #FF4400;
                color: #fff;
            }

        .box-content ul .box-form-notice i {
            margin-right: 5px;
            float: left;
            width: 18px;
            height: 18px;
            background: url(/Images/chengg.png) no-repeat center center;
            background-size: 18px 18px;
        }


.box-bottom {
    min-height: 50px;
    font-size: 16px;
    text-align: center;
}

    .box-bottom span {
        line-height: 50px;
        color: #fff;
        font-size: 14px;
    }

/*错误提示 begin*/
.box-tip {
    z-index: 10001;
    position: fixed;
    margin-left: -150px;
    margin-top: -20px;
    left: 50%;
    top: 50%;
    min-width: 320px;
    height: 41px;
    color: #fff;
    border-radius: 2px;
    font-size: 14px;
    text-align: center;
    background-color: #333333;
}

    .box-tip span i {
        float: left;
        width: 20px;
        height: 20px;
        margin: 10px;
        background: url("/Images/box/tip.png") no-repeat;
        background-size: 20px 20px;
    }

    .box-tip .box-tip-img {
        float: left;
        width: 40px;
        height: 41px;
        background-color: #F7BA2C;
    }

    .box-tip .box-tip-msg {
        display: block;
        padding: 10px 0;
        font-size:14px;
    }
/*错误提示 end*/

/*成功页弹窗 begin*/

.none {
    display: none;
}

#success-box .box-content {
    font-size: 14px;
    color: #666;
}

.box-title .success-ico {
    background: url(/Images/box/success-true.png) no-repeat center center;
    background-size: 37px 28px;
}

.box-content .phone-setting {
    border: 1px solid #E4E4E4;
    width: 167px;
    line-height: 30px;
    display: inline-block;
    border-radius: 5px;
    margin: 10px;
}

.box-content .setting-selected {
    border: 1px solid #FF6633;
    background: url(/Images/box/check.png) no-repeat 102% 3px;
    background-size: 30px 30px;
}

.box-content div.show-settings div {
    height: 35px;
    line-height: 35px;
}

.box-content div.show-settings p {
    display: inline;
}

.box-content div.hide-settings {
    width: 380px;
    line-height: normal;
    padding: 20px 0;
}

.box-content input[type="radio"] {
    width: auto;
    height: 17px;
    vertical-align: middle;
    margin: 0 8px;
}

.radio {
    display: inline-block;
    float: left;
    width: 18px;
    height: 16px;
    margin: 9.5px 0px;
    background: url(/Images/protectCon_btn.png) no-repeat;
}

.show-settings p {
    margin-left: 10px;
}

.radio-selected {
    background-position: 0px -16px;
}

/*成功也弹窗 end*/
/*弹框新增二维码*/
.box-content ul li.indexBoxAR{
    height:auto;
}
.box-content ul li.indexBoxAR p{
    font-size:18px;
    color:#ff6633;
}
.box-content ul li.indexBoxAR p i{
    font-size:22px;
        font-style: normal;
}
/*账户中心弹框新增小程序码*/
.box-content ul li.Order_Xcx{
    height:auto;
    padding:15px 0 10px 0;
}
.box-content ul li.Order_Xcx img{
    float:left;
    padding-left:58px;
}
.box-content ul li.Order_Xcx .Order_XcxTxt{
    float:left;
    padding-left:15px;
    padding-top:30px;
    text-align:left;

}
.Order_XcxTxt span{
    display:block;
    font-size:18px;
    line-height:1.8em;
    color:#999999;
}

/*意见反馈弹框*/
.li-fd-content {
    padding: 10px 0px;
    height: 150px !important;
}

.fd-content {
    width: 335px;
    height: 100%;
    font-size: 14px;
    border: 1px solid #E4E4E4;
    border-radius: 5px;
    padding: 0px 10px;
    resize:none;
}

.li-fd-contact {
    height: 70px !important;
    padding: 10px 0px;
}

.fd-contact {
    height: 50px !important;
    padding-left: 10px !important;
}

.li-fd-submit {
    padding: 10px 0px;
    height: 70px !important;
}

.submit-fd {
    height: 50px !important;
}

.submit-fd {
    cursor: pointer;
}

#fd-content::-webkit-input-placeholder {
    color: #666 !important;
    line-height: 20px;
}

#fd-content:-moz-placeholder {
    color: #666 !important;
    line-height: 20px;
}

#fd-content::-moz-placeholder {
    color: #666 !important;
    line-height: 20px;
}

#fd-content:-ms-input-placeholder {
    color: #666 !important;
    line-height: 20px;
}

#zdyjg{
    margin-top:-251px;
}
.box-themeCon{
    width:100%;
    background:#fff;
}
.box-themeCon p{
    text-align:center;
}
.box-themeCon p img {
    margin:20px 0 15px;;
}
.box-themeCon .zdybj_Barrage_tip{
    font-size:14px;
    text-align:center;
    line-height:2em;
    color:#999999;
}
.zdybj_Barrage_tip i {
    color:#ff4400;
}
.box-themeCon .zdybj_Barrage_btn{
    display:block;
    width:370px;
    padding-top:30px;
    padding-bottom:40px;
    margin:0 auto;
}
.zdybj_Barrage_btn span,.zdybj_Barrage_btn a{
    float:right;
    width:150px;
    height:44px;
    font-size:15px;
    text-align:center;
    line-height:44px;
    color:#fff;
    background:#FF4400;
    border-radius:5px;
    cursor:pointer
}
.zdybj_Barrage_btn a{
    float:left;
}

/*Ã—ÃŠÃ–ÃŠÂ±ÃªÃ—Â¼Â¸Ã„Â°Ã¦2015.8.17*/
.zzbz { width:230px; background-color:#FFF; float:left; position:relative;}
.zzbz b {font-size:20px; color:#000; height:50px; line-height:50px; border-bottom:1px solid #ececec; margin:0 10px; padding:8px 8px 0 16px;}
.zzbz b span {color:#e1e1e1; font-size:14px; font-weight:normal; padding-left:10px;}
.zzbz #zzbzcx {font-size:20px; color:#000; height:50px; line-height:50px; border-bottom:1px solid #ececec; margin:0 10px; padding:8px 8px 0 16px;}
.zzbz #zzbzcx span {color:#E1E1E1;font-size:14px;font-weight:normal;padding-left:10px;}
.zzbz span{padding:10px 0 40px;}
.zzbz span p{display:block; padding:6px 15px; text-align:center;font-weight:normal;}
.zzbz span p a:hover{ color:#FFF; background-color:#ff4400; border-radius:2px; display:block;}
.zzbz span p a{line-height:34px; width:200px; height:34px; font-size:16px; color:#4c4c4c; text-align:center; display:block;}
.xiala span h3{height:auto; padding-left:20px;background:url(../images/dot.jpg) no-repeat 40px 14px;display:block; padding:6px 15px; text-align:left;font-weight:normal;}
.xiala span h3 a{font-size:13px;color:#666; line-height:22px; width:160px;height:34px; text-align:left;padding-left:35px;display:block;white-space:nowrap;}
.xiala span h3 a:hover{ font-size:13px; line-height:22px; background:#fff; color:#cc0000; text-decoration:underline;}
.xiala span h3.on1 a{ line-height:24px; width:170px; font-size:13px; text-align:left; display:block;color:#FF0000;padding-left:35px;}
.zzbz span h2.on a {background-color: #ff4400;border-radius: 2px;color: #fff;display: block;}
/*Ã–ÂªÃŠÂ¶Â¿Ã¢*/
.zsbase{ background-color:#efeff1; width:100%; padding:20px 0 20px;}
.zsbase-con{ width:1220px; margin:0 auto;}
.zsbase-l{ width:230px; background-color:#FFF; float:left; position:relative;}
.icon-knowl1,.icon-knowl2{background:url(../images/in1.gif) no-repeat; display:block;}
.icon-knowl1{ position:absolute; background-position:-316px -2px; width:24px; height:31px; top:0; left:0px;}
.icon-knowl2{ position:absolute; background-position:-312px -36px; width:31px; height:24px; bottom:0; right:0px;}
.zsbase-r{ width:970px; float:right; background-color:#ffffff;}
.zsbase-r a,p {white-space:normal; word-break:break-all;overflow:hidden; }
.zsbase-l b{ font-size:20px; color:#000; height:50px; line-height:50px; border-bottom:1px solid #ececec; margin:0 10px; padding:8px 8px 0 16px;}
.zsbase-l h1 span{ color:#e1e1e1; font-size:14px; font-weight:normal; padding-left:10px;}
.zsbase-l ul { padding:10px 0 40px;}
.zsbase-l ul li{ display:block; padding:6px 15px; text-align:center;}
.zsbase-l ul li a{ line-height:34px; width:200px; height:34px; font-size:16px; color:#4c4c4c; text-align:center; display:block;}
.zsbase-l ul li a:hover,.zsbase-l ul li a.know-hover{ color:#FFF; background-color:#ff4400; border-radius:2px; display:block;}
.zsbase-l ul .on a{ color:#FFF; background-color:#ff4400; border-radius:2px; display:block;}

/*Ã–ÂªÃŠÂ¶Â¿Ã¢ Â¿Ã¬Ã‹Ã™ÂµÂ¼ÂºÂ½*/
.zsbase-l dl a {width: 75px;line-height: 25px;border: 1px solid #eee;border-radius: 20px;display: block;float: left;margin-right: 10px;margin-bottom: 15px;text-align: center;font-size: 13px;}
.zsbase-l dl a.a1 {letter-spacing: 3px; }
.zsbase-l dl a:hover {background: #f40;border: 1px solid #f40;color: #fff;}


/*Ã—ÃŠÃ–ÃŠÂ±ÃªÃ—Â¼*/
.zsbase-l ul .xiala li{ height:auto; padding-left:20px;background:url(../images/dot.jpg) no-repeat 40px 14px}
.zsbase-l ul .xiala li a{ font-size:13px; line-height:22px; width:160px; text-align:left;padding-left:35px;}
.zsbase-l ul .xiala li a:hover{ font-size:13px; line-height:22px; background:#fff; color:#cc0000; text-decoration:underline;}
.zsbase-l ul .xiala li.on1 a{ line-height:24px; width:170px; font-size:13px; text-align:left; display:block;color:#FF0000;padding-left:35px;}

.zsbase-r ul li{margin:10px 0; padding:15px; border-bottom:1px dashed #d5d5d5;}
.zsbase-r ul li div{ font-size:18px; height:36px; line-height:36px; font-weight:normal;}
.zsbase-r ul li div.Payment_account{ height:auto;}
.zsbase-r ul li div.order_Payment{ height:auto;}
.zsbase-r ul li div a{ color:#666}
.zsbase-r ul li div a:hover{ color:#f00; text-decoration:underline}
.zsbase-r ul li .kn-time{ line-height:36px; height:36px;}
.zsbase-r ul li .kn-time span{ display:block; height:36px; float:right; padding-left:20px; overflow:hidden;}
.zsbase-r ul li .kn-time span i{ margin:12px 6px 0 0; overflow:hidden; display:block; float:left;background:url(../images/in1.gif) no-repeat; }
.zsbase-r ul li .kn-time span i.icon-k1{ background-position:-346px -2px; width:15px; height:16px;}
.zsbase-r ul li .kn-time span i.icon-k2{ background-position:-347px -19px; width:15px; height:16px;}
.zsbase-r ul li .kn-time span i.icon-k3{ background-position:-347px -39px; width:15px; height:16px;}
.zsbase-r ul li .kn-time strong{ font-size:13px; font-weight:normal;}
.zsbase-r ul li .kn-time a{ text-decoration:underline; padding:0 5px; color:#878787;}
.zsbase-r ul li .kn-time a:hover{ color:#ff9e01; text-decoration:none;}
.zsbase-r ul li p a{ font-size:14px; color:#999999; line-height:24px;}

/*ÃÃªÃ‡Ã©*/
.details-bg{ background-color:#efeff0; width:100%; }
.details-bg-dis { background-color: #efeff0;width: 100%;/*-ms-user-select: none; -webkit-touch-callout: none; -webkit-user-select: none;-khtml-user-select: none;-moz-user-select: none;user-select: none;*/}
.details-nav{ width:1120px; margin:0px auto; display:block; height:38px;}
/*.details-nav{ width:950px; margin:0px auto; display:block;}*/
.details-nav div{height:38px; font-size:14px;font-weight:normal;display:inline-block; position:relative;line-height:38px;}
.details-nav div a {color:#666666;}
.details-con{ background-color:#FFF; width:900px; float: left;}
.details-con h2{ line-height:70px; height:70px; text-align:center; font-size:34px; font-weight:700; border-bottom:1px solid #eeeeee; position:relative;color:#333;margin-top:0px;}
.details-con h1{ text-align:left; font-size:32px; font-weight:400; position:relative;color:#333}
.details-con .details-tag{display: inline-block; padding:20px 0 30px; border-top:1px solid #FFF; text-align:left; color: #797979;}
.details-con .details-tag span{ margin-right: 25px; height:24px; line-height:24px; background-color:#fff; font-size:13px;}
.details-con .details-tag span a{ color:#888}
.details-con p{ line-height:28px;margin-bottom:6px; font-size:14px;}
/*.details-dt{ line-height:34px; font-size:14px; padding-top:25px; border-top:1px solid #eeeeee;}*/
.container .details-dt,.details-dt{ width: 820px; margin:0 auto; line-height:26px; font-size:15px; padding:0px 0 30px 0px; color:#797979;font-weight:normal;}
/*.details-dt a{ font-size:14px;color:#333}*/
.details-dt span:first-child{ float: left; }
.details-dt span { float: right; }
.details-dt span a,.zzbz_details_con .details-dt span a{ font-size:15px;color:#797979 !important;}
.details-dt a:hover{ color:#ff4400 !important;}
/*.details-con .cont{padding:30px 20px;font-size: 14px;line-height:1.7em;font-family: 'Microsoft YaHei'}*/
.details-con .cont{padding:30px 20px;font-size:16px;line-height:1.7em;font-family: 'Microsoft YaHei';margin:0 20px; min-height: 300px;}
/*.details-con .cont p{font-size: 14px;font-family: 'Microsoft YaHei'}*/
.details-con .cont p{font-size: 16px;font-family: 'Microsoft YaHei'; color:#555}

.about_center_title {padding-bottom:5px;color:#bababa;font-size:22px;font-family:Microsoft Yahei;border-bottom: 1px solid #e8e8e8;}
.about_center_title span{padding-left:10px;font-size:14px;}
h5{ font-weight:400}

.right {display: inline;float: left; margin-right:10px}
.right1 {display: inline;float: right; margin-left:10px; margin-bottom:6px}
#intor p{ line-height:28px;text-indent:25px; font-size:14px}
#intor h3{ font-size:16px; font-weight:400; color:#FF6600; margin-bottom:5px}
.details-nav h2 a:hover {color:black;}
.details-conbd ul li{width:auto;background:url(/Images/xb.jpg) no-repeat; background-position:0 16px; background-size:5px 5px; background-position:left;}
.details-conbd ul li span{ padding-left:20px; font-size: 12px;}
.details-conbd li span i{display: inline-block; margin-right: 5px; background:url(/Images/zixun.png) no-repeat;}
.details-conbd li span.read_num i{ width: 19px;height: 11px; background-position: -165px -19px; }
.details-conbd li span.art_time i{ width: 14px; height:14px; background-position: -217px -17px; }

/*Â¸Ã¼Â¸Ã„Â¼Ã“ÂµÃ„Ã‘Ã¹ÃŠÂ½*/
.details-con .details-tag span a{ color:#3c72a3;}
.details-nav{width:1232px;}
.clear{clear:both;}
.Keyword{ height:60px; color:#8a8a8a; padding:0 40px 10px 40px; font-size:16px;font-weight:normal;}
.Keyword p{width:790px; height:30px; line-height:30px;font-size:16px}
.Keyword p img{width:176px; height:28px; float:right;}
.Keyword p span a{color:#6593d0;}
.Keyword p span a:hover{color:#f00; text-decoration:underline;}
.details-cons{width:320px; height:auto; float:left; padding-left:18px;margin-bottom: 10px; overflow: hidden;}
.right-bd{width:300px;padding:15px 0 12px 10px; background:#fff; margin-bottom:0px;margin-top:10px;height: auto;}
.right-bd-p{height:36px; line-height:30px; border-bottom:1px solid #b1b0b5; margin-bottom:5px;}
.right-bd-p p{
	width: 120px;
	height: 36px;
	/*border-bottom: 2px solid #ff4400;*/
	font-size: 16px;
	font-weight: 600;
	color: #666666;
	float: left;
    cursor:pointer;
}
/*.on {
    border-bottom: 2px solid #ff4400;
}*/

.right-bd-p span{width:40px; text-align:right; padding-right:5px; background:url(/Images/xtb001.png) no-repeat; background-position:left; float:right;}
.right-bd-p .right-bd-span{margin-left: 18px;width: 25px;float:left;}
.right-bd-p .right-bd-span:hover {color:#f00;cursor:pointer;}
.right-bd-p .right-bd-span-on{color:#f00;}

/*ÃˆÃˆÃƒÃ…ÃŽÃ„Ã•Ã‚ ÃÂ¼ÃŽÃ„*/
.wpp-list .thumb-li {display: inline-block;margin-bottom: 10px;padding-bottom: 10px;line-height:28px;height:auto;}
.wpp-list .thumb-a {float: left;line-height: 20px;max-height: 40px;overflow: hidden;width: 180px;}
.wpp-list .wpp-thumbnail {border: medium none;float: left;height: 66px;margin: 0 10px 0 0;width: 90px;}
.right-bd .wpp-list li span{background:none;float:none;}
.right-bd .wpp-list li span a{text-decoration:underline !important;cursor:pointer;}

.right-bd ul{width:300px;height: auto;}
.right-bd ul li{width:285px; height:36px; line-height:36px; border-bottom:1px dotted #e3e3e3; font-size:14px; overflow:hidden;}
.right-bd ul li span{width:22px; height:22px; line-height:22px; text-align:center; color:#fff; margin-top:7px; margin-right:5px; float:left; background:url(/Images/bj-c.png) no-repeat;}
.right-bd ul li .span1{width:22px; height:22px; line-height:22px; text-align:center; color:#fff; margin-top:7px; margin-right:5px; float:left; background:url(/Images/bj-h.png) no-repeat;}
.right-bd ul li a{color:#8a8a8a; text-decoration:none;width:240px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;display:inline-block;}
.right-bd ul li a:hover{color:#f00; text-decoration:overline;}
.details-conbd{width:820px; margin:0 auto; height:auto; margin-top:15px; padding-bottom:30px;border-bottom: 2px solid #eaeaea;font-weight:normal;}
.details-conbd p{ height:43px; line-height:43px; background:white; font-size:16px;}
.details-conbd p a{color:#2668c0;}
.details-conbd ul{width:776px; height:auto;}
.details-conbd ul li{ height:33px; line-height:33px; font-size:14px; color:#ccc;overflow:hidden; }

.details-conbd ul li a{color:#333; margin-right:10px; color: #797979; font-size: 14px;}
.details-conbd ul li a i{ color: #ff4400;font-size: 10px; margin-right: 8px;}
.details-conbd ul li a:hover{color:#f00; text-decoration:underline;}
.wypl{width:800px; height:370px;}


.form_line input{width:257px; height:36px;}
.select_l{width:120px; height:35px;}
.select_r{width:120px; height:35px;}
.form_btn{width:260px; height:45px; background:#f36d20; border:0; color:#fff; font-size:16px; margin-bottom:10px;}
.details-dt1{line-height:34px; font-size:14px;}
.details-dt1 a{font-size:14px;color:#333}
.details-dt1 a:hover{font-size:14px; color:#ff4400}
.index_form .form_hd{font-weight:500; margin-bottom:20px; margin-top:10px; text-align:center;}


.error_p {height: 20px; color: #ff6666;line-height:inherit !important;}
.error_bg{background:url("/Images/global.png") no-repeat scroll -252px 3px; display:inline-block; padding:0 15px;}

/*新增样式20171102郭雅南——资讯详情页面修改*/
.details_Crumbs{
	height: 60px;
	background-color: #ffffff;
}
.details_Crumbs ul{
	float: left;
	padding-left: 20px;
}
.details_Crumbs ul li{
	position: relative;
	float: left;
	margin-right: 8px;
	font-size: 14px;
	line-height: 60px;
}
.details_Crumbs ul li a{
	color: #515151;
	display: inline-block;
}
.details_Crumbs ul li.details_Cru_index{
	position: relative;
	top: 20px;
	width: 20px;
	height: 18px;
	background: url(/Images/zixun.png) no-repeat center;
	background-position: -13px -15px;
}
.details_Crumbs ul li a i{
	display: inline-block;
	margin: 0 0 0 8px;
	width: 11px;
	height: 7px;
	background:url(/Images/zixun.png) no-repeat center;
	background-position: -69px -21px;
}
.details_Crumbs ul li a:hover{
	color: #ff4400;
}
.details_Crumbs ul li div{
	display: none;
	position: absolute;
	top:43px;
	left: -9px;
	z-index: 2;
	width: 90px;
	text-align: center;
	background-color: #dddddd;
}
.details_Crumbs li div a{
	line-height:40px; 
}
.details_Crumbs ul li strong{
	font-weight: 400;
}
.details_CrumbsR_box{
	float: right;
}
.details_CrumbsR_box a{
	float: left;
	display: block;
	width: 120px;
	height: 30px;
	margin-right: 20px;
	margin-top: 14px;
	font-size: 14px;
	line-height: 30px;
	text-align: center;
	color: #ffffff !important;
	background-color: #ff4400;
	border:1px solid #ff4400;
	border-radius: 3px;
}
.details_CrumbsR_box a:first-child{
	color: #ff4400 !important;
	background-color: #ffffff;
}
.details_head{
	position: relative;
	width: 820px;
	margin:0 auto;
	padding-top: 40px;
	border-bottom: 4px solid #f2f2f2
}
.details_Recommend_link{
	width: 820px;
	margin:40px;
    margin-bottom:15px;
    font-weight:normal;
}
.details_Recommend_link .Article_tel{
	float: left;
}
.Article_tel{
	font-size: 16px;
	color: #515151;
}
.Article_tel i{
	display: inline-block;
	width: 28px;
	height: 28px;
	margin-right: 10px;
	background: url(/Images/zixun.png) no-repeat center;
	background-position: -315px -10px;
	vertical-align: middle;
}
.details_Recommend_link .details_tuij{
	float: right;
}
.details_tuij a{
	position: relative;
	display: inline-block;
	width: 120px;
	height: 30px;
	padding-left: 38px;
	margin-left: 20px;
	line-height: 28px;
}
.details_tuij a i{
	position: absolute;
	top: -1px;
	left: -1px;
	width: 30px;
	height: 30px;
	background: url(/Images/zixun.png) no-repeat center;
}
.details_tuij a.Article_zzbz{
	font-size: 16px;
	color: #1cd68c;
	border:1px solid #01d07d;
	border-radius: 30px;
}
.details_tuij a.Article_zzbz i{
	background-position: -8px -60px;
}
.details_tuij a.Article_zzbj{
	font-size: 16px;
	color: #FF7524;
	border:1px solid #FF7524;
	border-radius: 30px;
}
.details_tuij a.Article_zzbj i{
	background-position: -58px -60px;
}
.details_tuij a.Article_gszc{
	font-size: 16px;
	color: #849CFF;
	border:1px solid #849CFF;
	border-radius: 30px;
}
.details_tuij a.Article_gszc i{
	background-position: -108px -60px;
}
.art_baoj{
	width: 300px;
	border-radius: 5px;
	background-color: #ffffff;
	box-shadow: 0 0 2px 2px #ddd;
}
.art_baoj .art_baoj_con{
	width: 300px;
	border-radius: 5px;
	background-color: #ffffff;
}
.art_baoj_con .art_baoj_head{
	width: 300px;
	height: 124px;
	padding-top: 55px;
	background: url(/Images/zixun.png) no-repeat;
	background-position: 0 -102px;
	border-radius: 5px;
}
.art_baoj_con .art_baoj_head_anquan {
    background-position: 0 -238px;
}
.art_baoj_head .art_baoj_num {
    width: 200px;
    height: 50px;
    padding: 0 0 0 20px;
    margin: 0 auto;
    overflow: hidden;
    animation: mycontinue 8s infinite;
}
@keyframes mycontinue {
	0% {
	top:-0
	}
	12.5% {
	top:-50px
	}
	25% {
	top:-100px
	}
	37.5% {
	top:-150px
	}
	50% {
	top:-200px
	}
	62.5% {
	top:-250px
	}
	75% {
	top:-300px
	}
	87.5% {
	top:-350px
	}
	100% {
	top:-400px
	}
}
.art_baoj_num span{
	font-size: 28px;
	display: inline-block;
	height: 50px;
	line-height: 50px;
	color: #333;
}
.art_baoj_form{
	width: 300px;
	margin-top: 8px;
	padding: 0 13px;
	padding-bottom: 20px;
}
.art_baoj_form ul li{
	position: relative;
	margin-bottom: 15px;
}
.art_baoj_form li input,.art_baoj_form li select{
	width: 274px;
	height: 34px;
	padding-left: 14px;
	font-size: 14px;
	line-height: 33px;
	color: #333333;
	background-color: #f2f2f2;
	border:0px;
	border-radius: 5px;
}
.art_baoj_form li select{
	padding:3px 0 6px 14px;
	appearance:none;
    -moz-appearance:none;
    -webkit-appearance:none;	
}
.art_baoj_form li select option{
	padding:3px 0;
}
.art_baoj_form li i.art_form_down{
	display: block;
	position: absolute;
	top:16px;
	right: 10px;
	width: 11px;
	height: 7px;
	background:url(/Images/zixun.png) no-repeat;
	background-position: -69px -21px;
}
.art_baoj_form li.art_form_region input{
	cursor: pointer;
}
.art_region{
	width: 274px;
}
.art_region .district-select-box{
    display: none;
    position: absolute;
    top:40px;
    z-index: 6;
    width: 100%;
    background-color: #fff;
    border: 1px solid #ccc;
}
.art_region .district-select-box .district-select {
    float: left;
    width: 136px;
    height: 300px;
    font-size: 13px;
    color: #666;
    overflow: hidden;
}
.district-select h3 {
    font-weight: 400;
    text-align: center;
    line-height: 34px;
    cursor: pointer;
    border-bottom: 1px solid #dedede;
}
.art_region .district-select h3.district-on {
    border-bottom: 1px solid #f40;
}
.art_region .district-select .district-select-on {
    color: #f40;
}
.district-select-box .district-select ul {
    margin-right: 10px;
}
.district-select-box ul {
    padding: 0;
    margin-top: 10px;
    height: 256px;
    overflow: auto;
}

::-webkit-scrollbar{width:6px;height:4px}
::-webkit-scrollbar-thumb{display:block;border-radius:20px;background-color:rgba(214,214,214,1)}
.art_baoj_form li.art_region_yzm span{
	position: absolute;
	top:8px;
	right: 0;
	z-index: 2;
	width: 96px;
	height: 18px;
	text-align: center;
	color: #ff4400;
	border-left: 1px solid #333333;
	cursor: pointer;
}
.art_baoj_form li.art_region_sub input{
	margin-top: 10px;
	padding: 0px;
	font-size: 14px;
	color: #ffffff;
	background-color: #ff4400;
}
.art_news{
	width: 300px;
	margin-top: 15px;
	background-color: #ffffff;
}
.art_news .art_news_box,.artR_hotLable_box{
	height: 48px;
	line-height: 48px;
}
.art_news .art_news_box li,.artR_hotLable_box li{
	float: left;
	width: 150px;
	font-size: 16px;
	text-align: center;
	cursor: pointer;
	border-bottom: 2px solid #a1a1a1;
}
.artR_hotLable_box li a {
float:right;
margin-right:10px;
color:#999999;
font-size:14px;
}
    .art_news_box li.art_news_on, .artR_hotLable_box li.artR_hotLable_on {
        color: #ff4400;
        border-bottom: 2px solid #ff4400;
    }
.art_news_con,.artR_hotLable_con{
	margin-top: 10px;
	padding:0 15px;
}
.art_news_con .art_latest_articles,.art_news_con .art_hot_news,.artR_hotLable_con{
	padding-bottom: 20px;
}
.art_news_con .art_hot_news{
	display: none;
}
.art_news_con .art_latest_articles p,.art_news_con .art_hot_news p{
	margin-top: 15px;
}
.art_latest_articles p a,.art_hot_news p a{
	display: inline-block;
	width: 118px;
	height: 28px;
	line-height: 26px;
	font-size: 13px;
	text-align: center;
	color: #ff4400;
	border:1px solid #ff4400;
	border-radius: 3px;
}
.art_news_con ul li,.artR_hotLable_con ul li{
	padding:6px 0;
	clear:both;
}
.art_news_con li span.art_latest_txt,.artR_hotLable_con ul li span.art_latest_txt{
	width: 190px;
    font-size:14px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
    color:#666;
}
.art_news_con li span.art_latest_txt,.artR_hotLable_con li span.art_latest_txt{
	float: left;
}
.art_news_con li span.art_latest_num,.artR_hotLable_con ul li span.art_hotLable_num{
    margin-left:5px;
    color:#666;
}
.art_news_con li span.art_latest_num i{
	display: inline-block;
	width: 19px;
	height: 11px;
	margin-right: 5px;
	background:url(/Images/zixun.png) no-repeat;
	background-position: -165px -19px;
}
.art_news_con li span.art_latest_txt em{
	margin-right: 8px;
	font-size: 10px;
	color: #dddddd;
}
.art_news_con li.artR_news_Hot span.art_latest_txt em{
	color: #ff4400;
}
.art_news_con li.artR_news_Hot span.art_latest_num i{
	background-position: -113px -19px;
}
.art_news_con li a:hover{
	color: #ff4400;
}
.artR_hot_lable{
	width:300px;
	margin-top: 15px;
	background-color: #ffffff;
}
.artR_hotLable_con li span.art_latest_txt em{
	margin-right: 8px;
	font-size: 10px;
	color: #dddddd;
}
.artR_hotLable_con li span.art_hotLable_num i{
	display: inline-block;
	width: 13px;
	height: 19px;
	margin-right: 5px;
	vertical-align: middle;
	background:url(/Images/zixun.png) no-repeat;
	background-position: -269px -16px;
}
.details_QR{
	position: absolute;
	top: 0; 
	right: -40px;
	z-index: 2;
}
.details_QR .details_QR_ico{
	display: inline-block;
	width: 38px;
	height: 38px;
	background: url(/Images/zixun.png) no-repeat;
	background-position:-159px -56px;
	cursor: pointer;
}
.details_QR .details_QR_img{
	display: none;
	width: 188px;
	height: 188px;
	background: url(/Images/art_QR.jpg) no-repeat center;
	border:1px solid #e4e4e4;
}

.zzbz_details_con{ background-color:#FFF; width:970px; margin:0px auto 10px auto; float: right;}
.zzbz_details_con h2{ line-height:70px; height:70px; text-align:center; font-size:34px; font-weight:700; border-bottom:1px solid #eeeeee; position:relative;color:#333;margin-top:0px;}
.zzbz_details_con h1{ line-height:70px; height:70px; text-align:center; font-size:34px; font-weight:700; border-bottom:1px solid #eeeeee; position:relative;color:#333}
.zzbz_details_con .details-tag{ height:30px; border-top:1px solid #FFF; text-align:center;}
.zzbz_details_con .details-tag span{ display:inline-block;padding:10px 15px; background-color:#fff; font-size:14px;font-size: 12px;}
.zzbz_details_con .details-tag span a{ color:#888}
.zzbz_details_con p{ line-height:28px;margin-bottom:6px; font-size:14px;}
/*资质标准样式修改20171117郭雅南*/
.zzbz_cont{
	padding:0 40px;
}
.index{
	position: relative;
	left: 40px;
	top: 3px;
	float: left;
}
.zzbz_details_con .details-dt{
	width: 890px;
	margin-top: 20px;
}
.zzbz_share{
	float: right;
	margin-right: 35px;
}
.zzbz_details_con .details-conbd{
	width: 970px;
	margin-top: 25px;
	padding-top: 15px;
	padding-left: 40px;
	border-top: 1px solid #dddddd;
    font-weight:normal;
}
.zzbz_details_con .details-conbd p{
	height: auto;
	font-size: 16px;
}

.zsbase-wenku-r{ width:100%;}
.details-wenku-head {width:1100px;}

/*推广服务页面新增样式*/
.orderBuyProcess{
    width:100%;
}
.orderBuyProcess .orderBuy_title span{
    font-size:16px;
    font-weight:400;
}
.orderBuyProcess ul li h2{
    font-size:16px;
    font-weight:400;
    margin-bottom:10px;
}


/*行业资讯首页*/

.zs_left_wrap{
    width:900px;
  
    overflow:hidden;
}
.zs_seaction_wrap{
    width:440px;
    float:left;
    margin-right:20px;
    background:#fff;
    padding:0 15px;
    margin-bottom:20px;
}
.zs_left_wrap .zs_seaction_wrap:nth-child(2n){
    margin-right:0;
}
.zs_seaction_wrap .title{
    height:49px;
    border-bottom:1px solid #f0f0f0;
    line-height:48px;
    font-size:16px;
    color:#333;
    font-weight:bold;
}
    .zs_seaction_wrap .title h2 {
        line-height: 48px;
        font-size: 16px;
        color: #333;
        font-weight: bold;
        float:left;
    }
.zs_seaction_wrap .title a{
    display:block;
    float:right;
    height:100%;
    color:#f40;

}
.zs_seaction_list{
    width:100%;
}
.zs_seaction_list li{
    height:34px;
    line-height:34px;
    font-size:14px;
    overflow:hidden;
    position:relative;
}
    .zs_seaction_list li a {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        line-height: 34px;
        color: #666666;
        font-size: 14px;
        padding-right: 100px;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
    }
    .zs_seaction_list li span{
        float:right;
    }
    .zs_seaction_list .img_item {
      height:247px
    }
    .zs_seaction_list .img_item .img_wrap{
        width:100%;
        height:100%;
        background:#fff;
    }
        .zs_seaction_list .img_item .img_wrap img{
            width:100%;
            display:block;
        }
    .zs_seaction_list .img_item .img_a{
        padding-top:250px;
    }
        .zs_seaction_list .img_item .text {
            position:absolute;
            width:100%;
            background:rgba(0,0,0,.5);
            height:34px;
            line-height:34px;
            color:#fff;
            bottom:0;
            overflow:hidden;
        }
            .zs_seaction_list .img_item .text span:first-child {
                float: left;
                width: 310px;
                overflow: hidden;
                white-space: nowrap;
                text-overflow: ellipsis;
                display: block;
            }
            .zs_seaction_list .img_item .text span:last-child {
                width: 100px;
                float: right;
                line-height: 34px;
                overflow: hidden;
                white-space: nowrap;
                text-overflow: ellipsis;
                text-align:right;
            }

.y_zsbase-b div.zsbase-l:first-child{
    margin-top:0 !important;
   
}.y_zsbase-b div.zsbase-l{
  
    width:300px !important;
}
.left{
    float:left !important;
}
.right {
    float: right !important;
}
.y_zsbase-b{
    width:300px;
}
.w1220 {
    width: 1220px;
    margin: 0 auto;
    padding-bottom:10px;
    overflow:hidden;
}
.y_list_wrap {
    width: 900px;
    background: #fff;
}
    .y_list_wrap .zsbase-r ul li p {
        overflow: hidden;
        -webkit-line-clamp: 3;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        text-indent: 0;
    }
    .y_list_wrap .zsbase-r ul li .kn-time span:first-child{
       padding:0;
        
    }
.y_zsbase-b .artR_hot_lable{
    float:left;
    margin-top:10px;
}
/*
dl {
	border: none;
	-webkit-margin-before: 0;
	-webkit-margin-after: 0;
}
:focus {
	outline: 0
}
address, caption, cite, code, dfn, em, strong, th, var, optgroup {
	font-style: normal;
	font-weight: normal
}
h1, h2, h3, h4, h5, h6 {
	font-size: 100%;
	font-weight: normal
}
abbr, acronym {
	border: 0;
	font-variant: normal
}
input, button, textarea, select, optgroup, option {
	font-family: inherit;-----------------------
	font-size: inherit;
	font-style: inherit;
	font-weight: inherit
}
code, kbd, samp, tt {
	font-size: 100%
}
input, button, textarea, select {
*font-size:100%
}
ol, ul {
	list-style: none
}
table {
	border-collapse: collapse;
	border-spacing: 0
}
caption, th {
	text-align: left
}
sup, sub {
	font-size: 100%;
	vertical-align: baseline
}
:link, :visited, ins {
	text-decoration: none
}
blockquote, q {
	quotes: none
}
blockquote:before, blockquote:after, q:before, q:after {
	content: '';
	content: none
}

.clearfix:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden
}
.clearfix {
	display: inline-block
}
* html .clearfix {
	height: 1%
}
.clearfix {
	display: block
}
body {
	font-size: 12px;
	font-family: Tahoma, Verdana;---------------------------
	color: #000;
	background-color: #fff
}
a { 
	color: #000
}
a:hover {
	text-decoration: none;
	color: #e70
}
.wrap {
	width: 1000px;
	margin: 0 auto;
	zoom: 1;
}
.marginRight0 {
	margin-right: 0
}
.wrapGrayBg {
	height: 100%;
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	background-color: #000;
	z-index: 10000
}
.must_write {
	color: #f00;
	padding-right: 5px
}
.hidden {
	display: none !important
}
optgroup {
	color: #008000;
	background-color: #f5f5f5;
	font-weight: bold
}
option {
	color: #333;
	line-height: 1.8em;
	font-style: normal;
	font-weight: normal;
	background-color: #fff
}
#header {
	background-color: #e7e7e7
}

#footer {
	margin-top: 30px;
	height: auto
}
#footer .wrapper {
	width: 1190px;
	margin: 0 auto;
	overflow: hidden
}
#footer .friendlinks {
	text-align: center;
	margin-top: 20px
}
#footer .friendlinks a {
	font-size: 12px;
	color: #999;
	padding: 0 10px;
	border-right: 1px solid #e6e6e6
}
#footer .friendlinks a.last {
	border: none
}
#footer .footer-content {
	background: #f5f5f5;
	border-top: 1px solid #e6e6e6
}
#footer .performance {
	padding: 40px 0;
	border-bottom: 1px solid #e6e6e6;
	width: 1400px
}
#footer .performance i {
	display: block;
	width: 40px;
	height: 40px;
	position: absolute;
	top: 8px;
	left: 20px
}
#footer .performance .per {
	float: left;
	width: 465px
}
#footer .performance .per a {
	display: block
}
#footer .performance .per-1 a {
	background: url(../images/per-1.png) no-repeat;
	background-position: left
}
#footer .performance .per-2 a {
	background: url(../images/per-2.png) no-repeat;
	background-position: left
}
#footer .performance .per-3 a {
	background: url(../images/per-3.png) no-repeat;
	background-position: left
}
#footer .performance .t {
	font-size: 16px;
	line-height: 30px;
	color: #666;
	margin-left: 50px
}
#footer .performance .st {
	font-size: 14px;
	color: #999;
	line-height: 20px;
	margin-left: 50px
}
#footer .company_info {
	padding: 20px 0px
}
#footer .company_info .wrap {
	text-align: center
}
#footer .company_info .wrap a {
	color: #666;
	padding: 0 10px
}*/


/*#zhizgj_left{ float:left; width:300px; height:336px; box-shadow:0 0 10px  rgba(255, 68,0, 0.3);}
.mfhqbj{ font-size:18px; font-family:"微软雅黑", "黑体", Arial; color:#ff4400; height:40px; line-height:40px !important; border-bottom:1px solid #ff4400; text-align:center;}
.huoqbj_title{ position:relative; bottom:10px; margin-left:5px; }
.huoqbj_title a{ color:#ff4400;}
.huoqbj_title a:hover{ color:#ff4400;}
.huoqlxfs{ width:260px; margin:0 auto;}
.huoqlxfs ul{ margin-top:13px;}
.huoqlxfs ul li{ height:30px; text-align:center; margin-bottom:15px;}
.huoqlxfs ul li p{ font-size:12px; color:#F00; height:20px; line-height:28px;}
.zzgj_index_btn{ width:100%; border:1px solid #999999; height:30px; line-height:30px; border-radius:3px; padding-left:5px; font-size:14px;}
.zzgj_suozdq{ width:49%; border:1px solid #999999; height:30px; line-height:30px; border-radius:3px;}
    .zzgj_index_ljsqbtn{ width:257px; height:30px; background:#ff4400; line-height:30px; border:none; border-radius:3px; color:#FFF; font-size:14px;
margin-top:15px;
}
    */
.zzgj_index_btn{ width:100%; border:1px solid #999999; height:35px; line-height:30px; border-radius:3px; padding-left:5px; font-size:14px;}

.pt21{margin:20px 0 20px 100px;}
.kuang1{width:1150px; margin:0 auto; margin-top:30px; display:block;}
.kuanger{width:1090px; padding:20px 30px 16px; border:1px solid #e7e7e7; position:relative; padding-bottom:30px;}
.kuanger h2{border-bottom:2px solid #f40; font-family:"Microsoft YaHei"; font-size:18px; font-weight:bold; padding-bottom:10px;}
.kuanger ul{width:940px; height:55px; padding-left:150px; border-bottom:1px solid #eee; font-size:12px;}
.kuanger ul li{text-align:center; height:55px; line-height:55px; color:#333; float:left;}
.kuanger ul.ul1 li{color:#999;; height:45px; line-height:60px; font-size:14px;}
.kuanger ul li a{color:#f00;}
.kuanger i{width:53px; height:53px; background:url(/Images/lf.gif); position:absolute; left:50px; top:70px;}
.kuanger .money{width:1090px; height:35px;}
.kuanger .money p{width:220px; height:35px; line-height:35px; text-align:center; float:right; font-size:16px;}
.kuanger .money p label{width:auto; padding-top:2px;}
.kuanger .money p span{font-size:18px; color:#f00;}



<!--   资质首页页面样式（郭雅楠）2016-06-23 -->

#zhizgj_indexstyle_w1000{ width:1220px; margin:0 auto;  }
.zhizgj_top{ width:1220px; margin:0 auto; margin-top:30px;}

#zhizgj_right{ float:right; width:900px; height:336px; box-shadow:0 0 10px  rgba(255, 68,0, 0.3);}



.index_gengd{ font-size:14px; color:#666; float:right; padding-right:5px;}
.index_gengd a{ color:#666;}
.index_gengd a:hover{ color:#ff4400;}

.woyhqbj_wenz{ font-size:14px; font-family:"微软雅黑", "黑体", Arial; color:#666666;}



.zhizgj_right_left{ float:left;  width:529px; border-right:1px solid #CCC;}
.zhizgj_right_right{ float:right; width:370px;}
.zzgj_zuixzcdt_list{ margin-top:5px;}
.zzgj_zuixzcdt_list li{ list-style:none; width:370px; height:40px; line-height:40px; font-size:12px; font-family:"微软雅黑", "黑体", Arial; border-bottom:1px solid #ccc; cursor:pointer;background: url(/Images/dot.jpg) no-repeat; background-position-x: 17px; background-position-y: 18px;}
.zzgj_zuixzcdt_list li:hover{ color:#ff4400; border-bottom:1px solid #ff4400; }
.zzgj_zuixzcdt_list li a{ font-size:12px; font-family:"微软雅黑", "黑体", Arial; text-decoration:none; color:#666666; width:290px;padding-left:35px; text-overflow:ellipsis; overflow:hidden; white-space:nowrap;}
.zzgj_zuixzcdt_list li a:hover{ color:#ff4400;}
.zzgj_main{ width:1220px; margin:0 auto;}
.fuwlc{ width:1220px; margin:25px auto; margin-bottom:0px;}
.modulat-title a,.modulat-title a:hover{ color:#ff4400;}
.zzgj_jianzzzbj{width:1220px; box-shadow:0 0 10px  rgba(255, 68,0, 0.3); margin-top:15px; padding:20px;}
.zzgj_jianzzzbj_left{ float:left; height:120px;width:560px; border-right:1px solid #cccccc;}
.zzgj_jianzzzbj_right{ float:right; height:120px; width:605px; padding-left:15px;}
.zongcbzz_indexstyle{ text-align:center !important; height:120px !important; width:130px !important; font-size:18px; color:#666666; font-family:"微软雅黑", "黑体", Arial; float:left;} 
.zongcbzz_indexstyle a{ color:#ff4400}
.zongcbzz_indexstyle a:hover{ color:#ff4400;}
.zongcbzz_indexstyle img{ margin-bottom:5px; !important;}
.zongcbzzgc_list{ padding:10px 0px; width:auto;}
.zongcbzzgc_list ul li{ float:left; font-size:14px; margin-left:15px; margin-bottom:20px; width:85px; text-align:center;  font-family:"微软雅黑", "黑体", Arial;}
.zongcbzzgc_list ul li a{ color:#666666;}
.zongcbzzgc_list ul li a:hover{ color:#ff4400;}
.zhuanycbzz_liststyle ul{ padding:10px 0px;}
.zhuanycbzz_liststyle ul li{  float:left; font-size:14px; width:140px; text-align:center; margin-bottom:21px; font-family:"微软雅黑", "黑体", Arial; margin-left:5px;}
.zhuanycbzz_liststyle ul li a{ color:#666666;}
.zhuanycbzz_liststyle ul li a:hover{ color:#ff4400;}
.zzgj_jianzhyzx{ padding:15px;}
.zzgj_jianzhyzx_left{ width:395px; border-right:2px solid #cccccc; height:130px; float:left;}
.zhengcdt{ width:60px; font-size:14px; font-family:"微软雅黑", "黑体", Arial; color:#666666; height:140px; padding-top:38px; float:left; margin-right:10px;}
.zhengcdt a{ color:#666666;}
.zhengcdt img{ margin-bottom:6px; color:#666666;}
.zhengcdt img a{ color:#666666;}
.zhengcdt img a:hover{ color:#ff4400;}
.zhengcdt_list{ position:relative; bottom:8px; width:310px; float:right;}
.zhengcdt_list ul li{ float:left; width:303px; padding:0px 3px; font-family:"微软雅黑", "黑体", Arial; font-size:12px; color:#666666; border-bottom:1px solid #cccccc; height:40px; line-height:40px;}
.zhengcdt_list ul li:hover{ border-bottom:1px solid #ff4400; color:#ff4400;}
.zhengcdt_list ul li a{ width:248px; text-overflow:ellipsis; overflow:hidden; white-space:nowrap; color:#666666;}
.zhengcdt_list ul li a:hover{ color:#ff4400;}
.zzgj_jianzhyzx_zhong{ float:left; width:390px; margin-left:12px; border-right:2px solid #cccccc; height:130px;}
.zzgj_jianzhyzx_right{ float:right; width:390px; padding-left:9px;}
.womdkf{ width:1220px; margin:10px auto;}
.womdkf ul li{ float:left; width:180px; height:40px; margin-left:23px; margin-bottom:20px; text-align:center; }
.erj_nav{ background:#DDD; border:1px solid #CCC;}
.zhengcdt_list .jianzhy_news_list_gengd{ border:none; height:20px; line-height:27px;}
.zhengcdt_list .jianzhy_news_list_gengd:hover{ border:none;}
.zhengcdt_list .jianzhy_news_list_gengd span{ position:relative; }
.zhengcdt_list .zhengcdt_list_item {background: url(/Images/dot.jpg) no-repeat;background-position-x: 15px;background-position-y: 18px;}
.zhengcdt_list .zhengcdt_list_item a {padding-left:30px;}
.footer_bg{padding-top:50px;border-bottom: 1px solid #474747;}
.foot_youqlj_nav{ width:720px; float:left;margin-top:10px;}
.foot_youqlj_nav ul li{ 
	display: inline-block;
    width: 90px;
    height: 30px;
    margin-right:10px; 
    font-size: 14px;
    color: #7c7c7c;
    line-height: 30px;
    text-align: center;
    background: #1e1e1e;
  }
.foot_youqlj_nav ul li:hover{ color:#d0d0d0; background-color: #515151; cursor:pointer;}
.foot_youqlj_nav ul li a{ color:#666666;}
.foot_youqlj_nav ul li a:hover{ color:#ff4400;}
#tab_con{display: inline-block;  width:1200px; padding-left:10px; margin-top:20px; padding-right:10px;}
 
.footer_youqlj a{ color:#868787; margin-right:20px; margin-bottom: 10px; float:left;display:block;white-space:nowrap;}
.footer_youqlj a:hover{ color:#ff4400;}
.foot_youqlj_nav ul li.foot_youqlj_nav_on{ color:#d0d0d0; background-color: #515151;}
.footer_guanzwm{ float:left; color:#666666; font-size:14px; padding:34px 0 0 20px; }
/*.footer_guanzwm h3{ font-size:14px; color:#333333; height:35px; line-height:35px; margin-bottom:15px;}
*/.footer_guanzwm li{ color: #939393;}
.footer_guanzwm li a{ color:#939393; font-size: 12px; padding:0px;}
.footer_guanzwm li a:hover{ color:#ff4400;}


/*资质管家 首页头部+nav2016-06-24*/
.xian{ border-bottom:1px solid #ff4400;}
.zzgj_herd_nav{ height:58px; width:740x; float:left; padding-left:29px;}
.zzgj_herd_nav li{ font-size:18px; float:left; height:66px; line-height:66px;  text-align:center; color:#666666; width:150px;}
.zzgj_herd_nav li#li_zzdbgs{ width:165px !important; }
.zzgj_herd_nav li:hover{ border-bottom:4px solid #ff4400;}
.zzgj_herd_nav li a{ color:#666666; height:20px; }
.zzgj_herd_nav li a:hover{ color:#ff4400;}
.dianhhm{ font-size:18px; color:#ff4400; float:right; padding-right:10px; position:relative; top:13px;}
.zzgj_lianxdh{ float:right; width:125px; 	}
.nav_xian{ float:right; height:17px; line-height:17px; border:1px solid #cccccc; position:relative; top:30px; right:15px;}
.nav_xian2{ float:right; height:17px; line-height:17px; border:1px solid #cccccc; position:relative; top:30px;}
.nav_xian3{ float:right; height:17px; line-height:17px; border:1px solid #cccccc; position:relative; top:30px;}
.nav_xian4{ float:right; height:17px; line-height:17px; border:1px solid #cccccc; position:relative; top:30px; right:5px;}
.nav_xian5{ float:left; height:17px; line-height:17px; border:1px solid #cccccc; position:relative; top:30px; left:5px;}

/*资质管家nav二级导航样式——201606-28-郭雅南*/
a,img{border:0;text-decoration:none;}
body{ font: 12px/180% "微软雅黑", "黑体", Arial; }
.clearfix:after{content:".";display:block;height:0;clear:both;visibility:hidden}
.clearfix{display:inline-table}
*html .clearfix{height:1%}
.clearfix{display:block}
*+html .clearfix{min-height:1%}
.zzgj_erj_nav{position:absolute;background:#FFF;overflow:hidden;height:0; border:1px solid #e4e3e3;border-bottom:2px solid #ff5b20; border-top:none;background-size:100% auto;filter:alpha(opacity=0);opacity:0; top:67px; left:245px;}
 
.zzgj_erj_nav .cont{position:relative;padding:0px; margin-left:3px !important; padding-right:20px;}
.index-sublist li{width:100%}
.index-sublist li h3.mcate-item-hd{font-size:16px;line-height:22px;padding:20px 10px 0 10px;float:left;font-family:"微软雅黑", "黑体", Arial; width:150px; text-align:center;}
.index-sublist li h3.mcate-item-hd a{ color:#ff4400; font-family:"微软雅黑", "黑体", Arial;font-weight:normal;}
.index-sublist li p.mcate-item-bd{float:left;border-bottom:1px solid #e8e9eb;padding:15px 0;width:780px; }
.index-sublist li p.mcate-item-bd a{padding:4px 0;margin-right:22px;font-size:14px;color:#999;display:inline-block; font-family:"微软雅黑", "黑体", Arial;}
.index-sublist li p.mcate-item-bd a:hover{color:#ff4400}
.index_tis{ font-size:16px; color:#999; letter-spacing:2px; padding-top:21px !important;}


/*第二版样式*/
.chaxybj_right_nav{  height:50px; line-height:50px; border-bottom:1px solid #FD9D64; background:#fef5f2;}
.chaxybj_right_nav ul li{ float:left;font-size:16px; font-family:"微软雅黑", "黑体", Arial; letter-spacing:2px;}
.chaxybj_right_nav ul li a{ color:#333; float:left; padding:0 25px; font-size:16px; font-family:"微软雅黑", "黑体", Arial; letter-spacing:2px;}
.chaxybj_right_nav ul li a:hover{ color:#ff4400 !important;}
.head_hover{ cursor:pointer;border-bottom:4px solid #ff4400; background:#fff; height:50px; line-height:48px;}
.head_hover a{ color:#ff4400 !important}
.head_check{ cursor:pointer;border-bottom:4px solid #ff4400; background:#fff; height:50px; line-height:48px;}
.head_check a{ color:#ff4400 !important}
.chaxybj_right_nav ul li:hover{ cursor:pointer;border-bottom:3px solid #ff4400; background:#fff; height:50px; line-height:48px;}
#zizhixuzhi{ width:970px; border-top:none;}
#yongxinfuwu{ padding-bottom:30px;}
#wenxintishi{ width:970px; float:right;}
.chaxybj_right_nav .clickstyle{ color:#ff4400 !important; cursor:pointer;border-bottom:3px solid #ff4400; background:#fff; height:50px; line-height:48px;}
.weishenmyblzz{ min-height:420px; background:url(/Images/zizigh.jpg) center no-repeat;}
.weishenmyblzz ul li div{ font-size:16px; color:#ff4400; font-family:"微软雅黑", "黑体", Arial;}
.weishenmyblzz ul li{ float:left; width:206px; margin-left:94px; font-size:13px; color:#333; line-height:2.8em;}
.weishenmyblzz ul li p{ line-height:1.8em; font-family:"微软雅黑", "黑体", Arial;}
.weishenmyblzz ul{ padding-top:140px;}
.biaojb_zongj{ color:#ff4400; font-family:"微软雅黑", "黑体", Arial; font-size:14px;}
#yongxinfuwu{ box-shadow:0 0 10px  rgba(251, 94,36, 0.3); margin-top:30px; }
#shilizhanshi{ box-shadow:0 0 10px  rgba(251, 94,36, 0.3); margin-top:30px; }

.zizhixuzhi{ padding:20px 0px;}


/* 资质页面样式（郭雅楠） */

.zzdb_k{ width:1220px; margin:0 auto; padding-bottom: 70px;}
.zzdb_top{ width:1220px; margin:0 auto;margin-top:50px;}
.zzdb_left{ float:left;  width:610px; }
.zzdb_right{ float:right; width:580px;}
.zzdb_right_diz{ width:75px; font-size:16px; font-family:"微软雅黑", "黑体", Arial; height:30px; line-height:30px;}
.zzdb_top_right_leix{ float:left; width:75px; }
.zzdb_top_right_leix li{ font-size:14px; font-family:"微软雅黑", "黑体", Arial; height:30px; line-height:30px; margin-bottom:20px; }
.zzdb_zzmc_an{ height:30px; line-height:30px; text-align:center; width:170px;}
.zzdb_xiangqy{ width:1220px; margin:0 auto; margin-top:50px;}
.zzdb_xiangq_left{ float:left; width:230px;}
.zzdb_xiangq_right{ float:right; width:970px; height:auto;    border-radius:2px;font-size:14px;}
.zzdb_z{ font-size:18px; color:#ff713e; letter-spacing:3px; background:url(/Images/tijcg_wenz_bg.png) no-repeat; height:32px; line-height:32px; padding-left:15px; font-family:"微软雅黑", "黑体", Arial;}
.zzdb_xiangqjs{ margin:15px 0; margin-bottom:50px;}
.zzdb_xiangqjs p{ font-size:14px; font-family:"微软雅黑", "黑体"; line-height:1.8em; color:#666666; text-align:left;}
.zzdb_xiangqzt{ color:#ff713e;}
.zzdb_bllc{ width:640px; margin:0 auto; margin-top:50px; }
.zzdb_bllc li{ width:640px;}
.zzdb_xianslc_list{ background:url(/images/zzdb_lc1.png) no-repeat center; height:108px; margin-top:30px; padding-left:5px;}
.zzdb_xianslc_list li{ font-size:16px; height:40px; line-height:38px; float:left; width:118px; text-align:center; margin-right:40px; margin-bottom:28px; font-family:"微软雅黑", "黑体"; }
.zzdb_xianslc_list .xiansbllc_wenz_style{margin-left:8px; width:110px;}
.zzdb_banllcbt{ font-size:24px; color:#ff713e; text-align:center; letter-spacing:3px;  font-family:"微软雅黑", "黑体";}
.zzdb_banllcbt2{  font-size:24px; text-align:center; letter-spacing:3px;  color:#666666;}
.zzdb_xianslc_list2{ background:url(/images/zzdb_lc2.png) no-repeat center; height:108px;}
.zzdb_xianslc_list2 li{ font-size:12px;  height:40px; line-height:15px; float:left; width:118px; text-align:center; margin-right:40px; margin-bottom:23px; font-family:"微软雅黑", "黑体"; margin-top:5px;}
.zzdb_kuanj{ width:690px; height:500px;}
.zzdb_xuanzly{ width:640px; margin:0 auto; margin-top:50px; margin-bottom:50px;}
.zzdb_xuanzly table tr td{border:1px solid #ff713e;	padding:10px;text-align:center;	font-size:15px;	font-family:"微软雅黑", "黑体";	color:#666666;}
.zzdb_xuanzly table .zzdb_biaoglt{ border-top:2px solid #ff713e; border-left:2px solid #ff713e;}
.zzdb_xuanzly table .zzdb_biaogrt{ border-top:2px solid #ff713e; border-right:2px solid #ff713e;}
.zzdb_xuanzly table .zzdb_biaogl{ border-left:2px solid #ff713e;}
.zzdb_xuanzly table .zzdb_biaogr{ border-right:2px solid #ff713e;}
.zzdb_xuanzly table .zzdv_biaoglbr{ border-bottom:2px solid #ff713e; border-right:2px solid #ff713e; border-left:2px solid #ff713e;}
.zzdgj_diansms1{ background:url(/images/zzgj_dians1.png) no-repeat center; height:235px; margin-top:50px;}
.zzdb_dians_huij{ width:300px; height: auto; text-align:right; padding-top:45px; padding-left:30px; margin-left:100px;}
.zzgj_diansbt{ font-size:48px; font-family:"微软雅黑", "黑体", Arial; color:#ff7e50; letter-spacing:5px;height:50px;margin-bottom:25px;}
.zzgj_diansdbgs{ font-family:"微软雅黑", "黑体", Arial; font-size:24px; color:#666666;}
.zzgj_diansdbyw{ font-size:12px; font-family:Arial, Helvetica, sans-serif; color:#666666;}
.zzdgj_diansms2{ background:url(/images/zzgj_dians2.png) no-repeat center; height:250px; margin-top:10px;}
.zzdb_dians_zhuany{ width:800px; height:120px; padding-top:50px; padding-left:560px;}
.zzdgj_diansms3{ background:url(/images/zzgj_dians3.png) no-repeat center; height:222px; margin-top:10px;}
.zzdgj_diansms4{ background:url(/images/zzgj_dians4.png) no-repeat center; height:225px;}
#con4{ background:url(/images/zzgj_wenxtx.png) no-repeat center; height:232px;}
.wenxts{ padding-top:90px; padding-left:30px;}
.wenxts p{ font-size:14px; font-family:"微软雅黑", "黑体", Arial; color:#666666; line-height:1.8em; text-align:left;}
.zzlx li{ width:220px; height:36px; line-height:32px; font-size:12px; font-family:"微软雅黑", "黑体", Arial; border:1px solid #999999; border-radius:3px; float:left; margin-right:10px; text-align:center; letter-spacing:1px;}
.szdq_kuang{ margin-right:10px;}
.zzdb_zhizlx{ width:125px; height:30px; line-height:30px; text-align:center; font-size:16px; font-family:"微软雅黑", "黑体", Arial;}
.zzdb_zhizzy{ width:505px; float:right; }
.zzdb_zhizzy li{ margin-bottom:10px;}
.zhinengbaoj{ height:42px; line-height:42px;}
.zhinengbaoj_lable{float:left; position:relative; background-color:#ffa100;text-align:center;width:160px;height:35px;color:white;line-height:35px;border-radius:5px;cursor:pointer}
.zhinengbaoj_style{   height:35px; line-height:35px; margin-top:20px;  font-family:'微软雅黑', '黑体', Arial;background-color:#fff3dd;border-radius:5px;}
.mianfcxybj{ padding-top:20px;height:35px;}
.zhinengbj_wenz{ font-size:13px; color:#a0a0a0; text-align:left;  position:relative; font-family:"微软雅黑", "黑体", Arial;  border-radius:5px; height:35px; line-height:35px; padding-left:5px; width:420px;}
.baijia_wenz{ font-size:16px; color:#999999;}
.baijia_wenz lable{ font-size:18px; color:#ff4400;}
.mianfcxybj input{ width:200px; height:30px !important; color:#FFF; font-size:16px; font-family:"微软雅黑", "黑体", Arial; border:0px; background:#ff4400; border-radius:3px; margin-left:175px; line-height:30px !important;}
.mianfcxybj_wenz{ float:left; color:#a0a0a0; font-size:12px; line-height:16px; font-family:"微软雅黑", "黑体", Arial; margin-left:10px;}
.mianfcxybj_wenz2{ float:left; color:#a0a0a0; font-size:12px; line-height:16px; paddint-top:1px;}
.clearfix li.li_cur{border:1px solid red;}
.box_close2{ width:70px; height:67px; position:relative; bottom:30px; left:515px;}
.box_head2{ background:none;}
#tank_wenz{ font-size:18px; font-family:"微软雅黑", "黑体", Arial; color:#ff4400; text-align:center; position:relative; bottom:18px;}
.mianfeisq_ann{ width:450px; margin:0 auto; padding-left:10px;}
.mfsq_an{ width:190px; height:40px; background:#ff4400; border-radius:3px; border:none; font-size:16px; color:#FFF; text-align:center; font-family:"微软雅黑", "黑体", Arial; margin-right:15px;}
.pingtckj{ background:url(/images/biaoj_01.jpg) no-repeat center; width:740px; height:230px;}
.pingtckj_wenz{ font-size:24px; font-family:"微软雅黑", "黑体", Arial; color:#FFF; text-align:center; padding-top:43px;}
.pingtckj_wenz span{ color:#ff4400;}
.chakbjmx{ width:300px; height:50px; border:#337984 1px solid; border-radius:25px; font-size:24px; color:#337984; line-height:50px; font-family:"微软雅黑", "黑体", Arial; text-align:center; margin-left:220px; margin-top:45px;}
.chakbjmx a{ color:#337984;}
#baojb_xiangxb{ background:url(/images/zzdb_txz2.jpg) no-repeat center; width:740px; height:490px;}
.baojmxb{ margin-left:190px;}
.baojmxb tr td{ font-size:12px; color:#666666; border-left:1px solid #97cb5f; border-top:1px solid #97cb5f;}
.baojmxb1{ font-size:14px !important; color:#ff4400 !important;}
.baojmxb2{ font-size:14px !important; color:#ff4400 !important; text-align:center; border-right:1px solid #97cb5f; }
.baojmxb3{ border-right:1px solid #97cb5f;}
.baojmxb4{ border-bottom:1px solid #97cb5f;}
.zizhiguanjia_txz{ background:url(/images/zzdb_txz.jpg) no-repeat center; width:740px; height:320px; margin-bottom:10px;}
#options2{ background:url(/images/zzgj_wenxtx.png) no-repeat center; height:240px; padding-top:30px; margin-top:20px;}
.baojbjz{ font-family:"微软雅黑", "黑体", Arial; font-size:24px;}


/*资质报价*/
.baojia_zhuanydj{
	float: left;
	width: 500px;
	font-size: 16px;
}
.baojia_zhuanydj span{
	width: 160px;
	border:1px solid #999999;
	line-height: 26px;
	height: 30px;
	border-radius: 3px; 
	display: inline-block;
	/*text-align: center;*/
	background:url(/Images/down_baoj.png) no-repeat;
	background-position:95% 50%;
	cursor:pointer;
    font-size:14px;
    padding-left:12px;
}
.baojia_zhuanydj select{
	display: inline-block;
	width: 160px;
	line-height: 32px;
	height: 30px;
	border-radius: 3px; 
	appearance:none;
    -moz-appearance:none;
    -webkit-appearance:none;
    -webkit-text-align:center;
    padding-left: 20px;
    border:1px solid #999999;
    filter:progid:DXImageTransform.Microsoft.Alpha(opacity=0);
    filter:alpha(opacity=0);   
    -moz-opacity:0;   
    -khtml-opacity: 0;   
    opacity: 0;  
}
.baojia_zhuanydj option{
	padding-left: 20px;;
	padding-top: 3px;
	padding-bottom: 3px;
}
.baojia_zhuanydj .baojia_zizzy{
	width: 160px;
	overflow: hidden;
	float: left;
	margin-right: 6px;
	position: relative;
	display: inline-block;
}
.baojia_zhuanydj .baojia_zizzy select,.baojia_zhuanydj .baojia_zizdj select{
	position: absolute;
	left:0;
	top:0;
	filter:alpha(opacity=0);   
    -moz-opacity:0;   
    -khtml-opacity: 0;   
    opacity: 0;   
	z-index: 999;
}
.baojia_zizdj{
	position: relative;
	float: left;
}
.baojia_gongsdz{
	border:1px solid #999999;
	border-radius: 3px;
	font-size: 14px;
}
.zzdb_right #baojia_text {
    font-size: 14px;
    color: #999999;
    margin-bottom: 10px;
    position: relative;
    top: -5px;
}
.zzdb_right .zzdb_tj {
    float: left;
    width: 80px;
    height: 30px;
    color: #ffffff;
    text-align: center;
    line-height: 30px;
    background: #ffa100;
    border-radius: 5px;
    cursor:pointer;
    font-size:14px;
}
    /*.zzdb_right .zzdb_tj div {
        line-height: 30px;
        text-align: center;
        width: 80px;
    }*/
        .zzdb_right .zzdb_tj  i {
            position: relative;
            top: -2px;
            display: inline-block;
            width: 16px;
            height: 16px;
            margin-right: 8px;
            vertical-align: middle;
            background-position: -127px 0;
        }
.zzdb_right .zzdb_content {
    width: 580px;
    height: 75px;
    border: 1px solid #999999;
    margin-top: 20px;
    overflow-y: scroll;
    border-radius: 3px;
}

.zzdb_right .zzdb_content .zzdb_content_div {
    width: 270px;
    height: 30px;
    margin: 2.5px 0 0 5px;
    float: left
}
    .zzdb_right .zzdb_content .zzdb_content_div .zzdb_content_info {
        width: 240px;
        height: 30px;
        margin: 5px 0 0 5px;
        float: left;
        font-size:14px;
        line-height:30px;
        color:#ff4400;
    }
    .zzdb_right .zzdb_content .zzdb_content_div .zzdb_content_del {
        /*background-color: black;
        float: right;
        width: 20px;
        height: 30px;
        margin: 5px 0 0 5px;*/
        position: relative;
        top: 10px;
        float: left;
        width: 16px;
        height: 16px;
        background-position: -148px 0;
    }

.baojia_tis {
    padding-left: 115px;
    /*padding: 6px 0 6px 75px;*/
    color: #FF4400;
    font-size: 14px;
    margin-top:30px;
}


.zzdb_tj_ico {
    display: inline-block;
    background: url(../../Images/bjq_ico.png) no-repeat;
}
.zzdb_del_ico {
    display: inline-block;
    background: url(../../Images/bjq_ico.png) no-repeat;
}

/*  资质提交成功（郭雅楠）  */

.tijcg_wenz{ font-size:30px; font-family:"微软雅黑", "黑体", Arial; text-align:center; height:37px; line-height:37px; color:#ff4400;}
.tijcg_wenz img{ margin-right:18px;}
.zzdb_cg_wz{ font-size:16px; font-family:"微软雅黑", "黑体", Arial; width:720px; margin:0 auto; margin-top:30px; margin-bottom:20px; color:#666666;}
.zzdb_gengdxx li{ float:left !important; text-align:left!important; margin-right:15px;}
.zzdb_gengdxx li a{border-bottom-width:1px !important; padding:0 0 6 0 !important; border-bottom-style:solid !important; border-color:#ff4400; !important; color:#ff4400; }
.zzdb_qiyzc{ font-size:18px; color:#ff4400;}
.y_class label{
	border: 1px solid #d84a4a !important;
    color:#d84a4a;
	cursor: pointer;
    background:url(/Images/bj.jpg) no-repeat right 0 bottom 0;
}
.business_list {width: auto;}
.divSpace{height:25px}

.tijcg_title2{ font-size:18px; margin-top:15px; color:#666666; font-family:"微软雅黑", "黑体", Arial; }
.biaojiab{
	font-family:"微软雅黑", "黑体", Arial;
	width:910px;
	margin:0 auto;
	margin-bottom:55px;
	}
.biaojiab tr td{ 
	border:0px solid #cacaca;
	font-size:12px;
	color:#666666;
	border-left:2px solid #cacaca;
	border-top:2px solid #cacaca;}
#biaoj_title1{color:#ff4400; font-size:14px;}
#biaoj_title2{color:#ff4400; font-size:14px;}
#biaoj_title3{color:#ff4400; font-size:14px;}
#biaoj_title4{color:#ff4400; font-size:14px;}
#biaoj_title5{color:#ff4400; font-size:14px;}
#biaoj_title6{color:#ff4400; font-size:14px; border-right:2px solid #cacaca;}
#baojiabiao_biaogx{ border-right:2px solid #cacaca;}
#baojiabiao_biaogx2{ border-bottom:2px solid #cacaca;}
.biaojiab_feiyong{ width:190px; height:100px; float:right; padding-top:15px;}


/*资质管家首页加入定位——郭雅南2016-09-05*/
.dingw_title{ display:inline-block; padding-left:10px;}
.dingw_title .dingw_img{ position:relative; top:3px;}
.dingw_title a{ color:#666;}
.dingw_title .dingw_xial{ padding-left:5px;}
#city{ width:470px; border:1px solid #ccc; padding:5px 10px;  border-top:none; box-shadow:1px 1px 2px #ccc; background:#FFF; z-index:1000; display:none; position:absolute; top:36px; left:7px;}
#city .city_list{ color:#666; width:460px;}
#city .city_list a{ float:left; color:#666; width:57px !important; text-align:left; padding:4px 8px; font-size:12px;}
#city .city_list a:hover{ color:#ff4400;}


/*资质管家详情页修改——2016-09-12郭雅南*/
.xiangqy_jsq{width:850px; border:1px solid #ff4400; background:#FFF; padding:0 24px; padding-bottom:15px;}
.xiangqy_jsq h3{ color:#ff6600 !important; font-size:25px !important; font-style:italic; letter-spacing:7px; margin:0px !important; line-height:0px !important; margin-top:10px !important; border:none !important; text-align:center;  }
.xiangqy_jsq h3 .biaot_xian{ padding-right:15px; font-size:14px; font-weight:400; line-height:40px; position:relative; top:-3px;letter-spacing:-5px; color:#ff4400;}
.xiangqy_jsq h3 .biaot_xian:last-child{ padding-left:15px !important; padding-right:0px;}
.xinq_jisq_biand{ border:none; background:url(../../Images/jisq_icon.jpg) right no-repeat;}
.xiangqy_xuanzz{ width:800px; margin:0 auto;}
.xiangqy_xuanzz ul{ width:520px; margin:0 auto; margin-top:10px;}
.xiangqy_xuanzz ul li{ width:160px; height:35px; border:1px solid #878585; float:left; margin-right:20px;}
.xiangqy_xuanzz ul li:last-child{ margin-right:0px;}
.xiangqy_xuanzz ul li select{ height:33px; width:158px; border:none; padding-left:5px; font-size:14px; color:#333; line-height:33px;}
.xiangqy_jis{ text-align:center; margin-top:20px; }
.xiangqy_jis_ann{ height:35px; line-height:35px; background:#ff6600; color:#FFF; border:none; border-radius:3px; width:300px; font-size:16px;}
.jisq_baoj{ width:799px; margin:0 auto; padding-left:175px; margin-top:10px; font-size:14px !important; }
.jisq_baoj .xiangqy_baoj_wenz{ font-size:18px; color:#595757; letter-spacing:3px; margin-bottom:10px !important; height:24px !important; line-height:24px !important;}
.jisq_baoj .xiangqy_baoj_wenz .jisq_yusbj{ color:#ff4400; font-size:16px; padding-right:3px;}
.jisq_baoj  .xianqy_jisqbj_tix{ color:#9fa0a0; font-size:14px; height:20px; line-height:20px;}
.xiangqy_jisq_qitlj{ height:24px; margin-bottom:0px !important; padding-top:3px;margin-left:-120px;}
.xiangqy_jisq_qitlj a{ height:24px;color:#ff4400 !important; line-height:15px;margin-right:25px;  padding-bottom:0px !important; }
.xiangqy_jisq_qitlj a:hover {border-bottom: 1px solid #ff4400 !important;}
.xiangqy_zhongjru{ background:#fff6f1;margin-top:20px;margin-bottom:10px;margin-left:auto;margin-right:auto; color:#ff4400; padding-left:30px; padding-top:6px; padding-bottom:10px; font-family:"微软雅黑", "黑体", Arial; }
.xiangqy_zhongjru .xiangqy_zhongjru_list{ font-size:16px !important; margin-bottom:5px;}
.xiangqy_zhongjru .xiangqy_zhongjru_list div{ float:left; width:150px; margin-right:15px; line-height:1.8em;}
.xiangqy_zhongjru .xiangqy_zhongjru_list a{ color:#ff4400;  text-align:left; height:24px !important; line-height:24px !important;}
.xiangqy_zhongjru .xiangqy_zhongjru_list a:hover{border-bottom:1px solid #ff4400;}
/*根据滚动位置显示我要获取报价样式（公司列表页，咨询详情页使用）*/
.scroll{position:relative;z-index:1;}

/*资质管家首页改版2016-10-14郭雅南*/
.banner-menu{ height:98px;}
.banner-menu ul{padding:5px 0;}
.banner-menu ul li{ width:176px; padding-left:10px; border-right:1px solid #d5d4d4; height:84px; float:left; }
.jingzbj{ background:url(/images/jingzbj.gif) no-repeat right; background-position:123px 25px; }
.duojcy{ background:url(/images/guojcy.gif) no-repeat right; background-position:98px 28px;}
.yuanmjj{ background:url(/images/yuanmjj.png) no-repeat right; background-position:105px 28px; border:none !important; }
.banner-menu ul li h2{ font-size:16px; color:#333; margin-bottom:8px; font-weight:400; padding-top:5px;}
.banner-menu ul li span{ color:#666; font-size:13px; line-height:1.6em; letter-spacing:2px;}
.special-text{ color:#ff4400 !important;}
/*首页资质和资质热门城市模块*/
.zzgj-index-modular{ width:1220px; margin:0 auto;}
.modulat-title{ font-size:20px; color:#ff4400; margin-bottom:15px; padding-left:5px;}
.modulat-daibgs{ width:800px; margin-top: 40px; float:left;}
.service-gongs{ width:283px; border-right:1px solid #d5d4d4; height:150px; position:relative; float:left;}
.service-gongs:nth-child(3n+3){ border:none; width:284px;}
.service-tuig-icon{ width:49px; height:47px; z-index:-2; background:url(/images/service-icon.png) no-repeat; text-indent:-9999px; position:absolute; top:0; right:0;}
.service-gongsxx{ padding:10px; font-family:"微软雅黑", "Arial Unicode MS", "黑体"; width:280px; margin:0 auto; position:absolute; top:15%;}
.service-gongsxq-logo{ float:left; margin-right:10px;}
.service-gongsxq{ float:left;}
.service-gongsxq h2{ float:left; width:192px; overflow: hidden;text-overflow: ellipsis;white-space: nowrap;}
.service-gongsxq h2 a{ font-size:16px; color:#333333; font-weight:400;}
.service-gongsxq h2 a:hover{ color:#0088DB;}
.service-gongsxq p{ font-size:13px; color:#666666; margin-top:5px; clear:both;}
.zzgj_index_dabgs{ width:110px; line-height:30px; margin-top:10px;}
.modulat-index-city{float:right; }
.modulat-index-city-list{ font-size:13px; color:#666;}
.modulat-index-city-list ul li{ color:#666; width:123px; margin:0 auto; height:37px; line-height:37.5px; float:left; text-align:center;}
.modulat-index-city-list ul li a{ color:#666;}
.modulat-index-city-list ul li a:hover{ color:#ff4400;}
/*首页资质订单和客户评价*/
.modulat-order-list{ padding-bottom:5px;}
.modulat-order-list table{border:none;}
.modulat-order-list table tr th{ border:none; border-bottom:1px solid #fec7b6; height:43px; line-height:43px; color:#ff5e23; font-size:14px; font-weight:400;}
.modulat-order-list table tr{ border:none; height:36px; text-align:center; font-size:14px;}
.modulat-order-list table tr td{ border:none;}
.modulat-order-list table tr td:nth-child(3n+3),.modulat-order-list table tr td:nth-child(5n+5){ font-size:14px;}
.modulat-order-list table tr:last-child{ border:none; padding-bottom:5px;}
/*.modulat-evaluate-list ul li{ height:88px; border-bottom:1px solid #d5d4d4;font-size:14px; width:370px; margin:0 auto; padding-left:20px; padding-top:18px; padding-right:13px;}
.modulat-evaluate-list ul li .modulat-evaluate-icon{ float:left; margin-right:13px; position:relative; top:6px;}
.modulat-evaluate-list ul li p{ line-height:1.8em;}*/
/*首页专业报道*/
.modulat-report-list ul li{ width:610px; text-align:center; font-size:16px; color:#666; float:left; margin-bottom:20px; height:100px;}
.modulat-report-list ul li p{position:relative; top:7px;}
.modulat-report-list ul li a{color:#666;}

/*首页标题*/
.moudular-index-title{ width:1220px; margin:0 auto; margin-top:20px;}
.moudular-index-border{ box-shadow:0 0 10px  rgba(255, 68,0, 0.3);}
.moudular-index-title .modular-index-title-left{ float:left; width:850px; margin-top:25px;}
.moudular-index-title .modular-index-title-right{ float:left; width:370px; margin-top:25px;}

/*客户评价滚动*/
@-webkit-keyframes scrollText1{
0%{transform:translateY(0)}
10%{transform:translateY(-100px)}
20%{transform:translateY(-200px)}
30%{transform:translateY(-300px)}
40%{transform:translateY(-400px)}
50%{transform:translateY(-500px)}
60%{transform:translateY(-600px)}
70%{transform:translateY(-700px)}
80%{transform:translateY(-800px)}
90%{transform:translateY(-900px)}
100%{transform:translateY(-1000px)}
}
@keyframes scrollText1{
0%{transform:translateY(0)}
10%{transform:translateY(-100px)}
20%{transform:translateY(-200px)}
30%{transform:translateY(-300px)}
40%{transform:translateY(-400px)}
50%{transform:translateY(-500px)}
60%{transform:translateY(-600px)}
70%{transform:translateY(-700px)}
80%{transform:translateY(-800px)}
90%{transform:translateY(-900px)}
100%{transform:translateY(-1000px)}
}
.modulat-evaluate-list{position: relative; margin-top: 74px; width: 380px; height:183px;}
/*.modulat-evaluate-list ul{-webkit-animation:scrollText1 20s infinite cubic-bezier(1,0,.5,0);animation:scrollText1 20s infinite cubic-bezier(1,0,.5,0)}
.modulat-evaluate-list ul:hover{animation-play-state:paused;-webkit-animation-play-state:paused}
*//*企业寻证页面2016-10-25郭雅南*/
.qiyxz-content{ padding:40px 50px; font-family:"微软雅黑", "Arial Unicode MS", "黑体"; background:#FFF; margin-bottom:20px; }
.qiyxz-content .qiyxz-hs{ height:40px; font-size:16px; color:#ff4400; background:url(../../Images/qiyxz-hs.gif) no-repeat; width:215px; text-align:center; line-height:30px;} 
.qiyxz-porcess{ padding:20px 0px; border-bottom:2px solid #f3f3f3; padding-bottom:40px; }
.qiyxz-porcess ul li{ float:left; height:30px; color:#666; font-size:14px; width:200px; padding-left:5px;}
.qiyxz-porcess ul li img{ vertical-align:middle; margin-right:6px;}
.porcess1{ padding:35px 0; font-size:16px; color:#666;}
.porcess1 span{ font-size:14px; color:#999; margin-left:20px;}
.qiyxz-demandfill{ padding-left:25px;}
.qiyxz-demandfill ul li{ color:#666666; font-size:14px; font-family:"微软雅黑", "Arial Unicode MS", "黑体"; clear:both; position:relative;}
.qiyxz-demandfill ul li .regtlx{ margin-right:10px; float:left; width:75px; text-align:right;}
.required{ font-size:14px; color:#F00; font-weight:bold; line-height:36px; position:relative; top:2px; padding-right:8px;}
.qiyxz-btn{ height:36px !important; line-height:36px !important; float:left; width:300px; border:1px solid #dddddd !important; margin-bottom:15px;}
span#error_place{display:inline-block;height:18px;line-height:35px;color:red;margin-left:85px;}
/*li.li_special_need span#error_place {margin-left:85px;}*/
.qiyxz-drop-down{ width:146px; margin-right:10px;}
.qiyxz-drop-down option{ padding-left:10px;}
.smsId2{ width:110px; float:left; position:absolute; height:32px;!important; border:none; border-radius:5px; font-size:13px; padding:0 1px; top:2px; left:273px;}
.smsId2:hover {background-color:#ff4400;color:white;}
.qiyxz-btn-submit{ height:40px; border:none !important; font-size:16px; text-align:center;}
/*弹幕*/
.popover-qiyxz{ background:#FFF; border-radius:5px; height:305px; position:fixed; top:50%;}
.qiyxz-close{ position:relative; top:20px !important; left:-20px !important; }
.qiyxz-xuqfbcg{ font-family:"微软雅黑", "Arial Unicode MS", "黑体"; font-size:32px; letter-spacing:2px;}
.qiyxz-tank_wenz{ margin-top:10px;}
.qiyxz-tank_wenz p{  font-size:18px !important; height:auto !important; line-height:2em !important; text-align:center; color:#666;}
.qiyxz_tk_btn input{ padding:10px 120px !important; margin-right:0px !important; font-family:"微软雅黑", "Arial Unicode MS", "黑体"; font-size:22px; letter-spacing:1px;}


/*/*2016-11-07资质管家首页改动样式*/
.mfhqbj2{ font-size:18px; font-family:"微软雅黑", "黑体", Arial; color:#ff4400; height:40px; line-height:40px !important; border-bottom:1px solid #ff4400; text-align:left; padding-left:23px; position:relative;}
.mfhqbj2 img{ vertical-align:text-bottom; float:left;}
.mfhqbj2 .huoqbj_title2{ float:left; padding-left:10px;}
.mfhqbj2 .index-woyxz{ float:right; padding-right:10px; font-size:14px;}
.mfhqbj2 .index-woyxz a{ color:#ff4400;}
.mfhqbj2 .index-woyxz a:hover{ color:#ff4400;}
.zzgj_jianzzzbj .index-more-ziz{ padding-top:15px;}
.zzgj_jianzzzbj .index-more-ziz a{ font-size:15px; color:#ff4400; padding:0 19px;}
.zzgj_jianzzzbj .index-more-ziz a:first-child{ font-size:16px; color:#666;}

.index-head-ziz{ padding-top:15px;}
.index-head-ziz a{ font-size:15px; color:#ff4400; padding:0 10px;}

.index-zizlx{width:1220px; overflow:hidden;}
.index-zizlx ul li{width:280px;height:330px;float:left;margin:0 33px 0px 0;position:relative;overflow:hidden;cursor:pointer;}
.index-zizlx ul li:nth-child(4n+4){ margin-right:0px;}
.index-zizlx .txt{width:280px;height:40px; background:rgba(255,68,0,0.85);position:absolute;left:0;bottom:0;color:#fff;font-family:"微软雅黑", "Arial Unicode MS", "黑体";}
.index-zizlx .slide-title a{font-size:16px;font-weight:100;height:40px;text-align:center;line-height:40px; margin-bottom:25px; float:none; text-align:center;border:none}
.txt a{ width:123px; text-align:center; text-decoration:none; height:30px; line-height:30px; font-size:14px; border:1px solid #ffffff; border-radius:3px; color:#FFF; display:inline-block; margin-left:10px; margin-bottom:10px; float:left; text-align:center;}
.index-gongcsj a{  float:none; margin:0px; padding:0px;margin-bottom:20px;}
.index-gongcsj { text-align:center !important;}
.index-fangwgl a{  float:none; margin:0px; padding:0px; margin-bottom:20px;}
.index-fangwgl{ text-align:center;}
.index-chengsgh a{ float:none; margin:0px; padding:0px; margin-bottom:20px;}
.index-chengsgh{ text-align:center;}

/*20161114资质百科*/
.zizbk-content{padding:40px 30px;font-family:"微软雅黑","Arial Unicode MS","黑体";background:#FFF;}
.zizbk_zizfl{margin-bottom:30px}
.zizbk_zizfl .zizfl_title{font-size:18px;color:#f40;border-bottom:1px solid #f40;padding-bottom:5px;padding-left:10px;margin-bottom:10px}
.zizbk_zizfl .zizfl_title img{vertical-align:text-bottom;padding-right:10px}
.zizfl-list li{float:left;font-size:15px;color:#666;width:193px;float:left;padding:0px 16px 0 18px;line-height:2.6em;position:relative}
.zizfl-list li a{color:#666}
.zizfl-list li a:hover{color:#f40}
.zizbk_zizfl_xiangq{margin-bottom:30px}
.zizbk_zizfl_xiangq .zizfl_xiangq_title{border-bottom:1px solid #f40;padding-left:15px;margin-bottom:10px}
.zizbk_zizfl_xiangq .zizfl_xiangq_title span{background:url(/images/baik_zy-bh.png) no-repeat;color:#FFF;padding:5px 0;font-size:14px;display:inline-block;width:150px;text-align:center}
.zizfl_xiangq_list li{font-size:15px;color:#666;width:193px;float:left;padding:0px 16px 0 18px;}
.zizfl_xiangq_list li a{ display:block; padding-top:18px; width:100%;text-overflow:ellipsis;overflow:hidden;white-space:nowrap;}
.zizbk_rmbq{border:1px solid #f40}
.zizbk_rmbq .zizbk_rmbq_title{padding:8px 0;border-bottom:1px solid #f40;padding-left:15px;margin-bottom:10px;font-size:16px}
.zizbk_rmbq .zizbk_rmbq_title img{vertical-align:text-bottom;padding-left:10px}
.zizbk_rmbq .zizbk_rmbq_list{padding-left:15px}
.zizbk_rmbq .zizbk_rmbq_list li{float:left;padding:10px 25px 10px 0;display:block;font-size:14px}
.zzbk_hot{background:url(/images/zzbk-hot.png) no-repeat;display:inline-block;width:30px;height:20px;vertical-align:middle;position:absolute;top:-2px}


/*2016-12-08-安证信息——郭雅南*/
.anz_right_title{ font-size: 24px; color: #333333; height: 40px; line-height: 36px; font-family:"微软雅黑","Arial Unicode MS","黑体"; font-weight: bold; letter-spacing: 2px;  }
.anz_right_title span{ font-size: 16px; padding:2px 5px; background: #73ccd4; color: #ffffff; margin-left: 15px; position: relative;top: -2px; font-weight: 100; }
/*.details-nav ul li{ float: left; }*/
.anz_price{ height: 40px; background: #f5f5f5; /*padding-top: 8px;*/  /*margin: 10px 0;*/ }
.anz_price .an_jiag_number{ height: 40px; line-height: 32px; color: #ff4400;  font-size: 18px;}
.anz_price .an_jiag_number span{ font-size: 24px; padding:0 5px; }
.anz_zixl{ font-family: "微软雅黑","黑体",Arial; height: 50px; line-height: 50px; font-size: 14px; color: #999999;margin-left:12px;}
.anz_btn_zix{ margin-top: 10px; padding-left: 75px;}
.anz_btn_zix input{ background: #ff4400;color: #ffffff; font-size: 16px; padding: 0 60px !important; height: 30px;line-height: 30px; }
.anz_operate .anz_left_link a{ border-bottom: 0px !important; padding-left: 37px;}
.anz_operate .anz_left_link a:hover{ text-decoration: underline !important; }
.anz_ziying_xinx{ float: left; width: 470px; margin-left: 70px;}
.anz_ziying_xinx .anz_ziy_title{ font-size: 30px; color: #ff713e; font-weight:normal; font-family: "微软雅黑","Arial Unicode MS","黑体"; margin-bottom: 8px;}
.anz_ziying_xinx .anz_ziy_title .an_ziying{ font-size: 14px; background: #73ccd4; color: #ffffff; padding: 0px 5px; margin-left: 10px; bottom: 3px; }
.anz_ziying_xinx .anz_ziy_title img{ vertical-align: middle; margin-left: 10px; }
.anz_ziying_xinx p{ line-height: 1.6em; margin-bottom: 10px; font-size: 16px; }
.anz_ziying_xinx .anz_zixrx{ color: #ff4400; font-size: 18px; }
.anz_ziying_img{ float: right; padding-right: 60px; padding-top: 30px;}
.anz_xinx_jies{ padding-top: 30px; padding-bottom: 10px;  }
.anz_xinx_jies .anz_jies_title{left: -20px; margin-bottom: 30px; }
.anz_xinx_jies .anz_jis_l{ float: left; padding-left: 135px; }
.anz_xinx_jies .anz_jis_r{ float: right; width: 380px; margin-right: 90px; }
.anz_xinx_jies .anz_jis_r h4{ font-size: 30px; color: #ff4400; margin-bottom: 10px; }
.anz_xinx_jies .anz_jis_r p{ font-size: 16px; line-height: 1.8em; }
.anz_xinx_jies .anz_jis_r p span{ color: #ff4400; }
.anz_bibtj{ border-bottom: 1px solid #eeeeee; padding-bottom: 30px; }
.anz_bibtj span img{ float: left;  padding-top: 50px; margin-left: 90px; margin-right: 50px; padding-right: 0px;}
.anz_bibtj:last-child{ border-bottom: 0px; }
.anz_bibtj .anz_bibtj_text{ float: left; padding-top: 50px; }
.anz_bibtj .anz_bibtj_text h4{ font-size: 20px; color: #666666; margin-bottom: 10px; }
.anz_bibtj .anz_bibtj_text p{ font-size: 16px; line-height: 1.8em; }
.anz_bibtj img{ float: right; padding-top: 30px; padding-right: 80px; }
.an_banlzq_xiangq{ padding-top: 30px;  }
.an_banlzq{ padding-bottom: 200px; margin-bottom: 20px; background: url(/Images/banlzq_bottom.gif) no-repeat; background-position: 0 100%; }
.an_banlzq .an_banlzq_xiangq{ text-align: center;margin-bottom: 10px;}   
.an_banlzq .an_banlzq_xiangq h4{ font-size: 22px; color: #ff4400; font-weight: bold; margin-bottom: 15px; }
.an_banlzq .an_banlzq_xiangq p{ margin-bottom: 20px; font-size: 16px; }
.anz_suoxcl .anz_suoxcl_l{ float: left; padding-top: 30px; padding-left: 150px; }
.anz_suoxcl .anz_suoxcl_r{ float: right; padding-top: 35px; padding-right: 120px; }
.anz_suoxcl .anz_suoxcl_r p{ font-size:16px; line-height: 2em; color: #666666;}
.anz_diansbt{height: 54px;}
.anz_yous_list{ padding-top: 35px; margin-left: 80px; border-bottom: 1px solid #eee; margin-right: 80px; padding-left: 10px; padding-bottom: 	30px; }
.anz_yous_list img{ float: right;}
.anz_yous_list .anz_yous_list_text{ float: left; width: 480px; font-size: 16px; }
.anz_yous_list .anz_yous_list_text h4{ font-size: 20px; color: #ff4400; margin-bottom: 10px; }
.anz_yous_list .anz_yous_list_text p{ line-height: 1.8em; }
.anz_renmwt{ margin-top: 30px; box-shadow:0 0 10px  rgba(251, 94,36, 0.3); padding-bottom: 45px; }
.anz_renmwt img{ margin-bottom: 45px; }
.anz_renmwt p{ padding-left: 25px; line-height:2em; font-size: 16px; width: 940px; }
/*公司注册页面*/
.zhuc_price{ background: #f5f5f5; /*padding: 10px 0 10px 1px;*/ margin: 6px 0; }
.zhuc_price p{ font-size: 14px; color: #666666; }
.zhuc_price p:nth-child(2n+1){ padding-bottom: 3px;margin-left:12px; }
.zhuc_price p span{ text-decoration:line-through; padding-left: 10px; }
.zhuc_price p .zhuc_price_text{ font-size: 26px; color: #ff4400; text-decoration: none; }
.zhuc_jies{ padding-top: 30px; }
.zhuc_dedcl .zhuc_dedcl_l{ padding-top: 35px; }
.zhuc_dedcl .zhuc_dedcl_l p{ line-height: 2.4em; font-size: 16px;}
.zhuc_dedcl{ padding-bottom: 35px; }
.zhuc_dedcl .zhuc_dedcl_r{ padding-top: 35px; }
.anz_suoxcl .zhuc_suoxcl_r{ padding-top: 45px !important; }
.anz_suoxcl .zhuc_suoxcl_r p{ line-height: 2.4em; }
.zhuc_remwt_list{ border-bottom: 1px solid #eeeeee; padding-bottom: 20px; width: 850px; margin: 0 auto; }
.zhuc_remwt{ padding-bottom: 40px; }
.zhuc_remwt img{ margin-bottom: 40px; }
.zhuc_remwt_list:last-child{ margin-top: 20px; border-bottom: 0px; padding-bottom: 0px;}
/*公司注册提交成功页面2017-07-10郭雅南*/
.zhuce_success{width:1218px;margin-top:20px;background:#ffffff;border:1px solid #dedede}
.zhuce_success .zhuce_success_liuc{padding:30px 0;text-align:center;border-bottom:1px solid #dedede}
.zhuce_success .zhuce_success_tel{height:400px;padding:100px 0 0 135px;background:url(/Images/zhuce_success_img.jpg) no-repeat;background-position:825px 60px;border-bottom:1px solid #dedede}
.zhuce_success .zhuce_success_tel h2{margin-top:45px;font-size:24px;font-weight:400;color:#ff4400}
.zhuce_success_tel h2 span{padding:10px 20px;color:#ffffff;background:#ff4400;border-radius:80px}
.zhuc_success_cue{padding:80px 0 60px 120px;font-size:20px;color:#666666;line-height:1.8em;text-align:center}
.zhuc_success_cue p{text-align:left;margin-bottom:60px}
.zhuc_success_cue i{padding:0 5px;font-size:24px;font-style:normal;color:#ff4400}
.zhuc_success_cue span{color:#ff4400}
.zhuc_success_recommend{width:1092px;padding:30px 64px}
.zhuc_success_recommend span{float:left;font-size:16px;color:#ff4400}
.zhuc_success_recommend ul{float:left;width:820px;padding-left:40px;margin:0px}
.zhuc_success_recommend ul li{float:left;width:410px;margin-bottom:10px;font-size:14px;list-style:none}
.zhuc_success_recommend ul li a{color:#666666;border-bottom:1px solid #999999}
.zhuc_success_recommend ul li a:hover{color:#ff4400}
.clear{clear:both}
/*二维码 20180815*/
.ServiceAR{position:fixed;top:-40px;right:3%;z-index:999}
.ServiceAR_ico{width:39px;height:39px;position:relative;top:68px}
.ServiceAR .ServiceAR_img{position:absolute;left:-115px}

@charset "utf-8";body,html{padding:0;margin:0}
blockquote,body,button,dd,dl,dt,fieldset,form,h1,h2,h3,h4,h5,h6,hr,input,legend,li,ol,p,pre,td,textarea,th,ul{margin:0;padding:0}
body,button,input,select,textarea{font:12px/1.5 "Microsoft YaHei",΢ź,\9ed1\4f53,\5b8b\4f53,"Microsoft JhengHei",ϸ,STHeiti,MingLiu;color:#666}
h1,h2,h3,h4,h5,h6{font-size:100%}
address,cite,dfn,em,var{font-style:normal}
dl,ol,ul{list-style:none}
a{text-decoration:none!important;outline:0;font-family:"Microsoft YaHei",΢ź,\9ed1\4f53,\5b8b\4f53,"Microsoft JhengHei",ϸ,STHeiti,MingLiu}
img{border:0}
button,input,select,textarea{font-size:100%;font-family:"Microsoft YaHei",΢ź,\9ed1\4f53,\5b8b\4f53,"Microsoft JhengHei",ϸ,STHeiti,MingLiu}
table{border-spacing:0}
.clear:after{display:block;clear:both;content:"\0020";visibility:hidden;height:0}
.cl:before{content:'';display:table}
.cl:after{content:'';display:table;clear:both}
.wrap{position:relative;min-height:100%;clear:both;content:""}
.ielt7 .wrap{height:100%}
#LR_Flash,#clsIframe{position:absolute}
.col_l{float:left}
.col_r{float:right}
.w1200{width:1220px;margin:0 auto}
.container{width:1220px;margin:0 auto}
.header{position:relative;background:#fff;z-index:998;min-width:1220px}
.header_top{position:relative;height:35px;background:#ededed;border-bottom:1px solid #eee;z-index:3000;width:100%}
.header_top_center{width:1220px;margin:0 auto;height:35px}
.search_float{position:fixed;background:#fff none repeat scroll 0 0;top:0;width:100%;z-index:9999;box-shadow:0 0 5px #666}
.header_top_left{height:35px;color:#999;width:320px;position:absolute;float:left}
.header_top_left em{display:inline-block;height:35px;position:relative;line-height:35px;font-weight:400;color:#666}
.header_top_right ul li{width:100%;height:36px;position:relative;line-height:35px}
.header_top_left h1 a{color:#666;font-weight:400;padding:0 5px}
.header_top_right{float:right;height:35px;display:inline;width:auto}
.header_top_right ul li em,.header_top_right ul li span{float:left;display:inline;color:#666}
.header_top_right ul li .head_kefrx{ color:#ff4400;font-size:16px;font-weight:bold;}
.header_top_right ul li .head_kefrx img{ vertical-align:middle;}
.header_top_right ul li .htr_line{overflow:hidden;width:1px;height:12px;margin-top:11px;background-color:#ddd}
.header_top_right ul li a.nav_fzlink{color:#f25618}
.right_img{padding-top:25px;padding-left:45px;width:264px;height:87px;float:left;padding-left:0}
.header_top_right ul li #regist em{background:url(/images/dh1.png) no-repeat left;background-size:15px 15px;font-size:12px;padding-left:18px;color:#5e5c5b}
.header_top_right ul li #regist em span{font-size:19px;float:none;color:#666;font-family:Tahoma}
.header_top_right ul li a{text-decoration:none;color:#666;float:left}
.header_top_right ul li a:hover{color:#f40;text-decoration:underline}
.header_search{width:585px;margin-left:50px}
.header_search .header_search_input{width:490px;outline:0;line-height:35px;padding-left:0;text-indent:.5em;height:33px;border:1px solid #fff;float:left;color:#666;border:0;margin-top:1px;display:inline}
.header_search .header_search_submit{width:90px;right:-2px;border:0;background:#f40;height:36px;text-align:center;font-size:16px;color:#fff;position:absolute;top:0;cursor:pointer}
.header_top_left strong a{color:#5e5c5b}
.header_center{display:block;width:1220px;margin:0 auto}
.header_center_container{width:1220px;float:left}
.header_center_container .logo{float:left;width:216px;display:inline}
.header_search{height:36px;border:2px solid #f40;float:left;margin-top:35px;display:inline;position:relative;width:585px}
.header_search .header_select{position:relative;z-index:9999;float:left}
.header_search .header_select a.header_select_sort{height:36px;border-right:1px solid #eee;width:auto;background:#f9f9f9;text-decoration:none;position:relative;z-index:120;display:inline-block;color:#666;padding-right:15px}
.header_search .header_search_input{width:490px;height:33px;border:1px solid #fff;float:left;padding-left:9px;line-height:33px;color:#666;border:0;margin-top:1px;display:inline}
.header_search .header_search_input:focus{border-color:none}
.header_search .header_search_input_text{position:absolute;width:321px;padding-left:9px;height:34px;line-height:34px;color:#bcbcbc;top:1px;right:70px;cursor:text;left:0}
.header_search .header_search_submit{border:0;background:#f40;width:90px;height:36px;text-align:center;font-size:16px;color:#fff;position:absolute;right:0;top:0;cursor:pointer}
.hcc_zxb{width:151px;height:58px;background-position:0 -1px;position:absolute;right:0;top:20px}
.index_banner_s,.index_banner_s .banner_slider li{width:230px;height:70px;float:right;margin-top:20px;margin-right:40px}
.header_bottom{border-bottom:2px solid #f40;display:table;height:0;position:relative;width:100%;z-index:999}
.p{width:151px}
.p span{background:#e30 none repeat scroll 0 0;display:none;font-size:14px;height:80px;padding-top:10px;width:151px}
.p span a{height:32px;line-height:32px;width:151px}
.p .nav{height:40px;width:151px}
.p .nav i{background:rgba(0,0,0,0) url(../images/xtb.png) no-repeat scroll left center;float:left;height:40px;width:32px}
.p .nav .a{display:block;float:left;height:40px;line-height:40px;margin-right:10px;text-align:right;width:109px}
.p .nav .a:hover{color:#fff}
.header_bottom .header_menu ul li:hover .p .nav{background:#f30 none repeat scroll 0 0}
.header_bottom .header_menu ul li .p .nav:hover{background-color:#f40}
.header_bottom .header_menu ul li:hover .p .nav .a{color:#fff}
.header_bottom .header_menu ul li:hover .p .nav i{background:rgba(0,0,0,0) url(../images/xtbb.png) no-repeat scroll 0 18px}
.header_bottom .header_menu ul li:hover .p span{display:block}
.header_bottom .header_menu ul li.menu_hover,.header_bottom .header_menu ul li.on{background:#f40 none repeat scroll 0 0}
.header_bottom .header_menu ul li.menu_hover a,.header_bottom .header_menu ul li.on a{color:#fff}
.header_bottom .header_menu ul li.menu_hover a:hover,.header_bottom .header_menu ul li.on a:hover{background:#f40 none repeat scroll 0 0;color:#fff}
.header_bottom .header_menu ul li b{background:#ddd none repeat scroll 0 0;height:16px;overflow:hidden;position:absolute;right:0;top:13px;width:1px}
.header_bottom .header_menu h2{padding:0 20px;float:left;height:40px;line-height:40px;font-size:18px;font-weight:400}
.header_bottom .header_menu h2 a{color:#333;text-decoration:none;display:block;padding:0 20px}
.header_bottom .header_menu h2 a:hover{color:#f25618}
.header_bottom .header_menu h2.on,.header_bottom .header_menu ul li.menu_hover{background:#f40}
.header_bottom .header_menu h2.on a,.header_bottom .header_menu ul li.menu_hover a{color:#fff}
.header_bottom .header_menu h2.on a:hover,.header_bottom .header_menu ul li.menu_hover a:hover{background:#f40}
.header_bottom .header_menu h2 b{width:1px;position:absolute;right:0;top:13px;height:16px;background:#ddd;overflow:hidden}
.header_bottom .header_menu h2 a:hover,.header_bottom .header_menu ul li.menu_hover a:hover{background:#f40;color:#fff}
.index_footer{width:100%;border-top:2px #f40 solid;background:#fff;margin-top:30px}
.index_footer .w1200{padding:20px 0 28px}
.index_footer_l{width:630px;float:left}
.index_footer_r{width:290px;float:right;position:relative}
.index_footer_l p{padding-top:14px;color:#8e8e8e}
.index_footer_l p a{float:left;color:#8e8e8e}
.index_footer_l p a:hover{text-decoration:underline;color:#F30}
.index_footer_l p.clearfix span{float:left;margin:0 8px}
.index_footer_r dl dd{width:72px;height:72px;float:left;margin-right:23px}
.index_footer_r dl dd a{width:72px;height:72px;display:block;background:url(../images/wx.gif) no-repeat}
.index_footer_r dl dd.wb a{background-position:0 -2px}
.index_footer_r dl dd.wb a:hover{background-position:-169px -2px}
.index_footer_r dl dd.wx a{background-position:-84px -2px}
.index_footer_r dl dd.wx a:hover{background-position:-252px -2px}
.disab{display:none}
.container .cont a{color:#2668C0!important;text-decoration:none;outline:0}
.container .cont a:hover{color:red!important}
.container .cont a:hover{color:red!important}
.zsbase-b .zsbase-l{width:230px!important}
.zsbase-b .zsbase-l ol{width:auto!important}
.details-con #SOHUCS, #SOHUCS #SOHU_MAIN {width:95%!important;}
.details-con #SOHUCS #SOHU_MAIN .module-cmt-box .post-wrap-w .post-wrap-main{background-image:none!important}
.details-con #SOHUCS #SOHU_MAIN .module-cmt-footer .section-service-w .service-wrap-w a{display:none!important}
.header_top_right ul a.index_he_login{padding-left:15px;position:relative;top:8px}
.header_top_right ul a.index_he_login span{height:18px;line-height:18px;padding-right:18px;border-right:1px solid #666}
.header_top_right a.index_he_login span:hover{color:#f40}
.nav_down{position:absolute;top:100%;left:0;z-index:999;display:none;width:100%;padding:15px 0;margin-top:-1px;text-align:center;background:#fff;border-top:1px solid #ddd;box-shadow: 0px 15px 10px -15px #ccc;}
.nav_down .zzwk i{width:31px;height:32px;display:inline-block;background:url(/Images/head/nav_zzwk.png)}
.nav_down .zzxw i{width:32px;height:32px;display:inline-block;background:url(/Images/head/nav_zzxw.png)}
.nav_down .hyxw i{width:31px;height:32px;display:inline-block;background:url(/Images/head/nav_hyxw.png)}
.nav_down .zcdt i{width:31px;height:32px;display:inline-block;background:url(/Images/head/nav_zcdt.png)}
.nav_down .zzbk i{width:23px;height:32px;display:inline-block;background:url(/Images/head/nav_zzbk.png)}
.nav_down .fwxx{width:40px;height:40px;display:inline-block;background:url(/Images/head/fwxx.png)}
.hyzx_index_ico{margin-left: 0;width:18px;height:25px;display:inline-block;background:url(../../images/zzmm_img/zzmm_ico.png);background-position:-123px -235px;}
.nav_down a{display:inline-block;width:100px;font-size:14px;text-align:center;padding:0;margin:0 10px;color:#333;border:0}
.nav_down a p{padding-top:5px;}
.w_1220{width:1220px;margin:0 auto}

@charset "utf-8";.zsbase-b{float:left;width:230px;height:auto}
.zsbase-l{width:300px!important}
.zsbase-l b{color:#666668!important;font-size:1pc!important}
.zsbase-l ol{padding:10px 0 20px 15px!important;width:280px!important;height:auto!important;color:#444}
.zsbase-l ol a {font-size:initial;color:#666;}
.zsbase-l ol a:nth-child(1){padding:0 5px;color:#ff5400;font-size:18px;line-height:30px;font-weight:700; font-weight:bold;}
.zsbase-l ol a:nth-child(3){padding:0 5px;color:#ff5400;font-size:18px;line-height:30px;font-weight:700; font-weight:bold;}
.zsbase-l ol a:nth-child(9){padding:0 5px;color:#ff5400;font-size:18px;line-height:30px;font-weight:700; font-weight:bold;}
.zsbase-l ol a:nth-child(12){padding:0 5px;color:#ff5400;font-size:18px;line-height:30px;font-weight:700; font-weight:bold;}
.zsbase-l ol a:nth-child(13){padding:0 5px;color:#ff5400;font-size:18px;line-height:30px;font-weight:700; font-weight:bold;}
.zsbase-l ol a:nth-child(14){padding:0 5px;color:#ff5400;font-size:18px;line-height:30px;font-weight:700; font-weight:bold;}
.zsbase-l ol a:nth-child(15){padding:0 5px;color:#ff5400;font-size:18px;line-height:30px;font-weight:700; font-weight:bold;}

/*.zsbase-l ol a:hover{color:#ff5400;font-weight:700}*/
.zsbase-l ol .a1{font-size:26px}
.zsbase-l ol .a2{font-size:20px}
li.li1{font-size:15px}
li.li2{font-size:24px}
li.li3{font-size:20px}
li.li4{font-size:1pc}
li.li5{font-size:20px}
.zsbase-r ul .li{padding-left:40px;color:#336caf;font-size:18px}
.zsbase-r ul li a{color:#666}
.zsbase-r ul li span.span{float:left;width:95px;color:#fff;font-size:14px}
.zsbase-r ul li .kn-time span{font-size:9pt}
.dada{width:920px;height:210px}
.dada dt{float:left;width:290px;height:210px}
.dada dt a img{width:286px;height:205px;border:1px solid #ccc}
.dada dt a:hover img{position:relative;top:-20px;left:-10px;width:310px;height:250px}
.dada dd{float:left;width:630px;font-size:14px;line-height:30px}
.dada dd span{float:left;display:block;width:75pt;text-align:right}
.dada dd p{line-height:25px}
.zsbase-r ul li p{color:#999;text-indent:2em;font-size:14px;line-height:24px}
.box01{z-index:1}
.yiji_ul{list-style:none}
.yiji_ul li{float:left;padding:0 7px;font-size: 14px;font-weight: normal;}
.erji_ul li{float:none}
.erji_ul{position:absolute;z-index:10000;display:none;background-color:#f3f2f1;text-align:center; top:30px;height:77px;}
.erji_ul li{padding:0px; border-bottom:1px solid #ccc}
.yiji_ul li:hover .erji_ul{display:block}
/*.yiji_ul li:hover .yiji_class{border:1px solid #c6c6c6;border-bottom:0}*/
/*.yiji_ul li:hover .class2{border:1px solid #c6c6c6;border-top:0}*/
.yiji_ul li a {color:#666;}
.details-nav .yiji_ul li a:hover{color:#f40;}
#line_1{float:right;margin-top:-29px;margin-right:-1px;width:11px;height:28px;border-right:0;border-left:0}
.img_trigon{float:right;padding-top:18px}
.divSelect{width:81px}
.yiji_class{width:70px}
#div_option{width:5pc}
.details-nav h2 a:hover{color:#000}
.details-con .index{float:right;margin-top:-25px;font-size:14px}
.details-con .desc{border:1px solid #eee; padding:15px;margin-top:30px; background-color:#F6F6F6;}
.index a{color:#222}
.index a:hover{color:#f40}

.ewm {position:fixed;top:250px;border:1px solid #eee;box-shadow: 0 0 5px;background-color: #fff;}
.ewm div {text-align:center; }
.ewm span{background: url('/Images/global.png') -218px 0px; width: 18px; height: 18px; margin-left: 82px; cursor: pointer;}
.btnewm{position: fixed; top: 280px; border: 1px solid #eee; box-shadow: 0 0 5px; background-color: #fff; word-wrap: break-word; width: 20px; text-align: center; line-height: 15px; display: none; cursor: pointer;}

 .link_list {width: 1220px;height: auto;background-color: #FFFFFF;padding-left: 110px;font-size: 14px;margin-top: 20px;float:left;}
 .link_list a {color: #666;margin-top: 12px;}
 .link_list a:hover {color: #e70;}

 /*资质标准左侧导航*/
.zzdb_xiangq_left{float:left;width:230px}
.main .left-sider{float:left;width:221px}
.left-sider .operate{border:1px solid #ddd;zoom:1;background-color:#fff;}
.operate h3{font-family:"Microsoft YaHei",微软雅黑;font-size:16px;background:#f7f7f7;height:43px;line-height:43px;padding-left:35px;border-bottom:solid 1px #ddd;}
.operate ul li{font-family:"微软雅黑","黑体",Arial;border-bottom:1px dotted #d2d2d2;display:inline-block;width:100%;position:relative;min-height:43px;z-index:10;zoom:1}
.operate ul li.selected h4{border-bottom:1px dotted #d2d2d2;line-height:43px;padding-left:37px;text-decoration:none;font-size:14px;color:#555;display:block;font-weight:400}
.operate ul li #bg{cursor:pointer;background:url(/Images/bg3.png) no-repeat 200px 18px}
.operate ul li #bg1{cursor:pointer;background:url(/Images/bg3.png) no-repeat 200px -37px}
.operate li .list-item{position:relative;zoom:1}
.operate li .list-item a{background:0 0;border:none;color:#333;display:block;height:32px;line-height:32px;margin:0 -1px 0 1px;padding-left:60px;position:relative;text-decoration:none;font-size:14px}
.operate ul li h4 a{color:#333}
.left-sider .operate ul li .on{color:#ff4400;}
.left-sider .operate ul li .on a{color:#ff4400;}
.left-sider .operate ul li a:hover{color:#ff4400;}
#zhizgj_left {float: none !important;background-color: #fff;}
#juheweb p {overflow: hidden;height: 30px;}
/*专题*/
.zsbase .seo_topicTag {background-color: #fff;padding-bottom:30px;}
.zsbase .seo_topicTag .seo_topicTag_title { height: 40px;line-height: 50px;font-size: 14px; }
.zsbase .seo_topicTag .seo_topicTag_title .word_left {float:left;margin-left:20px; }
.zsbase .seo_topicTag .seo_topicTag_title .word_left .red{color:#f40; }
.zsbase .seo_topicTag .seo_topicTag_title .word_right {float:right;margin-right:60px; }
.zsbase .seo_topicTag .seo_topicTag_title ul li {float: left;width: 35px;}
.zsbase .seo_topicTag .seo_topicTag_title ul li a{font-weight:bold; color:#000;}
.zsbase .seo_topicTag .seo_topicTag_title ul li a:hover{color:#f40;}
.zsbase .seo_topicTag .seo_topicTag_list {border-top: 3px solid #efeff1;}
.zsbase .seo_topicTag .seo_topicTag_list ul{margin:0 20px;}
.zsbase .seo_topicTag .seo_topicTag_list ul li {float: left;width: 235px;height: 35px;line-height: 35px;text-align: left;padding-left:10px;overflow: hidden;text-overflow: ellipsis;white-space: nowrap; }
.zsbase .seo_topicTag .seo_topicTag_list ul .topic_bg {background-color:#efeff1; }
.zsbase .seo_topicTag .seo_topicTag_list ul li a {color:#000;font-size:14px;}
.zsbase .seo_topicTag .seo_topicTag_list ul li a:hover {color:#f40;}
/* 修改资质标准左侧导航--尹强 */
.operate ul li .list-item .add001 {
    cursor: pointer;
    background: url(/Images/bg3.png) no-repeat 200px 18px
}

.operate ul li .list-item .sub001 {
    cursor: pointer;
    background: url(/Images/bg3.png) no-repeat 200px -37px
}
.operate h3,.operate ul li.selected h4{
    padding-left: 10px;
}
.operate li .list-item>div {
    background: 0 0;
    border: none;
    color: #333;
    display: block;
    height: 32px;
    line-height: 32px;
    margin: 0 -1px 0 1px;
    padding-left: 25px;
    position: relative;
    text-decoration: none;
    font-size: 14px;
    overflow:hidden;
}
.operate li .list-item a {
    background-color: #fff
}
.operate li .list-item>div p {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    padding-right:20px;
}
.operate li .list-item>div a p{
    padding-left:15px;
}
.operate li .list-item a{
    padding-left:0;
}
#zhizgj_left{float:none!important;background:url(/Images/zzdd_right_img.jpg) #fc3 no-repeat;background-position:0 100%;background-size:300px 104px}
.order-popover{display:none;background:url(/Images/tankuang.png) no-repeat;width:535px;height:512px;z-index:9999;position:fixed}
.order-suc-popover{display:none;background:url(/Images/tankuang.png) no-repeat;width:535px;height:512px;z-index:9999;position:fixed}
.bg-contact{background:url(/Images/contact-bg.png) no-repeat!important}
.pop-close{float:right}
.pop-form{padding-top:180px}
.pop-row{height:50px;padding:0 20%}
.pop-row select{border:1px solid #ccc}
.pop-phone{border:1px solid #ccc}
.pop-checkcode,.pop-phone,.pop-submit-btn,.pop-subptype{width:100%;height:30px;border-radius:3px}
.pop-checkcode{width:65%;border:1px solid #ccc}
.pop-areaid,.pop-areapid,.pop-sublv,.pop-subtype{width:49.3%;height:30px}
.pop-submit-btn{background-color:#f40;color:#fff}
.pop-row .pop-err{display:none;height:20px;width:100%;color:red}
.pop-err-sa{float:left;width:50%;color:red}
.order-popover input::-webkit-input-placeholder{color:red;font-size:14px;text-align:left}
.order-popover input:-moz-placeholder{color:red;font-size:14px;text-align:left}
.company-list-popoverinput::-moz-placeholder{color:red;font-size:14px;text-align:left}
.company-list-popoverinput:-ms-input-placeholder{color:red;font-size:14px;text-align:center}
.pop-suc-div{padding-top:180px;text-align:center;height:175px}
.pop-suc-row1{font-size:24px;font-weight:700}
.pop-suc-row2{color:red;font-size:14px;margin-top:10px}
.pop-suc-row3{margin-top:70px}
.pop-suc-row4{margin-top:10px;clear:both}
.pop-suc-row3,.pop-suc-row4{height:25px;clear:both;width:100%;font-size:14px;text-align:center}
.pop-suc-row4 a{display:inline-block;color:#fff;border-radius:4px;width:70px;line-height:25px;background-color:#3e77e3}
.resp-err{color:red}
.theme-popover-mask{z-index:9998;position:fixed;top:0;left:0;width:100%;height:100%;background:#000;opacity:.3;filter:alpha(opacity=40);display:none}
.anz_xiad_left{float:none!important;background:url(/Images/zizdb_xiad_bj.png) no-repeat!important;background-position:0 100%}
.an_mfhqbj{background:url(/Images/anz_right_imgTOP.png) no-repeat 10px 10px!important}
.zzgj_anz_btn{width:100%;border:1px solid #2687da;height:35px;line-height:30px;border-radius:3px;padding-left:5px;font-size:14px}
.zzgj_anz_suozdq{width:49%;border:1px solid #2687da;height:30px;line-height:30px;border-radius:3px;padding-left:3%}
.zzgj_anz_ljsqbtn{width:126px;height:30px;background:#f5c000;line-height:30px;border:none;border-radius:3px;color:#FFF;font-size:14px;float:right}

