header{
	position: fixed;
	width: 100%;
	top: 0;
	z-index: 99;
	background-color: #fff;
	left: 0;
	box-shadow: 0px 0px 5px rgba(0, 0, 0, .05);
}
.top{
    display: flex;
    justify-content: space-between;
	padding: 0px 5%;
}
.logo{
	padding: 10px 0px;
}
.logo a{
	display: flex;
	align-items: center;
}
.logo a img{
    width: auto;
    height: 80px;
}
.logo .logo-tit{
	padding-left: 15px;
}
.logo .logo-tit p{
	font-size: 36px;
	color: #15499a;
	font-weight: 500;
	line-height: 40px;
}
.logo .logo-tit span{
	font-size: 12px;
	color: #15499a;
	display: block;
	font-weight: 500;
	line-height: 20px;
}
.menu{
	display: flex;
	align-items: center;
}
.menu ul{
	display: flex;
}
.menu li{
	position: relative;
}
.menu li a{
	font-size: 18px;
	color: #000;
	display: block;
	height: 100px;
	text-align: center;
	transition: .3s;
	overflow: hidden;
}
.menu li a span{
	font-size: 18px;
	display: block;
	height: 100px;
	width: 100%;
	line-height: 100px;
	padding: 0px 35px;
	transition: margin-top .3s;
}
.menu li a span:last-child{
	color: #fff;
	background-color: #15499a;
}
.menu li.active a span:first-child,.menu li:hover a span:first-child{
	margin-top: -100px;
}
.menu li dl{
	position: absolute;
	width: 100%;
	top: 100%;
	left: 0;
	background-color: rgba(0, 0, 0, .6);
	padding: 15px 0px;
	display: none;
}
.menu li dd a{
	display: block;
	color: #ddd;
	line-height: 36px;
	font-size: 14px;
	height: 36px;
}
.menu li dd a:hover{
	color: #fff;
	text-decoration: underline;
}
.language{
	color: #999;
	padding-left: 15px;
	display: flex;
	align-items: center;
}
.language a{
	color: #999;
	font-size: 14px;
	margin: 0px 5px;
	line-height: 30px;
}
.language a.on{
	color: #333;
}
.language a:hover{
	color: #333;
}
@media (max-width:1600px) {
	.menu li a span{
		padding: 0px 25px;
	}
}
@media (max-width:1440px) {
	.logo a img{
	    height: 60px;
	}
	.logo .logo-tit{
		padding-left: 10px;
	}
	.logo .logo-tit p{
		font-size: 30px;
		line-height: 36px;
	}
	.logo .logo-tit span{
		font-size: 12px;
		line-height: 16px;
	}
	.menu li a{
		font-size: 16px;
		height: 80px;
	}
	.menu li a span{
		font-size: 16px;
		height: 80px;
		line-height: 80px;
		padding: 0px 20px;
	}
	.menu li.active a span:first-child,.menu li a:hover span:first-child{
		margin-top: -80px;
	}
}
@media (max-width:1200px) {
	.logo a img{
	    height: 40px;
	}
	.logo .logo-tit{
		padding-left: 10px;
	}
	.logo .logo-tit p{
		font-size: 26px;
		line-height: 26px;
	}
	.logo .logo-tit span{
		font-size: 12px;
		line-height: 14px;
	}
	.menu li a{
		font-size: 14px;
		height: 60px;
	}
	.menu li a span{
		font-size: 14px;
		height: 60px;
		line-height: 60px;
		padding: 0px 15px;
	}
	.menu li.active a span:first-child,.menu li a:hover span:first-child{
		margin-top: -60px;
	}
}
.blackbg{
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 90;
	background: rgba(0, 0, 0, .7);
	display: none;
}
.nav-top{
	display: none;
}
.nav-lanmu{
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-right: 10px;
	height: 100%;
}
.nav-logo{
	width: 30%;
}
.nav-logo a{
	display: block;
	padding: 5px 10px;
}
.nav-logo a img{
	max-height: 30px;
}
.nav-menu{
	position: fixed;
	width: 70%;
	top: 0;
	right: -70%;
	background: #fff;
	height: 100%;
	overflow: hidden;
	z-index: 93;
	transition: .3s;
}
.nav-menu.nav-show{
	right: 0;
}
.nav-menu h2{
	border-bottom: 1px solid #ddd;
	line-height: 50px;
	padding: 0px 15px;
	text-transform: uppercase;
	font-size: 15px;
	background: rgba(0, 0, 0, .06);
	font-style: italic;
}
.nav-menu ul{
	width: 100%;
}
.nav-menu li a{
	border-bottom: 1px solid #ddd;
	line-height: 44px;
	padding: 0 15px;
	display: block;
	color: #666;
	font-size: 13px;
	position: relative;
}
.nav-menu li a:before{
	content: '';
	width: 10px;
	height: 10px;
	border-right: 2px solid #666;
	border-bottom: 2px solid #666;
	position: absolute;
	right: 15px;
	top: 50%;
	margin-top: -5px;
	transform: rotate(-45deg);
}
.nav-click{
	width: 35px;
	padding: 5px;
}
.nav-click i{
	padding: 2px 0px;
	display: block;
}
.nav-click i:after{
	content: "";
	display: block;
	height: 3px;
	border-radius: 2px;
	background: #ed6d53;
}
@media (max-width:992px) {
	.top{
		display: none;
	}
	.nav-top{
		display: block;
	}
}
.banner{
	padding: 100px 0 0;
}
.banner .swiper .swiper-slide{
	height: 845px;
	background-position: right center;
	background-repeat: no-repeat;
	background-size: auto 100%;
}
.banner .bancolor{
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 51%;
	z-index: 9;
}
.banner .bancolor:after{
	content: "";
	position: absolute;
	top: 0;
	left: -20%;
	height: 100%;
	width: 110%;
	z-index: 3;
	background-color: #15499a;
	transform-origin: left;  
	transform: skewX(-20deg); 
}
.banner .bancolor:before{
	content: "";
	position: absolute;
	top: 0;
	left: -20%;
	height: 100%;
	width: 117%;
	z-index: 2;
	background-color: rgba(230, 33, 41, .5);
	transform-origin: left;  
	transform: skewX(-20deg); 
}
.banner .bntext{
	position: absolute;
	z-index: 11;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	display: flex;
	align-content: center;
	flex-wrap: wrap;
	padding: 0px 0px 0px 6%;
}
.banner .bntext h3{
	width: 100%;
	font-size: 100px;
	line-height: 100px;
	color: #fff;
}
.banner .bntext h4{
	font-size: 57px;
	color: #fff;
	line-height: 70px;
	width: 100%;
	margin: 35px 0px 0px;
}
.banner .bntext h5{
	font-size: 28px;
	color: #fff;
	font-family: arial;
	line-height: 40px;
}
.banner .bntext i{
	width: 100%;
	max-width: 80%;
	margin: 40px 0px 0px;
}
.banner .swiper-button{
	width: 74px;
	height: 74px;
	background: url(../images/pdjtw.png) center no-repeat;
	background-size: 100% auto;
	top: 50%;
	margin-top: -75px;
	outline: none;
	opacity: .8;
	transition: .3s;
}
.banner .swiper-button:hover{
	opacity: 1;
}
.banner .swiper-button:after{
	display: none;
}
.banner .swiper-button-next{
	right: 3%;
	transform: rotate(180deg);
}
@media (max-width:1440px) {
	.banner{
		padding: 80px 0 0;
	}
	.banner .swiper .swiper-slide{
		height: 685px;
	}
	.banner .bntext h3{
		font-size: 60px;
		line-height: 60px;
	}
	.banner .bntext h4{
		font-size: 37px;
		line-height: 40px;
		margin: 25px 0px 0px;
	}
	.banner .bntext h5{
		font-size: 18px;
		line-height: 30px;
	}
	.banner .bntext i{
		margin: 40px 0px 0px;
	}
	.banner .bntext i img{
		max-width: 40%;
	}
	.banner .swiper-button{
		width: 54px;
		height: 54px;
		margin-top: -55px;
	}
}
@media (max-width:1200px) {
	.banner{
		padding: 60px 0 0;
	}
	.banner .swiper .swiper-slide{
		height: 500px;
	}
	.banner .bntext h3{
		font-size: 40px;
		line-height: 40px;
	}
	.banner .bntext h4{
		font-size: 27px;
		line-height: 30px;
		margin: 20px 0px 0px;
	}
	.banner .bntext h5{
		font-size: 15px;
		line-height: 20px;
	}
	.banner .bntext i{
		margin: 30px 0px 0px;
	}
	.banner .swiper-button{
		width: 40px;
		height: 40px;
		margin-top: -40px;
	}
}
@media (max-width:992px) {
	.banner{
		padding-top: 40px;
	}
	.banner .swiper .swiper-slide{
		height: 200px;
	}
	.banner .bntext h3{
		font-size: 20px;
		line-height: 20px;
	}
	.banner .bntext h4{
		font-size: 16px;
		line-height: 20px;
		margin: 10px 0px 0px;
	}
	.banner .bntext h5{
		font-size: 12px;
		line-height: 20px;
	}
	.banner .bntext i{
		margin: 20px 0px 0px;
	}
	.banner .swiper-button{
		width: 34px;
		height: 34px;
		margin-top: -35px;
	}
}
.about{
	padding: 105px 10% 125px;
	background-color: #f6f6f6;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}
.about .abimg{
	width: 50%;
}
.about .abtext{
	width: 46%;
}
.about ul{
	width: 100%;
}
.title h3{
	font-size: 37px;
	color: #222222;
	line-height: 45px;
}
.title h5{
	font-size: 24px;
	color: #999999;
	line-height: 30px;
	margin: 5px 0px 0px;
}
.about .abimg img{
	display: block;
	box-shadow: 7px 0px 7px rgba(0, 0, 0, .1);
}
.about .abtext section{
	height: 200px;
	overflow-y: auto;
	font-size: 14px;
	line-height: 30px;
	color: #585858;
	margin: 5% 0px;
	padding: 0px 20px;
}
a.more{
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 180px;
	height: 50px;
	border-radius: 25px;
	background-color: #df032e;
	padding: 9px;
}
a.more p{
	font-size: 16px;
	color: #fff;
	padding-left: 15px;
}
a.more i{
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background-color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
}
a.more i:after{
	content: "";
	border-right: 2px #df032e solid;
	border-bottom: 2px #df032e solid;
	width: 9px;
	height: 9px;
	transform: rotate(-45deg);
}
@media (max-width:1440px) {
	.about{
		padding: 65px 10% 85px;
	}
	.title h3{
		font-size: 28px;
		line-height: 35px;
	}
	.title h5{
		font-size: 14px;
		line-height: 24px;
	}
	.about .abtext section{
		height: 150px;
		padding: 0px 15px;
	}
	a.more{
		width: 150px;
		height: 40px;
		border-radius: 20px;
		padding: 5px;
	}
	a.more p{
		font-size: 14px;
		padding-left: 10px;
	}
	a.more i{
		width: 30px;
		height: 30px;
	}
}
@media (max-width:1200px) {
	.about{
		padding: 35px 10% 45px;
	}
	.title h3{
		font-size: 20px;
		line-height: 25px;
	}
	.title h5{
		font-size: 14px;
		line-height: 20px;
	}
	.about .abtext section{
		height: 120px;
		padding: 0px 10px;
	}
	a.more{
		width: 120px;
		height: 32px;
		border-radius: 16px;
		padding: 5px;
	}
	a.more p{
		font-size: 14px;
		padding-left: 10px;
	}
	a.more i{
		width: 22px;
		height: 22px;
	}
}
@media (max-width:992px) {
	.about{
		padding: 15px 15px 20px;
		display: block;
	}
	.about .abimg{
		width: 100%;
		margin: 0px 0px 15px;
	}
	.about .abtext{
		width: 100%;
	}
	.about ul{
		width: 100%;
	}
	.title h3{
		font-size: 18px;
		line-height: 25px;
	}
	.title h5{
		font-size: 14px;
		line-height: 20px;
		margin: 0px 0px 0px;
	}
	.about .abimg img{
		box-shadow: 0px 0px 5px rgba(0, 0, 0, .1);
	}
	.about .abtext section{
		height: 200px;
		font-size: 14px;
		line-height: 24px;
		margin: 0 0px 15px 0px;
		padding: 10px 0px;
	}
	a.more{
		width: 100px;
		height: 32px;
		border-radius: 16px;
	}
	a.more p{
		font-size: 12px;
		padding-left: 10px;
	}
	a.more i{
		width: 22px;
		height: 22px;
	}
	a.more i:after{
		width: 6px;
		height: 6px;
	}
}
.about ul{
	display: flex;
	align-items: center;
	background-color: #fff;
	box-shadow: 0px 0px 12px rgba(0, 0, 0, .1);
	margin: 30px 0px 0px;
	padding: 45px 0px;
}
.about ul li{
	width: 25%;
	display: flex;
	justify-content: center;
	align-items: flex-end;
}
.about ul i{
	width: 1px;
	height: 65px;
	background-color: rgba(0, 0, 0, .1);
}
.about ul p{
	font-size: 17px;
	color: #666;
	font-weight: 300;
	line-height: 36px;
}
.about ul h2{
	font-size: 60px;
	color: #15499a;
	line-height: 65px;
	font-family: arial;
	font-weight: bold;
	margin: 0px 5px 0px 10px;
}
.about ul span{
	color: #15499a;
	font-size: 30px;
	line-height: 30px;
	padding-bottom: 50px;
	font-family: arial;
	font-weight: bold;
}
@media (max-width:1440px) {
	.about ul{
		margin: 25px 0px 0px;
		padding: 35px 0px;
	}
	.about ul i{
		height: 50px;
	}
	.about ul p{
		font-size: 15px;
		line-height: 30px;
	}
	.about ul h2{
		font-size: 50px;
		line-height: 55px;
	}
	.about ul span{
		font-size: 24px;
		line-height: 25px;
		padding-bottom: 30px;
	}
}
@media (max-width:1200px) {
	.about ul{
		padding: 30px 0px;
	}
	.about ul i{
		height: 40px;
	}
	.about ul p{
		font-size: 14px;
		line-height: 26px;
	}
	.about ul h2{
		font-size: 40px;
		line-height: 45px;
	}
	.about ul span{
		font-size: 20px;
		line-height: 20px;
		padding-bottom: 25px;
	}
}
@media (max-width:992px) {
	.about ul{
		margin: 20px 0px 0px;
		padding: 15px 0px;
		flex-wrap: wrap;
	}
	.about ul li{
		width: 50%;
		padding: 5px 0px;
	}
	.about ul i{
		display: none;
	}
	.about ul p{
		font-size: 12px;
		line-height: 20px;
	}
	.about ul h2{
		font-size: 30px;
		line-height: 35px;
	}
	.about ul span{
		font-size: 14px;
		line-height: 15px;
		padding-bottom: 20px;
	}
}
.product{
	padding: 160px 0;
	position: relative;
	background: url(../images/pdbg.jpg) center no-repeat;
	background-size: cover;
}
.product .pdtit{
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0px 10%;
}
.product .title h3{
	color: #fff;
}
.product .pdmemo{
	color: #fff;
	font-size: 18px;
	display: flex;
	align-items: center;
}
.product .pdmemo section{
	width: 310px;
	text-align: right;
}
.product .pdmemo i{
	max-width: 210px;
	margin-left: 10px;
}
.product .procont{
	position: relative;
	padding: 0px 10%;
}
.product .swiper{
	margin: 50px 0px 0px;
	position: static;
}
.product .swiper-slide a i{
	display: block;
	background-color: #fff;
	border-radius: 25px;
	overflow: hidden;
	position:relative;
}
.product .swiper-slide a i:after{
	content:"";
	position:absolute;
	width:100%;
	height:100%;
	top:0;
	left:0;
	z-index:3;
	background:rgb(21,73,154) url(../images/add.svg) center no-repeat;
	background-size:60px 60px;
	transition:.3s;
	transform:scale(0);
	border-radius:22px;
	opacity:.7;
}
.product .swiper-slide a:hover i:after{
	transform:scale(1);
}
.product .swiper-slide a span{
	color: #fff;
	font-size: 24px;
	font-weight: 300;
	padding: 20px 0px 20px;
	line-height: 30px;
	display: block;
	text-align:center;
	transition: .5s;
}
.product .swiper-button{
	width: 74px;
	height: 74px;
	background: url(../images/pdjtw.png) center no-repeat;
	background-size: 100% auto;
	top: 50%;
	margin-top: -75px;
	outline: none;
	opacity: .8;
	transition: .3s;
}
.product .swiper-button:hover{
	opacity: 1;
}
.product .swiper-button:after{
	display: none;
}
.product .swiper-button-next{
	right: 3%;
	transform: rotate(180deg);
}
.product .swiper-button-prev{
	left: 3%;
}
@media (max-width:1440px) {
	.product{
		padding: 100px 0;
	}
	.product .pdmemo{
		font-size: 16px;
	}
	.product .pdmemo i{
		max-width: 150px;
	}
	.product .swiper{
		margin: 40px 0px 0px;
	}
	.product .swiper-slide a i{
		border-radius: 10px;
	}
	.product .swiper-slide a span{
		font-size: 18px;
		padding: 15px 5px;
	}
	.product .swiper-button{
		width: 54px;
		height: 54px;
		margin-top: -55px;
	}
}
@media (max-width:1200px) {
	.product{
		padding: 60px 0;
	}
	.product .pdmemo{
		font-size: 14px;
	}
	.product .pdmemo i{
		max-width: 100px;
	}
	.product .swiper{
		margin: 30px 0px 0px;
	}
	.product .swiper-slide a i{
		border-radius: 5px;
	}
	.product .swiper-slide a span{
		font-size: 15px;
		padding: 10px 5px;
	}
	.product .swiper-button{
		width: 40px;
		height: 40px;
		margin-top: -40px;
	}
}
@media (max-width:992px) {
	.product .pdmemo{
		display: none;
	}
	.product{
		padding: 30px 0;
	}
	.product .swiper{
		margin: 20px 0px 0px;
	}
	.product .swiper-slide a i{
		border-radius: 5px;
	}
	.product .swiper-slide a span{
		font-size: 14px;
		padding: 10px 5px;
	}
	.product .swiper-button{
		width: 24px;
		height: 24px;
		margin-top: -25px;
	}
}
.news{
	background-color: #f5f5f5;
	padding: 120px 10% 145px;
}
.news .nstit{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.news ul{
	display: flex;
	margin-top: 50px;
	margin-right: -25px;
	margin-left: -25px;
}
.news ul li{
	width: 25%;
	padding: 0px 25px;
}
.news li a p{
	font-size: 16px;
	color: #999999;
	line-height: 24px;
	font-family: arial;
}
.news li a h4{
	font-size: 18px;
	line-height: 28px;
	height: 56px;
	color: #000;
	overflow: hidden;
	margin: 10px 0px 25px;
	transition: .3s;
}
.news li a span{
	font-size: 15px;
	font-weight: 300;
	line-height: 30px;
	color: #333;
	display: block;
	margin: 25px 0px 0px;
	display: flex;
	align-items: center;
}
.news li a span:after{
	content: "";
	width: 8px;
	height: 8px;
	border-right: 1px #333 solid;
	border-bottom: 1px #333 solid;
	transform: rotate(-45deg);
	margin-left: 10px;
}
.news li a i{
	display: block;
	overflow: hidden;
}
.news li a i img{
	transition: 1s;
}
.news li a:hover i img{
	transform: scale(1.2);
}
.news li a:hover h4,.news li a:hover span{
	color: #15499a;
}
.news li a:hover span:after{
	border-color: #15499a;
}
@media (max-width:1440px) {
	.news{
		padding: 90px 10% 115px;
	}
	.news ul{
		margin-top: 40px;
		margin-right: -15px;
		margin-left: -15px;
	}
	.news ul li{
		padding: 0px 15px;
	}
	.news li a p{
		font-size: 14px;
		line-height: 20px;
	}
	.news li a h4{
		font-size: 16px;
		line-height: 24px;
		height: 48px;
		margin: 10px 0px 20px;
	}
	.news li a span{
		font-size: 14px;
		line-height: 26px;
		margin: 20px 0px 0px;
	}
}
@media (max-width:1200px) {
	.news{
		padding: 50px 10% 65px;
	}
	.news ul{
		margin-top: 30px;
		margin-right: -10px;
		margin-left: -10px;
	}
	.news ul li{
		padding: 0px 10px;
	}
	.news li a p{
		font-size: 12px;
		line-height: 18px;
	}
	.news li a h4{
		font-size: 14px;
		line-height: 20px;
		height: 40px;
		margin: 10px 0px 20px;
	}
	.news li a span{
		font-size: 12px;
		line-height: 22px;
		margin: 10px 0px 0px;
	}
}
@media (max-width:992px) {
	.news{
		padding: 20px 15px 25px;
	}
	.news ul{
		margin-top: 20px;
		margin-right: -10px;
		margin-left: -10px;
		flex-wrap: wrap;
	}
	.news ul li{
		padding: 0px 10px;
		width: 50%;
	}
	.news li a p{
		font-size: 12px;
		line-height: 16px;
	}
	.news li a h4{
		font-size: 14px;
		line-height: 20px;
		height: 40px;
		margin: 10px 0px;
	}
	.news li a span{
		font-size: 12px;
		line-height: 20px;
		margin: 10px 0px 0px;
	}
}
.contact{
	background: #15499a url(../images/ctimg.jpg) right center no-repeat;
	background-size: auto 100%;
	padding: 80px 10%;
}
.contact h2{
	font-size: 46px;
	font-weight: bold;
	color: #fff;
	line-height: 60px;
}
.contact h2:before{
	content: "";
	display: block;
	width: 40px;
	height: 5px;
	background-color: #df032e;
	margin: 0px 0px 30px;
}
.contact h4{
	font-size: 20px;
	color: #fff;
	line-height: 26px;
	margin: 20px 0px 55px;
}
.contact a{
	background: transparent;
	border: 1px solid #fff;
}
.contact a i{
	background-color: #e62129;
}
.contact a i:after{
	border-color: #fff;
}
@media (max-width:1440px) {
	.contact{
		padding: 40px 10%;
	}
	.contact h2{
		font-size: 30px;
		line-height: 40px;
	}
	.contact h2:before{
		height: 4px;
		margin: 0px 0px 20px;
	}
	.contact h4{
		font-size: 16px;
		line-height: 22px;
		margin: 10px 0px 35px;
	}
}
@media (max-width:1200px) {
	.contact h2{
		font-size: 24px;
		line-height: 36px;
	}
	.contact h2:before{
		height: 4px;
		margin: 0px 0px 20px;
	}
	.contact h4{
		font-size: 14px;
	}
}
@media (max-width:992px) {
	.contact{
		background-size: cover;
		padding: 40px 15px;
		position: relative;
		min-height: 200px;
	}
	.contact section{
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		z-index: 9;
		background-color: rgba(21, 73, 154, .5);
		padding: 15px;
	}
	.contact h2{
		font-size: 16px;
		line-height: 20px;
	}
	.contact h2:before{
		width: 30px;
		height: 3px;
		margin: 0px 0px 15px;
	}
	.contact h4{
		font-size: 14px;
		line-height: 16px;
		margin: 10px 0px 25px;
	}
}
footer{
	background-image: linear-gradient(to bottom,#f7f7f7,#f1f1f1);
	padding: 50px 10% 0px;
}
.bottom{
	display: flex;
	justify-content: space-between;
	padding-bottom: 45px;
}
.bottom dl dt{
	padding-bottom: 18px;
}
.bottom dl dt a{
	font-size: 24px;
	color: #0c0c0c;
	line-height: 40px;
	font-weight: normal;
}
.bottom dl dd a{
	font-size: 16px;
	line-height: 35px;
	color: #555555;
}
.bottom dl:nth-child(2){
	display: flex;
	flex-wrap: wrap;
	max-width: 250px;
	justify-content: space-between;
	align-content: flex-start;
}
.bottom dl:nth-child(2) dt{
	width: 100%;
}
.bottom dl:nth-child(2) dd{
	min-width: 35%;
	max-width: 50%;
}
.bottom .botcus{
	border-left: 1px solid #ddd;
	padding-left: 75px;
}
.bottom .botcus i img{
	max-width: 160px;
}
.bottom .botcus span img{
	max-width: 105px;
	margin-right: 20px;
}
.bottom .botcus ul{
	margin: 15px 0px;
}
.bottom .botcus li{
	font-size: 16px;
	color: #555555;
	line-height: 26px;
	padding: 10px 0px;
	white-space: nowrap;
}
.bottom .botcus li i{
	margin-right: 5px;
}
.bottom .botcus span{
	display: flex;
	align-items: center;
}
.copy{
	border-top: 1px solid #ddd;
	padding: 20px 0px;
	display: flex;
	justify-content: space-between;
	font-size: 16px;
	line-height: 30px;
}
.copy a{
	color: #333;
	margin-left: 15px;
}
.copy a:hover{
	text-decoration: underline;
}
@media (max-width:1440px) {
	footer{
		padding: 30px 10% 0px;
	}
	.bottom{
		padding-bottom: 35px;
	}
	.bottom dl dt{
		padding-bottom: 15px;
	}
	.bottom dl dt a{
		font-size: 18px;
		line-height: 30px;
	}
	.bottom dl dd a{
		font-size: 14px;
		line-height: 30px;
	}
	.bottom dl:nth-child(2){
		max-width: 200px;
	}
	.bottom .botcus{
		padding-left: 50px;
	}
	.bottom .botcus i img{
		max-width: 120px;
	}
	.bottom .botcus span img{
		max-width: 80px;
		margin-right: 15px;
	}
	.bottom .botcus li{
		font-size: 14px;
		line-height: 20px;
		padding: 10px 0px;
	}
	.copy{
		padding: 10px 0px;
		font-size: 14px;
		line-height: 24px;
	}
}
@media (max-width:1200px) {
	footer{
		padding: 20px 10% 0px;
	}
	.bottom{
		padding-bottom: 25px;
	}
	.bottom dl dt{
		padding-bottom: 10px;
	}
	.bottom dl dt a{
		font-size: 16px;
		line-height: 26px;
	}
	.bottom dl dd a{
		font-size: 13px;
		line-height: 26px;
	}
	.bottom dl:nth-child(2){
		max-width: 160px;
	}
	.bottom .botcus{
		padding-left: 30px;
	}
	.bottom .botcus i img{
		max-width: 100px;
	}
	.bottom .botcus li{
		font-size: 13px;
		line-height: 20px;
		padding: 5px 0px;
	}
	.copy{
		padding: 10px 0px;
		font-size: 12px;
		line-height: 24px;
	}
}
@media (max-width:992px) {
	footer{
		padding: 15px;
	}
	.bottom dl{
		display: none !important;
	}
	.bottom .botcus{
		border-left: 0px solid #ddd;
		padding-left: 0px;
	}
	.bottom .botcus i img{
		max-width: 80px;
	}
	.bottom .botcus span img{
		max-width: 95px;
	}
	.bottom .botcus ul{
		margin: 10px 0px;
	}
	.bottom .botcus li{
		font-size: 14px;
		line-height: 22px;
		padding: 5px 0px;
	}
	.bottom .botcus li i{
		margin-right: 5px;
	}
	.copy{
		padding: 10px 0px 0;
		font-size: 14px;
		line-height: 20px;
		display: block;
	}
}
/*page*/
.ibanner{
	padding: 80px 0px 0px;
	position: relative;
}
.ibanner section{
	position: absolute;
	top: 0;
	left: 0;
	z-index: 3;
	width: 100%;
	height: 100%;
	padding: 80px 0px 0px;
	display: flex;
	flex-wrap: wrap;
	align-content: center;
	color: #fff;
}
.ibanner h2{
	width: 100%;
	text-align: center;
	font-size: 50px;
	font-weight: 600;
	line-height: 50px;
}
.ibanner h5{
	font-size: 40px;
	font-family: arial;
	text-align: center;
	width: 100%;
	margin: 10px 0px 0px;
	line-height: 40px;
}
.ititle{
	font-size: 36px;
	color: #000;
	line-height: 50px;
}
.iabout{
	padding: 40px 15%;
	display: flex;
}
.iabout .iabimg{
	width: 50%;
}
.iabout .iabimg img{
	display: block;
	box-shadow: 0px 0px 30px rgba(0, 0, 0, .1);
}
.iabout .iabimg .swiper-pagination-white span{
	background:#fff;
}
.iabout .iabtext{
	width: 50%;
	padding-left: 5%;
}
.iabout .iabtext section{
	font-size: 16px;
	line-height: 30px;
	margin: 15px 0px 0px;
}
@media (max-width:1440px) {
	.ibanner{
		padding: 60px 0px 0px;
	}
	.ibanner section{
		padding: 60px 0px 0px;
	}
	.ibanner h2{
		font-size: 35px;
		line-height: 35px;
	}
	.ibanner h5{
		font-size: 30px;
		line-height: 30px;
	}
	.ititle{
		font-size: 26px;
		line-height: 40px;
	}
	.iabout{
		padding: 60px 15%;
		align-items: center;
	}
	.iabout .iabtext section{
		font-size: 14px;
		line-height: 24px;
	}
}
@media (max-width:992px) {
	.ibanner{
		padding: 40px 0px 0px;
		overflow: hidden;
		height: 170px;
		display:flex;
		justify-content:center;
	}
	.ibanner img{
		width: 200%;
		max-width: 200%;
	}
	.ibanner section{
		padding: 40px 0px 0px;
	}
	.ibanner h2{
		font-size: 20px;
		line-height: 20px;
	}
	.ibanner h5{
		font-size: 14px;
		line-height: 20px;
	}
	.ititle{
		font-size: 18px;
		line-height: 30px;
	}
	.iabout{
		padding: 20px 15px;
		align-items: center;
		flex-wrap: wrap;
	}
	.iabout .iabimg{
		width: 100%;
		order: 2;
	}
	.iabout .iabtext{
		width: 100%;
		order: 1;
		padding: 0;
		margin: 0px 0px 15px;
	}
	.iabout .iabtext section{
		font-size: 14px;
		line-height: 24px;
		margin: 5px 0px 0px;
	}
	.iabout .iabimg img{
		box-shadow: 0px 0px 10px rgba(0, 0, 0, .05);
	}
}
.iwenhua{
	background-color: #f6f7f9;
	padding: 80px 15%;
}
.iwenhua ul{
	margin: 40px 0px 0px;
	display: flex;
	justify-content: space-between;
}
.iwenhua ul li{
	width: 24%;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	border-radius: 15px;
	overflow: hidden;
}
.iwenhua  dl{
	padding: 15% 10% 10%;
	height: 450px;
	color: #fff;
	display: flex;
	align-content: space-between;
	flex-wrap: wrap;
	transition: .3s;
}
.iwenhua li:hover dl{
	background-color: #15499a;
	cursor: pointer;
}
.iwenhua dt{
	font-size: 60px;
	line-height: 70px;
	width: 100%;
	margin: 0px 0px 10px;
}
.iwenhua dd{
	width: 100%;
}
.iwenhua dd h3{
	font-size: 30px;
	line-height: 50px;
}
.iwenhua dd section{
	font-size: 15px;
	line-height: 30px;
	height: 120px;
}
@media (max-width:1440px) {
	.iwenhua{
		padding: 60px 15%;
	}
	.iwenhua ul{
		margin: 30px 0px 0px;
	}
	.iwenhua ul li{
		border-radius: 10px;
	}
	.iwenhua  dl{
		height: 350px;
	}
	.iwenhua dt{
		font-size: 42px;
		line-height: 50px;
		margin: 0px 0px 10px;
	}
	.iwenhua dd{
		width: 100%;
	}
	.iwenhua dd h3{
		font-size: 22px;
		line-height: 30px;
	}
	.iwenhua dd section{
		font-size: 14px;
		line-height: 24px;
		height: 96px;
	}
}
@media (max-width:992px) {
	.iwenhua{
		padding: 20px 15px;
	}
	.iwenhua ul{
		margin: 15px 0px 0px;
		flex-wrap: wrap;
	}
	.iwenhua ul li{
		border-radius: 5px;
		width: 48%;
		margin-bottom: 15px;
	}
	.iwenhua  dl{
		height: 250px;
	}
	.iwenhua dt{
		font-size: 28px;
		line-height: 30px;
	}
	.iwenhua dd h3{
		font-size: 18px;
		line-height: 20px;
		margin: 0px 0px 15px;
	}
	.iwenhua dd section{
		font-size: 12px;
		line-height: 20px;
		height: 80px;
	}
}
.history{
	padding: 100px 15%;
}
.history .swiper{
	margin-top: 50px;
	padding-bottom: 70px;
}
.history .swiper-slide .xian{
	position: absolute;
	top: 50%;
	height: 2px;
	margin-top: -1px;
	width: 100%;
	z-index: 3;
	left: 0;
	display: flex;
	justify-content: space-between;
}
.history .swiper-slide .xian:before{
	content: '';
	height: 2px;
	width: 46%;
	background-color: #15499a;
}
.history .swiper-slide .xian:after{
	content: '';
	height: 2px;
	width: 46%;
	background-color: #15499a;
}
.history .swiper-slide .ihscon{
	height: 240px;
	display: flex;
	flex-wrap: wrap;
	align-content: flex-end;
}
.history .swiper-slide:nth-child(even) .ihscon{
	align-content: flex-start;
}
.history .swiper-slide:nth-child(even) .ihscon h3{
	order: 4;
}
.history .swiper-slide:nth-child(even) .ihscon h5{
	order: 3;
	padding: 0px 0px 20px;
}
.history .swiper-slide:nth-child(even) .ihscon section{
	display: flex;
	align-items: flex-end;
	justify-content: center;
}
.history .swiper-slide i{
	position: absolute;
	width: 14px;
	height: 14px;
	border-radius: 50%;
	background-color: #15499a;
	top: 50%;
	margin-top: -7px;
	left: 50%;
	margin-left: -7px;
}
.history .swiper-slide h3{
	font-size: 26px;
	font-weight: bold;
	color: #333;
	font-family: arial;
	text-align: center;
	line-height: 32px;
	width: 100%;
}
.history .swiper-slide h5{
	font-size: 20px;
	color: #15499a;
	line-height: 30px;
	padding: 20px 0px 0px;
	text-align: center;
	width: 100%;
}
.history .swiper-slide section{
	font-size: 15px;
	width: 100%;
	line-height: 26px;
	color: #333;
	text-align: center;
	height: 78px;
}
.history .swiper .swiper-button{
	top: auto;
	bottom: 0;
	margin-top: 0;
	width: 50px;
	height: 30px;
}
.history .swiper .swiper-button:before{
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: #15499a;
	transform: skewX(-20deg);
}
.history .swiper .swiper-button:after{
	color: #fff;
	font-size: 16px;
	position: relative;
	z-index: 3;
}
.history .swiper .swiper-button-next{
	right: 50%;
	margin-right: -50px;
}
.history .swiper .swiper-button-prev{
	left: 50%;
	margin-left: -50px;
}
@media (max-width:1440px) {
	.history{
		padding: 80px 15%;
	}
	.history .swiper{
		margin-top: 60px;
		padding-bottom: 60px;
	}
}
@media (max-width:992px) {
	.history{
		padding: 20px 15px;
	}
	.history .swiper{
		margin-top: 15px;
		padding-bottom: 40px;
	}
	.history .swiper-slide .ihscon{
		height: 140px;
		padding: 0;
		display: block;
	}
	.history .swiper-slide .xian{
		top: 30%;
		margin-top: -1px;
	}
	.history .swiper-slide i{
		top: 30%;
		margin-top: -7px;
		left: 50%;
		margin-left: -7px;
	}
	.history .swiper-slide:nth-child(even) .ihscon{
		align-content: flex-end;
	}
	.history .swiper-slide:nth-child(even) .ihscon h3{
		order: 1;
	}
	.history .swiper-slide:nth-child(even) .ihscon h5{
		order: 2;
		padding: 20px 0px 0px;
	}
	.history .swiper-slide:nth-child(even) .ihscon section{
		order: 3;
		display: block;
	}
}
.ihonor{
	padding: 100px 15%;
	background: url(../images/hnbg.jpg) center no-repeat;
	background-size: cover;
}
.ihonor .swiper{
	margin: 60px 0px 0px;
	padding: 40px 0px;
}
.ihonor .swiper .swiper-slide{
	padding: 35px 0px;
	transform: scale(1);
	transition: .2s;
}
.ihonor .swiper .swiper-slide i{
	display: block;
	background-color: #fff;
}
.ihonor .swiper .swiper-slide i img{
	opacity: .3;
}
.ihonor .swiper .swiper-slide-active,.ihonor .swiper .swiper-slide-duplicate-active{
	transform: scale(1.3);
	z-index: 6;
}
.ihonor .swiper .swiper-slide-active i img,.ihonor .swiper .swiper-slide-duplicate-active i img{
	opacity: 1;
	box-shadow: 0px 0px 30px rgba(0, 0, 0, .2);
}
.ihonor .swiper .swiper-button{
	width: 60px;
	height: 60px;
	background: url(../images/pdjt.png) center no-repeat;
	background-size: 100% auto;
	opacity: .8;
}
.ihonor .swiper .swiper-button:after{
	display: none;
}
.ihonor .swiper .swiper-button-next{
	right: 2%;
	transform: rotate(180deg);
}
.ihonor .swiper .swiper-button-prev{
	left: 2%;
}
.network{
	background: url(../images/ntbg.jpg) center no-repeat;
	background-size: cover;
	padding: 100px 25%;
}
.network h2{
	font-size: 24px;
	line-height: 36px;
	color: #000;
	margin: 80px 0px 30px;
}
.network section{
	font-size: 18px;
	color: #000;
	line-height: 30px;
}
@media (max-width:1440px) {
	.ihonor .swiper .swiper-button{
		width: 40px;
		height: 40px;
	}
	.network h2{
		font-size: 20px;
		line-height: 26px;
		margin: 60px 0px 20px;
	}
	.network section{
		font-size: 15px;
		line-height: 30px;
	}
}
@media (max-width:992px) {
	.ihonor{
		padding: 20px 15px;
	}
	.ihonor .swiper{
		margin: 20px 0px 0px;
		padding: 20px 0px;
	}
	.ihonor .swiper .swiper-slide{
		padding: 0px 0px;
	}
	.ihonor .swiper .swiper-slide i img{
		opacity: 1;
	}
	.ihonor .swiper .swiper-slide-active,.ihonor .swiper .swiper-slide-duplicate-active{
		transform: scale(1);
	}
	.ihonor .swiper .swiper-slide-active i img,.ihonor .swiper .swiper-slide-duplicate-active i img{
		opacity: 1;
		box-shadow: 0px 0px 0px rgba(0, 0, 0, .2);
	}
	.network{
		padding: 50px 15px;
	}
	.network h2{
		font-size: 18px;
		line-height: 20px;
		margin: 40px 0px 20px;
	}
	.network section{
		font-size: 13px;
		line-height: 24px;
	}
}
.iproduct{
	padding: 80px 15%;
	display: flex;
	justify-content: space-between;
	background: linear-gradient(to bottom left, #ebf5fe, #ffffff);
}
.iproduct .ipdlanmu{
	width: 20%;
	min-width:170px;
}
.iproduct .ipdlist,.iproduct .ipdcont{
	width: 76%;
	max-width:calc(100% - 200px);
}
.isearch form{
	background-color: #15499a;
	padding: 15px;
	display: flex;
}
.isearch form input{
	border: 0;
	padding: 5px 10px;
	line-height: 24px;
	font-size: 14px;
	background: #fff;
	outline: none;
	width: 80%;
}
.isearch form button{
	height: 34px;
	width: 20%;
	border: 0;
	background: #fff;
	font-size: 14px;
	transition: .3s;
	font-size: 18px;
}
.ipdlanmu dl{
	margin: 5px 0px 0px;
}
.ipdlanmu dl dt{
	color: #fff;
	font-size: 22px;
	line-height: 32px;
	padding: 15px;
	background-color: #15499a;
	font-weight: 600;
	display:flex;
	align-items:center;
	justify-content:space-between;
}
.ipdlanmu dl dt span{
	display:none;
}
.ipdlanmu dl dd{
	padding-top: 1px;
}
.ipdlanmu dl dd a{
	display: block;
	color: #000;
	background-color: #E9EDF0;
	line-height: 24px;
	padding: 10px 15px;
	transition: .3s;
	position: relative;
}
.ipdlanmu dl dd a:after{
	content: '';
	position: absolute;
	right: 15px;
	top: 50%;
	margin-top: -5px;
	width: 10px;
	height: 10px;
	border-right: 2px solid #fff;
	border-bottom: 2px solid #fff;
	transform: rotate(-45deg);
	opacity: 0;
}
.ipdlanmu dl dd a:hover,.ipdlanmu dl dd.on a{
	color: #fff;
	background-color: #15499a;
}
.ipdlanmu dl dd:hover a:after,.ipdlanmu dl dd.on a:after{
	opacity: 1;
}
.iproduct .ipdlist ul{
	display: flex;
	flex-wrap: wrap;
	margin-right: -10px;
	margin-left: -10px;
}
.iproduct .ipdlist ul li{
	width: 33.333333333333333%;
	padding: 0px 10px;
	margin-bottom: 20px;
}
.iproduct .ipdlist ul li a i{
	display: block;
	background-color: #fff;
	border-radius: 10px;
	box-shadow: 0px 0px 5px rgba(0, 0, 0, .02);
	position:relative;
}
.iproduct ul li a i:after{
	content:"";
	position:absolute;
	width:100%;
	height:100%;
	top:0;
	left:0;
	z-index:3;
	background:rgb(21,73,154) url(../images/add.svg) center no-repeat;
	background-size:60px 60px;
	transition:.3s;
	transform:scale(0);
	opacity:.7;
}
.iproduct ul li a:hover i:after{
	transform:scale(1);
}
.iproduct .ipdlist ul li a span{
	color: #000;
	font-size: 18px;
	padding: 15px 0px 5px;
	text-align:center;
	line-height: 30px;
	display: block;
	transition: .5s;
}
.iproduct .ipdlist ul li a:hover span{
	color:#0369b1;
}
@media (max-width:1440px) {
	.ipdlanmu dl dt{
		font-size: 18px;
		padding: 12px;
	}
	.iproduct .ipdlist ul li a i{
		border-radius: 5px;
		box-shadow: 0px 0px 5px rgba(0, 0, 0, .05);
	}
	.iproduct .ipdlist ul li a span{
		font-size: 14px;
		background-size: 18px auto;
	}
	.iproduct .ipdlist ul li a:hover span{
		background-size: 18px auto;
	}
}
@media (max-width:992px) {
	.iproduct{
		padding: 20px 15px;
		flex-wrap:wrap;
	}
	.iproduct .ipdlanmu{
		width: 100%;
		min-width:100%;
	}
	.iproduct .ipdlist,.iproduct .ipdcont{
		width: 100%;
		max-width:100%;
	}
	.isearch form{
		padding: 10px;
	}
	.isearch form input{
		padding: 5px 10px;
		line-height: 20px;
		font-size: 12px;
	}
	.isearch form button{
		height: 30px;
	}
	.ipdlanmu dl{
		position:relative;
	}
	.ipdlanmu dl section{
		position:absolute;
		width:100%;
		top:100%;
		left:0;
		z-index:3;
		background:#fff;
		display:none;
	}
	.ipdlanmu dl .mbst{
		display:flex;
		flex-wrap:wrap;
		justify-content:space-between;
		background:#fff;
	}
	.ipdlanmu dl dt{
		font-size: 14px;
		padding: 5px 10px;
	}
	.ipdlanmu dl dt span{
		display:block;
		font-size:24px;
		padding:0px 10px;
		line-height:32px;
	}
	.ipdlanmu dl dd{
		width:49.8%;
	}
	.iproduct .ipdlist ul{
		margin-top:15px;
		margin-right: -5px;
		margin-left: -5px;
	}
	.iproduct .ipdlist ul li{
		width:50%;
		padding:0px 5px;
		margin-bottom:10px;
	}
	.iproduct .ipdlist ul li a i{
		border-radius: 0px;
		box-shadow: none;
		border:1px solid rgba(0,0,0,.1);
	}
	.iproduct .ipdlist ul li a span{
		font-size: 14px;
		background-size: 10px auto;
		padding:10px 0px 0px;
	}
	.iproduct .ipdlist ul li a:hover span{
		background-size: 10px auto;
	}
}
.iproduct .ipdcont{
	display:flex;
	justify-content:space-between;
	align-items:flex-start;
	flex-wrap:wrap;
}
.iproduct .ipdcont .swiper{
	width:50%;
	border:1px solid #ddd;
	background:#fff;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none; 
}
.iproduct .ipdcont .ipdinfo{
	width:50%;
	padding:0px 0px 0px 40px;
}
.iproduct .ipdcont .swiper .swiper-slide img{
	width:100%;
	height:auto;
}
.iproduct .ipdinfo h2{
	font-size:26px;
	line-height:36px;
	border-bottom:1px solid #ddd;
	padding:0px 0px 10px;
	color:#000;
}
.iproduct .ipdinfo section{
	font-size:16px;
	color:#666;
	line-height:34px;
	margin:15px 0px 0px;
}
.iproduct .ipdcont .ipddetail{
	width:100%;
	margin:40px 0px 0px;
	font-size:15px;
	line-height:32px;
	color:#333;
}
.iproduct .ipdcont .ipddtit{
	border-bottom:2px solid #15499a;
	display:flex;
	margin:0px 0px 30px;
} 
.iproduct .ipdcont .ipddtit p{
	color:#fff;
	background:#15499a;
	line-height:20px;
	font-size:16px;
	font-weight:bold;
	padding:10px 30px;
}
.iproduct .ipdcont .ipddtit img{
	max-width:100%;
	height:auto;
}
.text-secondary{
	display:flex;
	justify-content:space-between;
	border-top:1px solid #ddd;
	margin:30px 0px 0px;
	padding:20px 0px;
	width:100%;
	font-size:15px;
}
.text-secondary p{
	color:#000;
}
.text-secondary a{
	color:#15499a;
}
.text-secondary a:hover{
	text-decoration:underline;
}
.inews .ipdlist ol{
	display: flex;
	flex-wrap: wrap;
	margin-right: -10px;
	margin-left: -10px;
	margin-top: 40px;
}
.inews .ipdlist ol li{
	width: 33.333333333%;
	margin-bottom: 20px;
	padding: 0px 10px;
}
.inews .ipdlist ol li i{
	display: block;
	overflow: hidden;
}
.inews .ipdlist ol li i img{
	transition: 1s;
}
.inews .ipdlist ol li span{
	color: #333;
	text-align: center;
	line-height: 26px;
	font-size: 16px;
	background-color: rgba(0, 0, 0, .07);
	display: block;
	padding: 15px 0px;
	transition: .3s;
}
.inews .ipdlist ol li a:hover img{
	transform: scale(1.2);
}
.inews .ipdlist ol li a:hover span{
	color: #fff;
	background-color: #15499a;
}
@media (max-width:1200px) {
	.inews .ipdlist ol li span{
		line-height: 22px;
		font-size: 14px;
		padding: 12px 0px;
	}
}
@media (max-width:992px) {
	.inews .ipdlist ol{
		margin-right: -5px;
		margin-left: -5px;
		margin-top: 10px;
	}
	.inews .ipdlist ol li{
		width: 50%;
		margin-bottom: 10px;
		padding: 0px 5px;
	}
	.inews .ipdlist ol li span{
		line-height: 26px;
		font-size: 14px;
		padding: 10px 0px;
	}
	.text-secondary{
		display:block;
		margin:20px 0px 0px;
		padding:15px 0px;
		font-size:13px;
	}
	.text-secondary p{
		margin-bottom:5px;
	}
}
.pagelist{
	display: flex;
	justify-content: center;
	margin: 40px 0px 0px;
}
.pagelist a{
	border: 1px solid #ddd;
	line-height: 36px;
	padding: 0px 15px;
	margin: 0px 2px;
	color: #333;
	font-size: 14px;
	transition: .3s;
}
.pagelist a.page-num-current,.pagelist a:hover{
	color: #fff;
	border: 1px solid #15499a;
	background-color: #15499a;
}
@media (max-width:992px) {
	.pagelist{
		margin: 15px 0px 0px;
	}
	.pagelist a{
		line-height: 30px;
		padding: 0px 10px;
		font-size: 12px;
	}
}
.inews{
	padding: 80px 15%;
}
.ilanmuu dl{
	display: flex;
	justify-content: center;
}
.ilanmuu dl dd{
	padding: 0px 15px;
}
.ilanmuu dl dd a{
	font-size: 24px;
	line-height: 35px;
	border: 1px solid #ddd;
	color: #000;
	display: block;
	font-family:AkzidenzGrotesk;
	padding: 15px 35px;
	transition: .3s;
}
.ilanmuu dl dd.on a,.ilanmuu dl dd a:hover{
	color: #fff;
	background: #15499a;
	border-color: #15499a;
}
@media (max-width:1440px) {
	.ilanmuu dl dd a{
		font-size: 18px;
		line-height: 25px;
		padding: 12px 35px;
	}
}
@media (max-width:1200px) {
	.ilanmuu dl dd{
		padding:0px 10px;
	}
	.ilanmuu dl dd a{
		font-size: 16px;
		line-height: 25px;
		padding: 10px 30px;
	}
}
@media (max-width:992px) {
	.inews{
		padding: 20px 15px;
	}
	.ilanmuu dl{
		justify-content: space-between;
		flex-wrap:wrap;
	}
	.ilanmuu dl dd{
		padding: 0px 0px;
		width:49%;
		margin-bottom:7px;
	}
	.ilanmuu dl dd a{
		font-size: 14px;
		padding: 5px;
		text-align:center;
	}
	.ilanmuu dl dd.on a,.ilanmuu dl dd a:hover{
		color: #fff;
		background: #15499a;
		border-color: #15499a;
	}
}
.inews ul{
	display: flex;
	margin-top: 50px;
	margin-right: -15px;
	margin-left: -15px;
	margin-bottom: 40px;
}
.inews ul li{
	width: 25%;
	padding: 0px 15px;
}
.inews ul li a img{
	width: 100%;
}
.inews ul li a p{
	font-size: 16px;
	color: #999999;
	line-height: 24px;
	font-family: arial;
}
.inews ul li a h4{
	font-size: 18px;
	line-height: 28px;
	height: 56px;
	color: #000;
	overflow: hidden;
	margin: 10px 0px;
	transition: .3s;
}
.inews ul li a span{
	font-size: 15px;
	font-weight: 300;
	line-height: 30px;
	color: #333;
	display: block;
	margin: 15px 0px 0px;
	display: flex;
	align-items: center;
}
.inews ul li a span:after{
	content: "";
	width: 8px;
	height: 8px;
	border-right: 1px #333 solid;
	border-bottom: 1px #333 solid;
	transform: rotate(-45deg);
	margin-left: 10px;
}
.inews ul li a i{
	display: block;
	overflow: hidden;
	max-height: 161px;
}
.inews ul li a i img{
	transition: 1s;
}
.inews ul li a:hover i img{
	transform: scale(1.2);
}
.inews ul li a:hover h4,.inews ul li a:hover span{
	color: #15499a;
}
.inews ul li a:hover span:after{
	border-color: #15499a;
}
.inews>ol li h4{
	font-size: 18px;
	line-height: 36px;
	color: #000;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
}
.inews>ol li section{
	font-size: 16px;
	line-height: 24px;
	color: #9b9b9b;
	margin: 5px 0px 20px;
}
.inews>ol li i{
	display: block;
	margin: 0px 0px 15px;
	overflow: hidden;
}
.inews>ol li h5{
	color: #6a6a6a;
	font-size: 14px;
	line-height: 24px;
}
.inews>ol li span{
	background: #15499a;
	color: #fff;
	font-size: 14px;
	width: 100px;
	height: 32px;
	line-height: 32px;
	text-align: center;
	margin: 15px 0px 0px;
	display: block;
}
.inews>ol li a img{
	transform: scale(1);
	transition: 1s;
}
.inews>ol li{
	margin-top: 20px;
}
.inews>ol li a{
	padding: 10px 20px 20px;
	display: block;
	border: 1px #ddd solid;
	position: relative;
	transition: .3s;
}
.inews>ol li a section{
	margin: 0px 0px 10px;
}
.inews>ol li:hover a{
	border: 1px solid #15499a;
	box-shadow: 0px 0px 15px rgba(0, 0, 0, .1);
}
.inews .ipmemo{
	margin: 40px 0px 0px;
	font-size: 16px;
	line-height: 32px;
}
@media (max-width:1440px) {
	.inews ul{
		margin-top: 30px;
		margin-right: -10px;
		margin-left: -10px;
		margin-bottom: 20px;
	}
	.inews ul li{
		width: 33.333333333%;
		padding: 0px 10px;
	}
	.inews ul li a p{
		font-size: 14px;
		line-height: 20px;
	}
	.inews ul li a h4{
		font-size: 16px;
		line-height: 24px;
		height: 48px;
	}
	.inews ul li a span{
		font-size: 13px;
		line-height: 26px;
		margin: 10px 0px 0px;
	}
	.inews ul li a span:after{
		width: 6px;
		height: 6px;
	}
	.inews>ol li h4{
		font-size: 16px;
		line-height: 32px;
	}
	.inews>ol li section{
		font-size: 14px;
		line-height: 22px;
		margin: 5px 0px 15px;
	}
	.inews>ol li i{
		margin: 0px 0px 10px;
	}
	.inews>ol li h5{
		font-size: 13px;
		line-height: 20px;
	}
}
@media (max-width:1200px) {
	.inews .ipmemo{
		margin: 30px 0px 0px;
		font-size: 14px;
		line-height: 28px;
	}
}
@media (max-width:992px) {
	.inews .ipmemo{
		margin: 15px 0px 0px;
		font-size: 14px;
		line-height: 26px;
	}
	.inews ul{
		display:none;
	}
	.inews>ol li{
		margin:0px 0px 10px;
	}
	.inews>ol li h4{
		font-size: 14px;
		line-height: 22px;
	}
	.inews>ol li a{
		padding: 5px 10px;
	}
	.inews>ol li a section{
		font-size: 13px;
		line-height: 20px;
		margin: 5px 0px;
		display: -webkit-box;  
		-webkit-box-orient: vertical;  
		-webkit-line-clamp: 2;
		overflow: hidden;  
		text-overflow: ellipsis;  
		white-space: normal;
	}
	.inews>ol li i{
		margin: 0px 0px 5px;
	}
	.inews>ol li h5{
		font-size: 12px;
		line-height: 20px;
	}
	.inews>ol li span{
		display:none;
	}
}
.idown{
	padding: 80px 15%;
}
.idown ul{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: 40px 0px 0px;
}
.idown ul li{
	width: 49%;
	margin-bottom: 15px;
}
.idown ul li a{
	display: flex;
	border: 1px solid rgba(0, 0, 0, .1);
	justify-content: space-between;
	align-items: center;
	padding: 10px 15px;
	transition: .3s;
}
.idown ul li a p{
	font-size: 16px;
	color: #333;
	line-height: 36px;
}
.idown ul li a i{
	font-size: 20px;
	font-weight: 600;
	color: #000;
}
.idown ul li a:hover{
	background-color: #15499a;
	border: 1px solid #15499a;
}
.idown ul li a:hover p,.idown ul li a:hover i{
	color: #fff;
}
@media (max-width:992px) {
	.idown{
		padding: 20px 15px;
	}
	.idown ul{
		margin: 5px 0px 0px;
	}
	.idown ul li{
		width: 100%;
		margin-bottom: 5px;
	}
	.idown ul li a{
		padding: 6px 10px;
	}
	.idown ul li a p{
		font-size: 14px;
		line-height: 30px;
	}
	.idown ul li a i{
		font-size: 18px;
	}
}
.icontact{
	padding: 80px 0 0;
}
.icontact .iconour{
	margin-top: 80px;
	background-color: #15499a;
	padding: 30px 15%;
	color: #fff;
}
.icontact .iconour ul{
	display: flex;
	justify-content: space-between;
}
.icontact .iconour ul li{
	width: 33%;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.icontact .iconour ul li span{
	width: 70px;
	height: 70px;
	border-radius: 50%;
	background-color: #fff;
	text-align: center;
	line-height: 70px;
	color: #000;
	font-size: 30px;
}
.icontact .iconour ul li section{
	width: calc(100% - 100px);
}
.icontact .iconour ul li h5{
	font-size: 18px;
	font-weight: bold;
	line-height: 28px;
}
.icontact .iconour ul li p{
	font-size: 14px;
	line-height: 30px;
}
.imap{
	height: 500px;
}
@media (max-width:992px) {
	.icontact{
		padding: 20px 15px;
	}
	.icontact .iconour{
		margin-top: 10px;
		background-color: #15499a;
		padding: 15px;
		color: #fff;
	}
	.icontact .iconour ul{
		flex-wrap:wrap;
	}
	.icontact .iconour ul li{
		width: 100%;
		padding:10px 0px;
	}
	.icontact .iconour ul li span{
		width: 40px;
		height: 40px;
		line-height: 40px;
		font-size: 20px;
	}
	.icontact .iconour ul li section{
		width: calc(100% - 50px);
	}
	.icontact .iconour ul li h5{
		font-size: 16px;
		line-height: 22px;
	}
	.icontact .iconour ul li p{
		font-size: 14px;
		line-height: 20px;
	}
	.imap{
		height: 300px;
	}
}
.icontact .icontwo{
	background:rgba(0,0,0,.05);
	color:#000;
	margin-top:0;
}
.icontact .icontwo ul li span{
	background:#15499a;
	color:#fff;
}
.ijoin{
	padding: 40px 15%;
	display: flex;
	justify-content: space-between;
}
.ijoin ul{
	width: 49%;
}
.ijoin ul .h2{
	text-align: center;
	font-size: 20px;
	line-height: 30px;
	background-color: #15499a;
	color: #fff;
	padding: 10px 0px;
}
.ijoin ul li{
	border: 1px solid #ddd;
	padding: 10px 20px;
	border-top: 0;
}
.ijoin ul li h4{
	font-size: 18px;
	color: #000;
	line-height: 30px;
	padding: 0px 0px;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	cursor: pointer;
}
.ijoin ul li h4 p{
	padding-left: 20px;
}
.ijoin ul li h4 p:before{
	content: "";
	width: 4px;
	height: 10px;
	background-color: #15499a;
	position: absolute;
	top: 50%;
	margin-top: -5px;
	left: 0;
}
.ijoin ul li h4:after{
	content: '';
	border-right: 2px solid #999;
	border-bottom: 2px solid #999;
	width: 12px;
	height: 12px;
	transform: rotate(45deg);
}
.ijoin ul li section{
	display: none;
	font-size: 14px;
	line-height: 26px;
	color: #999;
	padding: 10px 10px 10px 20px;
}
.inewsd{
	padding: 60px 15%;
}
.inewsd .intit{
	font-size:24px;
	color:#000;
	line-height:36px;
	border-bottom:1px solid #ddd;
	text-align:center;
	padding:0px 0px 15px;
}
.inewsd section{
	line-height:34px;
	font-size:16px;
	margin:30px 0px 0px;
	padding:0px 10px;
}
.inewsd section .nsimgbox{
	display:flex;
	flex-wrap:wrap;
	justify-content:space-between;
	padding:10px 0px 0;
}
.inewsd section .nsimgbox img{
	width:49%;
	margin-bottom:10px;
}
@media (max-width:1200px) {
	.ijoin ul .h2{
		font-size: 18px;
		line-height: 24px;
	}
	.ijoin ul li h4{
		font-size: 16px;
		line-height: 26px;
	}
	.ijoin ul li h4 p{
		padding-left: 15px;
	}
}
@media (max-width:992px) {
	.ijoin{
		padding: 5px 0px;
		flex-wrap:wrap;
	}
	.ijoin ul{
		width: 100%;
		margin-bottom:10px;
	}
	.ijoin ul .h2{
		font-size: 16px;
		line-height: 20px;
		padding: 10px 0px;
	}
	.ijoin ul li{
		padding: 10px;
	}
	.ijoin ul li h4{
		font-size: 14px;
		line-height: 20px;
	}
	.ijoin ul li h4 p{
		padding-left: 10px;
	}
	.ijoin ul li h4 p:before{
		width: 3px;
	}
	.ijoin ul li h4:after{
		width: 8px;
		height: 8px;
	}
	.ijoin ul li section{
		font-size: 13px;
		line-height: 22px;
		padding: 10px;
	}
	.inewsd{
		padding: 60px 15%;
	}
	.inewsd .intit{
		font-size:24px;
		color:#000;
		line-height:36px;
		border-bottom:1px solid #ddd;
		text-align:center;
		padding:0px 0px 15px;
	}
	.inewsd section{
		line-height:26px;
		font-size:14px;
		margin:30px 0px 0px;
		padding:0px 10px;
	}
	.inewsd section .nsimgbox img{
		width:100%;
	}
	.inewsd{
		padding: 20px 15px;
	}
	.inewsd .intit{
		font-size:16px;
		line-height:26px;
		padding:0px 0px 10px;
	}
	.inewsd section{
		line-height:24px;
		font-size:13px;
		margin:10px 0px 0px;
		padding:0px 0px;
	}
}