﻿@charset "utf-8";

/* 此文件作为总入口，引入所有less文件，之后会编译为all.css */


/*CSS Document*/


/*init BEGIN*/

body,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
p,
blockquote,
dl,
dt,
dd,
ul,
ol,
li,
pre,
fieldset,
legend,
button,
input,
textarea,
th,
td {
	margin: 0;
	padding: 0;
	outline: none;
}


/*清除内外边距*/


/*a:focus{-moz-outline-style:none;}!*IE不支持*!*/

a:focus {
	outline: none;
}


/*设置默认字体*/

address,
cite,
dfn,
em,
var {
	font-style: normal;
}


/*将斜体扶正*/

code,
kbd,
pre,
samp,
tt {
	font-family: 'Courier New', Courier, monospace;
}


/*统一等宽字体*/

small {
	font-size: 12px;
}


/*小于 12px 的中文很难阅读，让 small 正常化*/

ul,
ol {
	list-style: none;
}

/*重置列表元素*/

a {
	text-decoration: none;
}


/*重置文本格式元素*/

abbr[title],
acronym[title] {
	/*注：1.ie6 不支持 abbr; 2.这里用了属性选择符，ie6 下无效果*/
	border-bottom: 1px dotted;
	cursor: help;
}

q:before,
q:after {
	content: '';
}


/*重置表单元素*/

legend {
	color: #000;
}


/*for ie6*/

fieldset,
img {
	border: none;
}


/*img 搭车：让链接里的 img 无边框*/


/*注：optgroup 无法扶正*/

button,
input,
select,
textarea {
	font-size: 100%;
	/*使得表单元素在 ie 下能继承字体大小*/
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}


/*重置表格元素*/

hr {
	border: none;
	height: 1px;
}


/*重置 hr*/

img {
	max-width: 100%;
	vertical-align: middle;
}

i {
	font-style: normal;
}


/*让非ie浏览器默认也显示垂直滚动条，防止因滚动条引起的闪烁*/

input {
	background: none;
	font-family: 微软雅黑;
	border: none;
}


/*重置input标签属性*/

textarea {
	background: none;
	font-family: 微软雅黑;
	border: none;
}


/*重置textarea标签属性*/


/*init END*/


/*此文件放置共用函数、变量等*/


/* 字体设置 */


/* 定位属性 */


/* 遮罩层定位 */


/* 截字符 */

.ellipsis {
	overflow: hidden;
	white-space: nowrap;
	-o-text-overflow: ellipsis;
	text-overflow: ellipsis;
}


/* 公用类 */

body {
	font-size: 12px;
	color: #333;
	line-height: 1.8;
	font-family: '微软雅黑';
}


/* 清楚浮动 */

.clearfix {
	zoom: 1;
}

.clearfix p {
	font-size: 16px;
}

.clearfix:after {
	content: '\0020';
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}

input {
	background: none;
	font-family: '微软雅黑';
	border: none;
}

textarea {
	background: none;
	font-family: '微软雅黑';
	border: none;
}

a[transition] {
	-webkit-transition: 0.4s 0s;
	-o-transition: 0.4s 0s;
	-moz-transition: 0.4s 0s;
	transition: 0.4s 0s;
}

a {
	text-decoration: none;
	color: #000000;
}


/* 样式开始 */
.w1200{
	width: 1200px;
	margin: 0 auto;
}
.header>.content{
	width: 1700px;
	margin: 0 auto;
	padding: 22px 0;
}
.header>.content>a{
	display: block;
	float: left;
}
.header>.content>a>img:hover{
	opacity: 0.8;
}
.header>.content>img{
	float: right;
	margin-top: 5px;
	cursor: pointer;
}
.header>.content>img:hover{
	opacity: 0.8;
}
.header>.content ul{
	float: left;
}
.header>.content>ul>li{
	float: left;
	width: 113px;
	text-align: center;
	position: relative;
}
.header > .content > ul > li:nth-child(6){
	display: none;
}
.header>.content>ul>li ul{
	position: absolute;
	top: 100%;
	z-index: 99;
	width: 100%;
	background: #0856A2;
	visibility: hidden;
    opacity: 0;
    -webkit-transform: translate(0, 30px);
    -moz-transform: translate(0, 30px);
    -ms-transform: translate(0, 30px);
    -o-transform: translate(0, 30px);
    transform: translate(0, 30px);
    -webkit-transition: all 0s 0s;
    -o-transition: all 0s 0s;
    -moz-transition: all 0s 0s;
    transition: all 0s 0s;
}
.header>.content>ul>li:hover ul{
	visibility: visible;
    opacity: 1;
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
    -webkit-transition: all .3s 0s;
    -o-transition: all .3s 0s;
    -moz-transition: all .3s 0s;
    transition: all .3s 0s;
}
.header>.content>ul>li ul li{
	color: #fff;
	line-height: 40px;
}
.header>.content>ul>li ul li a{
	color: #fff;
	display: block;
}
.header>.content>ul>li ul li.on{
	background: #fff;
}
.header>.content>ul>li ul li.on a{
	color: #0856A2;
}
.header>.content>ul>li ul li:hover{
	background: #fff;
}
.header>.content>ul>li ul li:hover a{
	color: #0856A2;
}
.header>.content>ul>li.on>a{
	color: #0856A2;
}
.header>.content>ul>li:hover>a{
	color: #0856A2;
}
.header>.content>ul>li>a{
	font-size: 14px;
	color: #323232;
	display: block;
	line-height: 40px;
}
.serch_ss {
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.3);
	position: fixed;
	left: 0;
	top: 0;
	display: none;
	transition: all .3s 0s;
	opacity: 0;
	z-index: 999;
}

