nav{
	position: fixed;
	z-index: 999;
	width: 100%;
	background-color: #080F40;
	top: 0;
}
nav .nav-box{
	display: flex;
	height: 80px;
	max-width: 1640px;	
	justify-content: space-between;
	margin: 0 auto;
	align-items: center;
}
nav .nav-box .logo-box{
	width: 160px;
}
nav .nav-box .logo-box img{
	width: 100%;
}
nav .nav-box ul{
	display: flex;
}
nav .nav-box ul li{
	font-size: 18px;
	padding: 0 30px;
	position: relative;
}
nav .nav-box ul li a{
	color: #fff;
	line-height: 80px;
}
nav .nav-box ul li::after{
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	background-color: #272B60;
	transition: all .5s;
	height: 0%;
}
nav .nav-box ul .active::after{
	height: 100%;
}
nav .nav-box ul li:hover::after{
	height: 100%;
}
/* 手机导航 */
nav .nav-box .sjnav_btn {
	width: 22px;
	position: relative;
	display: none;
}
nav .nav-box .sjnav_btn span {
	display: block;
	width: 100%;
	height: 2px;
	background: #fff;
	position: relative;
	vertical-align: middle;
	transition-delay: .3s, 0s;
	transition-duration: .3s, .3s;
}
nav .sjnav_btn span:before, nav .sjnav_btn span:after{
	content: "";
	position: absolute;
	display: inline-block;
	width: 100%;
	height: 2px;
	left: 0;
	background-color: #fff;
}
nav .sjnav_btn span:before{
	top: -6px;
	transition-property: top, transform;
	transition-delay: .3s, 0s;
	transition-duration: .3s, .3s;
}
nav .sjnav_btn span:after{
	bottom: -6px;
	width: 16px;
	transition-property: bottom, transform;
	transition-delay: .3s, 0s;
	transition-duration: .3s, .3s;
}
nav .sjnav_btn .active{
	background-color: transparent !important;
}
nav .sjnav_btn .active:before{
	top: 0px;
	transform: rotate(45deg);
	transition-delay: 0s, .3s;
}
nav .sjnav_btn .active:after{
	bottom: 0px;
	width: 100%;
	transform: rotate(-45deg);
	transition-delay: 0s, .3s;
}

@media (max-width: 1660px) {
	nav .nav-box{
		width: 90%;	
	}
}
@media (max-width: 1200px) {
	nav .nav-box ul li{
		padding: 0 20px;
		font-size: 16px;
	}
}
@media (max-width: 960px) {
	nav .nav-box{
		width: 90%;	
		height: 50px;
	}
	.sjnav_btn{
		display: block;
	}
	nav .nav-box ul{
		position: absolute;
		display: block;
		top: 50px;
		background-color: rgba(8, 15, 64, 0.85);
		height: calc(100vh - 50px);
		width: 60%;
		right: 0;
		transform: translate(100%, 0);
		transition: all .5s;
	}
	.nav_line{
		width: 6px;
		height: 0%;
		position: absolute;
		right: 8%;
		background-image: url(newsiconnav.jpg);
		z-index: 99;
		display: block;
		top: 0;
		background-size: 100%;
		transition-delay: .6s;
		transition-property: height;
		transition-duration: 1s;
	}
	nav .nav-box .activeul{
		transform: translate(0%);
	}
	nav .nav-box ul p{
		transform: translate(30px);
	}
	nav .nav-box .activeul p{
		transform: translate(0px);
		transition-delay: .6s;
		transition-property: transform;
		transition-duration: 1s;
	}
	nav .nav-box .activeul .nav_line{
		height: 100%;
	}
	nav .nav-box .activeul li:nth-child(2) p{
		transition-delay: .65s;
	}
	nav .nav-box .activeul li:nth-child(3) p{
		transition-delay: .7s;
	}
	nav .nav-box .activeul li:nth-child(4) p{
		transition-delay: .75s;
	}
	nav .nav-box .activeul li:nth-child(5) p{
		transition-delay: .8s;
	}
	nav .nav-box .activeul li:nth-child(6) p{
		transition-delay: .85s;
	}
	nav .nav-box ul li a{
		line-height: 72px;
		text-align: left;
	}
	nav .nav-box ul li{
		width: 100%;
		text-align: center;
		padding: 0;
		padding-left: 20%;
	}
	nav .nav-box ul .active{
		background-color: #272B60;
	}
	nav .nav-box ul li::after{
		display: none;
	}
	nav .nav-box .logo-box{
		width: 106px;
	}
	nav .nav-box .sjnav_btn{
		display: block;
	}
	
	
}

