
/* 样式开始 */

.absPic{
	position: relative; overflow: hidden;
}
.absPic img{
	display: block; width: 100%; height: 100% !important;
	position: absolute; left: 0; top: 0;
}

.liuyan{
    background-color: #fff;
    border-radius: 6px; width: 830px;
    box-sizing: border-box;
    padding: 30px 44px 40px;
    display: none;
    max-width: 100%;
}
.liuyan_txt1{
    font-size: 30px; color: #061832; line-height: 50px;
    text-align: center; font-weight: 500;
}
.layui_form_content{
    display: flex;
    flex-wrap: wrap; margin-top: 15px;
}
.liuyanform_item{
    width: 350px;
}
.liuyanform_item_label{
    display: flex; align-items: center;
}
.liuyanform_item_label_txt1{
    font-size: 16px; color: #333; line-height: 40px;
}
.liuyanform_item_require .liuyanform_item_label:after {
    content: '*'; font-size: 16px; color: #ff1212;
    margin-left: 10px;
}
.liuyanform_item_input{
    font-size: 16px; color: #333;
    height: 50px;
    border: 1px solid #d9d9d9;
    background-color: #fff;
    border-radius: 6px;
    padding: 10px 20px;
    box-sizing: border-box;
    width: 100%;
}
.liuyanform_item_einput+.liuyanform_item_einput{
    margin-left: auto;
}
.liuyanform_item_textarea{
    width: 100%; margin-top: 25px;
}
.liuyanform_item_textarea .liuyanform_item_input{
    height: 140px;
}
.liuyanform_btn{
    font-size: 20px; color: #fff; line-height: 60px;
    border-radius: 99999px;
    text-align: center;
    background-color: #2b3990;
    width: 350px;
    margin-top: 26px;
    cursor: pointer;
}

.myskin.layui-layer{
    background: unset; box-shadow: unset;
}



.imask{
	position: fixed; left: 0; top: 0;
	width: 100%; height: 100%;
	background: rgba(0,0,0,0.9);
	z-index: 16;
	opacity: 0; visibility: hidden;

}
.imask.animIn{opacity: 1; visibility: visible; transition:all .3s ease;  }
.imask_center{
	position: absolute;
	left: 50%; margin-left: -160px;
	text-align: center;
	top: 50%; transform: translateY(-50%);
}
.imask_close{
	font-size: 35px; color: #fff; line-height: 80px;
	cursor: pointer;
}
.inav{
	width: 320px; margin-top: 20px;
}
.inav_item{
	display: block; position: relative;
	font-size: 35px; color: #fff; font-weight: bold;
	line-height: 80px; cursor: pointer;
	opacity: 0;  transform: translate3d(0, 240px,0);
	position: relative;
}
.inav_item:after{
	position: absolute;
	left: 50%;
	content: '';
	bottom: 20px;
	width: 0;
	margin-left: -50px;
	height: 10px;
	background: #164da4;
	opacity: 0.45; transition: all .3s ease;
}
.inav_item:hover:after{
	width: 100px;
}
.inav_item.animIn{ transform: translate3d(0,0,0); opacity: 1;
	-webkit-transition: all 1000ms cubic-bezier(1.000, 0.000, 0.000, 1.000);
	-moz-transition: all 1000ms cubic-bezier(1.000, 0.000, 0.000, 1.000);
	-o-transition: all 1000ms cubic-bezier(1.000, 0.000, 0.000, 1.000);
	transition: all 1000ms cubic-bezier(1.000, 0.000, 0.000, 1.000); /* easeInOutExpo */
}




.section{
	padding-top: 70px;
}


.slideBar-item{
	border: none;
	border-radius: 6px;
	background-color: #2b3990;
	display: flex; align-items: center; justify-content: center;
	flex-direction: column;
}
.slideBar-icon {
	color: #fff;
}
.slideBar-item-txt{
	font-size: 12px; color: #fff; line-height: 20px;
	text-align: center; white-space: nowrap;
	margin-top: 5px;
}
.slideBar-content{
	top: 0; bottom: 0; height: 80px; right: 80px;width: 210px;
}



