@charset "utf-8";
/* CSS Document */
/*
	-webkit-transition: all 0.5s;
	-moz-transition: 	all 0.5s;
	-ms-transition: 	all 0.5s;
	-o-transition: 		all 0.5s;
	transition: 		all 0.5s;
*/
.container{
	width: 90%;
	max-width: 1440px;
	margin: 0 auto;
}
.container img{
	max-width: 100%;
}
.header{
	padding: 35px 0;
	position: fixed;
	width: 100%;
	left: 0;
	top: 0;
	z-index: 99;
	-webkit-transition: all 0.5s;
	-moz-transition: 	all 0.5s;
	-ms-transition: 	all 0.5s;
	-o-transition: 		all 0.5s;
	transition: 		all 0.5s;
}
.nheader{
	background: #fff;
	box-shadow: 0 0 12px 0 rgba(0,0,0,.2);
}
.header1{
	padding: 20px 0;
	background: #fff;
	box-shadow: 0 0 12px 0 rgba(0,0,0,.2);
}

.menu li{
	float: left;
	display: block;
	line-height: 50px;
	margin: 0 0 0 80px;
}
.menu li:first-child{
	margin: 0;
}
.menu li a{
	font-size: 18px;
	display: block;
	position: relative;
}
.menu li a:after{
	position: absolute;
	width: 0;
	height: 2px;
	background-color: #ff6600;
	content: '';
	display: block;
	left: 50%;
	-webkit-transition: all 0.5s;
	-moz-transition: 	all 0.5s;
	-ms-transition: 	all 0.5s;
	-o-transition: 		all 0.5s;
	transition: 		all 0.5s;
}
.menu li.this a:after,
.menu li:hover a:after{
	width: 100%;
	left: 0;
}

.search{
	position: relative;
	z-index: 1;
	overflow: hidden;
	background: #f4f4f4;
}
.search:before{
	width: 60%;
	height: 54px;
	content: '';
	display: block;
	background: #185baa;
	position: absolute;
	z-index: -1;
	left: 0;
	top: 0;
}
.search:after{
	width: 70px;
	height: 54px;
	content: '';
	display: block;
	background: #185baa;
	position: absolute;
	z-index: -1;
	left: 60%;
	top: 0;
	transform: rotate(-60deg);
	transform-origin: left bottom;
}
.hotkeys{
	width: 60%;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
	line-height: 54px;
	color: #fff;
	font-size: 14px;
}
.hotkeys .iconfont{
	margin: 0 7px 0 0;
	font-size: 20px;
}
.hotkeys a{
	color: #fff;
	font-size: 14px;
}

.searchform .stext{
	width: 240px;
	height: 34px;
	box-sizing: border-box;
	padding: 0 10px;
	border: none;
	margin: 10px 0;
	background: #fff;
}
.searchform .sbut{
	line-height: 34px;
	color: #185baa;
	font-size: 24px;
	cursor: pointer;
	margin: 10px 0;
	padding: 0 5px;
	background: #fff;
}

.stitle{
	text-align: center;
}
.stitle h3{
	opacity: .1;
	color: #000;
	font-family: "Arial";
	font-size: 60px;
	text-transform: uppercase;
	line-height: 50px;
}
.stitle h2{
	font-size: 36px;
	line-height: 50px;
	margin-top: -30px;
}
.stitle h2:after{
	width: 50px;
	height: 3px;
	content: '';
	display: block;
	background: #185baa;
	margin: 5px auto 0 auto;
}

.procate li{
	display: block;
	width: 31.25%;
	float: left;
	text-align: center;
	line-height: 60px;
	margin: 0 3.125% 0 0;
}
.procate li:last-child{
	margin: 0;
}
.procate li .iconfont{
	display: inline-block;
	font-size: 24px;
	margin: 0 10px 0 0;
	vertical-align: middle;
	color: #ff6600;
	-webkit-transition: all 0.5s;
	-moz-transition: 	all 0.5s;
	-ms-transition: 	all 0.5s;
	-o-transition: 		all 0.5s;
	transition: 		all 0.5s;
}
.procate li a{
	font-size: 20px;
	display: block;
	background: #eeeeee;
	-webkit-transition: all 0.5s;
	-moz-transition: 	all 0.5s;
	-ms-transition: 	all 0.5s;
	-o-transition: 		all 0.5s;
	transition: 		all 0.5s;
}
.procate li.this .iconfont,
.procate li:hover .iconfont{
	color: #fff;
}
.procate li.this a,
.procate li:hover a{
	color: #fff;
	background: #185baa;
}

.prolist li{
	display: block;
	width: 31.25%;
	float: left;
	margin: 0 3.125% 3% 0;
}
.prolist li:nth-child(3n){
	margin: 0 0 3% 0;
}
.prolist li p{
	text-align: center;
	line-height: 60px;
	color: #333;
	font-size: 20px;
	-webkit-transition: all 0.5s;
	-moz-transition: 	all 0.5s;
	-ms-transition: 	all 0.5s;
	-o-transition: 		all 0.5s;
	transition: 		all 0.5s;
}
.prolist li a{
	display: block;
}
.prolist li .pic{
	border: 2px solid #fff;
	-webkit-transition: all 0.5s;
	-moz-transition: 	all 0.5s;
	-ms-transition: 	all 0.5s;
	-o-transition: 		all 0.5s;
	transition: 		all 0.5s;
}
.prolist li:hover .pic{
	border: 2px solid #185baa;
}
.prolist li:hover .pic img{
	-webkit-transform: 	scale(1.1);
	-moz-transform: 	scale(1.1);
	-ms-transform: 		scale(1.1);
	-o-transform: 		scale(1.1);
	transform: 			scale(1.1);
}
.prolist li:hover p{
	background: #185baa;
	color: #fff;
}
#nmao{
	position: absolute;
}

