﻿@charset "utf-8";

.banner{ height: auto;}
.banner .swiper-slide img{ display:block; margin:0 auto;animation: bannerPulse 7s linear forwards;-webkit-animation: bannerPulse 7s linear forwards; width: 120%;}
.banner .swiper-pagination{ bottom:40px; width: 100%; margin:0 auto; position: absolute; display: flex; justify-content: center;}
.banner .swiper-pagination-bullet{ width:30px; height:5px; border-radius:2px; transition:all linear .2s; background:#ffffff; opacity:1; margin:0 7px !important;}
.banner .swiper-pagination-bullet-active{ opacity:1;background:#c8000b;}
@-webkit-keyframes bannerPulse {
  	0% {
    	-webkit-transform: scale(1.5);
    	transform: scale(1.5);
  	}
  	100% {
    	-webkit-transform: scale(1);
    	transform: scale(1);
  	}
}
@keyframes bannerPulse {
  	0% {
    	-webkit-transform: scale(1.5);
    	-ms-transform: scale(1.5);
    	transform: scale(1.5);
  	}
  	100% {
    	-webkit-transform: scale(1);
    	-ms-transform: scale(1);
    	transform: scale(1);
  	}
}