﻿





/*首页*/
.index_banner {
	overflow: hidden;
	position: relative;
	height:100vh;
}
.index_banner .swiper-container{
	height:100%;
}
.index_banner img {
	display: block;
	width: 100%;
}
.banner-bg {
	width: 100%;
	height: 100%;
	background-repeat:no-repeat;
	background-position:center;
	background-size:cover;
}
.banner_text {
	position: absolute;
	left: 0;
	right: 0;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
.banner_text img {
	display: block;
	margin:0 auto;
	max-width:100%;
	-webkit-transition: all 1s;
	transition: all 1s;
	opacity: 0;
	-webkit-transform: translateY(100%);
	transform: translateY(100%);
}
/* .banner1 .banner_text img {
	-webkit-transform: translateY(100%);
	transform: translateY(100%);
}
.banner2 .banner_text img {
	-webkit-transform: translateY(-100%);
	transform: translateY(-100%);
}
.banner3 .banner_text img {
	-webkit-transform: scale(0);
	transform: scale(0);
}
.banner4 .banner_text img {
	-webkit-transform: translateX(-100%);
	transform: translateX(-100%);
}
.banner5 .banner_text img {
	-webkit-transform: translateX(100%);
	transform: translateX(100%);
} */
.swiper-button-prev,.swiper-button-next,.swiper-pagination-bullet{outline: none;}
.index_banner .swiper-slide-active .banner_text img {
	opacity: 1;
	-webkit-transform: none;
	transform: none;
	-webkit-transition-delay: .5s;
	transition-delay: .5s;
}

.index_banner .swiper-button-prev,
.index_banner .swiper-button-next {
	width: 36px;
	height: 36px;
	margin-top: -18px;
	background-size: auto 20px;
	outline: none;
	opacity: 0.5;
}
.index_banner .swiper-button-prev {
	left: 0;
}
.index_banner .swiper-button-next {
	right: 0;
}
.index_banner .swiper-button-prev:hover,
.index_banner .swiper-button-next:hover{
	opacity: 0.8;
}
.index_banner .swiper-pagination{
	bottom:12%;
}
.index_banner .swiper-pagination-bullet{
	width:20px;
	height:4px;
	background:transparent;
	border-radius: 2px;
	margin:0 8px!important;
	opacity: 1;
	border:1px solid #fff;
}
.index_banner .swiper-pagination-bullet-active{
	background: #ff8b00;
    border-color: #ff8b00;
}
.index_banner .bottomPage{position:absolute;width:40px;height:41px;left:50%;margin-left:-20px;bottom:2%;background:url(../images/down.png) no-repeat center;background-size:auto 100%;z-index:2;animation: mymove2 1s alternate infinite;-webkit-animation: mymove2 1s alternate infinite;cursor: pointer;}
@keyframes mymove2{
		from{bottom:2%;}
		to{bottom:4%;}
	}
@-webkit-keyframes mymove2{
	from{bottom:2%;}
	to{bottom:4%;}
}
/*横屏*/
@media (max-width:767px) and (orientation:landscape){
	.banner_text img{max-width:80%;}
	.index_banner .swiper-pagination{display: none;}
}
@media (min-width: 768px) {
	.index_banner .swiper-pagination-bullet{
		width:30px;
	}
	.index_banner .swiper-button-prev,
	.index_banner .swiper-button-next {
		background-size:auto 36px;
	}
	.index_banner .swiper-button-prev {
		left: 1.5%;
	}
	.index_banner .swiper-button-next {
		right: 1.5%;
	}
}
@media (min-width:992px) {
	.index_banner .swiper-pagination-bullet{
		width:40px;
		height:6px;
		border-radius: 3px;
		margin:0 10px!important;
	}
}
@media (min-width:1450px) {
	.index_banner .swiper-pagination-bullet{
		width:60px;
		margin:0 15px!important;
	}
}
@media (min-width:1650px) {
	.index_banner .swiper-button-prev,
	.index_banner .swiper-button-next {
		width: 70px;
		height: 70px;
		margin-top: -35px;
		background-size: auto 60px;
	}
}
@media (min-width:1850px) {
	.index_banner .swiper-pagination-bullet{width:70px;}
}



.playMask{position: absolute;width:100%;height:100%;/* background:rgba(0,0,0,0.2) */;left:0;top:0;z-index: 2;}
.playMask>.play{display: block;width: 100%;height: 100%;background: url(../images/play.png) no-repeat center;background-size: 40px auto;cursor: pointer;}
.bannerVideos .modal-dialog{width:90%;display:flex;flex-direction:column;justify-content:center;min-height:100%;margin:0 auto;padding:15px;}
.bannerVideos .close{position:absolute;width:30px;height:30px;background-color:#225999;opacity:1;color:#fff;z-index:999;right:-12px;top:0;border-radius:50%;font-size:15px;line-height:30px;transition: all 0.5s;}
.bannerVideos .close:focus{outline:0}
.bannerVideos .close:hover{top:-3px;background-color:#162a88;}
.bannerVideos .close span{position:relative;font-weight:lighter;text-shadow:none}
.bannerVideos .modal-body{padding:0;}
.bannerVideos .modal-content{padding:15px;border:none;border-radius: 0;background:#fff;box-shadow: 0 0 0 rgba(0,0,0,0);padding-right:0;}
.bannerVideos video{display: block;width:100%;margin:0 auto;outline: none;}

.modal.fade .modal-dialog{
    -webkit-transition: -webkit-transform .3s ease-out;
    -o-transition: -o-transform .3s ease-out;
    transition: transform .3s ease-out;
    -webkit-transform: translate(0,-25%);
    -ms-transform: translate(0,-25%);
    -o-transform: translate(0,-25%);
    transform: translate(0,-25%);
}
.modal.in .modal-dialog{
	-webkit-transform: translate(0,0);
	-ms-transform: translate(0,0);
	-o-transform: translate(0,0);
	transform: translate(0,0);
}







/*动画*/
.fadeIn {
	opacity: 0;
	-webkit-transition: all 1s;
	transition: all 1s;
}
.fadeInUp {
	opacity: 0;
	-webkit-transform: translate3d(0,50px,0);
	transform: translate3d(0,50px,0);
	-webkit-transition: all .8s;
	transition: all .8s;
	-webkit-transition-delay: .2s;
	transition-delay: .2s;
}
.fadeInDown {
	-webkit-transform: translate3d(0, -100%, 0);
	transform: translate3d(0, -100%, 0);
	-webkit-transition: all 1s;
	transition: all 1s;
}
.fadeInLeft {
	opacity: 0;
	-webkit-transform: translate3d(-100%,0,0);
	transform: translate3d(-100%,0,0);
	-webkit-transition: all 1s;
	transition: all 1s;
}
.fadeInRight {
	opacity: 0;
	-webkit-transform: translate3d(100%,0,0);
	transform: translate3d(100%,0,0);
	-webkit-transition: all .8s;
	transition: all .8s;
}
.zoomIn {
	opacity: 0;
	-webkit-transform: scale3d(.3,.3,.3);
	transform: scale3d(.3,.3,.3);
	-webkit-transition: all .8s;
	transition: all .8s;
}
.animated {
	opacity: 1;
	-webkit-transform: none;
	transform: none;
}
