@charset "utf-8";
.content {
  padding: 30px 50px;
}
.graphic {
  overflow: hidden;
}
.graphic__list {
  margin-top: -30px;
  margin-left: -10px;
}
.graphic__list:after {
  content: "";
  display: block;
  clear: both;
}
.graphic__list > li {
  float: left;
  width: 280px;
  position: relative;
  margin-top: 30px;
  margin-left: 10px;
  border-radius: 2px;
  overflow: hidden;
  cursor: pointer;
  transform-origin: center top;
  opacity: 1;
  transform: rotate(deg);
  transition: opacity 500ms linear, transform 500ms cubic-bezier(0.3, 0, 0.64, 1.52);
}
.graphic__list > li:nth-child(1) {
  transition-delay: 100ms;
}
.graphic__list > li:nth-child(2) {
  transition-delay: 200ms;
}
.graphic__list > li:nth-child(3) {
  transition-delay: 300ms;
}
.graphic__list > li:nth-child(4) {
  transition-delay: 400ms;
}
.graphic__list > li:nth-child(5) {
  transition-delay: 500ms;
}
.graphic__list > li:nth-child(6) {
  transition-delay: 600ms;
}
.graphic__list > li:nth-child(7) {
  transition-delay: 700ms;
}
.graphic__list > li:nth-child(8) {
  transition-delay: 800ms;
}
.graphic__list > li:nth-child(9) {
  transition-delay: 900ms;
}
.graphic__list > li:nth-child(10) {
  transition-delay: 1000ms;
}
.graphic__list > li:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0,0,0,0.3);
  opacity: 1;
  transform: scale(1) rotate(0deg);
  transition: opacity 150ms linear;
}
.graphic__list > li:hover:before {
  opacity: 0;
}
.lb {
  display: none;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  text-align: center;
}
.lb__overlay {
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
}
.lb__img {
  width: auto;
  height: 80%;
  max-height: 720px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
  overflow: hidden;
}
.lb__img > img {
  display: block;
  width: auto;
  height: 100%;
  animation: swich 300ms ease-out 0ms 1 normal forwards;
}
.lb__img > img.position {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.lb__img__prev,
.lb__img__next {
  width: 20%;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: 2;
  background: rgba(0,0,0,0.4);
  cursor: pointer;
  opacity: 0;
  transition: opacity 300ms linear;
}
.lb__img__prev:hover,
.lb__img__next:hover {
  opacity: 1;
}
.lb__img__prev:before,
.lb__img__next:before {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  margin-top: -15px;
  color: #fff;
  font-size: 30px;
  text-align: center;
}
.lb__img__prev {
  left: 0;
}
.lb__img__next {
  right: 0;
}
.lb__nav {
  display: inline-block;
  position: absolute;
  top: 90%;
  left: 0;
  right: 0;
  padding-top: 10px;
  font-size: 0;
  text-align: center;
}
.lb__nav > li {
  display: inline-block;
  width: 15px;
  height: 15px;
  border-radius: 2px;
  background: #fff;
  cursor: pointer;
  opacity: 0.3;
}
.lb__nav > li + li {
  margin-left: 10px;
}
.lb__nav > li:hover {
  opacity: 1;
  transition: opacity linear 150ms;
}
.lb__nav > li.current {
  background: #f8c64a;
  opacity: 1;
}
.ready .graphic__list > li {
  opacity: 0;
  transform: rotate(20deg);
}
@keyframes show {
  from {
    opacity: 0;
    transform: rotate(20deg);
  }
}
@keyframes swich {
  from {
    opacity: 0;
    transform: scale(1.1);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
