﻿.swiper-container {
    height: 440px;
}
.pagination {
  box-sizing: border-box;
  position: absolute;
  left: 50%;
  bottom: 24px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 91px;
  height: 20px;
  padding: 0 6px;
  background: rgba(0, 0, 0, 0.04);
  border-radius: 10px;
}
.pagination span {
  width: 8px;
  height: 8px;
  transition: all ease 0.3s;
  background: #fff;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.08);
  border-radius: 6px;
  opacity: 0.5;
  cursor: pointer;
}
.pagination span.swiper-active-switch {
  width: 24px;
  height: 8px;
  background: #fff;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.08);
  border-radius: 6px;
  opacity: 1;
}
.swiper-pagination-switch {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 10px;
  background: #999;
  margin: 0 3px;
  cursor: pointer;
}
.swiper-active-switch {
  background: #fff;
}
.swiper-slide {
	position: relative;
	opacity: 0;
	transition: opacity 0.7s ease-in-out;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}
.swiper-slide img {
  display: block;
  width: auto;
  max-width: 600px;
  max-height: 100%;
  transition: transform ease 0.3s;
}
.swiper-slide-active{
	opacity: 1;
}
.swiper-slide .img {
	position:absolute;
}
.inner {
	position: relative;
	display: block;
  overflow: hidden;
  width: 1200px;
  height: 100%;
  margin: 0 auto;
}
.loop {
	animation-iteration-count: infinite;
	animation-timing-function: linear;
}
.slide3 img {
    max-width: none !important;
}
/*自定义CSS动画*/
.swiper-slide .l1 {
  position: absolute;
  left: -50%;
}
.swiper-slide .r1 {
  position: absolute;
  right: -50%;
}
.moveRight {
  -webkit-animation-name: moveRight;
  animation-name: moveRight
}
.moveLeft{
  -webkit-animation-name: moveLeft;
  animation-name: moveLeft;
}
@-webkit-keyframes moveRight {
  0% { opacity: 0; left:-50%; }
  10% { opacity: 1; }
  100% { opacity: 1; left: 0; }
}
@keyframes moveRight{
  0% { opacity: 0; left:-50%; }
  10% { opacity: 1; }
  100% { opacity: 1; left: 0; }
}
@-webkit-keyframes moveLeft{
  0% { opacity:0; right: -50%; }
  10% { opacity: 1; }
  100% { opacity:1; right: 0; }
}
@keyframes moveLeft{
  0% { opacity:0; right: -50%; }
  10% { opacity: 1; }
  100% { opacity:1; right: 0; }
}