@-webkit-keyframes floater {
  0% {
    -webkit-transform: translate(0, 2px);
    transform: translate(0, 2px);
  }
  65% {
    -webkit-transform: translate(0, 8px);
    transform: translate(0, 8px);
  }
  100% {
    -webkit-transform: translate(0, 2px);
    transform: translate(0, 2px);
  }
}

@keyframes floater {
  0% {
    -webkit-transform: translate(0, 2px);
    transform: translate(0, 2px);
  }
  65% {
    -webkit-transform: translate(0, 8px);
    transform: translate(0, 8px);
  }
  100% {
    -webkit-transform: translate(0, 2px);
    transform: translate(0, 2px);
  }
}

@-webkit-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  60% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  60% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}

@-webkit-keyframes lightening {
  0% {
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
    opacity: 0;
  }
  20% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  60% {
    opacity: 1;
  }
  80% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    -webkit-transform: translateY(-40px);
    transform: translateY(-40px);
    opacity: 0;
  }
}

@keyframes lightening {
  0% {
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
    opacity: 0;
  }
  20% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  60% {
    opacity: 1;
  }
  80% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    -webkit-transform: translateY(-40px);
    transform: translateY(-40px);
    opacity: 0;
  }
}

@-webkit-keyframes speak {
  0% {
    opacity: 0;
  }
  10%, 20%, 30%, 40%, 50% {
    opacity: 1;
  }
  60%, 70%, 80%, 90%, 100% {
    opacity: 0;
  }
}

@keyframes speak {
  0% {
    opacity: 0;
  }
  10%, 20%, 30%, 40%, 50% {
    opacity: 1;
  }
  60%, 70%, 80%, 90%, 100% {
    opacity: 0;
  }
}

@-webkit-keyframes speak2 {
  0%, 10%, 20% {
    opacity: 0;
  }
  30%, 40%, 50%, 60%, 70% {
    opacity: 1;
  }
  80%, 90%, 100% {
    opacity: 0;
  }
}

@keyframes speak2 {
  0%, 10%, 20% {
    opacity: 0;
  }
  30%, 40%, 50%, 60%, 70% {
    opacity: 1;
  }
  80%, 90%, 100% {
    opacity: 0;
  }
}

body {
  max-width: 100%;
  width: 100%;
  -ms-overflow-x: hidden;
  overflow-x: hidden;
}

html {
  -ms-overflow-x: hidden;
  overflow-x: hidden;
}

.small-button {
  -webkit-border-radius: 900px;
  border-radius: 900px;
  background-color: #fcdc00;
  color: #12151a;
  font-weight: 400;
  display: inline-block;
  position: relative;
  top: 0;
  right: 0;
  -webkit-transition: background-color 0.2s;
  -moz-transition: background-color 0.2s;
  -ms-transition: background-color 0.2s;
  -o-transition: background-color 0.2s;
  transition: background-color 0.2s;
  line-height: 1;
  display: block;
  text-align: center;
  margin: 0 auto;
  max-width: 112px;
  font-size: 14px;
  font-weight: 400;
  padding: 8px;
}

.small-button:hover {
  background-color: #2264b0;
  color: #fff;
}

.small-button:hover {
  background-color: #fe6b00;
}

.small-button:hover:after {
  right: -4px;
  bottom: -14px;
}

.small-button:active {
  background-color: rgba(255, 255, 255, 0.1);
  top: 2px;
  left: 2px;
}

.loading-mask {
  background-color: #f57d00;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999;
}

.loading-mask .img-wrapper {
  width: 250px;
  height: 62.8px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto auto;
}

@media screen and (max-width: 600px) {
  .loading-mask .img-wrapper {
    width: 200px;
  }
}

@media screen and (max-width: 375px) {
  .loading-mask .img-wrapper {
    width: 160px;
  }
}

.main-button {
  -webkit-border-radius: 900px;
  border-radius: 900px;
  background-color: #fcdc00;
  color: #12151a;
  font-weight: 400;
  display: inline-block;
  position: relative;
  top: 0;
  right: 0;
  -webkit-transition: background-color 0.2s;
  -moz-transition: background-color 0.2s;
  -ms-transition: background-color 0.2s;
  -o-transition: background-color 0.2s;
  transition: background-color 0.2s;
  line-height: 1;
  font-size: 20px;
  font-weight: 400;
  padding: 16px 40px;
}

.main-button:hover {
  background-color: #2264b0;
  color: #fff;
}

.main-button:hover:after {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

#top {
  width: 48px;
  height: 48px;
  padding: 5px;
  text-align: center;
  -webkit-border-radius: 40px;
  border-radius: 40px;
  position: fixed;
  right: 10px;
  bottom: 20px;
  background-color: #ffa000;
  cursor: pointer;
  z-index: 9999;
  display: none;
}

