.popcorn {
  position: absolute;
  -webkit-animation: popcorn 1s steps(49) infinite;
  animation: popcorn 1s steps(49) infinite;
  height: 65.85%;
  margin-left: auto;
  margin-right: auto;
  width: 54.86%;
  background-image: url("../images/animation/popcorn_sprite.png");
  background-repeat: no-repeat;
  background-position: 0% 0%;
  background-size: 5000%;
  top: 41.0413%;
  left: -5%;
}

.popcorn-md {
  position: absolute;
  -webkit-animation: popcorn 1s steps(49) infinite;
  animation: popcorn 1s steps(49) infinite;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  height: 100%;
  background-image: url("../images/animation/popcorn_sprite_md.png");
  background-repeat: no-repeat;
  background-position: 0% 0%;
  background-size: 5000%;
  top: 0;
  left: 0;
}

.glasses {
  position: absolute;
  -webkit-animation: glasses 1s steps(9) infinite;
  animation: glasses 1s steps(9) infinite;
  height: 100%;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  background-image: url("../images/animation/glasses_sprite.png");
  background-repeat: no-repeat;
  background-position: 0% 0%;
  background-size: 1000%;
}

@-webkit-keyframes popcorn {
  100% {
    background-position: 100% 0;
  }
}

@keyframes popcorn {
  100% {
    background-position: 100% 0;
  }
}

@-webkit-keyframes glasses {
  100% {
    background-position: 100% 0;
  }
}

@keyframes glasses {
  100% {
    background-position: 100% 0;
  }
}

@-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;
  }
}

@-webkit-keyframes rotation {
  0% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  50% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(10deg);
    transform: rotate(10deg);
  }
}

@keyframes rotation {
  0% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  50% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(10deg);
    transform: rotate(10deg);
  }
}

