@charset "UTF-8";
@import url(yh_reset.css);
html, body {
  height: 100%;
  background-color: #121720;
}

img {
  vertical-align: top;
}

.menubar {
  position: fixed;
  width: 100%;
  height: 45px;
  top: 0;
  left: 0;
  margin-left: 0;
  margin-top: 0;
  z-index: 10;
  background-color: #FFF;
}
.menubar .logo {
  position: absolute;
  width: 180px;
  height: 45px;
  top: 0;
  left: 0;
  margin-left: 0;
  margin-top: 0;
  cursor: pointer;
  background: url(../images/logo.png) no-repeat;
  background-size: contain;
  z-index: 2;
}
.menubar .menubtn {
  position: absolute;
  width: 50px;
  height: 45px;
  top: 0;
  left: auto;
  margin-left: 0;
  margin-top: 0;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  right: 5px;
  cursor: pointer;
  z-index: 2;
}
.menubar .menubtn:hover {
  -moz-transform: scale(0.8, 0.8);
  -ms-transform: scale(0.8, 0.8);
  -webkit-transform: scale(0.8, 0.8);
  transform: scale(0.8, 0.8);
}
.menubar .menubtn span {
  background: #000;
  border: none;
  height: 2px;
  width: 36px;
  position: absolute;
  top: 15px;
  left: 7px;
  transition: all .35s ease;
  cursor: pointer;
}
.menubar .menubtn span:nth-of-type(2) {
  top: 22px;
}
.menubar .menubtn span:nth-of-type(3) {
  top: 29px;
}
.menubar .menu_icon {
  position: absolute;
  width: 202px;
  height: 71px;
  top: 60px;
  left: auto;
  margin-left: 0;
  margin-top: 0;
  right: 22px;
  background: url(../images/menu_icon.png) no-repeat;
  transition: 1s;
  opacity: 0;
  z-index: 10;
}
.menubar .menu_icon.on {
  opacity: 1;
}
.menubar .menu {
  position: absolute;
  width: 404px;
  height: 631px;
  top: 0;
  left: auto;
  margin-left: 0;
  margin-top: 0;
  background: url(../images/menu_bg.png) no-repeat;
  transition: 1s;
  right: -404px;
  z-index: 11;
}
.menubar .menu.on {
  right: 0;
}
.menubar .menu .closebtn {
  position: absolute;
  width: 53px;
  height: 53px;
  top: 202px;
  left: 10px;
  margin-left: 0;
  margin-top: 0;
  z-index: 2;
  background: url(../images/popclosebtn.png) no-repeat;
  background-size: contain;
  cursor: pointer;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.menubar .menu .closebtn:before {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  margin-left: 0;
  margin-top: 0;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  content: "";
  opacity: 0;
  background: url(../images/popclosebtn_hover.png) no-repeat;
  background-size: contain;
}
.menubar .menu .closebtn:hover:before {
  opacity: 1;
}
.menubar .menu .t {
  position: absolute;
  width: 201px;
  height: 68px;
  top: 79px;
  left: auto;
  margin-left: 0;
  margin-top: 0;
  right: 25px;
  background: url(../images/menu_title.png) no-repeat;
  background-size: contain;
}
.menubar .menu ul {
  position: relative;
  width: 150px;
  height: auto;
  float: left;
  margin: 170px 0 0 207px;
}
.menubar .menu ul li {
  position: relative;
  width: 100%;
  height: auto;
  float: left;
  font-size: 18px;
  line-height: 18px;
  font-weight: normal;
  font-family: Arial, "微軟正黑體";
  color: #232e41;
  text-align: center;
  letter-spacing: 0.5px;
  padding: 15px 0 10px 0;
  cursor: pointer;
  border-bottom: 1px solid rgba(35, 46, 65, 0.4);
}
.menubar .menu ul li:hover {
  background: url(../images/menu_hover.gif) no-repeat;
  background-position: center;
}

.savety_word {
  position: fixed;
  width: auto;
  height: 25px;
  top: auto;
  left: auto;
  margin-left: 0;
  margin-top: 0;
  font-size: 12px;
  line-height: 18px;
  font-weight: normal;
  font-family: Arial, "微軟正黑體";
  color: #93969a;
  right: 10px;
  bottom: 15px;
  text-align: right;
  z-index: 10;
}

.scroll_down {
  position: fixed;
  width: 162px;
  height: 54px;
  top: auto;
  left: 50%;
  margin-left: -81px;
  margin-top: 0;
  background: url(../images/scroll_down.png) no-repeat;
  background-size: contain;
  transition: 0.5s;
  bottom: 8px;
  z-index: 10;
  opacity: 1;
  cursor: pointer;
}
.scroll_down.on {
  opacity: 0;
  cursor: default;
}
.scroll_down.white {
  background: url(../images/scroll_down2.png) no-repeat;
}
.scroll_down.white .scroll_downin {
  background: url(../images/scroll_downin2.png) no-repeat;
}
.scroll_down .scroll_downin {
  position: absolute;
  width: 37px;
  height: 39px;
  top: auto;
  left: 50%;
  margin-left: -18px;
  margin-top: 0;
  bottom: 0;
  background: url(../images/scroll_downin.png) no-repeat;
  background-position: 0 0;
  -moz-animation-duration: 1s;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -moz-animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -moz-animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
  -moz-animation-name: scroll_downani;
  -webkit-animation-name: scroll_downani;
  animation-name: scroll_downani;
}
@-moz-keyframes scroll_downani {
  0% {
    background-position: 0 10px;
  }
  40% {
    background-position: 0 20px;
  }
  60% {
    background-position: 0 20px;
  }
  100% {
    background-position: 0 10px;
  }
}
@-webkit-keyframes scroll_downani {
  0% {
    background-position: 0 10px;
  }
  40% {
    background-position: 0 20px;
  }
  60% {
    background-position: 0 20px;
  }
  100% {
    background-position: 0 10px;
  }
}
@keyframes scroll_downani {
  0% {
    background-position: 0 10px;
  }
  40% {
    background-position: 0 20px;
  }
  60% {
    background-position: 0 20px;
  }
  100% {
    background-position: 0 10px;
  }
}
.loading {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  margin-left: 0;
  margin-top: 0;
  -moz-transition: 1s;
  -o-transition: 1s;
  -webkit-transition: 1s;
  transition: 1s;
  margin-top: 45px;
  z-index: 9999;
  opacity: 1;
  background-color: #121720;
}
.loading .loading_in {
  position: absolute;
  width: 120px;
  height: 120px;
  top: 50%;
  left: 50%;
  margin-left: -60px;
  margin-top: -60px;
  background: url(../images/loading.png) no-repeat;
  z-index: 9;
}
.loading.on {
  z-index: 0;
  opacity: 0;
}

.videopop {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  margin-left: 0;
  margin-top: 0;
  -moz-transition: 1s;
  -o-transition: 1s;
  -webkit-transition: 1s;
  transition: 1s;
  z-index: 0;
  opacity: 0;
}
.videopop.on {
  z-index: 999;
  opacity: 1;
}
.videopop .closebtn {
  position: absolute;
  width: 58px;
  height: 58px;
  top: 0;
  left: 50%;
  margin-left: 490px;
  margin-top: 0;
  background: url(../images/popclosebtn.png) no-repeat;
  cursor: pointer;
  z-index: 1;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.videopop .closebtn:before {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  margin-left: 0;
  margin-top: 0;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  content: "";
  opacity: 0;
  background: url(../images/popclosebtn_hover.png) no-repeat;
}
.videopop .closebtn:hover:before {
  opacity: 1;
}
.videopop .video {
  position: absolute;
  width: 960px;
  height: 540px;
  top: 50%;
  left: 50%;
  margin-left: -480px;
  margin-top: -270px;
  z-index: 1;
}
.videopop .bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  margin-left: 0;
  margin-top: 0;
  z-index: 0;
  background-color: rgba(0, 0, 0, 0.8);
}

.stage_boxs {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  margin-left: 0;
  margin-top: 0;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  z-index: 0;
  opacity: 0;
  overflow: hidden;
}
.stage_boxs.on {
  z-index: 9;
  opacity: 1;
}
.stage_boxs .stage_mores {
  position: absolute;
  width: 2px;
  height: 2px;
  top: 50%;
  left: 50%;
  margin-left: -1px;
  margin-top: -1px;
  z-index: 10;
}
.stage_boxs .stage_mores .stage_moresin {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  margin-left: 0;
  margin-top: 0;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  opacity: 0;
  pointer-events: none;
}
.stage_boxs .stage_mores .stage_moresin.on {
  opacity: 1;
  pointer-events: auto;
}
.stage_boxs .stage_mores .stage_moresin.on .stage_more {
  -moz-transform: rotateY(180deg);
  -ms-transform: rotateY(180deg);
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
}
.stage_boxs .stage_mores .stage_moresin.on .stage_more:hover:before {
  opacity: 1;
}
.stage_boxs .stage_mores .stage_more {
  position: absolute;
  width: 62px;
  height: 62px;
  top: 0;
  left: 0;
  margin-left: 0;
  margin-top: 0;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  background: url(../images/s2_more.png) no-repeat;
  background-size: contain;
  z-index: 9;
  cursor: pointer;
}
.stage_boxs .stage_mores .stage_more:before {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  margin-left: 0;
  margin-top: 0;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  content: "";
  background: url(../images/s2_more_hover.png) no-repeat;
  background-size: contain;
  opacity: 0;
}
.stage_boxs .stage_mores .more1 {
  left: -650px;
  top: -215px;
}
.stage_boxs .stage_mores .more2 {
  left: -483px;
  top: 95px;
}
.stage_boxs .stage_mores .more3 {
  left: -170px;
  top: -140px;
}
.stage_boxs .stage_mores .more4 {
  left: 185px;
  top: 65px;
}
.stage_boxs .stage_mores .more5 {
  left: -90px;
  top: 270px;
}
.stage_boxs .stage_mores .more6 {
  left: 350px;
  top: -50px;
}
.stage_boxs .stage_mores .more7 {
  left: -77px;
  top: 5px;
}
.stage_boxs .stage_mores .more8 {
  left: -200px;
  top: -143px;
}
.stage_boxs .stage_mores .more9 {
  left: -390px;
  top: -98px;
}
.stage_boxs .stage_box {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  margin-left: 0;
  margin-top: 0;
  -moz-transition: 1s;
  -o-transition: 1s;
  -webkit-transition: 1s;
  transition: 1s;
  opacity: 0;
  z-index: 0;
}
.stage_boxs .stage_box.on {
  opacity: 1;
  z-index: 9;
}
.stage_boxs .stage_box.s1 .title {
  position: absolute;
  width: 400px;
  height: 100px;
  top: 50%;
  left: 50%;
  margin-left: -670px;
  margin-top: -314px;
  z-index: 2;
}
.stage_boxs .stage_box.s1 .title .t {
  position: relative;
  width: 100%;
  height: auto;
  float: left;
  font-size: 45px;
  line-height: 45px;
  font-weight: normal;
  font-family: Arial, "微軟正黑體";
  color: #ffffff;
  letter-spacing: 1.5px;
  box-sizing: border-box;
  margin-bottom: 20px;
  padding-left: 20px;
  border-left: 5px solid #FFF;
}
.stage_boxs .stage_box.s1 .title .word {
  position: relative;
  width: 100%;
  height: auto;
  float: left;
  font-size: 22px;
  line-height: 22px;
  font-weight: normal;
  font-family: Arial, "微軟正黑體";
  color: #FFF;
  text-indent: 130px;
}
.stage_boxs .stage_box.s1 .bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  margin-left: 0;
  margin-top: 0;
  background: url(../images/stage_pop/s1_bg.jpg) no-repeat;
  background-position: center;
}
.stage_boxs .stage_box.s2 .title {
  position: absolute;
  width: 386px;
  height: 94px;
  top: 50%;
  left: 50%;
  margin-left: 242px;
  margin-top: -200px;
  z-index: 2;
}
.stage_boxs .stage_box.s2 .title .t {
  position: relative;
  width: 100%;
  height: auto;
  float: left;
  font-size: 45px;
  line-height: 45px;
  font-weight: normal;
  font-family: Arial, "微軟正黑體";
  color: #ffffff;
  letter-spacing: 1.5px;
  box-sizing: border-box;
  margin-bottom: 20px;
  padding-left: 20px;
  border-left: 5px solid #FFF;
}
.stage_boxs .stage_box.s2 .title .word {
  position: relative;
  width: 100%;
  height: auto;
  float: left;
  font-size: 22px;
  line-height: 22px;
  font-weight: normal;
  font-family: Arial, "微軟正黑體";
  color: #FFF;
  text-indent: 130px;
}
.stage_boxs .stage_box.s2 .bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  margin-left: 0;
  margin-top: 0;
  background: url(../images/stage_pop/s2_bg.jpg) no-repeat;
  background-position: center;
}
.stage_boxs .stage_box.s3 .title {
  position: absolute;
  width: 510px;
  height: 100px;
  top: 50%;
  left: 50%;
  margin-left: -139px;
  margin-top: -302px;
  z-index: 2;
}
.stage_boxs .stage_box.s3 .title .t {
  position: relative;
  width: 100%;
  height: auto;
  float: left;
  font-size: 45px;
  line-height: 45px;
  font-weight: normal;
  font-family: Arial, "微軟正黑體";
  color: #ffffff;
  letter-spacing: 1.5px;
  box-sizing: border-box;
  margin-bottom: 15px;
  padding-left: 20px;
  border-left: 5px solid #FFF;
}
.stage_boxs .stage_box.s3 .title .t .ppc {
  position: absolute;
  width: 532px;
  height: 95px;
  top: -25px;
  left: 250px;
  margin-left: 0;
  margin-top: 0;
}
.stage_boxs .stage_box.s3 .title .word {
  position: relative;
  width: 100%;
  height: auto;
  float: left;
  font-size: 22px;
  line-height: 22px;
  font-weight: normal;
  font-family: Arial, "微軟正黑體";
  color: #FFF;
  text-indent: 250px;
}
.stage_boxs .stage_box.s3 .bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  margin-left: 0;
  margin-top: 0;
  background: url(../images/stage_pop/s3_bg.jpg) no-repeat;
  background-position: center;
}
.stage_boxs .black_cover {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  margin-left: 0;
  margin-top: 0;
  z-index: 0;
  background-color: rgba(0, 0, 0, 0.8);
}

.stage_pops {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  margin-left: 0;
  margin-top: 0;
  z-index: 0;
  opacity: 0;
  overflow: hidden;
}
.stage_pops.on {
  z-index: 99;
  opacity: 1;
}
.stage_pops .stage_pop {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  margin-left: 0;
  margin-top: 0;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  opacity: 0;
  z-index: 0;
}
.stage_pops .stage_pop.on {
  opacity: 1;
  z-index: 1;
}
.stage_pops .stage_pop.m6 .rightbtn {
  position: absolute;
  width: 98px;
  height: 196px;
  top: 50%;
  left: 50%;
  margin-left: 595px;
  margin-top: -98px;
  background: url(../images/stage_pop/s2_pop_right_btn.png) no-repeat;
  cursor: pointer;
  z-index: 10;
}
.stage_pops .stage_pop.m6 .leftbtn {
  position: absolute;
  width: 98px;
  height: 196px;
  top: 50%;
  left: auto;
  margin-left: 0;
  margin-top: -98px;
  right: 50%;
  margin-right: 595px;
  background: url(../images/stage_pop/s2_pop_left_btn.png) no-repeat;
  cursor: pointer;
  z-index: 10;
}
.stage_pops .stage_pop.m6 .sbtn {
  position: absolute;
  width: 240px;
  height: 62px;
  top: 50%;
  left: 50%;
  margin-left: 150px;
  margin-top: 37px;
  -moz-transition: 1s;
  -o-transition: 1s;
  -webkit-transition: 1s;
  transition: 1s;
  z-index: 2;
  text-align: center;
  opacity: 0;
}
.stage_pops .stage_pop.m6 .sbtn.on {
  z-index: 2;
  opacity: 1;
}
.stage_pops .stage_pop.m6 .sbtn a {
  position: relative;
  font-size: 25px;
  line-height: 62px;
  font-weight: normal;
  font-family: Arial, "微軟正黑體";
  color: #232e41;
  text-align: center;
  width: 62px;
  height: 62px;
  display: inline-block;
  background: url(../images/stage_pop/s2_sbtn.png) no-repeat;
  margin-right: 10px;
}
.stage_pops .stage_pop.m6 .sbtn a span {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  margin-left: 0;
  margin-top: 0;
  z-index: 1;
}
.stage_pops .stage_pop.m6 .sbtn a:nth-child(3n) {
  margin-right: 0;
}
.stage_pops .stage_pop.m6 .sbtn a:before {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  margin-left: 0;
  margin-top: 0;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  content: "";
  z-index: 0;
  opacity: 0;
  background: url(../images/stage_pop/s2_sbtn_on.png) no-repeat;
}
.stage_pops .stage_pop.m6 .sbtn a:hover {
  color: #FFF;
}
.stage_pops .stage_pop.m6 .sbtn a:hover:before {
  opacity: 1;
}
.stage_pops .stage_pop.m6 .sbtn a.on {
  color: #FFF;
}
.stage_pops .stage_pop.m6 .sbtn a.on:before {
  opacity: 1;
}
.stage_pops .stage_pop.m6 ul {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  margin-left: 0;
  margin-top: 0;
}
.stage_pops .stage_pop.m6 ul li {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  margin-left: 0;
  margin-top: 0;
  -moz-transition: 1s;
  -o-transition: 1s;
  -webkit-transition: 1s;
  transition: 1s;
  opacity: 0;
  z-index: 0;
}
.stage_pops .stage_pop.m6 ul li.on {
  opacity: 1;
  z-index: 1;
}
.stage_pops .stage_pop.m7 .closebtn {
  position: absolute;
  width: 58px;
  height: 58px;
  top: 50%;
  left: 50%;
  margin-left: -29px;
  margin-top: -281px;
  background: url(../images/popclosebtn_hover.png) no-repeat;
  background-size: contain;
  cursor: pointer;
  z-index: 9;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.stage_pops .stage_pop.m7 .closebtn:before {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  margin-left: 0;
  margin-top: 0;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  content: "";
  opacity: 0;
  background: url(../images/popclosebtn.png) no-repeat;
  background-size: contain;
}
.stage_pops .stage_pop.m7 .closebtn:hover:before {
  opacity: 1;
}
.stage_pops .stage_pop.m7 .pic {
  position: absolute;
  width: 745px;
  height: 745px;
  top: 50%;
  left: 50%;
  margin-left: -372px;
  margin-top: -372px;
  -moz-transition: 1s;
  -o-transition: 1s;
  -webkit-transition: 1s;
  transition: 1s;
  -moz-transform: rotateY(-90deg);
  -ms-transform: rotateY(-90deg);
  -webkit-transform: rotateY(-90deg);
  transform: rotateY(-90deg);
  opacity: 0;
  z-index: 1;
}
.stage_pops .stage_pop.m7 .pic.on {
  -moz-transform: rotateY(0);
  -ms-transform: rotateY(0);
  -webkit-transform: rotateY(0);
  transform: rotateY(0);
  opacity: 1;
}
.stage_pops .stage_pop.m7 .pic .pimg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  margin-left: 0;
  margin-top: 0;
  z-index: 1;
}
.stage_pops .stage_pop.m7 .pic .border {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  margin-left: 0;
  margin-top: 0;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  background: url(../images/popborder.png) no-repeat;
  z-index: 2;
  opacity: 0;
  pointer-events: none;
}
.stage_pops .stage_pop.m7 .pic .border.on {
  opacity: 1;
  top: 15px;
}
.stage_pops .stage_pop.m7 .pic .btn {
  position: absolute;
  width: 84px;
  height: 84px;
  top: auto;
  left: 50%;
  margin-left: -42px;
  margin-top: 0;
  bottom: 20px;
  background: url(../images/s2_pop_play.png) no-repeat;
  cursor: pointer;
  z-index: 2;
}
.stage_pops .stage_pop.m7 .pic .btn:before {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  margin-left: 0;
  margin-top: 0;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  content: "";
  background: url(../images/s2_pop_play_hover.png) no-repeat;
  opacity: 0;
}
.stage_pops .stage_pop.m7 .pic .btn:hover:before {
  opacity: 1;
}
.stage_pops .stage_pop.m7 .word {
  position: absolute;
  width: 1366px;
  height: 206px;
  top: 50%;
  left: 50%;
  margin-left: -683px;
  margin-top: 50px;
  -moz-transition: 1s;
  -o-transition: 1s;
  -webkit-transition: 1s;
  transition: 1s;
  background: none;
  z-index: 1;
  opacity: 0;
  text-align: center;
}
.stage_pops .stage_pop.m7 .word:before {
  display: none;
}
.stage_pops .stage_pop.m7 .word .m7play {
  position: relative;
  width: 330px;
  height: 206px;
  margin-right: 10px;
  display: inline-block;
  cursor: pointer;
  background-color: #ededed;
}
.stage_pops .stage_pop.m7 .word .m7play .icon {
  position: absolute;
  width: 59px;
  height: 59px;
  top: 50%;
  left: 50%;
  margin-left: -29px;
  margin-top: -47px;
  background: url(../images/stage_pop/s3_pop_play.png) no-repeat;
  background-size: contain;
  z-index: 9;
}
.stage_pops .stage_pop.m7 .word .m7play .icon:before {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  margin-left: 0;
  margin-top: 0;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  content: "";
  background: url(../images/stage_pop/s3_pop_play_hover.png) no-repeat;
  background-size: contain;
  opacity: 0;
  z-index: 9;
}
.stage_pops .stage_pop.m7 .word .m7play .bg {
  position: relative;
  width: 330px;
  height: 169px;
  float: left;
  box-sizing: border-box;
  border: 2px solid #ededed;
  overflow: hidden;
}
.stage_pops .stage_pop.m7 .word .m7play .bg img {
  width: 100%;
  -moz-transition: 1s;
  -o-transition: 1s;
  -webkit-transition: 1s;
  transition: 1s;
}
.stage_pops .stage_pop.m7 .word .m7play .m7w {
  position: relative;
  width: 100%;
  height: auto;
  float: left;
  font-size: 18px;
  line-height: 38px;
  font-weight: normal;
  font-family: Arial, "微軟正黑體";
  color: #232e41;
  background-color: #ededed;
  text-align: center;
}
.stage_pops .stage_pop.m7 .word .m7play:nth-child(4n) {
  margin-right: 0;
}
.stage_pops .stage_pop.m7 .word .m7play:hover .icon:before {
  opacity: 1;
}
.stage_pops .stage_pop.m7 .word .m7play:hover .bg img {
  -moz-transform: scale3d(1.1, 1.1, 1);
  -ms-transform: scale3d(1.1, 1.1, 1);
  -webkit-transform: scale3d(1.1, 1.1, 1);
  transform: scale3d(1.1, 1.1, 1);
}
.stage_pops .stage_pop.m7 .word.on {
  opacity: 1;
  margin-top: 80px;
  margin-left: -683px;
}
.stage_pops .stage_pop .pic {
  position: absolute;
  width: 745px;
  height: 745px;
  top: 50%;
  left: 50%;
  margin-left: -535px;
  margin-top: -408px;
  -moz-transition: 1s;
  -o-transition: 1s;
  -webkit-transition: 1s;
  transition: 1s;
  -moz-transform: rotateY(-90deg);
  -ms-transform: rotateY(-90deg);
  -webkit-transform: rotateY(-90deg);
  transform: rotateY(-90deg);
  opacity: 0;
  z-index: 1;
}
.stage_pops .stage_pop .pic.on {
  -moz-transform: rotateY(0);
  -ms-transform: rotateY(0);
  -webkit-transform: rotateY(0);
  transform: rotateY(0);
  opacity: 1;
}
.stage_pops .stage_pop .pic .pimg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  margin-left: 0;
  margin-top: 0;
  z-index: 1;
}
.stage_pops .stage_pop .pic .border {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  margin-left: 0;
  margin-top: 0;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  background: url(../images/popborder.png) no-repeat;
  z-index: 2;
  opacity: 0;
  pointer-events: none;
}
.stage_pops .stage_pop .pic .border.on {
  opacity: 1;
  top: 15px;
}
.stage_pops .stage_pop .pic .btn {
  position: absolute;
  width: 84px;
  height: 84px;
  top: auto;
  left: 50%;
  margin-left: -42px;
  margin-top: 0;
  bottom: 20px;
  background: url(../images/s2_pop_play.png) no-repeat;
  cursor: pointer;
  z-index: 2;
}
.stage_pops .stage_pop .pic .btn:before {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  margin-left: 0;
  margin-top: 0;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  content: "";
  background: url(../images/s2_pop_play_hover.png) no-repeat;
  opacity: 0;
}
.stage_pops .stage_pop .pic .btn:hover:before {
  opacity: 1;
}
.stage_pops .stage_pop .word {
  position: absolute;
  width: 481px;
  height: 481px;
  top: 50%;
  left: 50%;
  margin-left: 0;
  margin-top: -70px;
  -moz-transition: 1s;
  -o-transition: 1s;
  -webkit-transition: 1s;
  transition: 1s;
  background: url(../images/pop_word_bg.png) no-repeat;
  z-index: 1;
  opacity: 0;
}
.stage_pops .stage_pop .word.on {
  opacity: 1;
  margin-left: 30px;
}
.stage_pops .stage_pop .word:before {
  content: "";
  width: 1px;
  height: 100%;
  display: inline-block;
  vertical-align: middle;
}
.stage_pops .stage_pop .word .line {
  position: absolute;
  width: 52%;
  height: 1px;
  top: auto;
  left: 0;
  margin-left: 24%;
  margin-top: 0;
  bottom: 150px;
  background-color: #000000;
  z-index: 1;
}
.stage_pops .stage_pop .word .w {
  font-size: 16px;
  line-height: 26px;
  font-weight: normal;
  font-family: Arial, "微軟正黑體";
  color: #232e41;
  width: 66%;
  height: auto;
  margin-left: 17%;
  display: inline-block;
  vertical-align: middle;
}
.stage_pops .stage_pop .word .closebtn {
  position: absolute;
  width: 58px;
  height: 58px;
  top: auto;
  left: 50%;
  margin-left: -29px;
  margin-top: 0;
  bottom: 60px;
  background: url(../images/popclosebtn.png) no-repeat;
  cursor: pointer;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.stage_pops .stage_pop .word .closebtn:before {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  margin-left: 0;
  margin-top: 0;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  content: "";
  opacity: 0;
  background: url(../images/popclosebtn_hover.png) no-repeat;
}
.stage_pops .stage_pop .word .closebtn:hover:before {
  opacity: 1;
}
.stage_pops .stage_pop .bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  margin-left: 0;
  margin-top: 0;
  z-index: 0;
  background-color: rgba(0, 0, 0, 0.6);
}

