.video {
  width: 15.6rem;
  padding: .8rem 0;
  margin: 0 auto;
}

.video .video-con {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}

.video .video-con .video-item {
  width: 4.8rem;
  margin-bottom: .6rem;
  margin-left: .4rem;
}

.video .video-con .video-item .video-thumb {
  width: 100%;
  height: 3.2rem;
  position: relative;
}

.video .video-con .video-item .video-thumb img {
  width: 100%;
  height: 100%;
}

.video .video-con .video-item .video-thumb .video-menban {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
}

.video .video-con .video-item .video-thumb .video-menban i {
  font-size: .5rem;
  color: white;
}

.video .video-con .video-item .video-tit {
  margin-top: .2rem;
  height: .7rem;
  opacity: 1;
  font-size: .24rem;
  text-align: center;
  color: #333333;
  line-height: 1.5;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.video .video-main {
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.5);
  z-index: -1;
  opacity: 0;
  transition: 0s .2s z-index, .2s opacity;
}

.video .video-main .video-play {
  width: 60%;
  height: auto;
  position: relative;
}

.video .video-main .video-play .video-play-cha {
  position: absolute;
  right: 0;
  top: 0;
  cursor: pointer;
  transform: translate(50%, -50%);
  height: .5rem;
  width: .5rem;
  background: white;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.video .video-main .video-play .video-play-cha i {
  font-size: .3rem;
  color: black;
}

.video .video-main #videoPlay {
  width: 100%;
  height: auto;
  max-height: 80%;
}

.video .video-main-show {
  z-index: 10000;
  opacity: 1;
  transition: 0s z-index, .2s opacity;
}