@-webkit-keyframes loading {
  from {
    -webkit-transform: rotate(0);
    transform: rotate(0);
    -webkit-transform-origin: center;
    transform-origin: center;
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes loading {
  from {
    -webkit-transform: rotate(0);
    transform: rotate(0);
    -webkit-transform-origin: center;
    transform-origin: center;
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

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

body.locked {
  overflow: hidden;
  height: 100vh;
}

body .loading {
  z-index: 1000;
  position: fixed;
  width: 100%;
  height: 100vh;
  background-color: #ff6b00;
}

body .loading > .film {
  width: 90px;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

body .loading > .film img {
  width: 100%;
  -webkit-animation: loading 1.0s linear infinite;
  animation: loading 1.0s linear infinite;
}

body .loading > span {
  width: 100px;
  height: 100px;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-size: 80px;
}

body .loading > span > span {
  position: absolute;
  width: 100%;
  height: 100%;
}

body .loading > span > span > span {
  position: relative;
  display: block;
  overflow: hidden;
  width: 50px;
  height: 50px;
}

body .loading > span > span > span > span {
  position: absolute;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100px;
  height: 100px;
  border: 5px solid #fff;
  border-radius: 99em;
}

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

.small-button {
  -webkit-border-radius: 900px;
  border-radius: 900px;
  background-color: #ffae00;
  color: #fff;
  font-weight: bold;
  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: bold;
  padding: 8px;
  background-color: #E9D9C1;
  color: #592E69;
}

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

.small-button:hover {
  background-color: #e2cdae;
  color: #592E69;
}

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

.small-button:active {
  background-color: #dcc29b;
  top: 2px;
  left: 2px;
}

.main-button {
  -webkit-border-radius: 900px;
  border-radius: 900px;
  background-color: #ffae00;
  color: #fff;
  font-weight: bold;
  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: 24px;
  font-weight: 400;
  padding: 18px 40px 18px 80px;
}

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

@media screen and (max-width: 768px) {
  .main-button {
    font-size: 18px;
    padding: 16px;
    width: 80%;
  }
}

.main-button:hover:after {
  -webkit-transition: left .2s ease-out;
  -moz-transition: left .2s ease-out;
  -ms-transition: left .2s ease-out;
  -o-transition: left .2s ease-out;
  transition: left .2s ease-out;
  left: 20px;
}

.main-button:after {
  content: "";
  width: 40px;
  height: 40px;
  display: inline-block;
  background-image: url("../images/player.png");
  -webkit-background-size: 100% 100%;
  -o-background-size: 100% 100%;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  position: absolute;
  left: 15px;
  top: 10px;
}

@media screen and (max-width: 768px) {
  .main-button:after {
    width: 32px;
    height: 32px;
    top: 9px;
  }
}

#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: #540074;
  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;
}

@media screen and (max-width: 460px) {
  .film-wrapper {
    padding: 8px;
  }
}

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

@media screen and (max-width: 460px) {
  .film-wrapper .tag {
    font-size: 13px;
    padding: 6px 12px 6px 8px;
  }
}

.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;
}

@media screen and (max-width: 460px) {
  .film-wrapper .name {
    font-size: 14px;
  }
}

.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;
}

.arrow-float {
  display: none;
  width: 34px;
  height: 50px;
  margin: 0 auto;
  bottom: 30px;
  z-index: 99;
  position: absolute;
  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 #E8D8C2;
  -webkit-border-radius: 90px;
  border-radius: 90px;
  position: relative;
}

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

.arrow-float .mouse .scroll {
  position: absolute;
  width: 4px;
  height: 10px;
  background-color: #E8D8C2;
  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;
}

.main-title {
  height: 56px;
  margin-bottom: 50px;
}

@media screen and (max-width: 768px) {
  .main-title {
    height: 40px;
  }
}

.main-title img {
  height: 100%;
  width: auto;
  margin: 0 auto;
}

.deco-top {
  position: relative;
  margin-top: -4.5%;
}

@media screen and (max-width: 768px) {
  .deco-top {
    display: none;
    margin-top: 0;
  }
}

section.recommand-movie {
  background-color: #ff9600;
  position: relative;
  padding-top: 30px;
}

section.recommand-movie > .wish-wrap {
  text-align: right;
  max-width: 1020px;
  margin: 0 auto;
  margin-bottom: 20px;
  margin-top: -20px;
}

@media screen and (max-width: 768px) {
  section.recommand-movie > .wish-wrap {
    text-align: center;
    margin-top: 30px;
    max-width: 90%;
  }
}

section.recommand-movie > .wish-wrap .wish {
  cursor: pointer;
  display: inline-block;
  position: relative;
  right: -50px;
  width: 395px;
}

@media screen and (max-width: 768px) {
  section.recommand-movie > .wish-wrap .wish {
    right: 0;
    max-width: 100%;
  }
}

section.recommand-movie > .wish-wrap .wish img {
  width: 100%;
}

section.recommand-movie > .wish-wrap .man {
  width: 163px;
  position: absolute;
  left: -15px;
  top: -30px;
  -webkit-animation: rotation .6s infinite linear alternate;
  animation: rotation .6s infinite linear alternate;
}

@media screen and (max-width: 768px) {
  section.recommand-movie > .wish-wrap .man {
    width: 140px;
    top: -15px;
    left: -5px;
  }
}

section.recommand-movie > .note {
  font-size: 13px;
  color: #FFF;
  font-weight: bold;
  text-align: right;
  display: block;
  width: 90%;
  max-width: 1020px;
  margin: 0 auto;
  padding-bottom: 30px;
}

section.prize {
  margin-top: -100px;
  padding-top: 100px;
  text-align: center;
  background-image: url("../images/bg_mid.jpg");
  -webkit-background-size: 100% auto;
  -o-background-size: 100% auto;
  background-size: 100% auto;
  background-position: bottom center;
}

section.prize > .prize-list {
  font-size: 0;
  width: 90%;
  max-width: 1020px;
  margin: 0 auto;
  margin-top: 46px;
  margin-bottom: 60px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  section.prize > .prize-list {
    margin-bottom: 30px;
  }
}

section.prize > .prize-list li {
  width: calc(25% - 20px);
  line-height: 1.2;
  display: inline-block;
  margin: 0 10px;
  max-width: 216px;
  vertical-align: top;
}

@media screen and (max-width: 768px) {
  section.prize > .prize-list li {
    width: calc(50% - 20px);
    margin-bottom: 20px;
  }
}

section.prize > .prize-list li > .prize-name {
  color: #efefef;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  margin-top: 20px;
}

@media screen and (max-width: 768px) {
  section.prize > .prize-list li > .prize-name {
    font-size: 16px;
    margin-top: 12px;
  }
}

section.prize > .prize-bonus {
  max-width: 1020px;
  margin: 0 auto;
}

section.prize > .prize-bonus > .bonus-wrap {
  background-image: url("../images/prize_bonus_bg.png");
  background-repeat: repeat-y;
  -webkit-background-size: 100% auto;
  -o-background-size: 100% auto;
  background-size: 100% auto;
  position: relative;
}

section.prize > .prize-bonus .prize-title {
  width: 100%;
}

section.prize > .prize-bonus .prize-bonus-list {
  font-size: 0;
  width: 60%;
  margin: 0 auto;
  margin-bottom: 60px;
  padding-top: 30px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  section.prize > .prize-bonus .prize-bonus-list {
    margin-bottom: 10px;
  }
}

section.prize > .prize-bonus .prize-bonus-list li {
  width: calc(50% - 20px);
  max-width: 224px;
  font-size: 18px;
  display: inline-block;
  margin: 0 10px;
}

@media screen and (max-width: 768px) {
  section.prize > .prize-bonus .prize-bonus-list li {
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 767px) {
  section.prize > .prize-bonus .prize-bonus-list li {
    width: 80%;
  }
}

section.prize > .prize-bonus .prize-bonus-list li > .prize-name {
  color: #efefef;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  margin-top: 20px;
}

section.prize > .main-title {
  margin-top: 40px;
}

section.prize > h3 {
  font-size: 25px;
  color: #EEE6D9;
  text-align: center;
  font-weight: bold;
  margin-top: -20px;
}

section.prize > p {
  font-size: 20px;
  color: #FFF;
  text-align: center;
  margin-top: 20px;
  line-height: 1.3;
  margin-bottom: 35px;
}

@media screen and (max-width: 768px) {
  section.prize .md-btn-wrap {
    width: 80%;
    margin: 0 auto;
  }
}

section.prize .md-btn-wrap .main-button {
  min-width: 410px;
  margin-bottom: 28px;
}

@media screen and (max-width: 768px) {
  section.prize .md-btn-wrap .main-button {
    min-width: 100px;
    width: 90%;
  }
}

section.prize > .note {
  font-size: 13px;
  color: #FFF;
  font-weight: bold;
  text-align: right;
  display: block;
  width: 90%;
  max-width: 1020px;
  margin: 0 auto;
  margin-top: 60px;
  padding-bottom: 60px;
}

section.ad {
  background-color: #fbebc7;
  background-position: 15px center;
  margin-bottom: 90px;
  margin-top: -50px;
  padding: 5px 0;
  position: relative;
  z-index: 10;
}

section.ad:hover .text {
  text-decoration: underline;
}

section.ad .wrap {
  width: 96%;
  margin: 0 auto;
  padding: 5px 30px;
  position: relative;
  font-size: 0;
}

section.ad .img {
  width: 80px;
  display: inline-block;
  vertical-align: middle;
}

@media screen and (max-width: 440px) {
  section.ad .img {
    width: 60px;
    vertical-align: top;
  }
}

section.ad .img img {
  width: 100%;
}

section.ad .ad-content {
  width: calc(100% - 80px);
  display: inline-block;
  vertical-align: middle;
  padding-left: 15px;
}

@media screen and (max-width: 440px) {
  section.ad .ad-content {
    width: calc(100% - 60px);
  }
}

section.ad .text {
  display: inline;
  vertical-align: middle;
  font-size: 18px;
  color: #121212;
  margin-right: 8px;
  margin-bottom: 8px;
  line-height: 1.5;
  letter-spacing: 1px;
}

@media screen and (max-width: 440px) {
  section.ad .text {
    font-size: 16px;
  }
}

section.ad .main-button {
  padding: 6px 15px;
  padding-right: 45px;
  text-align: center;
  font-size: 16px;
  display: inline-block;
  vertical-align: middle;
  background-color: #683A1C;
  color: #fff;
}

@media screen and (max-width: 440px) {
  section.ad .main-button {
    font-size: 14px;
  }
}

section.ad .main-button:after {
  content: "";
  display: block;
  position: absolute;
  -webkit-background-size: auto 100%;
  -o-background-size: auto 100%;
  background-size: auto 100%;
  background-repeat: no-repeat;
  background-position: right top;
  width: 22px;
  height: 22px;
  top: 3px;
  right: 8px;
  background-image: url(../images/popcorn.png);
}

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

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

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

section.main .lg .support-device {
  position: absolute;
  z-index: 9;
  right: 0;
  top: 8%;
  width: 6.5%;
  max-width: 90px;
}

section.main .lg .support-device li {
  width: 100%;
}

section.main .lg .support-device li img {
  width: 100%;
}

@media screen and (max-width: 768px) {
  section.main .lg {
    display: none;
  }
}

section.main .md {
  position: relative;
  display: none;
  background-color: #FDB72E;
}

section.main .md .support-device {
  position: absolute;
  z-index: 9;
  bottom: 0;
  left: 0;
  right: 0;
  font-size: 0;
}

section.main .md .support-device ul {
  text-align: center;
  width: 90%;
  max-width: 709px;
  margin: 0 auto;
}

section.main .md .support-device li {
  text-align: center;
  display: inline-block;
}

section.main .md .support-device li.device-01 {
  width: 19.464%;
}

section.main .md .support-device li.device-02 {
  width: 22.0028%;
}

section.main .md .support-device li.device-03 {
  width: 26.9393%;
}

section.main .md .support-device li.device-04 {
  width: 31.5937%;
}

section.main .md .support-device li img {
  width: 100%;
}

section.main .md .bg {
  position: relative;
}

@media screen and (max-width: 768px) {
  section.main .md {
    display: block;
  }
}

section.film-list .content-wrapper {
  width: 90%;
  max-width: 1020px;
  margin: 0 auto;
  margin-top: 0;
}

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

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

section.film-list .films-wrapper {
  margin-bottom: 60px;
}

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

section.film-list .films-wrapper .owl-dots span {
  background-color: rgba(241, 210, 155, 0.3);
  width: 6px;
  height: 6px;
}

section.film-list .films-wrapper .owl-dots .owl-dot:hover span {
  background: #f1d29b;
}

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

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

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

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;
  color: #ff9600;
  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%;
}

@media screen and (max-width: 460px) {
  section.film-list .item {
    padding: 8px;
  }
}

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

@media screen and (max-width: 460px) {
  section.film-list .item .tag {
    font-size: 13px;
    padding: 6px 12px 6px 8px;
  }
}

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;
}

@media screen and (max-width: 460px) {
  section.film-list .item .name {
    font-size: 14px;
  }
}

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;
}

