.content {
  position: relative;
  overflow: hidden;
}

.box-work {
  margin: 20px auto 30px;
  position: relative;
  overflow: hidden;
  height: calc(50vh);
  background: #3c3c3c;
}

.work {
  position: relative;
  width: 100%;
  margin: auto;
  height: calc(50vh);
}
.work img {
  margin: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: 100%;
  max-height: 100%;
  transform: translate(-50%, -50%);
}

.movie-box {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
}

.movie-box iframe,
.movie-box-container object,
.movie-box-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.top {
  margin-bottom: 30px;
  overflow: hidden;
  max-width: 900px;
}

.controlBar {
  position: absolute;
  width: 100%;
  height: 50px;
  bottom: 0px;
  border-top: 1px solid #ccc;
  z-index: 20;
}

.bnPrev,
.bnNext {
  position: absolute;
  width: 50px;
  height: 50px;
  bottom: 0;
  cursor: pointer;
  z-index: 30;
}
.bnPrev img,
.bnNext img {
  width: 100%;
}

.bnPrev {
  left: 0;
  opacity: 1;
  -moz-transition: opacity 0.2s cubic-bezier(0.25, 0.25, 0.75, 0.75);
  -o-transition: opacity 0.2s cubic-bezier(0.25, 0.25, 0.75, 0.75);
  -webkit-transition: opacity 0.2s cubic-bezier(0.25, 0.25, 0.75, 0.75);
  transition: opacity 0.2s cubic-bezier(0.25, 0.25, 0.75, 0.75);
}
.bnPrev:hover {
  opacity: 0.8;
}

.bnNext {
  right: 0;
  opacity: 1;
  -moz-transition: opacity 0.2s cubic-bezier(0.25, 0.25, 0.75, 0.75);
  -o-transition: opacity 0.2s cubic-bezier(0.25, 0.25, 0.75, 0.75);
  -webkit-transition: opacity 0.2s cubic-bezier(0.25, 0.25, 0.75, 0.75);
  transition: opacity 0.2s cubic-bezier(0.25, 0.25, 0.75, 0.75);
}
.bnNext:hover {
  opacity: 0.8;
}

.bn {
  position: absolute;
  bottom: 50px;
  right: 100px;
  opacity: 1;
  -moz-transition: opacity 0.2s cubic-bezier(0.25, 0.25, 0.75, 0.75);
  -o-transition: opacity 0.2s cubic-bezier(0.25, 0.25, 0.75, 0.75);
  -webkit-transition: opacity 0.2s cubic-bezier(0.25, 0.25, 0.75, 0.75);
  transition: opacity 0.2s cubic-bezier(0.25, 0.25, 0.75, 0.75);
}
.bn:hover {
  opacity: 0.9;
}

.icon {
  padding: 5px;
}
.icon img {
  width: 100%;
}
.icon:before {
  content: "";
  background: #bdbdbd;
  height: 1px;
  width: 10px;
  display: block;
  -moz-transform: translateX(-15px);
  -ms-transform: translateX(-15px);
  -webkit-transform: translateX(-15px);
  transform: translateX(-15px);
}

.name {
  position: absolute;
  bottom: 20px;
  left: 50%;
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.level1 {
  position: relative;
}
.level1 .intro-bg {
  background: url(../images/press/middle.jpg) no-repeat center center;
  height: 500px;
  background-attachment: fixed;
}
.level1 .bg-top {
  background-color: rgba(0, 0, 0, 0.3);
  height: 100%;
}
.level1 .intro {
  width: 60%;
  position: relative;
  top: -180px;
  margin: 0 auto -100px;
  padding: 100px;
  background-color: #4a4a4a;
  line-height: 1.5em;
}
.level1 .intro-title {
  margin-bottom: 20px;
  font-size: 20px;
  line-height: 1.4em;
}
.level1 .intro-text {
  margin-bottom: 30px;
  color: #bdbdbd;
}
.level1 .intro-line {
  background-color: #ccc;
  width: 30px;
  height: 1px;
  margin-bottom: 20px;
}
.level1 .intro-date {
  margin-bottom: 30px;
}
.level1 .intro-content {
  margin: 30px 0;
}

.move1 {
  opacity: 0;
  -moz-transform: translateY(80px);
  -ms-transform: translateY(80px);
  -webkit-transform: translateY(80px);
  transform: translateY(80px);
}

.move1 {
  -moz-transition: opacity 1s, -moz-transform 0.8s;
  -o-transition: opacity 1s, -o-transform 0.8s;
  -webkit-transition: opacity 1s, -webkit-transform 0.8s;
  transition: opacity 1s, transform 0.8s;
}
.move1.show {
  opacity: 1;
  -moz-transform: translate(0px, 0px);
  -ms-transform: translate(0px, 0px);
  -webkit-transform: translate(0px, 0px);
  transform: translate(0px, 0px);
}

.move2 {
  opacity: 0;
}

.move2 {
  -moz-transition: opacity 1s;
  -o-transition: opacity 1s;
  -webkit-transition: opacity 1s;
  transition: opacity 1s;
}
.move2.show {
  opacity: 1;
}

@media screen and (max-width: 1100px) {
  .name {
    width: 100%;
    text-align: center;
    top: -80px;
    bottom: unset;
  }
  .name::after {
    content: "";
    padding-top: 1px;
    width: 100%;
    margin-top: 20px;
    display: block;
    background-color: #666;
  }

  .level1 {
    height: unset;
  }
  .level1 .intro-bg {
    height: 450px;
  }
  .level1 .intro {
    width: 70%;
  }
}
@media screen and (max-width: 900px) {
  .bn {
    right: 5%;
  }

  .level1 .intro {
    top: -250px;
    margin: 0 auto -200px;
    width: 80%;
    padding: 80px 50px 80px;
  }
}
@media screen and (max-width: 720px) {
  .level1 .intro-bg {
    height: 400px;
  }
  .level1 .intro {
    width: 80%;
    padding: 80px 20px 80px;
  }

  .box-work {
    height: calc(45vh - 80px);
  }

  .work {
    height: calc(45vh - 80px);
  }

  .bnNext {
    right: -5px;
  }

  .bnPrev {
    left: -5px;
  }
}
@media screen and (max-width: 460px) {
  .level1 .intro-bg {
    height: 300px;
  }
  .level1 .intro {
    margin: 50px auto -200px;
  }

  .bnNext {
    right: -10px;
  }

  .bnPrev {
    left: -10px;
  }
}
