html,
body {
	font-family: MicrosoftYaHei;
	font-size: 14px;
	overflow-x: hidden;
	position: relative;
	font-weight: normal;
}
@font-face {
	font-family: opposan;
	src: url(../fonts/OPPOSans-R.woff2)
}
@font-face {
	font-family: YouSheBiaoTiHei;
	src: url(../fonts/YouSheBiaoTiHei-2.ttf)
}
.container:before,
.container:after {
	display: none;
}

a:hover,
a:focus {
	text-decoration: none;
}

li {
	list-style: none;
}

a {
	text-decoration: none;
}

a:hover {
	text-decoration: none;
}

p,
dl,
dt,
dd,
ul,
h1,
.h1,
h2,
.h2,
h3,
.h3 {
	margin: 0px;
	padding: 0px;
}

* {
	font-style: normal;
}

button,
input {
	border: 0;
	outline: none;
}
.head {
    position: fixed;
    top: 0;
    z-index: 999;
    width: 100%;
    background: #fff;
    height: 120px;
    transition: .5s;
}
.head .logo{
	min-width: 0;
	
}
.head .logo a{
    display: flex;
}
.head .logo img{
	  width: 180px;
	  object-fit: contain;
}
.head .logo img:last-child{
    margin-left: 10px;
}
.head .container {
    display: flex;
    height: 100%;
    align-items: center;
}
.navbar_nav {
    display: flex;
    align-items: center;
    height: 100%;
	margin-left: 22.5%;
	margin-right: 50px;
}
.navbar_nav .dropdown {
    display: flex;
    height: 100%;
    transition: .5s;
	margin-left: 48px;
}
.navbar_nav .dropdown:nth-child(1){
	margin-left: 0;
}
.navbar_nav .dropdown>a {
    display: flex;
    align-items: center;
    color: #101010;
    font-size: 16px;
    height: 100%;
    transition: .5s;
    white-space: nowrap;
}
.navbar_nav .dropdown:hover>a, .navbar_nav .dropdown.active>a {
    color: #1C55A5;
}
.navbar_nav .dropdown .xb {
    margin-left: 5px;
}
.navbar_nav .dropdown_menu {
    display: block;
    background: #fff;
    transform-origin: 50% 0;
    transform: scaleY(0) translateZ(0);
    opacity: 0;
    transition: transform 0.3s, opacity 0.3s;
    text-align: left;
    position: absolute;
    z-index: 999;
    min-width: 210%;
    margin-left: -55%;
    top: 100%;
}
.navbar_nav .dropdown_menu a {
    height: 50px;
    width: 100%;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 20px;
    transition: .5s;
}
.navbar_nav .dropdown_menu li:hover a{
	color: #1C55A5;
}
.navbar_nav li.dropdown:hover .dropdown_menu {
    transform: scaleY(1) translateZ(0);
    opacity: 1;
}
.m_nav {
    overflow: hidden;
    position: fixed;
    top: 0px;
    box-shadow: 0 15px 27px 0 rgba(167, 165, 165, 0.38);
    width: 60%;
    height: 100%;
    background: #fff;
    transition: all ease 0.5s;
    -webkit-transition: all ease 0.5s;
    z-index: 1000;
    opacity: 1;
    visibility: visible;
    margin-top: 0;
    overflow-y: auto;
    transition: all .5s cubic-bezier(.77, 0, .175, 1) 0ms;
    top: 0;
    transform: translateX(170%);
}
.m_nav.open{
    transform: translateX(67%);
}
.m_nav .top{
	height: 60px;
	padding: 20px;
	box-sizing: border-box;
}
.m_nav .top .closed{
	width: 30px;
	height: 30px;
	vertical-align: middle;
	float:right;
	cursor: pointer;
}
.m_nav .logo{
	width: 100%;
	margin:0 auto;
}
.m_nav .logo img{
	height: 50px;
	display: block;
	margin:30px auto;
}
.m_nav .ul{
	margin-top: 30px;
}
.m_nav .ul li{
	padding: 0 20px;
	border-bottom: 1px solid #f5f5f5;
	transform: translateY(0);
	-webkit-transform: translateY(100%);
    transform: translateY(100%);
    -webkit-transition: all .6s cubic-bezier(.77, 0, .175, 1) 0ms;
    transition: all .6s cubic-bezier(.77, 0, .175, 1) 0ms;
    opacity: 0;
}
.m_nav.open .ul li{
	opacity: 1;

    -webkit-transform: translateY(0);
    transform: translateY(0);
}
.m_nav .ul li span{
		display: flex;
	align-items: center;
}
.m_nav .ul li span .img{
	padding: 0 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
}
.m_nav.open .ul li span .img.on img{
	transform: skew(180deg);
}
.m_nav .ul li:nth-child(1) {
    -webkit-transition: all .2s cubic-bezier(.77, 0, .175, 1) 0ms;
    transition: all .2s cubic-bezier(.77, 0, .175, 1) 0ms;
}
.m_nav .ul li:nth-child(2) {
    -webkit-transition: all .4s cubic-bezier(.77, 0, .175, 1) 0ms;
    transition: all .4s cubic-bezier(.77, 0, .175, 1) 0ms;
}
.m_nav .ul li:nth-child(3) {
    -webkit-transition: all .6s cubic-bezier(.77, 0, .175, 1) 0ms;
    transition: all .6s cubic-bezier(.77, 0, .175, 1) 0ms;
}
.m_nav .ul li:nth-child(4) {
    -webkit-transition: all .8s cubic-bezier(.77, 0, .175, 1) 0ms;
    transition: all .8s cubic-bezier(.77, 0, .175, 1) 0ms;
}
.m_nav .ul li:nth-child(5) {
    -webkit-transition: all 1.0s cubic-bezier(.77, 0, .175, 1) 0ms;
    transition: all 1.0s cubic-bezier(.77, 0, .175, 1) 0ms;
}
.m_nav .ul li:nth-child(6) {
    -webkit-transition: all 1.2s cubic-bezier(.77, 0, .175, 1) 0ms;
    transition: all 1.2s cubic-bezier(.77, 0, .175, 1) 0ms;
}
.m_nav .ul li a{
	display: block;
	text-decoration: none;
	color: #333;
	font-size: 16px;
	/*height: 50px;*/
	line-height: 50px;
	width: 100%;
}
.m_nav .ul li .dropdown_menu{
	display: none;
}
.m_nav .ul li.dropdown.active .dropdown_menu{
	display: block;
}
.m_nav .ul li .dropdown_menu a{
	display: block;
	line-height: initial;
	height: initial;
	padding: 12px 20px;
	box-sizing: border-box;
	font-size: 14px;
	color: #9E9E9E;
	font-family: Roboto;
	border-bottom: 1px solid #f5f5f5;
}
.m_nav .ul li .dropdown_menu a:last-child{
	border: none;
}
#navToggle, .m_nav {
    display: none;
}
.head .line{
	width: 1px;
	height: 16px;
	background: #B8B8B8;
	margin: 0 10px;
}
.head .lang{
	font-size: 16px;
	color: #B8B8B8;
}
.sjlbt{
    display: none;
}
.lbt{
	position: relative;
	margin-top: 120px;
}
.lbt .swiper-pagination-bullet-active {
    background: #1C55A5;
}
.lbt .swiper-pagination{
	bottom: 10px;
	left: 0;
	right: 0;
	margin: auto;
}
.lbt .swiper-slide img{
	width: 100%;
}
.dw{
	margin: auto;
	margin-top: 160px;
	max-width: 1600px;
}
.bbyy{
    -webkit-transform: translate(-100px, 0);
    -ms-transform: translate(-100px, 0);
    transform: translate(-100px, 0);
    opacity: 0;
    
}
.jjbb{
    -webkit-transition-delay: 1.5s!important;
    transition-delay: 1.5s!important;
    opacity: 1!important;
}
.bbyy.aos-animate{
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
    -webkit-transition-delay: 1s!important;
    transition-delay: 1s!important;
}
.lbt .swiper-slide:nth-child(1) .tit.aos-animate em,.lbt .swiper-slide:nth-child(1) .tit.aos-animate div{
    opacity: 1;
    -webkit-transition-delay: .5s!important;
    transition-delay: .5s!important;
}
.lbt .swiper-slide:nth-child(1) .tit.aos-animate.bbyy em,.lbt .swiper-slide:nth-child(1) .tit.aos-animate.bbyy div{
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
    -webkit-transition-delay: 1.5s!important;
    transition-delay: 1.5s!important;
}
.lbt .yy{
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	display: flex;
	align-items: center;
	left: 18.75%;
}
.lbt .tit{
	border: 0.2px solid #FFF;
	padding: 40px;
	border-radius: 10px;
	max-width: 576px;
	background: rgba(255, 255, 255, 0.40);
	transition: 1s;
	backdrop-filter: blur(10px);
}
.lbt em{
    color: #1C55A5;
    font-family: YouSheBiaoTiHei;
	display: block;
	height: 96px;
	margin-bottom: 12px;
    font-size: 96px;
    line-height: 96px;
	transition: 1s;
	opacity: 0;
}
.lbt .tit>div{
	transition: 1s;
	opacity: 0;
}
.lbt .tit>div>p{
	font-family: opposan;
	position: relative;
	max-width: 576px;
	padding-left: 16px;
	transition: 1s;
}
.lbt .tit>div>p::before{
	position: absolute;
	content: '';
	width: 4px;
	left: 0;
	height: 28px;
	background: #EF7C1B;
}
.lbt .tit>div p{
	color: #6D6D6D;
	font-size: 20px;
	line-height: 28px;
	margin-top: 12px;
}
.lbt .tit>div p:nth-child(1){
	margin-top: 0;
}
.lbt .swiper-slide:nth-child(1) .tit{
    background: rgba(247, 214, 221, 0.40);
}
.lbt .swiper-slide:nth-child(4) .tit{
    background: rgba(223, 241, 250, 0.40);
}
.cpfl{
	margin-top: 100px;
	margin-bottom: 90px;
}
.cpfl .container{
	display: flex;
}
.cpfl .container a{
	padding: 40px;
	padding-top: 52px;
	margin-right: 52px;
	width: calc(33.333% - 34.6667px);
	background: #F4F4F4;
	height: 600px;
	border-radius: 10px;
}
.cpfl .container a:last-child{
	margin-right: 0;
}
.cpfl h1{
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-weight: bold;
	font-size: 32px;
	color: #B8B8B8;
}
.cpfl h1 span{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	background: #333333;
	border-radius: 50%;
	flex-shrink: 0;
}
.cpfl p{
	font-size: 26px;
	color: #101010;
}
.cpfl .img{
	margin-top: 87px;
	overflow: hidden;
}
.cpfl .img img{
	width: 100%;
	transition: .5s;
	object-fit: contain;
}
.pro .top{
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom: 2px solid #1C55A5;
	margin-bottom: 54px;
}
.pro .top h1{
	font-weight: bold;
	font-size: 28px;
	color: #101010;
}
.pro .top h1 span{
	font-weight: normal;
}
.fwzx .search{
    border: solid 1px #ccc;
    border-radius: 5px;
    padding: 10px 14px;
    margin-bottom: 10px;
    width: 300px;
}
.pro .cat{
	display: flex;
}
.pro .cat a{
	padding: 15px 20px;
	background: #F4F4F4;
	border-radius: 10px 10px 0px 0px;
	font-size: 16px;
	color: #101010;
	transition: .5s;
	margin-right: 10px;
	white-space: nowrap;
}
.pro .cat a:hover,.pro .cat a.on{
	background: #1C55A5;
	color:#fff
}
.pro .cat a:last-child{
	margin-right: 0;
}
.cplb{
	margin-bottom: 100px;
}
.cplb .swiper-slide{
	display: flex;
}
.cplb .swiper-slide>a{
	height: 650px;
	border-radius: 10px;
	width: 48.438%;
    flex-shrink: 0;
	padding-bottom: 0;
	display: block;
}
.cplb .swiper-slide a .img{
	height: 570px;
	display: flex;
	align-items: center;
	border-radius: 10px;
	background: #F4F4F4;
	justify-content: center;
	overflow: hidden;
}
.cplb .swiper-slide a .img img{
	height: 100%;
	object-fit: cover;
	width: 100%;
	transition: .5s;
}
.cplb .swiper-slide a .img:hover img{
    transform: scale(1.05);
}
.cplb .swiper-slide>a p{
	font-size: 22px;
	color: #010100;
	height: 74px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.cplb .swiper-slide .r{
	display: flex;
	width: 100%;
	flex-wrap: wrap;
	margin-left: 48px;
}
.cplb .swiper-slide .r a{
	margin-right: 52px;
	width: calc(50% - 26px);
	border-radius: 10px;
	padding-bottom: 0;
}
.cplb .swiper-slide .r a .img{
	height: 238px;
	padding: 0;
	border-radius: 8px;
}
.cplb .swiper-slide .r a:nth-child(2n){
	margin-right: 0;
}
.cplb .swiper-slide .r a:nth-child(1),.cplb .swiper-slide .r a:nth-child(2){
	margin-bottom: 50px;
}
.cplb .swiper-slide .r a p{
	font-size: 22px;
	color: #010100;
	background: #fff;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.about{
	height: 740px;
	margin-bottom: 100px;
}
.about .container{
	height: 100%;
	padding-top: 106px;
	display: flex;
	flex-direction: column;
	align-items: center;
	border-radius: 10px;
}
.about .container>img{
    max-width: 478px;
}
.about h1{
	font-size: 38px;
	color: #FFFFFF;
	margin-top: 30px;
	margin-bottom: 65px;
}
.about .nr{
	font-size: 20px;
	color: #FFFFFF;
	line-height: 50px;
	max-width: 1173px;
	text-align: center;
}
.about a{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 188px;
	height: 70px;
	background: #FFFFFF;
	border-radius: 10px;
	font-weight: bold;
	font-size: 20px;
	color: #101010;
	margin-top: 122px;
	transition: .5s;
}
.about a:hover{
    background: #1C55A5;
    color: #fff;
}
.new .top{
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom: 2px solid #1C55A5;
	margin-bottom: 54px;
}
.new .top h1{
	font-weight: bold;
	font-size: 28px;
	color: #101010;
	padding-bottom: 10px;
}
.new .top h1 span{
	font-weight: normal;
}
.new .top a{
	font-size: 20px;
	color: #101010;
	padding-bottom: 14px;
}
.new{
	margin-bottom: 100px;
}
.new .list{
	display: flex;
}
.new .list a{
	margin-right: 35px;
	width: calc(33.333% - 23px);
}
.new .list a:last-child{
	margin-right: 0;
}
.new .list a .img{
	display: flex;
	align-items: center;
	justify-content: center;
	height: 320px;
	border-radius: 10px;
	margin-bottom: 60px;
	overflow: hidden;
}
.new .list a .img img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: .5s;
}
.new .list a .img:hover img{
    transform: scale(1.05);
}
.new .list a h1{
	font-size: 24px;
	color: #101010;
	margin-bottom: 38px;
	display: -webkit-box;             
	-webkit-box-orient: vertical; 
	-webkit-line-clamp: 2;        
	overflow: hidden;             
	text-overflow: ellipsis;
	transition: .5s;
}
.new .list a:hover h1{
    color: #1C55A5;
}
.new .list a .nr{
	font-size: 16px;
	color: #666666;
	line-height: 32px;
	margin-bottom: 33px;
	display: -webkit-box;              
	-webkit-box-orient: vertical;  
	-webkit-line-clamp: 3;         
	overflow: hidden;              
	text-overflow: ellipsis; 
}
.new .list a span{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 220px;
	height: 42px;
	background: #1C55A5;
	border-radius: 10px;
	font-weight: bold;
	font-size: 18px;
	color: #FFFFFF;
}
.form_book{
	margin-bottom: 50px;
}
.form_book ul{
	display: flex;
}
.form_book ul li{
	height: 114px;
	display: flex;
	align-items: center;
	background: #F4F4F4;
	border-radius: 10px;
	padding-right: 30px;
	margin-right: 30px;
}
.form_book ul li:last-child{
	margin-right: 0;
	flex: 1;
	background: #1C55A5;
	font-weight: bold;
	font-size: 20px;
	color: #FFFFFF;
	padding-right: 0;
}
.form_book ul li em{
	font-size: 20px;
	color: #666666;
	padding: 0 30px;
	flex-shrink: 0;
}
.form_book ul li:last-child input{
	background: #1C55A5;
	font-size: 20px;
	color: #fff;
}
.form_book ul li input{
	flex: 1;
	font-size: 20px;
	color: #666666;
	background: #F4F4F4;
	min-width: 0;
}
.form_book ul li:nth-child(1){
	width: 48.5%;
}
.form_book ul li:nth-child(2){
	width: 32%;
}
.foot{
	height: 643px;
	padding-top: 104px;
	padding-bottom: 50px;
	background: #F4F4F4;
}
.foot .container{
	display: flex;
}
.foot .l img{
    max-width: 343px;
	display: block;
	margin-bottom: 43px;
}
.foot .l p{
	font-size: 18px;
	color: #666666;
	margin-bottom: 20px;
}
.foot .l p:last-child{
	margin-bottom: 0;
}
.foot .r{
	display: flex;
	justify-content: space-between;
	flex: 1;
	margin-left: 15.625%;
}
.foot .r h1{
	font-size: 18px;
	color: #101010;
	margin-bottom: 50px;
}
.foot .r a{
	display: block;
	font-size: 16px;
	color: #666666;
	margin-bottom: 20px;
	transition: .5s;
}
.foot .r a:hover{
    color: #1C55A5;
}
.foot .r a:last-child{
	margin-bottom: 0;
}
.foot .bq{
	display: flex;
	border-top: 1px solid #1C55A5;
	padding-top: 50px;
	align-items: center;
	font-size: 18px;
	color: #666666;
	width: 100%;
	margin-top: 100px;
	justify-content: space-between;
}
.foot .bq a{
	font-size: 18px;
	color: #666666;
}
.foot .bq .y{
	display: flex;
	align-items: center;
}
.foot .bq p{
	margin-right: 20px;
	text-align: center;
}
.foot .bq .img{
	width: 87px;
	height: 87px;
	background: #666666;
}
.banner{
	margin-top: 120px;
}
.banner img{
	width: 100%;
}
.sinec{
	display: flex;
	margin-top: 95px;
	margin-bottom: 115px;
}
.sinec h1{
	font-weight: bold;
	font-size: 80px;
	color: #B8B8B8;
	line-height: 63px;
	margin-bottom: 19px;
}
.sinec h2{
	font-weight: bold;
	font-size: 70px;
	color: #1C55A5;
	line-height: 55px;
	margin-bottom: 50px;
}
.sinec .r{
	margin-left: 50px;
	font-size: 20px;
	color: #101010;
	line-height: 44px;
}
.sinec .r p{
	font-size: 20px;
	color: #101010;
	line-height: 44px;
}
.fzlc{
	background: #F4F4F4;
	padding: 100px 0;
}
.fzlc .top{
	display: flex;
	justify-content: space-between;
	margin-bottom: 70px;
}
.fzlc .top h1{
	font-size: 40px;
	color: #101010;
}
.fzlc .top h1 span{
	display: block;
	font-size: 20px;
	color: #B8B8B8;
	margin-top: 13px;
}
.fzlc .top .an{
	display: flex;
}
.fzlc .top .an div{
	width: 50px;
	height: 50px;
	background: #B0C2DA;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: .5s;
}
.fzlc .top .an div:last-child{
	margin-left: 30px;
}
.fzlc .top .an i{
	font-size: 28px;
	color: #fff;
}
.fzlc .swiper-slide{
	height: 490px;
	width: 24.875%;
	border-radius: 10px;
}
.fzlc .con{
	height: 100%;
	background: rgba(17, 53, 103, .8);
	border-radius: 10px;
	padding: 53px 30px 53px 50px;
	position: relative;
	opacity: 0;
	transition: .5s;
}
.fzlc .con h1{
	font-weight: bold;
	font-size: 30px;
	color: #FFFFFF;
	line-height: 25px;
	margin-bottom: 44px;
}
.fzlc .con h1 span{
	display: block;
	font-size: 23px;
	color: #FFFFFF;
	line-height: 23px;
	margin-top: 10px;
}
.fzlc .con ul li{
	font-size: 18px;
	color: #FFFFFF;
	margin-bottom: 20px;
	position: relative;
	padding-left: 26px;
}
.fzlc .con ul li::before{
	position: absolute;
	content: '';
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #fff;
	top: 0;
	bottom: 0;
	margin: auto;
	left: 0;
}
.fzlc .con .line{
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	right: 31px;
	width: 1px;
	height: 280px;
	background: #FFFFFF;
}
.fzlc .swiper-slide-active .con{
	opacity: 1;
}
.qyrz{
	margin: 100px 0;
}
.qyrz .top{
	display: flex;
	justify-content: space-between;
	margin-bottom: 70px;
}
.qyrz .top h1{
	font-size: 40px;
	color: #101010;
}
.qyrz .top h1 span{
	display: block;
	font-size: 20px;
	color: #B8B8B8;
	margin-top: 13px;
}
.qyrz .top .an{
	display: flex;
}
.qyrz .top .an div{
	width: 50px;
	height: 50px;
	background: #B0C2DA;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: .5s;
}
.qyrz .top .an div:last-child{
	margin-left: 30px;
}
.qyrz .top .an i{
	font-size: 28px;
	color: #fff;
}
.qyrz .swiper-slide{
	padding-top: 20px;
	padding-bottom: 10px;
	border-radius: 10px;
	border: 2px solid #DDDDDD;
}
.qyrz .swiper-slide .img{
	margin-bottom: 10px;
	height: 238px;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0 10px;
}
.qyrz .swiper-slide .img img{
	object-fit: contain;
	width: 100%;
	height: 100%;
}
.qyrz .swiper-slide p{
	text-align: center;
	padding: 19px 0;
	margin: 0 10px;
	font-size: 18px;
	color: #101010;
	line-height: 24px;
	transition: .5s;
}
.qyrz .swiper-slide p span{
	display: block;
	font-size: 18px;
	color: #101010;
	transition: .5s;
}
.qyrz .swiper-slide.on p{
	border-radius: 8px;
	background: #1C55A5;
	color: #fff;
}
.qyrz .swiper-slide.on span{
	color: #fff;
}
.contact{
	margin-bottom: 100px;
}
.contact .container{
	display: flex;
}
.contact .container .l{
	height: 700px;
	background: #F4F4F4;
	border-radius: 10px;
	padding-top: 100px;
	padding-left: 7%;
	flex: 1;
	max-width: 790px;
}
.contact .l h1{
	font-size: 40px;
	color: #1C55A5;
	line-height: 40px;
	padding-bottom: 50px;
	position: relative;
	margin-bottom: 70px;
}
.contact .l h1::before{
	position: absolute;
	bottom: 0;
	left: 0;
	content: '';
	width: 150px;
	height: 2px;
	background: #585858;
}
.contact .l .xx{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.contact .l .xx p{
	font-size: 20px;
	color: #101010;
	width: 50%;
}
.contact .l .xx p:last-child{
    width: 100%;
}
.contact .l .xx p:nth-child(1),.contact .l .xx p:nth-child(2){
	margin-bottom: 60px;
}
.contact .l .xx span{
	display: block;
	font-size: 26px;
	color: #101010;
	margin-top: 6px;
}
.contact .l .img{
	display: flex;
	margin-top: 82px;
}
.contact .l .img a{
	margin-right: 60px;
}
.contact .l .img a:last-child{
	margin-right: 0;
}
#map{
	height: 700px;
	flex: 1;
	margin-left: 20px;
	border-radius: 10px;
}
.fwzx{
	margin-bottom: 160px;
}
.fwzx ul.sj,.fwzx .sjss{
	display: none;
}
.fwzx ul li{
	display: flex;
}
.fwzx ul.sj li{
    margin-bottom: 10px;
    border: 1px solid #B8B8B8;
	border-radius: 10px;
}
.fwzx ul.pc li{
    height: 55px;
    display: flex;
    align-items: center;
    border: 0;
    border-left: 1px solid #B8B8B8;
    border-right: 1px solid #B8B8B8;
}
.fwzx ul.pc li span{
    padding-left: 20px;
    flex: 1;
    font-size: 18px;
    display: flex;
    align-items: center;
    border-right: 1px solid #B8B8B8;
    color: #101010;
    height: 100%;
    border-bottom: 1px solid #B8B8B8;
}
.fwzx ul.pc li a{
    padding-left: 40px;
    width: 145px;
    font-size: 18px;
   color: #868686;
	background: url(../img/d.png) 20px center no-repeat;
	transition: .5s;
	display: flex;
    align-items: center;
	height: 100%;
	border-bottom: 1px solid #B8B8B8;
}
.fwzx ul li>div span{
	display: block;
	text-align: center;
}
.fwzx li>div:first-child {
        display: flex !important;
        flex-direction: column;
        width: 20%;
		flex-shrink: 0;
		min-width: 0;
}
.fwzx li a span {
    float: left;
    text-align: center;
    font-size: 14px;
    transition: all ease-out 0.3s;
    color: #101010;
    width: 25%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    position: relative;
}
.fwzx li>div:first-child span {
        border-bottom: 1px solid #B8B8B8;
        font-size: 14px;
        height: 50px;
        line-height: 50px;
        float: initial;
        width: auto;
    }
