style.less 533 Bytes
.production-detail-box {
  background: #000;
}
.production-detail {
  position: relative;
  width: 100%;
  height: calc(100vh - 88px);
  &-item {
    position: relative;
    width: 100%;
    height: calc(100vh - 88px);
    &.hidden {
      display: none;
    }
  }

  &-video-box {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  &-video {
    width: 100%;
    max-width: 100%;
    max-height: 100%;
    height: auto;
  }
}