@charset "utf-8";
*, *:before, *:after {
  box-sizing: border-box;
}

a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  color: #eeb9b9;
}

img {
  width: 100%;
  max-width: 100%;
}

.wrap {
  width: 100%;
  max-width: 1550px;
  margin: 0 auto;
}
@media (max-width: 1440px) {
  .wrap {
    max-width: 1160px;
  }
}

.yellow {
  color: #ffe502;
}

.mobile {
  display: none;
}
@media (max-width: 768px) {
  .mobile {
    display: block;
  }
}

.get {
  display: inline-block;
  font-size: 38px;
  font-weight: 700;
  font-style: italic;
  border-radius: 12px;
  padding: 24px 48px;
  margin: 0 auto 8px;
  color: #fff;
  background: #2cd000;
  font-family: "Barlow Semi Condensed";
}
@media (max-width: 1440px) {
  .get {
    font-size: 30px;
    border-radius: 8px;
    padding: 20px 35px;
  }
}

.message {
  font-size: 14px;
  text-decoration: underline;
  color: #2596ff;
  font-family: "Open Sans", sans-serif;
  margin-bottom: 30px;
}

.punchline {
  background-image: url(../image/bg-desktop.jpg);
  background-position: center center;
  background-size: cover;
  padding: 0 0 75px;
}
@media (max-width: 1440px) {
  .punchline {
    padding: 0 0 20px;
  }
}
@media (max-width: 768px) {
  .punchline {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    height: 100vh;
    padding-bottom: 178px;
    background-image: url(../image/bg-mobile.jpg);
  }
}
.punchline .welcome-wrap {
  width: 100%;
}
.punchline .welcome {
  max-width: 640px;
  margin: 0 16px;
  text-align: center;
  color: #fff;
}
@media (max-width: 1440px) {
  .punchline .welcome {
    max-width: 380px;
    margin: 25px 16px 0;
  }
}
@media (max-width: 768px) {
  .punchline .welcome {
    margin: 0 auto;
  }
}
.punchline .welcome .promo {
  font-size: 66px;
  font-family: "Barlow Semi Condensed", sans-serif;
  margin-bottom: 30px;
}
@media (max-width: 1440px) {
  .punchline .welcome .promo {
    margin-bottom: 17px;
  }
}
@media (max-width: 768px) {
  .punchline .welcome .promo {
    font-size: 35px;
    margin-bottom: 15px;
  }
}
.punchline .welcome .promo .line1 {
  font-size: 58px;
  font-weight: 700;
}
@media (max-width: 1440px) {
  .punchline .welcome .promo .line1 {
    font-size: 36px;
    line-height: 1.2;
  }
}
@media (max-width: 768px) {
  .punchline .welcome .promo .line1 {
    font-size: 30px;
    line-height: 1.1;
  }
}
.punchline .welcome .promo .line2 {
  font-size: 30px;
  font-weight: 500;
}
@media (max-width: 1440px) {
  .punchline .welcome .promo .line2 {
    font-size: 26px;
  }
}
@media (max-width: 768px) {
  .punchline .welcome .promo .line2 {
    font-size: 22px;
    line-height: 1.3;
  }
}
.punchline .welcome .cta {
  text-align: center;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 768px) {
  .punchline .welcome .cta .get {
    display: block;
    width: 100%;
    text-align: center;
    margin: 0;
    position: fixed;
    bottom: 0;
    left: 0;
    border-radius: 0;
    font-size: 24px;
  }
}
.punchline .welcome .cta .arrow {
  display: none;
}
@media (max-width: 768px) {
  .punchline .welcome .cta .arrow {
    display: block;
  }
  .punchline .welcome .cta .arrow img {
    width: auto;
  }
}

header.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 104px;
  padding: 0 10px;
  margin-bottom: 65px;
}
@media (max-width: 1440px) {
  header.header {
    height: 74px;
  }
}
@media (max-width: 768px) {
  header.header {
    height: 63px;
    padding: 0 10px;
  }
}
header.header .logo {
  width: 215px;
}
@media (max-width: 768px) {
  header.header .logo {
    width: 50%;
    max-width: 130px;
  }
}
header.header nav ul {
  display: flex;
  align-items: center;
}
header.header nav ul li {
  margin-left: 20px;
  font-size: 18px;
  font-weight: 400;
  border-radius: 12px;
  padding: 18px 30px;
  border: 3px solid #2cd000;
}
@media (max-width: 1440px) {
  header.header nav ul li {
    margin-left: 8px;
    font-size: 14px;
    border-radius: 8px;
    padding: 10px 11px;
    border: 2px solid #2cd000;
  }
}
header.header nav ul li.login {
  color: #2cd000;
}
header.header nav ul li.register {
  color: #fff;
  background: #2cd000;
}