section.film-list .tabs li {
  display: inline-block;
  cursor: pointer;
  background-color: #340048;
  text-align: center;
  color: rgba(233, 217, 193, 0.3);
  font-size: 20px;
  font-weight: bold;
  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: #340048;
  background-color: #e9d9c1;
  font-weight: bold;
}

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.banner {
  padding-top: 50px;
  background-color: #540074;
  background-image: url("../images/bg_banner.png");
  background-position: 20% top;
  -webkit-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-repeat: no-repeat;
}

section.banner img {
  margin: 0 auto;
}

section.tv-promote {
  background: #d4d4d4;
  /* Old browsers */
  background: -moz-linear-gradient(45deg, #d4d4d4 0%, #ededed 48%, #f6f6f6 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(45deg, #d4d4d4 0%, #ededed 48%, #f6f6f6 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: -o-linear-gradient(45deg, #d4d4d4 0%, #ededed 48%, #f6f6f6 100%);
  background: linear-gradient(45deg, #d4d4d4 0%, #ededed 48%, #f6f6f6 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d4d4d4', endColorstr='#f6f6f6',GradientType=1 );
  /* IE6-9 fallback on horizontal gradient */
}

section.tv-promote .banner-lg {
  width: 90%;
  max-width: 1016px;
  margin: 0 auto;
  padding: 70px 0;
}

@media screen and (max-width: 768px) {
  section.tv-promote .banner-lg {
    display: none;
  }
}

section.tv-promote .banner-md {
  display: none;
}

@media screen and (max-width: 768px) {
  section.tv-promote .banner-md {
    display: block;
  }
}

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