@charset "utf-8";

/******************************************公共样式****************************************/
* {
	margin: 0;
	padding: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
	box-sizing: border-box;
}
html,body {
	font-size: 14px;
	font-family: "微软雅黑","Microsoft YaHei","HanHei SC","PingHei","PingFang SC","STHeitiSC-Light","Helvetica Neue","Helvetica","Arial";
	color: #333;
	background: #fff;
}
ul li,ol li {
	list-style: none;
}
a {
	text-decoration: none;
	outline: none;
	blr: expression(this.onFocus=this.blur());
	color: #333;
}
img {
	max-width:100% !important;
	border: none;
}
input {
	max-width: 100% !important;
	border: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
caption,th,td {
	font-weight: normal;
	text-align: left;
}
input,textarea,select,button {
	font-size: 100%;
	font-family: inherit;
	margin: 0;
	padding: 0;
	outline: none;
	/*appearance:none;
	-moz-appearance:none;
	-webkit-appearance:none;*/
}
label,button {
	cursor: pointer
}
textarea {
	white-space: pre;
	resize: none;
	border: 1px solid #ececec;
}
article,aside,figcaption,figure,footer,header,hgroup,nav,section,summary {
	display: block;
}
.clearfix:after {
	content: "";
	display: block;
	clear: both;
	height: 0;
	line-height: 0;
	visibility: hidden;
}
.clearfix {
	zoom: 1;
}
.fl {
	float: left;
}
.fr {
	float: right;
}

.wrapper{
	width: calc(100% - 20px);
	max-width: 1200px;
	margin-left:auto;
	margin-right:auto;
}
#burger{
	display: none;
	position: absolute;
	top: 25px;
	right: 0px;
	width: 30px;
    height: 20px;
	cursor: pointer;
}
#burger span{
	width: 30px;
	height: 4px;
	background-color: #C9C9C9;
	display: block;
	margin-bottom: 4px;
	-webkit-transition: -webkit-transform 250ms, opacity 250ms;
	-moz-transition: -moz-transform 250ms, opacity 250ms;
	transition: transform 250ms, opacity 250ms;
}
#burger span:last-of-type{
	margin-bottom: 0;
}
#burger.on span:nth-child(1){
	transform: rotateZ(-45deg) translateX(-5px) translateY(6px);
}
#burger.on span:nth-child(2){
    opacity: 0;
    -webkit-transform: rotateZ(-90deg);
    -moz-transform: rotateZ(-90deg);
    -ms-transform: rotateZ(-90deg);
    -o-transform: rotateZ(-90deg);
    transform: rotateZ(-90deg);
}
#burger.on span:nth-child(3){
	transform: rotateZ(45deg) translateX(-5px) translateY(-6px);
}

/* 头部 */
header .logo{
	display: block;
	width: 80%;
	max-width:480px;
}
header > .wrapper{
	position: relative;
	padding: 20px 0;
}
header .searchBox{
	position: absolute;
	top: 15px;
	right: 0;
}
header .topNav{
	text-align: right;
	font-size: 12px;
}
header .search{
	width: 203px;
	height: 28px;
	background: url(../images/search.png) no-repeat;
	display: flex;
	padding-left: 30px;
	margin-top: 20px;
}
header .search input[type="search"]{
	width: 130px;
	background: none;
	border: none;
}
header .search input[type="button"]{
	border: none;
	width: 42px;
	background: none;
}
header .navBox{
	background: #bd130c;
}
header .nav{
	display: flex;
}
header .nav li{
	padding: 12px 0;
	position: relative;
}
header .nav li .first_nav{
	padding:0 20px;
}
header .nav li:not(:last-of-type) .first_nav{
	border-right: 1px solid #fff;
}
header .nav .first_nav span{
	display: none;
}
header .nav li a{
	color: #fff;
	display: block;
}
header .nav li .sec_nav{
	display: none;
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	width: 130%;
	background:#bd130c;
}
header .nav li .sec_nav a{
	border-top:1px dotted #fff;
	text-align: center;
	line-height: 40px;
}
.subBanner{
	margin-top:10px;
	margin-bottom:10px;
}
footer{
	background:#eee;
}
footer .wrapper{
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 0;
	font-size: 12px;
}
.subPage{
	margin-bottom: 20px;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}
