@charset "UTF-8";
/*==========================================================================
    defualt
 ==========================================================================*/
* {
  outline: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100.1%;
}

html.disable {
  overflow: hidden;
}

body {
  overflow-x: hidden;
  font-family: 'Noto Sans TC', Heiti TC, Microsoft JhengHei, "微軟正黑體", Verdana;
  color: #fff;
  font-size: 48px;
  -webkit-font-smoothing: antialiased;
  -webkit-overflow-scrolling: touch;
  background: -webkit-gradient(linear, left top, right top, from(#8900ff), color-stop(#670fff), color-stop(#0074ff), color-stop(#00c0ff), to(#00f1ff)) center repeat;
  background: linear-gradient(90deg, #8900ff, #670fff, #0074ff, #00c0ff, #00f1ff) center repeat;
}

@media (max-width: 1024px) {
  body {
    background-size: 188%;
    font-size: 4.8vw;
  }
}

input, textarea, button, select {
  font-family: 'Noto Sans TC', Heiti TC, Microsoft JhengHei, "微軟正黑體", Verdana;
}

/* Change Autocomplete styles in Chrome
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  -webkit-text-fill-color: #000;
  -webkit-box-shadow: none;
}
@-webkit-keyframes autofill {
    to {
        color: #000;
        background-color: #fff;
    }
}
input:-webkit-autofill {
    -webkit-animation-name: autofill;
    -webkit-animation-fill-mode: both;
}*/
button {
  cursor: pointer;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

img {
  max-width: 100%;
}

.hidden {
  display: none;
}

.container {
  max-width: 1024px;
  margin: auto;
}

.clearfix:after {
  content: '';
  display: block;
  clear: both;
}

.wp {
  min-height: 100%;
  min-width: 320px;
  padding-top: 890px;
  background: url("../_img/bg.jpg?v=20210906") top center no-repeat, -webkit-gradient(linear, left top, right top, from(#8900ff), color-stop(#670fff), color-stop(#0074ff), color-stop(#00c0ff), to(#00f1ff)) top no-repeat, -webkit-gradient(linear, left top, right top, color-stop(49%, #8900ff), color-stop(51%, #00f1ff)) top no-repeat;
  background: url("../_img/bg.jpg?v=20210906") top center no-repeat, linear-gradient(90deg, #8900ff, #670fff, #0074ff, #00c0ff, #00f1ff) top no-repeat, linear-gradient(90deg, #8900ff 49%, #00f1ff 51%) top no-repeat;
  background-size: 1920px auto, 1920px auto, 100%;
  position: relative;
  overflow: hidden;
}

@media (max-width: 1024px) {
  .wp {
    padding-top: 89vw;
    background-size: 188% , 188% auto, 100%;
  }
}

.wp .blue {
  color: #00f6ff;
}

.wp .yellow {
  color: yellow;
}

.wp .red {
  color: red;
}

.wp .purple {
  color: #4e22a9;
}

.wp .pink {
  color: #ff006c;
}

.wp .black {
  color: black;
}

.wp .small {
  font-size: 36px;
  line-height: normal;
}

@media (max-width: 1024px) {
  .wp .small {
    font-size: 3.6vw;
  }
}

.wp .big {
  font-size: 72px;
}

@media (max-width: 1024px) {
  .wp .big {
    font-size: 7.2vw;
  }
}

a {
  text-decoration: none;
  -webkit-transition: color 0.5s;
  transition: color 0.5s;
}

p {
  margin: 0;
}

/*==========================================================================
    animation
 ==========================================================================*/
.fade-in {
  opacity: 0;
  -webkit-transition: opacity 1s;
  transition: opacity 1s;
}

.fade-in.show {
  opacity: 1;
}

.fade-up {
  opacity: 0;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
  -webkit-transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, transform 1s;
  transition: opacity 1s, transform 1s, -webkit-transform 1s;
}

.fade-up.show {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.fade-down {
  opacity: 0;
  -webkit-transform: translateY(-50px);
          transform: translateY(-50px);
  -webkit-transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, transform 1s;
  transition: opacity 1s, transform 1s, -webkit-transform 1s;
}

.fade-down.show {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.fade-left {
  opacity: 0;
  -webkit-transform: translateX(-100px);
          transform: translateX(-100px);
  -webkit-transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, transform 1s;
  transition: opacity 1s, transform 1s, -webkit-transform 1s;
}

.fade-left.show {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.fade-right {
  opacity: 0;
  -webkit-transform: translateX(100px);
          transform: translateX(100px);
  -webkit-transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, transform 1s;
  transition: opacity 1s, transform 1s, -webkit-transform 1s;
}

.fade-right.show {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.fade-zoom {
  opacity: 0 !important;
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
  -webkit-transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, transform 1s;
  transition: opacity 1s, transform 1s, -webkit-transform 1s;
}

.fade-zoom.show {
  opacity: 1 !important;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.fade-rotate {
  opacity: 0 !important;
  -webkit-transform: rotate(-360deg);
          transform: rotate(-360deg);
  -webkit-transition: opacity 1s, -webkit-transform 1.5s;
  transition: opacity 1s, -webkit-transform 1.5s;
  transition: opacity 1s, transform 1.5s;
  transition: opacity 1s, transform 1.5s, -webkit-transform 1.5s;
}

.fade-rotate.show {
  opacity: 1 !important;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}

/*==========================================================================
    public
 ==========================================================================*/
ul.no-style {
  margin: 0;
  padding: 0;
}

ul.no-style > li {
  list-style: none;
}

@media (max-width: 767px) {
  .for-desktop {
    display: none !important;
  }
}

.for-mobile {
  display: none !important;
}

@media (max-width: 767px) {
  .for-mobile {
    display: block !important;
  }
}

@-webkit-keyframes autofill {
  to {
    color: #000;
    background: #fff;
  }
}

@-webkit-keyframes autofill2 {
  to {
    color: #000;
    background: transparent;
  }
}

/*input:-webkit-autofill {
    -webkit-animation-name: autofill;
    -webkit-animation-fill-mode: both;
}*/
.form label {
  display: block;
  margin-bottom: 5px;
  font-size: 48px;
  text-align: center;
}

@media (max-width: 1024px) {
  .form label {
    margin-bottom: 0.5vw;
    font-size: 4.8vw;
  }
}

.form input, .form select {
  width: 695px;
  height: 97px;
  padding: 0 20px;
  border: none;
  border-radius: 10px;
  -webkit-box-shadow: inset 0 4px 5px rgba(0, 0, 0, 0.45);
          box-shadow: inset 0 4px 5px rgba(0, 0, 0, 0.45);
  color: #000;
  font-size: 48px;
  text-align: center;
}

@media (max-width: 1024px) {
  .form input, .form select {
    width: 69.5vw;
    height: 9.7vw;
    padding: 0 2vw;
    border-radius: 1vw;
    -webkit-box-shadow: inset 0 0.4vw 0.5vw rgba(0, 0, 0, 0.45);
            box-shadow: inset 0 0.4vw 0.5vw rgba(0, 0, 0, 0.45);
    font-size: 4.8vw;
  }
}

.form .note {
  margin-bottom: 5px;
  color: red;
  font-size: 38px;
}

@media (max-width: 1024px) {
  .form .note {
    margin-bottom: 0.5vw;
    font-size: 3.8vw;
  }
}

.form .error {
  margin-top: 20px;
}

@media (max-width: 1024px) {
  .form .error {
    margin-top: 2vw;
  }
}

.open-box {
  cursor: pointer;
}

.fixed-box {
  width: 100%;
  height: 100%;
  position: fixed;
  left: -100%;
  top: 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  -webkit-transition: opacity 0.5s, visibility 0.5s, left 0s 0.5s;
  transition: opacity 0.5s, visibility 0.5s, left 0s 0.5s;
}

.fixed-box.show {
  left: 0;
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity 0.5s, visibility 0.5s;
  transition: opacity 0.5s, visibility 0.5s;
}

.fixed-box .mask {
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.8);
}

.fixed-box .block {
  display: table;
  width: 100%;
}

.fixed-box .block .middle {
  display: table-cell;
  vertical-align: middle;
  height: 100vh;
  padding: 80px 30px;
  position: relative;
}

@media (max-width: 1024px) {
  .fixed-box .block .middle {
    padding: 60px 3vw;
  }
}

.fixed-box .inner {
  max-width: 870px;
  width: 94%;
  margin: auto;
  padding: 10px;
  position: relative;
  z-index: 2;
  background: #8900ff;
  background: -webkit-gradient(linear, left top, right top, from(#8900ff), to(#10e4ff));
  background: linear-gradient(to right, #8900ff 0%, #10e4ff 100%);
  color: #4e22a9;
  font-size: 48px;
  line-height: 1.3em;
  text-align: center;
}

@media (max-width: 1024px) {
  .fixed-box .inner {
    padding: 1vw;
    font-size: 4.8vw;
    line-height: 1.3em;
  }
}

.fixed-box .inner .title {
  color: #ff006c;
  margin-bottom: 10px;
  font-weight: bold;
}

@media (max-width: 1024px) {
  .fixed-box .inner .title {
    margin-bottom: 1vw;
  }
}

.fixed-box .inner .content {
  padding: 50px;
  background-color: #ffda10;
  -webkit-box-shadow: inset 1px 5px 17px rgba(0, 0, 0, 0.75);
          box-shadow: inset 1px 5px 17px rgba(0, 0, 0, 0.75);
}

@media (max-width: 1024px) {
  .fixed-box .inner .content {
    padding: 5vw;
    -webkit-box-shadow: inset 0.1vw 0.5vw 1.7vw rgba(0, 0, 0, 0.75);
            box-shadow: inset 0.1vw 0.5vw 1.7vw rgba(0, 0, 0, 0.75);
  }
}

.fixed-box .inner .content a {
  color: #f2cc49;
  -webkit-transition: text-shadow 0.5s;
  transition: text-shadow 0.5s;
}

.fixed-box .inner .content a:hover {
  text-shadow: 0 0 5px #f2cc49;
}

.fixed-box .inner .content p {
  margin-bottom: 30px;
}

@media (max-width: 1024px) {
  .fixed-box .inner .content p {
    margin-bottom: 3vw;
  }
}

.fixed-box .inner .content p.message {
  margin-bottom: 0;
}

.fixed-box .inner .content .btn {
  display: block;
  width: 685px;
  height: 161px;
  margin: auto;
  position: relative;
  background: 0 0 no-repeat;
  background-size: 100% !important;
  font-size: 0;
}

@media (max-width: 1024px) {
  .fixed-box .inner .content .btn {
    width: 68.5vw;
    height: 16.1vw;
  }
}

.fixed-box .inner .content .btn.btn-send {
  background-image: url("../_img/box-send.png");
}

.fixed-box .inner .content .btn.btn-send:hover {
  background-image: url("../_img/box-send2.png");
}

.fixed-box .inner .content .btn.btn-coin {
  background-image: url("../_img/box-coin.png");
}

.fixed-box .inner .content .btn.btn-coin:hover {
  background-image: url("../_img/box-coin2.png");
}

.fixed-box .inner .content .btn.btn-play {
  background-image: url("../_img/box-play.png");
}

.fixed-box .inner .content .btn.btn-play:hover {
  background-image: url("../_img/box-play2.png");
}

.fixed-box .inner .content .btn.btn-icecream {
  background-image: url("../_img/box-icecream.png");
}

.fixed-box .inner .content .btn.btn-icecream:hover {
  background-image: url("../_img/box-icecream2.png");
}

.fixed-box .inner .content .btn.btn-topup {
  background-image: url("../_img/box-topup.png");
}

.fixed-box .inner .content .btn.btn-topup:hover {
  background-image: url("../_img/box-topup2.png");
}

.fixed-box .inner .close-btn {
  width: 135px;
  height: 135px;
  position: absolute;
  right: -40px;
  top: -40px;
  z-index: 3;
  background: url("../_img/X.png") center no-repeat;
  background-size: contain;
  cursor: pointer;
  font-size: 0;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}

@media (max-width: 1024px) {
  .fixed-box .inner .close-btn {
    width: 13.5vw;
    height: 13.5vw;
    right: -4vw;
    top: -4vw;
  }
}

.fixed-box .inner .close-btn:hover {
  -webkit-transform: scale(1.05) rotate(0.02deg);
          transform: scale(1.05) rotate(0.02deg);
}

.terms .inner p {
  text-align: justify;
}

.success .inner .content {
  text-align: left;
  position: relative;
}

.success .inner .content .coin, .success .inner .content .coffee {
  float: right;
}

.success .inner .content .coin {
  max-width: 207px;
  margin-top: 80px;
  position: relative;
  z-index: 2;
}

@media (max-width: 1024px) {
  .success .inner .content .coin {
    max-width: 20.7vw;
    margin-top: 8vw;
  }
}

.success .inner .content .coffee {
  max-width: 125px;
  margin-right: 30px;
  margin-top: 10px;
}

@media (max-width: 1024px) {
  .success .inner .content .coffee {
    max-width: 12.5vw;
    margin-right: 3vw;
    margin-top: 1vw;
  }
}

.get-icecream .inner .content {
  text-align: left;
  position: relative;
}

.get-icecream .inner .content .icecream {
  float: left;
  max-width: 130px;
  margin-top: -30px;
  margin-left: 30px;
  -webkit-transform: rotate(15deg);
          transform: rotate(15deg);
}

@media (max-width: 1024px) {
  .get-icecream .inner .content .icecream {
    max-width: 13vw;
    margin-top: -3vw;
    margin-left: 3vw;
  }
}

.topup .switch img {
  max-width: 490px;
}

@media (max-width: 1024px) {
  .topup .switch img {
    max-width: 49vw;
  }
}

@media (max-width: 1024px) {
  .verification .inner .title {
    margin-bottom: 1.5vw;
  }
}

.verification .imgVerTitle {
  margin-top: 35px;
}

@media (max-width: 600px) {
  .verification .imgVerTitle {
    margin-top: 4vw;
  }
}

.verification .imgVerCodeWrapper {
  width: 695px;
  display: block;
  margin: 0 auto 15px auto;
  text-align: center;
}

@media (max-width: 600px) {
  .verification .imgVerCodeWrapper {
    width: 69.5vw;
    margin-bottom: 1.5vw;
  }
}

.verification .imgVerCodeWrapper input, .verification .imgVerCodeWrapper .imgBox {
  display: inline-block;
  float: left;
}

.verification .imgVerCodeWrapper input {
  width: 60%;
  margin-right: 3%;
}

.verification .imgVerCodeWrapper .imgBox {
  width: 37%;
  height: auto;
}

.verification .imgVerCodeWrapper .imgBox img {
  width: 100%;
  height: 97px;
  border-radius: 10px;
}

@media (max-width: 1024px) {
  .verification .imgVerCodeWrapper .imgBox img {
    height: 9.7vw;
    border-radius: 1vw;
  }
}

@media (max-width: 1024px) {
  .verification .imgVerCodeWrapper {
    width: 69.5vw;
  }
  .verification .imgVerCodeWrapper .imgBox img {
    border-radius: 1vw;
  }
}

@media (max-width: 600px) {
  .verification .imgVerCodeWrapper {
    margin-bottom: 2vw;
  }
}

.share-event .inner {
  font-size: 40px;
  text-align: justify;
}

@media (max-width: 1024px) {
  .share-event .inner {
    font-size: 4vw;
  }
}

.share-event .inner .title {
  font-size: 60px;
  line-height: normal;
  text-align: center;
}

@media (max-width: 1024px) {
  .share-event .inner .title {
    font-size: 6vw;
  }
}

.share-event .inner .box {
  margin: 20px 0;
  padding: 10px 50px;
  background-color: #59008b;
  border: 3px solid #67fffd;
  border-radius: 10px;
}

@media (max-width: 1024px) {
  .share-event .inner .box {
    margin: 2vw 0;
    padding: 1vw 5vw;
    border-width: 0.3vw;
    border-radius: 1vw;
  }
}

.share-event .inner table {
  width: 100%;
  border-collapse: collapse;
  color: #67fffd;
  font-size: 60px;
  overflow: hidden;
}

@media (max-width: 1024px) {
  .share-event .inner table {
    font-size: 5.8vw;
  }
}

.share-event .inner table td {
  padding: 10px;
}

@media (max-width: 1024px) {
  .share-event .inner table td {
    padding: 1vw;
  }
}

.share-event .inner table td.num {
  text-align: center;
  font-weight: bolder;
}

.share-event .inner .btns {
  margin: 30px -30px -20px -30px;
  font-size: 0;
}

@media (max-width: 1024px) {
  .share-event .inner .btns {
    margin: 3vw -3vw -2vw -3vw;
  }
}

.share-event .inner .btns .btn {
  display: inline-block;
  vertical-align: middle;
  width: 50%;
  height: 161px;
  background: center no-repeat;
  background-size: contain;
  font-size: 0;
}

@media (max-width: 1024px) {
  .share-event .inner .btns .btn {
    height: 16.1vw;
  }
}

.share-event .inner .btns .btn.btn-line {
  background-image: url("../_img/btn-line.png");
}

.share-event .inner .btns .btn.btn-line:hover {
  background-image: url("../_img/btn-line2.png");
}

.share-event .inner .btns .btn.btn-fb {
  background-image: url("../_img/btn-fb.png?v=2");
}

.share-event .inner .btns .btn.btn-fb:hover {
  background-image: url("../_img/btn-fb2.png");
}

.system .inner:after {
  content: '';
  display: block;
  width: 286px;
  height: 367px;
  position: absolute;
  left: 10px;
  bottom: 10px;
  background: url("../_img/xinbaby.png") center no-repeat;
  background-size: contain;
}

@media (max-width: 1024px) {
  .system .inner:after {
    width: 28.6vw;
    height: 36.7vw;
    left: 1vw;
    bottom: 1vw;
  }
}

.system .inner .content {
  padding: 100px 50px 100px 300px;
  text-align: left;
}

@media (max-width: 1024px) {
  .system .inner .content {
    padding: 10vw 5vw 10vw 30vw;
  }
}

/* ==========================================================================
* header
 ==========================================================================*/
#header {
  width: 100%;
  height: 108px;
  min-width: 320px;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 99;
  background-color: #9900ef;
}

@media (max-width: 1024px) {
  #header {
    height: 10.8vw;
  }
}

#header .container {
  padding: 0 20px;
  position: relative;
}

@media (max-width: 1024px) {
  #header .container {
    padding: 0 2vw;
  }
}

#header .logo {
  float: left;
  display: block;
  width: 332px;
  height: 79px;
  margin-top: 14px;
  background: url("../_img/logo.png") center no-repeat;
  background-size: contain;
}

@media (max-width: 1024px) {
  #header .logo {
    width: 33.2vw;
    height: 7.9vw;
    margin-top: 1.4vw;
  }
}

#header .follow {
  float: right;
  margin-top: 9px;
  text-align: center;
}

@media (max-width: 991px) {
  #header .follow {
    margin-top: 0.9vw;
  }
}

#header .follow a {
  display: inline-block;
  vertical-align: middle;
  width: 90px;
  height: 90px;
  margin: 0 -2px;
  background: 0 0 no-repeat;
  background-size: contain;
}

@media (max-width: 1024px) {
  #header .follow a {
    width: 9vw;
    height: 9vw;
    margin: 0 -0.2vw;
  }
}

#header .follow a.fb {
  background-image: url("../_img/icon-fb.png");
}

#header .follow a.fb:hover {
  background-image: url("../_img/icon-fb-hover.png");
}

#header .follow a.youtube {
  background-image: url("../_img/icon-youtube.png");
}

#header .follow a.youtube:hover {
  background-image: url("../_img/icon-youtube-hover.png");
}