.fwzx li>div span:last-child{
	border-bottom: 0;
}
.fwzx li>div:last-child{
	flex: 1;
	min-width: 0;
}
.fwzx ul li>div:last-child span,.fwzx li>div a {
	display: block;
        padding-left: 20px;
        font-size: 14px;
        height: 50px;
        line-height: 50px;
		white-space: nowrap;      
		    overflow: hidden;     
		    text-overflow: ellipsis;
        float: initial;
        color: #101010;
        width: auto;
        text-align: left;
		border-bottom: 1px solid #B8B8B8;
    }
.fwzx li>div a {
	background: url(../img/d.png) 0 center no-repeat;
	    padding-left: 30px;
		margin-left: 20px;
	border-bottom: 0;
	color: #868686;
}
.ny .cat{
	margin-top: 96px;
	display: flex;
	margin-bottom: 50px;
}
.ny .cat a{
	padding: 24px 58px;
	margin-right: 10px;
	background: #F4F4F4;
	border-radius: 10px;
	font-size: 20px;
	color: #101010;
	transition: .5s;
}
.ny .cat a:last-child{
	margin-right: 0;
}
.ny .cat a.on{
		background: #1C55A5;
		color: #fff;
}
.fwzx table{
	border-collapse:initial;
	border-radius: 10px 10px 0 0;
	border: 1px solid #B8B8B8;
	width: 100%;
}
.fwzx thead{
	height: 70px;
}
.fwzx thead th{
	padding-left: 20px;
	border-right: 1px solid #B8B8B8;
	font-size: 20px;
	color: #101010;
	display: flex;
	flex:1;
	align-items: center;
}
.fwzx thead th:last-child{
	border-right: 0;
	padding-left: 0;
	justify-content: center;
	width: 145px;
	flex: initial;
}
.fwzx tr{
	height: 70px;
	display: flex;
}
.fwzx tbody tr:nth-child(1) td{
	border-top: 1px solid #B8B8B8;
}
.fwzx.zczh thead th:last-child{
    flex: 1;
    width: auto;
}
.fwzx.zczh tbody tr td:last-child{
    padding-left: 0;
    justify-content: center;
}
.fwzx tr td{
    display: flex;
    align-items: center;
    height: 100%;
    flex: 1;
	font-size: 18px;
	color: #101010;
	border-bottom: 1px solid #B8B8B8;
	border-right: 1px solid #B8B8B8;
	padding-left: 20px;
}
.fwzx tbody tr:last-child td{
	border-bottom: 0;
}
.fwzx tbody tr td:last-child a{
	font-size: 18px;
	color: #868686;
	background: url(../img/d.png) no-repeat;
	padding-left: 30px;
	transition: .5s;
}
.fwzx tbody tr td:last-child{
	border-right: 0;
	padding-left: 20px;
	text-align: center;
}
.fwzx .list .con{
    background: #FDFDFD;
    border-radius: 10px;
    border: 1px solid #B8B8B8;
	margin-bottom: 12px;
}
.fwzx .list .con:last-child{
	margin-bottom: 0;
}
.fwzx .list .con .t{
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px 20px;
}
.fwzx .list .con .t .l{
	font-size: 20px;
	color: #101010;
}
.fwzx .list .con .t .r{
    cursor: pointer;
	font-size: 18px;
	color: #868686;
	background: url(../img/yc.png) no-repeat;
	padding-left: 30px;
}
.fwzx .list .con .t span{
	font-size: 18px;
	color: #868686;
	transition: .5s;
}
.fwzx .list .con .nr{
	font-size: 18px;
	border-top: 1px solid #B8B8B8;
	color: #666666;
	line-height: 28px;
	padding-left: 20px;
	padding-right: 20px;
	height: 0;
	opacity: 0;
	transition: .3s;
}
.fwzx .list .con.on .nr{
	opacity: 1;
	padding-top: 24px;
	height: auto;
	margin-bottom: 27px;
}
.fwzx .list .con.on .r{
	
	background: url(../img/yc1.png) no-repeat;
}
.fwzx .list .con.on .r span{
	color: #1E56A5;
}
.newlist{
	margin-bottom: 100px;
}
.newlist .list{
	display: flex;
	flex-wrap: wrap;
}
.newlist .list a{
	margin-right: 35px;
	width: calc(33.333% - 23.33px);
	margin-bottom: 50px;
}
.newlist .list a:nth-child(3n){
	margin-right: 0;
}
.newlist .list a .img{
	height: 320px;
	overflow: hidden;
	border-radius: 10px;
}
.newlist .list a img{
	height: 100%;
	width: 100%;
	object-fit: cover;
	transition: .5s;
}
.newlist .list a .img:hover img{
    transform: scale(1.05);
}
.newlist .list a h1{
	font-size: 24px;
	color: #101010;
	margin: 30px 0;
	transition: .5s;
	margin-bottom: 20px;
}
.newlist .list a:hover h1{
    color: #1C55A5;
}
.newlist .list a .nr{
	display: -webkit-box;             
	    -webkit-box-orient: vertical; 
	    -webkit-line-clamp: 3;        
	    overflow: hidden;             
	    text-overflow: ellipsis;          
	font-size: 16px;
	color: #666666;
	line-height: 30px;
	margin-bottom: 20px;
}
.newlist .list a span{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 180px;
	height: 46px;
	background: #1C55A5;
	font-size: 18px;
	color: #FFFFFF;
	border-radius: 10px;
}
.pagination {
	margin: 0;
	display: flex;
	align-items: center;
	margin-top: 50px;
	justify-content: center;
}


