@charset "UTF-8";
/* ========================
  🎨 Design Tokens - Variables
======================== */
/* Color */
/* Breakpoints（對齊 Bootstrap） */
/* Font Size - Desktop */
/* Font Size - Mobile */
/* Font Family */
/* ========================
  🎬 Video Components
======================== */
.YT-video {
  overflow: hidden;
  padding: 5% 10%;
}
.YT-video a {
  display: block;
}
.YT-video a .Img .innerImg {
  padding-top: 56%;
}
.YT-video a i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 5rem;
  transition: all 0.5s;
}
.YT-video a:hover i {
  font-size: 6rem;
  transition: all 0.5s;
}

.video-player a {
  display: block;
}
.video-player a:hover .innerVideo i,
.video-player a:hover .innerVideo::before {
  opacity: 1;
  transition: opacity 0.5s;
}
.video-player .innerVideo {
  width: 100%;
  padding-top: 56%;
  overflow: hidden;
}
.video-player .innerVideo video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.video-player .innerVideo i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  color: #fff;
  transition: opacity 0.5s;
  z-index: 5;
  font-size: 3rem;
}
.video-player .innerVideo::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.3);
  transition: opacity 0.5s;
  opacity: 0;
}

.videoBlock {
  display: flex;
  width: 100%;
  position: relative;
  justify-content: center;
  align-items: center;
}
.videoBlock .videoArea {
  width: 100%;
  font-size: 0;
  position: relative;
}
.videoBlock .videoArea video {
  height: 100%;
}
.videoBlock .videoArea video source {
  width: 100%;
  height: 100%;
}
.videoBlock .soundControl {
  position: absolute;
  bottom: 3%;
  right: 5%;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  font-size: 14px;
  color: #E0DFC6;
  z-index: 9999;
}
.videoBlock .soundControl .soundBtn {
  font-size: 14px;
  color: #E0DFC6;
  font-weight: bold;
  cursor: pointer;
}
.videoBlock .soundControl .sound1,
.videoBlock .soundControl .sound2 {
  display: none;
}/*# sourceMappingURL=video.css.map */