#header .follow a.line {
  background-image: url("../_img/icon-line.png");
}

#header .follow a.line:hover {
  background-image: url("../_img/icon-line-hover.png");
}

#header .follow a.home {
  background-image: url("../_img/icon-home.png");
}

#header .follow a.home:hover {
  background-image: url("../_img/icon-home-hover.png");
}

/* ==========================================================================
* main
 ==========================================================================*/
.main {
  position: relative;
  z-index: 2;
  text-align: center;
}

.main .container {
  position: relative;
}

.main .container:before, .main .container:after {
  content: '';
  display: block;
  width: 410px;
  height: 100%;
  position: absolute;
  top: 300px;
  z-index: 0;
  background: url("../_img/bg-gift.png") top center repeat-y;
  background-size: contain;
}

@media (max-width: 1024px) {
  .main .container:before, .main .container:after {
    width: 41vw;
    top: 30vw;
  }
}

.main .container:before {
  left: -410px;
}

@media (max-width: 1024px) {
  .main .container:before {
    left: -41vw;
  }
}

.main .container:after {
  right: -410px;
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
}

@media (max-width: 1024px) {
  .main .container:after {
    right: -41vw;
  }
}

.main .btn {
  background: center no-repeat;
  background-size: contain;
  font-size: 0;
}