.pagination>li>a,
.pagination>li>span {
	position: relative;
	font-size: 18px;
	display: flex;
	transition: .5s;
	align-items: center;
	justify-content: center;
	padding: 0;
	background: initial!important;
	line-height: initial;
	text-decoration: none;
	color: #B8B8B8;
	border: 0;
	width: 100%;
    height: 100%;
}
.pagination > .active > a, .pagination > .active > span, .pagination > .active > a:hover, .pagination > .active > span:hover, .pagination > .active > a:focus, .pagination > .active > span:focus{
	color: #11181f;
}
.pagination>li{
	margin-right: 29px;
	transition: .5s;
}
.pagination>li:nth-child(1){
	width: 50px;
	height: 50px;
	background: #B0C2DA;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.pagination>li:nth-child(1) a,.pagination>li:nth-child(1) span,.pagination>li:last-child span,.pagination>li:last-child a{
	color: #fff!important;
}
.pagination>li:last-child{
	width: 50px;
	height: 50px;
	background: #B0C2DA;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
}
.pagination>li:nth-child(1):hover,.pagination>li:last-child:hover,.pagination>li.disabled:hover{
    background: #1C55A5;
}
.pagination>li.disabled{
	background: #B0C2DA;
}
.pagination>li:last-child{
	margin-right: 0;
}
.page-input-box,
.page-nav-last,
.page-nav-first {
	display: none !important;
}

