.swiper-container {
  display: inline-block;
  vertical-align: middle;
  width: 780px;
  height: 225px;
  padding: 20px 10px;
}
@media screen and (max-width: 960px) {
  .swiper-container {
    width: 580px;
  }
}
@media screen and (max-width: 768px) {
  .swiper-container {
    width: 380px;
  }
}
@media screen and (max-width: 640px) {
  .swiper-container {
    width: 180px;
  }
}
.swiper-slide {
  background: #fff;
  box-shadow: 0 2px 8px 2px rgba(0,0,0,.1);
  text-decoration: none;
  color: inherit;
  border: 2px solid transparent;
  box-sizing: border-box;
}
.swiper-slide:hover{
  border: 2px solid #76ad1c;
}
.swiper-slide .flatpic{
  width: 150px;
  height: 80px;
  margin-top: 15px;
  pointer-events: none;
}
.swiper-slide .infos{
  display: block;
  width: 100px;
  background: #dddddd;
  margin: auto;
  font-size: 10px;
  line-height: 12px;
  margin-top: 30px;
  padding-bottom: 10px;
  position: relative;
  pointer-events: none;
}
.swiper-slide .infos:after{
  content: "";
  width: 25px;
  height: 25px;
  background: url(../css/img/play.png) center no-repeat;
  background-size: cover;
  position: absolute;
  bottom: -15px;
  left: 0;
  right: 0;
  margin: auto;
}
.swiper-slide .infos .title{
  display: block;
  height: 30px;
  background: #76ad1c;
  color: #fff;
  font-family: fs_joey_bold;
  font-weight: bold;
  padding: 3px;
  box-sizing: border-box;
}
.swiper-slide .infos .desc{
  display: block;
  height: 53px;
  color: #595959;
  padding: 3px;
  border-top: 2px solid #fff;
  box-sizing: border-box;
  overflow: hidden;
}
.swiper-button{
  display: inline-block;
  width: 60px;
  height: 120px;
  margin-top: 0;
  background-size: contain;
  position: static;
  vertical-align: middle;
}
@media screen and (max-width: 768px) {
  .swiper-button{
    width: 50px;
  }
}
@media screen and (max-width: 640px) {
  .swiper-button{
    width: 40px;
  }
}
.swiper-button-next{
  background-image: url(../css/img/arrow_right.png)
}
.swiper-button-prev{
  background-image: url(../css/img/arrow_left.png)
}
.swiper-button-disabled{
  visibility: hidden;
}
