/* 视频播放页面样式 */

/* 页面背景 */
body {
  background: #0a1e3d;
  color: #ffffff;
}

.layout-header{
  background: rgba(0, 0, 0, 0.2) !important;
}

/* 视频播放区域 */
.video-player-section {
  background: #0a1e3d;
  padding: 20px 0 80px;
}

/* 面包屑导航 */
.video-breadcrumb {
  padding: 0 0 10px;
  font-size: 14px;
  opacity: 0.9;
  color: #ffffff;
}

.video-breadcrumb .breadcrumb-link {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.video-breadcrumb .breadcrumb-link:hover {
  color: #ffefd0;
  text-decoration: none;
}

.video-breadcrumb .breadcrumb-link.current {
  color: #ffffff;
  cursor: default;
  opacity: 0.9;
}

.video-breadcrumb .breadcrumb-separator {
  margin: 0 8px;
  opacity: 0.7;
  color: #ffffff;
}

/* 视频标题 */
.video-title {
  font-size: 32px;
  font-weight: 500;
  color: #ffffff;
  margin: 10px 0 20px 0;
  padding: 0;
  line-height: 1.4;
}

/* 视频播放器容器 */
.video-player-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.video-container-inner {
  position: relative;
  width: 100%;
  max-width: 1200px;
  display: inline-block;
}

/* 视频播放器 */
.video-player {
  width: 100%;
  max-width: 1200px;
  min-height: 600px;
  border-radius: 8px;
  overflow: hidden;
  display: block;
  outline: none;
  background: #000000;
}

/* 播放按钮覆盖层 */
.video-play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  cursor: pointer;
  z-index: 10;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.video-play-overlay.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.play-button {
  background: #fff;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  padding: 0;
  outline: none;
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate(0px,-10px);
}

.play-button:hover {
  transform: scale(1.1);
}

.play-button:active {
  transform: scale(0.95);
}

.play-button svg {
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.play-button svg circle {
  transition: fill 0.3s ease;
}

.play-button:hover svg circle {
  fill: rgba(255, 255, 255, 1);
}

/* 响应式设计 */

@media (max-width: 768px) {
  .video-title {
    font-size: 24px;
  }

  .video-breadcrumb {
    font-size: 12px;
    padding: 15px 0 20px;
  }

  .video-player {
    min-height: auto;
  }
  .play-button svg{
    width: 75px;
    height: 75px;
  }
}