/* banner */
.swiper-container{
	width: 100%;
	height: calc(100vh - 80px);
	margin-top: 80px;
}
.swiper-container .swiper-slide{
	width: 100%;
	height: 100%;
	background-position: center;
	background-size: cover;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}
.swiper-container  .banner_sj{
	display: none;
}
.swiper-container .swiper-slide .text{
	margin-top: 300px;
	width: 50%;
	text-align: center;
	position: relative;
	z-index: 1;
}
.swiper-container .swiper-slide .img-box{
	width: 100%;
	height: 100%;
	transform: scale(1.2);
	position: absolute;
	transition: all 4s;
}
.swiper-container .swiper-slide .img-box img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.swiper-container .swiper-slide h1{
	font-size: 50px;
	font-family: srb;
	color: #fff;
	text-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
	transform: translate(0, 100%);
	transition: all .3s;
}
.swiper-container .swiper-slide p{
	font-size: 50px;
	color: #fff;
	text-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
	margin-top: 20px;
	transform: translate(0, 100%);
	transition: all .3s;
}




/* banner左右 */
.swiper-button-next,
.swiper-button-prev{
	right: 100px;
	background-image: none;
	font-family: dinr !important;
	color: #fff;
	font-size: 24px;
	height: 160px;
	line-height: 160px;
	cursor: pointer;
	width: 100px;
}
.swiper-button-prev{
	text-align: right;
}
.swiper-button-next::after,
.swiper-button-prev::after{
	content: '';
	width: 1px;
	height: 80px;
	background-color: #fff;
	display: block;
	position: absolute;
	bottom: 50%;
	right: 0px;
	transform-origin: center bottom; 
	transform:rotate(0deg);
	transition: all .5s;
}
.swiper-button-prev::after{
	left: 0px;
}
.swiper-button-next::before,
.swiper-button-prev::before{
	content: '';
	width: 1px;
	height: 80px;
	background-color: #fff;
	display: block;
	position: absolute;
	top: 50%;
	right: 0px;
	transform-origin: center top; 
	transform:rotate(0deg);
	transition: all .5s;
}
.swiper-button-prev::before{
	left: 0px;
}
.swiper-button-prev{
	left: 100px;
	background-image: none;
}
.swiper-button-next:hover::before{
	transform:rotate(16deg);
}
.swiper-button-next:hover::after{
	transform:rotate(-16deg);
	transition: all .5s;
}
.swiper-button-prev:hover::before{
	transform:rotate(-16deg);
}
.swiper-button-prev:hover::after{
	transform:rotate(16deg);
}
.swiper-pagination-banner{
	display: flex;
	justify-content: center;
	align-items: center;
}
.swiper-container-horizontal>.swiper-pagination-bullets{
	position: absolute;
	z-index: 99;
	left: 50%;
	transform: translate(-50%, -50%);
	bottom:40px;
	
}
.swiper-pagination-clickable .swiper-pagination-bullet{
	background-color: #080F40 !important;
	width: 8px;
	height: 8px;
	opacity: 1;
	transition: all .5s;
}
.swiper-pagination-clickable .swiper-pagination-bullet-active{
	background-color: transparent !important;
	border: 2px #0B0F40 solid;
	width: 12px;
	height: 12px;
	box-sizing: border-box;
}

/* 圆点 */
#fp-nav.fp-right{
	left: 20px;
	right: auto;
}
#fp-nav ul li{
	width: 12px;
	height: 12px;
	margin: 12px;
}
#fp-nav ul li a span{
	width: 12px;
	height: 12px;
	margin: 0;
	border: 2px #0B0F40 solid;
	box-sizing: border-box;
	background-color: transparent;
}
#fp-nav ul li .active span{
	background-color: #BBD4EF;
	margin: 0 !important;
	width: 12px !important;
	height: 12px !important;
	border: 2px #BBD4EF solid;
}
#fp-nav ul li a span:hover{
	width: 12px;
	height: 12px;
	margin: 0 !important;
}

