@charset "UTF-8";
/*==========================================================================
    defualt
 ==========================================================================*/
@import url("plugins.css");
* {
  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: 30px;
  -webkit-font-smoothing: antialiased;
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 1000px) {
  body {
    font-size: 3vw;
  }
}

input, textarea, button, select {
  font-family: 'Noto Sans TC', Heiti TC, Microsoft JhengHei, "微軟正黑體", Verdana;
}

button {
  cursor: pointer;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

select {
  padding-right: 100px !important;
  background: #fff url("../_img/select-tri.png") center right 15px no-repeat;
  -webkit-appearance: none;
  /*隱藏箭頭*/
  -moz-appearance: none;
  /*Firefox*/
}

@media (max-width: 1000px) {
  select {
    padding-right: 10vw !important;
    background-position: center right 1.5vw;
    background-size: 4.4vw;
  }
}

/*IE 10 */
select::-ms-expand {
  display: none !important;
}

img {
  max-width: 100%;
}

.hidden {
  display: none;
}

.container {
  max-width: 1000px;
  margin: auto;
}

.clearfix:after {
  content: '';
  display: block;
  clear: both;
}

.wp {
  min-height: 100%;
  min-width: 320px;
  padding-top: 1210px;
  position: relative;
  background: #ecf9de url("../_img/bg.jpg?v=0602") center top no-repeat;
  overflow: hidden;
}

@media (max-width: 1000px) {
  .wp {
    width: 100vw;
    padding-top: 121vw;
    background-size: 192%;
  }
}

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-input-placeholder {
  /* WebKit browsers */
  color: #c5c5c5;
}

::-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #c5c5c5;
}

::-o-placeholder {
  /* Mozilla Firefox 19+ */
  color: #c5c5c5;
}

::-ms-placeholder {
  /* Internet Explorer 10+ */
  color: #c5c5c5;
}

::-ms-input-placeholder {
  /* Internet Explorer 10+ */
  color: #c5c5c5;
}

.open-box {
  cursor: pointer;
}

.fixed-box {
  width: 100%;
  height: 100%;
  position: fixed;
  left: -100%;
  top: 0;
  z-index: 160;
  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.5);
}

.fixed-box .block {
  display: table;
  width: 100%;
}

.fixed-box .block .middle {
  display: table-cell;
  vertical-align: middle;
  height: 100vh;
  padding: 80px 0;
  position: relative;
}

@media (max-width: 1000px) {
  .fixed-box .block .middle {
    padding: 8vw 0;
  }
}

.fixed-box .inner {
  display: table;
  width: 1000px;
  height: 662px;
  margin: 60px auto;
  padding: 0 60px;
  position: relative;
  z-index: 2;
  background: url("../_img/box-bg.png") center no-repeat;
  background-size: contain;
  color: #676767;
  font-size: 60px;
  line-height: 1.3em;
  font-weight: bold;
  letter-spacing: -5px;
  text-align: center;
}

@media (max-width: 1000px) {
  .fixed-box .inner {
    width: 100%;
    height: 66.2vw;
    margin: 6vw auto;
    padding: 0 6vw;
    font-size: 6vw;
    line-height: 1.3em;
    letter-spacing: -0.5vw;
  }
}

.fixed-box .inner .text {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
  height: 662px;
  padding: 60px 0;
  position: relative;
  z-index: 5;
}

@media (max-width: 1000px) {
  .fixed-box .inner .text {
    height: 66.2vw;
    padding: 6vw 0;
  }
}

.fixed-box .inner .title {
  color: #004d22;
  font-size: 72px;
  line-height: 1.3em;
  text-align: center;
}

@media (max-width: 1000px) {
  .fixed-box .inner .title {
    font-size: 7.2vw;
    line-height: 1.3em;
  }
}

.fixed-box .inner .big-title {
  color: #004d22;
  font-size: 100px;
  line-height: 1.3em;
  text-align: center;
}

@media (max-width: 1000px) {
  .fixed-box .inner .big-title {
    font-size: 10vw;
    line-height: 1.3em;
  }
}

.fixed-box .inner .subtitle {
  font-size: 50px;
}

@media (max-width: 1000px) {
  .fixed-box .inner .subtitle {
    font-size: 5vw;
  }
}

.fixed-box .inner .error-message, .fixed-box .inner .times {
  color: red;
}

.fixed-box .inner .prize {
  color: #e63551;
  font-size: 89px;
  line-height: 100px;
}