.main .btn.btn-send {
  width: 685px;
  height: 161px;
  margin: 30px auto 10px auto;
  position: relative;
  background: url("../_img/btn-send.png") 0 0 no-repeat;
  background-size: 100% !important;
  font-size: 0;
  -webkit-animation: btn-send 1s steps(2) infinite;
          animation: btn-send 1s steps(2) infinite;
}

@media (max-width: 1024px) {
  .main .btn.btn-send {
    width: 68.5vw;
    height: 16.1vw;
    margin: 3vw auto 1vw auto;
    -webkit-animation-name: btn-send2;
            animation-name: btn-send2;
  }
}

.main .btn.btn-send:after {
  content: '';
  display: block;
  width: 205px;
  height: 185px;
  position: absolute;
  right: -82px;
  top: 31px;
  background: url("../_img/hand.png") 0 0 no-repeat;
  background-size: 100%;
  -webkit-animation: hand 1s steps(2) infinite;
          animation: hand 1s steps(2) infinite;
}

@media (max-width: 1024px) {
  .main .btn.btn-send:after {
    width: 20.5vw;
    height: 18.5vw;
    right: -8.2vw;
    top: 3.1vw;
    -webkit-animation-name: hand2;
            animation-name: hand2;
  }
}

.main .btn.btn-send:hover {
  background-image: url("../_img/btn-send2.png");
  -webkit-animation: none;
          animation: none;
}