@media (max-width: 1400px) {
	.swiper-container .swiper-slide h1{
		font-size: 40px;
	}
	.swiper-container .swiper-slide p{
		font-size: 40px;
	}
}
@media (max-width: 960px) {
	.swiper-button-next::before, .swiper-button-prev::before{
		display: none;
	}
	.swiper-button-next::after, .swiper-button-prev::after{
		display: none;
	}
	.swiper-button-next, .swiper-button-prev{
		right: 10px;
		width: auto;
		display: block;
		outline: none;
		height: auto;
		line-height: 24px;
		top: auto;
		bottom: 40px;
	}
	.swiper-button-prev{
		left: 10px !important;
		width: 20px;
	}
	.swiper-container .swiper-slide .text{
		width: 90%;
		margin-top: 0px;
	}
	.swiper-container .swiper-slide h1{
		font-size: 24px;
	}
	.swiper-container .swiper-slide p{
		font-size: 30px;
		margin-top: 10px;
	}
	.swiper-container{
		width: 100%;
		height: calc(100vh - 50px);
		margin-top: 50px;
	}
}



/* 第二屏 */
#section2{
	overflow: hidden;
}
#section2 .text{
	position: relative;
	z-index: 1;
}
.donghua{
	overflow: hidden !important;
}
#section2 .text h2{
	font-size: 54px;
	color: #080F40;
	font-weight: normal;
	text-align: center;
	display: block;
	transform: translate(0, 100%);
	transition: all .3s;
}
#section2 .text h1{
	font-size: 46px;
	color: #080F40;
	overflow: hidden;
	text-align: center;
	font-family: syb;
	font-weight: normal;
	transition: all .3s;
	transform: translate(0, 100%);
}
#section2 .text p{
	margin: 0 auto;
	text-align: center;
	font-size: 16px;
	color: #080F40;
	line-height: 32px;
	margin-top: 40px;
}
#section2 .copyright{
	position: absolute;
	left: 40px;
	bottom: 40px;
	font-size: 14px;
	z-index: 9;
}
#section2 .btn{
	width: 182px;
	line-height: 42px;
	background-color: #BBD4EF;
	margin: 0 auto;
	margin-top: 60px;
	text-align: center;
	box-sizing: border-box;
	cursor: pointer;
	position: relative;
	transform: translate(0, 200%);
	transition: all .5s;
}
#section2 .btn span{
	color: #080F40;
	font-size: 14px;
	position: relative;
	z-index: 1;
	transition: all .5s; 
}
#section2 .btn span i{
	font-size: 12px;
	display: inline-block;
	margin-top: -2px;
}
#section2 .btn:hover span{
	color: #fff;
}
#section2 .btn:hover .btn-bg{
	width: 100%;
}
#section2 .btn .btn-bg{
	width: 0;
	height: 100%;
	background-color: #080F40;
	position: absolute;
	top: 0;
	left: 0;
	transition: all .5s; 
}
#section2 .bg{
	font-size: 2400px;
	position: absolute;
	color: #FAFAFA;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	transition: all 4s;
}
#section2 .bgD{
	font-size: 2000px;
}

/* 固定滚动动画文字 */
.up{
	transform: translate(0) !important;
}
.btnUp{
	transform: translate(0) !important;
}

@media (max-width: 960px) {
	#section2 .bg{
		font-size: 800px;
	}
	#section2 .text h2{
		font-size: 36px;
	}
	#section2 .text h1{
		font-size: 28px;
	}
	#section2 .text{
		width: 90%;
		margin: 0 auto;
	}
	#section2 .text p{
		text-align: left;
		text-align: justify;
	}
	#section2 .text p .sjnone{
		display: none;
	}
	#section2{
		height: auto !important;
		padding: 100px 0;
	}
	.fp-tableCell{
		height: auto !important;
	}
	#section2 .copyright{
		display: none;
	}
	#section2 .bgD {
	    font-size: 800px;
	}
	#section2 .btn{
		transform: translate(0);
	}
}