@media (max-width: 1000px) {
  .fixed-box .inner .prize {
    font-size: 8.9vw;
    line-height: 10vw;
  }
}

.fixed-box .inner .prize .num {
  font-size: 173px;
}

@media (max-width: 1000px) {
  .fixed-box .inner .prize .num {
    font-size: 17.3vw;
  }
}

.fixed-box .inner .form {
  margin-top: 30px;
  text-align: center;
}

@media (max-width: 1000px) {
  .fixed-box .inner .form {
    margin-top: 3vw;
  }
}

.fixed-box .inner .form input, .fixed-box .inner .form select {
  width: 860px;
  height: 122px;
  padding: 0 40px;
  border: 10px solid #72b700;
  border-radius: 20px;
  -webkit-box-shadow: none;
          box-shadow: none;
  font-size: 60px;
  font-weight: bold;
  text-align: center;
}

@media (max-width: 1000px) {
  .fixed-box .inner .form input, .fixed-box .inner .form select {
    width: 86vw;
    height: 12.2vw;
    padding: 0 4vw;
    border-width: 1vw;
    border-radius: 2vw;
    font-size: 6vw;
  }
}

.fixed-box .inner .form .btn {
  margin-top: 30px;
}

@media (max-width: 1000px) {
  .fixed-box .inner .form .btn {
    margin-top: 3vw;
  }
}

.fixed-box .inner .close-btn {
  width: 160px;
  height: 160px;
  position: absolute;
  right: 20px;
  top: -60px;
  z-index: 10;
  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: 1000px) {
  .fixed-box .inner .close-btn {
    width: 16vw;
    height: 16vw;
    right: 2vw;
    top: -6vw;
  }
}

.fixed-box .inner .close-btn:hover {
  -webkit-transform: scale(1.05) rotate(0.02deg);
          transform: scale(1.05) rotate(0.02deg);
}

.fixed-box .inner .btn {
  width: 100%;
  height: 190px;
  background: center no-repeat;
  background-size: contain;
  font-size: 0;
}

@media (max-width: 1000px) {
  .fixed-box .inner .btn {
    height: 19vw;
  }
}

.fixed-box .inner .btn.btn-ok {
  margin-left: 0;
  left: 0;
  background-image: url("../_img/box-ok.png");
}

.fixed-box .inner .btn.btn-ok:hover {
  background-image: url("../_img/box-ok-hover.png");
}

.fixed-box .inner .btn.btn-send {
  background-image: url("../_img/box-send.png");
}

.fixed-box .inner .btn.btn-send:hover {
  background-image: url("../_img/box-send-hover.png");
}

.fixed-box .inner .btn.btn-play {
  background-image: url("../_img/box-play.png");
}

.fixed-box .inner .btn.btn-play:hover {
  background-image: url("../_img/box-play-hover.png");
}

.fixed-box .inner .btn.btn-change {
  background-image: url("../_img/box-change.png");
}

.fixed-box .inner .btn.btn-change:hover {
  background-image: url("../_img/box-change-hover.png");
}

.fixed-box .inner .btns {
  margin-top: 40px;
}

@media (max-width: 1000px) {
  .fixed-box .inner .btns {
    margin-top: 4vw;
  }
}

.fixed-box .inner .btns .btn {
  display: inline-block;
  vertical-align: middle;
  width: 50%;
}

.error-tip .inner {
  background-image: url("../_img/box-error.png");
}

.error-tip .inner .text {
  padding-right: 45%;
}

.topup-yet .inner {
  background-image: url("../_img/box-yet.png");
}

.topup-yet .inner .text {
  padding-right: 45%;
}

.reached .inner {
  background-image: url("../_img/box-reached.png");
}

.reached .inner .title {
  padding-right: 5%;
}

.reached .inner .text {
  padding-right: 45%;
}

.box-times .inner p {
  margin: 20px 0;
}

@media (max-width: 1000px) {
  .box-times .inner p {
    margin: 2vw 0;
  }
}

.terms .inner {
  height: 1532px;
  padding-top: 100px;
  background-image: url("../_img/box-terms.png");
  text-align: left;
}

@media (max-width: 1000px) {
  .terms .inner {
    height: 153.2vw;
    padding-top: 10vw;
  }
}

.terms .inner .btn-ok {
  margin-left: -447.5px;
  position: absolute;
  left: 50%;
  bottom: 50px;
  z-index: 2;
}