.steps-wrapper {
  background: #192b41;
}
.steps-wrapper .steps {
  display: flex;
  justify-content: space-between;
  padding: 31px 16px;
}
@media (max-width: 1440px) {
  .steps-wrapper .steps {
    padding: 19px 16px;
  }
}
@media (max-width: 768px) {
  .steps-wrapper .steps {
    flex-direction: column;
  }
}
.steps-wrapper .steps .step {
  display: flex;
  align-items: stretch;
  flex: 0 0 calc(33% - 7px);
  margin-bottom: 0;
  border-radius: 10px;
  color: #fff;
  overflow: hidden;
}
@media (max-width: 768px) {
  .steps-wrapper .steps .step {
    margin-bottom: 8px;
  }
}
.steps-wrapper .steps .step div {
  display: flex;
  align-items: center;
}
.steps-wrapper .steps .step .step-number {
  width: 116px;
  height: 102px;
  font-size: 38px;
  font-weight: 600;
  justify-content: center;
  background: #0592D6;
}
@media (max-width: 1440px) {
  .steps-wrapper .steps .step .step-number {
    width: 88px;
    height: 77px;
    font-size: 28px;
  }
}
.steps-wrapper .steps .step .step-info {
  justify-content: center;
  flex-direction: column;
  align-items: flex-start;
  padding-left: 29px;
  background: #0F9EE2;
  flex: 1;
}
@media screen and (max-width: 1000px) and (min-width: 768px) {
  .steps-wrapper .steps .step .step-info {
    padding-left: 20px;
  }
}
.steps-wrapper .steps .step .step-info .step-name {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 7px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
@media (max-width: 1440px) {
  .steps-wrapper .steps .step .step-info .step-name {
    font-size: 23px;
    margin-bottom: 3px;
  }
}
@media screen and (max-width: 1000px) and (min-width: 768px) {
  .steps-wrapper .steps .step .step-info .step-name {
    font-size: 16px;
  }
}
.steps-wrapper .steps .step .step-info .step-description {
  font-size: 19px;
  font-weight: 400;
}
@media (max-width: 1440px) {
  .steps-wrapper .steps .step .step-info .step-description {
    font-size: 14px;
  }
}

.terms-wrapper {
  text-align: center;
  color: #fff;
  background: #254064;
}
.terms-wrapper .terms {
  padding: 67px 16px 24px;
}
@media (max-width: 1440px) {
  .terms-wrapper .terms {
    padding: 30px 46px 25px;
  }
}
.terms-wrapper .terms .text {
  text-align: left;
  margin-bottom: 60px;
}
.terms-wrapper .terms .text h2 {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.4;
  font-style: italic;
  margin-bottom: 10px;
}
@media (max-width: 1440px) {
  .terms-wrapper .terms .text h2 {
    font-size: 18px;
  }
}
.terms-wrapper .terms .text h3 {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 4px;
}
.terms-wrapper .terms .text p {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 18px;
}
@media (max-width: 1440px) {
  .terms-wrapper .terms .text p {
    font-size: 14px;
  }
}
.terms-wrapper .terms .text ol {
  list-style: decimal;
  font-size: 14px;
  padding-left: 1.2em;
  margin-bottom: 8px;
}
.terms-wrapper .terms .text ol li {
  line-height: 18px;
}

footer {
  padding: 37px 20px 37px;
  color: #fff;
  background: #192b41;
}
@media (max-width: 768px) {
  footer {
    padding-bottom: 80px;
  }
}
footer a {
  text-decoration: underline;
  color: #2596ff;
}
footer a:hover {
  color: #eeb9b9;
}
footer .banners, footer .banners li {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
footer .banners {
  margin: 0 auto 32px;
}
@media (max-width: 768px) {
  footer .banners {
    flex-direction: column;
    margin-bottom: 12px;
  }
}
footer .banners li {
  width: 49%;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  footer .banners li {
    width: auto;
    margin-bottom: 15px;
  }
}
footer .banners li .banner-image {
  width: 14%;
  text-align: center;
}
@media (max-width: 1440px) {
  footer .banners li .banner-image {
    width: 20%;
  }
}
footer .banners li .banner-image img {
  width: auto;
}
footer .banners li .banner-text {
  width: 83%;
}
@media (max-width: 1440px) {
  footer .banners li .banner-text {
    width: 75%;
  }
}
footer .banners li .banner-text p {
  font-size: 14px;
  line-height: 1.2;
}
@media (max-width: 1440px) {
  footer .banners li .banner-text p {
    font-size: 12px;
  }
}
footer .copyrights {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  padding: 12px;
}/*# sourceMappingURL=style.css.map */
.link{padding:30px 0; text-align:center;}
.link a{margin:5px; color:#FFF;display: inline-block;}


.login-footer{position:fixed;bottom:0;left:0;right:0;width:100%;height:70px;padding:15px 0;background: rgba(0,0,0,.8); z-index:9999; display:none;}
@media (max-width: 960px) {
.login-footer{display:block;}
}
.login-footer .ls{width:46.5%;margin-left:2%;float:left;display:inline-block;height:40px; line-height:40px;border:1px #FACE22 solid; background:#FACE22; text-align:center; color:#FFF;border-radius:5px;text-decoration: none; font-size:20px;}
.login-footer .rs{width:46.5%;margin-right:2%;float:right;display:inline-block;height:40px; line-height:40px;border:1px #186AF2 solid; background:#186AF2;text-align:center; color:#FFF;border-radius:5px;text-decoration: none; font-size:20px;}

#hongbao0 {display: none;}
.wrappers {margin: auto;width: 300px;height: 150px;text-align: center;left: 50%;margin-left: -150px;z-index: 99999;position: fixed;bottom:50px;}
.wrappers h1 {margin-top: 15px;font-size: 12px;color: #f00;}
.wrappers .bonus {position: absolute;bottom: 5px;left: 50%;margin-left: -40px;width: 60px;height: 80px;text-align: center;overflow: hidden;border-radius: 10px;background-color: #f00;transition: all 0.75s ease;-webkit-animation-name: shaking;animation-name: shaking;}
.wrappers .bonus:after {position: absolute;top: 15px;left: 0;content: '';width: 80px;height: 20px;border-radius: 50%;box-shadow: 0 3px 0 2px #ff0;z-index: 3;}
.wrappers .bonus:before {position: absolute;top: 22px;left: 50%;margin-left: -15px;content: '$';width: 30px;height: 30px;line-height: 35px;font-size: 20px;font-weight: 700;color: #f00;background-color: #ff0;border-radius: 50%;z-index: 4;}
.surprises .fly {position: absolute;top: 45px;left: 0;color: #f37476;z-index: 0;opacity: 0;font-size: 10px;-webkit-animation-duration: 1.65s;animation-duration: 1.65s;-webkit-animation-timing-function: ease-in-out;animation-timing-function: ease-in-out;-webkit-animation-iteration-count: infinite;animation-iteration-count: infinite;-webkit-animation-direction: normal;animation-direction: normal;-webkit-animation-delay: 0;animation-delay: 0;-webkit-animation-play-state: running;animation-play-state: running;-webkit-animation-name: flying;animation-name: flying;}
.surprises .fly:nth-child(1) {-webkit-animation-delay: 1.5s;animation-delay: 1.5s;left: 150px;}
.surprises .fly:nth-child(2) {-webkit-animation-delay: 1.2s;animation-delay: 1.2s;left: 130px;}
.surprises .fly:nth-child(3) {-webkit-animation-delay: 0.9s;animation-delay: 0.9s;left: 165px;}
.surprises .fly:nth-child(4) {-webkit-animation-delay: 1.6s;animation-delay: 1.6s;left: 110px;}
.surprises .fly:nth-child(5) {-webkit-animation-delay: 0.3s;animation-delay: 0.3s;left: 175px;}
.surprises .fly:nth-child(6) {-webkit-animation-delay: 0.15s;animation-delay: 0.15s;left: 137px;}
.surprises .fly:nth-child(7) {-webkit-animation-delay: 1.15s;animation-delay: 1.15s;left: 185px;}
.surprises .fly:nth-child(8) {-webkit-animation-delay: 0.75s;animation-delay: 0.75s;left: 118px;}
.hearts {position: relative;}
.hearts:before,.hearts:after {position: absolute;content: '';width: 6px;height: 10px;background: #ff370f;border-radius: 3px 3px 0 0;transform: rotate(-45deg);transform-origin: 10% 50%;}
.hearts:after {left: 0;transform: rotate(45deg);transform-origin: 110% 68%;}
.jumping,.shaking {-webkit-animation-duration: 1.2s;animation-duration: 1.2s;animation-time-function: ease;-webkit-animation-delay: 0;animation-delay: 0;-webkit-animation-iteration-count: infinite;animation-iteration-count: infinite;-webkit-animation-direction: normal;animation-direction: normal;-webkit-animation-play-state: running;animation-play-state: running;}

.hob_div {width: 100vw;height: 100vh;position: fixed;top: 0;left: 0;z-index: 999;}
.hob-inlet {position: relative;width: 110px;height: 113px;top: 0;z-index: 1;cursor: pointer;}.hob-inlet-03 {position: absolute;width: 100%;height: 100%;top: 0;left: 0;z-index: 1;}
.hob-inlet-02 {position: absolute;width: 100%;height: 100%;top: 0;left: 0;z-index: 2;}
.hob-inlet-01 {position: absolute;width: 100%;height: 100%;top: 0;left: 0;z-index: 3;}
.hob-inlet:not(.disable) .hob-inlet-02 {animation: hob_shake 1s infinite;}
.hob-inlet:not(.disable):hover .hob-inlet-02 {animation: hob 1s 1;}
.for-get-now {z-index: 33;animation: hob_btn 2.5s infinite;}
.hongbao-wrapper {display: none;position: fixed;top: 0%;left: 0%;width: 100%;height: 100%;z-index: 200;}
.hongbao-wrapper i {display: block;position: absolute;width: 96px;height: 131px;top: -200px;background-repeat: no-repeat;background-size: 100%;-webkit-transition: 2s transform;-moz-transition: 2s transform;-ms-transition: 2s transform;-o-transition: 2s transform;transition: 2s transform;}
.hongbao-wrapper i.rotate {-webkit-transform: rotate(7200deg);-ms-transform: rotate(7200deg);-o-transform: rotate(7200deg);transform: rotate(7200deg);}
.hob-cd {position: absolute;color: #eee;font-size: 30px;top: 100px;left: 200px;}
.hob-close {position: absolute;width: 40px;height: 40px;top: 100px;right: 200px;cursor: pointer;z-index: 201;}
.hob-close::before,.hob-close::after {content: "";display: block;position: absolute;width: 30px;height: 2px;top: 19px;left: 5px;background-color: #eee;border-radius: 2px;-webkit-transform: rotate(-45deg);-ms-transform: rotate(-45deg);-o-transform: rotate(-45deg);transform: rotate(-45deg);}
.hob-close::after {-webkit-transform: rotate(45deg);-ms-transform: rotate(45deg);-o-transform: rotate(45deg);transform: rotate(45deg);}

.hb_modal {position: fixed;top: 0%;left: 0%;width: 100%;height: 100vh;z-index: 200;user-select: none;}
.hb_modal_main {display: flex;align-items: center;justify-content: center;flex-direction: column;position: fixed;top: 20%;left: 50%; margin-left: -156px;z-index: 99; }
.hb_content {display: block;width: 312px;height: 339px;background-repeat: no-repeat;background-size: contain;background-image: url(/static/hb/tc1_2x.png);font-size: 18px;font-family: ArialMT;color: #b5621f;}
.tips {margin: 55px auto 14px;width: 100%;text-align: center;}
.hb_banner {width: 240px;height: 208px;margin: 0 auto;background-repeat: no-repeat;background-size: 100%;background-image: url(/static/hb/tcjf_2x.png);font-size: 17px;color: #ff3743;display: flex;align-items: center;flex-direction: column;}
.hb_banner > span:nth-child(1) {font-size: 43px;font-family: Arial-Black, Arial;font-weight: 900;color: #fe1826;margin-top: 10%;line-height: 60px;}
.btn {width: 264px;height: 53px;background-repeat: no-repeat;background-size: contain;background-image: url(/static/hb/bott_get2x.png);font-size: 18px;color: #ffe5b3;text-align: center;line-height: 53px;}
.close_icon {display: block;position: relative;top: 50px;right: -138px;width: 64px;height: 64px;cursor: pointer;}
@-webkit-keyframes jumping {0% {bottom: 5px;transform: rotate(-10deg) scale(0.98);}10% {bottom: 30px;transform: rotate(0deg) scale(1);}50% {bottom: 5px;transform: rotate(10deg) scale(0.98);}60% {bottom: 30px;transform: rotate(0deg) scale(1);}100% {bottom: 5px;transform: rotate(-10deg) scale(0.98);}}
@keyframes jumping {0% {bottom: 5px;transform: rotate(-10deg) scale(0.98);}10% {bottom: 30px;transform: rotate(0deg) scale(1);}50% {bottom: 5px;transform: rotate(10deg) scale(0.98);}60% {bottom: 30px;transform: rotate(0deg) scale(1);}100% {bottom: 5px;transform: rotate(-10deg) scale(0.98);}}
@-webkit-keyframes shaking {0% {margin-left: -35px;}10% {margin-left: -45px;}20% {margin-left: -35px;}30% {margin-left: -45px;}40% {margin-left: -35px;}50% {margin-left: -40px;}65% {bottom: 20px;}100% {bottom: 5px;}}
@keyframes shaking {0% {margin-left: -35px;}10% {margin-left: -45px;}20% {margin-left: -35px;}30% {margin-left: -45px;}40% {margin-left: -35px;}50% {margin-left: -40px;}65% {bottom: 20px;}100% {bottom: 5px;}}
@-webkit-keyframes flying {0% {transform: rotate(20deg);opacity: 0;}50% {transform: rotate(-20deg);opacity: 1;}100% {top: -60px;transform: rotate(20deg);opacity: 0;}}
@keyframes flying {0% {transform: rotate(20deg);opacity: 0;}50% {transform: rotate(-20deg);opacity: 1;}100% {top: -60px;transform: rotate(20deg);opacity: 0;}}
@keyframes hob_shake {15%,45% {-webkit-transform: rotate(3deg);transform: rotate(3deg);transform-origin: 50% 100%;}30% {-webkit-transform: rotate(-3deg);transform: rotate(-3deg);transform-origin: 50% 100%;}60%,100% {-webkit-transform: rotate(0deg);transform: rotate(0deg);transform-origin: 50% 100%;}}
@keyframes hob {10%,30%,50% {-webkit-transform: translateY(-10px);transform: translateY(-10px);}20%,40% {-webkit-transform: translateY(-5px);transform: translateY(-5px);}60%,100% {-webkit-transform: translateY(0);transform: translateY(0);}}
@keyframes hob_btn {10%,30%,50%,70%,90% {-webkit-transform: scale(1.1);transform: scale(1.1);}20%,40%,60%,80% {-webkit-transform: scale(1);transform: scale(1);}}
@-webkit-keyframes shockwaveJump {0% {-webkit-transform: scale(0.4);transform: scale(0.4);}40% {-webkit-transform: scale(1.08);transform: scale(1.08);}50% {-webkit-transform: scale(0.98);transform: scale(0.98);}55% {-webkit-transform: scale(1.02);transform: scale(1.02);}60% {-webkit-transform: scale(0.98);transform: scale(0.98);}100% {-webkit-transform: scale(1);transform: scale(1);}}
@keyframes shockwaveJump {0% {-webkit-transform: scale(1);transform: scale(1);}40% {-webkit-transform: scale(1.08);transform: scale(1.08);}50% {-webkit-transform: scale(0.98);transform: scale(0.98);}55% {-webkit-transform: scale(1.02);transform: scale(1.02);}60% {-webkit-transform: scale(0.98);transform: scale(0.98);}100% {-webkit-transform: scale(1);transform: scale(1);}}
@-webkit-keyframes shockwave {0% {-webkit-transform: scale(1);transform: scale(1);box-shadow: 0 0 2px rgba(255, 255, 255, 0.15), inset 0 0 2px rgba(255, 255, 255, 0.15);}95% {box-shadow: 0 0 4px #ffffff, inset 0 0 4px #ffffff;}100% {-webkit-transform: scale(1.25);transform: scale(1.25);}}
@keyframes shockwave {0% {-webkit-transform: scale(1);transform: scale(1);box-shadow: 0 0 2px rgba(250,201,69, 0.65), inset 0 0 1px rgba(250,201,69, 0.95);}95% {box-shadow: 0 0 16px rgba(250,201,69, 0.15), inset 0 0 16px rgba(250,201,69, 0.15);}100% {-webkit-transform: scale(1.3);transform: scale(1.3);}}

.smbox{position:fixed;right:10px; width:60px; bottom:100px;z-index:999}
.smbox a img{width: 60px; height: 60px;}

.bonusb{position:fixed; bottom:260px; right: 20; text-align:center; z-index:0;width:auto;}
@keyframes moveUpDown {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}
.bonusb img{width:120px; height:120px;animation: moveUpDown 2s ease-in-out infinite;}
@media (min-width:760px) {.mp4{width:600px;margin:auto;}}