/* 第三屏 */
#section3 .pro-box{
	height: calc(100vh - 80px);
	margin-top: 80px;
	display: flex;
	justify-content: space-between;
}
#section3 .pro-pic{
	width: calc(100% - 538px);
	height: 100%;
	overflow: hidden;
}
#section3 .pro-pic ul{
	height: 100%;
}
#section3 .pro-pic li{
	height: 100%;
	width: 100%;
	position: relative;
	overflow: hidden;
	display: none;
}
#section3 .pro-pic .active{
	display: block;
}
#section3 .pro-pic .text{
	position: relative;
	z-index: 1;
	margin-left: 10%;
	margin-top: 10%;
}
#section3 .pro-pic .text .eng{
	font-family: dinr;
	color: #FFFFFF;
	text-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
	text-transform: Uppercase;
	font-size:36px;
	transform: translate(0, 100%);
	transition: all .3s;
	display: block;
}
#section3 .pro-pic .text .line{
	display: block;
	width: 20px;
	height: 4px;
	background-color: #fff;
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
	margin: 12px 0;
}
#section3 .pro-pic .text h1{
	color: #FFFFFF;
	text-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
	font-size: 50px;
	transform: translate(0, 100%);
	transition: all .3s;
}
#section3 .pro-pic .text p{
	color: #FFFFFF;
	text-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
	font-size: 16px;
	margin-top: 30px;
	line-height: 28px;
}
#section3 .pro-pic li .img-box{
	width: 100%;
	height: 100%;
	transform: scale(1.2);
	transition: all 4s;
	position: absolute;
	top: 0;
	left: 0;
}
#section3 .pro-pic li .img-box img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
#section3 .pro-pic li .btn-box{
	display: flex;
	margin-top: 60px;
	transform: translate(0, 200%);
	transition: all .5s;
}
#section3 .pro-pic li .btn-box .btn{
	width: 146px;
	margin-right: 40px;
	line-height: 42px;
	background-color: #BBD4EF;
	text-align: center;
	box-sizing: border-box;
	cursor: pointer;
	transition: all .5s;
	z-index: 1;
	position: relative;
}
#section3 .pro-pic li .btn-box .btn:nth-child(1){
	background-color: #080F40;
	color: #fff;
}
#section3 .pro-pic li .btn-box .btn span {
    font-size: 14px;
    position: relative;
    z-index: 1;
    transition: all .5s;
	color: #333;
}
#section3 .pro-pic li .btn-box .btn01 span {
    
	color: #fff;
}
#section3 .pro-pic li .btn-box .btn span i{
	display: inline-block;
	margin-right: 6px;
}
#section3 .pro-pic li .btn-box .btn-bg{
	width: 0;
	height: 100%;
	background-color: #080F40;
	position: absolute;
	top: 0;
	left: 0;
	transition: all .5s;
}
#section3 .pro-pic li .btn-box .btn:hover .btn-bg{
	width: 100%;
}
#section3 .pro-pic li .btn-box .btn:nth-child(1) .btn-bg{
	background-color: #BBD4EF;
}
#section3 .pro-pic li .btn-box .btn:nth-child(1):hover span{
	color: #333;
}
#section3 .pro-pic li .btn-box .btn:nth-child(2):hover span{
	color: #fff;
}
.picD{
	transform: scale(1)!important;
}
/* 右侧 */
#section3 .pro-nav{
	width: 538px;
	box-sizing: border-box;
	padding: 0 60px;
	position: relative;
}
#section3 .pro-nav h1{
	font-size: 40px;
	color: #333;
	margin-top: 40px;
	line-height: 46px;
}
#section3 .pro-nav ul{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	position: relative;
	z-index: 1;
}
#section3 .pro-nav ul li{
	width: 172px;
	height: 160px;
	border: 2px #080F40 solid;
	margin-top: 30px;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	cursor: pointer;
	transition: all .5s;
}
#section3 .pro-nav ul li i{
	font-size: 80px;
}
#section3 .pro-nav ul li p{
	width: 100%;
}
#section3 .pro-nav ul li:hover{
	background-color: #080F40;
	color: #fff;
}
#section3 .pro-nav ul .active{
	background-color: #080F40;
	color: #fff;
}
#section3 .pro-nav .bg-logo{
	width: 538px;
	height: 420px;
	overflow: hidden;
	position: absolute;
	right: 0;
	bottom: 0;
}
#section3 .pro-nav .bg-logo i{
	font-size: 800px;
	color: #C7DCF1;
}