.serch_ss .ss_top {
	width: 100%;
	height: 80px;
	background: #fff;
}

.serch_ss .ss_top .w1200 {
	overflow: hidden;
}

.serch_ss .ss_top .w1200 img {
	float: right;
	width: 1.5%;
	margin-top: 30px;
	margin-left: 20px;
	opacity: 0.7;
}

.serch_ss .ss_top .w1200 input {
	float: right;
	font-size: 14px;
	color: #666;
	line-height: 30px;
	width: 0;
	border-bottom: 1px solid #eee;
	margin-top: 23px;
	transition: all .3s .2s;
}
.slideBox{
	position: relative;
	width: 100%;
	height: 673px;
}
.slideBox .hd{
	position: absolute;
	bottom: 8%;
	left: 0;
	width: 100%;
	text-align: center;
	z-index: 9;
}
.slideBox .hd ul li{
	display: inline-block;
	font-size: 14px;
	color: #fff;
	margin: 0 10px;
	cursor: pointer;
}
.slideBox .hd ul li.on{
	font-weight: bold;
	font-size: 24px;
}
.slideBox .bd ul li img{
	height: 673px;
}
.index .left_content{
	width: 100%;
	position: relative;
	overflow: hidden;
	padding-top: 35px;
}
.index .left_content .bd ul{
	overflow: hidden;
}
.index .left_content .bd ul li{
	width:464px ;
	height: 282px;
	float: left;
	margin-right: 15.5px;
}
.index .left_content .bd ul li a{
	display: block;
	position: relative;
	z-index: 0;
	height:170px ;
	padding: 56px;
	transition: .3s;
}
.index .left_content .bd ul li a .bj{
	position: absolute;
	left: 0;
	top: 0;
	z-index: -1;
}
.index .left_content .bd ul li a h2{
	font-size: 18px;
	color: #fff;
	position: absolute;
	bottom: 50px;
	left: 56px;
	transition: .3s;
	z-index: 9;
}
.index .left_content .bd ul li a span{
	font-size: 14px;
	color: #fff;
	position: absolute;
	left: 56px;
	bottom: 26px;
	transition: .3s;
	z-index: 9;
}
.index .left_content .bd ul li a p{
	font-size: 15px;
	color: #fff;
	display: none;
	margin-top: 64px;
	transition: .3s;
	z-index: 9;
	height: 54px;
}
.index .left_content .bd ul li a .xq1{
	opacity: 0;
	margin-top: 20px;
	transition: .3s;
	z-index: 9;
}
.index .left_content .bd ul li a div{
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.5);
	position: absolute;
	left: 0;
	top: 0;
	z-index: -1;
	display: none;
	transition: .3s;
}
.index .left_content .bd ul li a:hover div{
	display: block;
	transition: .3s;
}
.index .left_content .bd ul li a:hover h2{
	top: 56px;
	transition: .3s;
}
.index .left_content .bd ul li a:hover span{
	top: 86px;
	transition: .3s;
}
.index .left_content .bd ul li a:hover p{
	display: block;
	transition: .3s;
}
.index .left_content .bd ul li a:hover .xq1{
	opacity: 1;
	transition: .3s;
}
.index .left_content .hd .prev{
	position: absolute;
	left: 258px;
	top: 45%;
	width: 48px;
	height: 66px;
	background: url(../img/icon_left.png) no-repeat center center;
	z-index: 99;
	cursor: pointer;
}
.index .left_content .hd .prev:hover{
	background: url(../img/icon_left1.png) no-repeat center center;
}
.index .left_content .hd .next{
	position: absolute;
	right: 258px;
	top: 45%;
	width: 48px;
	height: 66px;
	background: url(../img/icon_right.png) no-repeat center center;
	z-index: 99;
	cursor: pointer;
}
.index .left_content .hd .next:hover{
	background: url(../img/icon_right1.png) no-repeat center center;
}
.cp_content{
	/*background: url(../img/iconbj.png) no-repeat center bottom;*/
	margin-top: 65px;
	position: relative;
	padding-bottom: 50px;
	position: relative;
}
.wave-canvas-wrapper {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.wave-canvas-wrapper canvas{
	height: 600px !important;
}
.cp_content .bd ul{
	overflow: hidden;
}
.cp_content .bd ul li{
	float: left;
	margin: 0 10px;
	height: 487px;
}
.cp_content .bd ul li a{
	display: block;
	text-align: center;
}
.cp_content .bd ul li a .nr{
	background: #f5f5f5;
	padding: 15px 0;
	transition: .3s;
}
.cp_content .bd ul li a .cp{
	overflow: hidden;
}
.cp_content .bd ul li a .cp img{
	transition: .3s;
}
.cp_content .bd ul li a .nr h2{
	font-size: 18px;
	color: #323232;
}
.cp_content .bd ul li a .nr span{
	font-size: 14px;
	color: #a7a7a7;
}
.cp_content .bd ul li a:hover .nr{
	background: #0856A2;
	transition: .3s;
}
.cp_content .bd ul li a:hover .nr h2{
	color: #fff;
	transition: .3s;
}
.cp_content .bd ul li a:hover .nr span{
	color: #6aa8e5;
	transition: .3s;
}
.cp_content .bd ul li a:hover .cp img{
	transform: scale(1.1);
	transition: .3s;
}
.cp_content .hd .prev{
	display: block;
	width: 37px;
	height: 37px;
	background: url(../img/icon_left2.png) no-repeat center center;
	position: absolute;
	left: 15%;
	top: 30%;
	cursor: pointer;
	transition: .3s;
	z-index: 99;
}
.cp_content .hd .prev:hover{
	background: url(../img/icon_left21.png) no-repeat center center;
	transition: .3s;
}
.cp_content .hd .next{
	display: block;
	width: 37px;
	height: 37px;
	background: url(../img/icon_right2.png) no-repeat center center;
	position: absolute;
	right: 15%;
	top: 30%;
	cursor: pointer;
	z-index: 99;
}
.cp_content .hd .next:hover{
	background: url(../img/icon_right21.png) no-repeat center center;
	transition: .3s;
}
.cp_content>a{
	display: block;
	margin: 0 auto;
	text-align: center;
	width: 50px;
	font-size: 14px;
	color: #0856a2;
	margin-top: 50px;
	position: relative;
	padding: 5px;
}
.cp_content>a:after{
            content: "";
            width: 0;
            height: 1px;
            background: #0856a2;
            position: absolute;
            top: 100%;
            left: 50%;
            transition: all .3s;
}
.cp_content>a:hover:after{
            left: 0%;
            width: 100%;
}
.jj_content{
	width: 100%;
	height: 404px;
	/*background: url(../img/jj_bj.jpg) no-repeat center center;*/
	text-align: center;
	background: #dde4e9;
}
.jj_content h2{
	font-size: 24px;
	padding-top: 120px;
}
.jj_content h2 a{
	color: #333;
}
.jj_content h2 a:hover {
    color: #0856A2;
}
.jj_content p{
	font-size: 14px;
	color: #333;
	width: 1200px;
	margin: 0 auto;
}
.jj_content>img{
	margin: 20px auto;
}
.new_content{
	overflow: hidden;
	padding-bottom: 70px;
}
.new_content>.w1200 .tab h2{
	float: left;
}
.new_content>.w1200 .tab h2 a{
	font-size: 24px;
	color: #000000;
}
.new_content>.w1200 .tab h2 a:hover{
	color: #0856A2;
}
.new_content>.w1200>a{
	float: right;
	font-size: 16px;
	color: #666666;
	line-height: 38px;
	margin-left: 20px;
}
.new_content>.w1200 .tab{
	position: relative;
	padding-top: 90px;
}
.new_content>.w1200 .hd>.gd:hover{
	color: #0856A2 !important;
}
.new_content>.w1200 .hd ul{
	overflow: hidden;
	float: right;
}
.new_content>.w1200 .hd ul li{
	float: left;
	font-size: 16px;
	color: #666666;
	padding: 5px 20px;
	cursor: pointer;
}
    .new_content > .w1200 .hd ul li a{
        display:block;
    }
    .new_content > .w1200 .hd ul li.on {
        background: #0856A2;
        color: #fff;
    }
        .new_content > .w1200 .hd ul li.on a {
            color: #fff;
        }
        .new_content > .w1200 .bd {
            margin-top: 100px;
        }
.new_content>.w1200 .bd ul{
	overflow: hidden;
}
.new_content>.w1200 .bd ul li{
	float: left;
	width: 310px;
	border: 1px solid #f6f6f6;
	padding: 50px 30px;
	margin: 0 13px;
	transition: .3s;
}
.new_content>.w1200 .bd ul li a{
	display: block;
	font-weight: normal;
}
.new_content>.w1200 .bd ul li a span{
	font-size: 26px;
	color: #7e7e7e;
	transition: .3s;
}
.new_content>.w1200 .bd ul li a p{
	font-size: 18px;
	margin: 8px 0;
	transition: .3s;
}
.new_content>.w1200 .bd ul li a em{
	font-size: 14px;
	color: #666666;
	display: block;
	margin-bottom: 10px;
	transition: .3s;
}
.new_content>.w1200 .bd ul li a i{
	font-size: 14px;
	color: #0856a2;
	border-bottom: 1px solid #0856A2;
	padding-bottom: 5px;
	transition: .3s;
}
.new_content>.w1200 .bd ul li:hover{
	background: #0856A2;
	border-color: #0856A2;
	transition: .3s;
}
.new_content>.w1200 .bd ul li:hover a span{
	color: #fff;
	transition: .3s;
}
.new_content>.w1200 .bd ul li:hover a p{
	color: #fff;
	transition: .3s;
}
.new_content>.w1200 .bd ul li:hover a em{
	color: #8fbfed;
	transition: .3s;
}
.new_content>.w1200 .bd ul li:hover a i{
	color: #fff;
	border-color: #fff;
	transition: .3s;
}
.new_content>.w1200 .hd .prev{
	display: block;
	width: 37px;
	height: 37px;
	background: url(../img/icon_left2.png) no-repeat center center;
	position: absolute;
	left: -10%;
	top: 65%;
	cursor: pointer;
	transition: .3s;
	z-index: 99;
}
.new_content>.w1200 .hd .prev:hover{
	background: url(../img/icon_left21.png) no-repeat center center;
	transition: .3s;
}
.new_content>.w1200 .hd .next{
	display: block;
	width: 37px;
	height: 37px;
	background: url(../img/icon_right2.png) no-repeat center center;
	position: absolute;
	right: -10%;
	top: 65%;
	cursor: pointer;
	z-index: 99;
}
.new_content>.w1200 .hd .next:hover{
	background: url(../img/icon_right21.png) no-repeat center center;
	transition: .3s;
}
.footer{
	background: #272727;
	padding: 50px 0;
}
.footer .w1200>div{
	display: inline-block;
	vertical-align: top;
}
.footer .w1200>.left{
	width: 805px;
}
.footer .w1200>.left ul{
	overflow: hidden;
	margin-bottom: 40px;
}
.footer .w1200>.left ul li{
	display: inline-block;
	vertical-align: middle;
	margin: 0 15px;
}
.footer .w1200>.left ul li a{
	font-size: 14px;
	color: #fff;
}
.footer .w1200>.left ul li a:hover{
	color: #0856A2;
}
.footer .w1200>.left p{
	font-size: 14px;
	color: #343738;
}
.footer .w1200>.left p a{
	font-size: 14px;
	color: #505454;
}
.footer .w1200>.left p a:hover{
	color: #fff;
}
.footer .w1200>.left p img{
	margin-top: -3px;
}
.footer .w1200>.right{
	width: 259px;
}
.footer .w1200>.right{
	margin-left: 12px;
}
.footer .w1200>.right h2{
	font-size: 24px;
	color: #fff;
}
.footer .w1200>.right p{
	font-size: 14px;
	color: #fff;
}
.footer .w1200>.right .yqlj{
	position: relative;
	width: 100%;
	border: 1px solid #4f5353;
	margin-top: 15px;
}
.footer .w1200>.right .yqlj>a{
	display: block;
	text-indent: 1em;
	background: url(../img/iconxl.png) no-repeat 93% center;
	font-size: 14px;
	color: #505454;
	line-height: 40px;
}
.footer .w1200>.right .yqlj ul{
	position: absolute;
	left: 0;
	width: 100%;
	bottom: 40px;
	z-index: 99;
	background: #fff;
	display: none;
}
.footer .w1200>.right .yqlj ul li a{
	text-indent: 1em;
	display: block;
	line-height: 30px;
	font-size: 14px;
}
.footer .w1200>.right .yqlj:hover ul{
	display: block;
}
.footer .w1200>.right .yqlj:hover>a{
	color: #fff;
}
.footer .w1200>.right .yqlj ul li a:hover{
	color: #0856A2;
}
.sub_banner{
	position: relative;
	z-index: 0;
}
.sub_banner>img{
	position: absolute;
	left: 0;
	top: 0;
	z-index: -1;
	width: 100%;
	height: 201px;
}
.sub_banner .w1200{
	position: relative;
	height: 201px;
}
.sub_banner .w1200 p{
	font-size: 32px;
	color: #fff;
	position: absolute;
	left: 0;
	top:25%;
}
.sub_banner .w1200 .sub_nav{
	width: 100%;
	background: #fff;
	position: absolute;
	bottom: 0;
	left: 0;
	overflow: hidden;
}
.sub_banner .w1200 .sub_nav .left{
	float: left;
	width: 70%;
	padding: 10px 0;
	border-bottom: 1px solid #f7f7f7;
	margin-left: 10px;
	position: relative;
}
.sub_banner .w1200 .sub_nav .left .hd .prev{
	background: url(../img/yq_left.jpg) no-repeat center center;
	background-size: 100%;
	display: block;
	width: 20px;
	height: 20px;
	position: absolute;
	right:40px;
	top: 10px;
	cursor: pointer;
}
.sub_banner .w1200 .sub_nav .left .hd .next{
	background: url(../img/yq_right.jpg) no-repeat center center;
	background-size: 100%;
	display: block;
	width: 20px;
	height: 20px;
	position: absolute;
	right:40px;
	bottom: 10px;
	cursor: pointer;
}
.sub_banner .w1200 .sub_nav .left .hd a:hover{
	opacity: 0.8;
}
.sub_banner .w1200 .sub_nav .left .bd{
	width: 90%;
}
.sub_banner .w1200 .sub_nav .left .bd ul{
	overflow: hidden;
}
.sub_banner .w1200 .sub_nav .left .bd ul li{
	float: left;
	margin-left: 10px;
}
.sub_banner .w1200 .sub_nav .left .bd ul li a{
	display: block;
	font-size: 15px;
	color: #666666;
	line-height: 40px;
	padding: 0 15px;
	text-align: center;
}

.sub_banner .w1200 .sub_nav .left .bd ul li a:hover{
	background: #0856A2;
	color: #fff;
}
.sub_banner .w1200 .sub_nav .left .bd ul li.on a{
	background: #0856A2;
	color: #fff;
}
.sub_banner .w1200 .sub_nav .right{
	float: right;
	margin-right: 30px;
}
.sub_banner .w1200 .sub_nav .right a{
	font-size: 15px;
	color: #666666;
	line-height: 58px;
}
.sub_banner .w1200 .sub_nav .right a:hover{
	color: #0856A2;
}
.sub_banner .w1200 .sub_nav .right a.on{
	color: #0856A2;
}
.sub_banner .w1200 .sub_nav .right img{
	margin-top: -3px;
	margin-right: 10px;
}
.jj{
	background: url(../img/iconbj.png) no-repeat center center;
	padding: 70px 0;
}
.jj .w1140{
	overflow: hidden;
	padding: 0 30px;
	background: #fff;
}
.jj .w1140 p{
	font-size: 15px;
	color: #666;
	line-height: 32px;
}
.w1140{
	width: 1140px;
	margin: 0 auto;
}
.ryzz{
	padding: 70px 0;
	min-height: 250px;
}
.ryzz ul{
	overflow: hidden;
	min-height: 250px;
}
.ryzz ul li{
	float: left;
	margin: 0 13px;
	margin-bottom: 40px;
}
.ryzz ul li a{
	display: block;
}
.ryzz ul li a .tp{
	overflow: hidden;
}
.ryzz ul li a .tp img{
	transition: .3s;
}
.ryzz ul li a p{
	background: url(../img/iconry.png) no-repeat 95% center;
	text-indent: 1em;
	font-size: 18px;
	padding: 10px 0;
	transition: .3s;
}
.ryzz ul li a:hover .tp img{
	transform: scale(1.1);
	transition: .3s;
}
.ryzz ul li a:hover p{
	background: #0856A2 url(../img/iconryon.png) no-repeat 95% center;
	color: #fff;
	transition: .3s;
}
.fy{
	text-align: center;
	font-size: 0;
}
.fy a{
	display: inline-block;
	font-size: 16px;
	color: #666;
	padding:0 20px;
	line-height: 42px;
	background: #f7f7f7;
}
.fy input{
	width: 50px;
	height: 39px;
	border: 1px solid #eaeaea;
	background: #fff;
	vertical-align: top;
	font-size: 16px;
	text-align: center;
}
.fy a.on{
	background: #0856A2;
	color: #fff;
}
.fy a[href]:hover{
	background: #0856A2;
	color: #fff;
}
.xq{
	padding: 50px 0;
}
.xq .w1140{
	padding: 0 30px;
}
.xq .top{
	text-align: center;
	border-bottom: 1px solid #e9e9e9;
	padding-bottom: 10px;
}
.xq .top h2{
	font-size: 20px;
	color: #0856A2;
	margin-bottom: 10px;
}
.xq .top span{
	font-size: 14px;
	color: #666;
	margin: 0 20px;
}
.xq .top a{
	font-size: 14px;
	color: #666;
}
.xq .top a.gb{
	margin-left: 20px;
}
.xq .top a:hover{
	color: #d01e00;
}
.xq .wz{
	padding: 30px 0;
	min-height: 200px;
}
.xq .wz iframe{
	width: 839px;
	height: 363px;
	margin: 0 auto;
	display: block;
	border: none;
}
.xq .wz p{
	font-size: 15px;
	color: #666;
	line-height: 35px;
}
.xq .sxp{
	text-align: center;
	background: #f9f9f9;
	padding: 5px 0;
	margin: 20px 0;
}
.xq .sxp a{
	display: inline-block;
	vertical-align: middle;
	font-size: 16px;
	color: #666666;
	margin:0  5px ;
}
.xq .sxp a.sp{
	width: 45%;
	text-align: right;
}
.xq .sxp a.xp{
	width: 45%;
	text-align: left;
}
.xq .sxp a[href]:hover{
	color: #0957a2;
}
.xq .sxp a img:hover{
	opacity: 0.8;
}
.spzx{
	padding: 70px 0;
	min-height: 250px;
}
.spzx ul{
	overflow: hidden;
	min-height: 250px;
}
.spzx ul li{
	float: left;
	margin: 0 13px;
	margin-bottom: 40px;
}
.spzx ul li a{
	display: block;
	position: relative;
}
.spzx ul li a>img{
	position: absolute;
	left: 50%;
	top: 35%;
	z-index: 99;
	margin-left: -21px;
	transition: .3s;
}
.spzx ul li a .tp{
	overflow: hidden;
}
.spzx ul li a p{
	background: url(../img/iconry.png) no-repeat 95% center;
	text-indent: 1em;
	font-size: 18px;
	padding: 10px 0;
	transition: .3s;
}
.spzx ul li a:hover p{
	background: #0856A2 url(../img/iconryon.png) no-repeat 95% center;
	color: #fff;
	transition: .3s;
}
.spzx ul li a:hover>img{
	transform: rotate(360deg);
	transition: .3s;
}
.xwdt{
	padding: 50px 0;
}
.xwdt .top{
	position: relative;
	width: 100%;
    height: 296px;
}
.xwdt .top .bd>div{
	overflow: hidden;
	border: 1px solid #f1f1f1 ;
	padding-right: 20px;
}
.xwdt .top .bd>div a{
	display: block;
	font-weight: normal;
}
.xwdt .top .bd>div a:hover img{
	opacity: 0.8;
}
.xwdt .top .bd>div img{
	float: left;
	margin-right: 30px;
}
.xwdt .top .bd>div span{
	font-size: 26px;
	color: #7e7e7e;
	padding-top: 40px;
	display: block;
}
.xwdt .top .bd>div a:hover p{
	color: #0856A2;
}
.xwdt .top .bd>div p{
	font-size: 18px;
	margin: 10px 0;
}
.xwdt .top .bd>div em{
	font-size: 14px;
	color: #666;
	display: block;
	margin-bottom: 20px;
}
.xwdt .top .bd>div i{
	color: #0856A2;
	border-bottom: 1px solid #0856A2;
	padding-bottom: 5px;
}
.xwdt .top .hd{
	position: absolute;
	left: 35%;
	bottom: 5%;
	z-index: 99;
}
.xwdt .top .hd ul li{
	display: inline-block;
	width: 8px;
	height: 8px;
	border-radius: 100%;
	background: #fff;
	margin: 0 2px;
	cursor: pointer;
}
.xwdt .top .hd ul li.on{
	background: #0856A2;
}
.xwdt .w1140>ul{
	overflow: hidden;
	min-height: 200px;
	margin: 40px 0;
}
.xwdt .w1140>ul li{
	float: left;
	width: 300px;
	border: 1px solid #f6f6f6;
	padding: 50px 30px;
	margin: 0 9px;
	transition: .3s;
	margin-bottom: 22px;
}
.xwdt .w1140>ul li a{
	display: block;
	font-weight: normal;
}
.xwdt .w1140>ul li a span{
	font-size: 26px;
	color: #7e7e7e;
	transition: .3s;
}
.xwdt .w1140>ul li a p{
	font-size: 18px;
	margin: 8px 0;
	transition: .3s;
}
.xwdt .w1140>ul li a em{
	font-size: 14px;
	color: #666666;
	display: block;
	margin-bottom: 10px;
	transition: .3s;
}
.xwdt .w1140>ul li a i{
	font-size: 14px;
	color: #0856a2;
	border-bottom: 1px solid #0856A2;
	padding-bottom: 5px;
	transition: .3s;
}
.xwdt .w1140>ul li:hover{
	background: #0856A2;
	border-color: #0856A2;
	transition: .3s;
}
.xwdt .w1140>ul li:hover a span{
	color: #fff;
	transition: .3s;
}
.xwdt.xwdt .w1140>ul li:hover a p{
	color: #fff;
	transition: .3s;
}
.xwdt .w1140>ul li:hover a em{
	color: #8fbfed;
	transition: .3s;
}
.xwdt .w1140>ul li:hover a i{
	color: #fff;
	border-color: #fff;
	transition: .3s;
}
.xq .tj ul{
	overflow: hidden;
	margin-top: 20px;
}
.xq .tj ul li{
	float: left;
	width: 45%;
	margin: 0 2%;
}
.xq .tj ul li a{
	display: block;
	font-weight: normal;
	overflow: hidden;
	font-size: 14px;
	color: #666;
	line-height: 40px;
}
.xq .tj ul li a em{
	display: inline-block;
	background: #d7d7d7;
	border-radius: 100%;
	width: 22px;
	height: 22px;
	text-align: center;
	line-height: 22px;
	margin-right: 10px;
}
.xq .tj ul li a span{
	float: right;
}
.xq .tj ul li:hover a span{
	color: #0856A2;
}
.xq .tj ul li:hover a{
	color: #0856A2;
}
.xq .tj ul li:hover a em{
	background: #0856A2;
	color: #fff;
}
.cpzs{
	padding: 70px 0;
	min-height: 400px;
}
.cpzs ul{
	overflow: hidden;
	min-height: 300px;
	padding-bottom: 50px;
}
.cpzs ul li{
	float: left;
}
.cpzs ul li a{
	display: block;
	text-align: center;
	width: 372px;
	padding: 0 5px;
	padding-top: 5px;
	margin: 0 8px;
	transition: .3s;
}
.cpzs ul li a .tp{
	overflow: hidden;
}
.cpzs ul li a .tp img{
	transition: .3s;
}
.cpzs ul li a .nr{
	background: #f5f5f5;
	padding: 8px 0;
	transition: .3s;
}
.cpzs ul li a .nr p{
	font-size: 18px;
	color: #333;
	font-weight: bold;
	transition: .3s;
}
.cpzs ul li a .nr span{
	font-size: 15px;
	color: #a7a7a7;
	transition: .3s;
}
.cpzs ul li a:hover{
	background: #0856A2;
	transition: .3s;
}
.cpzs ul li a:hover .nr{
	background: #0957A2;
	transition: .3s;
}
.cpzs ul li a:hover .nr p{
	color: #fff;
	transition: .3s;
}
.cpzs ul li a:hover .nr span{
	color: #6aa8e5;
	transition: .3s;
}
.cpzs ul li a:hover .tp img{
	transform: scale(1.1);
	transition: .3s;
}
.sctj{
	padding: 50px 0;
}
.sctj .top{
	overflow: hidden;
	background: url(../img/bj.jpg) no-repeat center center;
	background-size: 100%;
}
.sctj .top>img{
	float: left;
	margin-right: 78px;
}
.sctj .top div p{
	font-size: 15px;
	color: #fff;
	padding-top: 70px;
	margin-bottom: 20px;
}
.sctj .top div p span{
	font-size: 26px;
}
.sctj .top div>span{
	display: block;
	font-size: 16px;
	color: #fff;
}
.sctj .bottom{
	overflow: hidden;
	margin-top: 80px;
}
.sctj .bottom>img{
	float: left;
}
.sctj .bottom>div{
	float: right;
}
.sctj .bottom>div div{
	background: #e9f1fe;
	border-top: 2px solid #0856A2;
	margin-top: 3px;
	padding-bottom: 25px;
}
.sctj .bottom>div div p{
	width: 96%;
	margin: 0 auto;
	font-size: 14px;
	color: #676a6c;
	margin-top: 25px;
}
.sctj .bottom>div div p img{
	margin-right: 10px;
}
.zxns--container {
  margin: 0 auto;
  padding: 50px 0;
}
.cpyc--head {
  padding-right: 30px;
  border-bottom: 3px solid #0856A2;
}
.cpyc--head > div {
  display: table;
  width: 100%;
}
.cpyc--head > div .item {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  font-size: 16px;
  color: #333;
  line-height: 58px;
  font-weight: bold;
}
.cpyc--head .item1,
.cpyc--list .head .item1 {
  width: 240px;
  min-width: 240px;
}
.cpyc--head .item2,
.cpyc--list .head .item2 {
  width: 230px;
  min-width: 230px;
}
.cpyc--head .item3,
.cpyc--list .head .item3 {
  width: 240px;
  min-width: 240px;
}
.cpyc--head .item4,
.cpyc--list .head .item4 {
  width: 160px;
  min-width: 160px;
}
.cpyc--head .item5,
.cpyc--list .head .item5 {
  width: 205px;
  min-width: 205px;
}
.cpyc--list {
 margin-bottom: 50px;
 min-height: 400px;
}
.cpyc--list .cell {
  border-bottom: 1px solid #e5e5e5;
}
.cpyc--list .cell .head {
  display: table;
  width: 100%;
}
.cpyc--list .cell .head .item {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  height: 66px;
  line-height: 24px;
  font-size: 16px;
  color: #666;
  padding: 5px 10px;
}
.cpyc--list .cell .head .item a {
  display: block;
  margin: 0 auto;
  width: 50px;
  height: 50px;
  background: url(../img/icon40.png) no-repeat center center;
  margin-right: 30px;
}
.cpyc--list .cell .head .item1 a{
	background: none !important;
	width: 100% !important;
	line-height: 53px;
}
.cpyc--list .cell .head .item2 a{
	background: none !important;
	width: 100% !important;
	line-height: 53px;
}
.cpyc--list .cell .head .item3 a{
	background: none !important;
	width: 100% !important;
	line-height: 53px;
}
.cpyc--list .cell .head .item4 a{
	background: none !important;
	width: 100% !important;
	line-height: 53px;
}

.cpyc--list .cell .head .item5 a{
	background: none !important;
	width: 100% !important;
	line-height: 53px;
}
.cpyc--list .cell .head .item a:hover{
  opacity: .7;
}
.cpyc--list .cell .body {
  display: none;
  font-size: 16px;
  color: #666;
  line-height: 2;
}
.cpyc--list .cell.on .body {
	display: block;
}
.cpyc--list .cell .body img {
  max-width: 100%;
  height: auto !important;
}
.cpyc--list .cell .body .content {
  padding: 15px 30px 0;
}
.cpyc--list .cell .body .btn {
  padding: 30px 30px 30px 30px;
  text-align: left;
}
.cpyc--list .cell .body .btn a {
  display: inline-block;
  vertical-align: middle;
  margin-left: 20px;
  width: 95px;
  line-height: 36px;
  text-align: center;
  font-size: 16px;
  color: #0856A2;
  border: 2px solid #0856A2; 
}
.cpyc--list .cell .body .btn a:hover {
  background: #0856A2 !important;
  color: #fff !important;
}
.cpyc--list .cell .body .btn a.btn1 {
  color: #ff0856A2f;
}
.cpyc--list .cell .body .btn a.btn2 {
  color: #0856A2;
}
.cpyc--list .cell.open {
	display: block;
  border-bottom: 1px solid #f3f3f3;
}
.cpyc--list .cell.on .item a{
	background: url(../img/zk.png) no-repeat center center;
}
.lxfs{
	padding: 50px 0;
}
.lxfs .top{
	overflow: hidden;
}
.lxfs .top .left{
	float: left;
}
.lxfs .top .left p{
	font-size: 14px;
	color: #666;
	margin-top: 20px;
}
.lxfs .top .left p img{
	margin-right: 10px;
}
.lxfs .top .right{
	float: right;
	background: #f0f0f0;
	padding: 25px 35px;
	padding-right: 118px;
}
.lxfs .top .right>div{
	width: 410px;
	background: #fff;
	margin-bottom: 15px;
	border-radius: 5px;
}
.lxfs .top .right>div span{
	display: inline-block;
	vertical-align: middle;
	font-size: 14px;
	color: #666;
	margin: 0 10px;
}
.lxfs .top .right>div input{
	margin-left: 10px;
	width: 70%;
	font-size: 14px;
	display: inline-block;
	vertical-align: middle;
	line-height: 40px;
}
.lxfs .top .right>div textarea{
	width: 76%;
	height: 135px;
	margin-left: 10px;
	margin-top: 7px;
	font-size: 14px;
	resize: none;
}
.lxfs .top .right>a{
	display: inline-block;
	font-size: 14px;
	color: #0856A2;
	border: 2px solid #0856A2;
	border-radius: 5px;
	padding: 5px 10px;
	transition: .3s;
	cursor: pointer;
	margin-top: 10px;
	margin-right: 5px;
}
.lxfs .top .right>a:hover{
	background: #0856A2;
	color: #fff;
	transition: .3s;
}
.ckly{
	padding: 50px 0;
}
.ckly .list{
	overflow: hidden;
}
.ckly ul li>div{
	width: 46.4%;
}
.ckly ul{
	margin-top: 45px;
	min-height: 300px;
}
.ckly ul li{
	overflow: hidden;
	margin-bottom: 25px;
}
.ckly ul li .right{
	float: right;
	background: url(../img/right.png) no-repeat left 10%;
	padding-left: 50px;
}
.ckly ul li .right .top{
	overflow: hidden;
}
.ckly ul li .right .top img{
	float: left;
	margin-right: 20px;
}
.ckly ul li .right .top p{
	font-size: 14px;
	overflow: hidden;
}
.ckly ul li .right .top p span{
	float: right;
}
.ckly ul li .right .bottom{
	overflow: hidden;
	width: 80%;
	margin-left: 18%;
}
.ckly ul li .right .bottom img{
	float: right;
}
.ckly ul li .right .bottom p{
	font-size: 14px;
	color: #666;
}
.ckly ul li .left{
	float: left;
	background: url(../img/left.png) no-repeat right 10%;
	padding-right: 49px;
}
.ckly ul li .left .top{
	overflow: hidden;
}
.ckly ul li .left .top img{
	float: left;
	margin-right: 20px;
}
.ckly ul li .left .top p{
	font-size: 14px;
	overflow: hidden;
}
.ckly ul li .left .top p span{
	float: right;
}
.ckly ul li .left .bottom{
	overflow: hidden;
	width: 80%;
	margin-left: 18%;
	margin-top: 20px;
}
.ckly ul li .left .bottom img{
	float: right;
	margin-left: 20px;
}
.ckly ul li .left .bottom p{
	font-size: 14px;
	color: #666;
}
.sitemap{
	padding-top: 50px;
	background: url(../img/sitbj.png) no-repeat center bottom;
	font-size: 0;
	text-align: center;
	padding-bottom: 200px;
}
.sitemap dl{
	display: inline-block;
	vertical-align: top;
	width: 11%;
	margin-top: 35px;
}
.sitemap dl dt a{
	font-size: 16px;
	color: #fff;
	line-height: 40px;
	display: block;
}
.sitemap dl dt a:hover{
	background: #fff;
	color: #0856A2;
}
.sitemap dl dt{
	background: #0856A2;
	margin-bottom: 30px;
}
.sitemap dl dd{
	margin-top: 10px;
}
.sitemap dl dd a{
	font-size: 14px;
	color: #333;
}
.sitemap dl dd a:hover{
	color: #0856A2;
}
/*招标中心*/
.zb_zx {
	padding:50px 0;
}
.ellipsis,
.jzf {
	overflow: hidden;
	white-space: nowrap;
	-o-text-overflow: ellipsis;
	text-overflow: ellipsis;
}

.zbzx {
	min-height: 500px;
	margin-bottom:40px;
}

	.zbzx li {
		width:100% !important;
		height: 155px;
		border-bottom: 1px solid #ededed !important;
	}

		.zbzx li:hover {
			background-color: #f9f9f9 !important;
		}

		.zbzx li a {
			overflow: hidden;
			display: block;
		}

		.zbzx li .zb_nr {
			float: left;
			width: 80%;
			margin-left: 30px;
		}

		.zbzx li .zb_time {
			margin-top:35px;
			width: 90px;
			height: 90px;
			margin-right: 30px;
			float: right;
			background-color: #c0c0c0;
		}

		.zbzx li h3 {
			color: #323232;
			font-size: 18px;
			margin: 25px 0 20px 0;
		}

		.zbzx li:hover h3 {
			color: #0856a2;
		}

		.zbzx li p {
			height:25px;
			color: #666666;
			font-size: 14px;
		}

		.zbzx li i {
			text-align: center;
			margin-top: 10px;
			width: 85px;
			height: 30px;
			display: block;
			background: url(../img/jt.png) no-repeat center;
		}

	.zbzx li:hover i {
		background: url(../img/jts.png) #0856a2 no-repeat center;
	}

	.zbzx li:hover .zb_time {
		background-color: #0856a2;
	}

	.zbzx li .zb_time span {
		margin-top:20px;
		margin-bottom:2px;
		display: block;
	text-align:center;
		color: #ffffff;
		line-height:1 !important;
		font-size: 26px;
	}

	.zbzx li .zb_time em {
		margin-left:15px;
		color: #ffffff;
		font-size: 16px;
		display: block;
	}
@media screen and (max-width: 1560px) {
    .header>.content>a{
    	display:block;
    	margin: 0 auto;
    	float: none;
    	width: 380px;
    }
    .header>.content>ul{
    	width: 95%;
    	margin-top: 20px;
    }
    .header>.content>ul>li{
    	width: 11%;
    }
    .header>.content>img{
    	margin-top: 25px;
    	float: left;
    }
    .header>.content{
    	width: 100%;
    }
    
}
@media screen and (max-width: 1200px) {
	body{
		position: absolute;
    left: 0;
    top: 0;
	}
}