.sideNav{
	width: 270px;
}
.sideNav h2{
	background: #c30902;
	color: #fff;
	font-size: 16px;
	font-weight: normal;
	line-height: 40px;
	padding-left: 15px;
}
.sideNav ul{
	padding: 15px 15px 35px;
	border: 1px solid #e2e2e2;
	background: linear-gradient(#ffffff,#EEEEEE);
}
.sideNav ul li{
	border-bottom: 1px dotted #a3a3a3;
	line-height: 40px;
	padding-left: 10px;
}
.sideNav ul li a::before{
	content: "";
	display: inline-block;
	width: 0;
	height: 0;
	border-left: 5px solid #464646;
	border-top: 5px solid transparent;
	border-bottom: 5px solid transparent;
	margin-right: 5px;
}
.sideNav ul li .active::before,.sideNav ul li a:hover::before{
	border-left: 5px solid #C30902;
}
.sideNav ul li .active,.sideNav ul li a:hover{
	color:#C30902;
}
.subPageRight{
	width: calc(100% - 280px);
}
.subPageRight>.title{
	border: 1px solid #e2e2e2;
	height: 40px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.subPageRight>.title h3{
	font-size: 16px;
	font-weight: normal;
	border-bottom: 3px solid #be0a02;
	padding:0 15px;
	height: 42px;
	line-height: 42px;
	display: flex;
	align-items: center;
}
.subPageRight>.title h3::before{
	content: "";
	display: inline-block;
	width: 3px;
	height: 15px;
	background:#be0a02;
	margin-right: 10px;
}
.subPageRight .breadNav{
	padding:0 20px;
	background: url(../images/home.png) no-repeat left center;
}
.subPageCon{
	padding: 20px;
	border: 1px solid #e2e2e2;
	border-top: none;
}
/* 分页 */
.pageBox{
	padding:30px 0;
	display: flex;
	justify-content: flex-end;
	align-items: center;
}
.pageBox  span{
	display: inline-block;
	margin-right: 5px;
	cursor: pointer;
}
.pageBox span{
	padding: 2px 6px;
	border: 1px solid #D3D3D3;
}
	.pageBox span:hover {
		background: #C30902;
		color: #fff;
	}
	.pageBox .current {
		background: #C30902;
		color: #fff;
	}

.pageBox input{
	width: 40px;
	margin: 0 2px;
}
.pageBox button{
	margin-left: 5px;
}

/* 关于政平 */
.gyzp p{
	text-indent: 2em;
	line-height: 30px;
}
.gyzp img{
	width: auto;
	float: right;
	border: 7px solid #ececec;
	margin-left: 15px;
}
/* 新闻中心-栏目页 */
.xwzx_lu .news_list a{
	display: block;
	border-bottom: 1px dotted #888;
	padding: 10px;
	font-size:14px;
}
.xwzx_lu .news_list .top{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.xwzx_lu .news_list .top .title{
	width: calc(100% - 160px);
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}
.xwzx_lu .news_list .top .title::before{
	content: "";
	display: inline-block;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: #C30902;
	margin-right: 10px;
	position: relative;
	top: -3px;
}
.xwzx_lu .news_list .top .date{
	width: 150px;
}
.xwzx_lu .news_list .content{
	line-height: 30px;
	margin-top: 10px;
	width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
/* 新闻中心-内容页 */
.xwzx_nr h2{
	font-size: 16px;
	font-weight: normal;
	text-align: center;
	line-height: 60px;
	border-bottom: 1px dotted #888;
}
.xwzx_nr .article_info{
	display: flex;
	justify-content: space-around;
	font-size: 14px;
	color: #595959;
	padding: 10px 0;
	margin-bottom: 20px;
}
.xwzx_nr .os{
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 0;
	border-top: 1px solid #888;
	margin-top: 20px;
}
.xwzx_nr .os .next{
	color: #c10a02;
}
/* 业务领域-栏目页 */
.ywlu_list,.gcal_list{
	display: flex;
	flex-wrap: wrap;
}
.ywlu_list a{
	display: block;
	width: 33%;
	padding: 0 5px;
	margin-bottom: 10px;
}
.ywlu_list .imgBox{
	width: 100%;
	height: 0;
	overflow: hidden;
	position: relative;
	padding-top: 66%;
}
.ywlu_list img{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: auto;
}
.ywlu_list .title{
	font-size: 14px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	font-weight: bold;
	color: #fff;
	background: #d41a19;
}
/* 工程案例-栏目页 */
.gcal_list a{
	display: block;
	width:25%;
	padding: 0 5px;
	margin-bottom: 10px;
}
.gcal_list .line,.slide_list .line{
	padding: 2px;
	border: 1px solid #ddd;
}
.gcal_list .imgBox,.slide_list .imgBox{
	width: 100%;
	height: 0;
	overflow: hidden;
	position: relative;
	padding-top: 75%;
}
.gcal_list img,.slide_list img{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: auto;
}
.gcal_list .title,.slide_list .title{
	font-size: 12px;
	text-align: center;
	height: 40px;
	line-height: 40px;
	width: 100%;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
/* 工程案例-内容页 */
.slide_nav{
	padding: 20px 5px;
	border: 1px solid #e2e2e2;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 20px;
}
.slide_nav span{
	cursor: pointer;
	display: block;
	width:15px;
}
.slide_list_box{
	width: calc(100% - 40px);
	overflow: hidden;
}
.slide_list{
	display: flex;
	position: relative;
	width: 10000000px;
	left: 0;
	transition: left 0.5s;
}
.slide_list a{
	padding: 0 5px;
}
/* 资料下载-栏目页 */
.zlxz_list a{
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 40px;
	font-size: 14px;
	border-bottom: 1px dotted #888;
}
.zlxz_list .data{
	width: 150px;
}
.zlxz_list .title{
	width: calc(100% - 160px);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	display: flex;
	align-items: center;
}
.zlxz_list .title::before{
	content: "·";
	margin-right: 5px;
}
/* 人力资源-栏目页 */
.rlzy_list table{
	width: 100%;
}
.rlzy_list table th{
	font-weight: bold;
}
.rlzy_list table th,.rlzy_list table td{
	font-size: 14px;
	height: 45px;
	text-align: center;
}
/* 人力资源-内容页 */
.rlzy_nr{
	line-height: 40px;
}
.rlzy_nr h3{
	border-bottom: 1px solid #dedede;
	font: 22px/50px "微软雅黑";
	color: #1f1f1f;
	margin-bottom: 10px;
}
.rlzy_nr .intro{
	display: flex;
	flex-wrap: wrap;
}
.rlzy_nr .intro li{
	width: 25%;
}
/* 联系我们-留言反馈 */
.lyfk{
	width: 100%;
	max-width:500px;
	margin: 0 auto;
	padding: 30px 0;
}
.lyfk dl{
	display: flex;
	align-items: center;
	margin-bottom: 10px;
}
.lyfk dt{
	font-size: 14px;
	color: #5e5e5e;
	width: 72px;
}
.lyfk dd{
	display: flex;
	align-items: center;
	width: calc(100% - 72px);
}
.lyfk dl dd input[type=text] {
    border: 1px solid #e1e1e1;
    max-width: 200px;
    padding: 0 10px;
    height: 25px;
    font-size: 12px;
}
.lyfk i{
	font-style: normal;
	font-size: 12px;
	color: #bd0c1a;
	margin-left: 15px;
}
.lyfk dl dd span {
    font-style: normal;
    font-size: 12px;
    color: #9e9e9e;
    margin-left: 15px;
}
.lyfk dl dd textarea {
    border: 1px solid #e1e1e1;
    width: 410px;
    height: 80px;
    padding: 10px;
    font-size: 12px;
}
.lyfk dd img{
	width: auto;
	height:25px;
	margin-left: 15px;
}
.lyfk .btnBox{
	text-align: center;
	margin-top: 50px;
}
.lyfk .btnBox button{
	display: inline-block;
	width:102px;
	height: 35px;
	background: url(../images/tj.png);
	border: none;
}

@media only screen and (min-width: 1024px){
	.subBanner img {
		width: 100%;
		max-width: 100%;
		height:333px;
	}
	.subPageCon .ywly_list .imgBox img {
		width: 272px;
		height:179px;
	}
	.subPageCon .gcal_list .imgBox img {
		width: 204px;
		height: 153px;
	}
}

@media only screen and (max-width: 1023px){
	.subBanner img {
		width: 100%;
		max-width: 100%;
	}
	header > .wrapper{
		padding: 10px;
	}
	.subBanner{
		margin: 0;
		width: 100%;
	}
	#burger{
		display: block;
	}
	.searchBox{
		display: none;
	}
	header{
		position: relative;
	}
	header .nav{
		display: none;
		border-top: 1px solid #ccc;
		position: absolute;
		z-index: 100;
		top: 100%;
		left: -10px;
		width:calc(100% + 20px);
		background:#fff;
		margin: 0;
		padding: 0;
	}
	header .nav li{
		padding: 0;
	}
	header .nav .first_nav{
		line-height: 40px;
		border-bottom: 1px solid #ccc;
		color: #333;
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
	header .nav .first_nav span{
		display: flex;
		align-items: center;
		width: 15px;
		transition: all 0.5s;
	}
	header .nav .first_nav span.on{
		transform: rotate(180deg);
	}
	header .nav li .sec_nav{
		position: relative;
		background: #fff;
		width: 100%;
	}
	header .nav li .sec_nav a{
		color: #333;
		text-align: left;
		text-indent: 30px;
		border-bottom:1px dotted #ddd;
	}
	.sideNav{
		display: none;
	}
	.subPageRight{
		width: 100%;
	}
}

@media only screen and (max-width: 960px){
	footer .wrapper{
		display: block;
	}
	footer .bottomNav{
		margin-bottom: 10px;
	}
	.subBanner img{
		width:100%;
		max-width:100%;
	}
}

@media only screen and (max-width: 768px) {
	.subBanner img {
		width: 100%;
		max-width: 100%;
	}
	.ywlu_list a{
		width: 50%;
		padding: 0 2px;
	}
	.gcal_list a{
		width:33.33%;
	}
	.rlzy_nr .intro li{
		width: 33.33%;
	}
}

@media only screen and (max-width: 640px) {
	.subBanner img {
		width: 100%;
		max-width: 100%;
	}
	.gcal_list a{
		width:50%;
		padding: 0 2px;
	}
	.rlzy_nr .intro li{
		width: 50%;
	}
}

@media only screen and (max-width: 480px) {
	.subBanner img {
		width: 100%;
		max-width: 100%;
	}
	.subPageCon{
		padding: 10px;
	}
	.breadNav{
		display: none;
	}
	.gyzp img{
		float: none;
		margin: 0;
		width: 100%;
	}
	.xwzx_lu .news_list .top{
		display: block;
	}
	.xwzx_lu .news_list .top .title{
		width: 100%;
	}
	.xwzx_lu .news_list .top .date{
		width: 100%;
		text-align: right;
		margin-top: 5px;
	}
	.pageBox div,.pageBox button{
		display: none;
	}
	.xwzx_nr .os{
		display: block;
	}
	.xwzx_nr .os a{
		display: block;
		line-height: 30px;
	}
	.zlxz_list a{
		display: block;
		height: auto;
		padding: 10px 0;
	}
	.zlxz_list .date{
		margin-top: 5px;
		text-align: right;
	}
	.rlzy_list table th:nth-of-type(3),.rlzy_list table th:nth-of-type(5){
		display: none;
	}
	.rlzy_list table td:nth-of-type(3),.rlzy_list table td:nth-of-type(5){
		display: none;
	}
	.lyfk dl dd span{
		display: none;
	}
	.xwzx_lu .news_list .top .title::before{
		margin-right: 5px;
	}
}