.film-wrapper {
  position: relative;
  display: inline-block;
  max-width: 300px;
  background-color: #e9d9c1;
  padding: 15px;
  padding-bottom: 10px;
}

.film-wrapper .tag {
  position: absolute;
  left: 0;
  top: 0;
  background-color: #1d1d1d;
  color: #FFF;
  padding: 8px 15px 8px 10px;
  font-size: 16px;
  font-weight: 500;
  z-index: 3;
  -webkit-border-radius: 0 0 20px 0;
  border-radius: 0 0 20px 0;
}

.film-wrapper .name {
  font-size: 15px;
  font-weight: 500;
  text-align: center;
  margin-top: 12px;
  margin-bottom: 5px;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  color: #1D1D1D;
}

.film-wrapper .poster {
  margin-top: 5px;
  -webkit-background-size: 100% auto;
  -o-background-size: 100% auto;
  background-size: 100% auto;
  background-position: center center;
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -ms-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
  position: relative;
  padding-bottom: 142%;
}

.film-wrapper .poster:after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #000;
  position: absolute;
  top: 0;
  left: 0;
  opacity: .1;
  -webkit-transition: all .3s ease-out;
  -moz-transition: all .3s ease-out;
  -ms-transition: all .3s ease-out;
  -o-transition: all .3s ease-out;
  transition: all .3s ease-out;
}

.film-wrapper .poster img {
  visibility: hidden;
}

.film-wrapper:hover .poster {
  -webkit-background-size: 110% auto;
  -o-background-size: 110% auto;
  background-size: 110% auto;
}

.film-wrapper:hover .poster:after {
  opacity: 0;
}

.word-highlight {
  color: #F9D18B;
}

.arrow-float {
  position: absolute;
  width: 34px;
  height: 55px;
  margin: 0 auto;
  bottom: 30px;
  left: 0;
  right: 0;
}

@media screen and (max-width: 375px) {
  .arrow-float {
    width: 26px;
    height: 43px;
  }
}

.arrow-float .mouse {
  width: 100%;
  height: 100%;
  border: 4px solid #fff;
  -webkit-border-radius: 90px;
  border-radius: 90px;
  position: relative;
}

@media screen and (max-width: 375px) {
  .arrow-float .mouse {
    border: 3px solid #fff;
  }
}