@media (max-width: 1500px) {
	#section3 .pro-nav{
		width: 460px;
	}
	#section3 .pro-pic{
		width: calc(100% - 460px);
	}
	#section3 .pro-nav .bg-logo{
		width: 460px;
	}
	#section3 .pro-nav ul li{
		width: 150px;
		height: 160px;
	}
	#section3 .pro-nav ul li i {
	    font-size: 60px;
	}
}
@media (max-width: 1200px) {
	#section3 .pro-nav{
		width: 400px;
	}
	#section3 .pro-pic{
		width: calc(100% - 400px);
	}
	#section3 .pro-nav .bg-logo{
		width: 400px;
	}
	#section3 .pro-nav ul li{
		width: 124px;
		height: 130px;
	}
	#section3 .pro-nav ul li i {
	    font-size: 60px;
	}
}
@media (max-width: 960px) {
	/*#section3{
		height: auto !important;
	}*/
	#section3 .pro-box{
		flex-wrap: wrap;
		margin-top: 0px;
	}
	#section3 .pro-pic{
		width: 100%;
		height: 400px;
	}
	#section3 .pro-pic .text .eng{
		font-size: 18px;
	}
	#section3 .pro-pic .text .line{
		height: 2px;
	}
	#section3 .pro-pic .text h1{
		font-size: 36px;
	}
	#section3 .pro-pic .text{
		margin-left: 5%;
	}
	#section3 .pro-nav{
		width: 100%;
		padding: 0 5%;
		overflow: hidden;
	}
	#section3 .pro-nav h1{
		font-size: 36px;
		margin-top: 0px;
	}
	#section3 .pro-nav .sjnone{
		display: none;
	}
	#section3 .pro-nav ul{
		flex-wrap: inherit;
	}
	#section3 .pro-nav ul li{
		margin-right: 30px;
	}
	#section3 .pro-nav .bg-logo{
		width: 40%;
		height: 200px;
	}
	#section3 .pro-nav .bg-logo i{
		font-size: 300px;
	}
	#section3 .pro-pic li .btn-box{
		transform: translate(0) !important;
	}
}


/* 第四屏 加盟 */
#section4{
	overflow: hidden;
}
#section4 .jiameng-box{
	width: 100%;
	height: calc(100vh - 80px);
	margin-top: 80px;
	display: flex;
	justify-content: center;
	align-items: center;
}
#section4 .jiameng-bg{
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	transform: scale(1.2);
	transition: all 4s;
}
#section4 .jiameng-bg img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
}
#section4 .jiameng-text{
	position: relative;
	z-index: 1;
}
#section4 .jiameng-text .donghua span{
	display: block;
	font-size: 50px;
	color: #fff;
	text-align: center;
	transform: translate(0, 100%);
	transition: all .3s;
}
#section4 .jiameng-text .donghua h1{
	display: block;
	font-size: 50px;
	font-family: syb;
	color: #fff;
	text-align: center;
	transform: translate(0, 100%);
	transition: all .3s;
}
#section4 .jiameng-text p{
	color: #fff;
	font-size: 18px;
	text-align: center;
}
#section4 .jiameng-text .line{
	display: block;
	width: 2px;
	height: 53px;
	background-image: url(jiamengline.png);
	margin: 60px auto;
}
#section4 .jiameng-box .btn-box{
	display: flex;
	transform: translate(0, 200%);
	transition: all .5s;
	justify-content: center;
	margin-top: 60px;
}
#section4 .jiameng-box .btn-box .btn{
	width: 146px;
	margin-right: 40px;
	line-height: 42px;
	background-color: #fff;
	text-align: center;
	box-sizing: border-box;
	cursor: pointer;
	transition: all .5s;
	z-index: 1;
	position: relative;
}

