/* ========= Modal ========= */
.video-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
}
.video-modal.show {
  display: block;
}
.video-mask {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
}
.video-container {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 360px;
  height: 640px;
  transform: translate(-50%, -50%);
  background: #000;
  border-radius: 12px;
  overflow: hidden;
}
@media (max-width: 480px) {
  .video-container {
    width: 90vw;
    height: 160vw;
  }
}
/* iframe 包裹层 */
.iframe-wrapper {
  width: 100%;
  height: 100%;
}
.iframe-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
/* ========= Close Button ========= */
.close-btn {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 20;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  border: none;
  font-size: 18px;
  cursor: pointer;
}
/* ========= Controls ========= */
.video-controls {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 20;
}
.video-controls button {
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  border: none;
  padding: 6px 14px;
  border-radius: 20px;
  cursor: pointer;
}
.video-btn {
  display: flex;
  gap: 15px;
}
.video-btn .iconfont {
  font-size: 40px;
  color: red;
  cursor: pointer;
}
.video-btn .iconfont:hover {
  transform: scale(1.2);
}
/*# sourceMappingURL=video.css.map */