.main .btn.btn-send:hover:after {
  opacity: 0;
}

.main .btn.btn-send[disabled="disabled"] {
  background-image: url("../_img/btn-send.png") !important;
  background-position: 0 0;
  -webkit-animation: none !important;
          animation: none !important;
  filter: url("data:image/svg+xml;utf8,&lt;svg xmlns='http://www.w3.org/2000/svg'&gt;&lt;filter id='grayscale'&gt;&lt;feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0'/&gt;&lt;/filter&gt;&lt;/svg&gt;#grayscale");
  filter: gray;
  -webkit-filter: grayscale(95%);
  cursor: not-allowed;
}

.main .btn.btn-send[disabled="disabled"]:after {
  content: normal;
}

.main .btn.btn-share {
  width: 890px;
  height: 200px;
  margin: auto;
  background: url("../_img/btn-share.png") 0 0 no-repeat;
  background-size: 100%;
  -webkit-animation: btn-share 1s steps(2) infinite;
          animation: btn-share 1s steps(2) infinite;
}

@media (max-width: 1024px) {
  .main .btn.btn-share {
    width: 89vw;
    height: 20vw;
    -webkit-animation-name: btn-share2;
            animation-name: btn-share2;
  }
}

.main .btn.btn-share:hover {
  background-image: url("../_img/btn-share2.png");
  -webkit-animation: none;
          animation: none;
}