@media (max-width: 1000px) {
  .terms .inner .btn-ok {
    margin-left: -44.75vw;
    bottom: 5vw;
  }
}

.congratulations .inner .subtitle {
  margin-bottom: 40px;
}

@media (max-width: 1000px) {
  .congratulations .inner .subtitle {
    margin-bottom: 4vw;
  }
}

.congratulations .inner .i-gift {
  max-width: 37.5%;
  margin: auto;
}

.expire_win .inner .title {
  margin-bottom: 10px;
}

@media (max-width: 1000px) {
  .expire_win .inner .title {
    margin-bottom: 1vw;
  }
}

.expire_win .inner img {
  max-height: 400px;
}

@media (max-width: 1000px) {
  .expire_win .inner img {
    max-height: 40vw;
  }
}

/* ==========================================================================
* header
 ==========================================================================*/
#header {
  width: 100%;
  height: 108px;
  min-width: 320px;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 99;
  background-color: #72b700;
}

@media (max-width: 1000px) {
  #header {
    height: 10.8vw;
  }
}

#header .container {
  padding: 0 20px;
  position: relative;
}

@media (max-width: 1000px) {
  #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: 1000px) {
  #header .logo {
    width: 33.2vw;
    height: 7.9vw;
    margin-top: 1.4vw;
  }
}

#header .follow {
  float: right;
  margin-top: 6px;
  text-align: center;
}

@media (max-width: 991px) {
  #header .follow {
    margin-top: 0.6vw;
  }
}

#header .follow a {
  display: inline-block;
  vertical-align: middle;
  width: 98px;
  height: 98px;
  margin: 0 -2px;
  background: 0 0 no-repeat;
  background-size: contain;
}

@media (max-width: 1000px) {
  #header .follow a {
    width: 9.8vw;
    height: 9.8vw;
    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 .form {
  margin-top: 225px;
  text-align: center;
}

@media (max-width: 1000px) {
  .main .form {
    margin-top: 22.5vw;
  }
}

.main .form .inputPhone {
  width: 926px;
  height: 109px;
  margin: auto;
  padding: 7px 7px 7px 280px;
  position: relative;
  background: url("../_img/inputPhone.png") center no-repeat;
  background-size: contain;
}

@media (max-width: 1000px) {
  .main .form .inputPhone {
    width: 92.6vw;
    height: 10.9vw;
    padding: 0.7vw 0.7vw 0.7vw 28vw;
  }
}

.main .form .inputPhone input {
  display: block;
  width: 100%;
  height: 95px;
  padding: 0 30px;
  background-color: #fff;
  border-radius: 10px;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #004d22;
  font-size: 43px;
}

@media (max-width: 1000px) {
  .main .form .inputPhone input {
    height: 9.5vw;
    padding: 0 3vw;
    border-radius: 1vw;
    font-size: 4.3vw;
  }
}

.main .form .show-terms {
  display: block;
  width: 270px;
  height: 60px;
  margin: 15px 0 5px 480px;
  background-color: #72b700;
  opacity: 0;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}

@media (max-width: 1000px) {
  .main .form .show-terms {
    width: 27vw;
    height: 6vw;
    margin: 1.5vw 0 0.5vw 48vw;
  }
}

.main .form .show-terms:hover {
  opacity: 0.2;
}

.main .form .btn-send {
  width: 100%;
  height: 210px;
  background: url("../_img/btn-send.png") center no-repeat;
  background-size: contain;
}

@media (max-width: 1000px) {
  .main .form .btn-send {
    height: 21vw;
  }
}

.main .form .btn-send:hover {
  background-image: url("../_img/btn-send-hover.png");
}

.btns {
  text-align: center;
  font-size: 0;
}

.btns a {
  display: inline-block;
  vertical-align: middle;
  width: 465px;
  height: 215px;
  margin: 0 10px;
  background: center no-repeat;
  background-size: contain;
}

@media (max-width: 1000px) {
  .btns a {
    width: 46.5vw;
    height: 21.5vw;
    margin: 0 1vw;
  }
}

.btns a.btn-play {
  background-image: url("../_img/btn-play.png");
}

.btns a.btn-play:hover {
  background-image: url("../_img/btn-play-hover.png");
}

.btns a.btn-download {
  background-image: url("../_img/btn-download.png");
}

.btns a.btn-download:hover {
  background-image: url("../_img/btn-download-hover.png");
}

.content {
  padding-top: 10px;
  padding-bottom: 50px;
}

@media (max-width: 1000px) {
  .content {
    padding-top: 1vw;
    padding-bottom: 5vw;
  }
}

.content .block {
  margin-top: 20px;
}

@media (max-width: 1000px) {
  .content .block {
    margin-top: 2vw;
  }
}

.roulette {
  width: 911px;
  margin: auto;
  position: relative;
}

@media (max-width: 1000px) {
  .roulette {
    width: 91.1vw;
  }
}

.roulette .btn-spin {
  width: 326px;
  height: 396px;
  margin-left: -163px;
  position: absolute;
  left: 50%;
  top: 217px;
  z-index: 5;
  background: url("../_img/btn-spin.png") center no-repeat;
  background-size: contain;
  font-size: 0;
}

@media (max-width: 1000px) {
  .roulette .btn-spin {
    width: 32.6vw;
    height: 39.6vw;
    margin-left: -16.3vw;
    top: 21.7vw;
  }
}

.roulette .btn-spin:hover {
  background-image: url("../_img/btn-spin-hover.png");
}

.roulette .btn-spin[disabled="disabled"] {
  background-image: url("../_img/btn-spin2.png");
}

.roulette .wheel {
  width: 100%;
  height: 911px;
  margin: auto;
  position: relative;
  z-index: 4;
  background: url("../_img/wheel.png") 0 0 no-repeat;
  background-size: 100%;
  -webkit-animation: wheel 0.3s steps(2) infinite alternate;
          animation: wheel 0.3s steps(2) infinite alternate;
}

@media (max-width: 1000px) {
  .roulette .wheel {
    height: 91.1vw;
    -webkit-animation-name: wheel2;
            animation-name: wheel2;
  }
}

.roulette .award {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: -8px;
  z-index: 2;
  background: url("../_img/wheel-award.png") center no-repeat;
  background-size: 100%;
}

@media (max-width: 1000px) {
  .roulette .award {
    top: -0.8vw;
  }
}

.preload {
  display: none;
}

@-webkit-keyframes wheel {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 0 -1822px;
  }
}

