﻿/* 视频容器 */
.video-container {
  text-align: center;
  width: 100%;
  max-width: 1024px;
  margin: 8px auto 0;
  position: relative;
  z-index: 100;
}

/* 视频包裹器 */
.video-wrapper {
  display: inline-block;
  width: 480px;
  height: 309px;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

/* 视频元素 */
.video-wrapper video {
  width: 100%;
  height: 100%;
  display: block;
  mix-blend-mode: screen;
}

/* 视频链接 */
.video-wrapper a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}

/* 视频链接悬停 */
.video-wrapper a:hover {
  transform: none;
}