.m-control{
	display: none;
}
.topper{
	background: #fff; position: fixed; left: 0; top: 0;
	width: 100%; box-sizing: border-box; z-index: 11;
	padding: 0 50px;
	display: flex;
    box-shadow: 0px 0px 10px #ccc;
}
.logo{
	width: 200px; margin-top: 10px;
	background-image: url(../images/logo.svg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}
.logo:after{
	padding-top: 46.6666666666667%;
	content: ''; display: block;
}
.nav{
	margin-left: auto; display: flex;
}
.nav_item{
	padding: 0 30px;
	position: relative;
}
.nav_item:hover .sub_nav{
	display: block;
}


.nav_item_link {
	font-size: 18px; color: #333; line-height: 90px; display: block;
}
.nav_item:hover .nav_item_link,
.nav_item.active .nav_item_link{
	color: #2b3990;
}

.nav_item:after{
	width: 0; height: 2px; background: #2b3990;
	position: absolute; left: 50%; bottom: 0; transition: all .2s ease;
	content: ''; margin-left: -32.5px;
}
.nav_item:hover:after,
.nav_item.active:after{
	width: 65px;
}

.topper.index_toppper{
	background: none;
    box-shadow: unset;
}
.topper.index_toppper .nav_item_link{
	color: #fff;
}
.topper.index_toppper .nav_item:after{
	background: #fff;
}
.topper.index_toppper .logo{
	background-image: url(../images/wlogo.png);
}
.topper.index_toppper .nav_item:hover .nav_item_link,
.topper.index_toppper .nav_item.active .nav_item_link{
	color: #fff;
}

.js-show .topper.index_toppper{
	background: #fff;
    box-shadow: 0px 0px 10px #ccc;
}
.js-show .topper.index_toppper .nav_item_link{
	color: #333;
}
.js-show .topper.index_toppper .nav_item:after{
	background: #2b3990;
}

.js-show .topper.index_toppper .logo{
	background-image: url(../images/logo.png);
}

.js-show .topper.index_toppper .nav_item:hover .nav_item_link,
.js-show .topper.index_toppper .nav_item.active .nav_item_link{
	color: #2b3990;
}


.right_bar{
	display: flex; align-items: center;
}
.right_bar_hotline:after{
	position: absolute; left: 0; top: 0; width: 1px;
	height: 100%;
	content: '';
	background-color: #e5e5e5;
}
.right_bar_hotline{
	padding-left: 36px;
	position: relative;
}
.right_bar_hotline_txt1{
	font-size: 12px; color: #999; line-height: 26px;
	position: relative;
	padding-left: 20px;
}
.right_bar_hotline_txt1:after{
	position: absolute;
	left: 0; top: 50%; transform: translateY(-50%);
	width: 14px; height: 16px;
	background: url(../images/right_bar_icon.png) no-repeat center center / cover;
	content: '';
}
.right_bar_hotline_txt2{
	font-size: 16px; color: #333; line-height: 26px;
}
.right_bar_btn{
	margin-left: 104px;
	font-size: 14px; color: #fff; line-height: 36px;
	width: 118px;
	text-align: center; border-radius: 999999px;
	background-color: #2b3990;
}
.btn_coop{
	cursor: pointer;
}

.topper.index_toppper .right_bar_hotline:after{
	background-color: rgba(255,255,255,0.5);
}
.topper.index_toppper .right_bar_hotline_txt1{
	color: #fff;
}
.topper.index_toppper .right_bar_hotline_txt1:after{
	background: url(../images/right_bar_icon1.png) no-repeat center center / cover;
}
.topper.index_toppper .right_bar_hotline_txt2{
	color: #fff;
}
.topper.index_toppper .right_bar_btn{
	background-color: #fff;
	color: #2b3990;
}
.js-show .topper.index_toppper .right_bar_hotline:after{
	background-color: #e5e5e5;
}
.js-show .topper.index_toppper .right_bar_hotline_txt1{
	color: #999;
}
.js-show .topper.index_toppper .right_bar_hotline_txt1:after{
	background: url(../images/right_bar_icon.png) no-repeat center center / cover;
}
.js-show .topper.index_toppper .right_bar_hotline_txt2{
	color: #333;
}
.js-show  .topper.index_toppper .right_bar_btn{
	background-color: #2b3990;
	color:#fff;
}


.sub_nav{
	position: absolute; left: 50%; transform: translateX(-50%);
	top: 90px;
	padding: 20px 10px;
	box-sizing: border-box;
	z-index: 1;
	background-color: #fff;
	display: none;
}

.sub_nav1{
	/*width: 260px;*/
}
.sub_nav1 .sub_nav_list{
	display: flex; flex-direction: column;
}
.sub_nav_list{
	margin-top: -20px;
}
.sub_nav_item{
	line-height: 30px;
	width: 140px; text-align: center;
	margin-top: 20px;
}
.sub_nav_item_link{
	font-size: 16px; color: #666;
}
.sub_nav_item_link:hover{
	color: #2b3990;
}


.banner{
	height: 580px;
}
.focusBox{
	height: 100%;
}
.focusBox .swiper-slide,
.focusBox .swiper-link{
	height: 100%;
}

.focusBox .swiper-link{
	display: flex; justify-content: center;
}
.focusBox .swiper-link img{
	display: block; height: 100%; width: auto;
}
.focusBox .swiper-pagination{
	bottom: 40px !important;
}
.focusBox .swiper-pagination .swiper-pagination-bullet{
	background-color: rgba(255,255,255,0.5);
	margin: 0 5 !important;
    transition: all .2s ease;
	width: 32px;
	height: 6px;
	border-radius: 99999px;
}
.focusBox .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active{
	background-color: #fff ;
}




/* 资讯中心开始 */
.inews{
	padding-top: 30px;
	padding-bottom: 40px;
	background: #fff;
}
.inews_center{
	width: 1400px; background-color: #fff;
	position: relative;
}

.inews_cells{
	display: flex; align-items: center;
	margin-left: -67.5px;
}
.inews_cell{
	width: 355px; margin-left: 67.5px;
}
.inews_cell_top{
	display: flex; position: relative; height: 150px; align-items: center; justify-content: center;
	overflow: hidden;
	background-color: #2b3990;

	border-radius: 6px;
}
.inews_cell_top_bg{
	position: absolute; left: 0; top: 0; width: 100%; height: 100%;
}
.inews_cell_top_txts{
	position: relative; z-index: 1;
	text-align: center;
}
.inews_cell_top_txt1{
	font-size: 22px; color: #fff; line-height: 30px;
	font-weight: 500;
}
.inews_cell_top_txt2{
	font-size: 16px; color: #fff; line-height: 25px; margin-top: 6px;
}

.inews_cell_top:hover .inews_cell_top_bg{
	opacity: 0.5;
}

.inews_list{
	padding: 34px 0;
}
.inews_item{
	display: flex;
}
.inews_item_txt1{
	font-size: 16px; color: #888; line-height: 30px;
}
.inews_item_txt2{
	font-size: 16px; color: #333; line-height: 30px;
	width: 0; flex: 1; margin-left: 10px;
}
.inews_item:hover .inews_item_txt1,
.inews_item:hover .inews_item_txt2{
	color: #2b3990;
}
/* 资讯中心结束 */


/* 公用开始 */
.container{
	padding-top: 90px;
}

.ebanner{
	display: flex; align-items: center; justify-content: center;
	position: relative;
}
.ebanner_content{
	position: absolute; left: 0; top: 0; z-index: 1;
	width: 100%; height: 100%;
	display: flex; align-items: center;
}
.ebanner_content_txt1{
	font-size: 44px; color: #fff; line-height: 70px;
	/* font-style: italic; */
}
.ebanner_content_txt2{
	/*opacity: 0.8;*/
	font-size: 20px;color: #fff; line-height: 44px;
}
.ebanner_content.white .ebanner_content_txt1,
.ebanner_content.white .ebanner_content_txt2{
  color: #fff;
}
.ebanner_img{
	height: 340px;
	width: 100%;
}

.enav{
	background-color: #fbfbfb;
	border-bottom: 1px solid #f2f2f2;
}
.enav_list{
	display: flex; align-items: center;
}
.enav_more_list .enav_item+.enav_item{
	 margin-left: 48px;
}
.enav_item{
	font-size: 16px; color: #666; line-height: 55px;
	display: block; position: relative;
}
.enav_item+.enav_item{
	 margin-left: 40px;
}
.enav_item:after{
	position: absolute; left: 0; bottom: 0; width: 100%; height: 2px; background-color: #0044e1;
	content: ''; display: none;
}
.enav_item:hover,
.enav_item.active {
	color: #0044e1;
}
.enav_item.active:after{
	display: block;
}





.ndetail img{
	display: inline-block;
	width: auto;
	max-width: 100%;
	height: auto;
	margin-top: 30px;
	margin-bottom: 30px;
}

.ndetail_title1{
	font-size: 24px;
    color: #333;
    line-height: 35px;
}

.ndetail_title2{
	font-size: 20px;
    color: #666;
    line-height: 35px;
}

.ndetail_title1+.ndetail_title2{
	margin-top: 15px;
}

.ndetail_title2+.ndetail_txt1{
	margin-top: 15px;
}

.ndetail_section+.ndetail_section{
	margin-top: 30px;
}

.ndetail_txt1{
	font-size: 16px;
	color: #666;
	line-height: 30px;
}
.ndetail_txt1+.ndetail_txt1{
	margin-top: 10px;
}
/* 公用结束 */






.gywm{
	padding-top: 70px;
	padding-bottom: 60px;
}
.dashiji_wheels{
	position: relative;
	padding-bottom: 20px;
}
.dashiji_wheels:after{
	position: absolute; left: 0; top: 14.5px;
	width: 100%; height: 1px; background-color: #2b3990;
	content: '';
}
.dashiji_wheels_control{
	width: 30px; height: 30px; box-sizing: border-box;
	position: absolute; top: 0; z-index: 1;
	display: flex; align-items: center; justify-content: center;
	border: 2px solid #2b3990; color: #2b3990; font-size: 14px;
	border-radius: 50%; background-color: #fff;text-align: center;
	cursor: pointer;
}
.dashiji_wheels_control:hover {
	background-color: #2b3990; color: #fff;
}
.dashiji_wheels_control_prev{
	left: 0;
}
.dashiji_wheels_control_next{
	right: 0;
}

.dashiji_wheel{
	width: 200px;
	cursor: pointer;
	padding-top: 5px;
}
.dashiji_wheel_dot{
	width: 20px; height: 20px; box-sizing: border-box;
	border: 1px solid #2b3990;
	position: relative; z-index: 1;
	background-color: #fff; border-radius: 50%;
	display: flex; align-items: center; justify-content: center;
	margin-left: auto; margin-right: auto;
}
.dashiji_wheel_dot:after{
	position: absolute; width: 10px; height: 10px;
	border-radius: 50%; box-sizing: border-box;
	content: '';
	background-color: #fff; border: 1px solid #2b3990;
	transition: background-color .2s ease;
}
.dashiji_wheel:hover .dashiji_wheel_dot:after,
.dashiji_wheel.active .dashiji_wheel_dot:after{
	background-color: #2b3990;
}
.dashiji_wheel_txt{
	width: 116px;
	font-size: 20px; color: #666; line-height: 40px;
	text-align: center;
	position: relative;
	border-radius: 999999px;
	margin-left: auto; margin-right: auto;
	margin-top: 20px;
}
.dashiji_wheel_txt:after{
	position: absolute; left: 50%; top: -6px; transform: translateX(-50%);
	width: 0; height: 0;
	border-left: 4px solid transparent;
	border-right: 4px solid transparent;
	border-bottom: 6px solid #2b3990;
	content: '';
	display: none;
}
.dashiji_wheel.active .dashiji_wheel_txt{
	background-color: #2b3990;
	color: #fff;
}
.dashiji_wheel.active .dashiji_wheel_txt:after{
	display: block;
}


.dashiji{
	margin-top: 46px;
}
.dashiji_content{
	display: none;
}
.dashiji_content.show{
	display: block;
}
.dashiji_content_box{
	background-color: #2b3990; display: flex; align-items: center; justify-content: center;
	border-radius: 15px;
	width: 200px; height: 120px;
}
.dashiji_content_box_txt1{
	font-size: 46px; color: #fff; line-height: 1.5; font-weight: 500;
}
.dashiji_content_box_txt2{
	font-size: 18px; color: #fff; line-height: 1.5; margin-left: 10px; margin-top: 10px ;
}
.dashiji_content .textbox{
	width: 960px;
}





.dszjy_left{
	width: 590px;
}
.dszjy_txt1{
	font-size: 16px; color: #666; line-height: 30px;
}
.dszjy_txt1+.dszjy_txt1{
	margin-top: 30px;
}
.dszjy_sub{
	display: flex; align-items: center; margin-top: 50px;
}
.dszjy_txt2{
	font-size: 16px; color: #333; line-height: 30px;
}
.dszjy_qianming{
	width: 180px; height: auto; display: block;
	margin-left: auto;
}
.dszjy_right {
	width: 540px;
}
.dszjy_right img{
	display: block; width: 100%; height: auto;
}





.jtjj_section1 .w1200{
	display: flex; align-items: center;
	flex-wrap: wrap;
}
.jtjj_section1_left{
	width: 710px;
}
.jtjj_section1_left_pic{
	width: 100%; height: auto; display: block;
}
.jtjj_section1_right{
	width: 490px; box-sizing: border-box;
	padding-left: 50px;
}
.jtjj_title{
	font-size: 32px; color: #061832; line-height: 50px;
}
.jtjj_txt1{
	opacity: 0.8;
	font-size: 16px; color: #061832; line-height: 30px;
	margin-top: 20px;
}

.jtjj_section2{
	padding-top: 50px; padding-bottom: 50px;
}
.jtjj_section2_pic001{
	margin-top: 20px;
	display: block; width: 100%; height: auto;
}

.jtjj_section3{
	background: #f7fafd; padding-bottom: 60px;
	padding-top: 60px;
}
.jtjj_section3_list{
	display: flex; margin-left: -20px;
	margin-top: 50px;
}
.jtjj_section3_item{
	width: 590px; margin-left: 20px;
}
.jtjj_section3_item_pic{
	width: 100%;
}
.jtjj_section3_item_pic img{
	display: block; width: 100%; height: auto;
}
.jtjj_section3_item_content{
	padding: 35px 0;
}
.jtjj_section3_item_content_txt1{
	font-size: 26px; color: #061832; line-height: 40px;
}
.jtjj_section3_item_content_txt2{
	margin-top: 15px;
	font-size: 16px; color: #061832; line-height: 30px;
	opacity: 0.8;
}

.iyewu_swiper .swiper-slide-prev,
.iyewu_swiper .swiper-slide-next{
    cursor: pointer;
}
.jtjj_section4{
	padding-top: 60px;
}
.jtjj_section4_list{
	display: flex; flex-wrap: wrap;
	margin-top: 60px;
}
.jtjj_section4_item{
	position: relative;
	width: 33.333333%;
	overflow: hidden;
}
.jtjj_section4_item:after{
	content: ''; display: block;
	padding-top: 70%;
}
.jtjj_section4_item:nth-of-type(1):after,
.jtjj_section4_item:nth-of-type(2):after{
	padding-top: 46.6666666666667%;
}
.jtjj_section4_item:nth-of-type(1),
.jtjj_section4_item:nth-of-type(2){
	width: 50%;
}
.jtjj_section4_item_pic{
	position: absolute; left: 0; top: 0;
	width: 100%; height: 100%; z-index: 1;
}
.jtjj_section4_item_content{
	position: absolute; left: 0; top: 0;
	width: 100%; height: 100%; z-index: 1;
	box-sizing: border-box;
	padding: 40px 44px;
}
.jtjj_section4_item_content_txt1{
	font-size: 28px; color: #fff; line-height: 40px;
}
.jtjj_section4_item_content_txt2{
	font-size: 16px; color: #fff; line-height: 25px;
	margin-top: 15px; opacity: 0; visibility: hidden;
	transform: translateY(20px);
}
.jtjj_section4_item:nth-of-type(1) .jtjj_section4_item_content{
	background-color: rgba(22, 119, 256, 0.5);
}
.jtjj_section4_item:nth-of-type(2) .jtjj_section4_item_content{
	background-color: rgba(155, 38, 182, 0.5);
}
.jtjj_section4_item:nth-of-type(3) .jtjj_section4_item_content{
	background-color: rgba(0, 169, 206, 0.5);
}
.jtjj_section4_item:nth-of-type(4) .jtjj_section4_item_content{
	background-color: rgba(40, 58, 152, 0.5);
}
.jtjj_section4_item:nth-of-type(5) .jtjj_section4_item_content{
	background-color: rgba(255, 103, 31, 0.5);
}
.jtjj_section4_item:hover .jtjj_section4_item_content_txt2{
	transform: translateY(0);  opacity: 1; visibility: visible;
}
.jtjj_section4_item:nth-of-type(1):hover .jtjj_section4_item_content{
	background: rgba(22, 119, 256, 1);
}
.jtjj_section4_item:nth-of-type(2):hover .jtjj_section4_item_content{
	background: rgba(155, 38, 182, 1);
}
.jtjj_section4_item:nth-of-type(3):hover .jtjj_section4_item_content{
	background: rgba(0, 169, 206, 1);
}
.jtjj_section4_item:nth-of-type(4):hover .jtjj_section4_item_content{
	background: rgba(40, 58, 152, 1);
}
.jtjj_section4_item:nth-of-type(5):hover .jtjj_section4_item_content{
	background: rgba(255, 103, 31, 1);
}

.jtry_top{
	display: flex; align-items: center;
}
.jtry_title{
	position: relative;
}
.jtry_title:after{
	position: absolute; left: 0; bottom: 0;
	width: 84px; height: 84px; box-sizing: border-box;
	border: 15px solid rgba(224, 237, 250, 0.6);
	background-color: #fff; content: '';
	border-radius: 50%;
}
.jtry_title_txt1{
	padding-left: 35px;
	position: relative; z-index: 1;
	font-size: 38px; color: #333; line-height: 65px;
	font-style: italic;
}
.jtry_content{
	width: 0; flex: 1; margin-left: 100px;
	font-size: 16px; color: #666; line-height: 30px;
}
.jtry_list{
	display: flex; flex-wrap: wrap;
	margin-left: -20px; margin-top: 55px;
}
.jtry_item{
	width: 285px; box-sizing: border-box;
	padding: 10px;
	background-color: #fff; box-shadow: 0 0 12px 1px rgba(147, 152, 192, 0.3);
	margin-left: 20px; margin-top: 20px;
	/*cursor: pointer;*/
}
.jtry_item:hover {
	box-shadow: 0 0 20px 1px rgba(147, 152, 192, 0.3);
	transform: translateY(-3px);
}
.jtry_item_pic{
}
.jtry_item_pic:after{
	content: ''; padding-top: 67.9245283018868%;
	display: block;
}
.jtry_item_txt1{
	font-size: 16px; color: #333; line-height: 25px;
	text-align: center; height: 50px;
	padding: 20px 0;
}




.jtwh_txt1{
	font-size: 32px; color: #333; line-height: 50px;
}
.jtwh_item_txt1{
	font-size: 24px; color: #2b3990; line-height: 40px;
}
.jtwh_item_txts{
	margin-top: 5px;
}
.jtwh_item_txt2{
	font-size: 14px; color: #666; line-height: 25px;
}
.jtwh_section1{
	padding-bottom: 70px;
}
.jtwh_section1_left{
	width: 705px; height: 420px;
}
.jtwh_section1_left img{
	display: block; width: 100%; height: auto;
}
.jtwh_section1_right{
	width: 495px; height: 420px;
	background-color: #f7f7f7;
	display: flex; justify-content: center; flex-direction: column; box-sizing: border-box;
	padding: 0 95px;
}
.jtwh_section1_right .jtwh_content{
	margin-top: 30px;
}
.jtwh_section1_right .jtwh_item+.jtwh_item{
	margin-top: 30px;
}
.jtwh_section2{
	background-color: #f7f7f7;
	padding-top: 60px; padding-bottom: 65px;
}
.jtwh_section2 .jtwh_content{
	margin-top: 20px;
}
.jtwh_section2 .jtwh_items{
	display: flex; flex-wrap: wrap;
}
.jtwh_section2 .jtwh_item{
	width: 50%; margin-top: 20px;
}
.jtwh_section3{
	padding-top: 70px;
}
.jtwh_section3_items{
	display: flex; margin-left: -20px;
}
.jtwh_section3_item{
	width: 590px; margin-left: 20px;
}
.jtwh_section3_item_pic{
	padding-top: 61.0169491525424%;
}
.jtwh_section3_item_content{
	padding-top: 24px;
}
.jtwh_section3_item_txt1{
	font-size: 32px; color: #333; line-height: 50px;
}
.jtwh_section3_item_txt2{
	font-size: 16px; color: #666; line-height: 30px;
	margin-top: 15px;
}



.lxwm_top{
	display: flex;
}
.lxwm_map{
	width: 610px; position: relative;
}
.lxwm_map_pic{
	display: block; width: 100%; height: auto;
}

.lxwm_map_position{
	position: absolute; left: 0; top: 0; cursor: pointer;
}
.lxwm_map_position_flag{
	font-size: 20px; color: #69778c; line-height: 20px;
}
.lxwm_map_position_txt1{
	font-size: 16px; color: #69778c; line-height: 20px;
}
.lxwm_map_position1 .lxwm_map_position_flag{
	float: right; margin-left: 2px;
}
.lxwm_map_position1 .lxwm_map_position_txt1{
	float: left;
}
.lxwm_map_position2 .lxwm_map_position_txt1{
	float: right; margin-left: 2px;
}
.lxwm_map_position2 .lxwm_map_position_flag{
	float: left;
}
.lxwm_map_position:hover,
.lxwm_map_position.active{
	transform: translateY(-3px);
}
.lxwm_map_position:hover .lxwm_map_position_flag,
.lxwm_map_position.active .lxwm_map_position_flag{
	color: #2b3990;
}
.lxwm_map_position:hover .lxwm_map_position_txt1,
.lxwm_map_position.active .lxwm_map_position_txt1{
	color: #2b3990;
}
.lxwm_map_position001{
	left: 55.7377049180328%; top: 28%;
}
.lxwm_map_position002{
	left: 68%; top: 31%;
}
.lxwm_map_position003{
	left: 59%; top: 34%;
}
.lxwm_map_position004{
	left: 75%; top: 35%;
}
.lxwm_map_position005{
	left: 49%; top: 41%;
}
.lxwm_map_position006{
	left: 58%; top: 40%;
}
.lxwm_map_position007{
	left: 44%; top: 47%;
}
.lxwm_map_position008{
	left: 47%; top: 51%;
}
.lxwm_map_position009{
	left: 58%; top: 48%;
}
.lxwm_map_position0010{
	left: 67%; top: 44%;
}
.lxwm_map_position0011{
	left: 74%; top: 46%;
}
.lxwm_map_position0012{
	left: 75%; top: 49%;
}
.lxwm_map_position0013{
	left: 73%; top: 53%;
}
.lxwm_map_position0014{
	left: 46%; top: 56%;
}
.lxwm_map_position0015{
	left: 56%; top: 54%;
}
.lxwm_map_position0016{
	left: 56%; top: 61%;
}
.lxwm_map_position0017{
	    left: 66%;
    top: 49%;
}
.lxwm_map_position0018{
	    left: 68%;
    top: 46%;
}
.lxwm_map_position0019{
    left: 66%;
    top: 52%;
}
.lxwm_map_position0020{
    left: 73%;
    top: 27%;
}


.lxwm_top_main{
	margin-left: auto;
}
.lxwm_top_content{
	margin-top: 135px;
	width: 500px;
	box-sizing: border-box;
	margin-left: auto; border-radius: 4px;
	border: 1px solid #8aa4cc;
	padding: 15px 40px;
	display: none;
}
.lxwm_top_content.show{
	display: block;
}
.lxwm_top_content_header{
	display: flex; align-items: center;
	border-bottom: 1px solid #8AA4CC;
}
.lxwm_top_content_main{
	padding: 20px 0;
}
.lxwm_top_content_header_txt1{
	font-size: 24px; color: #333; line-height: 55px;
}
.lxwm_top_content_header_txt2{
	margin-left: auto;
	font-size: 14px; color: #2b3990; line-height: 55px;
}
.lxwm_top_content_header_txt2:hover {
	color: #3a6dbd;
}
.lxwm_top_content_main_txt1{
	font-size: 14px; color: #666; line-height: 25px;
}
.lxwm_top_content_main_txt1+.lxwm_top_content_main_txt1{
	margin-top: 5px;
}
.lxwm_sub{
	/*margin-top: 55px;*/
}
.lxwm_sub_txt1{
	font-size: 36px; color: #333; line-height: 50px;
	text-align: center;
}
.lxwm_list{
	display: flex; flex-wrap: wrap;
	margin-left: -30px; margin-top: 25px;
}
.lxwm_item{
	width: 380px; box-sizing: border-box;
	border: 1px solid #e6e6e6; margin-left: 30px; margin-top: 30px;
}
.lxwm_item_header{
	padding: 0 20px;
	background-color: #f7f8fa;
}
.lxwm_item_txt1{
	font-size: 16px; color: #333; line-height: 40px;
}
.lxwm_item_content{
	padding: 15px 20px;
}
.lxwm_item_txt2{
	font-size: 14px; color: #666; line-height: 25px;
}



.mtbd_list{
	display: flex; flex-wrap: wrap; margin-left: -30px; margin-top: -20px;
}
.mtbd_item{
	width: 380px; margin-left: 30px; margin-top: 20px;
}
.mtbd_item:hover{
	transform: translateY(-3px); box-shadow: 0 0 12px 1px rgba(147, 152, 192, 0.3);
}
.mtbd_item_pic{

}
.mtbd_item_pic:after{
	content: ''; display: block; padding-top: 63.1578947368421%;
}
.mtbd_item_content{
	text-align: center; padding: 12px 0;
}
.mtbd_item_txt1{
	font-size: 16px; color: #333; line-height: 30px;
}





.news{
	padding-top: 60px; padding-bottom: 30px;
}
.news_left{
	width: 870px;
}
.news_right{
	width: 280px;
	padding-bottom: 60px;
}
.news_list{
	margin-top: -35px;
}
.news_item{
	display: flex; padding: 35px 0;
	border-bottom: 1px solid #e5e5e5;
}
.news_item:hover .news_item_txt1{
	color: #2b3990;
}
.news_item_pic{
	width: 284px; height: 180px;
}
.news_item_content{
	width: 0; flex: 1; margin-left: 30px;
	display: flex; flex-direction: column;
	padding-top: 5px;
}
.news_item_txt1{
	font-size: 20px; color: #333; line-height: 30px;
}
.news_item_txt2{
	font-size: 14px; color: #666; line-height: 25px;
	margin-top: 15px;
}
.news_item_txt3{
	font-size: 14px; color: #999; line-height: 25px;
	margin-top: auto;
}

.news_search{
	display: flex;
	border: 1px solid #e0e0e0;
	border-radius: 6px;
	overflow: hidden;
}
.news_search_input{
	display: block; border: none;
	font-size: 14px; color: #333; line-height: 26px;
	padding: 7px 15px;
	flex: 1; width: 0;
}
.news_search_btn{
	font-size: 18px; color: #fff; line-height: 40px;
	background-color: #2b3990;
	width: 50px;
	text-align: center; cursor: pointer;
}
.news_right_section{
	margin-top: 30px;
}
.news_right_txt1{
	font-size: 16px; color: #333; line-height: 30px;
	font-weight: 700;
}
.news_right_section_content{
	padding-top: 20px;
	margin-top: 10px; border-top: 1px solid #e5e5e5 ;
}
.news_right_tags{
	display: flex; flex-wrap: wrap;
	margin-left: -10px; margin-top: -10px;
}
.news_right_tag{
	font-size: 14px; color: #888; line-height: 28px;
	padding: 0 14px;
	border: 1px solid #e0e0e0; border-radius: 2px;
	margin-left: 10px; margin-top: 10px;
}
.news_right_tag:hover{
	border-color: #2b3990; color: #2b3990;
}
.news_right_item{
	display: flex;
}
.news_right_item+.news_right_item{
	margin-top: 30px;
}
.news_right_item_pic{
	width: 110px; height: 70px;
}
.news_right_item_content{
	width: 0; flex: 1; margin-left: 10px;
	display: flex; flex-direction: column;
}
.news_right_item_txt1{
	font-size: 16px; color: #333; line-height: 24px;
}
.news_right_item_txt2{
	font-size: 14px; color: #999; line-height: 20px;
	margin-top: auto;
}
.news_right_item:hover .news_right_item_txt1{
	color: #2b3990;
}




.news_title{
	font-size: 28px; color: #333; line-height: 40px;
}
.news_date{
	font-size: 14px; color: #999; line-height: 25px;
	margin-top: 15px;
}
.news_content{
	margin-top: 30px;
	padding-bottom: 20px;
	border-bottom: 1px solid #e5e5e5;
}



.fwbz_section{
	padding-top: 60px;
	padding-bottom: 60px;
}
.fwbz_title{
	text-align: center;
}
.fwbz_title_txt1{
	font-size: 32px; color: #333; line-height: 50px;
}
.fwbz_title_txt2{
	font-size: 16px; color: #333; line-height: 30px;
	margin-top: 10px;
}
.fwbz_title.white .fwbz_title_txt1{
	color: #fff;
}
.fwbz_title.white .fwbz_title_txt2{
	color: #fff;
}
.fwbz_section1{
	padding-top: 70px;
}
.fwbz_section1_list{
	display: flex; flex-wrap: wrap; justify-content: space-between;
}
.fwbz_section1_item{
	width: 260px; display: flex; flex-direction: column; align-items: center;
}
.fwbz_section1_item_pic{
	width: 136px; height: 136px;
}
.fwbz_section1_item_txt1{
	font-size: 16px; color: #666; line-height: 30px;
	margin-top: 25px;
}
.fwbz_section1_content{
	margin-top: 40px;
}
.fwbz_section2{
	background-color: #2b3990;
	position: relative;
}
.fwbz_section2::after{
	position: absolute; left: 0; bottom: 0;
	width: 100%; height: 220px;
	content: '';
	background: url(../images/fwbz_section2_bg.png) no-repeat center center / cover;
}
.fwbz_section2_content{
	margin-top: 24px;
	position: relative; z-index: 1;
}
.fwbz_section2_swtichs{
	border-bottom: 1px solid rgba(235,235,235,0.15);
}
.fwbz_section2_swtichs .w1200{
	display: flex;
}
.fwbz_section2_swtich{
	cursor: pointer;
	display: flex; padding: 16px 0;
	width: 25%; opacity: 0.7; justify-content: center; position: relative;
}
.fwbz_section2_swtich:after{
	position: absolute; left: 50%; transform: translateX(-50%);
	width: 176px; height: 2px; background-color: #fff;
	bottom: 0; content: ''; display: none;
}
.fwbz_section2_swtich_icon{
	width: 30px; height: 30px;
}
.fwbz_section2_swtich_txt1{
	font-size: 18px; color: #fff; line-height: 30px;
	margin-left: 15px;
}
.fwbz_section2_swtich:hover,
.fwbz_section2_swtich.active{
	opacity: 1;
}
.fwbz_section2_swtich.active:after{
	display: block;
}
.fwbz_section2_mains{
	margin-top: 40px;
}
.fwbz_section2_main{
	display: none;
}
.fwbz_section2_main.show{
	display: block;
}
.fwbz_section2_main .w1200{
	background-color: #fff;
	padding: 65px 70px 65px 0;
	box-sizing: border-box;
	display: flex; align-items: center;
}
.fwbz_section2_main_left{
	width: 700px; box-sizing: border-box;
	padding-left: 125px; padding-right: 110px;
}
.fwbz_section2_main_left_txt1{
	font-size: 20px; color: #333; line-height: 30px;
}
.fwbz_section2_main_left_line{
	width: 30px; height: 2px; background-color: #2b3990;
	margin-top: 25px;
}
.fwbz_section2_main_left_txt2{
	font-size: 16px; color: #666; line-height: 30px;
	margin-top: 15px;
}
.fwbz_section2_main_right{
	width: 430px; margin-left: auto;
}
.fwbz_section3_content{
	display: flex; align-items: center;
	margin-top: 45px;
}
.fwbz_section3_content_left{
	width: 490px; height: 460px;
}
.fwbz_section3_content_right{
	width: 660px; margin-left: auto;
}
.fwbz_section3_content_right_txt1{
	font-size: 16px; color: #666; line-height: 25px;
}
.fwbz_section3_content_right_txt1+.fwbz_section3_content_right_txt1{
	margin-top: 10px;
}





.mgsjs{
	padding-top: 80px; padding-bottom: 80px;
}
.mgsjs_left{
	width: 545px;
	background: url(../images/mgsjs_left_pic.jpg) no-repeat center center / cover;
}
.mgsjs_left:after{
	content: ''; display: block; padding-top: 88.8073394495413%;
}
.mgsjs_right{
	width: 580px;
}
.mgsjs_right_txt1{
	font-size: 32px; color: #333; line-height: 50px;
}
.mgsjs_right_line{
	width: 58px; height: 1px;
	background-color: #2b3990;
	margin-top: 20px;
}
.mgsjs_right_content{
	margin-top: 30px;
}
.mgsjs_right_content_txt1{
	font-size: 16px; color: #666; line-height: 30px;
}
.mgsjs_right_content_txt1+.mgsjs_right_content_txt1{
	margin-top: 20px;
}



.job{
	padding-top: 40px; padding-bottom: 60px;
}
.job_list{
	margin-top: 40px;
}
.job_item{
	position: relative;
}
.job_item1 .job_item_l{
	float: left;
}
.job_item1 .job_item_content{
	right: 0;
}
.job_item2 .job_item_l{
	float: right;
}
.job_item2 .job_item_content{
	left: 0;
}


.job_item_l{
	width: 50%;
}
.job_item_pic_wrapper{
	padding-top: 66.66666666666667%; position: relative;
}
.job_item_pic{
	position: absolute; left: 0; top: 0; width: 100%; height: 100%;
}

.job_item_content{
	position: absolute; top: 0;
	width: 50%; box-sizing: border-box;
	padding-left: 110px;
	padding-right: 110px; height: 100%;
}
.job_item_table{
	display: table; height: 100%;
}
.job_item_cell{
	display: table-cell; vertical-align: middle;
}
.job_item_txt1{
	font-size: 26px; color: #333; line-height: 40px;
}
.job_item_metas_wrapper{
	margin-top: 20px;
}
.job_item_metas{
	margin-left: -10px; margin-top: -10px;
}
.job_item_meta{
	font-size: 18px; color: #666; line-height: 32px;
	border: 1px solid #ccc;
	padding: 0 12px; margin-left: 10px; margin-top: 10px;
}


.content{
	padding-top: 70px; padding-bottom: 70px;
}
.content_txt1{
	font-size: 16px; color: #666; line-height: 30px;
}
.content_txt1+.content_txt1{
	margin-top: 15px;
}
.content img{
	display: inline-block; width: auto; max-width: 100%; height: auto;
}

.dywxq_main{
	margin-left: -15px; margin-top: 45px;
}
.dywxq_main_item{
	width: 390px; margin-left: 15px;
}
.dywxq_main_item img{
	display: block; width: 100%; height: auto;
}
.dywxq_txt1{
	font-size: 32px; color: #333; line-height: 60px; margin-top: 40px; margin-bottom: 25px;
}



.ywjs_item{
	display: block;
	padding-top: 90px;
	padding-bottom: 80px;
}
.ywjs_item:hover {
	background-color: #f7f7f7;
}
.ywjs_item_header{
	display: flex;
}
.ywjs_item_txt1{
	font-size: 32px; color: #333; line-height: 50px;
	font-style: italic;
	width: 230px;
}
.ywjs_item_content{
	flex: 1; width: 0; margin-left: 35px;
}
.ywjs_item_txt2{
	font-size: 16px; color: #666; line-height: 25px;
}
.ywjs_item_icon{
	font-size: 20px; color: #2a2e2e; line-height: 40px;
	margin-top: 10px;
}
.ywjs_item_pic{
	margin-top: 35px;
}
.ywjs_item_pic:after{
	content: ''; display: block; padding-top: 37.0833333333333%;
}





.cgal{
	padding-bottom: 80px;
}
.cgal_title{
	text-align: center;
	padding-top: 70px;
	padding-bottom: 30px;
}
.cgal_title_txt1{
	font-size: 32px; color: #333; line-height: 50px;
}

.cgal_cates_wrapper{
	overflow-x: auto;
	overflow-y: hidden;
}
.cgal_cate_list{
	display: flex; align-items: center; flex-wrap: nowrap;
	padding: 0 30px;
	border-bottom: 1px solid #e3e9f1;
}
.cgal_cate_item{
	padding: 15px 0; margin: 0 50px; position: relative;
	cursor: pointer;
}
.cgal_cate_item:after{
	position: absolute; left: 0; bottom: 0;
	width: 100%; height: 4px;
	content: '';
	background: #2b3990;
	display: none;
}

.cgal_cate_item.active::after{
	display: block;
}
.cgal_cate_item.active .cgal_cate_item_txt1{
	font-size: 24px; opacity: 1;
}
.cgal_cate_item_txt1{
	font-size: 20px; color: #061832; line-height: 40px;
	opacity: 0.8;
	white-space: nowrap;
}
.cgal_cate_item_txt1:hover{
	opacity: 1;
}
.cgal_cate_contents{
	margin-top: 50px;
}
.cgal_cate_content{
	display: none;
}
.cgal_cate_content.active{
	display: block;
}
.cgal_cate_content_pic{
	width: 554px; height: auto;
	border-radius: 6px;
	margin-right: 50px; margin-bottom: 30px;
}


.cgal_cate_content_txts{
	padding-top: 8px;
}
.cgal_cate_content_txt1{
	font-size: 26px; color: #061832; line-height: 40px;
}
.cgal_cate_content_txt2 {
	font-size: 16px; color: #061832; line-height: 26px;
	margin-top: 15px; opacity: 0.8;
}

.cgal_sec2_list{
	display: flex; flex-wrap: wrap;
	margin-left: -25px;
	margin-top: -38px;
}
.cgal_sec2_item{
	width: 220px; margin-left: 25px;
	margin-top: 38px;
	box-sizing: border-box;
	border-right: 1px solid #dee6f3;
	border-bottom: 1px solid #dee6f3;
	border-radius: 4px;
	box-shadow: 3px 3px 5px rgba(0,0,0,0.1);
}
.cgal_sec2_item:after{
	content: ''; display: block; padding-top: 50%;
}




.ptjj_section1{
	display: flex;
}
.ptjj_section1_left{
	width: 550px; height: 400px;
}
.ptjj_section1_left img{
	display: block; width: 100%; height: auto;
}
.ptjj_section1_right{
	width: 650px; height: 400px;
	background-color: #f7f7f7;
	box-sizing: border-box;
	padding: 10px 60px;
	display: flex; flex-direction: column;
	align-items: center; justify-content: center;
}
.ptjj_section1_right_txt1{
	font-size: 16px; color: #333; line-height: 30px;
}
.ptjj_section1_right_txt1+.ptjj_section1_right_txt1{
	margin-top: 20px;
}
.ptjj_section2_list{
	display: flex;
}
.ptjj_section2_item{
	width: 33.3333333%;
	box-sizing: border-box; padding: 70px 50px;
	display: flex; flex-direction: column; align-items: center;
}
.ptjj_section2_item_header{
	display: flex; align-items: center;
	height: 85px;
}
.ptjj_section2_item_header_txt1{
	font-size: 78px; color: #333;
}
.ptjj_section2_item_header_txt2{
	font-size: 16px; color: #333; margin-top: 20px; margin-left: 20px;
}
.ptjj_section2_item_txt1{
	font-size: 14px; color: #666; line-height: 30px;
	text-align: center;
}



.ysdxjtjj_section{
	padding-bottom: 70px;
}
.ysdxjtjj_section1{
	/* background-color: #f7f7f7; */

}
.ysdxjtjj_title{
	padding: 50px 0;
}
.ysdxjtjj_title_txt1{
	font-size: 32px; color: #333; line-height: 50px;
	text-align: center;
}



.ysdxjtjj_title_txt2{
	font-size: 18px; color: #666; line-height: 30px;
	text-align: center;
	margin-top: 10px;
}
.ysdxjtjj_title_txt2 span{
	color: #ff0000;
}

.ysdxjtjj_section1_1{
	background-color: #f7fafd;

}

.ysdxjtjj_section1_1_list{
	display: flex;
}
.ysdxjtjj_section1_1_item{
	width: 380px;
	margin-left: 30px;
	background-color: #fff;
	border-radius: 12px;
	text-align: center; box-sizing: border-box;
	padding: 30px 30px 46px;
}
.ysdxjtjj_section1_1_item_icon{
	width: 100px; height: 100px;
	margin-bottom: 10px;
}
.ysdxjtjj_section1_1_item_txt1{
	font-size: 24px; color: #333; line-height: 40px;
	margin-bottom: 20px;
}
.ysdxjtjj_section1_1_item_txt2{
	font-size: 16px; color: #666; line-height: 25px;
}
.ysdxjtjj_section1_1_item_txt2+.ysdxjtjj_section1_1_item_txt2{
	margin-top: 5px;
}
.ysdxjtjj_section1_2_content{
	display: flex;
}
.ysdxjtjj_section1_2_content_left{
	width: 900px;

}
.ysdxjtjj_section1_2_content_left_swiper{
	position: relative;
	padding-top: 58.8888888888889%;
}
.ysdxjtjj_section1_2_content_left_swiper .swiper-container{
	width: 100%; height: 100%;
	position: absolute; left: 0; top: 0;
}


.ysdxjtjj_section1_2_item{
	width: 100%; height: 100%;
	position: relative;
	border-radius: 12px;
	overflow: hidden;
}
.ysdxjtjj_section1_2_item_pic{
	width: 100%; height: 100%;
}
.ysdxjtjj_section1_2_item_footer{
	position: absolute; left: 0; bottom: 0;
	width: 100%;
	box-sizing: border-box;
	z-index: 1;
	background: rgba(0,0,0,0.1);
	padding: 0 15px;
}
.ysdxjtjj_section1_2_item_txt1{
	font-size: 16px; color: #fff; line-height: 64px;
}
.ysdxjtjj_section1_2_content_right{
	width: 230px; margin-left: auto;
}

.ysdxjtjj_section1_2_content_right_pagi{
	background: #f3f3f3; border-radius: 8px;
	font-size: 30px; color: #9b9b9b; line-height: 45px;
	text-align: center; cursor: pointer;
	transition: all .2s ease;
}
.ysdxjtjj_section1_2_content_right_pagi:hover {
	color: #fff; background: #0279fd;
}
.ysdxjtjj_section1_2_content_right_swiper{
	height: 424px; margin: 8px 0;
}
.ysdxjtjj_section1_2_content_right_swiper .swiper-container{
	height: 100%;
}
.ysdxjtjj_section1_2_content_right_swiper_item{
	height: 136px; border-radius: 8px;
}
.ysdxjtjj_section1_3_list{
	display: flex; margin-left: -24px;
}
.ysdxjtjj_section1_3_item{
	width: 384px; height: 510px;
	position: relative; overflow: hidden;
	border-radius: 14px;
	margin-left: 24px;
}
.ysdxjtjj_section1_3_item_content{
	position: absolute; left: 0; top: 0;
	width: 100%; height: 100%; box-sizing: border-box;
	z-index: 1;
	padding: 56px 40px;
}
.ysdxjtjj_section1_3_item_content_txt1{
	font-size: 28px; color: #fff; line-height: 40px;
}
.ysdxjtjj_section1_3_item_content_txt2{
	font-size: 16px; color: #fff; line-height: 26px;
	margin-top: 4px;
}
.ysdxjtjj_section1_3_item_mask{
	position: absolute; left: 0; top: 0;
	width: 100%; height: 100%; box-sizing: border-box;
	z-index: 2;
	padding: 56px 40px;
	background: rgba(21, 119, 255, 0.8);
	display: flex; justify-content: center; flex-direction: column;
	visibility: hidden; opacity: 0;
}
.ysdxjtjj_section1_3_item_mask_txt1{
	font-size: 16px; color: #fff; line-height: 28px;
}
.ysdxjtjj_section1_3_item_mask_txt1+.ysdxjtjj_section1_3_item_mask_txt1{
	margin-top: 10px;
}
.ysdxjtjj_section1_3_item:hover .ysdxjtjj_section1_3_item_mask{
	opacity: 1; visibility: visible;
}





.ysdxjtjj_section1_left{
	width: 720px; height: 440px;
}
.ysdxjtjj_section1_blocks{
	width: 100%; height: 100%;
}
.ysdxjtjj_section1_block{
	width: 100%; height: 100%;
	display: none;
}
.ysdxjtjj_section1_block.show{
	display: block;
}
.ysdxjtjj_section1_block_content{
	width: 100%; height: 100%;
	display: flex;justify-content: center; flex-direction: column;
	padding: 0 84px;
	box-sizing: border-box;
}
.ysdxjtjj_section1_block_header{
	display: flex;
}
.ysdxjtjj_section1_block_header_icon{
	font-size: 28px; color: #fff; line-height: 50px;
}
.ysdxjtjj_section1_block_header_txt1{
	font-size: 22px; color: #fff; line-height: 50px;
	margin-left: 15px;
}
.ysdxjtjj_section1_block_txt1{
	font-size: 14px; color: #fff; line-height: 25px;
	margin-top: 10px;
}
.ysdxjtjj_section1_right{
	width: 430px;
}
.ysdxjtjj_section1_cell{
	padding: 20px 40px 20px 45px;
}
.ysdxjtjj_section1_cell+.ysdxjtjj_section1_cell{
	margin-top: 20px;
}
.ysdxjtjj_section1_cell_header{
	display: flex; align-items: center;
}
.ysdxjtjj_section1_cell_header_icon{
	font-size: 24px; color: #2b3990; line-height: 30px;
}
.ysdxjtjj_section1_cell_header_txt1{
	font-size: 18px; color: #333; line-height: 30px;
	margin-left: 10px;
}
.ysdxjtjj_section1_cell_txt1{
	font-size: 12px; color: #333; line-height: 20px; opacity: 0.5;
	margin-top: 5px;
	margin-left: 40px;
}
.ysdxjtjj_section1_cell.active {
	background-color: #4995ff;
	background: linear-gradient(45deg, #1577ff, #4995ff);
}

.ysdxjtjj_section1_cell.active .ysdxjtjj_section1_cell_header_icon{
	color: #fff;
}
.ysdxjtjj_section1_cell.active .ysdxjtjj_section1_cell_header_txt1{
	color: #fff;
}
.ysdxjtjj_section1_cell.active .ysdxjtjj_section1_cell_txt1{
	color: #fff;
}
.ysdxjtjj_section2{
	background: #f7fafd;
}



.jrwm_sub_list{
	/* margin-top: 30px; */
}
.jrwm_sub_item{
	border-bottom: 1px solid #e8e8e8;
}
.jrwm_sub_item_top{
	padding: 20px 0;
}
.jrwm_sub_item_top1{
	background: #fff; padding: 15px 0;
}
.jrwm_sub_item_top1 .jrwm_sub_item_top_txt1{
	font-weight: bold; color: #333;
}
.jrwm_sub_item_top1 .jrwm_sub_item_top_txt2{
	font-weight: bold; color: #333;
}
.jrwm_sub_item_top1 .jrwm_sub_item_top_txt3{
	font-weight: bold; color: #333;
}
.jrwm_sub_item_top1 .jrwm_sub_item_top_txt4{
	font-weight: bold; color: #333;
}

.jrwm_sub_item_top_txt1{
	font-size: 16px; color: #666; line-height: 30px; width: 240px; margin-right: 60px;
}
.jrwm_sub_item_top_txt2{
	font-size: 16px; color: #666; line-height: 30px; width: 240px;
}
.jrwm_sub_item_top_txt3{
	font-size: 16px; color: #666; line-height: 30px; width: 240px;
}
.jrwm_sub_item_top_txt4{
	font-size: 16px; color: #666; line-height: 30px; width: 240px;
}
.jrwm_sub_item_top_last {
	width: 160px;
}
.jrwm_sub_item_top_icon{
	width: 10px; height: 10px; background: url(../images/jrwm_icon004.jpg) no-repeat center center / cover;
	margin-top: 10px;
}
.jrwm_sub_item_content{
	background: #fff; padding:35px 45px; display: none;
}
.jrwm_sub_item.active .jrwm_sub_item_content{
	display: block;
}
.jrwm_sub_item_content_rt_txt1{
	font-size: 16px; color: #444; line-height: 25px; font-weight: bold;
}
.jrwm_sub_item_content_rt_font{
	margin-top: 5px;
}
.jrwm_sub_item_content_rt_txt2{
	font-size: 16px; color: #666; line-height: 25px;
}
.jrwm_sub_item_content_rt_txt2+.jrwm_sub_item_content_rt_txt2{
	margin-top: 5px;
}
.jrwm_sub_item_content_rt+.jrwm_sub_item_content_rt{
	margin-top: 25px;
}
.ysdxjtjj_section3{
	/* background-color: #f7f7f7; */
}
.ysdxjtjj_section3_content img{
	width: 100%;
}



.sywjs{
	padding: 70px 0;
}
.sywjs img{
	display: block; width: 100%; height: auto;
}
.sywjs_txt1 {
    opacity: 0.8;
    font-size: 16px;
    color: #061832;
    line-height: 30px;
}

.sywjs_section_lc{
    margin-top: 60px;
    /*padding-top: 60px; padding-bottom: 60px;*/
    background-color: #fff;
}

.sywjs_section2_left .sywjs_txt1+.sywjs_txt1{
    margin-top: 5px;
}
.sywjs_section2_left .sywjs_title{
    margin-bottom: 10px;
}

.sywjs_txt1+.sywjs_txt1{
	margin-top: 16px;
}
.sywjs_section1 .sywjs_section1_pic1{
	margin-top: 55px;
}
.sywjs_section2{
	margin-top: 70px;
}
.sywjs_section2_content{
	display: flex; align-items: center;
}
.sywjs_section2_left{
	width: 490px;
}
.sywjs_title{
	font-size: 32px; color: #061832; line-height: 46px;
}
.sywjs_section2_list{
	display: flex; flex-wrap: wrap;
	margin-top: 30px;
}
.sywjs_section2_item{
	position: relative;
	margin-bottom: 30px;
	width: 150px;
	box-sizing: border-box;
	padding-left: 30px;
}
.sywjs_section2_item_icon{
	width: 20px; height: 20px;
	background: url(../images/sywjs_section2_item_icon.png) no-repeat center center / cover;
	position: absolute; left: 0; top: 50%;
	transform: translateY(-50%);
}
.sywjs_section2_item_txt1{
	font-size: 20px; color: #061832; line-height: 35px;
}
.sywjs_section2_right{
	width: 710px; position: relative;
}
.sywjs_section2_right img{
	position: absolute; left: 0; top: 0;
}
.sywjs_section2_right:after{
	display: block; content: '';
	padding-top: 52.112676056338%;
}
.sywjs_section3{
	margin-top: 60px;
}
.sywjs_section3 .sywjs_title{
	margin-bottom: 30px;
}



.yghd_item:hover{
	transform: translateY(-3px); box-shadow: 0 0 12px 1px rgba(147, 152, 192, 0.3);
}
.yghd_item:hover .yghd_item_txt1{
	color: #2b3990;
}
.yghd_list{
	margin-left: -22.5px; margin-top: -40px;
}
.yghd_item{
	width: 385px; margin-left: 22.5px; margin-top: 40px;
}
.yghd_item_pic .absPic{
	padding-top: 63.63636363636364%;
}
.yghd_item_sub{
	padding: 15px; border: 1px solid #e4e4e4; border-top: none;
}
.yghd_item_txt1{
	font-size: 18px; color: #333; line-height: 30px;
}







.ysdxjs_top_l{
	width: 210px; margin-top: 54px;
}
.ysdxjs_top_l_font{
	border: 1px solid #e1e1e1;
	border-top-left-radius: 2px; border-top-right-radius: 100px;
	border-bottom-left-radius: 100px; border-bottom-right-radius: 2px;
}
.ysdxjs_top_l_font_wrapper{
	padding: 45px 0;
}
.ysdxjs_top_txt1{
	font-size: 36px; color: #222; line-height: 45px;
}
.ysdxjs_top_txt2{
	font-size: 14px; color: #999; line-height: 25px;
}
.ysdxjs_top_r{
	width: 940px;
}

.ysdxjs_sub{
	position: relative; margin-top: 65px;
}
.ysdxjs_sub:after{
	position: absolute; left: 0; top: 0; width: 100%;
	height: 490px;
	content: '';
	background: url(/statics/images/ysdxj_bg.jpg) no-repeat center center / cover;
}
.ysdxjs_sub_content{
	position: relative; z-index: 1;
}
.ysdxjs_logo{
	width: 440px; padding: 70px 0;
}
.ysdxjs_logo img{
	display: block; width: 100%; height: auto;
}


.ysdxjs_sub_content{
	width: 1400px;
}
.ysdxjs_list{
	margin-left: -25px;
}
.ysdxjs_item{
	width: 450px; margin-left: 25px; position: relative;
}
.ysdxjs_item:hover .ysdxjs_title{
	opacity: 0; visibility: hidden;
}
.ysdxjs_item:hover .ysdxjs_item_content{
	opacity: 1; visibility: visible; background: rgba(21, 73, 154, 0.8);
}
.ysdxjs_item_pic .absPic{
	padding-top: 88.88888888888889%;
}
.ysdxjs_title{
	font-size: 28px; color: #fff; line-height: 50px;
	position: absolute; left: 50%; top: 50%;
	width: 100%; margin-left: -50%; box-sizing: border-box;
	z-index: 1; padding: 0 10px;
	margin-top: -25px;
}
.ysdxjs_item_content{
	opacity: 0; visibility: hidden;
	top: 0; left: 0;
	box-sizing: border-box; padding: 0 45px;
	position: absolute; width: 100%; height: 100%; z-index: 1;
}
.ysdxjs_item_table{
	display: table; width: 100%; height: 100%;
}
.ysdxjs_item_main{
	display: table-cell; vertical-align: middle;
}
.ysdxjs_item_txt1{
	font-size: 28px; color: #fff; line-height: 50px;
}
.ysdxjs_item_line{
	width: 40px; height: 4px; background: #fff; opacity: 0.8;
	margin-top: 15px;
}
.ysdxjs_item_txt2{
	margin-top: 15px;
	font-size: 16px; color: #fff; line-height: 30px;
}


.ysdxjs_sub_main{
	margin-top: 55px;
}
.ysdxjs_sub_main_txt1{
	font-size: 36px; color: #222; line-height: 65px;
	margin-bottom: 54px;
}
.ysdxjs_sub_main  img{
     display: block;
    width: 100%;
    height: auto;
}



.hzrk_form{
	width: 670px;
	padding-top: 70px; padding-bottom: 70px;
}
.hzrk_form_item{
	position: relative;
	box-sizing: border-box;
	padding-left: 150px;
}
.hzrk_form_item.hzrk_form_item_require .hzrk_form_item_label:after{
	content: '*'; font-size: 14px; color: #e30000; line-height: 1;
}
.hzrk_form_item.hzrk_form_item_select .hzrk_form_item_inputbox_input{
	margin-right: 10px;
}
.hzrk_form_item+.hzrk_form_item{
	margin-top: 24px;
}
.hzrk_form_item_label{
	font-size: 14px; color: #333; line-height: 40px;
	font-weight: 500;
	width: 130px;
	position: absolute; left: 0; top: 0;
	display: flex; align-items: center; justify-content: flex-end;
	font-weight: 500;
}
.hzrk_form_item_inputbox{
	display: flex;
}
.hzrk_form_item_btn{
	font-size: 14px; color: #fff; line-height: 40px;
	text-align: center;
	width: 154px;
	margin-left: 6px;
	background: #2b3990; border-radius: 2px;
	cursor: pointer;
}
.hzrk_form_item_btn:hover {
	background: #3f8cf7;
}
.hzrk_form_item_inputbox_input{
	flex: 1;
	font-size: 14px; color: #333; line-height: 20px;
	padding: 9px 19px;
	border: 1px solid #ddd;
	display: block; width: 100%;
	box-sizing: border-box;
}
.hzrk_form_btn{
	width: 260px; margin-top: 60px;
	font-size: 14px; color: #fff; line-height: 46px;
	background: #2b3990; text-align: center;
	cursor: pointer; border-radius: 2px;
	border-radius: 99999999px;
}
.hzrk_form_btn:hover {
	background: #3f8cf7;
}


.cmcx{
	padding-top: 60px;
	background-color: #f8f8f8;
}
.scmcx_txt1{
	font-size: 30px; color: #333; line-height: 50px;
}
.scmcx_content{
	background-color: #fff;
	padding-left: 35px;
	padding-top: 30px;
	padding-bottom: 100px;
	padding-right: 35px;
	margin-top: 30px;
}
.scmcx_content_l{

}
.scmcx_inputbox_label{
	font-size: 18px; color: #333; line-height: 40px;
	text-align: right;
	width: 120px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.scmcx_inputbox_label:after{
    content: '*'; font-size: 18px;
    line-height: 1.2;
    color: #f00; margin-left: 10px;
    display: block;
}
.scmcx_inputbox_content{
	margin-left: 20px; width: 346px;
}
.scmcx_inputbox_input{
	border-radius: 3px;
	font-size: 16px; color: #333; line-height: 20px;
	border: 1px solid #ccc;
	width: 100%; box-sizing: border-box;
	padding: 9px;
}
.scmcx_inputbox+.scmcx_inputbox{
	margin-top: 30px;
}
.scmcx_content_r{
	width: 530px;
}
.scmcx_content_r_txt1{
	font-size: 24px; color: #666; line-height: 40px;
	font-weight: 900;
}
.scmcx_content_r_txt2{
	font-size: 16px; color: #666; line-height: 25px;
	margin-top: 11px;
}
.scmcx_form_btn{
	font-size: 18px; color: #fff; line-height: 44px;
	text-align: center;
	width: 170px;
	border-radius: 5px;
	margin-top: 40px; margin-left: 140px;
	background-color: #2b3990;
	cursor: pointer;
}
.scmcx_txt2{
	font-size: 16px; color: #333; line-height: 30px;
	margin-top: 20px;
}




.gywmjtzp_section1{
	padding-top: 70px;
	padding-bottom: 70px;
}
.gywmjtzp_title{
	font-size: 32px; color: #333; line-height: 50px;
	/* text-align: center; */
}
.gywmjtzp_section1_list{
	display: flex; flex-wrap: nowrap;
	margin-top: 40px;
}
.gywmjtzp_section1_item{
	flex: 1;
	display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.gywmjtzp_section1_item_icon{
	width: 100px; display: block; height: auto;
}
.gywmjtzp_section1_item_txt1{
	font-size: 20px; color: #333; line-height: 34px;
	margin-top: 15px;
}


.gywmjtzp_section2{
	background-color: #f7f9fa;
	padding-top: 60px; padding-bottom: 100px;
}
.gywmjtzp_section2_list{
	display: flex; flex-wrap: wrap;
	margin-left: -30px; margin-top: 20px;
}
.gywmjtzp_section2_item{
	width: 585px; margin-left: 30px;
	margin-top: 30px;
	box-sizing: border-box;
	background-color: #fff;
	box-shadow: 0 0 4px 1px rgba(235, 235, 235, 1);
	position: relative;
	padding: 20px 70px 20px 30px;
}
.gywmjtzp_section2_item_txt1{
	font-size: 22px; color: #333; line-height: 35px;
}
.gywmjtzp_section2_item_txt2{
	font-size: 16px; color: #2b3990; line-height: 30px;
	margin-top: 25px;
}
.gywmjtzp_section2_item_icon{
	position: absolute; width: 30px; height: auto;
	right: 25px; top: 25px;
}
.gywmjtzp_section2_emals{
	display: flex; align-items: center; justify-content: center;
	margin-top: 40px ;
}
.gywmjtzp_section2_emal{
	width: 420px; box-shadow: 0 0 4px 1px rgba(235, 235, 235, 1);
	padding: 20px;
	background-color: #fff;
	box-sizing: border-box;
	text-align: center;
	font-size: 18px; color: #2b3990; line-height: 30px;

}
.gywmjtzp_section2_emal+.gywmjtzp_section2_emal{
	margin-left: 30px;
}


.gywmjtzp_section3{
	height: 336px;
	position: relative;
	background: url(../images/gywmjtzp_section3_content_bg.jpg) no-repeat center center / cover;
}
.gywmjtzp_section3_content{
	position: absolute; right: 0; top: 0;
	width: 40%; height: 100%;
	box-sizing: border-box;
	/* background: rgba(21, 73, 154, 0.5); */
	background: url(../images/gywmjtzp_section3_contents.jpg) no-repeat center center / cover;
	display: flex;
	justify-content: center;
	flex-direction: column;
	text-align: right;

}

.gywmjtzp_section3_content_txt1{
	font-size: 32px; color: #fff; line-height: 50px;
	padding-right: 10%;
	padding-left: 10%;
}
.gywmjtzp_section3_content_txt2{
	font-size: 16px; color: #fff; line-height: 30px;
	padding-right: 10%;
	padding-left: 10%;
}

.gywmjtzp_section4{
	position: relative;
	padding-left: 50%;
}
.gywmjtzp_section4_l{
	position: absolute; width: 50%;
	z-index: 1;
	top: 0; left: 0; height: 100%;
	display: flex; align-items: center; justify-content: center;
}
.gywmjtzp_section4_l_content{
	width: 274px;
}
.gywmjtzp_section4_l_list{
	display: flex; flex-wrap: wrap;
	margin-left: -74px; margin-top: -20px;

}
.gywmjtzp_section4_l_item{
	width: 100px; height: 100px;
	display: flex; align-items: center; justify-content: center;
	border-radius: 50%;
	font-size: 18px; color: #333; line-height: 20px;
	text-align: center;
	margin-left: 74px; margin-top: 20px;
}
.gywmjtzp_section4_l_item.active{
	color: #fff;
	background-color: #4995ff;
	    background: linear-gradient(45deg, #1577ff, #4995ff);
}
.gywmjtzp_section4_r{
	padding-top: 60.4166666666667%;
	position: relative;
}



.gywmjtzp_section4_container{
	position: absolute;
	height: 100%;
	left: 0; top: 0; width: 100%;
}
.gywmjtzp_section4_container_item{
	height: 100%;
	position: relative;
}
.gywmjtzp_section4_container_item_bg{
	position: absolute; left: 0; top: 0;
	height: 100%; width: 100%;
}
.gywmjtzp_section4_container_item_content{
	position: absolute; right: 0; top: 50%; transform: translateY(-50%);
	background: rgb(22, 119, 255, 0.92);
	padding: 60px 75px 70px;
	width: 62.5%; box-sizing: border-box;
}
.gywmjtzp_section4_container_item_txt1{
	font-size: 20px; color: #fff; line-height: 40px;
	font-weight: 600;
}
.gywmjtzp_section4_container_item_line{
	height: 2px; width: 40px;
	background-color: #fff;
}
.gywmjtzp_section4_container_item_txt2{
	margin-top: 10px;
	font-size: 14px; color: #fff; line-height: 1.5;
}



.gywmjtzp_section5{
	padding-top: 70px; padding-bottom: ;
}
.gywmjtzp_section5_list{
	position: relative;
	display: flex; flex-wrap: wrap;
	margin-top: 50px;
}
.gywmjtzp_section5_item{
	position: relative;
	width: 20%;
	display: flex; align-items: center; justify-content: center;
}
.gywmjtzp_section5_item.gywmjtzp_section5_itempad{
	width: 60%;
}
.gywmjtzp_section5_item.gywmjtzp_section5_itemx{
	position: absolute; left: 20%; top: 33.33333%;
	width: 60%;
}
.gywmjtzp_section5_item.gywmjtzp_section5_itemx .gywmjtzp_section5_item_block{
	padding-top: 25%;
}
.gywmjtzp_section5_item.gywmjtzp_section5_itemx .gywmjtzp_section5_item_txt1{
	border: none; color: #333; font-size: 22px;
}
.gywmjtzp_section5_item_block{
	padding-top: 75%;
}
.gywmjtzp_section5_item_txt1{
	font-size: 18px; color: #fff; line-height: 30px;
	border: 2px solid #fff; padding: 0 10px;
	position: absolute; z-index: 1;
}
.gywmjtzp_section5_item_pic{
	position: absolute; left: 0; top: 0; width: 100%; height: 100%;
}

.gywmjtzp_section6{
	padding-top: 70px;
	padding-bottom: 50px;
}
.gywmjtzp_section6_txt1{
	font-size: 16px; color: #555; line-height: 35px;
	text-align: center;
	margin-top: 40px;
}


.gywmjtzp_section7{
	padding-bottom: 75px;
}
.gywmjtzp_section7_box{
	position: relative;
}
.gywmjtzp_section7_box_bg{
	display: block; width: 100%; height: auto;
}
.gywmjtzp_section7_content{
	position: absolute; left: 0; top: 50%; transform: translateY(-50%);
	width: 490px; height: 270px;
	display: flex; justify-content: center; flex-direction: column;
	background-color: #fff; padding-left: 40px; padding-right: 40px;
}
.gywmjtzp_section7_txt1{
	font-size: 16px; color: #666; line-height: 30px; margin-top: 15px;
}



.ebannerx .ebanner_img{
	/*height: 520px;*/
}
.ebannerx .ebanner_content_txt2{
	margin-top: 25px;
}
.zxbm{
	cursor: pointer;
}
.experience_add{
	width: 20px; height: 20px;
	margin-left: 25px;
	background-color: #cbd6e8;
	border-radius: 50%;
	position: relative;
	font-size: 0; line-height: 0;
	display: flex; align-items: center; justify-content: center;
	cursor: pointer;
}
.experience_add:after{
	position: absolute;
	content: '+'; font-size: 20px; line-height: 1; color: #2b3990;  font-weight: 900;
	top: -2px;
	left: 50%; transform: translateX(-50%);
}
.meForm_btn{
	font-size: 16px; color: #fff; line-height: 50px;
	background-color: #2b3990;
	width: 250px;
	border-radius: 4px; cursor: pointer;
	text-align: center; margin-top: 44px;
}

.meForm{
	padding: 60px 0 70px;
	background: #f8f9fb;
	display: none;
	box-sizing: border-box; height: 100%;
	overflow-x: hidden; overflow-y: auto;
}
.meForm_title{
	font-size: 32px; color: #333; line-height: 50px;
	margin-bottom: 40px;
}

.meForm_items{
	margin-left: -60px; margin-top: -20px;
	display: flex;
	flex-wrap: wrap;
}
.meForm_items+.meForm_items{
	margin-top: 0;
}
.meForm_item{
	width: 255px; margin-left: 60px; margin-top: 20px;
}
.meForm_item_label{
	font-size: 14px; color: #333; line-height: 36px;
	display: flex; align-items: center;
}
.meForm_item_label span{
	font-size: 14px; color: #ff0000; margin-left: 5px;
	display: none;
}
.meForm_item.meForm_item_require .meForm_item_label span{
	display: block;
}
.meForm_item.meForm_item_large{
	width: 570px;
}
.meForm_item.meForm_item_textarea{
	width: 100% !important;
}
.meForm_item.meForm_item_textarea .meForm_item_input{
	height: 110px;
}
.meForm_item.meForm_item_select_date {
	width: ;
}
.meForm_item_input{
	display: block; width: 100%;
		flex: 1;
		 line-height: 26px; font-size: 14px; color: #333;
		 border: none;
}

.meForm_item_inputbox{
	box-sizing: border-box;
	padding: 6px 12px;
	border: 1px solid #d8d8d8;
	background-color: #fff;
	border-radius: 4px;
	display: flex; align-items: center;
}
.meForm_item_input{

}

.select_date{
	display: flex;
}
.select_date .meForm_item_inputbox{
	flex: 1; width: 0;
}
.select_date_txt{
	font-size: 14px; color: #333; line-height: 38px;
	padding: 0 10px;
}
.meForm_items.meForm_items_sm {
	margin-left: -40px;
}
.meForm_items.meForm_items_sm .meForm_item{
	width: 250px;
	margin-left: 40px;
}


.meForm_sec{
	padding-top: 30px;
}
.meForm_sec_header{
	display: flex; align-items: center;
}
.meForm_sec_header_txt1{
	font-size: 18px; color: #333; line-height: 34px;
	font-weight: 900;
}
.meForm_sec_content{
	background-color: #fff;
	padding: 30px 40px; margin-top: 12px;
}
.experience_item+.experience_item{
	margin-top: 50px;
}
.experience_item_header{
	display: flex; align-items: center;
	margin-bottom: 15px;
}
.experience_item_txt1{
	font-size: 14px; color: #333; line-height: 24px;

}
.experience_item_txt2{
	font-size: 14px; color: #ff0000; line-height: 24px;
	margin-left: 30px;
	cursor: pointer;
}


.meForm_sec_last .meForm_sec_content{
	padding: 0; background: none;
}
.meForm_sec_last_textarea{
	display: block; width: 100%;
	box-sizing: border-box;
	padding: 6px 12px;
	border: 1px solid #d8d8d8; line-height: 26px;
	height: 130px;
	background-color: #fff;
	border-radius: 4px;
}

.upload_pic{
	display: flex; align-items: center;
}
.upload_pic_inputbox{
	width: 64px; height: 64px; border-radius: 50%;
	background-color: #b4b4b4;
	position: relative; overflow: hidden;
	cursor: pointer;
}
.upload_pic_inputbox input{
	position: absolute; width: 100%; height: 100%;
	left: 0; top: 0; opacity: 0; z-index: 1;
}
.upload_pic_pic{
	position: absolute; width: 100%; height: 100%;
	left: 0; top: 0;
}
.upload_pic_content{
	margin-left: 15px;
}
.upload_pic_txt1{
	font-size: 16px; color: #333; line-height: 24px;
}
.upload_pic_txt2{
	font-size: 14px; color: #999; line-height: 24px;
	margin-top: 4px;
}

.metols{
	display: flex;
}
.metols .meForm_item{
	margin-left: 0;
}
.metols .meForm_item+.meForm_item{
	margin-left: 20px;
}
.metols_txt1{
	font-size: 14px; color: #333; line-height: 38px;
	padding: 0 15px;
	margin-top: auto;
}

.meForm_item_inputbox_txt1{
	font-size: 14px; color: #333; line-height: 1;
}
.gywmjtzp_section8{
  padding-bottom: 20px;
}










.xyewu{
    padding-top: 36px; padding-bottom: 75px;
}

.xyewu_section_title{
    font-size: 32px; color: #333; line-height: 50px;
}
.xyewu_section_title1{
    font-size: 24px; color: #333; line-height: 40px;
}
.xyewu_section_title+.xyewu_section_txts{
    margin-top: 30px;
}
.xyewu_section_title1+.xyewu_section_txts{
    margin-top: 15px;
}
.xyewu_section_txt1{
    font-size: 16px; color: #666; line-height: 25px;
}
.xyewu_section_txt1+.xyewu_section_txt1{
    margin-top: 25px;
}
.xyewu_img{
    border-radius: 10px;
    width: 100%; height: auto; display: block;
}

.xyewu_section{
    padding-top: 44px;
}
.xyewu_section+.xyewu_section{
    margin-top: 25px;
}
.xyewu_section_content{
    margin-top: 30px;
}
.xyewu_section_content_block+.xyewu_section_content_block{
    margin-top: 25px;
}
.xyewu_section_content_items{
    display: flex; margin: 25px 0;
}
.xyewu_section_content_item{
    display: flex; flex-direction: column; align-items: center;
    background-color: #f7fafd;
    border-radius: 6px;
    padding: 10px;
    flex: 1;
}
.xyewu_section_content_item+.xyewu_section_content_item{
    margin-left: 24px;
}
.xyewu_section_content_item_txt1{
    font-size: 24px; color: #2b3990; line-height: 30px;
}
.xyewu_section_content_item_txt2{
    font-size: 14px; color: #888; line-height: 25px;
}







.xyewu_section1_left{
    width: 675px;
}
.xyewu_section1_right{
    width: 475px;
}



.xyewu_section2_list{
    display: flex; flex-wrap: wrap;
    margin-left: -25px; margin-left: -25px;
}
.xyewu_section2_item{
    width: 220px; margin-left: 25px; margin-top: 25px;
    background-color: #fff;
    display: flex; flex-direction: column;
    align-items: center;
    padding-bottom: 45px; padding-top: 45px;
    box-shadow: 0 0 20px rgba(0,0,0,0.07);
    border-radius: 6px;
}
.xyewu_section2_item_icon{
    font-size: 48px; line-height: 60px; color: #ff6600;
}
.xyewu_section2_item_txt1{
    margin-top: 0px;
    font-size: 16px; color: #666; line-height: 25px;
    text-align: center;
}




.xyewu_section3_list_3 .xyewu_section3_item{
    width: 386.333333333px;
}
.xyewu_section3_list_2 .xyewu_section3_item{
    width: 590px;
}
.xyewu_section3_list{
    display: flex; flex-wrap: wrap;
    margin-left: -20px; margin-top: -20px;
}
.xyewu_section3_item{
    width: 285px; margin-left: 20px; margin-top: 20px;
    background-color: #fff;
    box-shadow: 0 0 20px rgba(0,0,0,0.07);
    border-radius: 6px; box-sizing: border-box;
    padding: 16px 20px;
    display: flex; align-items: center;
}
.xyewu_section3_item_icon{
    width: 46px; height: 46px; border-radius: 50%;
    background-color: #f9ac34; color: #fff; line-height: 46px; font-size: 26px;
    text-align: center;
}
.xyewu_section3_item_txt1{
    color: #555; line-height: 1.5; font-size: 16px; margin-left: 20px;
}


.xyewu_section4_content{
    border-radius: 6px;
    padding: 70px; background-color: #fff;
    box-shadow: 0 0 20px rgba(0,0,0,0.07);
}
.xyewu_section4_img{
    width: 363px; float: left; margin-right: 40px; margin-bottom: 40px;
}




.xdsj{
    position: relative;
    padding-top: 40px;
    padding-bottom: 40px;
}
.xdsj_line{
    position: absolute; left: 50%;
    top: 0; width: 1px; height: 100%;
    background: #ddd;
    margin-left: -0.5px;
}
.xdsj_round{
    position: absolute; width: 30px; height: 30px;
    border-radius: 50%; box-sizing: border-box;
    left: 50%; top: 0; transform: translateX(-50%);
    border: 1px solid #ddd;
    background-color: #fff;
}
.xdsj_round:after{
    position: absolute; left: 50%; top: 50%;
    background-color: #ddd; content: '';
    width: 70%; height: 70%; transform: translate3d(-50%, -50%, 0);
    border-radius: 50%;
}
.xdsj_item{
    width: 50%;
    position: relative;
    display: flex; align-items: center;
}
.xdsj_items{
    position: relative; z-index: 10;
}

.xdsj_items:nth-of-type(2n) .xdsj_item{
    flex-direction: row-reverse;
    float: left;
    right: -14.5px;
}
.xdsj_items:nth-of-type(2n) .xdsj_item_year{
    flex-direction: row-reverse;
}
.xdsj_items:nth-of-type(2n) .xdsj_item_content{
    margin-right: 24px;
}
.xdsj_items:nth-of-type(2n) .xdsj_item_content:after{
    right: -10px;
    border-left: 10px solid #f7fafd;
}
.xdsj_items:nth-of-type(2n-1) .xdsj_item{
    float: right;
    left: -14.5px;
}
.xdsj_items:nth-of-type(2n-1) .xdsj_item_content{
    margin-left: 24px;
}
.xdsj_items:nth-of-type(2n-1) .xdsj_item_content:after{
    left: -10px;
    border-right: 10px solid #f7fafd;
}
.xdsj_item_year{
    font-size: 18px; color: #fff; line-height: 30px;
    width: 100px; min-width: 100px;
    text-align: center;
    background-color: #ff6600;
    border-radius: 98988px;
    display: flex; align-items: center;
    padding-left: 6px; padding-right: 6px;
    box-sizing: border-box;
}
.xdsj_item_year_round{
    width: 16px; height: 16px;
    border-radius: 50%; border: 4px solid #fff;
    box-sizing: border-box;
}
.xdsj_item_year_txt{
    flex: 1;
}
.xdsj_item_content{
    font-size: 16px; color: #333; line-height: 30px;
    position: relative;
    padding: 16px 20px;
    background-color: #f7fafd;
    border-radius: 6px;

}
.xdsj_item_content:after{
    content: '';
    position: absolute; top: 50%;
    transform: translateY(-50%);
    width: 0; height: 0;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
}















.drgs_sec1{
	
}
.drgs_title{
	    text-align: center;
	    padding-top: 70px;
	    padding-bottom: 30px;
		    font-size: 32px;
		    color: #333;
		    line-height: 50px;
}
.drgs_sec1_content{
	background: #F9FAFF;
}
.drgs_sec1_swiper{
	/* width: 1400px; */
	margin: 90px auto 0;
}
.drgs_sec1_swiper .swiper-container{
	overflow: visible;
}

.drgs_sec1_swiper .swiper-container-horizontal>.swiper-pagination-bullets{
	bottom: 22px;
}
.drgs_sec1_swiper .swiper-pagination-bullet.swiper-pagination-bullet-active{
	background: #2b3990;
}
.drgs_sec1_swiper .swiper-pagination-bullet{
	background: #D5D5D5;
}
.drgs_sec1_swiper .swiper-button-next, 
.drgs_sec1_swiper .swiper-button-prev{
	width: 48px; height: 48px;
	margin-top: -24px;
}
.drgs_sec1_swiper .swiper-button-prev{
	background: url(../images/drgs_sec1_swiper_icon001.png) no-repeat center center / cover;
}
.drgs_sec1_swiper .swiper-button-next{
	background: url(../images/drgs_sec1_swiper_icon002.png) no-repeat center center / cover;
}
.drgs_sec1_swiper_item{
	width: 1100px;
	margin: 0 auto;
	display: flex; align-items: center;
	position: relative;
	height: 510px;
}
.drgs_sec1_swiper_item_pic{
	position: absolute; left: 0; bottom: 0;
	width: 472px;
}
.drgs_sec1_swiper_item_pic_wrapper{
	padding-top: 125.635593220339%;
}
.drgs_sec1_swiper_item_content{
	width: 540px;
	margin-left: auto;
}
.drgs_sec1_swiper_item_content_top{
	display: flex; align-items: center;
}
.drgs_sec1_swiper_item_content_top_txt1{
	font-size: 34px;
	font-weight: bold;
	color: #333333;
	line-height: 70px;
}
.drgs_sec1_swiper_item_content_top_txt2{
	font-size: 20px;
	font-weight: 500;
	color: #333333;
	line-height: 70px;
	margin-left: 30px;
}
.drgs_sec1_swiper_item_content_txt1{
	font-size: 18px;
	font-weight: 500;
	color: #333333;
	line-height: 34px; margin-top: 10px;
}
.drgs_sec1_swiper_item_content_sub{
	margin-top: 25px;
}
.drgs_sec1_swiper_item_content_sub_txt1{
	font-size: 18px; line-height: 30px; color: #333;
}
.drgs_sec1_swiper_item_content_sub_txt2{
	font-size: 16px; line-height: 30px; color: #999;
}




.drgs_sec2{
	position: relative;
	height: 500px;
}
.drgs_sec2_bg{
	height: 100%;
}
.drgs_sec2_content{
	position: absolute;
	z-index: 1;
	left: 0; top: 0; width: 100%; height: 100%;
	display: flex; flex-direction: column; justify-content: center;
	align-items: center;
}
.drgs_sec2_txt1{
	font-size: 36px;
	font-weight: bold;
	color: #FFFFFF;
	line-height: 1.5;
}
.drgs_sec2_txt2{
	font-size: 22px;
	font-weight: 500;
	color: #FFFFFF;
	line-height: 1.5;
	margin-top: 10px;
}
.drgs_sec2_txt3{
	font-size: 18px;
	font-weight: 500;
	color: #FFFFFF;
	line-height: 1.5;
	margin-top: 30px;
	cursor: pointer;
	display: inline-block;
	width: auto;
}



.drgs_sec3{
	
background: #F3F3F3;
padding-bottom: 60px;
}
.drgs_sec3_list{
	display: flex; margin-left: -42px;
}
.drgs_sec3_item{
	width: 372px; margin-left: 42px; 
	background: #fff;
}
.drgs_sec3_item_pic{
	position: relative;
	padding-top: 63.44086021505376%;
}
.drgs_sec3_item_pic_wrapper{
	position: absolute; left: 0; top: 0; width: 100%; height: 100%;
}
.drgs_sec3_item_content{
	
	padding-top: 26px; padding-bottom: 45px;
}
.drgs_sec3_item_content_txt1{
	border: 1px solid #D0D0D0;
	font-size: 16px;
	font-weight: 500;
	color: #AAAAAA;
	line-height: 30px;
	padding: 0 24px;
	display: inline-block; width: auto;
	border-left: none;
}
.drgs_sec3_item_content_txt2{
	font-size: 22px;
	font-weight: 500;
	color: #333333;
	line-height: 34px;
	margin-top: 25px;
	padding: 0 24px;
}
.drgs_sec3_btn{
	display: inline-block;
	font-size: 16px;
	font-weight: 500;
	color: #2b3990;
	line-height: 48px;
	border: 2px solid #2b3990;
	border-radius: 9999px;
	padding: 0 26px;
	margin-top: 30px;
}


.drgs_sec4{
	padding-bottom: 80px;
}
.drgs_sec4_list{
	display: flex;
	margin-left: -40px;
}
.drgs_sec4_item{
	width: 580px; 
	position: relative; margin-left: 40px;
}
.drgs_sec4_item_pic{
	padding-top: 68.96551724137931%;
	position: relative;
}
.drgs_sec4_item_content{
	position: absolute; left: 0; top: 0;
	width: 100%; height: 100%;
	box-sizing: border-box;
	padding: 45px 45px 30px;
	display: flex; flex-direction: column; align-items: flex-start;
}
.drgs_sec4_item_content_txt1{
	font-size: 32px;
	font-weight: 500;
	color: #FFFFFF;
	line-height: 1.5;
}
.drgs_sec4_item_content_txt2{
	font-size: 18px;
	font-weight: 500;
	color: #FFFFFF;
	line-height: 1.5;
	margin-top: 10px;
}
.drgs_sec4_item_content_txt3{
	margin-top: auto;
	font-size: 18px;
	font-weight: 500;
	color: #FFFFFF;
	line-height: 1.5;
	display: inline-block;
	width: auto;
}


.drgs_video{
	position: fixed; 
	z-index: 111;
	background: rgba(0,0,0,0.5);
	width: 100%; height: 100%;
	left: 0; top: 0;
	display: none;
}
.drgs_video.open{
	display: block;
}
.drgs_video video{
	position: absolute;
	width: 50%; height: 50%;
	left: 50%; top: 50%;
	transform: translate(-50%, -50%);
}
.drgs_close{
	position: absolute; right: 0; top: 0;
	width: 50px; height: 50px;
	background: #000; color: #fff; text-align: center;
	font-size: 24px; line-height: 50px;
	cursor: pointer;
}












/* 新增开始 */
.i_sec{
	padding-top: 20px;
	padding-bottom: 90px;
}
.i_sec1{
	background: #F7FAFD;
	padding-top: 90px;
}
.i_sec1_top{
	display: flex;
	flex-wrap: wrap;
}
.i_sec1_top_left{
	width: 590px;
}
.i_title{
	font-size: 38px;
	color: #333333;
	line-height: 45px;
	padding: 60px 0;
}
.i_title.white{
	color: #fff;
}
.i_sec1 .i_title{
	padding-top: 10px;
	padding-bottom: 45px;
}
.i_sec1_top_left_txt2{
	font-size: 16px;
	color: #666666;
	line-height: 26px;
}
.i_sec1_top_left_txt2+.i_sec1_top_left_txt2{
	margin-top: 15px;
}
.i_sec1_top_left_txt3{
	display: block;
	width: 132px;
	line-height: 35px;
	background: #F7FAFD;
	border: 1px solid #999999;
	border-radius: 9999px;
	font-size: 16px;
	color: #666666;
	margin-top: 40px;
	text-align: center;
}
.i_sec1_top_left_txt3:hover{
	border-color: #0044E1;
	color: #fff; background: #0044E1; 
}
.i_sec1_top_right{
	width: 530px;
	margin-left: auto;
	border-radius: 12px;
	height: 354px;
	overflow: hidden;
}
.i_sec1_sub{
	
}
.i_sec1_sub_list{
	display: flex;
	justify-content: space-between;
}
.i_sec1_sub_item{
	padding: 90px 0;
	display: flex; flex-direction: column;
	align-items: center;
}
.i_sec1_sub_item_top{
	display: flex; align-items: flex-start;
}
.i_sec1_sub_item_top_txt1{
	font-size: 60px;
	color: #FF7519;
	line-height: 1;
}
.i_sec1_sub_item_top_txt1 span{
	font-size: 60px;
	color: #333;
	line-height: 1;
}
.i_sec1_sub_item_top_txt2{
	font-size: 18px;
	color: #333333;
	line-height: 1;
	margin-left: 5px;
}
.i_sec1_sub_item_txt1{
	font-size: 16px;
	color: #333333;
	line-height: 30px;
	margin-top: 10px;
}



.i_sec2_list{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.i_sec2_item{
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 5px 0 10px;
	cursor: pointer;
}
.i_sec2_item_icon{
	width: 50px;
	height: 50px;
	background: #000;
}
.i_sec2_item_icon_active{
	display: none;
}
.i_sec2_item_txt1{
	font-size: 16px;
	color: #333333;
	line-height: 30px;
	margin-top: 5px;
}
.i_sec2_item.active .i_sec2_item_icon{
	display: none;
}
.i_sec2_item.active .i_sec2_item_icon_active{
	display: block;
}
.i_sec2_item.active .i_sec2_item_txt1{
	color: #0044E1;
}
.i_sec2_contents{
	margin-top: 5px;
}
.i_sec2_content{
	position: relative;
	height: 530px;
	overflow: hidden;
	border-radius: 12px;
	display: none;
}
.i_sec2_content.active{
	display: block;
}
.i_sec2_content_pic{
	position: absolute;
	left: 0; top: 0;
	width: 100%;
	height: 100%;
}
.i_sec2_content_box{
	position: absolute;
	left: 75px; top: 80px;
	right: auto;
	bottom: 80px;
	background: rgba(255, 117, 25, 0.9);
	border-radius: 8px;
	box-sizing: border-box;
	padding: 65px 40px 55px;
	width: 490px;
}
.i_sec2_content_box_txt1{
	font-size: 28px;
	color: #FFFFFF;
	line-height: 35px;
}
.i_sec2_content_box_txt2{
	font-size: 16px;
	color: #FFFFFF;
	line-height: 25px;
	margin-top: 40px;
}
.i_sec2_content_box_txt3{
	display: block;
	width: 132px;
	background: #FFFFFF;
	border-radius: 9999px;
	font-size: 16px;
	color: #FF7519;
	line-height: 35px;
	display: block;
	text-align: center;
	margin-top: 70px;
}
.i_sec2_content_box_txt3:hover{
	transform: translateX(10px);
}


.i_sec3{
	
}
.i_sec3_top{
	padding: 30px;
	background: url(../images/i_sec3_bg.png) no-repeat center center / cover;
	padding-bottom: 90px;
}
.zlhb_swiper{
	position: relative;
}
.zlhb_swiper .swiper-button-next, 
.zlhb_swiper .swiper-button-prev{
	width: 48px; height: 48px; cursor: pointer;
	margin-top: -24px;
}
.zlhb_swiper .swiper-button-prev{
	background: url(../images/drgs_sec1_swiper_icon001.png) no-repeat center center / cover;
	left: -80px;
}
.zlhb_swiper .swiper-button-next{
	background: url(../images/drgs_sec1_swiper_icon002.png) no-repeat center center / cover;
	right: -80px;
}
.zlhb_swiper_item{
	border-radius: 8px;
	overflow: hidden;
	display: block;
	box-shadow: 0 0 5px rgba(0,0,0,0.1);
	margin: 5px;
}
.zlhb_swiper_item_top{
	height: 236px;
	display: flex; 
	flex-direction: column;
	justify-content: center;
	padding: 0 40px;
}
.zlhb_swiper_item_top_txt1{
	font-size: 32px;
	color: #FFFFFF;
	line-height: 1;
}
.zlhb_swiper_item_top_txt2{
	font-size: 14px;
	color: #FFFFFF;
	line-height: 1;
	margin-top: 20px;
}
.zlhb_swiper_item_top_txt3{
	font-size: 14px;
	color: #FFFFFF;
	line-height: 1.5;
	margin-top: 20px;
}
.zlhb_swiper_item_sub{
	background: #fff;
	padding: 25px;
}
.zlhb_swiper_item_sub_txt1{
	font-size: 20px;
	color: #333333;
	line-height: 30px;
}
.zlhb_swiper_item_sub_txt2{
	font-size: 14px;
	color: #666666;
	line-height: 20px;
	margin-top: 15px;
}
.zlhb_swiper_item_sub_txt3{
	font-size: 14px;
	color: #999999;
	display: inline-block;
	width: auto;
	margin-top: 25px;
	line-height: 24px;
}
.i_sec3_sub{
	padding: 100px 0;
	/*background: url(../images/i_sec3_sub_bg.png) no-repeat center center / cover;*/
}
.i_sec3_sub_content{
	display: flex; flex-wrap: wrap;
}
.i_sec3_sub_left{
	width: 340px;
	border-right: 1px solid #CBD1D6;
}
.i_sec3_sub_left_txt1{
	font-size: 38px;
	color: #333333;
	line-height: 50px;
}
.i_sec3_sub_left_txt2{
	font-size: 16px;
	color: #666666;
	line-height: 24px;
	margin-top: 50px;
}
.i_sec3_sub_left_txt3{
	display: inline-block;
	width: auto;
	text-align: center;
	width: 132px;
	background: #FFFFFF;
	border: 1px solid #999999;
	border-radius: 9999px;
	font-size: 16px;
	color: #666666;
	line-height: 36px;
	margin-top: 40px;
}
.i_sec3_sub_left_txt3:hover{
	border-color: #0044E1;
	color: #fff;
	background: #0044E1;
}
.i_sec3_sub_right{
	flex: 1;
	padding-left: 150px;
}
.i_sec3_sub_list{
	display: flex;
	margin-left: -130px;
	margin-top: -60px;
	flex-wrap: wrap;
}
.i_sec3_sub_item{
	width: 290px;
	margin-left: 129px;
	margin-top: 60px;
}
.i_sec3_sub_item_top{
	position: relative;
	display: flex; 
	align-items: center;
	padding-bottom: 20px;
}
.i_sec3_sub_item_top_txt1{
	font-size: 68px;
	font-weight: bold;
	color: #333333;
	position: relative;
	z-index: 1;
	line-height: 70px;
	margin-left: -5px;
}
.i_sec3_sub_item_top_txt2{
	font-size: 28px;
	color: #333333;
	line-height: 70px;
	margin-left: 5px;
	position: relative;
	z-index: 1;
}
.i_sec3_sub_item_top_shape{
	position: absolute;
	left: 0;
	bottom: 0;
	/* width: 43px;
	height: 43px;
	background: #FF7519; */
}
.i_sec3_sub_item_top_shape1{
	width: 0; height: 0;
	border-top: 24px solid transparent;
	border-bottom: 24px solid transparent;
	border-left: 42px solid #FF7519;
}
.i_sec3_sub_item_top_shape2{
	width: 47px;
	height: 47px;
	background: #FF7519;
	border-radius: 50%;
}
.i_sec3_sub_item_top_shape3{
	width: 40px;
	height: 40px;
	background: #FF7519;
}
.i_sec3_sub_item_top_shape4{
	width: 40px;
	height: 40px;
	background: #FF7519;
	transform: rotate(45deg);
}
.i_sec3_sub_item_txt1{
	font-size: 18px;
	margin-top: 20px;
	color: #333333;
	line-height: 1;
}




.i_sec4{
	background: #F7FAFD;
}

.carousels{
	/* margin-top: 40px; */
	position: relative;
}
.carousels{
	
}
.carousel_items{
	display: flex; flex-wrap: nowrap;
	font-size: 1997px;
}
.carousel_items:nth-of-type(2n-1) {
	animation: carousel_move_to_right 60s linear infinite;
}
.carousel_items:nth-of-type(2n) {
	animation: carousel_move_to_left 50s linear infinite; 
}
.carousel_items_pic{
	width: 1997px; display: block; height: auto;
}
.carousel_items+.carousel_items{
	margin-top: 20px;
}
.carousel_item{
	display: inline-block;
	width: 220px; min-width: 220px;
	box-shadow: 1px 3px 5px rgba(0,0,0,0.1);
}
.carousel_item+.carousel_item{
	margin-left: 30px;
}
.carousel_item_pic{
	padding-top: 52.2727272727273%;
}

@keyframes carousel_move_to_right{
	0%{transform: translateX(0);}
	100%{transform: translateX(-1em);}
}
@keyframes carousel_move_to_left{
	0%{transform: translateX(-1em);}
	100%{transform: translateX(0);}
}



.footer{
	background: #e7e8ea;
	
}
.footer_content{
	padding-top: 50px;
	padding-bottom: 28px;
}
.footer_list{
	display: flex;
	justify-content: space-between;
}
.footer_item_txt1{
	font-size: 16px;
	color: #666;
	line-height: 30px;
}
.footer_item_l{
	display: flex;
	margin-top: 10px;
}
.footer_items+.footer_items{
	margin-left: 20px;
}
.footer_items_txt1{
	display: block;
	width: auto;
	font-size: 14px;
	color: #666;
	line-height: 33px;
	/*opacity: 0.5;*/
}
.footer_items_txt1:hover{
	opacity: 1;
}


.ewms{
	display: flex;
	margin-top: 16px;
}
.ewm{
	width: 88px;
}
.ewm+.ewm{
	margin-left: 35px;
}
.ewm_pic{
	border-radius: 4px;
	overflow: hidden;
}
.ewm_pic img{
	display: block;
	height: auto;
	width: 100%;
}
.ewm_txt1{
	font-size: 12px;
	color: #666;
	line-height: 36px;
	/*opacity: 0.5;*/
	text-align: center;
}
.footer_sub{
	display: flex; flex-wrap: wrap;
	border-top: 1px solid rgba(255,255,255,0.1);
	padding: 15px 0;
}
.copyright_txt1{
	font-size: 14px;
	color: #666;
	line-height: 36px;
	/*opacity: 0.5;*/
}
.footer_sub_txt1{
	font-size: 14px;
	color: #666;
	line-height: 36px;
	/*opacity: 0.5;*/
	margin-left: auto;
}



.zlhb_ebanner_content_txt1{
	font-size: 40px;
	color: #FFFFFF;
	line-height: 60px;
}
.zlhb_ebanner_list{
	display: flex;
	margin-top: 50px;
}
.zlhb_ebanner_item+.zlhb_ebanner_item{
	margin-left: 110px;
}
.zlhb_ebanner_item_txt1{
	font-size: 44px;
	color: #FFFFFF;
	line-height: 1;
}
.zlhb_ebanner_item_txt2{
	font-size: 14px;
	color: #FFFFFF;
	line-height: 1;
	margin-top: 20px;
}


.dzlhz{
	padding-top: 80px;
	padding-bottom: 90px;
}
.dzlhz_content{
	display: flex; 
	align-items: flex-start;
	flex-wrap: wrap;
}
.dzlhz_left{
	width: 850px;
}
.dzlhz_text_box img{
	display: block;
	width: 100%;
	height: auto;
}
.dzlhz_text_box+.dzlhz_text_box{
	margin-top: 45px;
}
.dzlhz_txt1{
	font-size: 26px;
	color: #333333;
	line-height: 40px;
}
.dzlhz_txt2{
	font-size: 16px;
	color: #666666;
	line-height: 26px;
	margin-top: 30px;
}
.dzlhz_txt2+img{
	margin-top: 30px;
}
.dzlhz_txt3{
	font-size: 20px;
	color: #333333;
	line-height: 30px;
	position: relative;
	padding-left: 14px;
}
.dzlhz_txt3:after{
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	content: '';
	width: 5px;
	height: 20px;	
	background: #0044E1;
}
.dzlhz_right{
	width: 295px;
	margin-left: auto;
	background: #F8F8F8;
	border-radius: 8px;
	box-sizing: border-box;
	padding: 44px 24px;
	min-height: 550px;
}

.dzlhz_right_item{
	display: flex;
}
.dzlhz_right_item_txt1{
	font-size: 14px;
	color: #999999;
	line-height: 20px;
	width: 70px;
}
.dzlhz_right_item_txt2{
	font-size: 14px;
	color: #333;
	line-height: 20px;
	flex: 1;
}
.dzlhz_right_item+.dzlhz_right_item{
	margin-top: 20px;
}



.zlhb_xgal_content{
	width: 1600px;
}




/* 新增222222222 */

.xyewu_section2_item_txt2{
	font-size: 24px;
	color: #333333;
	line-height: 60px;
}
.xyewu_section2_list_2 .xyewu_section2_item{
	width: 380px;
}
.czrs_sec{
	/*dding-top: 70px;*/
	padding-bottom: 80px;
}
.czrs_sec+.czrs_sec{
	margin-top: 0;
}


.czrs_sec2{
	background: #F2F5FA;
}
.czrs_list{
	display: flex; flex-wrap: wrap;
	margin-left: -20px; margin-top: 35px;
}
.czrs_item{
	position: relative; height: 320px;
	border-radius: 8px; overflow: hidden;
	margin-left: 20px; margin-top: 20px;
}
.czrs_item1{
	width: 475px;
	
}
.czrs_item2{
	width: 705px;
}
.czrs_item_pic{
	position: absolute; left: 0; top: 0;
	width: 100%; height: 100%;
}
.czrs_item_content{
	position: relative;
	z-index: 1;
	padding: 55px 40px;
}
.czrs_item_txt1{
	font-size: 24px;
	color: #FFFFFF;
	line-height: 1;
}
.czrs_item_txt2{
	font-size: 16px;
	line-height: 28px;
	margin-top: 20px;
	color: #FFFFFF;
}
.czrs_item_txt2+.czrs_item_txt2{
	margin-top: 10px;
}

.czrs_sec4{
	background: #F2F5FA;
}
.czrs_sec4_contents{
	margin-top: 30px;
}
.czrs_sec4_content{
	
	background: #FFFFFF;
	border-radius: 10px;
	padding: 30px;
	flex-wrap: wrap;
	display: none;
}
.czrs_sec4_content.active{
	display: flex;
}
.czrs_sec4_content_pic{
	width: 355px;
}
.czrs_sec4_content_pic img{
	display: block; width: 100%; height: auto;
}
.czrs_sec4_content_txts{
	margin-left: auto;
	width: 750px;
}
.czrs_sec4_content_txt{
	font-size: 16px;
	color: #666666;
	line-height: 25px;
	position: relative;
	padding: 5px 15px;
}
.czrs_sec4_content_txt:after{
	content: '';
	left: 0; top: 50%; transform: translateY(-50%);
	position: absolute;
	width: 6px; height: 6px;
	background: #999;
	border-radius: 50%;
}

.xbxbz{
	padding-top: 80px; padding-bottom: 80px;
}
.xbxbz_item{
	display: flex; align-items: center;
}
.xbxbz_item+.xbxbz_item{
	margin-top: 80px;
}
.xbxbz_item_txt1{
	font-size: 32px;
	line-height: 50px;
	color: #333;
}
.xbxbz_item_txts{
	margin-top: 35px;
}
.xbxbz_item_txt2{
	font-size: 16px;
	color: #666666;
	line-height: 28px;
}
.xbxbz_item_main{
	flex: 1; margin-right: 30px;
}
.xbxbz_item_pic{
	width: 475px; height: 240px;
}
.xzgdlt_textbox{
	margin-top: 30px;
}
.xzgdlt_textbox img{
	display: block; width: 100%; height: auto;
}

.lzlhb_list{
	display: flex; flex-wrap: wrap;
	margin-left: -40px;
	margin-top: -40px;
}
.lzlhb_item{
	width: 360px;
	margin-left: 40px;
	margin-top: 40px;
}
.lzlhb{
	padding-bottom: 80px;
}


.gywm_jtjj_section4_list .jtjj_section4_item{
	width: 50% !important;
}
.gywm_jtjj_section4_list .jtjj_section4_item:after{
	    padding-top: 46.6666666666667%;
}

.dfzlc{
	background: url(../images/fzlc_bg.png) no-repeat center center / cover;
	padding-bottom: 80px;
}
.dfzlc_content{
	width: 960px;
	background: #F7F7F7;
	border-radius: 12px;
	box-sizing: border-box;
	align-items: center;
	padding: 65px 55px;
	display: none;
}
.dfzlc_content.show{
	display: flex;
}
.dfzlc_content_txt1{
	font-size: 64px;
	font-weight: 900;
	font-style: italic;
	color: #FF7519;
	line-height: 1;
}
.dfzlc_content_txt2{
	font-size: 16px;
	flex: 1; margin-left: 50px;
	color: #333333;
	line-height: 28px;
}
.dfzlc_swiper{
	position: relative; margin-top: 80px;
}
.dfzlc_swiper_line{
	position: absolute; left: 0; top: 14px;
	height: 2px;
	width: 100%;
	background: #FF7519;
}
.dfzlc_swiper_ctrl{
	top: 0; margin-top: 0;
	width: 30px;
	height: 30px;
	background: #FFFFFF;
	border: 2px solid #FF7519;
	border-radius: 50%;
	box-sizing: border-box;
	text-align: center;
	font-size: 14px; line-height: 1;
	display: flex; align-items: center; justify-content: center;
	color: #FF7519;
	font-weight: 900;
	opacity: 1 !important;
}
.dfzlc_swiper_ctrl:hover{
	background: #FF7519;
	color: #fff;
}
.dfzlc_swiper_prev{
	left: 0;
}
.dfzlc_swiper_next{
	right: 0;
}
.dfzlc_swiper_item{
	display: flex; flex-direction: column;
	align-items: center;
	margin-top: 5px;
	cursor: pointer;
}

.dfzlc_swiper_item_dot{
	position: relative;
	width: 20px;
	height: 20px;
	background: #FFFFFF;
	border: 2px solid #FF7519;
	border-radius: 50%;
	box-sizing: border-box;
	display: flex; align-items: center; justify-content: center;
}
.dfzlc_swiper_item_dot:after{
	content: '';
	position: absolute;
	width: 10px;
	height: 10px;
	
	border: 1px solid #FF7519;
	border-radius: 50%;
	box-sizing: border-box;
}

.dfzlc_swiper_item_txt{
	line-height: 46px;
	color: #666666;
	border-radius: 99999px;
	font-size: 20px;
	
	padding: 0 34px;
	margin-top: 16px;
	position: relative;
}
.dfzlc_swiper_item_txt:after{
	content: '';
	position: absolute;
	width: 0; height: 0;
	border-left: 4px solid transparent;
	border-right: 4px solid transparent;
	border-bottom: 6px solid #FF7519;
	left: 50%; top: -6px;
	transform: translateX(-50%);
	display: none;
}

.dfzlc_swiper_item.active .dfzlc_swiper_item_dot:after{
	background: #FF7519;
}
.dfzlc_swiper_item.active .dfzlc_swiper_item_txt{
	background: #FF7519;
	color: #FFFFFF;
}
.dfzlc_swiper_item.active .dfzlc_swiper_item_txt:after{
	display: block;
}

.ygfl_list{
	display: flex; flex-wrap: wrap;
	margin-left: -26.66666666666667px;
	margin-top: -26.66666666666667px;
}
.ygfl_item{
	width: 280px; position: relative;
	margin-left: 26.66666666666667px;
	margin-top: 26.66666666666667px;
}
.ygfl_item:after{
	content: '';
	padding-top: 58.92857142857143%;
	display: block;
}
.ygfl_item_pic{
	position: absolute; left: 0; top: 0;
	width: 100%; height: 100%;
}
.ygfl_item_content{
	position: absolute; left: 0; top: 0;
	width: 100%; height: 100%;
	box-sizing: border-box;
	z-index: 1;
	padding: 30px 26px;
}
.ygfl_item_txt1{
	font-size: 22px;
	color: #FFFFFF;
	line-height: 1;
}
.ygfl_item_txt2{
	font-size: 12px;
	color: #FFFFFF;
	line-height: 1;
	margin-top: 10px;
}
.yglf_sec2_list{
	display: flex;
	flex-wrap: wrap;
	margin-left: -20px;
	margin-top: -20px;
}
.yglf_sec2_item{
	width: 590px;
	margin-left: 20px;
	margin-top: 20px;
	width: 590px;
	overflow: hidden;
	background: #FFFFFF;
	box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.0700);
	border-radius: 10px;
}
.yglf_sec2_item img{
	display: block; width: 100%; height: auto;
}


.rlfw_jjfn_header{
	padding-top: 20px;
}
.rlfw_jjfn_header_line{
	border-bottom: 1px dashed #FF6600;
}
.rlfw_jjfn_header_scroll{
	margin-top: -15px;
}
.rlfw_jjfn_header_list{
	display: flex; justify-content: center;
	
}
.rlfw_jjfn_header_item{
	display: flex; flex-direction: column;
	align-items: center;
	cursor: pointer;
	padding: 0 30px;
}
.rlfw_jjfn_header_item.active .rlfw_jjfn_header_item_icon{
	display: block;
}
.rlfw_jjfn_header_item.active .rlfw_jjfn_header_item_txt1{
	color: #FF6600;
}
.rlfw_jjfn_header_item_content{
	width: 30px; height: 30px;
	position: relative;
	
	z-index: 1;
}
.rlfw_jjfn_header_item_txt1{
	font-size: 20px;
	color: #666666;
	line-height: 50px;
}
.rlfw_jjfn_header_item_icon{
	position: absolute; left: 0; top: 0;
	width: 100%; height: 100%;
	background: url('../images/rlfw_jjfn_header_item_icon.png') no-repeat center center / cover;
	z-index: 1;
	display: none;
}
.rlfw_jjfn_header_item_dot{
	width: 10px;
	height: 10px;
	background: #FFFFFF;
	border: 1px solid #FF6600;
	border-radius: 50%;
	position: absolute; left: 50%; transform: translate(-50%, -50%);
	top: 50%;
}



.dygfl{
	padding-bottom: 80px;
}
.caculater {
	box-sizing: border-box;
	flex-wrap: wrap;
    width: 800px;
    background: #ffffff;
    margin: 0 auto;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    padding: 40px 20px;
    overflow: hidden;
    
box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.0700);
	display: flex;
}

.caculater-title {
    text-align: center;
    font-size: 20px;
    color: #1a1a1a;
}

.caculater-title span {
    text-align: center;
    font-size: 16px;
    color: #b4b4b4;
}

.modebox {
    margin: 30px 0;
}

.modebox label {
    color: #323232;
    font-size: 14px;
    text-align: right;
    width: 180px;
    display: inline-block;
    margin-right: 5px;
}

.modebox input {
    border: 1px solid #e5e5e5;
    height: 30px;
    line-height: 30px;
    outline: none;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    padding-left: 5px;
    width: 190px;
    box-sizing: border-box;
    color: #323232;
}

.modebox span {
    color: #323232;
    font-size: 14px;
}

.cal-left {
    width: 50%;
    border-right: 1px solid #e7e7e7;
}

.check-btn {
    width: 190px;
    height: 32px;
    line-height: 32px;
    display: inline-block;
    background: #149bdb;
    color: #ffffff;
    font-size: 14px;
    text-align: center;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    margin-left: 188px;
}

.cal-right {
    width: 49%;
    padding: 0 30px;
    box-sizing: border-box;
}

.cal-right h1 {
    font-size: 14px;
}

.result {
    height: 32px;
    line-height: 32px;
    border-left: 3px solid #149bdb;
    background: #f3f3f3;
    color: #323232;
    font-size: 14px;
    padding-left: 15px;
    margin-top: 20px;
}

.result span {
    color: #149bdb;
}

.res-tips {
    color: #646464;
    font-size: 12px;
    margin-top: 10px;
    margin-right: 20px;
}