@keyframes wheel {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 0 -1822px;
  }
}

@-webkit-keyframes wheel2 {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 0 -182.2vw;
  }
}

@keyframes wheel2 {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 0 -182.2vw;
  }
}

/* ==========================================================================
* footer
 ==========================================================================*/
#footer {
  padding: 20px 0;
  background-color: #72b700;
  text-align: center;
}

@media (max-width: 1000px) {
  #footer {
    padding: 2vw 0;
  }
}

#footer .wanin, #footer .yoecard, #footer .level {
  display: inline-block;
  vertical-align: text-bottom;
}

#footer .wanin {
  width: 358px;
  height: 120px;
  background: url("../_img/wanin.png") center no-repeat;
  background-size: contain;
}

@media (max-width: 1000px) {
  #footer .wanin {
    width: 35.8vw;
    height: 12vw;
  }
}

#footer .yoecard {
  width: 212px;
  height: 107px;
  margin: 0 20px;
  background: url("../_img/yoecard.png") center no-repeat;
  background-size: contain;
}

@media (max-width: 1000px) {
  #footer .yoecard {
    width: 21.2vw;
    height: 10.7vw;
    margin: 0 2vw;
  }
}

#footer .level {
  width: 72px;
  margin-left: 10px;
}

@media (max-width: 1000px) {
  #footer .level {
    width: 6.7vw;
    margin-left: 1vw;
  }
}

#footer .level img {
  width: 100%;
}

/* header-text 獲獎跑馬燈 */
.header-text {
  width: 100%;
  /*padding: 15px;*/
  position: fixed;
  left: 0;
  top: -100%;
  z-index: 150;
  background-color: rgba(0, 0, 0, 0.8);
  color: #fff;
  font-size: 48px;
  text-align: center;
  font-weight: bold;
  line-height: 1.5em;
  -webkit-transition: top 1s;
  transition: top 1s;
}

@media (max-width: 1000px) {
  .header-text {
    font-size: 4.5vw;
  }
}

@media (max-width: 991px) {
  .header-text {
    z-index: 50;
  }
}

.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-words-wrapper {
  width: 100% !important;
  text-align: center !important;
}

.header-text.active {
  top: 108px;
}

@media (max-width: 991px) {
  .header-text.active {
    top: 10.6vw;
  }
}

.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 */