#section4 .jiameng-box .btn-box .btn span {
    font-size: 14px;
    position: relative;
    z-index: 1;
    transition: all .5s;
	color: #333;
}
#section4 .jiameng-box .btn-box .btn:nth-child(1){
	background-color: #080F40;
	color: #fff;
}
#section4 .jiameng-box .btn-box .btn:nth-child(1) span{
	color: #fff;
}
#section4 .jiameng-box .btn-box .btn span i{
	display: inline-block;
	margin-right: 6px;
}
#section4 .jiameng-box .btn-box .btn-bg{
	width: 0;
	height: 100%;
	background-color: #080F40;
	position: absolute;
	top: 0;
	left: 0;
	transition: all .5s;
}
#section4 .jiameng-box .btn-box .btn:hover .btn-bg{
	width: 100%;
}
#section4 .jiameng-box .btn-box .btn:nth-child(1) .btn-bg{
	background-color: #fff;
}
#section4 .jiameng-box .btn-box .btn:nth-child(1):hover span{
	color: #333;
}
#section4 .jiameng-box .btn-box .btn:nth-child(2):hover span{
	color: #fff;
}
#section4 .jiameng-box .btn-box .btn:nth-child(2){
	margin-right: 0;
}
#section4 .jiameng-logo{
	position: absolute;
	right: 60px;
	bottom: 60px;
	background-image: url(jiamengicon.png);
	background-position: center;
	background-size: 100%;
	width: 100px;
	height: 100px;
}
@media (max-width: 960px) {
	#section4{
		height: auto !important;
	}
	#section4 .jiameng-box{
		height: auto !important;
		margin-bottom: 80px;
	}
	#section4 .jiameng-text .donghua span{
		font-size: 36px;
	}
	#section4 .jiameng-text .donghua h1{
		font-size: 28px;
	}
	#section4 .jiameng-text .line{
		margin: 40px auto;
	}
	#section4 .jiameng-logo{
		display: none;
	}
	#section4 .jiameng-box .btn-box{
		transform: translate(0) !important;
	}
}

/* 第五屏 */
#section5{
	
}
#section5 .news-box{
	width: 100%;
	height: calc(100vh - 80px);
	margin-top: 80px;
	display: flex;
	justify-content: center;
	align-items: center;
	background-image: url(newsbg.png);
}
#section5  .news-box-box{
	width: 1640px;
	margin:  0 auto;
}
#section5 .news-box .eng{
	font-size: 42px;
	color: #333;
	font-family: dinr;
	text-align: center;
	display: block;
	margin: 0 auto;
	transform: translate(0, 100%);
	transition: all .3s;
}
#section5 .news-box h1{
	font-size: 54px;
	color: #333;
	font-family: syb;
	text-align: center;
	transform: translate(0, 100%);
	transition: all .3s;
}
#section5 ul{
	display: flex;
	margin-top: 60px;
}
#section5 ul li{
	width: 31.7%;
	cursor: pointer;
}
#section5 ul li:nth-child(2){
	margin: 0 2.45%;
}
#section5 ul li .img-box{
	width: 100%;
	height: 260px;
	overflow: hidden;
}
#section5 ul li .img-box img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(1);
	transition: all .5s;
}
#section5 ul li span{
	font-size: 14px;
	font-family: syb;
	color: #333;
}
#section5 ul li .img-box:hover img{
	transform: scale(1.1);
}
#section5 ul li .text{
	background-color: #EFF2F7;
	width: 100%;
	height: 190px;
	transition: all .5s;
	box-sizing: border-box;
	padding: 42px 34px;
	position: relative;
}
#section5 ul li .text i{
	display: block;
	width: 16px;
	height: 6px;
	background-image: url(newsicon.png);
	background-position: center;
	background-size: 100%;
	position: absolute;
	left: 34px;
	bottom: 42px;
}
#section5 ul li h3{
	font-family: syr;
	font-size: 16px;
	color: #333;
}
#section5 ul li:hover .text{
	background-color: #BBD4EF;
}
@media (max-width: 1650px) {
	#section5  .news-box-box{
		width: 90%;
		margin: 0 auto;
	}
}
@media (max-width: 1500px) {
	#section5 ul li .img-box{
		height: 210px;
	}
	#section5 ul li .text{
		height: 176px;
		padding: 24px 34px;
	}
	#section5 ul li .text i{
		left: 34px;
		bottom: 24px;
	}
}
@media (max-width: 1300px) {
	#section5 ul li .img-box{
		height: 160px;
	}
	#section5 ul li .text{
		height: 136px;
		padding: 10px 20px;
	}
	#section5 ul li .text i{
		left: 20px;
		bottom: 20px;
	}
}
@media (max-width: 960px) {
	#section5{
		height: auto !important;
	}
	#section5 .news-box{
		margin-top: 0px;
		height: auto;
		padding: 80px 0px;
	}
	#section5 .news-box h1{
		font-size: 36px;
	}
	#section5 .news-box .eng{
		font-size: 36px;
	}
	#section5 ul{
		flex-wrap: wrap;
	}
	#section5 ul li:nth-child(2) {
	    margin: 0;
		margin-bottom: 40px;
	}
	#section5 ul li{
		width: 100%;
		margin-bottom: 40px;
	}
}

