/*通用类*/
*{
	margin:0;
	padding:0;
	box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}
body{
	width:100%;
		min-width:320px;
	margin:0 auto;
	font-size:12px;
	font-family:"Microsoft Yahei";
	background:#fff;
	color:#363636;
}
h1,h2,h3{
	font-weight:500;
}
img{
	border:none;
}
a{
	cursor:pointer;
	color:#363636;
	text-decoration:none;
	outline:none;
}
a:hover{
	color:#f60;
}
ul{
	list-style-type:none;
}
em{
	font-style:normal;
}
.lt{
	float:left;
}
.rt{
	float:right;
}
input.sub,label{
	border:none;
	cursor:pointer;
}
input,textarea,select{
	font-family:"Microsoft Yahei";
	outline:none;
}
table{
	border-collapse:collapse;
}
table td,table th{
	padding:0;
}
.clear::before{
	visibility:hidden;
	display:block;
	font-size:0;
	content:" ";
	clear:both;
	height:0;
}
.clear::after{
	visibility:hidden;
	display:block;
	font-size:0;
	content:" ";
	clear:both;
	height:0;
}
.warpin{
	width: 1200px;
	margin:0 auto;
}
.index_pulic_header{
	width: 100%;
}
.index_pulic_header .header_cont{
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.index_pulic_header .header_cont .logo{
	width: 160px;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.index_pulic_header .header_cont .r_cont{
	display: flex;
	height: 80px;
	align-items: center;
	position: relative;
	z-index: 12;
}
.index_pulic_header .header_cont .navi_content{
	display: flex;
	align-items: center;
}
.index_pulic_header .header_cont .navi_content .nav{

	display: flex;
	align-items: center;
	padding:0 13px;
	height: 80px;
}
.index_pulic_header .header_cont .navi_content .ti{
	display: flex;
	align-items: center;
	font-size:16px;
	color:#666666;
}
.index_pulic_header .header_cont .navi_content .ti img{
	margin-left:6px;
}
.index_pulic_header .header_cont .navi_content .nav .nav_list{
	display: none;
	position: absolute;
	top: 80px;
	right: 0;
	width:950px;
  	padding:24px 24px 48px 24px;
	background: rgba(255,255,255,0.7);
	justify-content: space-between;
}
.index_pulic_header .header_cont .navi_content .nav_list .l_box{
	width: 538px;
}
.index_pulic_header .header_cont .navi_content .nav_list .l_box .tle{
	font-size:18px;
	color:#666666;
	margin-bottom: 26px;
}
.index_pulic_header .header_cont .navi_content .nav_list .l_box .cont_box{
	display: flex;
}
.index_pulic_header .header_cont .navi_content .nav_list .l_box .cont_box .i{
	width: 230px;
	height: 140px;
}
.index_pulic_header .header_cont .navi_content .nav_list .l_box .cont_box .i img{
	display: block;
	width: 100%;
	height: 100%;
}
.index_pulic_header .header_cont .navi_content .nav_list .l_box .cont_box .cont{
	padding-left:16px;
  width: calc(100% - 230px);
}
.index_pulic_header .header_cont .navi_content .nav_list .l_box .cont_box .cont p{
	font-size:13px;
	line-height: 26px;
	color:#757373;
}
.index_pulic_header .header_cont .navi_content .nav_list .l_box .cont_box .cont .more{
	margin-top: 10px;
	display: flex;
	align-items: center;
	font-size:14px;
	color:#0a3f89;
}
.index_pulic_header .header_cont .navi_content .nav_list .l_box .cont_box .cont .more img{
	margin-top: 2px;
}
.index_pulic_header .header_cont .navi_content .nav_list .l_box .cont_box .cont .more span{
	border-bottom: 1px solid #0a3f89;
	margin-right: 6px;
}
.index_pulic_header .header_cont .navi_content .nav_list .r_navi{
	width: 300px;
	margin-right: 24px;
}
.index_pulic_header .header_cont .navi_content .nav_list .r_navi .li{
	padding:10px 0;
	border-bottom: 1px solid #e5e6e6;

}
.index_pulic_header .header_cont .navi_content .nav_list .r_navi .li a{
	font-size:16px;
	color:#363535;
}
.index_pulic_header .header_cont .navi_content .nav:hover .nav_list{
	display: flex;
}
.index_pulic_header .header_cont .search_box{
	position: relative;
	margin-left:10px;
}
.index_pulic_header .header_cont .search_box .int_box{
	position: absolute;
	right: 30px;
	top: 50%;
	width: 0;
	opacity: 0;
	transition: all 0.5s;
	transform:translateY(-50%);
	display: flex;
	align-items: center;
	overflow: hidden;
}
.index_pulic_header .header_cont .search_box .int_box.active{
	width: 200px;
	opacity: 1;
}
.index_pulic_header .header_cont .search_box .int_box .int{
	display: block;
	width: 140px;
	height: 30px;
	border:1px solid #0079cf;
	padding-left:10px;
	transition: all 0.5s;
}
.index_pulic_header .header_cont .search_box .int_box .btn{
	display: block;
	width: 60px;
	height: 30px;
	line-height: 30px;
	text-align: center;
	background: #0079cf;
	color:#fff;
	font-size:12px;
	border:none;
	transition: all 0.5s;
}
.index_pulic_header .header_cont .search_box .i{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
	margin-right: 4px;
	background: #fff;
}
/* banner */
.index_banner_box{
	width: 100%;
}
.index_banner_box img{
	display: block;
	width: 100%;
}
.index_banner_box .swiper-pagination-bullet{
	width: 14px;
	height: 14px;
	background: #fff;
	opacity: 1;
	margin:0 10px;
}
.index_banner_box .swiper-pagination-bullet-active{
	background: #0876ec;
}
/* index 1 */
.index_ywfw_content{
	width: 1100px;
	padding:30px 10px;
	margin:30px auto;
}
.index_ywfw_content .swiper-slide{
	background: #fff;

	padding:40px 0 30px;
	transition: all 0.5s;
}
.index_ywfw_content .swiper-slide .i{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 70px;
	margin-bottom:20px;
}
.index_ywfw_content .swiper-slide .i img{
	transition: all 0.5s;
}

.index_ywfw_content .swiper-slide p{
	font-size:18px;
	color:#999999;
	text-align: center;
}
.index_ywfw_content .swiper-pagination{
	bottom: 5px;
}
.index_ywfw_content .swiper-pagination-bullet{
	width: 10px;
	height: 10px;
	background: #c8cbcb;
	margin:0 5px;
	opacity: 1;
}
.index_ywfw_content .swiper-pagination-bullet-active{
	background: #0079cf;
}
.index_ywfw_content .swiper-slide:hover .i img{
	transform: scale(1.1,1.1);
}
.index_ywfw_content .swiper-slide:hover{

	box-shadow: 0px 0px 10px rgba(0,0,0,0.2);
}
.index_ywfw_content .swiper-slide:hover p{
	color: #0079cf;
}
.index_ywfw_content .swiper-slide-active{
   box-shadow: 0px 0px 10px rgba(0,0,0,0.2);
}
.index_ywfw_content .swiper-slide-active .i img{
   transform: scale(1.1,1.1);
}
.index_ywfw_content .swiper-slide-active p{
	color: #0079cf;
}
/*  index 2 */
.index_pulic_title{
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 10px;
}
.index_pulic_title .lt{
	padding-left:4px;
	border-left:2px solid #0a3f89;
	font-size:20px;
	color:#3d3833;
}
.index_pulic_title .more{
	font-size:14px;
	color:#999999;
}
.index_announ_content{
	padding:50px 0;
	background: #f8f8f8;
}
.index_announ_content .warpin{
	display: flex;
	justify-content: space-between;
}
.index_announ_content .yjss_cont_box{
	width: 100%;
}
.index_announ_content .yjss_cont_box .cont_box{
	display: flex;
	justify-content: space-between;
}
.index_announ_content .yjss_cont_box .cont_box .l_box{
	width: 600px;
}
.index_announ_content .yjss_cont_box .cont_box .l_box .tis_box{
	width: 100%;
	height: 214px;
	position: relative;
	margin-bottom: 9px;
	overflow: hidden;
}
.index_announ_content .yjss_cont_box .cont_box .l_box .tis_box img{
	display: block;
	width: 100%;
	height: 100%;
}
.index_announ_content .yjss_cont_box .cont_box .l_box .bit_txt{
	position: absolute;
	bottom: 10px;
	right: 10px;
	font-size:14px;
	color:#ffffff;
	z-index: 2;
}
.index_announ_content .yjss_cont_box .cont_box .tip_txt{
	position: absolute;
	top: 10px;
	left: 10px;
	font-size:14px;
	color:#ffffff;
	z-index: 2;
}
.index_announ_content .yjss_cont_box .cont_box .l_box .bit_box{
	display: flex;
	justify-content: space-between;
}
.index_announ_content .yjss_cont_box .cont_box .l_box .bit_box .li{
	display: block;
	width: 211px;
	height: 214px;
	position: relative;
	overflow: hidden;
}
.index_announ_content .yjss_cont_box .cont_box .l_box .bit_box .li img{
	display: block;
}
.index_announ_content .yjss_cont_box .cont_box .r_box{
	width: 590px;
	height: 438px;
	position: relative;
	overflow: hidden;
}
.index_announ_content .yjss_cont_box .cont_box .r_box img{
	display: block;
	width: 100%;
	height: 100%;
}
.index_announ_content .yjss_cont_box .cont_box .txt_box{
	position: absolute;
	top: 100%;
	left:0;
	width: 100%;
	height: 100%;
	background: #cccaca;
	z-index: 3;
	padding:20px;
	transition: all 0.5s;
}
.index_announ_content .yjss_cont_box .cont_box .txt_box h2{
	font-size:22px;
	color:#333333;
	margin-bottom: 20px;
}
.index_announ_content .yjss_cont_box .cont_box .txt_box p{
	font-size:14px;
	line-height: 24px;
	color:#666666;
}
.index_announ_content .yjss_cont_box .cont_box .txt_box .more{
	position: absolute;
	right: 10px;
	bottom: 10px;
	display: flex;
	align-items: center;
	font-size:14px;
	color:#0a3f89;
}
.index_announ_content .yjss_cont_box .cont_box .txt_box .more span{
	border-bottom: 1px solid #0a3f89;
}
.index_announ_content .yjss_cont_box .cont_box .txt_box .more img{
	margin-top: 4px;
	margin-left:5px;
	width: 14px;
	height: 14px;
}

.index_announ_content .yjss_cont_box .cont_box .l_box .tis_box:hover .txt_box{
	top: 0;
}
.index_announ_content .yjss_cont_box .cont_box .l_box .bit_box .li:hover .txt_box{
	top: 0;
}
.index_announ_content .yjss_cont_box .cont_box .l_box .bit_box .li>img{
	width: 100%;
	height: 100%;
}
.index_announ_content .yjss_cont_box .cont_box .r_box:hover .txt_box{
	top: 0;
}
/* 通知公告 */
.index_announ_content .tzgg_cont_box{
	width: 300px;
}
.index_announ_content .tzgg_cont_box .cont_box .list_box{
	width: 100%;
	padding:15px;
	background: #fff;
	margin-bottom: 10px;
	box-shadow: 0px 0px 6px rgba(0,0,0,0.1);
}
.index_announ_content .tzgg_cont_box .cont_box .list_box a{
	display: flex;
	align-items: center;
}
.index_announ_content .tzgg_cont_box .cont_box .list_box .time{
	display: block;
	width: 80px;
	height: 73px;
	background: #f0efef;
  padding:16px 10px;
}
.index_announ_content .tzgg_cont_box .cont_box .list_box .time h2{
	font-size:20px;
	color:#666666;
	text-align: center;
	margin-bottom:6px;
}
.index_announ_content .tzgg_cont_box .cont_box .list_box .time p{
	font-size:13px;
	color:#666666;
	text-align: right;
}
.index_announ_content .tzgg_cont_box .cont_box .list_box .txt_box{
	width: calc(100% - 75px);
	padding-left:10px;
	padding-right: 20px;
	position: relative;
	font-size:16px;
	color:#333333;
	line-height: 24px;
}
.index_announ_content .tzgg_cont_box .cont_box .list_box .txt_box img{
	position: absolute;
	right: 5px;
	top:50%;
	transform: translateY(-50%);
}
/**/
.wxzz_cont_box .cont_box .list_box{
	width: 100%;
	padding:15px;
	background: #fff;
	margin-bottom: 10px;
	box-shadow: 0px 0px 6px rgba(0,0,0,0.1);
}
.wxzz_cont_box  .cont_box .list_box a{
	display: flex;
	align-items: center;
}
.wxzz_cont_box  .cont_box .list_box .time{
	display: block;
	width: 80px;
	height: 73px;
	background: #f0efef;
	padding:16px 10px;
}
.wxzz_cont_box  .cont_box .list_box .time h2{
	font-size:20px;
	color:#666666;
	text-align: center;
	margin-bottom:6px;
}
.wxzz_cont_box  .cont_box .list_box .time p{
	font-size:13px;
	color:#666666;
	text-align: right;
}
.wxzz_cont_box  .cont_box .list_box .txt_box{
	width: calc(100% - 75px);
	padding-left:10px;
	padding-right: 20px;
	position: relative;
	font-size:16px;
	color:#333333;
	line-height: 24px;
}
.wxzz_cont_box  .cont_box .list_box .txt_box img{
	position: absolute;
	right: 5px;
	top:50%;
	transform: translateY(-50%);
}
/* 新闻中心 */
.index_news_content{
	padding:40px 0 80px 0;
	display: flex;
	justify-content: space-between;
}
.index_news_content .news_cont_box{
	width: 100%;
	overflow: hidden;
}
.index_news_content .news_cont_box .cont_box{
	display: flex;
	justify-content: space-between;
}
.index_news_content .news_cont_box .index_news_cont{
	width:50%;
}
.index_news_cont img{
	display: block;
	width: 100%;
	height: 100%;
}
.index_news_cont .time{
	position: absolute;
	left:0;
	bottom: 85px;
	width: 70px;
	height: 64px;
	background: #ff9c23;
	padding:12px 5px 0;
}
.index_news_cont .time h2{
	font-size:20px;
	color:#ffffff
}
.index_news_cont .time p{
	font-size:13px;
	color:#ffffff;
	text-align: right;
}
.index_news_cont .txt{
	position: absolute;
	left:0;
	bottom: 0;
	width: 100%;
	height: 85px;
	padding-right: 96px;
	padding-left:16px;
	background: #0a3f89;
	display: flex;
	align-items: center;
	font-size:20px;
	color:#ffffff;
}
.index_news_cont .swiper-pagination{
	text-align: right;
	font-size:22px;
	color:#5a97ec;
	padding-right: 10px;
	bottom: 20px;
  letter-spacing: -2px;
}
.index_news_cont .swiper-pagination-current{
	font-size:18px;
	color:#ffffff;
}
.index_news_content .news_cont_box .news_last_box{
	width: 50%;
	padding-left: 20px;
}
.index_news_content .news_cont_box .news_last_box .li{
	padding:18px 0;
	border-bottom: 1px solid #e5e5e5;
}
.index_news_content .news_cont_box .news_last_box .li:last-child{
	padding-bottom: 0;
	border-bottom: none;
}
.index_news_content .news_cont_box .news_last_box .li h2{
	font-size:16px;
	color:#666666;
	margin-bottom: 8px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}
.index_news_content .news_cont_box .news_last_box .li p{
	font-size:12px;
	color:#999999;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}
.index_news_content .wxzz_cont_box{
	width: 567px;
	padding-left: 20px;
}
.wxzz_img_cont .swiper-slide{
	padding:18px;
}
.wxzz_img_cont .swiper-slide .i{
	width: 100%;
	box-shadow:
}
.wxzz_img_cont .swiper-slide .i img{
	width: 100%;
	height:200px;
}
.gsryd{
	font-size: 16px;
	letter-spacing: 2px;
	margin-top: 20px;
}
.gsryd p{
	line-height: 30px;
}
.swiper-button-prev{
	top:30%;
}
.swiper-button-next{
	top:30%;
}
.wxzz_img_cont .swiper-button-prev{
	width: 34px;
	height: 59px;
	background: url(../i/zz_arr_prev.png) no-repeat center;
}
.wxzz_img_cont .swiper-button-next{
	width: 34px;
	height: 59px;
	background: url(../i/zz_arr_next.png) no-repeat center;
}
/* */
.pulic_footer_content{
	background: #999999;
	padding-top: 30px;

}
.pulic_footer_content .warpin .footer_navi_content{
	display: flex;
	justify-content: space-between;
}
.pulic_footer_content .nav_list{
  width: 300px;
}
.pulic_footer_content .tle{
	font-size:18px;
	color:#fff;
	margin-bottom: 20px;
}
.pulic_footer_content .nav_list .list_box{
	display: flex;
	flex-wrap: wrap;
}
.pulic_footer_content .nav_list .list_box a{
	display: block;
	width: 100%;
	font-size:14px;
	color:#f2f2f2;
	margin-bottom:10px;
}
.pulic_footer_content .nav_list:nth-child(1) .list_box a{
	width: 50%;
}
.pulic_footer_content .nav_list:nth-child(1){
	width: 270px;
	margin-right:100px;
}
.pulic_footer_content .infor_txt {
	width: 420px;
}
.pulic_footer_content .infor_txt .li{
	display: flex;
	align-items: center;
	font-size:14px;
	color:#ffffff;
	margin-bottom: 14px;
}
.pulic_footer_content .infor_txt .li img{
	margin-right: 10px;
}
.footer_link_cont{
	padding:24px 0;
	border-top: 1px solid #a3a3a3;
	border-bottom: 1px solid #a3a3a3;
}
.footer_link_cont span{
	font-size:16px;
	color:#ffffff;
}
.footer_link_cont a{
	font-size:14px;
	color:#dedcdc;
	margin:0 10px;
}
.footer_copy_cont{
	padding:30px 0;
	text-align: center;
	font-size:14px;
	color:#c5c2c2;
}
/* about */
.content_banner_box{
	width: 100%;
	position: relative;
}
.content_banner_box .i{
	display: block;
	width: 100%;
}
.content_banner_box .txt_box{
	width: 1200px;
	position: absolute;
	left:50%;
	top: 50%;
	transform: translate(-50%,-50%);
}
.content_banner_box .txt_box h2{
	font-size:46px;
	color:#ffffff;
	font-weight: bold;
	margin-bottom:14px;
}
.content_banner_box .txt_box span{
	display: block;
	width: 50px;
	height: 5px;
	background: #ffffff;
}
.content_tip_navi{
	background: #fff;
}
.content_tip_navi .warpin{
	display: flex;
	align-items: center;
}
.content_tip_navi .warpin .li a{
	font-size:16px;
	color:#585757;
  padding: 0 16px;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.content_tip_navi .warpin .li:hover{
	background: #005fd1;
}
.content_tip_navi .warpin .li.active{
	background: #005fd1;
}
.content_tip_navi .warpin .li.active a{
	color:#fff;
}
.content_tip_navi .warpin .li:hover a{
	color:#fff;
}
/* */
.content_pulic_title{
	margin-bottom:30px;
}
.content_pulic_title h2{
	font-size:30px;
	color:#3d3d3d;
	margin-bottom: 6px;
}
.content_pulic_title span{
	display: block;
	width: 63px;
	height: 5px;
	background: #005fd1;
}
/* */
.about_gsry_content{
	padding-top:70px;
	padding-bottom: 120px;
	background:#f8f8f8 url(../i/about_bg_1.png) no-repeat center 140px;
}
.about_gsry_content .gsry_content_box{
  position: relative;
	width: 1200px;
	margin:50px auto 0;
}
.about_gsry_content .gsry_content_box::after{
	content: "";
	display: block;
	width: 100%;
	height: 2px;
	background: #005fd1;
	position: absolute;
	left:0;
	top:5px;
}
.gsry_content_box .gsry_prev{
	display: block;
	width: 46px;
	height: 46px;
	background: url(../i/about_arr_l.png) no-repeat center;
	background-size:cover;
	position: absolute;
	left:-80px;
	top: -20px;
}
.gsry_content_box .gsry_next{
	display: block;
	width: 46px;
	height: 46px;
	background: url(../i/about_arr_r.png) no-repeat center;
	background-size:cover;
	position: absolute;
	right:-80px;
	top: -20px;
}
.gsry_content_box .gsry_last_cont .swiper-slide{
	padding:0 24px;
}
.gsry_content_box .gsry_last_cont .ring{
	display: block;
	width: 12px;
	height: 12px;
	background: #fff;
	border:2px solid #005fd1;
	border-radius: 100%;
	margin-bottom:30px;
}
.gsry_content_box .gsry_last_cont .time{
	font-size:36px;
	color:#434343;
	margin-bottom: 30px;
}
.gsry_content_box .gsry_last_cont .txt_cont{
	font-size:16px;
	line-height: 26px;
	color:#838080;
}
/* */
.about_qywh_tip_banner{
	width: 100%;
	margin-bottom:40px;
}
.about_qywh_tip_banner img{
	display: block;
	width: 100%;
}
.about_qywh_content{
	display: flex;
	flex-wrap: wrap;
}
.about_qywh_content .li{
	width: 50%;
	display: flex;
	align-items: center;
	padding-left:90px;
	margin-bottom:60px;
}
.about_qywh_content .li .i{
	display: flex;
	width: 80px;
	height: 80px;
	border-radius: 100%;
	overflow: hidden;
}
.about_qywh_content .li .i img{
	display: block;
	width: 100%;
	height: 100%;
}
.about_qywh_content .li .txt{
	width: calc(100% - 80px);
	padding-left:20px;
}
.about_qywh_content .li .txt h2{
	font-size:22px;
	color:#005fd1;
	margin-bottom: 14px;
}
.about_qywh_content .li .txt p{
	font-size:16px;
	line-height: 26px;
	color:#666666;
}
.tdgc_txt_cont{
	text-align: center;
}
.tdgc_txt_cont p{
	font-size:14px;
	color:#3d3d3d;
	margin:10px 0;
}
.tdgc_img_cont{
	display: flex;
	align-items: center;
	justify-content: center;
	margin:30px auto;
}
/* */
.wxzz_cont_box{
	/*display: flex;*/
	flex-wrap: wrap;
}
.wxzz_cont_box .list_box{
	width: 277px;
	margin-right: 28px;
	margin-bottom: 20px;
}
.wxzz_cont_box .list_box:nth-child(4n){
	margin-right: 0;
}
.wxzz_cont_box .list_box .i{
	display: flex;
	width: 100%;
	height: 380px;
	align-items: center;
	justify-content: center;
	box-shadow: 0px 0px 10px rgba(0,0,0,0.3);
}
.wxzz_cont_box .list_box .i img{
	display: block;
	width: 100%;
	height: 100%;
}
/*.wxzz_cont_box .list_box p{
	text-align: center;
	line-height: 30px;
	font-size:18px;
	color:#3d3d3d;
	padding:10px 0;
}*/
.about_content_txt p{
	font-size:14px;
	line-height: 24px;
	color:#333333;
	margin-bottom:24px;
}
.about_content_txt .i{
	width: 100%;
}
.about_content_txt .i img{
	display: block;
	width: 100%;
}
.about_content_zyyw .tle{
	font-size:14px;
	color:#333333;
	margin-bottom: 20px;
}
.about_content_zyyw .cont_box{
	display: flex;
	flex-wrap: wrap;
	background: #fff;
	padding:0 50px;
	margin-bottom: 70px;
}
.about_content_zyyw .cont_box .li{
	width: calc(100% / 5);
	margin:20px 0;
	position: relative;
	padding-left:20px;
}
.about_content_zyyw .cont_box .li a{
	font-size:16px;
	color:#999999;
}
.about_content_zyyw .cont_box .li::after{
	content: "";
	display: block;
	width: 4px;
	height: 4px;
	background: #b6b6b6;
	border-radius: 100%;
	position: absolute;
	left:0px;
	top: 50%;
	transform: translateY(-50%);
}
.about_content_zyyw .cont_box .li:hover a{
	color:#005fd1;
	border-bottom: 1px solid #005fd1;
}
.about_content_gdjj{
	display: flex;
	justify-content: space-between;
}
.about_content_gdjj .img_cont{
	width: 456px;
	height: 287px;
	border:2px solid #ececec;
	position: relative;
}
.about_content_gdjj .img_cont .i{
	display: block;
	width: 474px;
	height: 302px;
	overflow: hidden;
	transform: translate(42px,42px);
}
.about_content_gdjj .img_cont .txt{
	position: absolute;
	width: 196px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #005fd1;
	font-size:16px;
	color:#f8f8f8;
	bottom: -40px;
	left:-66px;
}
.about_content_gdjj .txt_cont{
	width: calc(100% - 520px);
	padding-left:20px;
}
.about_content_gdjj .txt_cont p{
	font-size:14px;
	line-height: 22px;
	color:#333333;
	margin-bottom: 20px;
}
.about_content_gdjj .txt_cont p:last-child{
	margin-bottom: 0;
}
/* 合作品牌 */
.hzpp_content_box{
	padding:50px 0;
}
.hzpp_content_box .content_box{
	display: flex;
	position: relative;
}
.hzpp_content_box .content_box .img{
	position: absolute;
	left:0;
	top: 0;
	width: 580px;
	height: 490px;
	overflow: hidden;
	z-index: -1;
}
.hzpp_content_box .content_box .img img{
	display: block;
	width: 100%;
}
.hzpp_content_box .content_box .link_cont_box{
	margin-top: 88px;
	margin-left:377px;
	background: #fff;
	display: flex;
	flex-wrap: wrap;
	padding:20px;
}
.hzpp_content_box .content_box .link_cont_box .li{
	width: calc(100% / 4);
	margin-bottom: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.hzpp_content_box .content_box .link_cont_box .li img{

	padding:10px 0;
}
/* 联系我们 */
.contact_content_box{
	padding:90px 0;
	background: #f8f8f8;
}
.contact_content_box .contact_ywll_cont{
	margin:30px 0 20px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.contact_ywll_cont .list_box{
	width: 581px;
	height: 229px;
	background: #fff;
	margin-bottom: 35px;
	padding:35px 50px 0;
	box-shadow: 0px 0px 5px rgba(0,0,0,0.2);
}
.contact_ywll_cont .list_box .tis_tle{
	text-align: center;
	font-size:22px;
	color:#3d3d3d;
	margin-bottom: 30px;
}
.contact_ywll_cont .list_box .tis_tle span{
	color:#005fd1;
}
.contact_ywll_cont .list_box .li{
	display: flex;
	align-items: center;
	margin-bottom:10px;
	font-size:20px;
	color:#666666;
}
.contact_ywll_cont .list_box .li span{
	margin:0 10px;
	color:#999999;
}
.contact_tyll_cont .map_box{
	width: 100%;
}
.contact_tyll_cont .map_box img{
	display: block;
	width: 100%;
}
.contact_tyll_cont .bit_content_box{
	display: flex;
	align-items: center;
}
.contact_tyll_cont .bit_content_box .l_cont{
	width: 50%;
	background: #fff;
	padding:44px 55px;
}
.contact_tyll_cont .bit_content_box .l_cont h2{
	font-size:26px;
	color:#333333;
	margin-bottom: 30px;
}
.contact_tyll_cont .bit_content_box .l_cont p{
	font-size:18px;
	color:#333333;
	margin-bottom: 10px;
}
.contact_tyll_cont .bit_content_box .l_cont p span{
	color:#999999;
}
.contact_tyll_cont .bit_content_box .r_cont{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50%;
}
.contact_tyll_cont .bit_content_box .r_cont .code{
	text-align: center;
}
.contact_tyll_cont .bit_content_box .r_cont .code i{
	display: block;
	margin:10px auto;
}
.contact_tyll_cont .bit_content_box .r_cont p{
	font-size:17px;
	color:#333333;
	text-align: center;
}
/* ******* */
.nlbj_content_box{
	padding:50px 0 120px 0;
	background: #f8f8f8;
}
.nlbj_content_box{
	display: flex;
	position: relative;
}
.nlbj_content_box .map_content_box{
	width: 900px;
	position: relative;
}
.nlbj_content_box .map_content_box .i{
	display: block;
	width: 100%;
}
.nlbj_content_box .map_content_box .txt_box{
	position: absolute;
	bottom: 0;
	left:0;
}
.nlbj_content_box .map_content_box .txt_box h2{
	font-size:20px;
	color:#005fd1;
	margin-bottom: 12px;
}
.nlbj_content_box .map_content_box .txt_box p{
	font-size:14px;
	color:#a0a0a0;
	margin-bottom: 8px;
}
.nlbj_content_box .map_detail_cont{
	width: 434px;
	position: absolute;
	right: 0;
	top: 0;
	padding:20px 20px 120px 20px;
	background: #fff;
	box-shadow: 0px 0px 10px rgba(0,0,0,0.3);
}
.nlbj_content_box .map_detail_cont .search_cont_box{
	display: flex;
	align-items: center;
	margin-bottom: 20px;
}
.map_detail_cont .search_cont_box .select{
	width: 253px;
	height: 60px;
	border:1px solid #e0e0e0;

}
.map_detail_cont .search_cont_box .select select{
	width: 100%;
	height: 100%;
	border:none;
	background: url(../i/nlbj_ic_1.png) no-repeat 95% center;
	-webkit-appearance: none;
	padding:0 20px 0 10px;
}
.map_detail_cont .search_cont_box .search{
	display: flex;
	width:62px;
	height: 60px;
	background: #0a3f89;
	border:1px solid #e0e0e0;
	margin:0 8px 0 8px;
	align-items: center;
	justify-content: center;
}
.map_detail_cont .search_cont_box .return{
	width: 62px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	border:1px solid #e0e0e0;
}
.map_detail_cont .title_box{
	display: flex;
	align-items: center;
	margin:30px 0;
	position: relative;
}
.map_detail_cont .title_box::after{
	content: "";
	display: block;
	width: 100%;
	height: 1px;
	border-top: 1px dashed #dddddd;
}
.map_detail_cont .content_infor_box .list{
	margin-bottom: 24px;
}
.map_detail_cont .content_infor_box .list h2{
	font-size:18px;
	color:#005fd1;
	margin-bottom: 10px;
}
.map_detail_cont .content_infor_box .list p{
	font-size:14px;
	line-height: 24px;
	color:#666666;
}
/* **** */
.rlzy_content_box{
	padding:70px 0 180px ;
	background: #f8f8f8;
}
.rlzy_content_box .rlzy_tis_txt{
	padding:60px 0 40px;
	font-size:20px;
	color:#999999;
}
.rlzy_tab_content{
	width: 100%;
}
.rlzy_tab_content .tis_header{
	display: flex;
  border-bottom: 5px solid #e5e5e5;
  justify-content: space-between;
}
.rlzy_tab_content .ti{
	padding:20px 20px 20px 14px;
	font-size:14px;
	color:#999999;
}
.rlzy_tab_content .ti:nth-child(1){
	width: 220px;
}
.rlzy_tab_content .ti:nth-child(2){
	width: 110px;
}
.rlzy_tab_content .ti:nth-child(3){
	width: 260px;
}
.rlzy_tab_content  .ti:nth-child(4){
	width: 480px;
}
.rlzy_tab_content .ti:nth-child(5){
	display: flex;
	justify-content: flex-end;
}
.rlzy_tab_content .list_box .tis_tle{
	display: flex;
	justify-content: space-between;
	border-bottom: 1px solid #e5e5e5;
}
.rlzy_tab_content .list_box .tis_tle .ti{
	font-size:18px;
	color:#666666;
	overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.rlzy_tab_content .list_box .tis_tle .ti span{
	color:#0066cc;
}
.rlzy_tab_content .list_box .tis_tle .ti:nth-child(1){
	font-size:24px;
	color:#333333;
}
.rlzy_tab_content .list_box .tis_tle .ti .more_btn{
	display: block;
	width: 36px;
	height: 33px;
	background: #cccccc;
	position: relative;
}
.rlzy_tab_content .list_box .tis_tle .ti .more_btn::after{
	content: "";
	display: block;
	width: 16px;
	height: 3px;
	background: #fff;
	position: absolute;
	top: 50%;
	left:50%;
	transform: translate(-50%,-50%);
}
.rlzy_tab_content .list_box .tis_tle .ti .more_btn::before{
	content: "";
	display: block;
	width: 3px;
	height: 16px;
	background: #fff;
	position: absolute;
	top: 50%;
	left:50%;
	transform: translate(-50%,-50%);
}
.rlzy_tab_content .list_box .bit_detail_box{
	display: none;
	padding:20px;
	background: #fff;
}
.rlzy_tab_content .list_box .bit_detail_box .txt{
	margin-bottom:34px;
	width: 940px;
}
.rlzy_tab_content .list_box .bit_detail_box .txt h2{
	font-size:18px;
	color:#999999;
	margin-bottom:14px;
}
.rlzy_tab_content .list_box .bit_detail_box .txt p{
	font-size:18px;
	line-height: 26px;
	color:#333333;
}
.rlzy_tab_content .list_box .bit_detail_box .btn{
	display: flex;
	width: 174px;
	height: 64px;
	border:1px solid #005fd1;
	border-radius: 100px;
	font-size:18px;
	color:#005fd1;
	align-items: center;
	justify-content: center;
}
.rlzy_tab_content .list_box.active{
	background: #ffffff;
	border:8px solid #005fd1;
}
.rlzy_tab_content .list_box.active .tis_tle{
	border-bottom: none;
}
.rlzy_tab_content .list_box.active .tis_tle .ti .more_btn{
	background: #0066cc;
}
.rlzy_tab_content .list_box.active .tis_tle .ti .more_btn::before{
	display: none;
}
/* 新闻中心 */
.news_content_box{
	padding: 70px 0 180px;
	background: #f8f8f8;
}
.news_content_tip{
	width: 100%;
	margin:50px auto;
}
.news_content_tip .swiper-slide{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.news_content_tip .swiper-slide .l_box{
	width: 569px;
	height: 358px;
}
.news_content_tip .swiper-slide .l_box img{
	display: block;
	width: 100%;
	height: 100%;
}
.news_content_tip .swiper-slide .detail_txt_box{
	width: 600px;
	height: 358px;
	position: relative;
}
.news_content_tip .swiper-slide .detail_txt_box .title{
	margin-bottom: 30px;
}
.news_content_tip .swiper-slide .detail_txt_box .title h2{
	font-size:28px;
	color:#212121;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	margin-bottom: 14px;
}
.news_content_tip .swiper-slide .detail_txt_box .title p{
	font-size:15px;
	color:#999999;
	font-family: "Arial";
}
.news_content_tip .swiper-slide .detail_txt_box .txt{
	font-size:14px;
	line-height: 26px;
	color:#666666;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.news_content_tip .swiper-slide .more_btn{
	display: flex;
	width: 202px;
	height: 58px;
	border:1px solid #0066cc;
	align-items: center;
	padding-left:22px;
	font-size:14px;
	color:#005fd1;
	position: absolute;
	bottom: 0;
	left:0;
}
.news_content_tip .swiper-slide .more_btn img{
	position: absolute;
	right: 18px;
	top:50%;
	transform: translateY(-50%);
	transition: all 0.5s;
}
.news_content_tip .swiper-slide .more_btn::after{
	content: "";
	display: block;
	width: 0;
	height: 58px;
	background: rgba(0,102,204,0.5);
	transition: all 0.5s;
	opacity: 0;
	position: absolute;
	left:0;
	top:0;
	z-index: -1;
}
.news_content_tip .swiper-slide .more_btn:hover{
	color:#fff;
}
.news_content_tip .swiper-slide .more_btn:hover::after{
	width: 100%;
	opacity: 1;
}
.news_content_tip .swiper-slide .more_btn:hover img{
	right: 8px;
}
.news_content_tip .swiper-pagination{
	text-align: right;
	bottom: 40px;
}
.news_content_tip .swiper-pagination-bullet{
	width: 10px;
	height: 10px;
	background: #cccccc;
	margin-left:10px;
}
.news_content_tip  .swiper-pagination-bullet-active{
	background: #005fd1;
}
.news_content_last{
	background: #fff;
}
.news_content_last .list_box{
	padding:36px 230px 56px 30px;
	position: relative;
	border-bottom:1px dashed #d3d3d3;
}
.news_content_last .list_box h2.t{
	font-size:20px;
	color:#333333;
	margin-bottom: 30px;
	position: relative;
	z-index: 2;
}
.news_content_last .list_box p.b{
	font-size:14px;
	line-height: 26px;
	color:#999999;
	position: relative;
	z-index: 2;
}
.news_content_last .list_box .time_box{
	position: absolute;
	right: 30px;
	top:50%;
	transform: translateY(-50%);
	text-align: right;
	z-index: 2;
}
.news_content_last .list_box .time_box h2{
	font-size:25px;
	color:#a3a3a5;
}
.news_content_last .list_box .time_box p{
	font-size:16px;
	color:#a3a3a5;
}
.news_content_last .list_box .time_box img{
	margin-top:20px;
}
.news_content_last .list_box::after{
	content: "";
	position: absolute;
	left:0;
	top: 0;
	width: 0;
	height: 100%;
	background: #0a3f89;
	opacity: 0;
	transition: all 0.5s;
}
.news_content_last .list_box:hover h2.t{
	color:#fff;
}
.news_content_last .list_box:hover p.b{
	color:#fff;
}
.news_content_last .list_box:hover::after{
	width: 100%;
	opacity: 1;

}
/* 业务领域 */
.ywly_content_box{
	padding-top: 70px;
	padding-bottom: 120px;
	background: #f8f8f8;
}
.ywly_last_content{
	margin:30px 0;
}
.ywly_last_content .list{
	margin-bottom: 80px;
}
.ywly_last_content .list .img_box{
	float: left;
	width: 397px;
	height: 254px;
	position: relative;
	background: #d8e4f3;
}
/*.ywly_last_content .list .img_box::after{
	content: "";
	display: block;
	width: 50px;
	height: 3px;
	background: #005fd1;
	position: absolute;
	right: -40px;
	top: 48px;
}*/
.ywly_last_content .list .img_box .i{
	width: 394px;
	height: 273px;
	transform: translate(16px,17px);
}
.ywly_last_content .list .txt_box{
	float: left;
	width: calc(100% - 397px);
	padding-left:60px;
	padding-top: 50px;
}
.ywly_last_content .list .txt_box h2{
	font-size:25px;
	font-weight: bold;
	color:#333333;
	margin-bottom: 20px;
	text-align: left;
}
.ywly_last_content .list .txt_box:nth-child(2n) h2{
	font-size:25px;
	font-weight: bold;
	color:#333333;
	margin-bottom: 20px;
	text-align: right;
}
.ywly_last_content .list .txt_box p{
	font-size:14px;
	color:#666666;
	line-height: 26px;
}
.ywly_last_content .list:nth-child(even) .img_box{
	float: right;
}
.ywly_last_content .list:nth-child(even) .img_box::after{
	right: 0;
	left:-40px;
}
.ywly_last_content .list:nth-child(even) .txt_box{
	padding-left:60px;
	padding-right: 60px;
	text-align: right;
}
.ywly_last_content .list:nth-child(even) .txt_box p{
	text-align: left;
}
.ywly_last_content .list:nth-child(even) .txt_box:nth-child(2n){
	padding-left:60px;
	padding-right: 60px;
	text-align: left;
}
/* 硬件设施 */
.yjss_content_box{
	padding-top: 70px;
	padding-bottom: 120px;
	background: #f8f8f8;
}
.yjss_list_box{
	display: flex;
	align-items: center;
	background: #fff;
	margin-bottom: 20px;
}
.yjss_list_box .i{
	width: 772px;
	height: 462px;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}
.yjss_list_box .i img{
	display: block;
	width: 100%;
/*	height: 100%;*/
}
.yjss_list_box .txt_box{
	width: calc(100% - 772px);
	padding:0 40px;
	font-size:18px;
	line-height: 36px;
	color:#585656;
}
.zxly{
	padding: 70px 130px 110px;
	background: #F4F4F4;
}
.zxly_title{
	text-align: center;
	font-size: 30px;
	line-height: 29px;
	color: #333333;
	margin-bottom: 30px;
}
.zxly_title span{
	font-size: 18px;
	line-height: 18px;
	color: #999999;
}
.content .content_box{
	width: 100%;
	display: flex;
	margin-bottom: 30px;
	justify-content: space-between;
}
.content h1{
	font-size: 16px;
	color: #191919;
	margin-bottom: 5px;
}
.content .content_box div{
	width: 32%;
}
.content .content_box input{
	width: 100%;
	border: 1px solid #DADADA;
	background: #EEEEEE;
	height: 55px;
	padding: 10px 10px;
}
.text textarea{
	width: 100%;
	height: 170px;
	background: #EEEEEE;
	border: 1px solid #DADADA;
	resize:vertical;
	padding: 10px 10px;
}
.btns{
	display: flex;
	justify-content: center;
	margin-top: 50px;
}
.btns a:first-child{
	display: block;
	width: 135px;
	height: 50px;
	line-height: 50px;
	background: #37ADA5;
	text-align: center;
	color: #FFFFFF;
	font-size: 16px;
	border-radius: 30px;
	margin-right: 30px;
}
.btns input{
	display: block;
	width: 135px;
	height: 50px;
	line-height: 50px;
	background: #F4F4F4;
	text-align: center;
	color: #333333;
	cursor:pointer;
	font-size: 16px;
	border: 1px solid #C6C6C6;
	border-radius: 30px;
}
.newsd{
	background: #F0F0F0;
}
.newsd_box{
	width: 1200px;
	background: #FFFFFF;
	margin: 0 auto;
	padding: 60px 30px;
}
.newsd_box h1{
	text-align: center;
	color: #424242;
	font-size: 24px;
	line-height: 28px;
	margin-bottom: 35px;
}
.newsd_box h2{
	text-align: center;
	color: #424242;
	font-size: 16px;
	line-height: 24px;
	margin-bottom: 35px;
}
.newsd_box div{
	font-size: 18px;
}
/* ****************** pc not********************* */
.pho_menu_btn{
	display: none;
}
.pho_menu_bg,.pho_menu_box{
	display: none;
}
/* *******************手机***************** */
@media (max-width:450px) {
  .warpin{
		width: 100%;
	  	padding: 0 0.5rem;
	}
	.index_pulic_header .header_cont .logo{
		width: 10rem;
		height: auto;
	}
	.index_pulic_header .header_cont .logo img{
		width: 100%;
	}
	.index_pulic_header .header_cont .r_cont{
		display: none;
	}
	.index_pulic_header .header_cont .pho_menu_btn{
		display:flex;
		width: 4rem;
		height: 4rem;
		align-items: center;
		justify-content: center;
	}
	.index_pulic_header .header_cont .pho_menu_btn img{
		width: 2rem;
	}
	.wxzz_cont_box .cont_box .list_box .time h2{
		font-size: 18px;
	}
	.wxzz_cont_box .cont_box .list_box .time{
		padding: 7px 7px;
	}
  .pho_menu_bg{
		display: block;
		width: 100%;
		height: 100%;
		position: fixed;
		top: 0;
		right: -100%;
		background: rgba(0,0,0,0.5);
		transition: all 0.5s;
		z-index:11;
	}
	.pho_menu_bg.active{
		right: 0;
	}
	.pho_menu_box{
		display: block;
		width: 50%;
		height: 100%;
		position: fixed;
		top: 0;
		left:-100%;
		background: #fff;
		transition: all 0.5s;
		padding:1rem;
		z-index:12;
	}
	.pho_menu_box .search_box{
		display: flex;
		align-items: center;
		margin-bottom: 2rem;
		border:1px solid #0a3f89;
    border-radius: 4px;
		overflow: hidden;
	}
	.pho_menu_box .search_box input{
		width: 70%;
		height: 2.5rem;
		border:none;
		padding-left:0.8rem;
		font-size:1rem;
	}
	.pho_menu_box .search_box .btn{
		display: flex;
		width: 32%;
		height: 2.5rem;
		align-items: center;
		justify-content: center;
		background: #0a3f89;
		color:#fff;
		font-size:1rem;
	}
	.pho_menu_box .navi_box{
    padding-left:1rem;
	}
	.pho_menu_box .navi_box a{
		display: block;
		padding:0.5rem 0;
		font-size:1.5rem;
		color:#0a3f89;
	}
	.pho_menu_box.active{
		left:0;
	}
	.index_banner_box .swiper-pagination-bullet{
		width: 1rem;
		height: 1rem;
	}
	.index_ywfw_content{
		width: 100%;
	}
	.index_announ_content{
		padding:1rem 0;
	}
  .index_announ_content .yjss_cont_box .cont_box{
		flex-wrap: wrap;
		justify-content: center;
	}
	.index_announ_content .yjss_cont_box .cont_box .l_box{
		width: 100%;
	}
	.index_announ_content .yjss_cont_box .cont_box .l_box .tis_box{
		height: 20rem;
	}
	.index_announ_content .yjss_cont_box .cont_box .txt_box{
		display: none;
	}
	.index_announ_content .yjss_cont_box .cont_box .r_box{
		width: 100%;
		height: 20rem;
	}
	.index_news_content{
		flex-wrap: wrap;
		padding:2rem 1rem;
	}
	.index_news_content .news_cont_box{
		width: 100%;
	}
	.index_news_content .news_cont_box .index_news_cont{
		display: none;
	}
	.index_news_content .news_cont_box .news_last_box{
		width: 100%;
		padding-left:0;
	}
	.index_news_content .wxzz_cont_box{
		width: 100%;
		margin-top: 1rem;
	}
	.wxzz_cont_box .cont_box .list_box{
		padding:0;
	}
	.pulic_footer_content .warpin .footer_navi_content{
		flex-wrap: wrap;
	}
	.pulic_footer_content .nav_list:nth-child(1){
		width: 50%;
		margin-right: 0;
	}
	.pulic_footer_content .nav_list{
		width: 48%;
		margin-right: 2%;
	}
	.pulic_footer_content .infor_txt{
		width: 100%;
	}
	.content_tip_navi .warpin{
		flex-wrap: wrap;
		padding:0;
	}
	.content_tip_navi .warpin .li{
		width: calc(100% / 4);
	}
	.content_tip_navi .warpin .li a{
		padding:0;
		font-size:1.2rem;
		height: 4rem;
	}
	.ywly_content_box{
		padding:2rem 0;
	}
	.ywly_last_content .list .img_box{
		float: none;
		width: 100%;
	}
	.ywly_last_content .list .txt_box{
		width: 100%;
		float: none;
		padding-left:0;
		padding-top: 1rem;
	}
	.ywly_last_content .list .img_box .i{
		width: 100%;
    height: 21rem;
    transform: translate(0.5rem,0.5rem);
	}
	.ywly_last_content .list .img_box .i img{
		display: block;
		width: 100% !important;
		height: 100% !important;
	}
	.ywly_last_content .list:nth-child(even) .img_box{
		float: none;
	}
	.ywly_last_content .list:nth-child(even) .txt_box:nth-child(2n){
		float: none;
		padding-left:0;
		padding-top: 1rem;
	}
	.ywly_last_content .list .txt_box:nth-child(2n) h2{
		text-align: left;
	}
	.content_banner_box .txt_box{
		width: 100%;
		padding:0 1rem;
	}
	.content_banner_box .txt_box h2{
		font-size:1.6rem;
	}
	.content_pulic_title h2{
		font-size:1.6rem;
	}
	.about_content_txt img{
		display: block;
		max-width: 100%;
	}
	.about_content_zyyw .cont_box{
		padding:0 1rem;
		margin-bottom: 1rem;
	}
	.about_content_zyyw .cont_box .li{
		width: calc(100% / 3);
		margin:0.5rem 0;
	}
	.about_content_gdjj{
		flex-wrap: wrap;
	}
	.about_content_gdjj .img_cont{
		width: 100%;
    height: 25rem;
	}
	.about_content_gdjj .img_cont .i{
		width: 100%;
		height: 100%;
		transform: translate(0,0);
	}
	.about_content_gdjj .img_cont .txt{
		left:0;
		bottom: 0;
	}
	.about_content_gdjj .txt_cont{
		width: 100%;
		padding:1rem 0;
	}
	.about_qywh_content .li{
		width: 100%;
		padding-left:1rem;
		margin-bottom: 2rem;
	}
	.about_qywh_content .li .i{
		width: 4rem;
		height: 4rem;
	}
	.about_qywh_content .li .txt{
		width: calc(100% - 4rem);
		padding-left:1rem;
	}
	.about_gsry_content .gsry_content_box{
		width: 100%;
		margin:2rem auto ;
	}
	.gsry_content_box .gsry_last_cont .swiper-slide{
		padding:0 1rem;
	}
	.nlbj_content_box{
		padding:2rem 0;
		flex-wrap: wrap;
	}
	.nlbj_content_box .map_content_box{
		width: 100%;
    margin-bottom: 1rem;
	}
	.nlbj_content_box .map_detail_cont{
		position: relative;
		width: 100%;
	}
	.yjss_list_box{
		flex-wrap: wrap;
	}
	.yjss_list_box .i{
		width: 100%;
		height: 20rem;
	}
	.yjss_list_box .txt_box{
		width: 100%;
    padding: 1rem;
    font-size: 1.4rem;
    line-height: 1.2rem;
	}
	.news_content_tip .swiper-slide{
		flex-wrap: wrap;
		width: 100%;
	}
	.news_content_tip .swiper-slide .l_box{
		width: 100%;
		height: 18rem;
	}
	.news_content_tip .swiper-slide .detail_txt_box{
		width: 100%;
		height: 20rem;
	}
	.news_content_tip .swiper-slide .more_btn{
		width: 14rem;
		height: 3rem;
	}
	.news_content_last .list_box{
		padding: 1rem 9rem 1rem 1rem;
	}
	.newsd_box{
		width: 100%;
		padding:2rem 1rem;
	}
	.newsd_box img{
		display: block;
		max-width: 100%;
		margin: 0.8rem auto;
	}
	.rlzy_tab_content .ti{
		padding:0.5rem;
	}
	.rlzy_tab_content .list_box .tis_tle .ti:nth-child(1){
		font-size:1.2rem;
	}
	.rlzy_tab_content .ti:nth-child(5){
		width: 9rem;
	}
	.rlzy_tab_content .list_box .tis_tle .ti{
		font-size:1.2rem;
	}
	.rlzy_tab_content .list_box .tis_tle .ti .more_btn{
		width: 2rem;
		height: 2rem;
	}
	.rlzy_tab_content .list_box .bit_detail_box .txt h2{
		font-size:1.4rem;
	}
	.rlzy_tab_content .list_box .bit_detail_box .txt p{
		font-size:1.2rem;
	}
	.rlzy_tab_content .list_box .bit_detail_box .txt{
		width: 100%;
		margin-bottom: 1rem;
	}
	.rlzy_tab_content .list_box .bit_detail_box .btn{
		width: 7rem;
		height: 3rem;
		font-size:1.2rem;
	}
	.rlzy_tab_content .list_box.active{
		border:0.2rem solid #005fd1;
	}
	.hzpp_content_box .content_box{
		flex-wrap: wrap;
	}
	.hzpp_content_box .content_box .img{
		position: relative;
		width: 100%;
		height: 20rem;
		z-index:1;
	}
	.hzpp_content_box .content_box .img img{
		display: block;
		width: 100%;
		height: 100%;
	}
	.hzpp_content_box .content_box .link_cont_box{
		margin-top: 2rem;
		margin-left:0;
		padding:1rem;
	}
	.hzpp_content_box .content_box .link_cont_box .li{
		width: calc(100% / 3);
	}
	.hzpp_content_box .content_box .link_cont_box .li img{
		max-width: 100%;
	}
	.contact_ywll_cont .list_box{
		width: 100%;
		height: 10rem;
		padding:1rem 1rem 0;
		margin-bottom: 1rem;
	}
	.contact_ywll_cont .list_box .tis_tle{
		font-size:1.4rem;
		margin-bottom: 0.5rem;
	}
	.contact_ywll_cont .list_box .li{
		font-size:1.2rem;
	}
	.contact_tyll_cont .bit_content_box{
		flex-wrap: wrap;
	}
	.contact_tyll_cont .bit_content_box .l_cont{
		width: 100%;
		padding:1rem;
	}
	.contact_tyll_cont .bit_content_box .r_cont{
		width: 100%;
		padding:2rem 0;
	}
	.contact_tyll_cont .bit_content_box .l_cont h2{
		font-size:1.4rem;
	}
	.contact_tyll_cont .bit_content_box .l_cont p{
		font-size:1.2rem;
	}
	.zxly{
		padding:1rem;
	}
	.zxly_title{
		font-size:1.6rem;
	}
	.zxly_title span{
		font-size:1.4rem;
	}
	.content .content_box{
		flex-wrap: wrap;
		margin-bottom: 1rem;
	}
	.content .content_box div{
		width: 100%;
	}
	.content .content_box input{
		height: 3rem;
	}
	.btns a:first-child{
		width: 10rem;
    height: 3rem;
    line-height: 3rem;
		margin-right: 0;
	}
	.tdgc_img_cont img{
		display: block;
		max-width: 100%;
	}
	.map_detail_cont .search_cont_box .select{
		height: 3rem;
	}
	.map_detail_cont .search_cont_box .search{
		height: 3rem;
	}
	.map_detail_cont .search_cont_box .search img{
		width: 1.5rem;
	}
	.map_detail_cont .search_cont_box .return{
		height: 3rem;
	}
	.map_detail_cont .search_cont_box .return img{
		width: 1.5rem;
	}
	.pulic_footer_content .nav_list .list_box a{
		font-size: 12px;
	}
}
