@charset "utf-8";

body {
  font-family: Arial, Helvetica, sans-serif;
  background-color: #eee;
}

h1 {
  text-shadow: 1px 1px #fff;
  color: #666;
  font-size: 3rem;
  text-align: center;
}

.mask {
  overflow: hidden;
}

.container {
  max-width: 900px;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.swiper {
}

.swiper__body {
  border: solid 1px #ddd;
}

.swiper__foot {
  margin-top: 1.5rem;
}

.swiper__imgWrap {
  display: flex;
  transition-duration: .3s;
}

.swiper__img {
  max-width: 100%;
  height: auto;
}

.swiper__foot {
  display: flex;
  justify-content: center;
}

.swiper__btn {
  margin-left: .5rem;
  margin-right: .5rem;
  padding: .5rem .7rem;
  font-size: 1rem;
  color: #fff;
  border: none;
  border-radius: 5px;
  background-color: #ccc;
  outline: none;
  transition-duration: .3s;
}

.swiper__btn:not([disabled]):hover {
  background-color: #ddd;
  cursor: pointer;
}

.swiper__btn:disabled {
  background-color: orange;
}