.main .btns {
  margin-bottom: 20px;
}

@media (max-width: 1024px) {
  .main .btns {
    margin-bottom: 2vw;
  }
}

.main .btns a {
  display: inline-block;
  vertical-align: middle;
  width: 475px;
  height: 161px;
  background: center no-repeat;
  background-size: contain;
  font-size: 0;
}

@media (max-width: 1024px) {
  .main .btns a {
    width: 47.5vw;
    height: 16.1vw;
  }
}

.main .btns a.btn-download {
  background-image: url("../_img/btn-download.png");
}

.main .btns a.btn-download:hover {
  background-image: url("../_img/btn-download2.png");
}

.main .btns a.btn-play {
  background-image: url("../_img/btn-play.png");
}

.main .btns a.btn-play:hover {
  background-image: url("../_img/btn-play2.png");
}

.main .go-fb {
  display: block;
  width: 100%;
  height: 128px;
  margin-bottom: 20px;
  position: relative;
  z-index: 10;
  background: url("../_img/go-fb.png") center no-repeat;
  background-size: contain;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}

@media (max-width: 1024px) {
  .main .go-fb {
    height: 12.8vw;
    margin-bottom: 2vw;
  }
}

@media (min-width: 1024px) {
  .main .go-fb:hover {
    -webkit-transform: scale(1.05) rotate(-1deg);
            transform: scale(1.05) rotate(-1deg);
  }
}