.arrow-float .mouse .scroll {
  position: absolute;
  width: 4px;
  height: 10px;
  background-color: #F9D18B;
  margin: 0 auto;
  left: 0;
  right: 0;
  top: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  -webkit-animation-name: floater;
  animation-name: floater;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

section.main {
  padding-bottom: 0;
  padding-top: 71px;
}

@media screen and (max-width: 768px) {
  section.main {
    padding-top: 67px;
  }
}

@media screen and (max-width: 440px) {
  section.main {
    padding-top: 59px;
  }
}

section.main .lg {
  margin: 0 auto;
  position: relative;
}

section.main .lg .main-title {
  position: absolute;
  width: 46%;
  margin: 0 auto;
  left: 0;
  right: 0;
  top: 7%;
  opacity: 0;
}

section.main .lg .main-subtitle {
  position: absolute;
  width: 42%;
  margin: 0 auto;
  left: 0;
  right: 0;
  top: 32.7%;
  opacity: 0;
}

section.main .lg .main-prize {
  position: absolute;
  width: 33%;
  margin: 0 auto;
  left: 0;
  right: 0;
  top: 48%;
  opacity: 0;
}

@media screen and (max-width: 768px) {
  section.main .lg {
    width: 120%;
    margin-left: -10%;
  }
}

@media screen and (max-width: 600px) {
  section.main .lg {
    width: 140%;
    margin-left: -20%;
  }
}

@media screen and (max-width: 440px) {
  section.main .lg {
    width: 180%;
    margin-left: -40%;
  }
}

section.sign-in {
  background: url("../img/sign_bg_dt.png") center center no-repeat;
  background-size: cover;
  position: relative;
  padding-top: 53px;
  padding-bottom: 53px;
}

section.sign-in .inner {
  height: auto !important;
}

@media screen and (max-width: 440px) {
  section.sign-in .inner {
    height: auto !important;
  }
}

section.sign-in .title {
  width: 90%;
  max-width: 699px;
  margin: 0 auto;
  margin-bottom: 20px;
}

section.sign-in .w1 {
  font-size: 25px;
  color: #FFF;
  text-align: center;
  max-width: 80%;
  margin: 0 auto;
  margin-bottom: 20px;
  line-height: 1.5;
}

@media screen and (max-width: 768px) {
  section.sign-in .w1 {
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 440px) {
  section.sign-in .w1 {
    font-size: 5vw;
  }
}

section.sign-in .btn-wrap {
  text-align: center;
}

section.sign-in .dark-btn {
  display: inline-block;
  position: relative;
  width: auto;
  min-width: 180px;
  background-color: #272727;
  color: #FFF;
  height: 60px;
  line-height: 54px;
  text-align: center;
  -webkit-border-radius: 30px;
  border-radius: 30px;
  border: 3px solid #ffdd00;
  font-size: 20px;
  font-weight: 700px;
  padding: 0 32px;
  margin: 0 10px;
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -ms-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

section.sign-in .dark-btn:hover {
  background-color: #1a1a1a;
}

section.sign-in .dark-btn.icon:after {
  content: "";
  position: absolute;
  left: -8px;
  top: -15px;
  width: 34px;
  height: 35px;
  background: url("../img/ic_coin1.png") center center no-repeat;
}

section.sign-in .dark-btn.icon:before {
  content: "";
  position: absolute;
  left: 16px;
  top: 17px;
  width: 23px;
  height: 23px;
  background: url("../img/ic_coin2.png") center center no-repeat;
}

section.sign-in .dark-btn.icon:hover:after {
  -webkit-transform: rotate(40deg);
  -ms-transform: rotate(40deg);
  transform: rotate(40deg);
}

section.sign-in .dark-btn.icon:hover:before {
  -webkit-transform: rotate(-40deg);
  -ms-transform: rotate(-40deg);
  transform: rotate(-40deg);
}

@media screen and (max-width: 768px) {
  section.sign-in .dark-btn {
    width: 70%;
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 440px) {
  section.sign-in .dark-btn {
    width: 86%;
  }
}

section.sign-in .tip {
  font-size: 13px;
  text-align: center;
  color: #FFF;
  display: block;
  margin: 0 auto;
  margin-top: 46px;
  font-weight: 300;
  max-width: 80%;
  line-height: 1.5;
}

section.film-list .content-wrapper {
  width: 100%;
  margin: 0 auto;
  margin-top: 0;
  padding-bottom: 6%;
}

@media screen and (max-width: 1024px) {
  section.film-list .content-wrapper {
    width: 80%;
  }
}

section.film-list .films-wrapper .owl-dots {
  margin-top: 15px;
}

section.film-list .films-wrapper .owl-dots span {
  background-color: #ae4a48;
}

section.film-list .films-wrapper .owl-dots .owl-dot.active span {
  position: relative;
  top: 8px;
  width: 33px;
  height: 28px;
  -webkit-border-radius: 0;
  border-radius: 0;
  background: url("../img/banner_activeIcon.png");
  -webkit-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

section.film-list .films-wrapper .owl-nav {
  position: absolute;
  top: 36%;
  width: 100%;
}

section.film-list .films-wrapper .owl-nav:hover {
  background: none;
}

section.film-list .films-wrapper .owl-nav [class*='owl-'] {
  -webkit-border-radius: 0;
  border-radius: 0;
}

section.film-list .films-wrapper .owl-nav .owl-prev {
  position: absolute;
  left: -50px;
  width: 60px;
  height: 76px;
  background-image: url(../images/slider_arrow_left.png);
  -webkit-background-size: 60px auto;
  -o-background-size: 60px auto;
  background-size: 60px auto;
  background-repeat: no-repeat;
  background-position: center center;
}

@media screen and (max-width: 768px) {
  section.film-list .films-wrapper .owl-nav .owl-prev {
    width: 30px;
    height: 50px;
    left: -24px;
    -webkit-background-size: 30px auto;
    -o-background-size: 30px auto;
    background-size: 30px auto;
  }
}

section.film-list .films-wrapper .owl-nav .owl-prev:hover {
  background: none;
  background-image: url(../images/slider_arrow_left.png);
  background-repeat: no-repeat;
  -webkit-background-size: 60px auto;
  -o-background-size: 60px auto;
  background-size: 60px auto;
  background-repeat: no-repeat;
  background-position: center center;
}

@media screen and (max-width: 768px) {
  section.film-list .films-wrapper .owl-nav .owl-prev:hover {
    -webkit-background-size: 30px auto;
    -o-background-size: 30px auto;
    background-size: 30px auto;
  }
}

section.film-list .films-wrapper .owl-nav .owl-next {
  position: absolute;
  right: -54px;
  width: 60px;
  height: 76px;
  background-image: url(../images/slider_arrow_right.png);
  -webkit-background-size: 60px auto;
  -o-background-size: 60px auto;
  background-size: 60px auto;
  background-repeat: no-repeat;
  background-position: center center;
}

@media screen and (max-width: 768px) {
  section.film-list .films-wrapper .owl-nav .owl-next {
    width: 30px;
    height: 50px;
    right: -29px;
    -webkit-background-size: 30px auto;
    -o-background-size: 30px auto;
    background-size: 30px auto;
  }
}

@media screen and (max-width: 459px) {
  section.film-list .films-wrapper .owl-nav .owl-next {
    right: -23px;
  }
}

section.film-list .films-wrapper .owl-nav .owl-next:hover {
  background: none;
  background-image: url(../images/slider_arrow_right.png);
  background-repeat: no-repeat;
  -webkit-background-size: 60px auto;
  -o-background-size: 60px auto;
  background-size: 60px auto;
  background-repeat: no-repeat;
  background-position: center center;
}

@media screen and (max-width: 768px) {
  section.film-list .films-wrapper .owl-nav .owl-next:hover {
    -webkit-background-size: 30px auto;
    -o-background-size: 30px auto;
    background-size: 30px auto;
  }
}

section.film-list .films-wrapper .film-slider {
  display: none;
}

section.film-list .films-wrapper .note {
  background-color: transparent;
  text-align: right;
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin: 0;
  margin-top: 16px;
  color: #efefef;
  font-size: 13px;
}

section.film-list .item {
  position: relative;
  display: inline-block;
  max-width: 300px;
  background-color: #e9d9c1;
  padding: 15px;
  padding-bottom: 10px;
  max-width: initial;
  margin: 0 7px;
  width: 96%;
}

section.film-list .item a {
  text-decoration: none;
}

section.film-list .item .tag {
  position: absolute;
  left: 0;
  top: 0;
  background-color: #1d1d1d;
  color: #FFF;
  padding: 8px 15px 8px 10px;
  font-size: 16px;
  font-weight: 500;
  z-index: 3;
  -webkit-border-radius: 0 0 20px 0;
  border-radius: 0 0 20px 0;
}

section.film-list .item .name {
  font-size: 15px;
  font-weight: 500;
  text-align: center;
  margin-top: 12px;
  margin-bottom: 5px;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  color: #1D1D1D;
}

section.film-list .item .poster {
  margin-top: 5px;
  -webkit-background-size: 100% auto;
  -o-background-size: 100% auto;
  background-size: 100% auto;
  background-position: center center;
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -ms-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
  position: relative;
  padding-bottom: 142%;
}

section.film-list .item .poster:after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #000;
  position: absolute;
  top: 0;
  left: 0;
  opacity: .1;
  -webkit-transition: all .3s ease-out;
  -moz-transition: all .3s ease-out;
  -ms-transition: all .3s ease-out;
  -o-transition: all .3s ease-out;
  transition: all .3s ease-out;
}

section.film-list .item .poster img {
  visibility: hidden;
}

section.film-list .item:hover .poster {
  -webkit-background-size: 110% auto;
  -o-background-size: 110% auto;
  background-size: 110% auto;
}

section.film-list .item:hover .poster:after {
  opacity: 0;
}

section.film-list .tabs {
  position: relative;
  margin: 0 auto;
  margin-top: 24px;
  text-align: center;
  margin-bottom: 24px;
}

@media screen and (max-width: 768px) {
  section.film-list .tabs {
    text-align: left;
  }
}

@media screen and (max-width: 460px) {
  section.film-list .tabs {
    text-align: center;
  }
}

section.film-list .tabs li {
  display: inline-block;
  cursor: pointer;
  background-color: #8f0300;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 20px;
  height: 40px;
  line-height: 40px;
  margin: 0 28px;
  vertical-align: middle;
  position: relative;
  margin-bottom: 5px;
}

@media screen and (max-width: 768px) {
  section.film-list .tabs li {
    font-size: 16px;
  }
}

@media screen and (max-width: 600px) {
  section.film-list .tabs li {
    font-size: 20px;
  }
}

section.film-list .tabs li:after {
  position: absolute;
  content: "";
  width: 38px;
  height: 40px;
  background-image: url(../images/tab_right.png);
  top: 0;
  right: -37px;
}

section.film-list .tabs li:before {
  position: absolute;
  content: "";
  width: 38px;
  height: 40px;
  background-image: url(../images/tab_left.png);
  top: 0;
  left: -37px;
}

section.film-list .tabs li.on {
  color: #fff;
  background-color: #690203;
}

section.film-list .tabs li.on:after {
  background-image: url(../images/tab_on_right.png);
}

section.film-list .tabs li.on:before {
  background-image: url(../images/tab_on_left.png);
}

section.count-down.phase2 {
  display: none;
}

a.anchor {
  display: block;
  position: relative;
  top: -80px;
  visibility: hidden;
}

body .wrap .sup .inner {
  height: auto;
}
