﻿.swiper-container-box{
	width: 100%;
	height: 700px;
	overflow: hidden;
}
.swiper-container{
	width: 100%;
	height: 100%;
}
.swiper-wrapper{
	width: 100%;
	height: 100%;
}
.swiper-slide{
	background: #999;
}
.banner{
	width: 100%;
	padding: 90px 0;
	position: relative;
}
.banner1{
	padding: 180px 0 90px 0;
}
.banner2{
	padding: 90px 0 180px 0;
}
.banner .banner-Img{
	width: 100%;
}
.banner1-title{
	width: 440px;
	height: 250px;
	padding: 70px 0 0 40px;
	background: #1B46A4;
	color: #FFF;
	position: absolute;
	z-index: 1;
	left: 20%;
	top: 60px;
}
.banner1-title h2{
	margin: 0 0 16px 0;
	font-size: 46px;
	line-height: 68px;
}
.banner1-title p{
	margin: 0 0 38px 0;
	font-size: 21px;
	line-height: 29px;
}
.banner2-title{
	width: 440px;
	height: 250px;
	padding: 70px 0 0 40px;
	background: #1B46A4;
	color: #FFF;
	position: absolute;
	z-index: 1;
	right: 20%;
	top: -20px;
}
.banner2-title h2{
	margin: 0 0 16px 0;
	font-size: 46px;
	line-height: 68px;
}
.banner2-title p{
	margin: 0 0 38px 0;
	font-size: 21px;
	line-height: 29px;
}
.more{
	width: 140px;
	height: 50px;
	border-radius: 25px;
	border: 1px solid #fff;
	line-height: 50px;
	text-align: center;
	cursor: pointer;
	transition: all 0.3s linear 0s;
	animation-duration: 0.8s; 
	animation-delay: 2s; 
	animation-iteration-count: infinite; 
	-webkit-animation-duration: 0.8s;
	-webkit-animation-delay: 2s; 
	-webkit-animation-iteration-count：infinite;
	color: #fff;
}
.more a{
	color: #fff;
	display: block;
	width: 100%;
	height: 100%;
}
.more:hover{
	background: #fff;
	color: #1B46A4;
	
}
.more:hover a{
	color: #1B46A4;
}
.banner-Img-bg-1{
	width: 100%;
	height: 700px;
	background: url(../image/banner1.png) no-repeat center center;
	background-size: cover;
}
.banner-Img-bg-2{
	width: 100%;
	height: 700px;
	background: url(../image/banner2.png) no-repeat center center;
	background-size: cover;
}
.swiper-slide{
	position: relative;
	overflow: hidden;
}
.swiper-slide-cards{
	width: 580px;
	height: 400px;
	position: absolute;
	right: 15%;
	top: 25%;
	z-index: 99;
}
.swiper-slide img{
	width: 100%;
	height: 100%;
	transform: scale(1.4);
	animation: gif 20s infinite linear;

}
.swiper-slide-cards-bg{
	width: 100%;
	height: 100%;
	background: linear-gradient( 90deg, #1B46A4 0%, rgba(27,70,164,0.4) 100%);
	opacity: 0.8;
	position: absolute;
	right: 0;
	top: 0;
	z-index: -1;
}
.swiper-slide-cards h2{
	font-weight: 500;
	font-size: 48px;
	color: #FFFFFF;
	line-height: 67px;
	text-align: left;
	font-style: normal;
	margin: 80px 0 16px 40px;
}
.swiper-slide-cards p{
	font-weight: 500;
	font-size: 21px;
	color: #FFFFFF;
	line-height: 29px;
	text-align: left;
	font-style: normal;
	margin: 0 0 0 40px;
}









@keyframes gif {
    0% {
        -webkit-transform: scale(1.4);
        transform: scale(1.4);
    }
    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
	100% {
	    -webkit-transform: scale(1.4);
	    transform: scale(1.4);
	}
}