.main .reward-title {
  height: 162px;
  margin: auto;
  background: url("../_img/reward-title.png") center no-repeat;
  background-size: contain;
  font-size: 0;
}

@media (max-width: 1024px) {
  .main .reward-title {
    height: 16.2vw;
  }
}

.main .reward {
  max-width: 868px;
  margin: auto;
  padding: 27px;
  background-color: #9900ef;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.35);
          box-shadow: 0 5px 10px rgba(0, 0, 0, 0.35);
  color: #000;
}

@media (max-width: 1024px) {
  .main .reward {
    max-width: 86.8vw;
    padding: 2.7vw;
    -webkit-box-shadow: 0 0.5vw 1vw rgba(0, 0, 0, 0.35);
            box-shadow: 0 0.5vw 1vw rgba(0, 0, 0, 0.35);
  }
}

.main .reward .block {
  background-color: #10f7ff;
  color: #4e22a9;
}

.main .reward .block .title {
  width: 100%;
  height: 54px;
  margin: 0 auto 20px auto;
  background: center no-repeat;
  background-size: 93%;
  font-size: 0;
}

@media (max-width: 1024px) {
  .main .reward .block .title {
    height: 5.4vw;
    margin-bottom: 2vw;
  }
}

.main .reward .block a, .main .reward .block .agree span {
  color: #0161ff;
  border-bottom: 1px solid;
}

