.video-box {
  width: 100%;
  height: 100vh;
  overflow-x: hidden;
  background: #f5f5f5;
}
.video-view {
  width: 100%;
  background: #ffff;
  margin-bottom: 15px;
  /* border: 1px solid red; */
  /* box-sizing: border-box; */
}
.video-area {
  width: 100%;
  /* height: 220px; */
  position: relative;
  box-sizing: border-box;
  /* border: 1px solid lawngreen; */
}
.video-area video {
  width: 100%;
  /* height: 100%; */
  /* height: 220px; */
}
.video-area img {
  width: 40px;
  height: 40px;
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
}
.video-title {
  position: absolute;
  left: 10px;
  top: 10px;
  right: 20px;
  z-index: 99;
  color: red;
  font-size: 18px;
  font-weight: bold;
}
.video-name {
  display: flex;
  align-items: center;
  padding: 10px;
}
.video-name img {
  width: 30px;
  height: 30px;
  display: block;
  margin-right: 20px;
  border-radius: 50%;
}
/* loading */
.Loading {
  height: 150rpx;
  display: flex;
  align-items: center;
  justify-content: center;
}
.Loading image {
  display: block;
  width: 70rpx;
  height: 70rpx;
  animation: myfirst 1s infinite linear;
}
@keyframes myfirst {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}
