#title {
  width: 100%;
  position: relative;
}
#title .container {
  height: 498px;
  background-color: black;
}
#title .container .contents {
  width: 980px;
  height: 100%;
  margin: 0 auto;
}
#title .container .contents .video_wrap {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 100%;
}
#title .container .contents .video_wrap::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-image: linear-gradient(to right, black 0%, rgba(0, 0, 0, 0.25) 25%, rgba(0, 0, 0, 0) 50%,rgba(0, 0, 0, 0.25) 75%, black 100%);
  z-index: 2;
}
#title .container .contents .video_wrap video {
  position: relative;
  width: 100%;
  height: 100%;
  transform: scale(1.35);
  z-index: 1;
}
#title .container .contents .video_wrap .video_title {
  position: absolute;
  top: 170px;
  left: 0;
  font-weight: 700;
  font-size: 40px;
  color: white;
  line-height: 1.450em;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.72);
  z-index: 2;
}
#title .container .contents .video_wrap .video_txt {
  display: -webkit-box;
  overflow: hidden;
  position: absolute;
  top: 239px;
  left: 0;
  max-width: 100%;
  font-size: 20px;
  color: white;
  line-height: 1.450em;
  text-overflow: ellipsis;
  z-index: 3;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  animation: tt2 1s 3s ease-in forwards;
  pointer-events: none;
}
#title .container .contents .video_wrap .control {
  display: inline-flex;
  position: absolute;
  top: 315px;
  left: 3px;
  z-index: 4;
}
#title .container .contents .video_wrap .control a.detail {
  display: block;
  padding: 5px 30px 5px 18px;
  font-size: 14px;
  color: #343434;
  line-height: 1.429em;
  background: rgba(255, 255, 255, 0.8) url('../img/arrow.png') calc(100% - 11px) center/8px 13px scroll no-repeat;
  border-radius: 15px;
}
#title .container .contents .video_wrap .control a.playbtn {
  display: block;
  margin-left: 10px;
  width: 28px;
  height: 28px;
  font-size: 0;
  background: transparent url('../img/pause.png') center/18px scroll no-repeat;
  border: 1px solid #979797;
  border-radius: 50%;
}
#title .container .contents .video_wrap .control a.playbtn.active {
  background: transparent url('../img/play.png') center/18px scroll no-repeat;
}
#title .container .contents .video_wrap .control a.soundbtn {
  display: block;
  margin-left: 10px;
  width: 28px;
  height: 28px;
  font-size: 0;
  background: transparent url('../img/soundOff.png') center/18px scroll no-repeat;
  border: 1px solid #979797;
  border-radius: 50%;
}
#title .container .contents .video_wrap .control a.soundbtn.active {
  background: transparent url('../img/soundOn.png') center/18px scroll no-repeat;
}