.pagination>li:first-child>a,
.pagination>li:first-child>span {
	border-radius: 8px;
}
.pagination>li>a:focus,
.pagination>li>span:focus {
		z-index: 2;
		color: #fff;
		background-color: initial;
		border-radius: 8px;
}

	.pagination>.active>a,
	.pagination>.active>span,
	.pagination>.active>a:focus,
	.pagination>.active>span:focus {
		z-index: 3;
		color: #101010;
		cursor: default;
		background-color: initial;
	}
.show{
	max-width: 1380px;
	margin: 100px auto;
}
.show h1{
	font-size: 32px;
	color: #101010;
	line-height: 32px;
	text-align: center;
	padding-bottom: 49px;
	margin-bottom: 29px;
	border-bottom: 1px solid #BBBBBB;
}
.show .date{
	font-size: 20px;
	color: #666666;
	text-align: center;
	margin-bottom: 75px;
}
.show .content{
	font-size: 20px;
	color: #101010;
	margin-bottom: 100px;
}
.show .content img{
	display: block;
	margin: auto;
	max-width: 100%;
}
.details_cur a{
	font-size: 20px;
	color: #101010;
}
.details_cur span{
	display: block;
}
.details_cur span:last-child{
	margin-top: 20px;
}
.rczp{
	margin-top: 50px;
}
.rczp .con{
	padding: 0 50px;
}
.rczp .box{
	background: #FDFDFD;
	border-radius: 10px;
	border: 1px solid #BBBBBB;
	margin-bottom: 50px;
	padding-top: 100px;
	padding-bottom: 60px;
}
.rczp .box:last-child{
	margin-bottom: 120px;
}
.rczp .box .tit{
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 32px;
	color: #152236;
	margin-bottom: 50px;
}
.rczp .box .tit span{
	cursor: pointer;
	font-size: 18px;
	color: #666666;
	padding-left: 30px;
	transition: .5s;
	background: url(../img/yc.png) no-repeat;
}
.rczp .box .nr{
	font-size: 18px;
	color: #152236;
	line-height: 44px;
	max-height: 200px;
	overflow: hidden;
	transition: .5s;
}
.rczp .box.on{
	padding-bottom: 0;
}
.rczp .box.on .nr{
	max-height: initial;
	overflow: initial;
}
.rczp .box.on .tit span{
	color: #1E56A5;
	background: url(../img/yc1.png) no-repeat;
}
.rczp .box .lx{
	margin: 0 -50px;
	margin-top: 100px;
	background: #E8EFF7;
	border-radius: 0px 0px 10px 10px;
	display: flex;
	font-size: 20px;
	color: #152236;
	align-items: center;
	height: 172px;
	justify-content: center;
}
.rczp .box .lx a:last-child{
	margin-left: 115px;
	padding: 24px 58px;
	background: #1E56A5;
	border-radius: 10px;
	font-size: 20px;
	color: #FFFFFF;
}
.dypage{
	background: #F4F4F4;
	border-radius: 10px;
	padding: 70px 50px;
	margin-bottom: 100px;
	font-size: 20px;
	color: #101010;
	line-height: 42px;
}
.dypage h1{
	font-size: 32px;
	color: #101010;
	line-height: 32px;
	margin-bottom: 35px;
}
.c-book ul{
	display: flex;
	flex-wrap: wrap;
}
.c-book ul li{
	width: calc(50% - 15px);
	margin-bottom: 30px;
}
.c-book ul li:nth-child(1),.c-book ul li:nth-child(3){
	margin-right: 30px;
}
.c-book ul li em{
	display: block;
	font-size: 20px;
	color: #101010;
	margin-bottom: 30px;
}
.c-book ul li em span{
	color: #C10000 ;
}
.c-book ul li input{
	width: 100%;
	height: 52px;
	border-radius: 10px;
	border: 1px solid #DDDDDD;
	padding-left: 20px;
	color: #DDDDDD;
}
.c-book ul li:nth-child(5){
	width: 100%;
}
.c-book ul li textarea{
	width: 100%;
	resize: none;
	color: #DDDDDD;
	padding-left: 20px;
	padding-top: 20px;
	height: 380px;
	border-radius: 10px;
	outline: none;
	border: 1px solid #DDDDDD;
}
.c-book ul li.bnt{
	width: 100%;
	margin-bottom: 180px;
}
.c-book ul li.bnt input{
	width: 100%;
	height: 68px;
	background: #fff;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	color: #101010;
	transition: .5s;
}
.prolist .container{
	display: flex;
}
.prolist{
	margin-top: 96px;
	margin-bottom: 115px;
}
.prolist .l{
	background: #F4F4F4;
	border-radius: 10px;
	width: 385px;
	flex-shrink: 0;
}
.prolist .l .lm{
	display: block;
	border-bottom: 1px solid #B8B8B8;
	padding-left: 14.286%;
	transition: .5s;
}
.prolist .l .lm:last-child{
	border-bottom: 0;
}
.prolist .l .lm>a{
	display: block;
	font-size: 26px;
	padding: 40px 0;
	color: #101010;
	transition: .5s;
}
.prolist .l .zlm{
	margin-top: 26px;
	margin-left: -20px;
	display: none;
}
.prolist .l .zlm a{
	color: #fff;
	display: block;
	font-size: 20px;
	margin-bottom: 20px;
	position: relative;
	padding-left: 20px;
}
.prolist .l .zlm a::before{
	content: '';
	position: absolute;
	width: 10px;
	height: 2px;
	background: #fff;
	top: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	margin-left: -4px;
}
.prolist .l .zlm a::after{
	display: none;
	content: '';
	position: absolute;
	height: 10px;
	width: 2px;
	background: #fff;
	top: 0;
	bottom: 0;
	left: 0;
	margin: auto;
}
.prolist .l .zlm a.on::after{
	display: block;
}
.prolist .l .zlm a:last-child{
	margin-bottom: 0;
}
.prolist .l .lm.on{
	background: #1C55A5;
	border-radius: 10px;
	border-bottom: 0;
}
.prolist .l .lm.on.pb{
	padding-top: 70px;
	padding-bottom: 70px;
}
.prolist .l .lm.on.pb>a{
	padding: 0;
}
.prolist .l .lm.on .zlm{
	display: block;
}
.prolist .l .lm.on>a{
	color: #fff;
}
.prolist .r{
	flex: 1;
	margin-left: 50px;
}
.prolist .r .list .box{
	display: flex;
	border-radius: 10px;
	border: 1px solid #BBBBBB;
	padding: 30px;
	margin-bottom: 30px;
	width: 100%;
	align-items: center;
}
.prolist .r .list .box:last-child{
	margin-bottom: 0;
}
.prolist .r .list .box .img{
	width: 220px;
	margin-right: 30px;
	height: 220px;
	border-radius: 10px;
}
.prolist .r .list .box .img img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.prolist .r .list h1{
	font-size: 24px;
	color: #101010;
	margin-bottom: 20px;
}
.prolist .r .list .nr{
	flex: 1;
}
.prolist .r .list .nr p{
	font-size: 20px;
	color: #101010;
	margin-bottom: 20px;
}
.prolist .r .list .nr p:last-child{
	margin-bottom: 0;
}
.prolist .r .list .nr p span{
	color: #666666;
}
.prolist .r .list a{
	float: right;
	margin-top: auto;
	width: 180px;
	height: 46px;
	background: #1C55A5;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 20px;
}
.proshow{
	margin-top: 160px;
}
.proshow .top{
	display: flex;
	margin-bottom: 80px;
}
.proshow .top .img{
	width: 600px;
	height: 600px;
	margin-right: 6.25%;
}
.proshow .top .img img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.proshow .top .xx{
	flex: 1;
}
.proshow .top h1{
	font-size: 32px;
	color: #101010;
	padding-bottom: 30px;
	border-bottom: 1px solid #BBBBBB;
	margin-bottom: 43px;
}
.proshow .top .cs p{
	font-size: 20px;
	color: #101010;
	margin-bottom: 30px;
}
.proshow .top .cs p:last-child{
	margin-bottom: 0;
}
.proshow .top .ms{
	font-size: 20px;
	color: #666666;
	line-height: 44px;
	max-width: 680px;
	margin-top: 27px;
}
.proshow .top a{
	margin-top: 83px;
	width: 227px;
	height: 68px;
	background: #1E56A5;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	color: #FFFFFF;
}
.proshow .qh{
	display: flex;
	border-bottom: 2px solid #1C55A5;
	margin-bottom: 40px;
}
.proshow .qh span{
	padding: 15px 20px;
	background: #F4F4F4;
	border-radius: 10px 10px 0px 0px;
	font-size: 16px;
	color: #101010;
	transition: .5s;
	margin-right: 10px;
	cursor: pointer;
}
.proshow .qh span:last-child{
	margin-right: 0;
}
.proshow .qh span.on{
	background: #1C55A5;
	color: #fff;
}
.proshow .qhk .xq{
	display: none;
	min-height: 100px;
}
.proshow .qhk .xq.on{
	display: block;
}
.proshow .tuijian{
	margin-top: 80px;
	margin-bottom: 140px;
}
.proshow .tuijian h1{
	margin-bottom: 50px;
	font-size: 32px;
	color: #101010;
}
.proshow .tuijian .list{
	display: flex;
}
.proshow .tuijian .list a{
	margin-right: 20px;
	border-radius: 10px;
	border: 1px solid #BBBBBB;
}
.proshow .tuijian .list a:last-child{
	margin-right: 0;
}
.proshow .tuijian .list a .img{
	height: 317px;
	overflow: hidden;
}
.proshow .tuijian .list a img{
	height: 100%;
	width: 100%;
	transition: .5s;
	object-fit: cover;
}
.proshow .tuijian .list a p{
	height: 72px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	color: #101010;
	transition: .5s;
	border-radius: 0 0 10px 10px;
}
.zxzx{
    margin-bottom: 100px;
}
.zxzx h1{
	margin-top: 49px;
	margin-bottom: 30px;
	font-size: 32px;
	color: #101010;
}
.zxzx .img{
	margin-bottom: 100px;
}
.zxzx .img img{
	max-width: 100%;
}
.search{
	cursor: pointer;
}
.m_nav .sousuo{
    position: initial;
    height: auto;
    margin-top: 15px;
    background: #fff;
}
.m_nav .sousuo button{
    width: 20px;
    height: 20px;
    margin-right: 15px;
}
.m_nav .sousuo .con{
    width: auto;
        min-width: 0;
        margin: 0 15px;
}
.m_nav .sousuo form{
    height: auto;
    margin-bottom: 0;
    padding: 0 15px;
}
.sousuo{
	position: fixed;
	top: 0;
	width: 100%;
	height: 0;
	overflow: hidden;
	background: #F5F5F5;
	left: 0;
	z-index: 99;
	display: flex;
	align-items: center;
	transition: .5s;
	justify-content: center;
}
.sousuo .con{
	width: 607px;
}
.sousuo form{
	display: flex;
	border-radius: 37px;
	background: rgba(217, 217, 217, .5);
	height: 64px;
	align-items: center;
	padding: 0 40px;
	margin-bottom: 40px;
	width: 100%;
}
.sousuo button{
	display: block;
	margin-right: 30px;
	width: 28px;
	height: 28px;
	flex-shrink: 0;
	background: url(../img/ss.svg) no-repeat;
	background-size: cover;
}
.sousuo input{
	flex: 1;
	font-family: Roboto;
	font-size: 24px;
	color: #9E9E9E;
	background: initial;
}
.sousuo input::placeholder{
	font-family: Roboto;
	font-size: 24px;
	color: #9E9E9E;
}
.sousuo .gjz{
	flex-wrap: wrap;
	display: flex;
}
.sousuo .gjz span{
	border-radius: 20px;
	margin-right: 20px;
	margin-bottom: 20px;
	background: rgba(78, 67, 81, 1);
	padding: 10px 24px;
	font-size: 16px;
	color: #fff;
	font-family: Roboto;
}
.sousuo .item{
	display: flex;
	align-items: center;
	margin-bottom: 10px;
}
.sousuo .item .img{
	width: 64px;
	height: 64px;
	overflow: hidden;
	margin-right: 10px;
}
.sousuo .item .img img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.sousuo .item h1{
	color: #3D3D3D;
	font-size: 16px;
	font-family: Roboto;
}
.sousuo .del{
	position: absolute;
	right: 44px;
	cursor: pointer;
	top: 24px;
}
@media (min-width: 768px) {
    .fzlc .top .an div:hover,.qyrz .top .an div:hover{
        background: #1C55A5;
    }
    .fwzx ul.pc li:hover a{
	color: #1E56A5;
	background: url(../img/d1.png) 20px center no-repeat;
}
.fwzx .list .con .t .r:hover{
    color: #1E56A5;
	background: url(../img/yc1.png) no-repeat;
}
.fwzx .list .con .t .r:hover span{
    color: #1E56A5;
}
	.proshow .tuijian .list a:hover p{
		color: #fff;
		background: #1C55A5;
	}
	.proshow .tuijian .list a:hover img{
		transform: scale(1.05);
	}
	.proshow .qh span:hover{
		background: #1C55A5;
		color: #fff;
	}
	.prolist .l .lm:hover{
		background: #1C55A5;
		border-radius: 10px;
		border-bottom: 0;
	}
	.prolist .l .lm:hover>a{
		color: #fff;
	}
	.c-book ul li.bnt:hover input{
		background: #1E56A5;
		color: #fff;
	}
	.ny .cat a:hover{
		background: #1C55A5;
		color: #fff;
	}
    .container {
        width: auto;
        max-width: 1600px;
        padding: 0;
    }
}
@media (max-width: 1920px){
	.lbt .swiper-slide img{
		object-fit: cover;
		}
	}