.aboutbg{
	box-shadow: 0 0 12px 0 rgba(0,0,0,.2);
	position: relative;
}
.aboutbg .about{
	width: 51%;
}
.about .stitle{
	text-align: left;
}
.about .stitle h2:after{
	margin: 5px 0 0 0;
}

.compnaytitle h2{
	font-size: 30px;
	color: #185baa;
	line-height: 30px;
}
.compnaytitle h3{
	font-size: 17px;
	color: #333333;
	line-height: 17px;
	margin: 10px 0 0 0;
}

.about .text{
	font-size: 16px;
	line-height: 24px;
	color: #555;
}
.about .more{
	width: 170px;
	line-height: 48px;
	display: block;
	color: #fff;
	background: #ff6600;
	text-align: center;
	font-size: 18px;
}


.aboutbg .pic{
	width: 46.5%;
	position: absolute;
	right: 0;
	top: 0;
}
.aboutnum{
	position: absolute;
	width: 73%;
	padding: 30px 0;
	left: 0;
	bottom: 40px;
	background: rgba(255,255,255,.8);
}
.aboutnum li{
	display: block;
	float: left;
	width: 33.333%;
	text-align: center;
	color: #333;
	font-size: 20px;
}
.aboutnum li .num span{
	color: #185baa;
	font-family: "Arial";
	font-size: 60px;
	font-weight: bold;
}

.youshibg{
	background: url("../images/bg_youshi.jpg") center no-repeat;
	background-size: cover;
}
.youshibg .stitle h3{
	color: #fff;
	opacity: .2;
}
.youshibg .stitle h2{
	color: #fff;
}
.youshibg .stitle h2:after{
	background: #fff;
}

.youshilist li{
	display: block;
	box-sizing: border-box;
	border: 2px solid rgba(255,255,255,.5);
	background: rgba(255,255,255,.2);
	color: #fff;
	width: 32%;
	margin: 0 2% 0 0;
	float: left;
	text-align: center;
	padding: 44px 0;
}
.youshilist li:last-child{
	margin: 0;
}
.youshilist li .iconfont{
	font-size: 68px;
}
.youshilist li strong{
	font-size: 30px;
	display: block;
	line-height: 30px;
	margin: 20px 0 12px 0;
}
.youshilist li span{
	font-size: 18px;
	line-height: 16px;
	font-family: "Arial";
	display: block;
	text-transform: uppercase;
	opacity: .6;
}
.youshilist li .text{
	text-align: left;
	font-size: 14px;
	line-height: 24px;
	padding: 0 40px;
	display: table;
	margin: 30px auto 0 auto;
}

.newslist{
	width: 46%;
}
.newslist li{
	display: block;
	border-top: 1px dashed #dddddd;
}
.newslist li:last-child{
	border-bottom: 1px dashed #dddddd;
}
.newslist li a{
	display: block;
	padding: 22px 0;
}
.newslist li .date{
	width: 17%;
	color: #bababa;
}
.newslist li .date strong{
	display: block;
	font-size: 66px;
	line-height: 54px;
	opacity: .6;
	font-weight: normal;
}
.newslist li .date p{
	font-size: 20px;
	margin: 10px 0 0 0;
}
.newslist li .text{
	width: 83%;
}
.newslist li .text strong{
	font-size: 20px;
	color: #333;
	padding: 10px 0;
	display: block;
}
.newslist li .text p{
	font-size: 14px;
	color: #999;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
	margin: 10px 0 0 0;
}

