* {
  font-family: Arial, 微軟正黑體, sans-serif;
  text-decoration: none;
}
ul {
  list-style: none;
}
html, body {
  box-sizing: border-box;
  position: relative;
  margin: 0px auto;
  min-width: 1200px;
  background: #000000;
  background: url(../images/bg.jpg) no-repeat center top #fae7e9;
}
.select {
  box-sizing: border-box;
  position: relative;
  margin: 0px auto;
  min-width: 1200px;
  background: url(../images/select_bg.jpg) no-repeat center top #4b4545;
}
header, section, footer {
  width: 100%;
}
.wrap {
  position: relative;
  margin: 0px auto;
  max-width: 1200px;
  text-align: center;
  z-index: 2;
}
/*----header----*/
header {
  position: relative;
  height: 938px;
  overflow: hidden;
}
header .wrap {
  top: 100px;
  left: 250px;
}
/*----Logo----*/
.logo {
  margin-right: 80%;
}
/*----Slogan----*/
.slogan {
  position: relative;
  margin-top: -119px;
  animation: slogan .5s forwards;
}
@keyframes slogan {
  from {
    opacity: 0;
    top: 30px;
  }
  to {
    opacity: 1;
    top: 0;
  }
}
.btn_start {
  transition: .5s;
}
.btn_start:hover {
  filter: saturate(.3);
}
.btn_start img {
  animation: fadein 1s forwards, start ease-in-out 1.5s infinite;
  animation-delay: .5s;
  opacity: 0;
}
@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes start {
  0% {
    transform: scale(1.05);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.05);
  }
}
/*----video----*/
.inner {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-position: top center;
}
.inner video, .loaderImg {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 0;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translateX(-50%) translateY(-50%);
}
.inner video {
  z-index: 1;
}
.username {
  color: #fff;
  border: 2px solid rgb(190 255 255);
  border-radius: 30px;
  font-size: 30px;
  font-weight: bold;
  background: #db7676;
  width: 52%;
  height: 54px;
  margin: 0 auto;
  padding-top: 22px;
}
.rewards {
  margin: 25px 0px 50px;
  display: inline-block;
  border: 2px solid rgb(190 255 255);
  border-radius: 30px;
  padding-bottom: 22px;
  width: 628px;
  background: rgb(255 249 203);
  overflow: hidden;
  text-align: center;
}
.rewards p {
  margin: 0 auto;
  color: #bd5342;
  font-size: 30px;
  font-weight: bold;
  margin-top: 12px;
}
.title {
  padding: 26px 0;
  color: #fff;
  font-size: 30px;
  font-weight: bold;
  background: #db7676;
}
/*----section----*/
section {
  position: relative;
  margin-top: -132px;
  /* padding: 27px 0 5px; */
  text-align: center;
  z-index: 5;
}
section .wrap {
  left: 0;
}
section ul {
  position: absolute;
  margin-top: 675px;
  margin-left: 40px;
  z-index: 5;
  animation: tabs .5s forwards;
}
@keyframes tabs {
  from {
    opacity: 0;
    top: 80px;
  }
  to {
    opacity: 1;
    top: 0;
  }
}
section ol {
  margin-left: -20px;
}
section ul li {
  display: inline-block;
  transition: .5s;
  cursor: pointer;
}
section ul li:hover, section ul li.active {
  filter: saturate(.5);
}
select {
  width: 72%;
  height: 30PX;
  border-radius: 10px;
  font-size: 17px;
  margin-top: 26px;
  margin-bottom: 3%;
}
.content {
  position: relative;
  margin-top: 37px;
}
.tab_container {
  background-repeat: no-repeat;
  width: 1160px;
  height: 740px;
  position: relative;
  border-radius: 50px;
  margin: 134px auto 145px;
  color: #ffffff;
  /*--animation: bounceIn ease-in-out 1.2s forwards;--*/
}
@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(.9, .9, .9);
    transform: scale3d(.9, .9, .9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(.97, .97, .97);
    transform: scale3d(.97, .97, .97);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.title img {
  width: 100%;
}
#tab2, #tab3 {
  display: none;
}
.tab_content {
  position: relative;
}
.tab_content img {
  position: relative;
  left: 14px;
  top: -18px;
  animation: bounceIn ease-in-out 1.2s forwards;
}
.tab_content ol, .tab_content p, .tab_content h2, .tab_content h3 {
  /*-text-align: left;--*/
  line-height: 30px;
}
.sub_text {
  margin-bottom: 30px;
}
.sub_text p, h3.sub_title {
  text-align: center;
}
.sub_text img {
  margin: 0 10px;
  vertical-align: middle;
}
h2 {
  color: #f567ff;
}
h3 {
  text-shadow: 0px 0px 8px #c819d5, 0px 0px 8px #c819d5, 0px 0px 8px #c819d5;
}
/*----btn----*/
.btn {
  border: 2px solid #c819d5;
  display: block;
  margin: 20px auto 0;
  padding: 5px 10px;
  max-width: 150px;
  color: #fff;
  text-align: center;
  letter-spacing: 1px;
  background: #91109b;
  transition: .5s;
}
.big {
  margin: 20px auto;
  padding: 10px;
}
.btn:hover {
  filter: brightness(1.2);
}
.view {
  color: #f567ff;
  font-weight: bold;
}
.view:hover {
  text-decoration: underline;
}
/*----Table----*/
.content table {
  border-spacing: 0px;
  border-collapse: separate;
  border: 1px solid #c819d5;
  width: 100%;
  margin: 2% auto;
}
.content table tr:first-child td, .content table td.first {
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  color: #ffffff;
  background: #91109b;
}
.content table td {
  border: 1px solid #c819d5;
  padding: 10px;
  width: 19%;
  font-size: 14px;
  text-align: center;
  line-height: 20px;
  color: #ffffff;
  background: rgba(88, 34, 96, .7);
  vertical-align: middle;
}
/*----line----*/
.line {
  width: 100%;
  margin: 40px auto;
  height: 10px;
  border-bottom-width: 1px;
  border-bottom-style: dashed;
  border-bottom-color: #f567ff;
}
/*----Go Top----*/
.gotop {
  display: none;
  position: fixed;
  width: 55px;
  height: 60px;
  bottom: 150px;
  right: 50px;
  background: url(../images/top.png) no-repeat center top;
  cursor: pointer;
  z-index: 10;
}
.gotop:hover {
  background-image: url(../images/top.png);
}
/*----Notice----*/
.notice {
  margin: 1% 9% 4%;
  color: #a84aa9;
  font-size: 18px;
  text-align: justify;
  padding: 0% 4%;
  line-height: 30px;
}
.notice ol {
  margin-left: -4%;
}
.notice li {
  margin-bottom: 1%;
}
.notice h1 {
  font-size: 17px;
  color: #717171;
}
.notice_select {
  margin: 1% 9% 4%;
  color: #d7d7d7;
  font-size: 18px;
  text-align: justify;
  padding: 0% 4%;
  line-height: 30px;
}
.notice_select ol {
  margin-left: -4%;
}
.notice_select li {
  margin-bottom: 1%;
}
.notice_select h1 {
  font-size: 17px;
  color: #cbc0a6;
}
/*----progress進度條----*/
#tab1 {
  position: absolute;
  top: -20px;
}
.animated-progress {
  width: 900px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  background-color: #ffffff;
  top: 594px;
  left: 214px;
}
.animated-progress span {
  height: 100%;
  display: block;
  width: 0;
  color: rgb(255, 251, 251);
  line-height: 43px;
}
.progress-green span {
  background-color: #0095cb;
  background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
  background-size: 1rem 1rem;
}
.rabbit {
  background: url(../images/content/01.png) no-repeat;
  width: 181px;
  height: 210px;
  position: absolute;
  display: block;
  left: 85px;
  top: 444px;
  animation: bounceIn ease-in-out 1.8s forwards;
}
.dialog_box {
  background: url(../images/content/d_01.png) no-repeat;
  width: 450px;
  height: 72px;
  position: absolute;
  display: block;
  left: 255px;
  top: 515px;
  animation: bounceIn ease-in-out 1.8s forwards;
}
.gift {
  background: url(../images/content/06.png) no-repeat;
  width: 107px;
  height: 97px;
  position: absolute;
  display: block;
  left: 1011px;
  top: 30px;
}
.gift:hover {
  cursor: pointer;
  animation: Shakelf ease-in-out 0.3s infinite;
}
@keyframes Shakelf {
  0% {
    transform: rotate(0deg);
    transform-origin: 50% 100%;
  }
  50% {
    transform: rotate(-2deg);
    transform-origin: 50% 100%;
  }
  100% {
    transform: rotate(0deg);
    transform-origin: 50% 100%;
  }
}
a.gift span {
  display: none;
  background-color: rgb(93 47 0 / 84%);
  margin-left: -193%;
  margin-top: -68px;
  color: #ffffff;
  width: 265px;
  font-size: 15px;
  position: absolute;
  padding: 7px;
  z-index: 99;
}
a.gift span p {
  line-height: 22px;
}
a.gift:hover span {
  display: inline;
  line-height: 0px;
  box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.3);
  z-index: 99;
}
.love {
  margin-top: 8%;
  left: 240px;
  z-index: 1;
  position: absolute;
  animation: bounce-out-down 1.5s forwards;
}
.bounce-out-down {
  animation: bounce-out-down 2s ease forwards;
}
@keyframes bounce-out-down {
  0% {
    transform: translateY(0);
  }
  20% {
    opacity: 1;
    transform: translateY(-20px);
  }
  100% {
    opacity: 0;
    transform: translateY(20px);
  }
}
.love img {
  animation: glow2 2s ease-in-out infinite;
}
/*----Footer----*/
footer {
  position: relative;
  height: 83px;
  color: #fff;
  font-size: 12px;
  background: #ed8181;
}
.evt_fot {
  position: relative;
  background: #ed8181;
}
footer table {
  margin: 0 auto 0 auto;
}
footer table td {
  padding-right: 8px;
}
footer .about {
  line-height: 10px;
}
footer table .t {
  list-style: none;
  margin-left: -40px;
  font-size: 11px;
  line-height: 15px;
}