@media (max-width: 1660px){
	.contact .container .l{
		padding-left: 3%;
	}
	.container{
		padding: 0 30px;
	}
	.cpfl .container a{
		height: auto;
	}
}
@media (max-width: 1400px){
	.contact .l .img a img{
		height: 40px;
	}
	.contact .l .xx span{
		font-size: 20px;
	}
	.contact .l h1{
		font-size: 32px;
	}
	.contact .l .img a{
		margin-right: 30px;
	}
	.cpfl .container a{
		padding: 20px;
		margin-right: 32px;
		width: calc(33.333% - 21.333px);
	}
	.navbar_nav .dropdown{
		margin-left: 24px;
	}
	.pro .cat a {
	    padding: 15px 10px;
	}
}
@media (max-width: 1200px){
	.prolist .r{
		margin-left: 20px;
	}
	.prolist .r .list .box .img{
		height: auto;
		width: 100%;
		margin-right: 0;
		margin-bottom: 20px;
	}
	.prolist .r .list .box{
		display: block;
	}
	.prolist .r .list a{
		float: initial;
		margin-top: 20px;
	}
	.fzlc .con{
		padding: 50px 30px;
	}
	.cplb .swiper-slide .r{
		margin-left: 24px;
	}
	.cplb .swiper-slide .r a{
		margin-right: 22px;
		width: calc(50% - 11px);
	}
	.cplb .swiper-slide .r a:nth-child(1), .cplb .swiper-slide .r a:nth-child(2){
		margin-bottom: 25px;
	}
	.cplb .swiper-slide .r a .img{
		height: 250px;
	}
	.pro .cat a{
		font-size: 14px;
	}
	.pro .top h1,.new .top h1{
		font-size: 20px;
	}
	.new .top a{
		font-size: 16px;
	}
	.cpfl h1{
		font-size: 20px;
	}
	.cpfl p{
		font-size: 16px;
	}
	.cpfl h1 span{
		width: 32px;
		height: 32px;
	}
	.head .container{
		justify-content: space-between;
	}
	.navbar_nav{
		margin-left: 20px;
		margin-right: 20px;
	}
	.head .logo img{
		width: 160px;
	}
	.navbar_nav .dropdown{
		margin-left: 10px;
	}
	.navbar_nav .dropdown>a{
	    font-size: 12px;
	}
	.foot .r{
		margin-left: 0;
	}
	.foot .l img{
		width: 80%;
	}
	.sinec{
		display: block;
	}
	.sinec .r{
		margin-left: 0;
		margin-top: 30px;
	}
	.sinec .l{
		text-align: center;
	}
	.sinec img{
		max-width: 100%;
	}
}
@media (max-width: 992px){
    .head .logo img{
        height: 45px;
        width: auto;
    }
    .sjlbt .swiper-pagination-bullet-active{
        background: #1C55A5;
    }
    .sjlbt .swiper-pagination-bullets{
        bottom: 0;
    }
    .sjlbt{
        margin-top: 60px;
        display: block;
    }
    .sjlbt img{
        width: 100%;
    }
    .lbt{
        display: none;
    }
	.fwzx ul.pc,.fwzx .pcss{
		display: none;
	}
	.fwzx ul.sj,.fwzx .sjss{
	    display: block;
	}
	table{
		display: none;
	}
	.ny .cat a{
		padding: 10px 20px;
	}
	.contact .container .l{
		height: auto;
		padding: 50px;
		max-width: 100%;
		margin-bottom: 20px;
	}
	#map{
		margin-left: 0;
	}
	.contact .container{
		display: block;
	}
	.foot .l img{
		width: auto;
	}
	.foot .l{
		margin-bottom: 50px;
	}
	.foot{
		height: auto;
		padding: 30px 0;
	}
	.foot .r{
		flex-wrap: wrap;
	}
	.foot .r .con{
		margin-bottom: 30px;
	}
	.foot .container{
		display: block;
	}
	.foot .r .con{
		margin-right: 20px;
	}
	.foot .r .con:last-child{
		margin-right: 0;
	}
	.new .top{
		margin-bottom: 30px;
	}
	.lbt .swiper-slide img{
		height: 400px;
	}
	.lbt em{
		font-size: 42px;
		height: auto;
		line-height: initial;
	}
	.lbt .yy{
		right: 0;
		left: 0;
		justify-content: center;
	}
	.lbt .tit{
		padding: 15px;
	}
	.lbt .tit>div p{
		font-size: 16px;
	}
	.cplb .swiper-slide>a{
		width: 100%;
	}
	.cplb .swiper-slide{
		display: block;
	}
	.cplb .swiper-slide .r a p{
		margin-bottom: 6px;
	}
	.pro .top{
		display: block;
		margin-bottom: 20px;
		border-bottom: 0;
	}
	.cplb .swiper-slide .r{
		margin-left: 0;
		margin-top: 20px;
	}
	.pro .cat{
		flex-wrap: wrap;
	}
	.pro .cat a{
		border-radius: 10px;
		margin-bottom: 10px;
	}
	.pro .top h1{
		margin-bottom: 15px;
	}
	.cplb .swiper-slide>a{
		height: 480px;
	}
	.cplb .swiper-slide .r a p,.cplb .swiper-slide>a p{
		font-size: 16px;
	}
	.cplb .swiper-slide .r a .img{
		height: 165px;
	}
	.cplb .swiper-slide a .img{
		height: 400px;
	}
	.cpfl .container a {
	        margin-right: 12px;
	        width: calc(33.333% - 8px);
	    }
	.navbar_nav,.ss{
		display: none;
	}
	.head{
		height: 60px;
	}
	.lbt,.banner{
		margin-top: 60px;
	}
	#navToggle img {
	    height: 30px;
	}
	#navToggle,.m_nav{
		display: block;
	}
	.proshow{
		margin-top: 100px;
	}
	.proshow .tuijian .list a .img{
		height: 220px;
	}
}
@media (max-width: 768px){
    .msg-layer{
        max-width: 95%!important;
    }
    .msg-layer div img{
        max-width: 100%;
    }
	.show{
		padding: 0 15px;
	}
	.proshow .tuijian .list{
		flex-wrap: wrap;
	}
	.proshow .tuijian .list a{
		margin-right: 10px;
		width: calc(50% - 10px);
		margin-bottom: 20px;
	}
	.prolist .l{
		width: 100%;
		margin-bottom: 30px;
	}
	.prolist{
		margin: 50px 0;
	}
	.prolist .l .lm.on.pb{
		padding: 20px;
	}
	.prolist .l .lm{
		padding-left: 20px;
	}
	.prolist .l .zlm{
		margin-left: 20px;
	}
	.prolist .l .lm>a{
		padding: 20px 0;
		font-size: 16px;

	}
	.prolist .l .zlm a{
		font-size: 14px;
	}
	.prolist .container{
		display: block;
	}
	.prolist .r{
		margin-left: 0;
	}
	.fwzx{
		margin-bottom: 50px;
	}
	.contact{
		margin-bottom: 50px;
	}
	#map{
		height: 450px;
	}
	.fzlc{
		padding: 30px 0;
	}
	.qyrz{
		margin: 30px 0;
	}
	.fzlc .top{
		margin-bottom: 30px;
	}
	.fzlc .top .an i,.fzlc .con ul li,.qyrz .top .an i{
		font-size: 16px;
	}
	.fzlc .top h1,.fzlc .con h1,.qyrz .top h1{
		font-size: 24px;
	}
	.foot .r h1{
		font-size: 16px;
		margin-bottom: 20px;
	}
	.fzlc .top .an div,.qyrz .top .an div{
		width: 30px;
		height: 30px;
	}
	.fzlc .top h1 span,.qyrz .top h1 span{
		font-size: 16px;
	}
	.foot .r a,.foot .l p{
		font-size: 14px;
		margin-bottom: 10px;
	}
	.foot .bq a{
		font-size: 14px;
		display: block;
		text-align: center;
	}
	.foot .bq .y{
		display: none;
	}
	.foot .bq{
		margin-top: 0;
		justify-content: center;
		font-size: 14px;
		padding-top: 10px;
	}
	.foot{
		padding-bottom: 10px;	
	}
	.form_book ul{
		display: block;
	}
	.form_book ul li:nth-child(1),.form_book ul li:nth-child(2){
		width: 100%;
		margin-bottom: 10px;
	}
	.form_book ul li:last-child{
		height: 50px;
	}
	.form_book ul li{
		height: 60px;
		margin-right: 15px;
	}
	.form_book ul li em{
		padding: 0 15px;
		font-size: 14px;
	}
	.form_book{
		margin-bottom: 30px;
	}
	.form_book ul li input,.form_book ul li:last-child input{
		font-size: 14px;
	}
	.form_book ul li{
		padding-right: 15px;
	}
	.new .list a{
		margin-right: 10px;
		width: calc(33.333% - 6px);
	}
	.new .list a .img{
		height: 200px;
		margin-bottom: 20px;
	}
	.new .list a h1{
		font-size: 18px;
		margin-bottom: 10px;
	}
	.new .list a span{
		width: 100%;
		font-size: 14px;
	}
	.new .list a .nr{
		font-size: 14px;
		line-height: 24px;
		margin-bottom: 20px;
	}
	.about .container{
		padding-bottom: 50px;
	}
	.about{
		height: auto;
	}
	.about .container>img{
		width: 50%;
	}
	.about .nr{
		line-height: 32px;
		font-size: 16px;
	}
	.about a{
		width: auto;
		height: auto;
		padding: 10px 20px;
		font-size: 14px;
		margin-top: 60px;
	}
	.about h1{
		margin-bottom: 35px;
		font-size: 24px;
	}
	.cplb,.about,.new{
		margin-bottom: 30px;
	}
	.cplb .swiper-slide a .img{
		height: 200px;
	}
	.cplb .swiper-slide .r a .img{
		height: 120px;
	}
	.cplb .swiper-slide .r a:nth-child(1), .cplb .swiper-slide .r a:nth-child(2) {
	        margin-bottom: 10px;
	}
	.cplb .swiper-slide .r a p{
		height: 30px;
		font-size: 14px;
	}
	.cplb .swiper-slide .r a{
		margin-right: 8px;
		width: calc(50% - 4px);
	}
	.cplb .swiper-slide>a{
		height: auto;
	}
	.cplb .swiper-slide .r{
		margin-top: 10px;
	}
	.cplb .swiper-slide>a p{
		height: 30px;
		font-size: 14px;
	}
	.lbt .yy{
		display: none;
	}
	.lbt .swiper-slide img{
		height: 350px;
	}
	.container{
		padding: 0 15px;
	}
	.cpfl{
		margin-top: 30px;
		margin-bottom: 30px;
	}
	.cpfl .container{
		display: block;
	}
	.cpfl .container a{
		display: block;
		width: 100%;
		margin-right: 0;
		margin-bottom: 10px;
	}
	.sinec{
		margin-top: 30px;
		margin-bottom: 30px;
	}
	.sinec h1{
		font-size: 32px;
		line-height: initial;
		margin-bottom: 0;
	}
	.sinec h2{
		font-size: 24px;
		margin-bottom: 20px;
		line-height: initial;
	}
	.ny .cat{
		margin-top: 30px;
		margin-bottom: 20px;
		flex-wrap: wrap;
	}
	.ny .cat a{
		margin-bottom: 10px;
	}
	.fwzx{
		margin-bottom: 50px;
	}
	.proshow .top{
		display: block;
	}
	.proshow .top .img{
		width: 100%;
		height: auto;
		margin-right: 0;
		margin-bottom: 30px;
	}
	.proshow .tuijian{
		margin-bottom: 50px;
		margin-top: 30px;
	}
	.newlist .list a{
		margin-right: 15px;
		width: calc(50% - 7.5px);
		margin-bottom: 20px;
	}
	.newlist .list a:nth-child(2n){
		margin-right: 0;
	}
	.rczp .box{
		padding: 30px 0;
	}
}
@media (max-width: 500px){
    .foot .r{
        display: none;
    }
    .zxzx{
        margin-bottom: 0;
    }
	.foot .l img{
		max-width: 100%;
		width: 50%;
		margin-bottom: 20px;
	}
	.rczp .box .tit{
		font-size: 24px;
		margin-bottom: 20px;
	}
	.rczp .box .nr{
		line-height: 40px;
	}
	.rczp .box:last-child{
		margin-bottom: 50px;
	}
	.rczp .con{
		padding: 0 15px;
	}
	.rczp .box .tit span{
		font-size: 14px;
	}
	.rczp .box .nr{
		font-size: 14px;
	}
	.details_cur a,.c-book ul li em{
		font-size: 14px;
	}
	.c-book ul li em{
		margin-bottom: 10px;
	}
	.c-book ul li{
		width: 100%;
		margin-right: 0!important;
	}
	.c-book ul li input{
		height: 40px;
	}
	.c-book ul li.bnt input{
		font-size: 14px;
		height: 40px;
	}
	.c-book ul li.bnt{
		margin-bottom: 50px;
	}
	.dypage{
		padding: 20px;
		font-size: 14px;
		margin-bottom: 30px!important;
	}
	.zxzx .img{
		margin-bottom: 50px;
		margin-top: 20px;
	}
	.zxzx h1{
		margin-top: 0;
		font-size: 24px;
		margin-bottom: 0;
	}
	.show{
		margin: 50px 0;
	}
	.show .date{
		font-size: 16px;
		margin-bottom: 20px;
	}
	.show h1{
		font-size: 24px;
		padding-bottom: 20px;
		margin-bottom: 15px;
		line-height: initial;
	}
	.newlist{
		margin-bottom: 50px;
	}
	.newlist .list a .img{
		height: 150px;
	}
	.newlist .list a h1{
		font-size: 16px;
		margin: 10px 0;
	}
	.newlist .list a .nr{
		font-size: 14px;
	}
	.proshow .tuijian .list a .img{
		height: 150px;
	}
	.proshow .top h1{
		font-size: 24px;
		margin-bottom: 20px;
		padding-bottom: 20px;
	}
	.proshow .tuijian .list a p{
		height: 50px;
		font-size: 14px;
	}
	.prolist .r .list .box{
		padding: 15px;
	}
	.prolist .r .list h1,.prolist .r .list .nr p,.prolist .r .list a,.proshow .top .cs p{
		font-size: 16px;
	}
	.proshow .top .cs p{
		margin-bottom: 10px;
	}
	.proshow .top a{
		margin-top: 30px;
		font-size: 16px;
		width: 100px;
		height: 50px;
	}
	.proshow .qh span{
		padding: 15px 5px;
		font-size: 14px;
		margin-right: 5px;
	}
	.proshow .tuijian h1{
		font-size: 24px;
		margin-bottom: 20px;
	}
	.proshow .top{
		margin-bottom: 40px;
	}
	.prolist .r .list a{
		width: 100px;
		height: 35px;
	}
	.fwzx ul li>div:last-child span{
		padding-left: 0;
	}
	.fwzx li>div a{
		margin-left: 0;
	}
	.banner img{
		height: 400px;
		object-fit: cover;
	}
	.contact .l h1{
		margin-bottom: 20px;
		padding-bottom: 20px;
	}
	.contact .l .xx p{
		font-size: 16px;
	}
	.contact .l .xx span,.ny .cat a{
		font-size: 14px;
	}
	.contact .l .img{
		margin-top: 40px;
	}
	.contact .l .xx{
		display: block;
	}
	.contact .l .xx p{
		width: 100%;
	}
	.contact .l .xx p:nth-child(1), .contact .l .xx p:nth-child(2),.contact .l .xx p:nth-child(3){
		margin-bottom: 20px;
	}
	.contact .l h1{
		font-size: 24px;
	}
	.contact .l .img a img{
		height: 30px;
	}
	.contact .container .l{
		padding: 30px 15px;
	}
	.sinec .r p{
		font-size: 16px;
	}
	.qyrz .top{
		margin-bottom: 20px;
	}
	.qyrz .swiper-slide{
		padding-top: 10px;
	}
	.qyrz .swiper-slide .img{
		height: 150px;
	}
	.qyrz .swiper-slide p{
		padding: 10px 0;
		font-size: 14px;
	}
	.qyrz .swiper-slide p span{
		font-size: 14px;
	}
	.fzlc .swiper-slide{
		height: auto;
	}
	.new .list a{
		display: block;
		width: 100%;
		margin-right: 0;
		margin-bottom: 20px;
	}
	.new .list{
		display: block;
	}
	.cpfl .img{
		margin-top: 20px;
	}
}