.inner_content {
  width: inherit;
  height: inherit;
  overflow: hidden;
  position: relative;
  background-color: #383c3e50;
}
.inner_content .swiper_inner_show {
  display: flex;
  position: absolute;
  left: 0;
  width: inherit;
  height: inherit;
}
.inner_content .swiper_inner_show .swiper_son {
  height: inherit;
  width: inherit;
  background-color: #383c3e30;
}
.inner_content .swiper_inner_show .swiper_son .swiper-slide {
  height: inherit;
  width: inherit;
}
.inner_content .swiper_inner_show .swiper_son .swiper-slide .swiper_image {
  width: 100%;
}
.inner_content .swiper_point {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 4vw;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.inner_content .swiper_point .point_swiper {
  height: 0.8vw;
  background-color: #888a8b;
  margin: 0 2.66666667vw;
  margin-top: 2.66666667vw;
  flex-shrink: 0;
  transition: all 0.3s;
  border-radius: 2px;
}
.inner_content .swiper_point .check {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.inner_content .swiper_point .check .inner {
  width: 0;
  height: 100%;
  background-color: #ffb137;
  animation: pointChange 3s linear;
  animation-delay: 0.1s;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 2px;
}
@keyframes pointChange {
  0% {
    width: 0px;
  }
  100% {
    width: 100%;
  }
}
.focus {
  display: none;
}
.left-button,
.right-button {
  position: absolute;
  width: 40px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  margin: auto;
  background: rgba(0, 0, 0, 0.5);
  color: white;
}
.left-button {
  left: 0px;
}
.right-button {
  right: 0px;
}
.left-button > div,
.right-button > div {
  width: 20px;
  height: 20px;
  border: solid 2px white;
  box-sizing: border-box;
  transform: rotateZ(45deg);
}
.left-button > div {
  border-top: none;
  border-right: none;
}
.right-button > div {
  position: absolute;
  border-bottom: none;
  border-left: none;
}