/* 底部 */
.footer-bg{
	width: 100%;
	background-color: #F3F3F3;
	box-sizing: border-box;
	padding: 80px 0px;
	border-top: 1px #fff solid;
}
.footer-box{
	width: 1640px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
}
.footer-box .eng{
	font-size: 20px;
	font-family: dinb;
	text-transform: uppercase;
}
.footer-box .f-lianxi .btn{
	width: 146px;
	margin-right: 40px;
	line-height: 42px;
	background-color: transparent;
	text-align: center;
	box-sizing: border-box;
	cursor: pointer;
	transition: all .5s;
	position: relative;
	border: 2px #080F40 solid;
	margin-top: 20px;
}
.footer-box .f-lianxi .btn i{
	margin-right: 6px;
}
.footer-box .f-lianxi .btn-bg{
	width: 0;
	height: 100%;
	background-color: #080F40;
	position: absolute;
	top: 0;
	left: 0;
	transition: all .5s;
}
.footer-box .f-lianxi .btn span{
	color: #333;
	position: relative;
	z-index: 1;
}
.footer-box .f-lianxi .btn:hover .btn-bg{
	width: 100%;
}
.footer-box .f-lianxi .btn:hover span{
	color: #fff;
}

.f-phone-box .f-phone{
	font-size: 24px;
	font-family: dinb;
}
.f-phone-box .f-info{
	margin-top: 32px;
}
.f-phone-box .f-info .f-addr{
	margin-bottom: 8px;
	font-size: 14px;
	display: flex;
}
.f-phone-box  .f-addr b{
	font-weight: normal;
	font-family: syb;
	width: 80px;
	display: inline-block;
}

.f-ewm .f-ewm-box{
	display: flex;
}
.f-ewm .f-ewm-box .f-ewm-img{
	width: 118px;
	height: 118px;
}
.f-ewm .f-ewm-box .f-ewm-img img{
	width: 100%;
}
.f-ewm .f-ewm-box .text{
	width: 118px;
	height: 118px;
	background-color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-left: 10px;
	text-align: center;
}
.f-ewm .f-link{
	font-size: 14px;
	color: #333;
	text-align: right;
	display: block;
	margin-top: 32px;
}
.f-ewm .puan{
	text-align: right;
	font-size: 14px;
	color: #333;
	float: right;
}
.yqlj{
	display: flex;
	margin-top: 20px;
}
.yqlj p{
	font-size: 14px;
	color: #333;
}
.yqlj a{
	font-size: 14px;
	color: #333;
}
@media (max-width: 1650px) {
	.footer-box{
		width: 90%;
		margin: 0 auto;
	}
}
@media (max-width: 960px) {
	.f-ewm .puan{
		float: left;
	}
	.footer-bg{
		height: auto !important;
	}
	.footer-box{
		flex-wrap: wrap;
	}
	.f-phone-box{
		margin-top: 60px;
	}
	.f-ewm{
		margin-top: 60px;
		width: 100%;
	}
	.f-ewm .f-link{
		text-align: left;
	}
	.f-phone-box  .f-addr p{
		width: calc(100% - 80px);
	}
}