.pops {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  margin-left: 0;
  margin-top: 0;
  z-index: 0;
  opacity: 0;
  overflow: hidden;
}
.pops.on {
  z-index: 99;
  opacity: 1;
}
.pops .pop {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  margin-left: 0;
  margin-top: 0;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  opacity: 0;
  z-index: 0;
}
.pops .pop.on {
  opacity: 1;
  z-index: 1;
}
.pops .pop .pic {
  position: absolute;
  width: 745px;
  height: 745px;
  top: 50%;
  left: 50%;
  margin-left: -535px;
  margin-top: -408px;
  -moz-transition: 1s;
  -o-transition: 1s;
  -webkit-transition: 1s;
  transition: 1s;
  -moz-transform: rotateY(-90deg);
  -ms-transform: rotateY(-90deg);
  -webkit-transform: rotateY(-90deg);
  transform: rotateY(-90deg);
  opacity: 0;
  z-index: 1;
}
.pops .pop .pic.on {
  -moz-transform: rotateY(0);
  -ms-transform: rotateY(0);
  -webkit-transform: rotateY(0);
  transform: rotateY(0);
  opacity: 1;
}
.pops .pop .pic .pimg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  margin-left: 0;
  margin-top: 0;
  z-index: 1;
}
.pops .pop .pic .border {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  margin-left: 0;
  margin-top: 0;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  background: url(../images/popborder.png) no-repeat;
  z-index: 2;
  opacity: 0;
  pointer-events: none;
}
.pops .pop .pic .border.on {
  opacity: 1;
  top: 15px;
}
.pops .pop .pic .btn {
  position: absolute;
  width: 84px;
  height: 84px;
  top: auto;
  left: 50%;
  margin-left: -42px;
  margin-top: 0;
  bottom: 20px;
  background: url(../images/s2_pop_play.png) no-repeat;
  cursor: pointer;
  z-index: 2;
}
.pops .pop .pic .btn:before {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  margin-left: 0;
  margin-top: 0;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  content: "";
  background: url(../images/s2_pop_play_hover.png) no-repeat;
  opacity: 0;
}
.pops .pop .pic .btn:hover:before {
  opacity: 1;
}
.pops .pop .word {
  position: absolute;
  width: 481px;
  height: 481px;
  top: 50%;
  left: 50%;
  margin-left: 0;
  margin-top: -70px;
  -moz-transition: 1s;
  -o-transition: 1s;
  -webkit-transition: 1s;
  transition: 1s;
  background: url(../images/pop_word_bg.png) no-repeat;
  z-index: 1;
  opacity: 0;
}
.pops .pop .word.on {
  opacity: 1;
  margin-left: 30px;
}
.pops .pop .word:before {
  content: "";
  width: 1px;
  height: 100%;
  display: inline-block;
  vertical-align: middle;
}
.pops .pop .word .line {
  position: absolute;
  width: 52%;
  height: 1px;
  top: auto;
  left: 0;
  margin-left: 24%;
  margin-top: 0;
  bottom: 150px;
  background-color: #000000;
  z-index: 1;
}
.pops .pop .word .w {
  font-size: 16px;
  line-height: 26px;
  font-weight: normal;
  font-family: Arial, "微軟正黑體";
  color: #232e41;
  width: 63.4%;
  height: auto;
  margin-left: 18%;
  display: inline-block;
  vertical-align: middle;
}
.pops .pop .word .closebtn {
  position: absolute;
  width: 58px;
  height: 58px;
  top: auto;
  left: 50%;
  margin-left: -29px;
  margin-top: 0;
  bottom: 60px;
  background: url(../images/popclosebtn.png) no-repeat;
  cursor: pointer;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.pops .pop .word .closebtn:before {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  margin-left: 0;
  margin-top: 0;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  content: "";
  opacity: 0;
  background: url(../images/popclosebtn_hover.png) no-repeat;
}
.pops .pop .word .closebtn:hover:before {
  opacity: 1;
}
.pops .pop .bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  margin-left: 0;
  margin-top: 0;
  z-index: 0;
  background-color: rgba(0, 0, 0, 0.6);
}

.wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  margin-left: 0;
  margin-top: 0;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  overflow: hidden;
  z-index: 1;
  background-color: #121720;
}
.wrapper.on {
  -moz-transform: scale3d(0.95, 0.95, 1);
  -ms-transform: scale3d(0.95, 0.95, 1);
  -webkit-transform: scale3d(0.95, 0.95, 1);
  transform: scale3d(0.95, 0.95, 1);
}
.wrapper .carani {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  margin-left: 0;
  margin-top: 0;
  pointer-events: none;
  z-index: 0;
}
.wrapper .carani.on {
  z-index: 6;
}
.wrapper .carani.on .car {
  opacity: 0;
}
.wrapper .carani .w1365 {
  display: block;
}
.wrapper .carani .w1365.on {
  display: none;
}
.wrapper .carani .w1024 {
  display: block;
}
.wrapper .carani .w1024.on {
  display: none;
}
.wrapper .carani .car {
  opacity: 1;
}
.wrapper .carani .s2 {
  position: absolute;
  width: 1024px;
  height: 512px;
  top: 50%;
  left: 50%;
  margin-left: -315px;
  margin-top: -78px;
  background: url(../images/s2_car.png) no-repeat;
}
.wrapper .carani .s3 {
  position: absolute;
  width: 1024px;
  height: 512px;
  top: 50%;
  left: 50%;
  margin-left: -315px;
  margin-top: -78px;
  background: url(../images/s3_car.png) no-repeat;
}
.wrapper .carani .s3:before {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  margin-left: 0;
  margin-top: 0;
  -moz-transition: 0.7s;
  -o-transition: 0.7s;
  -webkit-transition: 0.7s;
  transition: 0.7s;
  -moz-transition-delay: 1.7s;
  -o-transition-delay: 1.7s;
  -webkit-transition-delay: 1.7s;
  transition-delay: 1.7s;
  content: "";
  background: url(../images/s3_car_end.png) no-repeat;
  z-index: 1;
  opacity: 0;
}
.wrapper .carani .s3.on:before {
  opacity: 1;
}
.wrapper .carani .s4 {
  position: absolute;
  width: 1024px;
  height: 512px;
  top: 50%;
  left: 50%;
  margin-left: -315px;
  margin-top: -78px;
  background: url(../images/s4_car.png) no-repeat;
}
.wrapper .carani .s4:before {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  margin-left: 0;
  margin-top: 0;
  -moz-transition: 0.7s;
  -o-transition: 0.7s;
  -webkit-transition: 0.7s;
  transition: 0.7s;
  -moz-transition-delay: 1.7s;
  -o-transition-delay: 1.7s;
  -webkit-transition-delay: 1.7s;
  transition-delay: 1.7s;
  content: "";
  background: url(../images/s4_car_end.png) no-repeat;
  z-index: 1;
  opacity: 0;
}
.wrapper .carani .s4.on:before {
  opacity: 1;
}
.wrapper .carani .s5 {
  position: absolute;
  width: 1024px;
  height: 512px;
  top: 50%;
  left: 50%;
  margin-left: -315px;
  margin-top: -78px;
  background: url(../images/s5_car.png) no-repeat;
}
.wrapper .carani .s5:before {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  margin-left: 0;
  margin-top: 0;
  -moz-transition: 0.7s;
  -o-transition: 0.7s;
  -webkit-transition: 0.7s;
  transition: 0.7s;
  -moz-transition-delay: 1.7s;
  -o-transition-delay: 1.7s;
  -webkit-transition-delay: 1.7s;
  transition-delay: 1.7s;
  content: "";
  background: url(../images/s5_car_end.png) no-repeat;
  z-index: 1;
  opacity: 0;
}
.wrapper .carani .s5.on:before {
  opacity: 1;
}
.wrapper .mores {
  position: absolute;
  width: 2px;
  height: 2px;
  top: 50%;
  left: 50%;
  margin-left: -1px;
  margin-top: -1px;
  z-index: 7;
}
.wrapper .mores .moresin {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  margin-left: 0;
  margin-top: 0;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  opacity: 0;
  pointer-events: none;
}
.wrapper .mores .moresin.on {
  opacity: 1;
  pointer-events: auto;
}
.wrapper .mores .moresin.on .more {
  -moz-transform: rotateY(180deg);
  -ms-transform: rotateY(180deg);
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
}
.wrapper .mores .moresin.on .more:hover:before {
  opacity: 1;
}
.wrapper .mores .more {
  position: absolute;
  width: 62px;
  height: 62px;
  top: 0;
  left: 0;
  margin-left: 0;
  margin-top: 0;
  background: url(../images/s2_more.png) no-repeat;
  cursor: pointer;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.wrapper .mores .more:before {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  margin-left: 0;
  margin-top: 0;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  content: "";
  background: url(../images/s2_more_hover.png) no-repeat;
  opacity: 0;
}
.wrapper .mores .more1 {
  left: -87px;
  top: 75px;
}
.wrapper .mores .more2 {
  left: 84px;
  top: 20px;
}
.wrapper .mores .more3 {
  left: 115px;
  top: 205px;
}
.wrapper .mores .more4 {
  left: 300px;
  top: -112px;
}
.wrapper .mores .more5 {
  left: 460px;
  top: -28px;
}
.wrapper .mores .more6 {
  left: 123px;
  top: 94px;
}
.wrapper .mores .more7 {
  left: 358px;
  top: 70px;
}
.wrapper .stages {
  position: absolute;
  width: 100%;
  height: 500%;
  top: 0;
  left: 0;
  margin-left: 0;
  margin-top: 0;
  -moz-transition: 1s;
  -o-transition: 1s;
  -webkit-transition: 1s;
  transition: 1s;
  -moz-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  z-index: 5;
}
.wrapper .stages.s2 {
  top: -100%;
}
.wrapper .stages.s3 {
  top: -200%;
}
.wrapper .stages.s4 {
  top: -300%;
}
.wrapper .stages.s5 {
  top: -400%;
}
.wrapper .stages .stage {
  position: relative;
  width: 100%;
  height: 20%;
  float: left;
  overflow: hidden;
}
.wrapper .stages .stage.s1 .title {
  position: absolute;
  width: 401px;
  height: 206px;
  top: 50%;
  left: 50%;
  margin-left: -646px;
  margin-top: -300px;
  background: url(../images/s1_title.png) no-repeat;
  background-size: contain;
  z-index: 1;
}
.wrapper .stages .stage.s1 .light {
  position: absolute;
  width: 1348px;
  height: 879px;
  top: 50%;
  left: 50%;
  margin-left: -984px;
  margin-top: -529px;
  z-index: 1;
  opacity: 0;
  background: url(../images/s1_light.png) no-repeat;
  -moz-animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -moz-animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -moz-animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
  -moz-animation-name: s1_light;
  -webkit-animation-name: s1_light;
  animation-name: s1_light;
}
.wrapper .stages .stage.s1 .bg {
  position: absolute;
  width: 106%;
  height: 106%;
  top: -3%;
  left: -3%;
  margin-left: 0;
  margin-top: 0;
  -moz-transition: 3s;
  -o-transition: 3s;
  -webkit-transition: 3s;
  transition: 3s;
  -moz-transform: scale3d(0.95, 0.95, 0.95);
  -ms-transform: scale3d(0.95, 0.95, 0.95);
  -webkit-transform: scale3d(0.95, 0.95, 0.95);
  transform: scale3d(0.95, 0.95, 0.95);
  z-index: 0;
  background-image: url(../images/s1_bg.jpg);
  background-repeat: no-repeat;
  background-position: center;
}
.wrapper .stages .stage.s1 .bg.frist {
  -moz-transform: scale3d(1, 1, 1);
  -ms-transform: scale3d(1, 1, 1);
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
}
@-moz-keyframes s1_light {
  0% {
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  60% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes s1_light {
  0% {
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  60% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes s1_light {
  0% {
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  60% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.wrapper .stages .stage.s2 .title {
  position: absolute;
  width: 512px;
  height: 159px;
  top: 50%;
  left: 50%;
  margin-left: -680px;
  margin-top: -292px;
  z-index: 3;
}
.wrapper .stages .stage.s2 .title .t {
  position: absolute;
  width: 100%;
  height: 159px;
  top: -30px;
  left: 0;
  margin-left: 0;
  margin-top: 0;
  -moz-transition: 1s;
  -o-transition: 1s;
  -webkit-transition: 1s;
  transition: 1s;
  -moz-transition-delay: 0.5s;
  -o-transition-delay: 0.5s;
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
  background: url(../images/s2_title.png) no-repeat;
  background-size: contain;
  z-index: 1;
  opacity: 0;
}
.wrapper .stages .stage.s2 .title .t.on {
  opacity: 1;
  top: 0;
}
.wrapper .stages .stage.s2 .title .word {
  position: absolute;
  width: 378px;
  height: auto;
  top: 152px;
  left: 105px;
  margin-left: 0;
  margin-top: 0;
  font-size: 15px;
  line-height: 25px;
  font-weight: normal;
  font-family: Arial, "微軟正黑體";
  color: #FFF;
  -moz-transition: 1s;
  -o-transition: 1s;
  -webkit-transition: 1s;
  transition: 1s;
  -moz-transition-delay: 0.5s;
  -o-transition-delay: 0.5s;
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
  z-index: 1;
  opacity: 0;
}
.wrapper .stages .stage.s2 .title .word.on {
  opacity: 1;
  top: 182px;
}
.wrapper .stages .stage.s2 .title .word .b {
  position: relative;
  width: 100%;
  height: auto;
  float: left;
  margin-bottom: 10px;
}
.wrapper .stages .stage.s2 .title .word .b span {
  width: auto;
  border-bottom: 1px solid #FFF;
}
.wrapper .stages .stage.s2 .title .word .s {
  position: relative;
  width: 100%;
  height: auto;
  float: left;
}
.wrapper .stages .stage.s2 .title .tbg {
  position: absolute;
  width: 555px;
  height: 400px;
  top: -35px;
  left: -20px;
  margin-left: 0;
  margin-top: 0;
  -moz-transition: 1s;
  -o-transition: 1s;
  -webkit-transition: 1s;
  transition: 1s;
  background: url(../images/s2_titlebg.png) no-repeat;
  opacity: 0;
  z-index: 0;
}
.wrapper .stages .stage.s2 .title .tbg:before {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  margin-left: 0;
  margin-top: 0;
  content: "";
  background: url(../images/s2_titlebg2.png) no-repeat;
  z-index: 1;
  opacity: 0;
}
.wrapper .stages .stage.s2 .title .tbg.on {
  top: -5px;
  opacity: 1;
}
.wrapper .stages .stage.s2 .title .tbg.on:before {
  -moz-animation-duration: 1s;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -moz-animation-iteration-count: 1;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -moz-animation-fill-mode: forwards;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -moz-animation-name: tbgani;
  -webkit-animation-name: tbgani;
  animation-name: tbgani;
}
.wrapper .stages .stage.s2 .cover1 {
  position: absolute;
  width: 100%;
  height: 457px;
  top: 50%;
  left: 0;
  margin-left: 0;
  margin-top: 75px;
  background: url(../images/s2_cover1.png) no-repeat;
  background-position: center;
  z-index: 1;
}
.wrapper .stages .stage.s2 .cover2 {
  position: absolute;
  width: 100%;
  height: 0;
  top: 50%;
  left: 0;
  margin-left: 0;
  margin-top: 13px;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -moz-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  background: url(../images/s2_cover2.png) no-repeat;
  background-position: center top;
  z-index: 2;
}
.wrapper .stages .stage.s2 .cover2.on {
  height: 527px;
}
.wrapper .stages .stage.s2 .bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  margin-left: 0;
  margin-top: 0;
  -moz-transition: 0.6s;
  -o-transition: 0.6s;
  -webkit-transition: 0.6s;
  transition: 0.6s;
  -moz-transform: scale3d(1.05, 1.05, 1);
  -ms-transform: scale3d(1.05, 1.05, 1);
  -webkit-transform: scale3d(1.05, 1.05, 1);
  transform: scale3d(1.05, 1.05, 1);
  z-index: 0;
  opacity: 0;
  background: url(../images/s2_bg.jpg) no-repeat;
  background-position: center;
}
.wrapper .stages .stage.s2 .bg.on {
  opacity: 1;
  -moz-transform: scale3d(1, 1, 1);
  -ms-transform: scale3d(1, 1, 1);
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
}
.wrapper .stages .stage.s2 .bg.end {
  -moz-animation-duration: 5s;
  -webkit-animation-duration: 5s;
  animation-duration: 5s;
  -moz-animation-iteration-count: 1;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -moz-animation-fill-mode: forwards;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -moz-animation-timing-function: ease;
  -webkit-animation-timing-function: ease;
  animation-timing-function: ease;
  -moz-animation-name: stagebg;
  -webkit-animation-name: stagebg;
  animation-name: stagebg;
}
.wrapper .stages .stage.s3 {
  background-color: #121720;
}
.wrapper .stages .stage.s3 .title {
  position: absolute;
  width: 383px;
  height: 159px;
  top: 50%;
  left: 50%;
  margin-left: -680px;
  margin-top: -292px;
  z-index: 3;
}
.wrapper .stages .stage.s3 .title .t {
  position: absolute;
  width: 100%;
  height: 159px;
  top: -30px;
  left: 0;
  margin-left: 0;
  margin-top: 0;
  -moz-transition: 1s;
  -o-transition: 1s;
  -webkit-transition: 1s;
  transition: 1s;
  -moz-transition-delay: 0.5s;
  -o-transition-delay: 0.5s;
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
  background: url(../images/s3_title.png) no-repeat;
  background-size: contain;
  z-index: 1;
  opacity: 0;
}
.wrapper .stages .stage.s3 .title .t.on {
  opacity: 1;
  top: 0;
}
.wrapper .stages .stage.s3 .title .word {
  position: absolute;
  width: 400px;
  height: auto;
  top: 152px;
  left: 105px;
  margin-left: 0;
  margin-top: 0;
  font-size: 15px;
  line-height: 25px;
  font-weight: normal;
  font-family: Arial, "微軟正黑體";
  color: #14223b;
  -moz-transition: 1s;
  -o-transition: 1s;
  -webkit-transition: 1s;
  transition: 1s;
  -moz-transition-delay: 0.5s;
  -o-transition-delay: 0.5s;
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
  z-index: 1;
  opacity: 0;
}
.wrapper .stages .stage.s3 .title .word.on {
  opacity: 1;
  top: 182px;
}
.wrapper .stages .stage.s3 .title .word .b {
  position: relative;
  width: 100%;
  height: auto;
  float: left;
  margin-bottom: 10px;
}
.wrapper .stages .stage.s3 .title .word .b span {
  width: auto;
  border-bottom: 1px solid #14223b;
}
.wrapper .stages .stage.s3 .title .word .s {
  position: relative;
  width: 100%;
  height: auto;
  float: left;
}
.wrapper .stages .stage.s3 .title .tbg {
  position: absolute;
  width: 660px;
  height: 389px;
  top: -74px;
  left: -187px;
  margin-left: 0;
  margin-top: 0;
  -moz-transition: 1s;
  -o-transition: 1s;
  -webkit-transition: 1s;
  transition: 1s;
  background: url(../images/s3_titlebg.png) no-repeat;
  opacity: 0;
  z-index: 0;
}
.wrapper .stages .stage.s3 .title .tbg.on {
  top: -54px;
  opacity: 1;
}
.wrapper .stages .stage.s3 .cover1 {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  margin-left: 0;
  margin-top: 0;
  z-index: 1;
}
.wrapper .stages .stage.s3 .cover2 {
  position: absolute;
  width: 0;
  height: 384px;
  top: 50%;
  left: auto;
  margin-left: 0;
  margin-top: 153px;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -moz-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  right: 0;
  background: url(../images/s3_cover2.png) no-repeat;
  background-position: center top;
  z-index: 2;
}
.wrapper .stages .stage.s3 .cover2.on {
  width: 100%;
}
.wrapper .stages .stage.s3 .bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  margin-left: 0;
  margin-top: 0;
  -moz-transition: 0.6s;
  -o-transition: 0.6s;
  -webkit-transition: 0.6s;
  transition: 0.6s;
  -moz-transform: scale3d(1.05, 1.05, 1);
  -ms-transform: scale3d(1.05, 1.05, 1);
  -webkit-transform: scale3d(1.05, 1.05, 1);
  transform: scale3d(1.05, 1.05, 1);
  z-index: 0;
  opacity: 0;
  background: url(../images/s3_bg.jpg) no-repeat;
  background-position: center;
}
.wrapper .stages .stage.s3 .bg.on {
  opacity: 1;
  -moz-transform: scale3d(1, 1, 1);
  -ms-transform: scale3d(1, 1, 1);
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
}
.wrapper .stages .stage.s3 .bg.end {
  -moz-animation-duration: 5s;
  -webkit-animation-duration: 5s;
  animation-duration: 5s;
  -moz-animation-iteration-count: 1;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -moz-animation-fill-mode: forwards;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -moz-animation-timing-function: ease;
  -webkit-animation-timing-function: ease;
  animation-timing-function: ease;
  -moz-animation-name: stagebg;
  -webkit-animation-name: stagebg;
  animation-name: stagebg;
}
.wrapper .stages .stage.s4 {
  background-color: #121720;
}
.wrapper .stages .stage.s4 .title {
  position: absolute;
  width: 684px;
  height: 159px;
  top: 50%;
  left: 50%;
  margin-left: -576px;
  margin-top: -242px;
  z-index: 3;
}
.wrapper .stages .stage.s4 .title .t {
  position: absolute;
  width: 100%;
  height: 159px;
  top: -30px;
  left: 0;
  margin-left: 0;
  margin-top: 0;
  -moz-transition: 1s;
  -o-transition: 1s;
  -webkit-transition: 1s;
  transition: 1s;
  -moz-transition-delay: 0.5s;
  -o-transition-delay: 0.5s;
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
  background: url(../images/s4_title.png) no-repeat;
  background-size: contain;
  z-index: 1;
  opacity: 0;
}
.wrapper .stages .stage.s4 .title .t.on {
  opacity: 1;
  top: 0;
}
.wrapper .stages .stage.s4 .title .word {
  position: absolute;
  width: 320px;
  height: auto;
  top: 152px;
  left: 105px;
  margin-left: 0;
  margin-top: 0;
  font-size: 15px;
  line-height: 25px;
  font-weight: normal;
  font-family: Arial, "微軟正黑體";
  color: #FFF;
  -moz-transition: 1s;
  -o-transition: 1s;
  -webkit-transition: 1s;
  transition: 1s;
  -moz-transition-delay: 0.5s;
  -o-transition-delay: 0.5s;
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
  z-index: 1;
  opacity: 0;
}
.wrapper .stages .stage.s4 .title .word.on {
  opacity: 1;
  top: 182px;
}
.wrapper .stages .stage.s4 .title .word .b {
  position: relative;
  width: 100%;
  height: auto;
  float: left;
  margin-bottom: 10px;
}
.wrapper .stages .stage.s4 .title .word .b span {
  width: auto;
  border-bottom: 1px solid #FFF;
}
.wrapper .stages .stage.s4 .title .word .s {
  position: relative;
  width: 100%;
  height: auto;
  float: left;
}
.wrapper .stages .stage.s4 .title .tbg {
  position: absolute;
  width: 594px;
  height: 405px;
  top: -50px;
  left: -62px;
  margin-left: 0;
  margin-top: 0;
  -moz-transition: 1s;
  -o-transition: 1s;
  -webkit-transition: 1s;
  transition: 1s;
  background: url(../images/s4_titlebg.png) no-repeat;
  opacity: 0;
  z-index: 0;
}
.wrapper .stages .stage.s4 .title .tbg.on {
  top: -30px;
  opacity: 1;
}
.wrapper .stages .stage.s4 .cover1 {
  position: absolute;
  width: 100%;
  height: 464px;
  top: 50%;
  left: 0;
  margin-left: 0;
  margin-top: 76px;
  background: url(../images/s4_cover1.png) no-repeat;
  background-position: center top;
  z-index: 1;
}
.wrapper .stages .stage.s4 .cover2 {
  position: absolute;
  width: 100%;
  height: 518px;
  top: 50%;
  left: 0;
  margin-left: 0;
  margin-top: 40px;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -moz-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  background: url(../images/s4_cover2.png) no-repeat;
  background-position: center top;
  z-index: 2;
}
.wrapper .stages .stage.s4 .cover2:before {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: auto;
  margin-left: 0;
  margin-top: 0;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -moz-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  content: "";
  right: 0;
  background-color: #121720;
}
.wrapper .stages .stage.s4 .cover2.on:before {
  width: 0;
}
.wrapper .stages .stage.s4 .bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  margin-left: 0;
  margin-top: 0;
  -moz-transition: 0.6s;
  -o-transition: 0.6s;
  -webkit-transition: 0.6s;
  transition: 0.6s;
  -moz-transform: scale3d(1.05, 1.05, 1);
  -ms-transform: scale3d(1.05, 1.05, 1);
  -webkit-transform: scale3d(1.05, 1.05, 1);
  transform: scale3d(1.05, 1.05, 1);
  z-index: 0;
  opacity: 0;
  background: url(../images/s4_bg.jpg) no-repeat;
  background-position: center;
}
.wrapper .stages .stage.s4 .bg.on {
  opacity: 1;
  -moz-transform: scale3d(1, 1, 1);
  -ms-transform: scale3d(1, 1, 1);
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
}
.wrapper .stages .stage.s4 .bg.end {
  -moz-animation-duration: 5s;
  -webkit-animation-duration: 5s;
  animation-duration: 5s;
  -moz-animation-iteration-count: 1;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -moz-animation-fill-mode: forwards;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -moz-animation-timing-function: ease;
  -webkit-animation-timing-function: ease;
  animation-timing-function: ease;
  -moz-animation-name: stagebg;
  -webkit-animation-name: stagebg;
  animation-name: stagebg;
}
.wrapper .stages .stage.s5 {
  background-color: #121720;
}
.wrapper .stages .stage.s5 .title {
  position: absolute;
  width: 634px;
  height: 159px;
  top: 50%;
  left: 50%;
  margin-left: -623px;
  margin-top: -295px;
  z-index: 3;
}
.wrapper .stages .stage.s5 .title .t {
  position: absolute;
  width: 100%;
  height: 159px;
  top: -30px;
  left: 0;
  margin-left: 0;
  margin-top: 0;
  -moz-transition: 1s;
  -o-transition: 1s;
  -webkit-transition: 1s;
  transition: 1s;
  -moz-transition-delay: 0.5s;
  -o-transition-delay: 0.5s;
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
  background: url(../images/s5_title.png) no-repeat;
  background-size: contain;
  z-index: 1;
  opacity: 0;
}
.wrapper .stages .stage.s5 .title .t.on {
  opacity: 1;
  top: 0;
}
.wrapper .stages .stage.s5 .title .word {
  position: absolute;
  width: 375px;
  height: auto;
  top: 152px;
  left: 105px;
  margin-left: 0;
  margin-top: 0;
  font-size: 15px;
  line-height: 25px;
  font-weight: normal;
  font-family: Arial, "微軟正黑體";
  color: #14223b;
  -moz-transition: 1s;
  -o-transition: 1s;
  -webkit-transition: 1s;
  transition: 1s;
  -moz-transition-delay: 0.5s;
  -o-transition-delay: 0.5s;
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
  z-index: 1;
  opacity: 0;
}
.wrapper .stages .stage.s5 .title .word.on {
  opacity: 1;
  top: 182px;
}
.wrapper .stages .stage.s5 .title .word .b {
  position: relative;
  width: 100%;
  height: auto;
  float: left;
  margin-bottom: 10px;
}
.wrapper .stages .stage.s5 .title .word .b span {
  width: auto;
  border-bottom: 1px solid #14223b;
}
.wrapper .stages .stage.s5 .title .word .s {
  position: relative;
  width: 100%;
  height: auto;
  float: left;
}
.wrapper .stages .stage.s5 .title .tbg {
  position: absolute;
  width: 561px;
  height: 352px;
  top: -58px;
  left: -23px;
  margin-left: 0;
  margin-top: 0;
  -moz-transition: 1s;
  -o-transition: 1s;
  -webkit-transition: 1s;
  transition: 1s;
  background: url(../images/s5_titlebg.png) no-repeat;
  opacity: 0;
  z-index: 0;
}
.wrapper .stages .stage.s5 .title .tbg.on {
  top: -38px;
  opacity: 1;
}
.wrapper .stages .stage.s5 .cover1 {
  position: absolute;
  width: 100%;
  height: 547px;
  top: 50%;
  left: 0;
  margin-left: 0;
  margin-top: 94px;
  background: url(../images/s5_cover1.png) no-repeat;
  background-position: center top;
  z-index: 1;
}
.wrapper .stages .stage.s5 .cover2 {
  position: absolute;
  width: 100%;
  height: 521px;
  top: 50%;
  left: 0;
  margin-left: 0;
  margin-top: 17px;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -moz-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  background: url(../images/s5_cover2.png) no-repeat;
  background-position: center top;
  z-index: 2;
}
.wrapper .stages .stage.s5 .cover2:before {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: auto;
  margin-left: 0;
  margin-top: 0;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -moz-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  content: "";
  right: 0;
  background-color: #121720;
}
.wrapper .stages .stage.s5 .cover2.on:before {
  width: 0;
}
.wrapper .stages .stage.s5 .bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  margin-left: 0;
  margin-top: 0;
  -moz-transition: 0.6s;
  -o-transition: 0.6s;
  -webkit-transition: 0.6s;
  transition: 0.6s;
  -moz-transform: scale3d(1.05, 1.05, 1);
  -ms-transform: scale3d(1.05, 1.05, 1);
  -webkit-transform: scale3d(1.05, 1.05, 1);
  transform: scale3d(1.05, 1.05, 1);
  z-index: 0;
  opacity: 0;
  background: url(../images/s5_bg.jpg) no-repeat;
  background-position: center;
}
.wrapper .stages .stage.s5 .bg.on {
  opacity: 1;
  -moz-transform: scale3d(1, 1, 1);
  -ms-transform: scale3d(1, 1, 1);
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
}
.wrapper .stages .stage.s5 .bg.end {
  -moz-animation-duration: 5s;
  -webkit-animation-duration: 5s;
  animation-duration: 5s;
  -moz-animation-iteration-count: 1;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -moz-animation-fill-mode: forwards;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -moz-animation-timing-function: ease;
  -webkit-animation-timing-function: ease;
  animation-timing-function: ease;
  -moz-animation-name: stagebg;
  -webkit-animation-name: stagebg;
  animation-name: stagebg;
}
@-moz-keyframes tbgani {
  0% {
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  30% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes tbgani {
  0% {
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  30% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes tbgani {
  0% {
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  30% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@-moz-keyframes stagebg {
  0% {
    -moz-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  100% {
    -moz-transform: scale3d(1.05, 1.05, 1);
    transform: scale3d(1.05, 1.05, 1);
  }
}
@-webkit-keyframes stagebg {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  100% {
    -webkit-transform: scale3d(1.05, 1.05, 1);
    transform: scale3d(1.05, 1.05, 1);
  }
}
@keyframes stagebg {
  0% {
    -moz-transform: scale3d(1, 1, 1);
    -ms-transform: scale3d(1, 1, 1);
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  100% {
    -moz-transform: scale3d(1.05, 1.05, 1);
    -ms-transform: scale3d(1.05, 1.05, 1);
    -webkit-transform: scale3d(1.05, 1.05, 1);
    transform: scale3d(1.05, 1.05, 1);
  }
}
@media screen and (max-width: 1367px) {
  .menubar {
    position: fixed;
    width: 100%;
    height: 45px;
    top: 0;
    left: 0;
    margin-left: 0;
    margin-top: 0;
    z-index: 10;
    background-color: #FFF;
  }
  .menubar .logo {
    position: absolute;
    width: 180px;
    height: 45px;
    top: 0;
    left: 0;
    margin-left: 0;
    margin-top: 0;
    cursor: pointer;
    background: url(../images/logo.png) no-repeat;
    background-size: contain;
    z-index: 2;
  }
  .menubar .menubtn {
    position: absolute;
    width: 50px;
    height: 45px;
    top: 0;
    left: auto;
    margin-left: 0;
    margin-top: 0;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    right: 5px;
    cursor: pointer;
    z-index: 2;
  }
  .menubar .menubtn:hover {
    -moz-transform: scale(0.8, 0.8);
    -ms-transform: scale(0.8, 0.8);
    -webkit-transform: scale(0.8, 0.8);
    transform: scale(0.8, 0.8);
  }
  .menubar .menubtn span {
    background: #000;
    border: none;
    height: 2px;
    width: 36px;
    position: absolute;
    top: 15px;
    left: 7px;
    transition: all .35s ease;
    cursor: pointer;
  }
  .menubar .menubtn span:nth-of-type(2) {
    top: 22px;
  }
  .menubar .menubtn span:nth-of-type(3) {
    top: 29px;
  }
  .menubar .menu_icon {
    position: absolute;
    width: 202px;
    height: 71px;
    top: 60px;
    left: auto;
    margin-left: 0;
    margin-top: 0;
    right: 22px;
    background: url(../images/menu_icon.png) no-repeat;
    transition: 1s;
    opacity: 0;
    z-index: 10;
  }
  .menubar .menu_icon.on {
    opacity: 1;
  }
  .menubar .menu {
    position: absolute;
    width: 404px;
    height: 631px;
    top: 0;
    left: auto;
    margin-left: 0;
    margin-top: 0;
    background: url(../images/menu_bg.png) no-repeat;
    transition: 1s;
    right: -404px;
    z-index: 11;
  }
  .menubar .menu.on {
    right: 0;
  }
  .menubar .menu .closebtn {
    position: absolute;
    width: 53px;
    height: 53px;
    top: 202px;
    left: 10px;
    margin-left: 0;
    margin-top: 0;
    z-index: 2;
    background: url(../images/popclosebtn.png) no-repeat;
    background-size: contain;
    cursor: pointer;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .menubar .menu .closebtn:before {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    margin-left: 0;
    margin-top: 0;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    content: "";
    opacity: 0;
    background: url(../images/popclosebtn_hover.png) no-repeat;
    background-size: contain;
  }
  .menubar .menu .closebtn:hover:before {
    opacity: 1;
  }
  .menubar .menu .t {
    position: absolute;
    width: 201px;
    height: 68px;
    top: 79px;
    left: auto;
    margin-left: 0;
    margin-top: 0;
    right: 25px;
    background: url(../images/menu_title.png) no-repeat;
    background-size: contain;
  }
  .menubar .menu ul {
    position: relative;
    width: 150px;
    height: auto;
    float: left;
    margin: 170px 0 0 207px;
  }
  .menubar .menu ul li {
    position: relative;
    width: 100%;
    height: auto;
    float: left;
    font-size: 18px;
    line-height: 18px;
    font-weight: normal;
    font-family: Arial, "微軟正黑體";
    color: #232e41;
    text-align: center;
    letter-spacing: 0.5px;
    padding: 15px 0 10px 0;
    cursor: pointer;
    border-bottom: 1px solid rgba(35, 46, 65, 0.4);
  }
  .menubar .menu ul li:hover {
    background: url(../images/menu_hover.gif) no-repeat;
    background-position: center;
  }

  .scroll_down {
    position: fixed;
    width: 162px;
    height: 54px;
    top: auto;
    left: 50%;
    margin-left: -81px;
    margin-top: 0;
    background: url(../images/scroll_down.png) no-repeat;
    background-size: contain;
    transition: 0.5s;
    bottom: 8px;
    z-index: 10;
    opacity: 1;
    cursor: pointer;
  }
  .scroll_down.on {
    opacity: 0;
    cursor: default;
  }
  .scroll_down.white {
    background: url(../images/scroll_down2.png) no-repeat;
  }
  .scroll_down.white .scroll_downin {
    background: url(../images/scroll_downin2.png) no-repeat;
  }
  .scroll_down .scroll_downin {
    position: absolute;
    width: 37px;
    height: 39px;
    top: auto;
    left: 50%;
    margin-left: -18px;
    margin-top: 0;
    bottom: 0;
    background: url(../images/scroll_downin.png) no-repeat;
    background-position: 0 0;
    -moz-animation-duration: 1s;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -moz-animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -moz-animation-timing-function: ease-out;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    -moz-animation-name: scroll_downani;
    -webkit-animation-name: scroll_downani;
    animation-name: scroll_downani;
  }
  @-moz-keyframes scroll_downani {
    0% {
      background-position: 0 10px;
    }
    40% {
      background-position: 0 20px;
    }
    60% {
      background-position: 0 20px;
    }
    100% {
      background-position: 0 10px;
    }
  }
  @-webkit-keyframes scroll_downani {
    0% {
      background-position: 0 10px;
    }
    40% {
      background-position: 0 20px;
    }
    60% {
      background-position: 0 20px;
    }
    100% {
      background-position: 0 10px;
    }
  }
  @keyframes scroll_downani {
    0% {
      background-position: 0 10px;
    }
    40% {
      background-position: 0 20px;
    }
    60% {
      background-position: 0 20px;
    }
    100% {
      background-position: 0 10px;
    }
  }
  .loading {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    margin-left: 0;
    margin-top: 0;
    -moz-transition: 1s;
    -o-transition: 1s;
    -webkit-transition: 1s;
    transition: 1s;
    margin-top: 45px;
    z-index: 9999;
    opacity: 1;
    background-color: #121720;
  }
  .loading .loading_in {
    position: absolute;
    width: 120px;
    height: 120px;
    top: 50%;
    left: 50%;
    margin-left: -60px;
    margin-top: -60px;
    background: url(../images/loading.png) no-repeat;
    z-index: 9;
  }
  .loading.on {
    z-index: 0;
    opacity: 0;
  }

  .videopop {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    margin-left: 0;
    margin-top: 0;
    -moz-transition: 1s;
    -o-transition: 1s;
    -webkit-transition: 1s;
    transition: 1s;
    z-index: 0;
    opacity: 0;
  }
  .videopop.on {
    z-index: 999;
    opacity: 1;
  }
  .videopop .closebtn {
    position: absolute;
    width: 58px;
    height: 58px;
    top: 0;
    left: 50%;
    margin-left: 490px;
    margin-top: 0;
    background: url(../images/popclosebtn.png) no-repeat;
    cursor: pointer;
    z-index: 1;
  }
  .videopop .closebtn:before {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    margin-left: 0;
    margin-top: 0;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    content: "";
    opacity: 0;
    background: url(../images/popclosebtn_hover.png) no-repeat;
  }
  .videopop .closebtn:hover:before {
    opacity: 1;
  }
  .videopop .video {
    position: absolute;
    width: 960px;
    height: 540px;
    top: 50%;
    left: 50%;
    margin-left: -480px;
    margin-top: -270px;
    z-index: 1;
  }
  .videopop .bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    margin-left: 0;
    margin-top: 0;
    z-index: 0;
    background-color: rgba(0, 0, 0, 0.8);
  }

  .stage_boxs {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    margin-left: 0;
    margin-top: 0;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    z-index: 0;
    opacity: 0;
    overflow: hidden;
  }
  .stage_boxs.on {
    z-index: 9;
    opacity: 1;
  }
  .stage_boxs .stage_mores {
    position: absolute;
    width: 2px;
    height: 2px;
    top: 50%;
    left: 50%;
    margin-left: -1px;
    margin-top: -1px;
    z-index: 10;
  }
  .stage_boxs .stage_mores .stage_moresin {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    margin-left: 0;
    margin-top: 0;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    opacity: 0;
    pointer-events: none;
  }
  .stage_boxs .stage_mores .stage_moresin.on {
    opacity: 1;
    pointer-events: auto;
  }
  .stage_boxs .stage_mores .stage_moresin.on .stage_more {
    -moz-transform: rotateY(180deg);
    -ms-transform: rotateY(180deg);
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
  }
  .stage_boxs .stage_mores .stage_moresin.on .stage_more:hover:before {
    opacity: 1;
  }
  .stage_boxs .stage_mores .stage_more {
    position: absolute;
    width: 62px;
    height: 62px;
    top: 0;
    left: 0;
    margin-left: 0;
    margin-top: 0;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    background: url(../images/s2_more.png) no-repeat;
    z-index: 9;
    cursor: pointer;
  }
  .stage_boxs .stage_mores .stage_more:before {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    margin-left: 0;
    margin-top: 0;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    content: "";
    background: url(../images/s2_more_hover.png) no-repeat;
    opacity: 0;
  }
  .stage_boxs .stage_mores .more1 {
    left: -510px;
    top: -135px;
  }
  .stage_boxs .stage_mores .more2 {
    left: -483px;
    top: 95px;
  }
  .stage_boxs .stage_mores .more3 {
    left: -130px;
    top: -120px;
  }
  .stage_boxs .stage_mores .more4 {
    left: 105px;
    top: 55px;
  }
  .stage_boxs .stage_mores .more5 {
    left: -60px;
    top: 180px;
  }
  .stage_boxs .stage_mores .more6 {
    left: 350px;
    top: -50px;
  }
  .stage_boxs .stage_mores .more7 {
    left: -47px;
    top: 25px;
  }
  .stage_boxs .stage_mores .more8 {
    left: -280px;
    top: -103px;
  }
  .stage_boxs .stage_mores .more9 {
    left: -460px;
    top: 2px;
  }
  .stage_boxs .stage_box {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    margin-left: 0;
    margin-top: 0;
    -moz-transition: 1s;
    -o-transition: 1s;
    -webkit-transition: 1s;
    transition: 1s;
    opacity: 0;
    z-index: 0;
  }
  .stage_boxs .stage_box.on {
    opacity: 1;
    z-index: 9;
  }
  .stage_boxs .stage_box.s1 .title {
    position: absolute;
    width: 380px;
    height: 100px;
    top: 50%;
    left: 50%;
    margin-left: -527px;
    margin-top: -263px;
    z-index: 2;
  }
  .stage_boxs .stage_box.s1 .title .t {
    position: relative;
    width: 100%;
    height: auto;
    float: left;
    font-size: 45px;
    line-height: 45px;
    font-weight: normal;
    font-family: Arial, "微軟正黑體";
    color: #ffffff;
    letter-spacing: 1.5px;
    box-sizing: border-box;
    margin-bottom: 20px;
    padding-left: 20px;
    border-left: 5px solid #FFF;
  }
  .stage_boxs .stage_box.s1 .title .word {
    position: relative;
    width: 100%;
    height: auto;
    float: left;
    font-size: 22px;
    line-height: 22px;
    font-weight: normal;
    font-family: Arial, "微軟正黑體";
    color: #FFF;
    text-indent: 130px;
  }
  .stage_boxs .stage_box.s1 .bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    margin-left: 0;
    margin-top: 0;
    background: url(../images/1366/stage_pop/s1_bg.jpg) no-repeat;
    background-position: center;
  }
  .stage_boxs .stage_box.s2 .title {
    position: absolute;
    width: 386px;
    height: 94px;
    top: 50%;
    left: 50%;
    margin-left: 115px;
    margin-top: -200px;
    z-index: 2;
  }
  .stage_boxs .stage_box.s2 .title .t {
    position: relative;
    width: 100%;
    height: auto;
    float: left;
    font-size: 45px;
    line-height: 45px;
    font-weight: normal;
    font-family: Arial, "微軟正黑體";
    color: #ffffff;
    letter-spacing: 1.5px;
    box-sizing: border-box;
    margin-bottom: 20px;
    padding-left: 20px;
    border-left: 5px solid #FFF;
  }
  .stage_boxs .stage_box.s2 .title .word {
    position: relative;
    width: 100%;
    height: auto;
    float: left;
    font-size: 22px;
    line-height: 22px;
    font-weight: normal;
    font-family: Arial, "微軟正黑體";
    color: #FFF;
    text-indent: 130px;
  }
  .stage_boxs .stage_box.s2 .bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    margin-left: 0;
    margin-top: 0;
    background: url(../images/1366/stage_pop/s2_bg.jpg) no-repeat;
    background-position: center;
  }
  .stage_boxs .stage_box.s3 .title {
    position: absolute;
    width: 510px;
    height: 100px;
    top: 50%;
    left: 50%;
    margin-left: -169px;
    margin-top: -212px;
    z-index: 2;
  }
  .stage_boxs .stage_box.s3 .title .t {
    position: relative;
    width: 100%;
    height: auto;
    float: left;
    font-size: 36px;
    line-height: 36px;
    font-weight: normal;
    font-family: Arial, "微軟正黑體";
    color: #ffffff;
    letter-spacing: 1.5px;
    box-sizing: border-box;
    margin-bottom: 15px;
    padding-left: 20px;
    border-left: 5px solid #FFF;
  }
  .stage_boxs .stage_box.s3 .title .t .ppc {
    position: absolute;
    width: 430px;
    height: 77px;
    top: -21px;
    left: 200px;
    margin-left: 0;
    margin-top: 0;
  }
  .stage_boxs .stage_box.s3 .title .t .ppc img {
    width: 100%;
  }
  .stage_boxs .stage_box.s3 .title .word {
    position: relative;
    width: 100%;
    height: auto;
    float: left;
    font-size: 18px;
    line-height: 18px;
    font-weight: normal;
    font-family: Arial, "微軟正黑體";
    color: #FFF;
    text-indent: 205px;
  }
  .stage_boxs .stage_box.s3 .bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    margin-left: 0;
    margin-top: 0;
    background: url(../images/1366/stage_pop/s3_bg.jpg) no-repeat;
    background-position: center;
  }
  .stage_boxs .black_cover {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    margin-left: 0;
    margin-top: 0;
    z-index: 0;
    background-color: rgba(0, 0, 0, 0.8);
  }

  .stage_pops {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    margin-left: 0;
    margin-top: 0;
    z-index: 0;
    opacity: 0;
    overflow: hidden;
  }
  .stage_pops.on {
    z-index: 99;
    opacity: 1;
  }
  .stage_pops .stage_pop {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    margin-left: 0;
    margin-top: 0;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    opacity: 0;
    z-index: 0;
  }
  .stage_pops .stage_pop.on {
    opacity: 1;
    z-index: 1;
  }
  .stage_pops .stage_pop.m6 .rightbtn {
    position: absolute;
    width: 52px;
    height: 106px;
    top: 50%;
    left: 50%;
    margin-left: 448px;
    margin-top: -80px;
    background: url(../images/1024/stage_pop/s2_pop_right_btn.png) no-repeat;
    cursor: pointer;
    z-index: 10;
  }
  .stage_pops .stage_pop.m6 .leftbtn {
    position: absolute;
    width: 52px;
    height: 106px;
    top: 50%;
    left: auto;
    margin-left: 0;
    margin-top: -80px;
    right: 50%;
    margin-right: 448px;
    background: url(../images/1024/stage_pop/s2_pop_left_btn.png) no-repeat;
    cursor: pointer;
    z-index: 10;
  }
  .stage_pops .stage_pop.m6 .sbtn {
    position: absolute;
    width: 180px;
    height: 49px;
    top: 50%;
    left: 50%;
    margin-left: 140px;
    margin-top: 45px;
    -moz-transition: 1s;
    -o-transition: 1s;
    -webkit-transition: 1s;
    transition: 1s;
    z-index: 2;
    text-align: center;
    opacity: 0;
  }
  .stage_pops .stage_pop.m6 .sbtn.on {
    z-index: 2;
    opacity: 1;
  }
  .stage_pops .stage_pop.m6 .sbtn a {
    font-size: 25px;
    line-height: 49px;
    font-weight: normal;
    font-family: Arial, "微軟正黑體";
    color: #232e41;
    text-align: center;
    width: 49px;
    height: 49px;
    display: inline-block;
    background: url(../images/stage_pop/s2_sbtn.png) no-repeat;
    background-size: contain;
    margin-right: 10px;
  }
  .stage_pops .stage_pop.m6 .sbtn a span {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    margin-left: 0;
    margin-top: 0;
    z-index: 1;
  }
  .stage_pops .stage_pop.m6 .sbtn a:nth-child(3n) {
    margin-right: 0;
  }
  .stage_pops .stage_pop.m6 .sbtn a:before {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    margin-left: 0;
    margin-top: 0;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    content: "";
    z-index: 0;
    opacity: 0;
    background: url(../images/stage_pop/s2_sbtn_on.png) no-repeat;
    background-size: contain;
  }
  .stage_pops .stage_pop.m6 .sbtn a:hover {
    color: #FFF;
  }
  .stage_pops .stage_pop.m6 .sbtn a:hover:before {
    opacity: 1;
  }
  .stage_pops .stage_pop.m6 .sbtn a.on {
    color: #FFF;
  }
  .stage_pops .stage_pop.m6 .sbtn a.on:before {
    opacity: 1;
  }
  .stage_pops .stage_pop.m6 ul {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    margin-left: 0;
    margin-top: 0;
  }
  .stage_pops .stage_pop.m6 ul li {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    margin-left: 0;
    margin-top: 0;
    -moz-transition: 1s;
    -o-transition: 1s;
    -webkit-transition: 1s;
    transition: 1s;
    opacity: 0;
    z-index: 0;
  }
  .stage_pops .stage_pop.m6 ul li.on {
    opacity: 1;
    z-index: 1;
  }
  .stage_pops .stage_pop.m7 .closebtn {
    position: absolute;
    width: 46px;
    height: 46px;
    top: 50%;
    left: 50%;
    margin-left: -23px;
    margin-top: -217px;
    background: url(../images/popclosebtn_hover.png) no-repeat;
    background-size: contain;
    cursor: pointer;
    z-index: 9;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .stage_pops .stage_pop.m7 .closebtn:before {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    margin-left: 0;
    margin-top: 0;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    content: "";
    opacity: 0;
    background: url(../images/popclosebtn.png) no-repeat;
    background-size: contain;
  }
  .stage_pops .stage_pop.m7 .closebtn:hover:before {
    opacity: 1;
  }
  .stage_pops .stage_pop.m7 .pic {
    position: absolute;
    width: 596px;
    height: 596px;
    top: 50%;
    left: 50%;
    margin-left: -298px;
    margin-top: -298px;
    -moz-transition: 1s;
    -o-transition: 1s;
    -webkit-transition: 1s;
    transition: 1s;
    -moz-transform: rotateY(-90deg);
    -ms-transform: rotateY(-90deg);
    -webkit-transform: rotateY(-90deg);
    transform: rotateY(-90deg);
    opacity: 0;
    z-index: 1;
  }
  .stage_pops .stage_pop.m7 .pic.on {
    -moz-transform: rotateY(0);
    -ms-transform: rotateY(0);
    -webkit-transform: rotateY(0);
    transform: rotateY(0);
    opacity: 1;
  }
  .stage_pops .stage_pop.m7 .pic .pimg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    margin-left: 0;
    margin-top: 0;
    z-index: 1;
  }
  .stage_pops .stage_pop.m7 .pic .pimg img {
    width: 100%;
  }
  .stage_pops .stage_pop.m7 .pic .border {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    margin-left: 0;
    margin-top: 0;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    background: url(../images/popborder.png) no-repeat;
    background-size: contain;
    z-index: 2;
    opacity: 0;
    pointer-events: none;
  }
  .stage_pops .stage_pop.m7 .pic .border.on {
    opacity: 1;
    top: 15px;
  }
  .stage_pops .stage_pop.m7 .pic .btn {
    position: absolute;
    width: 84px;
    height: 84px;
    top: auto;
    left: 50%;
    margin-left: -42px;
    margin-top: 0;
    bottom: 20px;
    background: url(../images/s2_pop_play.png) no-repeat;
    cursor: pointer;
    z-index: 2;
  }
  .stage_pops .stage_pop.m7 .pic .btn:before {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    margin-left: 0;
    margin-top: 0;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    content: "";
    background: url(../images/s2_pop_play_hover.png) no-repeat;
    opacity: 0;
  }
  .stage_pops .stage_pop.m7 .pic .btn:hover:before {
    opacity: 1;
  }
  .stage_pops .stage_pop.m7 .word {
    position: absolute;
    width: 90%;
    height: 168px;
    top: 50%;
    left: 0;
    margin-left: 5%;
    margin-top: 25px;
    -moz-transition: 1s;
    -o-transition: 1s;
    -webkit-transition: 1s;
    transition: 1s;
    background: none;
    z-index: 1;
    opacity: 0;
    text-align: center;
  }
  .stage_pops .stage_pop.m7 .word:before {
    display: none;
  }
  .stage_pops .stage_pop.m7 .word .m7play {
    position: relative;
    width: 23%;
    height: auto;
    margin-right: 2.3%;
    display: inline-block;
    cursor: pointer;
    background-color: #ededed;
  }
  .stage_pops .stage_pop.m7 .word .m7play .icon {
    position: absolute;
    width: 48px;
    height: 48px;
    top: 50%;
    left: 50%;
    margin-left: -24px;
    margin-top: -33px;
    background: url(../images/stage_pop/s3_pop_play.png) no-repeat;
    background-size: contain;
    z-index: 9;
  }
  .stage_pops .stage_pop.m7 .word .m7play .icon:before {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    margin-left: 0;
    margin-top: 0;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    content: "";
    background: url(../images/stage_pop/s3_pop_play_hover.png) no-repeat;
    background-size: contain;
    opacity: 0;
    z-index: 9;
  }
  .stage_pops .stage_pop.m7 .word .m7play .bg {
    position: relative;
    width: 100%;
    height: auto;
    float: left;
    box-sizing: border-box;
    border: 2px solid #ededed;
    overflow: hidden;
  }
  .stage_pops .stage_pop.m7 .word .m7play .bg img {
    width: 100%;
    -moz-transition: 1s;
    -o-transition: 1s;
    -webkit-transition: 1s;
    transition: 1s;
  }
  .stage_pops .stage_pop.m7 .word .m7play .m7w {
    position: relative;
    width: 100%;
    height: auto;
    float: left;
    font-size: 16px;
    line-height: 34px;
    font-weight: normal;
    font-family: Arial, "微軟正黑體";
    color: #232e41;
    background-color: #ededed;
    text-align: center;
  }
  .stage_pops .stage_pop.m7 .word .m7play:nth-child(4n) {
    margin-right: 0;
  }
  .stage_pops .stage_pop.m7 .word .m7play:hover .icon:before {
    opacity: 1;
  }
  .stage_pops .stage_pop.m7 .word .m7play:hover .bg img {
    -moz-transform: scale3d(1.1, 1.1, 1);
    -ms-transform: scale3d(1.1, 1.1, 1);
    -webkit-transform: scale3d(1.1, 1.1, 1);
    transform: scale3d(1.1, 1.1, 1);
  }
  .stage_pops .stage_pop.m7 .word.on {
    opacity: 1;
    margin-top: 55px;
    margin-left: 5%;
  }
  .stage_pops .stage_pop .pic {
    position: absolute;
    width: 596px;
    height: 596px;
    top: 50%;
    left: 50%;
    margin-left: -424px;
    margin-top: -342px;
    -moz-transition: 1s;
    -o-transition: 1s;
    -webkit-transition: 1s;
    transition: 1s;
    -moz-transform: rotateY(-90deg);
    -ms-transform: rotateY(-90deg);
    -webkit-transform: rotateY(-90deg);
    transform: rotateY(-90deg);
    opacity: 0;
    z-index: 1;
  }
  .stage_pops .stage_pop .pic.on {
    -moz-transform: rotateY(0);
    -ms-transform: rotateY(0);
    -webkit-transform: rotateY(0);
    transform: rotateY(0);
    opacity: 1;
  }
  .stage_pops .stage_pop .pic .pimg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    margin-left: 0;
    margin-top: 0;
    z-index: 1;
  }
  .stage_pops .stage_pop .pic .pimg img {
    width: 100%;
  }
  .stage_pops .stage_pop .pic .border {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    margin-left: 0;
    margin-top: 0;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    background: url(../images/popborder.png) no-repeat;
    background-size: contain;
    z-index: 2;
    opacity: 0;
    pointer-events: none;
  }
  .stage_pops .stage_pop .pic .border.on {
    opacity: 1;
    top: 15px;
  }
  .stage_pops .stage_pop .pic .btn {
    position: absolute;
    width: 67px;
    height: 67px;
    top: auto;
    left: 50%;
    margin-left: -33px;
    margin-top: 0;
    bottom: 20px;
    background: url(../images/s2_pop_play.png) no-repeat;
    background-size: contain;
    cursor: pointer;
    z-index: 2;
  }
  .stage_pops .stage_pop .pic .btn:before {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    margin-left: 0;
    margin-top: 0;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    content: "";
    background: url(../images/s2_pop_play_hover.png) no-repeat;
    background-size: contain;
    opacity: 0;
  }
  .stage_pops .stage_pop .pic .btn:hover:before {
    opacity: 1;
  }
  .stage_pops .stage_pop .word {
    position: absolute;
    width: 385px;
    height: 385px;
    top: 50%;
    left: 50%;
    margin-left: 7px;
    margin-top: -47px;
    -moz-transition: 1s;
    -o-transition: 1s;
    -webkit-transition: 1s;
    transition: 1s;
    background: url(../images/pop_word_bg.png) no-repeat;
    background-size: contain;
    z-index: 1;
    opacity: 0;
  }
  .stage_pops .stage_pop .word.on {
    opacity: 1;
    margin-left: 37px;
  }
  .stage_pops .stage_pop .word:before {
    content: "";
    width: 1px;
    height: 100%;
    display: inline-block;
    vertical-align: middle;
  }
  .stage_pops .stage_pop .word .line {
    position: absolute;
    width: 52%;
    height: 1px;
    top: auto;
    left: 0;
    margin-left: 24%;
    margin-top: 0;
    bottom: 120px;
    background-color: #000000;
    z-index: 1;
  }
  .stage_pops .stage_pop .word .w {
    font-size: 13px;
    line-height: 18px;
    font-weight: normal;
    font-family: Arial, "微軟正黑體";
    color: #232e41;
    width: 60.4%;
    height: auto;
    margin-left: 18%;
    display: inline-block;
    vertical-align: middle;
  }
  .stage_pops .stage_pop .word .closebtn {
    position: absolute;
    width: 47px;
    height: 47px;
    top: auto;
    left: 50%;
    margin-left: -23px;
    margin-top: 0;
    bottom: 50px;
    background: url(../images/1024/popclosebtn.png) no-repeat;
    background-size: contain;
    cursor: pointer;
  }
  .stage_pops .stage_pop .word .closebtn:before {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    margin-left: 0;
    margin-top: 0;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    content: "";
    opacity: 0;
    background: url(../images/1024/popclosebtn_hover.png) no-repeat;
    background-size: contain;
  }
  .stage_pops .stage_pop .word .closebtn:hover:before {
    opacity: 1;
  }
  .stage_pops .stage_pop .bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    margin-left: 0;
    margin-top: 0;
    z-index: 0;
    background-color: rgba(0, 0, 0, 0.6);
  }

  .pops {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    margin-left: 0;
    margin-top: 0;
    z-index: 0;
    opacity: 0;
    overflow: hidden;
  }
  .pops.on {
    z-index: 99;
    opacity: 1;
  }
  .pops .pop {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    margin-left: 0;
    margin-top: 0;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    opacity: 0;
    z-index: 0;
  }
  .pops .pop.on {
    opacity: 1;
    z-index: 1;
  }
  .pops .pop .pic {
    position: absolute;
    width: 596px;
    height: 596px;
    top: 50%;
    left: 50%;
    margin-left: -424px;
    margin-top: -342px;
    -moz-transition: 1s;
    -o-transition: 1s;
    -webkit-transition: 1s;
    transition: 1s;
    -moz-transform: rotateY(-90deg);
    -ms-transform: rotateY(-90deg);
    -webkit-transform: rotateY(-90deg);
    transform: rotateY(-90deg);
    opacity: 0;
    z-index: 1;
  }
  .pops .pop .pic.on {
    -moz-transform: rotateY(0);
    -ms-transform: rotateY(0);
    -webkit-transform: rotateY(0);
    transform: rotateY(0);
    opacity: 1;
  }
  .pops .pop .pic .pimg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    margin-left: 0;
    margin-top: 0;
    z-index: 1;
  }
  .pops .pop .pic .pimg img {
    width: 100%;
  }
  .pops .pop .pic .border {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    margin-left: 0;
    margin-top: 0;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    background: url(../images/popborder.png) no-repeat;
    background-size: contain;
    z-index: 2;
    opacity: 0;
    pointer-events: none;
  }
  .pops .pop .pic .border.on {
    opacity: 1;
    top: 15px;
  }
  .pops .pop .pic .btn {
    position: absolute;
    width: 67px;
    height: 67px;
    top: auto;
    left: 50%;
    margin-left: -33px;
    margin-top: 0;
    bottom: 15px;
    background: url(../images/s2_pop_play.png) no-repeat;
    background-size: contain;
    cursor: pointer;
    z-index: 2;
  }
  .pops .pop .pic .btn:before {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    margin-left: 0;
    margin-top: 0;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    content: "";
    background: url(../images/s2_pop_play_hover.png) no-repeat;
    background-size: contain;
    opacity: 0;
  }
  .pops .pop .pic .btn:hover:before {
    opacity: 1;
  }
  .pops .pop .word {
    position: absolute;
    width: 385px;
    height: 385px;
    top: 50%;
    left: 50%;
    margin-left: 7px;
    margin-top: -47px;
    -moz-transition: 1s;
    -o-transition: 1s;
    -webkit-transition: 1s;
    transition: 1s;
    background: url(../images/pop_word_bg.png) no-repeat;
    background-size: contain;
    z-index: 1;
    opacity: 0;
  }
  .pops .pop .word.on {
    opacity: 1;
    margin-left: 37px;
  }
  .pops .pop .word:before {
    content: "";
    width: 1px;
    height: 100%;
    display: inline-block;
    vertical-align: middle;
  }
  .pops .pop .word .line {
    position: absolute;
    width: 52%;
    height: 1px;
    top: auto;
    left: 0;
    margin-left: 24%;
    margin-top: 0;
    bottom: 120px;
    background-color: #000000;
    z-index: 1;
  }
  .pops .pop .word .w {
    font-size: 13px;
    line-height: 18px;
    font-weight: normal;
    font-family: Arial, "微軟正黑體";
    color: #232e41;
    width: 60.4%;
    height: auto;
    margin-left: 18%;
    display: inline-block;
    vertical-align: middle;
  }
  .pops .pop .word .closebtn {
    position: absolute;
    width: 47px;
    height: 47px;
    top: auto;
    left: 50%;
    margin-left: -23px;
    margin-top: 0;
    bottom: 50px;
    background: url(../images/1024/popclosebtn.png) no-repeat;
    background-size: contain;
    cursor: pointer;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .pops .pop .word .closebtn:before {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    margin-left: 0;
    margin-top: 0;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    content: "";
    opacity: 0;
    background: url(../images/1024/popclosebtn_hover.png) no-repeat;
    background-size: contain;
  }
  .pops .pop .word .closebtn:hover:before {
    opacity: 1;
  }
  .pops .pop .bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    margin-left: 0;
    margin-top: 0;
    z-index: 0;
    background-color: rgba(0, 0, 0, 0.6);
  }

  .wrapper {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    margin-left: 0;
    margin-top: 0;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    overflow: hidden;
    z-index: 1;
    background-color: #121720;
  }
  .wrapper.on {
    -moz-transform: scale3d(0.95, 0.95, 1);
    -ms-transform: scale3d(0.95, 0.95, 1);
    -webkit-transform: scale3d(0.95, 0.95, 1);
    transform: scale3d(0.95, 0.95, 1);
  }
  .wrapper .carani {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    margin-left: 0;
    margin-top: 0;
    pointer-events: none;
    z-index: 0;
  }
  .wrapper .carani.on {
    z-index: 6;
  }
  .wrapper .carani.on .car {
    opacity: 0;
  }
  .wrapper .carani .w1365 {
    display: block;
  }
  .wrapper .carani .w1365.on {
    display: none;
  }
  .wrapper .carani .w1024 {
    display: block;
  }
  .wrapper .carani .w1024.on {
    display: none;
  }
  .wrapper .carani .car {
    opacity: 1;
  }
  .wrapper .carani .s2 {
    position: absolute;
    width: 1024px;
    height: 512px;
    top: 50%;
    left: 50%;
    margin-left: -315px;
    margin-top: -78px;
    background: url(../images/s2_car.png) no-repeat;
  }
  .wrapper .carani .s3 {
    position: absolute;
    width: 1024px;
    height: 512px;
    top: 50%;
    left: 50%;
    margin-left: -315px;
    margin-top: -78px;
    background: url(../images/s3_car.png) no-repeat;
  }
  .wrapper .carani .s4 {
    position: absolute;
    width: 1024px;
    height: 512px;
    top: 50%;
    left: 50%;
    margin-left: -315px;
    margin-top: -78px;
    background: url(../images/s4_car.png) no-repeat;
  }
  .wrapper .carani .s5 {
    position: absolute;
    width: 1024px;
    height: 512px;
    top: 50%;
    left: 50%;
    margin-left: -315px;
    margin-top: -78px;
    background: url(../images/s5_car.png) no-repeat;
  }
  .wrapper .mores {
    position: absolute;
    width: 2px;
    height: 2px;
    top: 50%;
    left: 50%;
    margin-left: -1px;
    margin-top: -1px;
    z-index: 7;
  }
  .wrapper .mores .moresin {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    margin-left: 0;
    margin-top: 0;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    opacity: 0;
    pointer-events: none;
  }
  .wrapper .mores .moresin.on {
    opacity: 1;
    pointer-events: auto;
  }
  .wrapper .mores .moresin.on .more {
    -moz-transform: rotateY(180deg);
    -ms-transform: rotateY(180deg);
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
  }
  .wrapper .mores .moresin.on .more:hover:before {
    opacity: 1;
  }
  .wrapper .mores .more {
    position: absolute;
    width: 62px;
    height: 62px;
    top: 0;
    left: 0;
    margin-left: 0;
    margin-top: 0;
    background: url(../images/s2_more.png) no-repeat;
    cursor: pointer;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .wrapper .mores .more:before {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    margin-left: 0;
    margin-top: 0;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    content: "";
    background: url(../images/s2_more_hover.png) no-repeat;
    opacity: 0;
  }
  .wrapper .mores .more1 {
    left: -87px;
    top: 75px;
  }
  .wrapper .mores .more2 {
    left: 84px;
    top: 20px;
  }
  .wrapper .mores .more3 {
    left: 115px;
    top: 205px;
  }
  .wrapper .mores .more4 {
    left: 300px;
    top: -112px;
  }
  .wrapper .mores .more5 {
    left: 460px;
    top: -28px;
  }
  .wrapper .mores .more6 {
    left: 123px;
    top: 94px;
  }
  .wrapper .mores .more7 {
    left: 358px;
    top: 70px;
  }
  .wrapper .stages {
    position: absolute;
    width: 100%;
    height: 500%;
    top: 0;
    left: 0;
    margin-left: 0;
    margin-top: 0;
    -moz-transition: 1s;
    -o-transition: 1s;
    -webkit-transition: 1s;
    transition: 1s;
    -moz-transition-timing-function: ease-out;
    -o-transition-timing-function: ease-out;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
    z-index: 5;
  }
  .wrapper .stages.s2 {
    top: -100%;
  }
  .wrapper .stages.s3 {
    top: -200%;
  }
  .wrapper .stages.s4 {
    top: -300%;
  }
  .wrapper .stages.s5 {
    top: -400%;
  }
  .wrapper .stages .stage {
    position: relative;
    width: 100%;
    height: 20%;
    float: left;
    overflow: hidden;
  }
  .wrapper .stages .stage.s1 .title {
    position: absolute;
    width: 401px;
    height: 206px;
    top: 50%;
    left: 50%;
    margin-left: -646px;
    margin-top: -260px;
    background: url(../images/s1_title.png) no-repeat;
    background-size: contain;
    z-index: 1;
  }
  .wrapper .stages .stage.s1 .light {
    position: absolute;
    width: 1066px;
    height: 686px;
    top: 50%;
    left: 50%;
    margin-left: -729px;
    margin-top: -439px;
    z-index: 1;
    opacity: 0;
    background: url(../images/1366/s1_light.png) no-repeat;
    -moz-animation-duration: 1.5s;
    -webkit-animation-duration: 1.5s;
    animation-duration: 1.5s;
    -moz-animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -moz-animation-timing-function: ease-out;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    -moz-animation-name: s1_light;
    -webkit-animation-name: s1_light;
    animation-name: s1_light;
  }
  .wrapper .stages .stage.s1 .bg {
    position: absolute;
    width: 108%;
    height: 108%;
    top: -4%;
    left: -4%;
    margin-left: 0;
    margin-top: 0;
    -moz-transition: 3s;
    -o-transition: 3s;
    -webkit-transition: 3s;
    transition: 3s;
    -moz-transform: scale3d(0.93, 0.93, 0.93);
    -ms-transform: scale3d(0.93, 0.93, 0.93);
    -webkit-transform: scale3d(0.93, 0.93, 0.93);
    transform: scale3d(0.93, 0.93, 0.93);
    z-index: 0;
    background-image: url(../images/1366/s1_bg.jpg);
    background-repeat: no-repeat;
    background-position: center;
  }
  .wrapper .stages .stage.s1 .bg.frist {
    -moz-transform: scale3d(1, 1, 1);
    -ms-transform: scale3d(1, 1, 1);
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  @-moz-keyframes s1_light {
    0% {
      opacity: 0;
    }
    40% {
      opacity: 1;
    }
    60% {
      opacity: 1;
    }
    100% {
      opacity: 0;
    }
  }
  @-webkit-keyframes s1_light {
    0% {
      opacity: 0;
    }
    40% {
      opacity: 1;
    }
    60% {
      opacity: 1;
    }
    100% {
      opacity: 0;
    }
  }
  @keyframes s1_light {
    0% {
      opacity: 0;
    }
    40% {
      opacity: 1;
    }
    60% {
      opacity: 1;
    }
    100% {
      opacity: 0;
    }
  }
  .wrapper .stages .stage.s2 .title {
    position: absolute;
    width: 512px;
    height: 159px;
    top: 50%;
    left: 50%;
    margin-left: -635px;
    margin-top: -254px;
    z-index: 3;
  }
  .wrapper .stages .stage.s2 .title .t {
    position: absolute;
    width: 100%;
    height: 159px;
    top: -30px;
    left: 0;
    margin-left: 0;
    margin-top: 0;
    -moz-transition: 1s;
    -o-transition: 1s;
    -webkit-transition: 1s;
    transition: 1s;
    -moz-transition-delay: 0.5s;
    -o-transition-delay: 0.5s;
    -webkit-transition-delay: 0.5s;
    transition-delay: 0.5s;
    background: url(../images/s2_title.png) no-repeat;
    background-size: contain;
    z-index: 1;
    opacity: 0;
  }
  .wrapper .stages .stage.s2 .title .t.on {
    opacity: 1;
    top: 0;
  }
  .wrapper .stages .stage.s2 .title .word {
    position: absolute;
    width: 378px;
    height: auto;
    top: 152px;
    left: 105px;
    margin-left: 0;
    margin-top: 0;
    font-size: 15px;
    line-height: 25px;
    font-weight: normal;
    font-family: Arial, "微軟正黑體";
    color: #FFF;
    -moz-transition: 1s;
    -o-transition: 1s;
    -webkit-transition: 1s;
    transition: 1s;
    -moz-transition-delay: 0.5s;
    -o-transition-delay: 0.5s;
    -webkit-transition-delay: 0.5s;
    transition-delay: 0.5s;
    z-index: 1;
    opacity: 0;
  }
  .wrapper .stages .stage.s2 .title .word.on {
    opacity: 1;
    top: 182px;
  }
  .wrapper .stages .stage.s2 .title .word .b {
    position: relative;
    width: 100%;
    height: auto;
    float: left;
    margin-bottom: 10px;
  }
  .wrapper .stages .stage.s2 .title .word .b span {
    width: auto;
    border-bottom: 1px solid #FFF;
  }
  .wrapper .stages .stage.s2 .title .word .s {
    position: relative;
    width: 100%;
    height: auto;
    float: left;
  }
  .wrapper .stages .stage.s2 .title .tbg {
    position: absolute;
    width: 555px;
    height: 400px;
    top: -35px;
    left: -20px;
    margin-left: 0;
    margin-top: 0;
    -moz-transition: 1s;
    -o-transition: 1s;
    -webkit-transition: 1s;
    transition: 1s;
    background: url(../images/s2_titlebg.png) no-repeat;
    opacity: 0;
    z-index: 0;
  }
  .wrapper .stages .stage.s2 .title .tbg:before {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    margin-left: 0;
    margin-top: 0;
    content: "";
    background: url(../images/s2_titlebg2.png) no-repeat;
    z-index: 1;
    opacity: 0;
  }
  .wrapper .stages .stage.s2 .title .tbg.on {
    top: -5px;
    opacity: 1;
  }
  .wrapper .stages .stage.s2 .title .tbg.on:before {
    -moz-animation-duration: 1s;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -moz-animation-iteration-count: 1;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
    -moz-animation-fill-mode: forwards;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -moz-animation-name: tbgani;
    -webkit-animation-name: tbgani;
    animation-name: tbgani;
  }
  .wrapper .stages .stage.s2 .cover1 {
    position: absolute;
    width: 100%;
    height: 457px;
    top: 50%;
    left: 0;
    margin-left: 0;
    margin-top: 25px;
    background: url(../images/s2_cover1.png) no-repeat;
    background-position: center;
    z-index: 1;
  }
  .wrapper .stages .stage.s2 .cover2 {
    position: absolute;
    width: 100%;
    height: 0;
    top: 50%;
    left: 0;
    margin-left: 0;
    margin-top: 13px;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    -moz-transition-timing-function: ease-out;
    -o-transition-timing-function: ease-out;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
    background: url(../images/s2_cover2.png) no-repeat;
    background-position: center top;
    z-index: 2;
  }
  .wrapper .stages .stage.s2 .cover2.on {
    height: 527px;
  }
  .wrapper .stages .stage.s2 .bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    margin-left: 0;
    margin-top: 0;
    -moz-transition: 0.6s;
    -o-transition: 0.6s;
    -webkit-transition: 0.6s;
    transition: 0.6s;
    -moz-transform: scale3d(1.05, 1.05, 1);
    -ms-transform: scale3d(1.05, 1.05, 1);
    -webkit-transform: scale3d(1.05, 1.05, 1);
    transform: scale3d(1.05, 1.05, 1);
    z-index: 0;
    opacity: 0;
    background: url(../images/s2_bg.jpg) no-repeat;
    background-position: center;
  }
  .wrapper .stages .stage.s2 .bg.on {
    opacity: 1;
    -moz-transform: scale3d(1, 1, 1);
    -ms-transform: scale3d(1, 1, 1);
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  .wrapper .stages .stage.s2 .bg.end {
    -moz-animation-duration: 5s;
    -webkit-animation-duration: 5s;
    animation-duration: 5s;
    -moz-animation-iteration-count: 1;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
    -moz-animation-fill-mode: forwards;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -moz-animation-timing-function: ease;
    -webkit-animation-timing-function: ease;
    animation-timing-function: ease;
    -moz-animation-name: stagebg;
    -webkit-animation-name: stagebg;
    animation-name: stagebg;
  }
  .wrapper .stages .stage.s3 {
    background-color: #121720;
  }
  .wrapper .stages .stage.s3 .title {
    position: absolute;
    width: 383px;
    height: 159px;
    top: 50%;
    left: 50%;
    margin-left: -543px;
    margin-top: -249px;
    z-index: 3;
  }
  .wrapper .stages .stage.s3 .title .t {
    position: absolute;
    width: 100%;
    height: 159px;
    top: -30px;
    left: 0;
    margin-left: 0;
    margin-top: 0;
    -moz-transition: 1s;
    -o-transition: 1s;
    -webkit-transition: 1s;
    transition: 1s;
    -moz-transition-delay: 0.5s;
    -o-transition-delay: 0.5s;
    -webkit-transition-delay: 0.5s;
    transition-delay: 0.5s;
    background: url(../images/s3_title.png) no-repeat;
    background-size: contain;
    z-index: 1;
    opacity: 0;
  }
  .wrapper .stages .stage.s3 .title .t.on {
    opacity: 1;
    top: 0;
  }
  .wrapper .stages .stage.s3 .title .word {
    position: absolute;
    width: 400px;
    height: auto;
    top: 152px;
    left: 105px;
    margin-left: 0;
    margin-top: 0;
    font-size: 15px;
    line-height: 25px;
    font-weight: normal;
    font-family: Arial, "微軟正黑體";
    color: #14223b;
    -moz-transition: 1s;
    -o-transition: 1s;
    -webkit-transition: 1s;
    transition: 1s;
    -moz-transition-delay: 0.5s;
    -o-transition-delay: 0.5s;
    -webkit-transition-delay: 0.5s;
    transition-delay: 0.5s;
    z-index: 1;
    opacity: 0;
  }
  .wrapper .stages .stage.s3 .title .word.on {
    opacity: 1;
    top: 182px;
  }
  .wrapper .stages .stage.s3 .title .word .b {
    position: relative;
    width: 100%;
    height: auto;
    float: left;
    margin-bottom: 10px;
  }
  .wrapper .stages .stage.s3 .title .word .b span {
    width: auto;
    border-bottom: 1px solid #14223b;
  }
  .wrapper .stages .stage.s3 .title .word .s {
    position: relative;
    width: 100%;
    height: auto;
    float: left;
  }
  .wrapper .stages .stage.s3 .title .tbg {
    position: absolute;
    width: 660px;
    height: 389px;
    top: -74px;
    left: -187px;
    margin-left: 0;
    margin-top: 0;
    -moz-transition: 1s;
    -o-transition: 1s;
    -webkit-transition: 1s;
    transition: 1s;
    background: url(../images/s3_titlebg.png) no-repeat;
    opacity: 0;
    z-index: 0;
  }
  .wrapper .stages .stage.s3 .title .tbg.on {
    top: -54px;
    opacity: 1;
  }
  .wrapper .stages .stage.s3 .cover1 {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    margin-left: 0;
    margin-top: 0;
    z-index: 1;
  }
  .wrapper .stages .stage.s3 .cover2 {
    position: absolute;
    width: 0;
    height: 384px;
    top: 50%;
    left: auto;
    margin-left: 0;
    margin-top: 153px;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    -moz-transition-timing-function: ease-out;
    -o-transition-timing-function: ease-out;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
    right: 0;
    background: url(../images/s3_cover2.png) no-repeat;
    background-position: center top;
    z-index: 2;
  }
  .wrapper .stages .stage.s3 .cover2.on {
    width: 100%;
  }
  .wrapper .stages .stage.s3 .bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    margin-left: 0;
    margin-top: 0;
    -moz-transition: 0.6s;
    -o-transition: 0.6s;
    -webkit-transition: 0.6s;
    transition: 0.6s;
    -moz-transform: scale3d(1.05, 1.05, 1);
    -ms-transform: scale3d(1.05, 1.05, 1);
    -webkit-transform: scale3d(1.05, 1.05, 1);
    transform: scale3d(1.05, 1.05, 1);
    z-index: 0;
    opacity: 0;
    background: url(../images/s3_bg.jpg) no-repeat;
    background-position: center;
  }
  .wrapper .stages .stage.s3 .bg.on {
    opacity: 1;
    -moz-transform: scale3d(1, 1, 1);
    -ms-transform: scale3d(1, 1, 1);
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  .wrapper .stages .stage.s3 .bg.end {
    -moz-animation-duration: 5s;
    -webkit-animation-duration: 5s;
    animation-duration: 5s;
    -moz-animation-iteration-count: 1;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
    -moz-animation-fill-mode: forwards;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -moz-animation-timing-function: ease;
    -webkit-animation-timing-function: ease;
    animation-timing-function: ease;
    -moz-animation-name: stagebg;
    -webkit-animation-name: stagebg;
    animation-name: stagebg;
  }
  .wrapper .stages .stage.s4 {
    background-color: #121720;
  }
  .wrapper .stages .stage.s4 .title {
    position: absolute;
    width: 684px;
    height: 159px;
    top: 50%;
    left: 50%;
    margin-left: -575px;
    margin-top: -246px;
    z-index: 3;
  }
  .wrapper .stages .stage.s4 .title .t {
    position: absolute;
    width: 100%;
    height: 159px;
    top: -30px;
    left: 0;
    margin-left: 0;
    margin-top: 0;
    -moz-transition: 1s;
    -o-transition: 1s;
    -webkit-transition: 1s;
    transition: 1s;
    -moz-transition-delay: 0.5s;
    -o-transition-delay: 0.5s;
    -webkit-transition-delay: 0.5s;
    transition-delay: 0.5s;
    background: url(../images/s4_title.png) no-repeat;
    background-size: contain;
    z-index: 1;
    opacity: 0;
  }
  .wrapper .stages .stage.s4 .title .t.on {
    opacity: 1;
    top: 0;
  }
  .wrapper .stages .stage.s4 .title .word {
    position: absolute;
    width: 320px;
    height: auto;
    top: 152px;
    left: 105px;
    margin-left: 0;
    margin-top: 0;
    font-size: 15px;
    line-height: 25px;
    font-weight: normal;
    font-family: Arial, "微軟正黑體";
    color: #FFF;
    -moz-transition: 1s;
    -o-transition: 1s;
    -webkit-transition: 1s;
    transition: 1s;
    -moz-transition-delay: 0.5s;
    -o-transition-delay: 0.5s;
    -webkit-transition-delay: 0.5s;
    transition-delay: 0.5s;
    z-index: 1;
    opacity: 0;
  }
  .wrapper .stages .stage.s4 .title .word.on {
    opacity: 1;
    top: 182px;
  }
  .wrapper .stages .stage.s4 .title .word .b {
    position: relative;
    width: 100%;
    height: auto;
    float: left;
    margin-bottom: 10px;
  }
  .wrapper .stages .stage.s4 .title .word .b span {
    width: auto;
    border-bottom: 1px solid #FFF;
  }
  .wrapper .stages .stage.s4 .title .word .s {
    position: relative;
    width: 100%;
    height: auto;
    float: left;
  }
  .wrapper .stages .stage.s4 .title .tbg {
    position: absolute;
    width: 594px;
    height: 405px;
    top: -50px;
    left: -62px;
    margin-left: 0;
    margin-top: 0;
    -moz-transition: 1s;
    -o-transition: 1s;
    -webkit-transition: 1s;
    transition: 1s;
    background: url(../images/s4_titlebg.png) no-repeat;
    opacity: 0;
    z-index: 0;
  }
  .wrapper .stages .stage.s4 .title .tbg.on {
    top: -30px;
    opacity: 1;
  }
  .wrapper .stages .stage.s4 .cover1 {
    position: absolute;
    width: 100%;
    height: 464px;
    top: 50%;
    left: 0;
    margin-left: 0;
    margin-top: 86px;
    background: url(../images/s4_cover1.png) no-repeat;
    background-position: center top;
    z-index: 1;
  }
  .wrapper .stages .stage.s4 .cover2 {
    position: absolute;
    width: 100%;
    height: 518px;
    top: 50%;
    left: 0;
    margin-left: 0;
    margin-top: 40px;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    -moz-transition-timing-function: ease-out;
    -o-transition-timing-function: ease-out;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
    background: url(../images/s4_cover2.png) no-repeat;
    background-position: center top;
    z-index: 2;
  }
  .wrapper .stages .stage.s4 .cover2:before {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: auto;
    margin-left: 0;
    margin-top: 0;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    -moz-transition-timing-function: ease-out;
    -o-transition-timing-function: ease-out;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
    content: "";
    right: 0;
    background-color: #121720;
  }
  .wrapper .stages .stage.s4 .cover2.on:before {
    width: 0;
  }
  .wrapper .stages .stage.s4 .bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    margin-left: 0;
    margin-top: 0;
    -moz-transition: 0.6s;
    -o-transition: 0.6s;
    -webkit-transition: 0.6s;
    transition: 0.6s;
    -moz-transform: scale3d(1.05, 1.05, 1);
    -ms-transform: scale3d(1.05, 1.05, 1);
    -webkit-transform: scale3d(1.05, 1.05, 1);
    transform: scale3d(1.05, 1.05, 1);
    z-index: 0;
    opacity: 0;
    background: url(../images/s4_bg.jpg) no-repeat;
    background-position: center;
  }
  .wrapper .stages .stage.s4 .bg.on {
    opacity: 1;
    -moz-transform: scale3d(1, 1, 1);
    -ms-transform: scale3d(1, 1, 1);
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  .wrapper .stages .stage.s4 .bg.end {
    -moz-animation-duration: 5s;
    -webkit-animation-duration: 5s;
    animation-duration: 5s;
    -moz-animation-iteration-count: 1;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
    -moz-animation-fill-mode: forwards;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -moz-animation-timing-function: ease;
    -webkit-animation-timing-function: ease;
    animation-timing-function: ease;
    -moz-animation-name: stagebg;
    -webkit-animation-name: stagebg;
    animation-name: stagebg;
  }
  .wrapper .stages .stage.s5 {
    background-color: #121720;
  }
  .wrapper .stages .stage.s5 .title {
    position: absolute;
    width: 634px;
    height: 159px;
    top: 50%;
    left: 50%;
    margin-left: -576px;
    margin-top: -265px;
    z-index: 3;
  }
  .wrapper .stages .stage.s5 .title .t {
    position: absolute;
    width: 100%;
    height: 159px;
    top: -30px;
    left: 0;
    margin-left: 0;
    margin-top: 0;
    -moz-transition: 1s;
    -o-transition: 1s;
    -webkit-transition: 1s;
    transition: 1s;
    -moz-transition-delay: 0.5s;
    -o-transition-delay: 0.5s;
    -webkit-transition-delay: 0.5s;
    transition-delay: 0.5s;
    background: url(../images/s5_title.png) no-repeat;
    background-size: contain;
    z-index: 1;
    opacity: 0;
  }
  .wrapper .stages .stage.s5 .title .t.on {
    opacity: 1;
    top: 0;
  }
  .wrapper .stages .stage.s5 .title .word {
    position: absolute;
    width: 375px;
    height: auto;
    top: 152px;
    left: 105px;
    margin-left: 0;
    margin-top: 0;
    font-size: 15px;
    line-height: 25px;
    font-weight: normal;
    font-family: Arial, "微軟正黑體";
    color: #14223b;
    -moz-transition: 1s;
    -o-transition: 1s;
    -webkit-transition: 1s;
    transition: 1s;
    -moz-transition-delay: 0.5s;
    -o-transition-delay: 0.5s;
    -webkit-transition-delay: 0.5s;
    transition-delay: 0.5s;
    z-index: 1;
    opacity: 0;
  }
  .wrapper .stages .stage.s5 .title .word.on {
    opacity: 1;
    top: 182px;
  }
  .wrapper .stages .stage.s5 .title .word .b {
    position: relative;
    width: 100%;
    height: auto;
    float: left;
    margin-bottom: 10px;
  }
  .wrapper .stages .stage.s5 .title .word .b span {
    width: auto;
    border-bottom: 1px solid #14223b;
  }
  .wrapper .stages .stage.s5 .title .word .s {
    position: relative;
    width: 100%;
    height: auto;
    float: left;
  }
  .wrapper .stages .stage.s5 .title .tbg {
    position: absolute;
    width: 561px;
    height: 352px;
    top: -58px;
    left: -23px;
    margin-left: 0;
    margin-top: 0;
    -moz-transition: 1s;
    -o-transition: 1s;
    -webkit-transition: 1s;
    transition: 1s;
    background: url(../images/s5_titlebg.png) no-repeat;
    opacity: 0;
    z-index: 0;
  }
  .wrapper .stages .stage.s5 .title .tbg.on {
    top: -38px;
    opacity: 1;
  }
  .wrapper .stages .stage.s5 .cover1 {
    position: absolute;
    width: 100%;
    height: 547px;
    top: 50%;
    left: 0;
    margin-left: 0;
    margin-top: 4px;
    background: url(../images/s5_cover1.png) no-repeat;
    background-position: center top;
    z-index: 1;
  }
  .wrapper .stages .stage.s5 .cover2 {
    position: absolute;
    width: 100%;
    height: 521px;
    top: 50%;
    left: 0;
    margin-left: 0;
    margin-top: 17px;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    -moz-transition-timing-function: ease-out;
    -o-transition-timing-function: ease-out;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
    background: url(../images/s5_cover2.png) no-repeat;
    background-position: center top;
    z-index: 2;
  }
  .wrapper .stages .stage.s5 .cover2:before {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: auto;
    margin-left: 0;
    margin-top: 0;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    -moz-transition-timing-function: ease-out;
    -o-transition-timing-function: ease-out;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
    content: "";
    right: 0;
    background-color: #121720;
  }
  .wrapper .stages .stage.s5 .cover2.on:before {
    width: 0;
  }
  .wrapper .stages .stage.s5 .bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    margin-left: 0;
    margin-top: 0;
    -moz-transition: 0.6s;
    -o-transition: 0.6s;
    -webkit-transition: 0.6s;
    transition: 0.6s;
    -moz-transform: scale3d(1.05, 1.05, 1);
    -ms-transform: scale3d(1.05, 1.05, 1);
    -webkit-transform: scale3d(1.05, 1.05, 1);
    transform: scale3d(1.05, 1.05, 1);
    z-index: 0;
    opacity: 0;
    background: url(../images/s5_bg.jpg) no-repeat;
    background-position: center;
  }
  .wrapper .stages .stage.s5 .bg.on {
    opacity: 1;
    -moz-transform: scale3d(1, 1, 1);
    -ms-transform: scale3d(1, 1, 1);
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  .wrapper .stages .stage.s5 .bg.end {
    -moz-animation-duration: 5s;
    -webkit-animation-duration: 5s;
    animation-duration: 5s;
    -moz-animation-iteration-count: 1;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
    -moz-animation-fill-mode: forwards;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -moz-animation-timing-function: ease;
    -webkit-animation-timing-function: ease;
    animation-timing-function: ease;
    -moz-animation-name: stagebg;
    -webkit-animation-name: stagebg;
    animation-name: stagebg;
  }
  @-moz-keyframes tbgani {
    0% {
      opacity: 0;
    }
    15% {
      opacity: 1;
    }
    30% {
      opacity: 0;
    }
    100% {
      opacity: 0;
    }
  }
  @-webkit-keyframes tbgani {
    0% {
      opacity: 0;
    }
    15% {
      opacity: 1;
    }
    30% {
      opacity: 0;
    }
    100% {
      opacity: 0;
    }
  }
  @keyframes tbgani {
    0% {
      opacity: 0;
    }
    15% {
      opacity: 1;
    }
    30% {
      opacity: 0;
    }
    100% {
      opacity: 0;
    }
  }
  @-moz-keyframes stagebg {
    0% {
      -moz-transform: scale3d(1, 1, 1);
      transform: scale3d(1, 1, 1);
    }
    100% {
      -moz-transform: scale3d(1.05, 1.05, 1);
      transform: scale3d(1.05, 1.05, 1);
    }
  }
  @-webkit-keyframes stagebg {
    0% {
      -webkit-transform: scale3d(1, 1, 1);
      transform: scale3d(1, 1, 1);
    }
    100% {
      -webkit-transform: scale3d(1.05, 1.05, 1);
      transform: scale3d(1.05, 1.05, 1);
    }
  }
  @keyframes stagebg {
    0% {
      -moz-transform: scale3d(1, 1, 1);
      -ms-transform: scale3d(1, 1, 1);
      -webkit-transform: scale3d(1, 1, 1);
      transform: scale3d(1, 1, 1);
    }
    100% {
      -moz-transform: scale3d(1.05, 1.05, 1);
      -ms-transform: scale3d(1.05, 1.05, 1);
      -webkit-transform: scale3d(1.05, 1.05, 1);
      transform: scale3d(1.05, 1.05, 1);
    }
  }
}
@media screen and (max-width: 1201px) {
  .menubar {
    position: fixed;
    width: 100%;
    height: 45px;
    top: 0;
    left: 0;
    margin-left: 0;
    margin-top: 0;
    z-index: 10;
    background-color: #FFF;
  }
  .menubar .logo {
    position: absolute;
    width: 180px;
    height: 45px;
    top: 0;
    left: 0;
    margin-left: 0;
    margin-top: 0;
    cursor: pointer;
    background: url(../images/logo.png) no-repeat;
    background-size: contain;
    z-index: 2;
  }
  .menubar .menubtn {
    position: absolute;
    width: 50px;
    height: 45px;
    top: 0;
    left: auto;
    margin-left: 0;
    margin-top: 0;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    right: 5px;
    cursor: pointer;
    z-index: 2;
  }
  .menubar .menubtn:hover {
    -moz-transform: scale(0.8, 0.8);
    -ms-transform: scale(0.8, 0.8);
    -webkit-transform: scale(0.8, 0.8);
    transform: scale(0.8, 0.8);
  }
  .menubar .menubtn span {
    background: #000;
    border: none;
    height: 2px;
    width: 36px;
    position: absolute;
    top: 15px;
    left: 7px;
    transition: all .35s ease;
    cursor: pointer;
  }
  .menubar .menubtn span:nth-of-type(2) {
    top: 22px;
  }
  .menubar .menubtn span:nth-of-type(3) {
    top: 29px;
  }
  .menubar .menu_icon {
    position: absolute;
    width: 202px;
    height: 71px;
    top: 60px;
    left: auto;
    margin-left: 0;
    margin-top: 0;
    right: 22px;
    background: url(../images/menu_icon.png) no-repeat;
    transition: 1s;
    opacity: 0;
    z-index: 10;
  }
  .menubar .menu_icon.on {
    opacity: 1;
  }
  .menubar .menu {
    position: absolute;
    width: 404px;
    height: 631px;
    top: 0;
    left: auto;
    margin-left: 0;
    margin-top: 0;
    background: url(../images/menu_bg.png) no-repeat;
    transition: 1s;
    right: -404px;
    z-index: 11;
  }
  .menubar .menu.on {
    right: 0;
  }
  .menubar .menu .closebtn {
    position: absolute;
    width: 53px;
    height: 53px;
    top: 202px;
    left: 10px;
    margin-left: 0;
    margin-top: 0;
    z-index: 2;
    background: url(../images/popclosebtn.png) no-repeat;
    background-size: contain;
    cursor: pointer;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .menubar .menu .closebtn:before {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    margin-left: 0;
    margin-top: 0;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    content: "";
    opacity: 0;
    background: url(../images/popclosebtn_hover.png) no-repeat;
    background-size: contain;
  }
  .menubar .menu .closebtn:hover:before {
    opacity: 1;
  }
  .menubar .menu .t {
    position: absolute;
    width: 201px;
    height: 68px;
    top: 79px;
    left: auto;
    margin-left: 0;
    margin-top: 0;
    right: 25px;
    background: url(../images/menu_title.png) no-repeat;
    background-size: contain;
  }
  .menubar .menu ul {
    position: relative;
    width: 150px;
    height: auto;
    float: left;
    margin: 170px 0 0 207px;
  }
  .menubar .menu ul li {
    position: relative;
    width: 100%;
    height: auto;
    float: left;
    font-size: 18px;
    line-height: 18px;
    font-weight: normal;
    font-family: Arial, "微軟正黑體";
    color: #232e41;
    text-align: center;
    letter-spacing: 0.5px;
    padding: 15px 0 10px 0;
    cursor: pointer;
    border-bottom: 1px solid rgba(35, 46, 65, 0.4);
  }
  .menubar .menu ul li:hover {
    background: url(../images/menu_hover.gif) no-repeat;
    background-position: center;
  }

  .scroll_down {
    position: fixed;
    width: 162px;
    height: 54px;
    top: auto;
    left: 50%;
    margin-left: -81px;
    margin-top: 0;
    background: url(../images/scroll_down.png) no-repeat;
    background-size: contain;
    transition: 0.5s;
    bottom: 8px;
    z-index: 10;
    opacity: 1;
    cursor: pointer;
  }
  .scroll_down.on {
    opacity: 0;
    cursor: default;
  }
  .scroll_down.white {
    background: url(../images/scroll_down2.png) no-repeat;
  }
  .scroll_down.white .scroll_downin {
    background: url(../images/scroll_downin2.png) no-repeat;
  }
  .scroll_down .scroll_downin {
    position: absolute;
    width: 37px;
    height: 39px;
    top: auto;
    left: 50%;
    margin-left: -18px;
    margin-top: 0;
    bottom: 0;
    background: url(../images/scroll_downin.png) no-repeat;
    background-position: 0 0;
    -moz-animation-duration: 1s;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -moz-animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -moz-animation-timing-function: ease-out;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    -moz-animation-name: scroll_downani;
    -webkit-animation-name: scroll_downani;
    animation-name: scroll_downani;
  }
  @-moz-keyframes scroll_downani {
    0% {
      background-position: 0 10px;
    }
    40% {
      background-position: 0 20px;
    }
    60% {
      background-position: 0 20px;
    }
    100% {
      background-position: 0 10px;
    }
  }
  @-webkit-keyframes scroll_downani {
    0% {
      background-position: 0 10px;
    }
    40% {
      background-position: 0 20px;
    }
    60% {
      background-position: 0 20px;
    }
    100% {
      background-position: 0 10px;
    }
  }
  @keyframes scroll_downani {
    0% {
      background-position: 0 10px;
    }
    40% {
      background-position: 0 20px;
    }
    60% {
      background-position: 0 20px;
    }
    100% {
      background-position: 0 10px;
    }
  }
  .loading {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    margin-left: 0;
    margin-top: 0;
    -moz-transition: 1s;
    -o-transition: 1s;
    -webkit-transition: 1s;
    transition: 1s;
    margin-top: 45px;
    z-index: 9999;
    opacity: 1;
    background-color: #121720;
  }
  .loading .loading_in {
    position: absolute;
    width: 120px;
    height: 120px;
    top: 50%;
    left: 50%;
    margin-left: -60px;
    margin-top: -60px;
    background: url(../images/loading.png) no-repeat;
    z-index: 9;
  }
  .loading.on {
    z-index: 0;
    opacity: 0;
  }

  .videopop {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    margin-left: 0;
    margin-top: 0;
    -moz-transition: 1s;
    -o-transition: 1s;
    -webkit-transition: 1s;
    transition: 1s;
    z-index: 0;
    opacity: 0;
  }
  .videopop.on {
    z-index: 999;
    opacity: 1;
  }
  .videopop .closebtn {
    position: absolute;
    width: 47px;
    height: 47px;
    top: 0;
    left: 50%;
    margin-left: 370px;
    margin-top: 0;
    background: url(../images/1024/popclosebtn.png) no-repeat;
    background-size: contain;
    cursor: pointer;
    z-index: 1;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .videopop .closebtn:before {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    margin-left: 0;
    margin-top: 0;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    content: "";
    opacity: 0;
    background: url(../images/1024/popclosebtn_hover.png) no-repeat;
    background-size: contain;
  }
  .videopop .closebtn:hover:before {
    opacity: 1;
  }
  .videopop .video {
    position: absolute;
    width: 720px;
    height: 405px;
    top: 50%;
    left: 50%;
    margin-left: -360px;
    margin-top: -202px;
    z-index: 1;
  }
  .videopop .bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    margin-left: 0;
    margin-top: 0;
    z-index: 0;
    background-color: rgba(0, 0, 0, 0.8);
  }

  .stage_boxs {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    margin-left: 0;
    margin-top: 0;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    z-index: 0;
    opacity: 0;
    overflow: hidden;
  }
  .stage_boxs.on {
    z-index: 9;
    opacity: 1;
  }
  .stage_boxs .stage_mores {
    position: absolute;
    width: 2px;
    height: 2px;
    top: 50%;
    left: 50%;
    margin-left: -1px;
    margin-top: -1px;
    z-index: 10;
  }
  .stage_boxs .stage_mores .stage_moresin {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    margin-left: 0;
    margin-top: 0;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    opacity: 0;
    pointer-events: none;
  }
  .stage_boxs .stage_mores .stage_moresin.on {
    opacity: 1;
    pointer-events: auto;
  }
  .stage_boxs .stage_mores .stage_moresin.on .stage_more {
    -moz-transform: rotateY(180deg);
    -ms-transform: rotateY(180deg);
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
  }
  .stage_boxs .stage_mores .stage_moresin.on .stage_more:hover:before {
    opacity: 1;
  }
  .stage_boxs .stage_mores .stage_more {
    position: absolute;
    width: 50px;
    height: 50px;
    top: 0;
    left: 0;
    margin-left: 0;
    margin-top: 0;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    background: url(../images/1024/s2_more.png) no-repeat;
    background-size: contain;
    z-index: 9;
    cursor: pointer;
  }
  .stage_boxs .stage_mores .stage_more:before {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    margin-left: 0;
    margin-top: 0;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    content: "";
    background: url(../images/1024/s2_more_hover.png) no-repeat;
    background-size: contain;
    opacity: 0;
  }
  .stage_boxs .stage_mores .more1 {
    left: -460px;
    top: -215px;
  }
  .stage_boxs .stage_mores .more2 {
    left: -323px;
    top: 15px;
  }
  .stage_boxs .stage_mores .more3 {
    left: -120px;
    top: -170px;
  }
  .stage_boxs .stage_mores .more4 {
    left: 85px;
    top: -25px;
  }
  .stage_boxs .stage_mores .more5 {
    left: -50px;
    top: 130px;
  }
  .stage_boxs .stage_mores .more6 {
    left: 270px;
    top: -45px;
  }
  .stage_boxs .stage_mores .more7 {
    left: 53px;
    top: -10px;
  }
  .stage_boxs .stage_mores .more8 {
    left: -95px;
    top: -128px;
  }
  .stage_boxs .stage_mores .more9 {
    left: -230px;
    top: -78px;
  }
  .stage_boxs .stage_box {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    margin-left: 0;
    margin-top: 0;
    -moz-transition: 1s;
    -o-transition: 1s;
    -webkit-transition: 1s;
    transition: 1s;
    opacity: 0;
    z-index: 0;
  }
  .stage_boxs .stage_box.on {
    opacity: 1;
    z-index: 9;
  }
  .stage_boxs .stage_box.s1 .title {
    position: absolute;
    width: 300px;
    height: 70px;
    top: 50%;
    left: 50%;
    margin-left: -500px;
    margin-top: -285px;
    z-index: 2;
  }
  .stage_boxs .stage_box.s1 .title .t {
    position: relative;
    width: 100%;
    height: auto;
    float: left;
    font-size: 36px;
    line-height: 36px;
    font-weight: normal;
    font-family: Arial, "微軟正黑體";
    color: #ffffff;
    letter-spacing: 1.5px;
    box-sizing: border-box;
    margin-bottom: 20px;
    padding-left: 20px;
    border-left: 5px solid #FFF;
  }
  .stage_boxs .stage_box.s1 .title .word {
    position: relative;
    width: 100%;
    height: auto;
    float: left;
    font-size: 17px;
    line-height: 17px;
    font-weight: normal;
    font-family: Arial, "微軟正黑體";
    color: #FFF;
    text-indent: 100px;
  }
  .stage_boxs .stage_box.s1 .bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    margin-left: 0;
    margin-top: 0;
    background: url(../images/1024/stage_pop/s1_bg.jpg) no-repeat;
    background-size: cover;
    background-position: center;
  }
  .stage_boxs .stage_box.s2 .title {
    position: absolute;
    width: 386px;
    height: 94px;
    top: 50%;
    left: 50%;
    margin-left: 152px;
    margin-top: -170px;
    z-index: 2;
  }
  .stage_boxs .stage_box.s2 .title .t {
    position: relative;
    width: 100%;
    height: auto;
    float: left;
    font-size: 36px;
    line-height: 36px;
    font-weight: normal;
    font-family: Arial, "微軟正黑體";
    color: #ffffff;
    letter-spacing: 1.5px;
    box-sizing: border-box;
    margin-bottom: 20px;
    padding-left: 20px;
    border-left: 5px solid #FFF;
  }
  .stage_boxs .stage_box.s2 .title .word {
    position: relative;
    width: 100%;
    height: auto;
    float: left;
    font-size: 17px;
    line-height: 17px;
    font-weight: normal;
    font-family: Arial, "微軟正黑體";
    color: #FFF;
    text-indent: 100px;
  }
  .stage_boxs .stage_box.s2 .bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    margin-left: 0;
    margin-top: 0;
    background: url(../images/1024/stage_pop/s2_bg.jpg) no-repeat;
    background-size: cover;
    background-position: center;
  }
  .stage_boxs .stage_box.s3 .title {
    position: absolute;
    width: 430px;
    height: 115px;
    top: 50%;
    left: 50%;
    margin-left: 41px;
    margin-top: -262px;
    z-index: 2;
  }
  .stage_boxs .stage_box.s3 .title .t {
    position: relative;
    width: 100%;
    height: auto;
    float: left;
    font-size: 36px;
    line-height: 36px;
    font-weight: normal;
    font-family: Arial, "微軟正黑體";
    color: #ffffff;
    letter-spacing: 1.5px;
    box-sizing: border-box;
    margin-bottom: 20px;
    padding-left: 20px;
    border-left: 5px solid #FFF;
  }
  .stage_boxs .stage_box.s3 .title .t .ppc {
    position: absolute;
    width: 425px;
    height: 76px;
    top: 30px;
    left: -5px;
    margin-left: 0;
    margin-top: 0;
  }
  .stage_boxs .stage_box.s3 .title .t .ppc img {
    width: 100%;
  }
  .stage_boxs .stage_box.s3 .title .word {
    position: relative;
    width: 100%;
    height: auto;
    float: left;
    font-size: 17px;
    line-height: 17px;
    font-weight: normal;
    font-family: Arial, "微軟正黑體";
    color: #FFF;
    margin-top: 40px;
    text-indent: 0px;
  }
  .stage_boxs .stage_box.s3 .bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    margin-left: 0;
    margin-top: 0;
    background: url(../images/1024/stage_pop/s3_bg.jpg) no-repeat;
    background-size: cover;
    background-position: center;
  }
  .stage_boxs .black_cover {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    margin-left: 0;
    margin-top: 0;
    z-index: 0;
    background-color: rgba(0, 0, 0, 0.8);
  }

  .stage_pops {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    margin-left: 0;
    margin-top: 0;
    z-index: 0;
    opacity: 0;
    overflow: hidden;
  }
  .stage_pops.on {
    z-index: 99;
    opacity: 1;
  }
  .stage_pops .stage_pop {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    margin-left: 0;
    margin-top: 0;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    opacity: 0;
    z-index: 0;
  }
  .stage_pops .stage_pop.on {
    opacity: 1;
    z-index: 1;
  }
  .stage_pops .stage_pop.m6 .rightbtn {
    position: absolute;
    width: 52px;
    height: 106px;
    top: 50%;
    left: 50%;
    margin-left: 448px;
    margin-top: -80px;
    background: url(../images/1024/stage_pop/s2_pop_right_btn.png) no-repeat;
    cursor: pointer;
    z-index: 10;
  }
  .stage_pops .stage_pop.m6 .leftbtn {
    position: absolute;
    width: 52px;
    height: 106px;
    top: 50%;
    left: auto;
    margin-left: 0;
    margin-top: -80px;
    right: 50%;
    margin-right: 448px;
    background: url(../images/1024/stage_pop/s2_pop_left_btn.png) no-repeat;
    cursor: pointer;
    z-index: 10;
  }
  .stage_pops .stage_pop.m6 .sbtn {
    position: absolute;
    width: 180px;
    height: 49px;
    top: 50%;
    left: 50%;
    margin-left: 140px;
    margin-top: 45px;
    -moz-transition: 1s;
    -o-transition: 1s;
    -webkit-transition: 1s;
    transition: 1s;
    z-index: 2;
    text-align: center;
    opacity: 0;
  }
  .stage_pops .stage_pop.m6 .sbtn.on {
    z-index: 2;
    opacity: 1;
  }
  .stage_pops .stage_pop.m6 .sbtn a {
    font-size: 25px;
    line-height: 49px;
    font-weight: normal;
    font-family: Arial, "微軟正黑體";
    color: #232e41;
    text-align: center;
    width: 49px;
    height: 49px;
    display: inline-block;
    background: url(../images/stage_pop/s2_sbtn.png) no-repeat;
    background-size: contain;
    margin-right: 10px;
  }
  .stage_pops .stage_pop.m6 .sbtn a span {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    margin-left: 0;
    margin-top: 0;
    z-index: 1;
  }
  .stage_pops .stage_pop.m6 .sbtn a:nth-child(3n) {
    margin-right: 0;
  }
  .stage_pops .stage_pop.m6 .sbtn a:before {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    margin-left: 0;
    margin-top: 0;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    content: "";
    z-index: 0;
    opacity: 0;
    background: url(../images/stage_pop/s2_sbtn_on.png) no-repeat;
    background-size: contain;
  }
  .stage_pops .stage_pop.m6 .sbtn a:hover {
    color: #FFF;
  }
  .stage_pops .stage_pop.m6 .sbtn a:hover:before {
    opacity: 1;
  }
  .stage_pops .stage_pop.m6 .sbtn a.on {
    color: #FFF;
  }
  .stage_pops .stage_pop.m6 .sbtn a.on:before {
    opacity: 1;
  }
  .stage_pops .stage_pop.m6 ul {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    margin-left: 0;
    margin-top: 0;
  }
  .stage_pops .stage_pop.m6 ul li {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    margin-left: 0;
    margin-top: 0;
    -moz-transition: 1s;
    -o-transition: 1s;
    -webkit-transition: 1s;
    transition: 1s;
    opacity: 0;
    z-index: 0;
  }
  .stage_pops .stage_pop.m6 ul li.on {
    opacity: 1;
    z-index: 1;
  }
  .stage_pops .stage_pop.m7 .closebtn {
    position: absolute;
    width: 46px;
    height: 46px;
    top: 50%;
    left: 50%;
    margin-left: -23px;
    margin-top: -217px;
    background: url(../images/popclosebtn_hover.png) no-repeat;
    background-size: contain;
    cursor: pointer;
    z-index: 9;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .stage_pops .stage_pop.m7 .closebtn:before {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    margin-left: 0;
    margin-top: 0;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    content: "";
    opacity: 0;
    background: url(../images/popclosebtn.png) no-repeat;
    background-size: contain;
  }
  .stage_pops .stage_pop.m7 .closebtn:hover:before {
    opacity: 1;
  }
  .stage_pops .stage_pop.m7 .pic {
    position: absolute;
    width: 596px;
    height: 596px;
    top: 50%;
    left: 50%;
    margin-left: -298px;
    margin-top: -298px;
    -moz-transition: 1s;
    -o-transition: 1s;
    -webkit-transition: 1s;
    transition: 1s;
    -moz-transform: rotateY(-90deg);
    -ms-transform: rotateY(-90deg);
    -webkit-transform: rotateY(-90deg);
    transform: rotateY(-90deg);
    opacity: 0;
    z-index: 1;
  }
  .stage_pops .stage_pop.m7 .pic.on {
    -moz-transform: rotateY(0);
    -ms-transform: rotateY(0);
    -webkit-transform: rotateY(0);
    transform: rotateY(0);
    opacity: 1;
  }
  .stage_pops .stage_pop.m7 .pic .pimg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    margin-left: 0;
    margin-top: 0;
    z-index: 1;
  }
  .stage_pops .stage_pop.m7 .pic .pimg img {
    width: 100%;
  }
  .stage_pops .stage_pop.m7 .pic .border {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    margin-left: 0;
    margin-top: 0;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    background: url(../images/popborder.png) no-repeat;
    background-size: contain;
    z-index: 2;
    opacity: 0;
    pointer-events: none;
  }
  .stage_pops .stage_pop.m7 .pic .border.on {
    opacity: 1;
    top: 15px;
  }
  .stage_pops .stage_pop.m7 .pic .btn {
    position: absolute;
    width: 84px;
    height: 84px;
    top: auto;
    left: 50%;
    margin-left: -42px;
    margin-top: 0;
    bottom: 20px;
    background: url(../images/s2_pop_play.png) no-repeat;
    cursor: pointer;
    z-index: 2;
  }
  .stage_pops .stage_pop.m7 .pic .btn:before {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    margin-left: 0;
    margin-top: 0;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    content: "";
    background: url(../images/s2_pop_play_hover.png) no-repeat;
    background-size: contain;
    opacity: 0;
  }
  .stage_pops .stage_pop.m7 .pic .btn:hover:before {
    opacity: 1;
  }
  .stage_pops .stage_pop.m7 .word {
    position: absolute;
    width: 90%;
    height: 168px;
    top: 50%;
    left: 0;
    margin-left: 5%;
    margin-top: 25px;
    -moz-transition: 1s;
    -o-transition: 1s;
    -webkit-transition: 1s;
    transition: 1s;
    background: none;
    z-index: 1;
    opacity: 0;
    text-align: center;
  }
  .stage_pops .stage_pop.m7 .word:before {
    display: none;
  }
  .stage_pops .stage_pop.m7 .word .m7play {
    position: relative;
    width: 24%;
    height: auto;
    margin-right: 1%;
    display: inline-block;
    cursor: pointer;
    background-color: #ededed;
  }
  .stage_pops .stage_pop.m7 .word .m7play .icon {
    position: absolute;
    width: 48px;
    height: 48px;
    top: 50%;
    left: 50%;
    margin-left: -24px;
    margin-top: -33px;
    background: url(../images/stage_pop/s3_pop_play.png) no-repeat;
    background-size: contain;
    z-index: 9;
  }
  .stage_pops .stage_pop.m7 .word .m7play .icon:before {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    margin-left: 0;
    margin-top: 0;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    content: "";
    background: url(../images/stage_pop/s3_pop_play_hover.png) no-repeat;
    background-size: contain;
    opacity: 0;
    z-index: 9;
  }
  .stage_pops .stage_pop.m7 .word .m7play .bg {
    position: relative;
    width: 100%;
    height: auto;
    float: left;
    box-sizing: border-box;
    border: 2px solid #ededed;
    overflow: hidden;
  }
  .stage_pops .stage_pop.m7 .word .m7play .bg img {
    width: 100%;
    -moz-transition: 1s;
    -o-transition: 1s;
    -webkit-transition: 1s;
    transition: 1s;
  }
  .stage_pops .stage_pop.m7 .word .m7play .m7w {
    position: relative;
    width: 100%;
    height: auto;
    float: left;
    font-size: 15px;
    line-height: 30px;
    font-weight: normal;
    font-family: Arial, "微軟正黑體";
    color: #232e41;
    background-color: #ededed;
    text-align: center;
  }
  .stage_pops .stage_pop.m7 .word .m7play:nth-child(4n) {
    margin-right: 0;
  }
  .stage_pops .stage_pop.m7 .word .m7play:hover .icon:before {
    opacity: 1;
  }
  .stage_pops .stage_pop.m7 .word .m7play:hover .bg img {
    -moz-transform: scale3d(1.1, 1.1, 1);
    -ms-transform: scale3d(1.1, 1.1, 1);
    -webkit-transform: scale3d(1.1, 1.1, 1);
    transform: scale3d(1.1, 1.1, 1);
  }
  .stage_pops .stage_pop.m7 .word.on {
    opacity: 1;
    margin-top: 55px;
    margin-left: 5%;
  }
  .stage_pops .stage_pop .pic {
    position: absolute;
    width: 596px;
    height: 596px;
    top: 50%;
    left: 50%;
    margin-left: -424px;
    margin-top: -342px;
    -moz-transition: 1s;
    -o-transition: 1s;
    -webkit-transition: 1s;
    transition: 1s;
    -moz-transform: rotateY(-90deg);
    -ms-transform: rotateY(-90deg);
    -webkit-transform: rotateY(-90deg);
    transform: rotateY(-90deg);
    opacity: 0;
    z-index: 1;
  }
  .stage_pops .stage_pop .pic.on {
    -moz-transform: rotateY(0);
    -ms-transform: rotateY(0);
    -webkit-transform: rotateY(0);
    transform: rotateY(0);
    opacity: 1;
  }
  .stage_pops .stage_pop .pic .pimg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    margin-left: 0;
    margin-top: 0;
    z-index: 1;
  }
  .stage_pops .stage_pop .pic .pimg img {
    width: 100%;
  }
  .stage_pops .stage_pop .pic .border {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    margin-left: 0;
    margin-top: 0;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    background: url(../images/popborder.png) no-repeat;
    background-size: contain;
    z-index: 2;
    opacity: 0;
    pointer-events: none;
  }
  .stage_pops .stage_pop .pic .border.on {
    opacity: 1;
    top: 15px;
  }
  .stage_pops .stage_pop .pic .btn {
    position: absolute;
    width: 67px;
    height: 67px;
    top: auto;
    left: 50%;
    margin-left: -33px;
    margin-top: 0;
    bottom: 20px;
    background: url(../images/s2_pop_play.png) no-repeat;
    background-size: contain;
    cursor: pointer;
    z-index: 2;
  }
  .stage_pops .stage_pop .pic .btn:before {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    margin-left: 0;
    margin-top: 0;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    content: "";
    background: url(../images/s2_pop_play_hover.png) no-repeat;
    background-size: contain;
    opacity: 0;
  }
  .stage_pops .stage_pop .pic .btn:hover:before {
    opacity: 1;
  }
  .stage_pops .stage_pop .word {
    position: absolute;
    width: 385px;
    height: 385px;
    top: 50%;
    left: 50%;
    margin-left: 7px;
    margin-top: -47px;
    -moz-transition: 1s;
    -o-transition: 1s;
    -webkit-transition: 1s;
    transition: 1s;
    background: url(../images/pop_word_bg.png) no-repeat;
    background-size: contain;
    z-index: 1;
    opacity: 0;
  }
  .stage_pops .stage_pop .word.on {
    opacity: 1;
    margin-left: 37px;
  }
  .stage_pops .stage_pop .word:before {
    content: "";
    width: 1px;
    height: 100%;
    display: inline-block;
    vertical-align: middle;
  }
  .stage_pops .stage_pop .word .line {
    position: absolute;
    width: 52%;
    height: 1px;
    top: auto;
    left: 0;
    margin-left: 24%;
    margin-top: 0;
    bottom: 120px;
    background-color: #000000;
    z-index: 1;
  }
  .stage_pops .stage_pop .word .w {
    font-size: 13px;
    line-height: 18px;
    font-weight: normal;
    font-family: Arial, "微軟正黑體";
    color: #232e41;
    width: 60.4%;
    height: auto;
    margin-left: 18%;
    display: inline-block;
    vertical-align: middle;
  }
  .stage_pops .stage_pop .word .closebtn {
    position: absolute;
    width: 47px;
    height: 47px;
    top: auto;
    left: 50%;
    margin-left: -23px;
    margin-top: 0;
    bottom: 50px;
    background: url(../images/1024/popclosebtn.png) no-repeat;
    background-size: contain;
    cursor: pointer;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .stage_pops .stage_pop .word .closebtn:before {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    margin-left: 0;
    margin-top: 0;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    content: "";
    opacity: 0;
    background: url(../images/1024/popclosebtn_hover.png) no-repeat;
    background-size: contain;
  }
  .stage_pops .stage_pop .word .closebtn:hover:before {
    opacity: 1;
  }
  .stage_pops .stage_pop .bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    margin-left: 0;
    margin-top: 0;
    z-index: 0;
    background-color: rgba(0, 0, 0, 0.6);
  }

  .pops {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    margin-left: 0;
    margin-top: 0;
    z-index: 0;
    opacity: 0;
    overflow: hidden;
  }
  .pops.on {
    z-index: 99;
    opacity: 1;
  }
  .pops .pop {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    margin-left: 0;
    margin-top: 0;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    opacity: 0;
    z-index: 0;
  }
  .pops .pop.on {
    opacity: 1;
    z-index: 1;
  }
  .pops .pop .pic {
    position: absolute;
    width: 596px;
    height: 596px;
    top: 50%;
    left: 50%;
    margin-left: -424px;
    margin-top: -342px;
    -moz-transition: 1s;
    -o-transition: 1s;
    -webkit-transition: 1s;
    transition: 1s;
    -moz-transform: rotateY(-90deg);
    -ms-transform: rotateY(-90deg);
    -webkit-transform: rotateY(-90deg);
    transform: rotateY(-90deg);
    opacity: 0;
    z-index: 1;
  }
  .pops .pop .pic.on {
    -moz-transform: rotateY(0);
    -ms-transform: rotateY(0);
    -webkit-transform: rotateY(0);
    transform: rotateY(0);
    opacity: 1;
  }
  .pops .pop .pic .pimg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    margin-left: 0;
    margin-top: 0;
    z-index: 1;
  }
  .pops .pop .pic .pimg img {
    width: 100%;
  }
  .pops .pop .pic .border {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    margin-left: 0;
    margin-top: 0;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    background: url(../images/popborder.png) no-repeat;
    background-size: contain;
    z-index: 2;
    opacity: 0;
    pointer-events: none;
  }
  .pops .pop .pic .border.on {
    opacity: 1;
    top: 15px;
  }
  .pops .pop .pic .btn {
    position: absolute;
    width: 67px;
    height: 67px;
    top: auto;
    left: 50%;
    margin-left: -33px;
    margin-top: 0;
    bottom: 15px;
    background: url(../images/s2_pop_play.png) no-repeat;
    background-size: contain;
    cursor: pointer;
    z-index: 2;
  }
  .pops .pop .pic .btn:before {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    margin-left: 0;
    margin-top: 0;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    content: "";
    background: url(../images/s2_pop_play_hover.png) no-repeat;
    background-size: contain;
    opacity: 0;
  }
  .pops .pop .pic .btn:hover:before {
    opacity: 1;
  }
  .pops .pop .word {
    position: absolute;
    width: 385px;
    height: 385px;
    top: 50%;
    left: 50%;
    margin-left: 7px;
    margin-top: -47px;
    -moz-transition: 1s;
    -o-transition: 1s;
    -webkit-transition: 1s;
    transition: 1s;
    background: url(../images/pop_word_bg.png) no-repeat;
    background-size: contain;
    z-index: 1;
    opacity: 0;
  }
  .pops .pop .word.on {
    opacity: 1;
    margin-left: 37px;
  }
  .pops .pop .word:before {
    content: "";
    width: 1px;
    height: 100%;
    display: inline-block;
    vertical-align: middle;
  }
  .pops .pop .word .line {
    position: absolute;
    width: 52%;
    height: 1px;
    top: auto;
    left: 0;
    margin-left: 24%;
    margin-top: 0;
    bottom: 120px;
    background-color: #000000;
    z-index: 1;
  }
  .pops .pop .word .w {
    font-size: 13px;
    line-height: 18px;
    font-weight: normal;
    font-family: Arial, "微軟正黑體";
    color: #232e41;
    width: 60.4%;
    height: auto;
    margin-left: 18%;
    display: inline-block;
    vertical-align: middle;
  }
  .pops .pop .word .closebtn {
    position: absolute;
    width: 47px;
    height: 47px;
    top: auto;
    left: 50%;
    margin-left: -23px;
    margin-top: 0;
    bottom: 50px;
    background: url(../images/1024/popclosebtn.png) no-repeat;
    background-size: contain;
    cursor: pointer;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .pops .pop .word .closebtn:before {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    margin-left: 0;
    margin-top: 0;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    content: "";
    opacity: 0;
    background: url(../images/1024/popclosebtn_hover.png) no-repeat;
    background-size: contain;
  }
  .pops .pop .word .closebtn:hover:before {
    opacity: 1;
  }
  .pops .pop .bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    margin-left: 0;
    margin-top: 0;
    z-index: 0;
    background-color: rgba(0, 0, 0, 0.6);
  }

  .wrapper {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    margin-left: 0;
    margin-top: 0;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    overflow: hidden;
    z-index: 1;
    background-color: #121720;
  }
  .wrapper.on {
    -moz-transform: scale3d(0.95, 0.95, 1);
    -ms-transform: scale3d(0.95, 0.95, 1);
    -webkit-transform: scale3d(0.95, 0.95, 1);
    transform: scale3d(0.95, 0.95, 1);
  }
  .wrapper .carani {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    margin-left: 0;
    margin-top: 0;
    pointer-events: none;
    z-index: 0;
  }
  .wrapper .carani.on {
    z-index: 6;
  }
  .wrapper .carani.on .car {
    opacity: 0;
  }
  .wrapper .carani .car {
    opacity: 1;
  }
  .wrapper .carani .s2 {
    position: absolute;
    width: 815px;
    height: 420px;
    top: 50%;
    left: 50%;
    margin-left: -315px;
    margin-top: -78px;
    background: url(../images/1024/s2_car.png) no-repeat;
  }
  .wrapper .carani .s3 {
    position: absolute;
    width: 815px;
    height: 420px;
    top: 50%;
    left: 50%;
    margin-left: -315px;
    margin-top: -78px;
    background: url(../images/1024/s3_car.png) no-repeat;
  }
  .wrapper .carani .s3:before {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    margin-left: 0;
    margin-top: 0;
    -moz-transition: 0.7s;
    -o-transition: 0.7s;
    -webkit-transition: 0.7s;
    transition: 0.7s;
    -moz-transition-delay: 1.7s;
    -o-transition-delay: 1.7s;
    -webkit-transition-delay: 1.7s;
    transition-delay: 1.7s;
    content: "";
    background: url(../images/1024/s3_car_end.png) no-repeat;
    z-index: 1;
    opacity: 0;
  }
  .wrapper .carani .s3.on:before {
    opacity: 1;
  }
  .wrapper .carani .s4 {
    position: absolute;
    width: 815px;
    height: 420px;
    top: 50%;
    left: 50%;
    margin-left: -315px;
    margin-top: -78px;
    background: url(../images/1024/s4_car.png) no-repeat;
  }
  .wrapper .carani .s4:before {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    margin-left: 0;
    margin-top: 0;
    -moz-transition: 0.7s;
    -o-transition: 0.7s;
    -webkit-transition: 0.7s;
    transition: 0.7s;
    -moz-transition-delay: 1.7s;
    -o-transition-delay: 1.7s;
    -webkit-transition-delay: 1.7s;
    transition-delay: 1.7s;
    content: "";
    background: url(../images/1024/s4_car_end.png) no-repeat;
    z-index: 1;
    opacity: 0;
  }
  .wrapper .carani .s4.on:before {
    opacity: 1;
  }
  .wrapper .carani .s5 {
    position: absolute;
    width: 815px;
    height: 420px;
    top: 50%;
    left: 50%;
    margin-left: -315px;
    margin-top: -78px;
    background: url(../images/1024/s5_car.png) no-repeat;
  }
  .wrapper .carani .s5:before {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    margin-left: 0;
    margin-top: 0;
    -moz-transition: 0.7s;
    -o-transition: 0.7s;
    -webkit-transition: 0.7s;
    transition: 0.7s;
    -moz-transition-delay: 1.7s;
    -o-transition-delay: 1.7s;
    -webkit-transition-delay: 1.7s;
    transition-delay: 1.7s;
    content: "";
    background: url(../images/1024/s5_car_end.png) no-repeat;
    z-index: 1;
    opacity: 0;
  }
  .wrapper .carani .s5.on:before {
    opacity: 1;
  }
  .wrapper .mores {
    position: absolute;
    width: 2px;
    height: 2px;
    top: 50%;
    left: 50%;
    margin-left: -1px;
    margin-top: -1px;
    z-index: 7;
  }
  .wrapper .mores .moresin {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    margin-left: 0;
    margin-top: 0;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    opacity: 0;
    pointer-events: none;
  }
  .wrapper .mores .moresin.on {
    opacity: 1;
    pointer-events: auto;
  }
  .wrapper .mores .moresin.on .more {
    -moz-transform: rotateY(180deg);
    -ms-transform: rotateY(180deg);
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
  }
  .wrapper .mores .moresin.on .more:hover:before {
    opacity: 1;
  }
  .wrapper .mores .more {
    position: absolute;
    width: 50px;
    height: 50px;
    top: 0;
    left: 0;
    margin-left: 0;
    margin-top: 0;
    background: url(../images/1024/s2_more.png) no-repeat;
    background-size: contain;
    cursor: pointer;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .wrapper .mores .more:before {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    margin-left: 0;
    margin-top: 0;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    content: "";
    background: url(../images/1024/s2_more_hover.png) no-repeat;
    background-size: contain;
    opacity: 0;
  }
  .wrapper .mores .more1 {
    left: -117px;
    top: 45px;
  }
  .wrapper .mores .more2 {
    left: 63px;
    top: 20px;
  }
  .wrapper .mores .more3 {
    left: 65px;
    top: 155px;
  }
  .wrapper .mores .more4 {
    left: 160px;
    top: -92px;
  }
  .wrapper .mores .more5 {
    left: 290px;
    top: -23px;
  }
  .wrapper .mores .more6 {
    left: 33px;
    top: 70px;
  }
  .wrapper .mores .more7 {
    left: 248px;
    top: -5px;
  }
  .wrapper .stages {
    position: absolute;
    width: 100%;
    height: 500%;
    top: 0;
    left: 0;
    margin-left: 0;
    margin-top: 0;
    -moz-transition: 1s;
    -o-transition: 1s;
    -webkit-transition: 1s;
    transition: 1s;
    -moz-transition-timing-function: ease-out;
    -o-transition-timing-function: ease-out;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
    z-index: 5;
  }
  .wrapper .stages.s2 {
    top: -100%;
  }
  .wrapper .stages.s3 {
    top: -200%;
  }
  .wrapper .stages.s4 {
    top: -300%;
  }
  .wrapper .stages.s5 {
    top: -400%;
  }
  .wrapper .stages .stage {
    position: relative;
    width: 100%;
    height: 20%;
    float: left;
    overflow: hidden;
  }
  .wrapper .stages .stage.s1 .title {
    position: absolute;
    width: 321px;
    height: 167px;
    top: 50%;
    left: 50%;
    margin-left: -475px;
    margin-top: -233px;
    background: url(../images/1024/s1_title.png) no-repeat;
    background-size: contain;
    z-index: 1;
  }
  .wrapper .stages .stage.s1 .light {
    position: absolute;
    width: 982px;
    height: 675px;
    top: 50%;
    left: 50%;
    margin-left: -727px;
    margin-top: -390px;
    z-index: 1;
    opacity: 0;
    background: url(../images/1024/light.png) no-repeat;
    -moz-animation-duration: 1.5s;
    -webkit-animation-duration: 1.5s;
    animation-duration: 1.5s;
    -moz-animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -moz-animation-timing-function: ease-out;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    -moz-animation-name: s1_light;
    -webkit-animation-name: s1_light;
    animation-name: s1_light;
  }
  .wrapper .stages .stage.s1 .bg {
    position: absolute;
    width: 108%;
    height: 108%;
    top: -4%;
    left: -4%;
    margin-left: 0;
    margin-top: 0;
    -moz-transition: 3s;
    -o-transition: 3s;
    -webkit-transition: 3s;
    transition: 3s;
    -moz-transform: scale3d(0.93, 0.93, 0.93);
    -ms-transform: scale3d(0.93, 0.93, 0.93);
    -webkit-transform: scale3d(0.93, 0.93, 0.93);
    transform: scale3d(0.93, 0.93, 0.93);
    z-index: 0;
    background-image: url(../images/1024/s1_bg.jpg);
    background-repeat: no-repeat;
    background-position: center;
  }
  .wrapper .stages .stage.s1 .bg.frist {
    -moz-transform: scale3d(1, 1, 1);
    -ms-transform: scale3d(1, 1, 1);
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  @-moz-keyframes s1_light {
    0% {
      opacity: 0;
    }
    40% {
      opacity: 1;
    }
    60% {
      opacity: 1;
    }
    100% {
      opacity: 0;
    }
  }
  @-webkit-keyframes s1_light {
    0% {
      opacity: 0;
    }
    40% {
      opacity: 1;
    }
    60% {
      opacity: 1;
    }
    100% {
      opacity: 0;
    }
  }
  @keyframes s1_light {
    0% {
      opacity: 0;
    }
    40% {
      opacity: 1;
    }
    60% {
      opacity: 1;
    }
    100% {
      opacity: 0;
    }
  }
  .wrapper .stages .stage.s2 .title {
    position: absolute;
    width: 410px;
    height: 129px;
    top: 50%;
    left: 50%;
    margin-left: -494px;
    margin-top: -289px;
    z-index: 3;
  }
  .wrapper .stages .stage.s2 .title .t {
    position: absolute;
    width: 100%;
    height: 129px;
    top: -30px;
    left: 0;
    margin-left: 0;
    margin-top: 0;
    -moz-transition: 1s;
    -o-transition: 1s;
    -webkit-transition: 1s;
    transition: 1s;
    -moz-transition-delay: 0.5s;
    -o-transition-delay: 0.5s;
    -webkit-transition-delay: 0.5s;
    transition-delay: 0.5s;
    background: url(../images/1024/s2_title.png) no-repeat;
    background-size: contain;
    z-index: 1;
    opacity: 0;
  }
  .wrapper .stages .stage.s2 .title .t.on {
    opacity: 1;
    top: 0;
  }
  .wrapper .stages .stage.s2 .title .word {
    position: absolute;
    width: 330px;
    height: auto;
    top: 122px;
    left: 85px;
    margin-left: 0;
    margin-top: 0;
    font-size: 13px;
    line-height: 20px;
    font-weight: normal;
    font-family: Arial, "微軟正黑體";
    color: #FFF;
    -moz-transition: 1s;
    -o-transition: 1s;
    -webkit-transition: 1s;
    transition: 1s;
    -moz-transition-delay: 0.5s;
    -o-transition-delay: 0.5s;
    -webkit-transition-delay: 0.5s;
    transition-delay: 0.5s;
    z-index: 1;
    opacity: 0;
  }
  .wrapper .stages .stage.s2 .title .word.on {
    opacity: 1;
    top: 152px;
  }
  .wrapper .stages .stage.s2 .title .word .b {
    position: relative;
    width: 100%;
    height: auto;
    float: left;
    margin-bottom: 10px;
  }
  .wrapper .stages .stage.s2 .title .word .b span {
    width: auto;
    border-bottom: 1px solid #fff;
  }
  .wrapper .stages .stage.s2 .title .word .s {
    position: relative;
    width: 100%;
    height: auto;
    float: left;
  }
  .wrapper .stages .stage.s2 .title .tbg {
    position: absolute;
    width: 469px;
    height: 338px;
    top: -20px;
    left: -15px;
    margin-left: 0;
    margin-top: 0;
    -moz-transition: 1s;
    -o-transition: 1s;
    -webkit-transition: 1s;
    transition: 1s;
    background: url(../images/1024/s2_titlebg.png) no-repeat;
    opacity: 0;
    z-index: 0;
  }
  .wrapper .stages .stage.s2 .title .tbg:before {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    margin-left: 0;
    margin-top: 0;
    content: "";
    background: url(../images/1024/s2_titlebg2.png) no-repeat;
    z-index: 1;
    opacity: 0;
  }
  .wrapper .stages .stage.s2 .title .tbg.on {
    top: -5px;
    opacity: 1;
  }
  .wrapper .stages .stage.s2 .title .tbg.on:before {
    -moz-animation-duration: 1s;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -moz-animation-iteration-count: 1;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
    -moz-animation-fill-mode: forwards;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -moz-animation-name: tbgani;
    -webkit-animation-name: tbgani;
    animation-name: tbgani;
  }
  .wrapper .stages .stage.s2 .cover1 {
    position: absolute;
    width: 100%;
    height: 374px;
    top: 50%;
    left: 0;
    margin-left: 0;
    margin-top: 12px;
    background: url(../images/1024/s2_cover1.png) no-repeat;
    background-position: left top;
    z-index: 1;
  }
  .wrapper .stages .stage.s2 .cover2 {
    position: absolute;
    width: 100%;
    height: 0;
    top: 50%;
    left: 0;
    margin-left: 0;
    margin-top: 27px;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    -moz-transition-timing-function: ease-out;
    -o-transition-timing-function: ease-out;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
    background: url(../images/1024/s2_cover2.png) no-repeat;
    background-position: center top;
    z-index: 2;
  }
  .wrapper .stages .stage.s2 .cover2.on {
    height: 373px;
  }
  .wrapper .stages .stage.s2 .bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    margin-left: 0;
    margin-top: 0;
    -moz-transition: 1s;
    -o-transition: 1s;
    -webkit-transition: 1s;
    transition: 1s;
    -moz-transform: scale3d(1.05, 1.05, 1);
    -ms-transform: scale3d(1.05, 1.05, 1);
    -webkit-transform: scale3d(1.05, 1.05, 1);
    transform: scale3d(1.05, 1.05, 1);
    z-index: 0;
    opacity: 0;
    background: url(../images/1024/s2_bg.jpg) no-repeat;
    background-size: cover;
    background-position: center;
  }
  .wrapper .stages .stage.s2 .bg.on {
    opacity: 1;
    -moz-transform: scale3d(1, 1, 1);
    -ms-transform: scale3d(1, 1, 1);
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  .wrapper .stages .stage.s2 .bg.end {
    -moz-animation-duration: 5s;
    -webkit-animation-duration: 5s;
    animation-duration: 5s;
    -moz-animation-iteration-count: 1;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
    -moz-animation-fill-mode: forwards;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -moz-animation-timing-function: ease;
    -webkit-animation-timing-function: ease;
    animation-timing-function: ease;
    -moz-animation-name: stagebg;
    -webkit-animation-name: stagebg;
    animation-name: stagebg;
  }
  .wrapper .stages .stage.s3 {
    background-color: #121720;
  }
  .wrapper .stages .stage.s3 .title {
    position: absolute;
    width: 336px;
    height: 130px;
    top: 50%;
    left: 50%;
    margin-left: -463px;
    margin-top: -260px;
    z-index: 3;
  }
  .wrapper .stages .stage.s3 .title .t {
    position: absolute;
    width: 100%;
    height: 130px;
    top: -30px;
    left: 0;
    margin-left: 0;
    margin-top: 0;
    -moz-transition: 1s;
    -o-transition: 1s;
    -webkit-transition: 1s;
    transition: 1s;
    -moz-transition-delay: 0.5s;
    -o-transition-delay: 0.5s;
    -webkit-transition-delay: 0.5s;
    transition-delay: 0.5s;
    background: url(../images/1024/s3_title.png) no-repeat;
    background-size: contain;
    z-index: 1;
    opacity: 0;
  }
  .wrapper .stages .stage.s3 .title .t.on {
    opacity: 1;
    top: 0;
  }
  .wrapper .stages .stage.s3 .title .word {
    position: absolute;
    width: 340px;
    height: auto;
    top: 122px;
    left: 90px;
    margin-left: 0;
    margin-top: 0;
    font-size: 13px;
    line-height: 20px;
    font-weight: normal;
    font-family: Arial, "微軟正黑體";
    color: #14223b;
    -moz-transition: 1s;
    -o-transition: 1s;
    -webkit-transition: 1s;
    transition: 1s;
    -moz-transition-delay: 0.5s;
    -o-transition-delay: 0.5s;
    -webkit-transition-delay: 0.5s;
    transition-delay: 0.5s;
    z-index: 1;
    opacity: 0;
  }
  .wrapper .stages .stage.s3 .title .word.on {
    opacity: 1;
    top: 152px;
  }
  .wrapper .stages .stage.s3 .title .word .b {
    position: relative;
    width: 100%;
    height: auto;
    float: left;
    margin-bottom: 10px;
  }
  .wrapper .stages .stage.s3 .title .word .b span {
    width: auto;
    border-bottom: 1px solid #14223b;
  }
  .wrapper .stages .stage.s3 .title .word .s {
    position: relative;
    width: 100%;
    height: auto;
    float: left;
  }
  .wrapper .stages .stage.s3 .title .tbg {
    position: absolute;
    width: 544px;
    height: 321px;
    top: -60px;
    left: -90px;
    margin-left: 0;
    margin-top: 0;
    -moz-transition: 1s;
    -o-transition: 1s;
    -webkit-transition: 1s;
    transition: 1s;
    background: url(../images/1024/s3_titlebg.png) no-repeat;
    opacity: 0;
    z-index: 0;
  }
  .wrapper .stages .stage.s3 .title .tbg.on {
    top: -40px;
    opacity: 1;
  }
  .wrapper .stages .stage.s3 .cover1 {
    position: absolute;
    width: 100%;
    height: 307px;
    top: 50%;
    left: 0;
    margin-left: 0;
    margin-top: 82px;
    background: url(../images/1024/s3_cover1.png) no-repeat;
    background-position: center top;
    z-index: 1;
  }
  .wrapper .stages .stage.s3 .cover2 {
    position: absolute;
    width: 0;
    height: 266px;
    top: 50%;
    left: auto;
    margin-left: 0;
    margin-top: 126px;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    -moz-transition-timing-function: ease-out;
    -o-transition-timing-function: ease-out;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
    right: 0;
    background: url(../images/1024/s3_cover2.png) no-repeat;
    background-position: center top;
    z-index: 2;
  }
  .wrapper .stages .stage.s3 .cover2.on {
    width: 100%;
  }
  .wrapper .stages .stage.s3 .bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    margin-left: 0;
    margin-top: 0;
    -moz-transition: 1s;
    -o-transition: 1s;
    -webkit-transition: 1s;
    transition: 1s;
    z-index: 0;
    opacity: 0;
    background: url(../images/1024/s3_bg.jpg) no-repeat;
    background-size: cover;
    background-position: center;
  }
  .wrapper .stages .stage.s3 .bg.on {
    opacity: 1;
  }
  .wrapper .stages .stage.s3 .bg.end {
    -moz-animation-duration: 5s;
    -webkit-animation-duration: 5s;
    animation-duration: 5s;
    -moz-animation-iteration-count: 1;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
    -moz-animation-fill-mode: forwards;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -moz-animation-timing-function: ease;
    -webkit-animation-timing-function: ease;
    animation-timing-function: ease;
    -moz-animation-name: stagebg;
    -webkit-animation-name: stagebg;
    animation-name: stagebg;
  }
  .wrapper .stages .stage.s4 {
    background-color: #121720;
  }
  .wrapper .stages .stage.s4 .title {
    position: absolute;
    width: 548px;
    height: 127px;
    top: 50%;
    left: 50%;
    margin-left: -476px;
    margin-top: -259px;
    z-index: 3;
  }
  .wrapper .stages .stage.s4 .title .t {
    position: absolute;
    width: 100%;
    height: 127px;
    top: -30px;
    left: 0;
    margin-left: 0;
    margin-top: 0;
    -moz-transition: 1s;
    -o-transition: 1s;
    -webkit-transition: 1s;
    transition: 1s;
    -moz-transition-delay: 0.5s;
    -o-transition-delay: 0.5s;
    -webkit-transition-delay: 0.5s;
    transition-delay: 0.5s;
    background: url(../images/1024/s4_title.png) no-repeat;
    background-size: contain;
    z-index: 1;
    opacity: 0;
  }
  .wrapper .stages .stage.s4 .title .t.on {
    opacity: 1;
    top: 0;
  }
  .wrapper .stages .stage.s4 .title .word {
    position: absolute;
    width: 270px;
    height: auto;
    top: 122px;
    left: 90px;
    margin-left: 0;
    margin-top: 0;
    font-size: 13px;
    line-height: 20px;
    font-weight: normal;
    font-family: Arial, "微軟正黑體";
    color: #FFF;
    -moz-transition: 1s;
    -o-transition: 1s;
    -webkit-transition: 1s;
    transition: 1s;
    -moz-transition-delay: 0.5s;
    -o-transition-delay: 0.5s;
    -webkit-transition-delay: 0.5s;
    transition-delay: 0.5s;
    z-index: 1;
    opacity: 0;
  }
  .wrapper .stages .stage.s4 .title .word.on {
    opacity: 1;
    top: 152px;
  }
  .wrapper .stages .stage.s4 .title .word .b {
    position: relative;
    width: 100%;
    height: auto;
    float: left;
    margin-bottom: 10px;
  }
  .wrapper .stages .stage.s4 .title .word .b span {
    width: auto;
    border-bottom: 1px solid #FFF;
  }
  .wrapper .stages .stage.s4 .title .word .s {
    position: relative;
    width: 100%;
    height: auto;
    float: left;
  }
  .wrapper .stages .stage.s4 .title .tbg {
    position: absolute;
    width: 476px;
    height: 325px;
    top: -30px;
    left: -34px;
    margin-left: 0;
    margin-top: 0;
    -moz-transition: 1s;
    -o-transition: 1s;
    -webkit-transition: 1s;
    transition: 1s;
    background: url(../images/1024/s4_titlebg.png) no-repeat;
    opacity: 0;
    z-index: 0;
  }
  .wrapper .stages .stage.s4 .title .tbg.on {
    top: 0px;
    opacity: 1;
  }
  .wrapper .stages .stage.s4 .cover1 {
    position: absolute;
    width: 100%;
    height: 296px;
    top: 50%;
    left: 0;
    margin-left: 0;
    margin-top: 103px;
    background: url(../images/1024/s4_cover1.png) no-repeat;
    background-position: center top;
    z-index: 1;
  }
  .wrapper .stages .stage.s4 .cover2 {
    position: absolute;
    width: 100%;
    height: 356px;
    top: 50%;
    left: 0;
    margin-left: 0;
    margin-top: 55px;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    -moz-transition-timing-function: ease-out;
    -o-transition-timing-function: ease-out;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
    background: url(../images/1024/s4_cover2.png) no-repeat;
    background-position: center top;
    z-index: 2;
  }
  .wrapper .stages .stage.s4 .cover2:before {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: auto;
    margin-left: 0;
    margin-top: 0;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    -moz-transition-timing-function: ease-out;
    -o-transition-timing-function: ease-out;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
    content: "";
    right: 0;
    background-color: #121720;
  }
  .wrapper .stages .stage.s4 .cover2.on:before {
    width: 0;
  }
  .wrapper .stages .stage.s4 .bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    margin-left: 0;
    margin-top: 0;
    -moz-transition: 1s;
    -o-transition: 1s;
    -webkit-transition: 1s;
    transition: 1s;
    z-index: 0;
    opacity: 0;
    background: url(../images/1024/s4_bg.jpg) no-repeat;
    background-size: cover;
    background-position: center;
  }
  .wrapper .stages .stage.s4 .bg.on {
    opacity: 1;
  }
  .wrapper .stages .stage.s4 .bg.end {
    -moz-animation-duration: 5s;
    -webkit-animation-duration: 5s;
    animation-duration: 5s;
    -moz-animation-iteration-count: 1;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
    -moz-animation-fill-mode: forwards;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -moz-animation-timing-function: ease;
    -webkit-animation-timing-function: ease;
    animation-timing-function: ease;
    -moz-animation-name: stagebg;
    -webkit-animation-name: stagebg;
    animation-name: stagebg;
  }
  .wrapper .stages .stage.s5 {
    background-color: #121720;
  }
  .wrapper .stages .stage.s5 .title {
    position: absolute;
    width: 508px;
    height: 128px;
    top: 50%;
    left: 50%;
    margin-left: -478px;
    margin-top: -264px;
    z-index: 3;
  }
  .wrapper .stages .stage.s5 .title .t {
    position: absolute;
    width: 100%;
    height: 128px;
    top: -30px;
    left: 0;
    margin-left: 0;
    margin-top: 0;
    -moz-transition: 1s;
    -o-transition: 1s;
    -webkit-transition: 1s;
    transition: 1s;
    -moz-transition-delay: 0.5s;
    -o-transition-delay: 0.5s;
    -webkit-transition-delay: 0.5s;
    transition-delay: 0.5s;
    background: url(../images/1024/s5_title.png) no-repeat;
    background-size: contain;
    z-index: 1;
    opacity: 0;
  }
  .wrapper .stages .stage.s5 .title .t.on {
    opacity: 1;
    top: 0;
  }
  .wrapper .stages .stage.s5 .title .word {
    position: absolute;
    width: 325px;
    height: auto;
    top: 122px;
    left: 90px;
    margin-left: 0;
    margin-top: 0;
    font-size: 13px;
    line-height: 20px;
    font-weight: normal;
    font-family: Arial, "微軟正黑體";
    color: #14223b;
    -moz-transition: 1s;
    -o-transition: 1s;
    -webkit-transition: 1s;
    transition: 1s;
    -moz-transition-delay: 0.5s;
    -o-transition-delay: 0.5s;
    -webkit-transition-delay: 0.5s;
    transition-delay: 0.5s;
    z-index: 1;
    opacity: 0;
  }
  .wrapper .stages .stage.s5 .title .word.on {
    opacity: 1;
    top: 152px;
  }
  .wrapper .stages .stage.s5 .title .word .b {
    position: relative;
    width: 100%;
    height: auto;
    float: left;
    margin-bottom: 10px;
  }
  .wrapper .stages .stage.s5 .title .word .b span {
    width: auto;
    border-bottom: 1px solid #14223b;
  }
  .wrapper .stages .stage.s5 .title .word .s {
    position: relative;
    width: 100%;
    height: auto;
    float: left;
  }
  .wrapper .stages .stage.s5 .title .tbg {
    position: absolute;
    width: 449px;
    height: 282px;
    top: -50px;
    left: 0;
    margin-left: 0;
    margin-top: 0;
    -moz-transition: 1s;
    -o-transition: 1s;
    -webkit-transition: 1s;
    transition: 1s;
    background: url(../images/1024/s5_titlebg.png) no-repeat;
    opacity: 0;
    z-index: 0;
  }
  .wrapper .stages .stage.s5 .title .tbg.on {
    top: -20px;
    opacity: 1;
  }
  .wrapper .stages .stage.s5 .cover1 {
    position: absolute;
    width: 100%;
    height: 432px;
    top: 50%;
    left: 0;
    margin-left: 0;
    margin-top: -44px;
    background: url(../images/1024/s5_cover1.png) no-repeat;
    background-position: center top;
    z-index: 1;
  }
  .wrapper .stages .stage.s5 .cover2 {
    position: absolute;
    width: 100%;
    height: 380px;
    top: 50%;
    left: 0;
    margin-left: 0;
    margin-top: 20px;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    -moz-transition-timing-function: ease-out;
    -o-transition-timing-function: ease-out;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
    background: url(../images/1024/s5_cover2.png) no-repeat;
    background-position: center top;
    z-index: 2;
  }
  .wrapper .stages .stage.s5 .cover2:before {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: auto;
    margin-left: 0;
    margin-top: 0;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    -moz-transition-timing-function: ease-out;
    -o-transition-timing-function: ease-out;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
    content: "";
    right: 0;
    background-color: #121720;
  }
  .wrapper .stages .stage.s5 .cover2.on:before {
    width: 0;
  }
  .wrapper .stages .stage.s5 .bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    margin-left: 0;
    margin-top: 0;
    -moz-transition: 1s;
    -o-transition: 1s;
    -webkit-transition: 1s;
    transition: 1s;
    z-index: 0;
    opacity: 0;
    background: url(../images/1024/s5_bg.jpg) no-repeat;
    background-size: cover;
    background-position: center;
  }
  .wrapper .stages .stage.s5 .bg.on {
    opacity: 1;
  }
  .wrapper .stages .stage.s5 .bg.end {
    -moz-animation-duration: 5s;
    -webkit-animation-duration: 5s;
    animation-duration: 5s;
    -moz-animation-iteration-count: 1;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
    -moz-animation-fill-mode: forwards;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -moz-animation-timing-function: ease;
    -webkit-animation-timing-function: ease;
    animation-timing-function: ease;
    -moz-animation-name: stagebg;
    -webkit-animation-name: stagebg;
    animation-name: stagebg;
  }
  @-moz-keyframes tbgani {
    0% {
      opacity: 0;
    }
    15% {
      opacity: 1;
    }
    30% {
      opacity: 0;
    }
    100% {
      opacity: 0;
    }
  }
  @-webkit-keyframes tbgani {
    0% {
      opacity: 0;
    }
    15% {
      opacity: 1;
    }
    30% {
      opacity: 0;
    }
    100% {
      opacity: 0;
    }
  }
  @keyframes tbgani {
    0% {
      opacity: 0;
    }
    15% {
      opacity: 1;
    }
    30% {
      opacity: 0;
    }
    100% {
      opacity: 0;
    }
  }
  @-moz-keyframes stagebg {
    0% {
      -moz-transform: scale3d(1, 1, 1);
      transform: scale3d(1, 1, 1);
    }
    100% {
      -moz-transform: scale3d(1.05, 1.05, 1);
      transform: scale3d(1.05, 1.05, 1);
    }
  }
  @-webkit-keyframes stagebg {
    0% {
      -webkit-transform: scale3d(1, 1, 1);
      transform: scale3d(1, 1, 1);
    }
    100% {
      -webkit-transform: scale3d(1.05, 1.05, 1);
      transform: scale3d(1.05, 1.05, 1);
    }
  }
  @keyframes stagebg {
    0% {
      -moz-transform: scale3d(1, 1, 1);
      -ms-transform: scale3d(1, 1, 1);
      -webkit-transform: scale3d(1, 1, 1);
      transform: scale3d(1, 1, 1);
    }
    100% {
      -moz-transform: scale3d(1.05, 1.05, 1);
      -ms-transform: scale3d(1.05, 1.05, 1);
      -webkit-transform: scale3d(1.05, 1.05, 1);
      transform: scale3d(1.05, 1.05, 1);
    }
  }
}

/*# sourceMappingURL=index.css.map */
