@charset "UTF-8";
body {
  background-color: #7cbfff;
}
body img {
  max-width: 100%;
}

a:hover {
  text-decoration: none;
}
h1{font-size:6em;}
marquee {
  border: 1px solid #e66465;
  padding: 10px 0;
  color: #e66465;
}
marquee a {
  color: #e66465;
}

.marquee {
  overflow: hidden;
  position: relative;
  padding: 10px 0;
  height: 42px;
  border: 1px solid #309c40;
  background-color: #c6e2cc;
  color: #309c40;
}
.marquee.marquee--h {
  height: 100px;
  border: 1px solid #337ab7;
  background-color: #b6d3f7;
  color: #167ac6;
}
.marquee .marquee_inner {
  position: absolute;
}
.marquee .marquee_inner.marquee_inner--v {
  white-space: nowrap;
  /*關鍵*/
  padding-left: 100%;
  /*關鍵*/
  -webkit-animation: marqueeV 20s linear infinite;
          animation: marqueeV 20s linear infinite;
}
.marquee .marquee_inner.marquee_inner--h {
  -webkit-animation: marqueeH 5s linear infinite;
          animation: marqueeH 5s linear infinite;
}
.marquee:hover .marquee_inner {
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}

@-webkit-keyframes marqueeV {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  100% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0);
  }
}

@keyframes marqueeV {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  100% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0);
  }
}
@-webkit-keyframes marqueeH {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  100% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%);
  }
}
@keyframes marqueeH {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  100% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%);
  }
}
header {
  position: relative;
  overflow: hidden;
  padding: 15% 0;
}

.header__text {
  position: relative;
  z-index: 1;
  padding: 0 0 30px 0;
  color: #fff;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.header__videoBackground {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
}
.header__videoBackground video {
  /*影片置中*/
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
}

.videoBox {
  position: relative;
  padding: 20px;
  margin: 20px 0;
  width: 100%;
  background: url("http://litpla.com/images/top/attractions-img-flame.png?hash=690a76f1a56ad071a7772830d0ed4304") left top repeat;
}
.videoBox:hover .videoBox__cover {
  opacity: 0;
}
.videoBox:hover .videoBox__info > * {
  opacity: 1;
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}

.videoBox__hover {
  position: relative;
}

.videoBox__cover {
  position: relative;
  width: 100%;
  opacity: 1;
  z-index: 1;
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
}

.videoBox__video {
  position: absolute;
  width: 100%;
  min-height: 100%;
  left: 0;
  top: 0;
}

.videoBox__info {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  color: #fff;
}
.videoBox__info > * {
  opacity: 0;
  -webkit-transform: translateX(-15px);
          transform: translateX(-15px);
}
.videoBox__info :first-child {
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.videoBox__info :nth-child(2) {
  -webkit-transition: all 0.4s 0.1s;
  transition: all 0.4s 0.1s;
}
.videoBox__info :nth-child(3) {
  -webkit-transition: all 0.2s 0.2s;
  transition: all 0.2s 0.2s;
}

@-webkit-keyframes stripe {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(46px);
            transform: translateX(46px);
  }
}

@keyframes stripe {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(46px);
            transform: translateX(46px);
  }
}