.main .reward .block .form {
  color: #000;
}

.main .reward .block .form .agree {
  font-size: 48px;
}

@media (max-width: 1024px) {
  .main .reward .block .form .agree {
    font-size: 4.8vw;
  }
}

.main .reward .block .box {
  padding: 40px 0 70px 0;
  border-top: 25px solid #9900ef;
  background: url("../_img/box-shadow.png?v=2") bottom center no-repeat;
  background-size: 100%;
  -webkit-box-shadow: inset 0 20px 20px rgba(82, 27, 10, 0.5);
          box-shadow: inset 0 20px 20px rgba(82, 27, 10, 0.5);
}

@media (max-width: 1024px) {
  .main .reward .block .box {
    padding: 4vw 0 7vw 0;
    border-width: 2.5vw;
    -webkit-box-shadow: inset 0 2vw 2vw rgba(82, 27, 10, 0.5);
            box-shadow: inset 0 2vw 2vw rgba(82, 27, 10, 0.5);
  }
}

.main .reward .coffee, .main .reward .icecream {
  text-align: center;
}

.main .reward .coffee .title {
  background-image: url("../_img/coffee-title.png?v=20200805");
}

.main .reward .coffee .pic {
  max-width: 35%;
  margin: 0 auto -90px auto;
}

@media (max-width: 1024px) {
  .main .reward .coffee .pic {
    margin: 0 auto -9vw auto;
  }
}

.main .reward .icecream .title {
  background-image: url("../_img/icecream-title.png");
}

.main .reward .switch .title {
  background-image: url("../_img/switch-title.png?v=20200805");
}

.main .reward .switch .title2 {
  background-image: url("../_img/switch-title2.png?v=20200805");
}

.main .reward .switch .pic1 {
  max-width: 93%;
  margin: auto;
}