.picnews{
	width: 50%;
}
.picnews .text{
	background: #185baa;
	padding: 30px 40px;
}
.picnews .text strong{
	display: block;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
	font-size: 20px;
	padding: 0 0 20px 0;
	color: #fff;
	border-bottom: 1px dashed #fff;
}
.picnews .text p{
	font-size: 14px;
	line-height: 30px;
	color: #fff;
	margin: 20px 0 0 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.footerbg{
	background: #f8f8f8;
	padding: 70px 0 0 0;
	color: #333333;
}
.fcontact{
	font-size: 16px;
	line-height: 36px;
}
.fcontact .iconfont{
	font-size: 18px;
	margin: 0 8px 0 0;
	color: #ff6501;
}
.fcontact h2{
	line-height: 24px;
	color: #333;
	margin: 0 0 30px 0;
}
.ftitle{
	font-weight: bold;
	font-size: 20px;
	margin: 0 0 15px 0;
}
.ftitle .iconfont{
	font-weight: normal;
	font-size: 22px;
	margin: 0 8px 0 0;
	color: #ff6501;
}
.fmenu,
.fpro{
	margin: 0 0 0 15%;
}
.fmenu li,
.fpro li{
	display: block;
	line-height: 30px;
}
.fmenu li a,
.fpro li a{
	font-size: 14px;
	color: #333;
}

.fewm{
	text-align: center;
}
.fewm p{
	font-size: 14px;
	text-align: center;
	margin: 10px 0 0 0;
}

.cr{
	border-top: 1px solid #cccccc;
	line-height: 20px;
	text-align: center;
	padding: 20px 0;
	color: #333;
	font-size: 14px;
	word-break: keep-all;
}
.cr a{
	color: #333;
	font-size: 14px;
}



.bannerbg,
.bannerbg .nbanner,
.bannerbg .listbanner{
	height: 440px;
	background-image: url("../images/banner_about.jpg");
}
.bannerbg .nbanner,
.bannerbg .listbanner{
	display: table;
}
.bannerbg .nbanner .text,
.bannerbg .listbanner .text{
	display: table-cell;
	vertical-align: middle;
	text-align: center;
}
.bannerbg .text h3{
	text-transform: uppercase;
	font-size: 96px;
	font-family: "Arial";
	color: #fff;
	opacity: .2;
	line-height: 72px;
}
.bannerbg .text h2{
	font-size: 58px;
	color: #fff;
	line-height: 58px;
	margin-top: -38px;
}

.ncate{
	border-bottom: 1px solid #eee;
}
.ncatelist li{
	display: block;
	float: left;
	line-height: 56px;
	text-align: center;
	background: #eeeeee;
	margin: 0 15px 0 0;
}
.ncatelist li a{
	font-size: 20px;
	padding: 0 30px;
	display: block;
	-webkit-transition: all 0.5s;
	-moz-transition: 	all 0.5s;
	-ms-transition: 	all 0.5s;
	-o-transition: 		all 0.5s;
	transition: 		all 0.5s;
}
.ncatelist>li:hover>a,
.ncatelist>li.this>a{
	color: #fff;
	background: #ff6600;
}
.ncatelist li a i{
	font-size: 20px;
	margin: 0 6px 0 0;
}


.bnav{
	font-size: 14px;
	line-height: 56px;
}
.bnav .iconfont{
	color: #999999;
	margin: 0 5px 0 0;
}
.bnav a{
	font-size: 14px;
}


.nabout h2{
	text-align: center;
	color: #185baa;
	margin: 0 0 50px 0;
}
.nabout .text{
	font-size: 18px;
	line-height: 34px;
	color: #333333;
}



.nhonor li{
	width: 23.75%;
	margin: 0 1.666% 1.666% 0;
	display: block;
	float: left;
}
.nhonor li:nth-child(4n){
	width: 23.75%;
	margin: 0 0 1.666% 0;
}

.ncontact h2{
	font-size: 24px;
	color: #282828;
	margin: 0 0 30px 0;
}

.contactinfo{
	width: 57%;
}
.contactinfo .text{
	padding: 70px 60px;
	font-size: 16px;
	line-height: 50px;
	background: #f4f4f4;
}
.contactinfo .iconfont{
	color: #185baa;
	font-size: 22px;
	margin: 0 10px 0 0;
}

.messageform{
	width: 36%;
}
.messageform li{
	display: block;
	position: relative;
	margin: 0 0 10px 0;
}
.messageform li input{
	height: 46px;
	background: #f4f4f4;
	width: 100%;
	padding: 0 20px;
	border: none;
	box-sizing: border-box;
}
.messageform li textarea{
	height: 160px;
	background: #f4f4f4;
	width: 100%;
	padding: 20px 20px;
	border: none;
	box-sizing: border-box;
}
.messageform li .subbutton{
	background: #185baa;
	color: #fff;
}
.messageform li img{
	background: #f4f4f4;
	padding: 5px 0;
	width: 82px;
	height: 35px;
	position: absolute;
	right: 0;
	top: 0;
}


.ndownload li{
	display: block;
	line-height: 50px;
	float: left;
	width: 49%;
	margin: 0 2% 1% 0;
	position: relative;
}
.ndownload li:nth-child(2n){
	margin: 0 0 1% 0;
}
.ndownload li a{
	background: #f4f4f4;
	padding: 0 50px 0 20px;
	display: block;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
	border: 1px solid #eeeeee;
	color: #333;
}
.ndownload li .iconfont{
	position: absolute;
	width: 40px;
	line-height: 50px;
	right: 0;
	top: 0;
	color: #999999;
	font-size: 20px;
}

.nnews li{
	display: block;
	margin: 0 0 15px 0;
}
.nnews li:last-child{
	margin: 0;
}
.nnews li a{
	display: block;
	padding: 26px;
	background: #f9f9f9;
}
.nnews li .pic{
	width: 15%;
	height: 140px;
}
.nnews li .text{
	width: 83%;
}
.nnews li .text strong{
	display: block;
	font-size: 20px;
	color: #333333;
	margin: 10px 0 0 0;
    overflow: hidden;
    text-overflow: ellipsis;
	white-space: nowrap;
}
.nnews li .text span{
	display: block;
	font-size: 14px;
	color: #999999;
	margin: 5px 0 15px 0;
}
.nnews li .text p{
	font-size: 14px;
	line-height: 24px;
	max-height: 44px;
	min-height: 44px;
	color: #999999;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}


.nprocate li a{
	padding: 0 90px 0 30px;
}
.nprocate li span{
	font-size: 20px;
	text-align: center;
	position: absolute;
	right: 0;
	top: 0;
	width: 56px;
	height: 56px;
	cursor: pointer;
	-webkit-transform: 	rotate(90deg);
	-moz-transform: 	rotate(90deg);
	-ms-transform: 		rotate(90deg);
	-o-transform: 		rotate(90deg);
	transform: 			rotate(90deg);
	-webkit-transition: all 0.5s;
	-moz-transition: 	all 0.5s;
	-ms-transition: 	all 0.5s;
	-o-transition: 		all 0.5s;
	transition: 		all 0.5s;
}
.nprocate li.this span,
.nprocate li:hover span{
	color: #fff;
}
.nprocate li{
	position: relative;
}
.nprocate li ul{
	position: absolute;
	display: none;
	top: 65px;
	left: 0;
	max-height: 260px;
	overflow: scroll;
	width: 100%;
	background: #fff;
	padding: 10px 0;
	background: #eeeeee;
	box-sizing: border-box;
	z-index: 9;
	box-shadow: 0 0 12px 0 rgba(0,0,0,.2);
}
.nprocate li ul::-webkit-scrollbar-thumb {
	background: rgba(0,0,0,0.2);
}
.nprocate li ul::-webkit-scrollbar-track {
	background: rgba(0,0,0,0.2);
}
.nprocate li ul li{
	float: none;
	margin: 0;
	line-height: 40px;
	text-align: left;
}
.nprocate li ul li a{
	font-size: 16px;
	padding: 0 20px 0 20px;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
}
.nprocate li:hover ul li a{
	background: #eeeeee;
	color: #000;
}
.nprocate li ul li:hover a{
	background: #d1deee;
}


.procatelist .pic{
	float: left;
	width: 32%;
	margin: 0 2% 0 0;
	position: relative;
}
.procatelist .pic:last-child{
	margin: 0;
}
.procatelist .pic .text{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	padding: 40px 80px;
	box-sizing: border-box;
	background: rgba(0,0,0,.5);
	overflow: scroll;
	opacity: 0;
	-webkit-transition: all 0.5s;
	-moz-transition: 	all 0.5s;
	-ms-transition: 	all 0.5s;
	-o-transition: 		all 0.5s;
	transition: 		all 0.5s;
}
.procatelist .pic .text::-webkit-scrollbar-thumb {
	background: rgba(0,0,0,0);
}
.procatelist .pic .text::-webkit-scrollbar-track {
	background: rgba(0,0,0,0);
}
.procatelist .pic:hover .text{
	opacity: 1;
}
.procatelist .pic .text a{
	display: block;
	line-height: 40px;
	font-size: 18px;
	color: #fff;
}

.screenlist{}
.screenlist li{
	display: block;
	float: left;
	width: 15.5%;
	line-height: 50px;
	position: relative;
	background: #f4f4f4;
	box-sizing: border-box;
	cursor: pointer;
	margin: 0 1.4% 1.4% 0;
}
.screenlist5 li{
	width: 18.88%;
}
.screenlist6 li{
	width: 15.5%;
}
.screenlist7 li{
	width: 13.0857%;
}
.screenlist8 li{
	width: 11.275%;
}
.screenlist li:last-child{
	margin: 0 0 1.4% 0;
}
.screenlist li a{
	display: block;
	padding: 0 20px;
	border: 1px solid #cccccc;
}
.screenlist li span{
	font-size: 20px;
	text-align: center;
	position: absolute;
	right: 0;
	top: 0;
	width: 50px;
	height: 50px;
	cursor: pointer;
	-webkit-transform: 	rotate(90deg);
	-moz-transform: 	rotate(90deg);
	-ms-transform: 		rotate(90deg);
	-o-transform: 		rotate(90deg);
	transform: 			rotate(90deg);
	-webkit-transition: all 0.5s;
	-moz-transition: 	all 0.5s;
	-ms-transition: 	all 0.5s;
	-o-transition: 		all 0.5s;
	transition: 		all 0.5s;
}
.screenlist li ul{
	position: absolute;
	display: none;
	width: 100%;
	top: 54px;
	left: 0;
	max-height: 260px;
	overflow: scroll;
	width: 100%;
	background: #fff;
	padding: 0 0;
	box-sizing: border-box;
	box-shadow:  0 0 12px 0 rgba(0,0,0,.1);
	z-index: 8;
}
.screenlist li ul li{
	width: 100%;
	border: none;
	line-height: 30px;
	background: #fff;
	border-bottom: 1px solid #ececec;
	margin: 0;
}
.screenlist li ul li:last-child{
	border: none;
}
.screenlist li ul li a{
	display: block;
	border: none;
	font-size: 14px;
	-webkit-transition: all 0.5s;
	-moz-transition: 	all 0.5s;
	-ms-transition: 	all 0.5s;
	-o-transition: 		all 0.5s;
	transition: 		all 0.5s;
}
.screenlist li ul li a.this,
.screenlist li ul li:hover a{
	background: #d1deee;
}


.nprolist li{
	display: block;
	float: left;
	width: 23.8%;
	margin: 0 1.2% 1.2% 0;
}
.nprolist li:nth-child(4n){
	margin: 0 0 1.2% 0;
}
.nprolist li:nth-child(4n+1){
	clear: both;
}
.nprolist li .pic{
	border: 1px solid #cccccc;
}
.nprolist li p{
	border: 1px solid #cccccc;
	border-top: none;
	line-height: 60px;
	padding: 0 60px 0 20px;
	position: relative;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
}
.nprolist li p input{
	position: absolute;
	width: 24px;
	height: 24px;
	border-radius: 2px;
	position: absolute;
	right: 25px;
	top: 50%;
	margin-top: -12px;
	-webkit-appearance: checkbox;
	z-index: 8;
}

.cpbt{
	padding: 0 20px;
	line-height: 50px;
	text-align: center;
	color: #fff;
	font-size: 18px;
	border-radius: 2px;
	background: #185baa;
	cursor: pointer;
}
.cpbt .iconfont{
	font-size: 20px;
	display: inline-block;
	vertical-align: middle;
	margin: 0 5px 0 0;
}


.detailtable table{
	table-layout: fixed;
	width: 100%;
	border-top: 2px solid #333;
	border-left: 2px solid #333;
}
.detailtable table td{
	border-bottom: 2px solid #333;
	border-right: 2px solid #333;
	padding: 0 10px;
	font-size: 18px;
	color: #333;
	text-align: center;
}
.detailtable table td a{
	display: block;
	font-size: 18px;
}
.detailtable table td img{
	max-width: 100%;
}
.detailtable table .tbheader{
	text-align: center;
	background: #ddd;
}
.detailtable table .tbheader td{
	padding: 20px 10px;
}
.detailtable table .tbheader strong{
	font-size: 22px;
	display: block;
}
.detailtable table .tbheader p{
	font-size: 14px;
}

.syttabs{
	width: 18%;
}
.syttabs li{
	display: block;
	margin: 0 0 20px 0;
}
.syttabs li:last-child{
	margin: 0;
}
.syttabs li .pic{
	border: 1px solid #ccc;
}
.syttabs li.active .pic{
	border: 1px solid #185baa;
}
.sytslide{
	width: 60%;
}
.sytslide .swiper-container{
	width: 80%;
	border: 1px solid #ccc;
	box-sizing: border-box;
}
.sytslide .swiper-container .swiper-slide .pic img{
	/* object-fit: none; */
}
.xqtop{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.syttext{
	width: 35%;
}
.syttext h3{
	font-size: 30px;
	text-align: left;
}
.sytlinks a{
	width: 48.5%;
	line-height: 60px;
	background: #eee;
	display: block;
	text-align: center;
	float: left;
	margin: 0 3% 3% 0;
	cursor: pointer;
	font-size: 20px;
}
.sytlinks a:nth-child(2n){
	margin: 0 0 3% 0;
}
.sytlinks a:hover{
	background: #185baa;
	color: #fff;
}
.sytlinks a .iconfont{
	font-size: 24px;
	display: inline-block;
	vertical-align: middle;
	margin: 0 8px 0 0;
}

.sytxqtitle{
	font-size: 24px;
	line-height: 44px;
	border-bottom: 1px solid #ccc;
}
.sytxqtitle li{
	float: left;
	display: block;
	position: relative;
	cursor: pointer;
	padding: 0 10px;
	margin: 0 10px 0 0;
}
.sytxqtitle li:before{
	width: 100%;
	height: 2px;
	background: #185baa;
	content: '';
	display: block;
	position: absolute;
	left: 0;
	bottom: -1px;
	opacity: 0;
	-moz-transition: 	all 0.5s;
	-webkit-transition: all 0.5s;
	-ms-transition: 	all 0.5s;
	-o-transition: 		all 0.5s;
	transition: 		all 0.5s;
}
.sytxqtitle li.this:before{
	opacity: 1;
}

.profmbanner .swiper-container{
	box-shadow: 0 0 12px 0 rgba(0,0,0,.2);
}


.xqbottom .cpggtext{
	font-size: 16px;
	line-height: 36px;
}
.xqbottom .cpggtext .gglist li{
	display: block;
	line-height: 44px;
	font-size: 18px;
	margin: 0 0 10px 0;
}
.xqbottom .cpggtext .gglist li span{
	display: block;
	width: 13%;
	float: left;
	font-weight: bold;
	background: #e3e3e3;
	padding: 0 2%;
	box-sizing: border-box;
}
.xqbottom .cpggtext .gglist li p{
	width: 87%;
	float: left;
	color: #333;
	background: #f5f5f5;
	padding: 0 2%;
	box-sizing: border-box;
}

.otherintro{
	background: #f5f5f5;
	padding: 1.5% 2%;
	box-sizing: border-box;
}

.cpheader{
	width: 10%;
	font-weight: bold;
	font-size: 16.5px;
	color: #666;
}
.cptable{
	width: 90%;
	overflow: scroll;
	text-align: left;
}
.cptable::-webkit-scrollbar {
	width : 5px;
	height: 10px;
}

.cparea .pic{
	width: 200px;
	height: 140px;
}
.cparea td{
	padding: 10px;
	box-sizing: border-box;
	height: 40px;
	border-bottom: 1px solid #e0e0e0;
}
.cptitle{
	font-size: 24px;
	font-weight: bold;
}
.ncatelist a{
	cursor: pointer;
}
.FirstRow,
.FirstRow a{
	font-weight: bold;
	font-size: 16.5px;
}





.sytform{
	display: none;
	position: fixed;
	left: 50%;
	width: 630px;
	margin-left: -315px;
	top: 10%;
	background: #fff;
	z-index: 9999999999999;
	font-size: 14px;
}
.sytform h1{
	text-align: center;
	font-size: 30px;
    color: #333;
	margin: 5% 0 0 0;
    font-weight: normal;
}
.sytform h1 .iconfont{
	font-size: 36px;
	display: inline-block;
	vertical-align: middle;
	margin: 0 5px 0 0;
}
.sytform form{
	padding: 30px 60px;
}
.sytform td{
	padding: 0;
	word-break: keep-all;
	position: relative;
}
.sytform input[type="text"],
.sytform input[type="number"]{
	width: 85%;
	padding: 0 5%;
	border: 1px solid #e5e5e5;
	border-radius: 5px;
	height: 40px;
	margin: 0 0 5px 5%;
}
.sytform input[type="submit"]{
	width: 50%;
	border: 1px solid #0b76b8;
	background: #0b76b8;
	border-radius: 5px;
	margin: 0 auto;
	font-size: 14px;
	margin: 10px auto 0 auto;
	display: block;
    height: 40px;
    cursor: pointer;
    color: #fff;
}
.sytform input[type="submit"]:hover{
	border: 1px solid #0b76b8;
	color: #0b76b8;
	background: #fff;
}
.sytform textarea{
	width: 85%;
	padding: 4% 5%;
	border: 1px solid #e5e5e5;
	border-radius: 5px;
	height: 60px;
	margin: 0 0 10px 5%;
	text-align: left;
}
.sytform img{
	position: absolute;
	padding: 2.5px 0;
	right: -2px;
	top: 1px;
	background: #f5f5f5;
	border-radius: 5px;
}
.sytform span{
	color: #f00;
	display: inline-block;
	margin: 0 5px 0 0;
}

.mask{
	display: none;
	width: 100%;
	height: 100%;
	position: fixed;
	background: #000;
	opacity: .75;
	left: 0;
	top: 0;
	z-index: 9999999999;
}

.close{
	width: 30px;
	height: 30px;
	position: absolute;
	text-align: center;
	line-height: 30px;
	font-size: 24px;
	right: 10px;
	top: 10px;
	cursor: pointer;
	-moz-transition: 	all 0.5s;
	-webkit-transition: all 0.5s;
	-ms-transition: 	all 0.5s;
	-o-transition: 		all 0.5s;
	transition: 		all 0.5s;
}
.close:hover{
	-webkit-transform: rotate(180deg);
	-moz-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	-o-transform: rotate(180deg);
	transform: rotate(180deg);
}


.bwgscreenlist li:nth-child(4) ul,
.qczdscreenlist li:nth-child(2) ul,
.qczdscreenlist li:nth-child(3) ul,
.kkscreenlist li:nth-child(2) ul,
.kkscreenlist li:nth-child(3) ul{
	display: none !important;
}
.bwgscreenlist li:nth-child(4) form,
.qczdscreenlist li:nth-child(2) form,
.qczdscreenlist li:nth-child(3) form,
.kkscreenlist li:nth-child(2) form,
.kkscreenlist li:nth-child(3) form{
	padding: 5%;
	line-height: 26px;
	font-size: 14px;
	text-align: center;
	display: none;
	position: absolute;
	width: 100%;
	top: 54px;
	left: 0;
	width: 100%;
	background: #fff;
	box-sizing: border-box;
	box-shadow:  0 0 12px 0 rgba(0,0,0,.1);
	z-index: 8;
}
.bwgscreenlist li:nth-child(4) form input,
.qczdscreenlist li:nth-child(2) form input,
.qczdscreenlist li:nth-child(3) form input,
.kkscreenlist li:nth-child(2) form input,
.kkscreenlist li:nth-child(3) form input{
	width: 50px;
	height: 26px;
	border: 1px solid #ccc;
	background-color: #f4f4f4;
	text-align: center;
	font-size: 14px;
	display: inline-block;
	box-sizing: border-box;
}

.bwgscreenlist li:nth-child(4) form input[type="submit"],
.qczdscreenlist li:nth-child(2) form input[type="submit"],
.qczdscreenlist li:nth-child(3) form input[type="submit"],
.kkscreenlist li:nth-child(2) form input[type="submit"],
.kkscreenlist li:nth-child(3) form input[type="submit"]{
	cursor: pointer;
}



.profmtabs{
	text-align: center;
}
.profmtabs li{
	display: inline-block;
	width: 24%;
	margin: 0 .5%;
}
.profmtabs li .pic{
	border: 4px solid #eeeeee;
}
.profmtabs li.active .pic{
	border: 4px solid #ff6600;
}


























@media screen and (max-width: 1600px) {
	.aboutnum{
		width: 90%;
	}
}
@media screen and (max-width: 1440px) {
}
@media screen and (max-width: 1366px) {
	.about .text{
		font-size: 14px;
		line-height: 22px;
	}
	.compnaytitle h2{
		font-size: 26px;
	}
	.p100{
		padding: 80px 0;
	}
	.aboutnum li .num span{
		font-size: 50px;
	}
}
@media screen and (max-width: 1280px) {
	.newslist li .date strong{
		line-height: 44px;
		font-size: 57px;
	}
	.newslist li .date p{
		font-size: 16px;
	}
	.cpheader{
		width: 15%;
	}
	.cptable{
		width: 85%;
	}
}
@media screen and (max-width: 1200px) {
	.menu li{
		margin: 0 0 0 40px;
	}
}
@media screen and (max-width: 1024px) {
	.menu li{
		margin: 0 0 0 30px;
	}
	.menu li a{
		font-size: 16px;
	}
	.stitle h3{
		line-height: 40px;
		font-size: 40px;
	}
	.stitle h2{
		font-size: 26px;
		line-height: 40px;
	}
	.compnaytitle h2{
		font-size: 22px;
	}
	.compnaytitle h3{
		font-size: 16px;
	}
	.about .text{
		line-height: 20px;
	}
	.about .more{
		width: 130px;
		line-height: 40px;
		font-size: 16px;
	}
	.youshilist li{
		padding: 30px 0;
	}
	.youshilist li .text{
		padding: 0 25px;
		margin: 20px auto 0 auto;
	}
	.youshilist li .text p{
		display: inline;
	}
	.youshilist li .iconfont{
		font-size: 46px;
	}
	.youshilist li strong{
		font-size: 20px;
		line-height: 20px;
		margin: 10px 0 5px 0;
	}
	.youshilist li span{
		font-size: 14px;
		line-height: 14px;
	}
	.newslist li .date p{
		font-size: 12px;
	}
	.newslist li .date strong{
		font-size: 42px;
		line-height: 32px;
	}
	.picnews .text strong,
	.newslist li .text strong{
		font-size: 17px;
		padding: 0 0 10px 0;
	}
	.newslist li .text p{
		margin: 0;
	}
	.picnews .text{
		padding: 20px;
	}
	.p60{
		padding: 40px 0;
	}
	.p100{
		padding: 60px 0;
	}
	.aboutnum li{
		font-size: 16px;
	}
	.aboutnum li .num span{
		font-size: 40px;
	}
	.fcontact{
		font-size: 14px;
		line-height: 32px;
	}
	.fmenu,
	.fpro{
		margin: 0 0 0 10%;
	}
	.fcontact h2{
		font-size: 18px;
	}
	.ftitle{
		font-size: 18px;
	}
	.ftitle .iconfont{
		font-size: 18px;
	}
	.logo{
		width: 160px;
	}
	.menu li{
		line-height: 36px;
	}
	.header{
		padding: 25px 0;
	}
	.screenlist li{
		line-height: 40px;
		margin: 0 0.5% 0.5% 0;
		width: 16.25%;
	}
	.screenlist li a{
		font-size: 14px;
		padding: 0 10px;
	}
	.screenlist li span{
		width: 40px;
		height: 40px;
	}
	.sytlinks a{
		font-size: 14px;
		line-height: 42px;
	}
	.sytlinks a .iconfont{
		font-size: 20px;
		margin: 0 5px 0 0;
	}
	.sytxqtitle{
		font-size: 16px;
		line-height: 34px;
	}
	.sytxqtitle li{
	}
	.xqbottom .text li{
		font-size: 14px;
		line-height: 30px;
	}
	.cpheader{
		width: 20%;
	}
	.cptable{
		width: 80%;
	}
	.bnav{
		display: none;
	}
	.xqbottom .cpggtext .gglist li span{
		width: 30%;
	}
	.xqbottom .cpggtext .gglist li p{
		width: 70%;
	}
	.xqbottom .cpggtext,
	.xqbottom .cpggtext .gglist li{
		font-size: 14px;
		line-height: 30px;
	}
	.sytslide .swiper-container{
		width: 100%;
		float: none;
	}
	.syttabs{
		float: none;
		width: 100%;
		margin: 2% 0 0 0;
	}
	.syttabs li{
		width: 15%;
		float: left;
		margin: 0 2% 0 0;
	}
}
@media screen and (max-width: 768px) {
	.mt50{
		margin-top: 30px !important;
	}
	.menu li a{
		font-size: 14px;
	}
	.logo{
		width: 140px;
	}
	.menu li{
		line-height: 30px;
	}
	.hotkeys{
		line-height: 44px;
		width: 50%;
		font-size: 12px;
	}
	.hotkeys a{
		font-size: 12px;
	}
	.search:before{
		width: 50%;
	}
	.search:after{
		left: 50%;
	}
	.searchform .stext{
		height: 44px;
	}
	.searchform .sbut{
		line-height: 44px;
	}
	.prolist li p,
	.procate li{
		line-height: 46px;
		font-size: 18px;
	}
	.procate li a{
		font-size: 18px;
	}
	.aboutbg .about{
		width: 100%;
		float: none;
	}
	.aboutbg .pic{
		width: 100%;
		height: auto !important;
		float: none;
		position: relative;
		right: auto;
		top: auto;
	}
	.about .stitle{
		text-align: center;
	}
	.about .stitle h2:after{
		margin: 5px auto 0 auto;
	}
	.compnaytitle h2{
		font-size: 20px;
		text-align: center;
	}
	.compnaytitle h3{
		font-size: 14px;
		text-align: center;
	}
	.about .more{
		margin: 0 auto;
		margin-top: 20px !important;
	}
	.aboutnum{
		width: 100%;
		padding: 20px 0;
	}
	.aboutnum li{
		font-size: 14px;
	}
	.aboutnum li .num span{
		font-size: 30px;
	}
	.youshilist li .text{
		font-size: 12px;
		line-height: 22px;
		padding: 0 15px;
	}
	.newslist li a{
		padding: 11px 0;
	}
	.newslist li .date{
		width: 20%;
	}
	.newslist li .text{
		width: 80%;
	}
	.fmenu{
		display: none;
	}
	.contactinfo{
		width: 100%;
	}
	.messageform{
		width: 100%;
		margin: 20px 0 0 0;
	}
	.procatelist .pic .text{
		padding: 10px;
	}
	.procatelist .pic .text a{
		font-size: 12px;
		line-height: 22px;
	}
	.screenlist li{
		width: 32%;
		margin: 0 2% 2% 0;
	}
	.screenlist li:nth-child(3n){
		margin: 0 0 2% 0;
	}
	.nprolist li,
	.nprolist li:nth-child(4n){
		width: 32%;
		margin: 0 2% 2% 0;
	}
	.nprolist li:nth-child(3n){
		margin: 0 0 2% 0;
	}
	.prodetailslide{
		display: block;
	}
	.prodetailslide .detailslide{
		width: 100%;
		float: none;
	}
	.prodetailslide .detailtext{
		width: 100%;
		float: none;
		margin: 20px 0 0 0;
		padding: 0;
	}
	.detailtable{
		width: 100%;
		overflow: scroll;
	}
	.detailtable table{
		width: 1200px;
	}
	.detailtable table .tbheader td{
		padding: 10px 5px;
	}
	.detailtable table .tbheader strong{
		font-size: 16px;	
	}
	.detailtable table .tbheader p{
		font-size: 12px;	
	}
	.detailtable table td,
	.detailtable table td a{
		font-size: 14px;
	}
	.xqtop{
		display: block;
	}
	.sytslide{
		width: 100%;
	}
	.syttext{
		width: 100%;
		margin: 30px 0 0 0;
	}
	.syttext h3{
		font-size: 22px;
	}
}
@media screen and (max-width: 640px) {
	.mt40{
		margin-top: 20px !important;
	}
	.mt60{
		margin-top: 40px !important;
	}
	.p50{
		padding: 30px 0;
	}
	.p100{
		padding: 40px 0;
	}
	.header{
		padding: 20px 0;
	}
	.menu{
		display: none;
		width: 100%;
		position: fixed;
		top: 65px;
		left: 0;
		height: 100%;
		background: #fff;
	}
	.menu li{
		width: 100%;
		text-align: center;
		margin: 0;
		line-height: 40px;
		border-top: 1px solid #ececec;
	}
	.menu li:last-child{
		border-bottom: 1px solid #ececec;
	}
	.search{
		height: 0;
		opacity: 0;
		overflow: hidden;
	}
	.pro{
		margin-top: 0 !important;
	}
	.stitle h2{
		font-size: 22px;
		line-height: 28px;
		margin-top: -18px;
	}
	.stitle h3{
		font-size: 28px;
		line-height: 28px;
	}
	.stitle h2:after{
		width: 30px;
	}
	.procate li{
		line-height: 40px;
	}
	.procate li a{
		font-size: 14px;
	}
	.procate li .iconfont{
		display: none;
	}
	.prolist li,
	.prolist li:nth-child(3n){
		width: 48.5%;
		margin: 0 3% 3% 0;
	}
	.prolist li:nth-child(2n){
		margin: 0 0 3% 0;
	}
	.prolist li p{
		font-size: 14px;
		line-height: 40px;
	}
	.youshibg{
		margin-top: 40px !important;
	}
	.youshilist li{
		width: 100%;
		float: none;
		margin: 0 0 20px 0;
	}
	.newslist{
		width: 100%;
	}
	.newslist li a{
		padding: 15px 0;
	}
	.picnews{
		width: 100%;
		margin: 20px 0 0 0;
	}
	.fmenu,
	.fpro{
		display: none;
	}
	.fcontact{
		width: 100%;
		float: none;
		text-align: center;
		line-height: 26px;
	}
	.fcontact h2{
		margin: 0 0 20px 0;
	}
	.fewm{
		margin: 0 auto;
		width: 120px;
		float: none;
	}
	.fewm .pic{
		margin-top: 30px !important;
	}
	.cr,
	.cr a{
		font-size: 12px;
	}
	.logo{
		width: 110px;
	}
	.menubut{
		display: block;
		font-size: 34px;
		position: absolute;
		right: 5%;
		top: 50%;
		margin-top: -17px;
		-webkit-transition: all 0.3s;
		-moz-transition: 	all 0.3s;
		-ms-transition: 	all 0.3s;
		-o-transition: 		all 0.3s;
		transition: 		all 0.3s;
	}
	.menuclose{
		display: block;
		font-size: 30px;
		position: absolute;
		right: 5%;
		top: 50%;
		margin-top: -15px;
		transform: scale(0);
		opacity: 0;
		-webkit-transition: all 0.3s;
		-moz-transition: 	all 0.3s;
		-ms-transition: 	all 0.3s;
		-o-transition: 		all 0.3s;
		transition: 		all 0.3s;
	}
	.bannerbg .text h3{
		font-size: 22px;
		line-height: 32px;
	}
	.bannerbg .text h2{
		font-size: 20px;
		line-height: 32px;
		margin-top: -20px;
	}
	.bannerbg,
	.bannerbg .nbanner,
	.bannerbg .listbanner{
		height: 240px;
	}
	.ncatelist li a{
		font-size: 14px;
		padding: 0 15px;
	}
	.ncatelist li{
		line-height: 40px;
	}
	.ncatelist li a i{
		font-size: 16px;
	}
	
	.nabout h2{
		margin: 0 0 20px 0;
		font-size: 18px;
	}
	.nabout .text{
		font-size: 14px;
		line-height: 24px;
	}
	.nhonor li,
	.nhonor li:nth-child(4n){
		width: 48.5%;
		margin: 0 3% 3% 0;
	}
	.nhonor li:nth-child(2n){
		margin: 0 0 3% 0;
	}
	.nnews li .pic{
		width: 36%;
		height: 100px;
	}
	.nnews li a{
		padding: 10px;
	}
	.nnews li .text{
		width: 60%;
	}
	.nnews li .text strong{
		font-size: 16px;
		margin: 5px 0 0 0;
	}
	.nnews li .text span{
		font-size: 12px;
		margin: 5px 0 10px 0;
	}
	.nnews li .text p{
		font-size: 12px;
		line-height: 20px;
	}
	
/*
	.ncatelist{
		display: table;
		margin: 0 auto;
		float: none;
	}
	
*/
	.ndownload li,
	.ndownload li:nth-child(2n){
		width: 100%;
		margin: 0 0 5px 0;
		float: none;
		line-height: 40px;
	}
	.ndownload li a{
		font-size: 14px;
	}
	.ndownload li .iconfont{
		font-size: 16px;
		line-height: 40px;
	}
	.contactinfo .text{
		padding: 15px;
		line-height: 40px;
		font-size: 14px;
	}
	.contactinfo .iconfont{
		font-size: 20px;
		margin: 0 7px 0 0;
	}
	
	.screenlist,
	.ncate{
		display: none;
		margin-top: 0 !important;
	}
	
	.cplbbt,
	.sxxx{
		width: 90%;
		text-align: center;
		cursor: pointer;
		line-height: 40px;
		background: #185baa;
		color: #fff;
		margin: 10px auto;
	}
	.cplbbt{
		margin: 30px auto 0 auto;
	}
	
	.ncatelist{
		float: none;
		width: 100%;
	}
	.ncatelist li{
		width: 100%;
		float: none;
		border-bottom: 1px solid #fff;
	}
	
	.nprocate li ul{
		position: relative;
		top: auto;
		left: auto;
		box-shadow: none;
		padding: 0;
		max-height: none;
		overflow: auto;
	}
	.nprocate li ul li:last-child{
		border: none;
	}
	.nprocate li ul li a{
		font-size: 14px;
	}
	.nprocate li span{
		line-height: 40px;
		width: 40px;
		height: 40px;
	}
	.screenlist li{
		width: 100%;
		float: none;
		margin: 0 0 5px 0;
	}
	.screenlist li ul{
		position: relative;
		top: auto;
		left: auto;
		box-shadow: none;
		padding: 0;
		max-height: none;
		overflow: auto;
	}
	.nprolist li,
	.nprolist li:nth-child(3n),
	.nprolist li:nth-child(4n){
		width: 48.5%;
		margin: 0 3% 3% 0;
	}
	.nprolist li:nth-child(2n){
		margin: 0 0 3% 0;
	}
	
	.nprolist li p{
		line-height: 40px;
		font-size: 14px;
		padding: 0 40px 0 10px;
	}
	.nprolist li p input{
		width: 14px;
		height: 14px;
		margin-top: -7px;
		right: 10px;
	}
	.cpbt{
		font-size: 14px;
		line-height: 40px;
		margin: 30px 0 0 0;
	}
	.xqbottom .text li span{
		width: 100%;
		float: none;
	}
	.xqbottom .text li p{
		width: 100%;
		float: none;
	}
	.tabletips{
		text-align: center;
		font-size: 12px;
		color: #ccc;
		margin: 20px 0 0 0;
		font-style: italic;
	}
	.texttitle{
		font-size: 20px;
	}
	.texttitle span{
		font-size: 14px;
	}
	.ncate{
		border-top: 1px solid #eee;
		border-bottom: none;
	}
	.cpheader{
		width: 30%;
		font-size: 14px;
	}
	.cptable{
		width: 70%;
		font-size: 14px;
	}
	.FirstRow, .FirstRow a{
		font-size: 14px;
	}
	.sytform{
		width: 90%;
		margin-left: 0;
		left: 5%;
	}
	.sytform form{
		padding: 3% 5%;
	}
	.nprolist li:nth-child(2n+1){
		clear: both;
	}
	
}
@media screen and (max-width: 428px) {
}
@media screen and (max-width: 414px) {
}
@media screen and (max-width: 375px) {
}
@media screen and (max-width: 360px) {
}
@media screen and (max-width: 320px) {
}