.main .reward .notice {
  color: #000;
  font-size: 33px;
  text-align: justify;
}

@media (max-width: 1024px) {
  .main .reward .notice {
    font-size: 3.3vw;
  }
}

.main .reward .notice .title {
  background-image: url("../_img/notice-title.png?v=20200805");
}

.main .reward .notice ol {
  max-width: 735px;
  margin: 20px auto;
  padding-left: 30px;
}

@media (max-width: 1024px) {
  .main .reward .notice ol {
    max-width: 73.5vw;
    margin: 2vw auto;
    padding-left: 3vw;
  }
}

.preload {
  display: none;
}

@-webkit-keyframes btn-send {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 0 -322px;
  }
}

@keyframes btn-send {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 0 -322px;
  }
}

@-webkit-keyframes btn-send2 {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 0 -32.2vw;
  }
}

@keyframes btn-send2 {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 0 -32.2vw;
  }
}

@-webkit-keyframes hand {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 0 -370px;
  }
}

@keyframes hand {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 0 -370px;
  }
}

@-webkit-keyframes hand2 {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 0 -37vw;
  }
}

@keyframes hand2 {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 0 -37vw;
  }
}

@-webkit-keyframes btn-share {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 0 -400px;
  }
}

@keyframes btn-share {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 0 -400px;
  }
}

@-webkit-keyframes btn-share2 {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 0 -40vw;
  }
}

@keyframes btn-share2 {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 0 -40vw;
  }
}

/* ==========================================================================
* footer
 ==========================================================================*/
#footer {
  padding: 30px 0 25px;
  text-align: center;
}

@media (max-width: 1024px) {
  #footer {
    padding: 3vw 0 2.5vw;
  }
}

#footer .wanin, #footer .yoecard, #footer .level {
  display: inline-block;
  vertical-align: baseline;
}

#footer .wanin {
  width: 205px;
  height: 80px;
  background: url("../_img/wanin.png?v=2") center no-repeat;
  background-size: contain;
}

@media (max-width: 1024px) {
  #footer .wanin {
    width: 20.5vw;
    height: 8vw;
  }
}

#footer .yoecard {
  width: 212px;
  height: 107px;
  margin: 0 20px;
  background: url("../_img/yoecard.png") center no-repeat;
  background-size: contain;
}

@media (max-width: 1024px) {
  #footer .yoecard {
    width: 21.2vw;
    height: 10.7vw;
    margin: 0 2vw;
  }
}

#footer .level {
  width: 80px;
  margin-left: 10px;
}

@media (max-width: 1024px) {
  #footer .level {
    width: 8vw;
    margin-left: 1vw;
  }
}

#footer .level img {
  width: 100%;
  height: auto;
}

/* header-text 獲獎跑馬燈 */
.header-text {
  width: 100%;
  /*padding: 15px;*/
  position: fixed;
  left: 0;
  top: -100%;
  z-index: 80;
  background-color: rgba(0, 0, 0, 0.8);
  color: #fff;
  font-size: 35px;
  text-align: center;
  font-weight: bold;
  line-height: 1.5em;
  -webkit-transition: top 1s;
  transition: top 1s;
}

@media (max-width: 1024px) {
  .header-text {
    font-size: 3.5vw;
  }
}

.header-text .ah-headline {
  font-family: "微軟正黑體", Heiti TC, Microsoft JhengHei, Verdana;
  overflow: hidden;
  display: inline;
}

.header-text .ah-headline.slide .ah-words-wrapper {
  vertical-align: middle;
}

.header-text .ah-headline > span {
  padding: 10px 0;
}

.header-text .ah-words-wrapper {
  width: 100% !important;
  text-align: center !important;
}

.header-text.active {
  top: 108px;
}

@media (max-width: 1024px) {
  .header-text.active {
    top: 10.8vw;
  }
}

.header-text .gift {
  padding: 0 10px !important;
}

.header-text .phone-num, .header-text .gift {
  color: #fdf400;
}

@media (max-width: 767px) {
  .header-text .phone-num, .header-text .gift {
    padding: 0 5px !important;
  }
}
/*# sourceMappingURL=main.css.map */