/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
@import url("https://fonts.googleapis.com/css2?family=Audiowide&display=swap&family=Noto+Sans+TC:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Audiowide&display=swap&family=Noto+Sans+TC:wght@100..900&display=swap");
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
  margin: 0;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.2
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2017 Daniel Eden
 */
.animated {
  animation-duration: 1.3s;
  animation-fill-mode: both;
}

.animated.infinite {
  animation-iteration-count: infinite;
}

.animated.fast {
  animation-duration: 1s;
}

.animated.slow {
  animation-duration: 2s;
}

.delay01 {
  animation-delay: 0.5s;
}

.delay02 {
  animation-delay: 1s;
}

.delay03 {
  animation-delay: 1.5s;
}

.delay04 {
  animation-delay: 2s;
}

.delay05 {
  animation-delay: 2.5s;
}

.delay06 {
  animation-delay: 3s;
}

.delay07 {
  animation-delay: 3.5s;
}

.animated.flipOutX,
.animated.flipOutY,
.animated.bounceIn,
.animated.bounceOut {
  animation-duration: 1s;
}

@keyframes backInDown {
  0% {
    transform: translateY(-1200px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    transform: translateY(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.backInDown {
  animation-name: backInDown;
}

@keyframes UpDown {
  from {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, 100%, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes UpDown_m {
  from {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(10%, 10%, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.UpDown {
  animation-name: UpDown;
}

@keyframes line_ani {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}
.line_ani {
  animation-name: line_ani;
}

@keyframes picSway {
  from, to {
    transform-origin: top center;
  }
  0%, 100% {
    transform: rotate(-6deg);
  }
  50% {
    transform: rotate(6deg);
  }
}
@keyframes bounce {
  from, 20%, 53%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    transform: translate3d(0, -4px, 0);
  }
}
.bounce {
  animation-name: bounce;
  transform-origin: center bottom;
}

@keyframes flash {
  from, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
.flash {
  animation-name: flash;
}

@keyframes fadeinright {
  from {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeinleft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes pulse {
  from {
    transform: scale3d(1, 1, 1);
  }
  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.pulse {
  animation-name: pulse;
}

@keyframes rubberBand {
  from {
    transform: scale3d(1, 1, 1);
  }
  30% {
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.rubberBand {
  animation-name: rubberBand;
}

@keyframes shake {
  from, to {
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    transform: translate3d(10px, 0, 0);
  }
}
.shake {
  animation-name: shake;
}

@keyframes headShake {
  0% {
    transform: translateX(0);
  }
  6.5% {
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    transform: translateX(0);
  }
}
.headShake {
  animation-timing-function: ease-in-out;
  animation-name: headShake;
}

@keyframes swing {
  20% {
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
.swing {
  transform-origin: top center;
  animation-name: swing;
}

@keyframes tada {
  from {
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.tada {
  animation-name: tada;
}

@keyframes wobble {
  from {
    transform: none;
  }
  15% {
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    transform: none;
  }
}
.wobble {
  animation-name: wobble;
}

@keyframes jello {
  from, 11.1%, to {
    transform: none;
  }
  22.2% {
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    transform: skewX(0.39063deg) skewY(0.39063deg);
  }
  88.8% {
    transform: skewX(-0.19531deg) skewY(-0.19531deg);
  }
}
.jello {
  animation-name: jello;
  transform-origin: center;
}

@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate(0, 0) scale3d(0.3, 0.3, 0.3);
  }
  20% {
    transform: translate(0, 0) scale3d(1.1, 1.1, 1.1);
  }
  40% {
    transform: translate(0, 0) scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    transform: translate(0, 0) scale3d(1.03, 1.03, 1.03);
  }
  80% {
    transform: translate(0, 0) scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    transform: translate(0, 0) scale3d(1, 1, 1);
  }
}
.bounceIn {
  animation-name: bounceIn;
}

@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }
  75% {
    transform: translate3d(0, -10px, 0);
  }
  90% {
    transform: translate3d(0, 5px, 0);
  }
  to {
    transform: none;
  }
}
.bounceInDown {
  animation-name: bounceInDown;
}

@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }
  75% {
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    transform: translate3d(5px, 0, 0);
  }
  to {
    transform: none;
  }
}
.bounceInLeft {
  animation-name: bounceInLeft;
}

@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    transform: translate3d(10px, 0, 0);
  }
  90% {
    transform: translate3d(-5px, 0, 0);
  }
  to {
    transform: none;
  }
}
.bounceInRight {
  animation-name: bounceInRight;
}

@keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  75% {
    transform: translate3d(0, 10px, 0);
  }
  90% {
    transform: translate3d(0, -5px, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.bounceInUp {
  animation-name: bounceInUp;
}

@keyframes bounceOut {
  20% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.bounceOut {
  animation-name: bounceOut;
}

@keyframes bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.bounceOutDown {
  animation-name: bounceOutDown;
}

@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
.bounceOutLeft {
  animation-name: bounceOutLeft;
}

@keyframes bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
.bounceOutRight {
  animation-name: bounceOutRight;
}

@keyframes bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
.bounceOutUp {
  animation-name: bounceOutUp;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  animation-name: fadeIn;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInDown {
  animation-name: fadeInDown;
}

@keyframes fadeInDownBig {
  from {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInDownBig {
  animation-name: fadeInDownBig;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInLeft {
  animation-name: fadeInLeft;
}

@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInLeftBig {
  animation-name: fadeInLeftBig;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInRight {
  animation-name: fadeInRight;
}

@keyframes fadeInRightBig {
  from {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInRightBig {
  animation-name: fadeInRightBig;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInUp {
  animation-name: fadeInUp;
}

@keyframes fadeInUpBig {
  from {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInUpBig {
  animation-name: fadeInUpBig;
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.fadeOut {
  animation-name: fadeOut;
}

@keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
}
.fadeOutDown {
  animation-name: fadeOutDown;
}

@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.fadeOutDownBig {
  animation-name: fadeOutDownBig;
}

@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
}
.fadeOutLeft {
  animation-name: fadeOutLeft;
}

@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
.fadeOutLeftBig {
  animation-name: fadeOutLeftBig;
}

@keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
}
.fadeOutRight {
  animation-name: fadeOutRight;
}

@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
.fadeOutRightBig {
  animation-name: fadeOutRightBig;
}

@keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
}
.fadeOutUp {
  animation-name: fadeOutUp;
}

@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
.fadeOutUpBig {
  animation-name: fadeOutUpBig;
}

@keyframes flip {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    animation-timing-function: ease-out;
  }
  40% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    animation-timing-function: ease-out;
  }
  50% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    animation-timing-function: ease-in;
  }
  80% {
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    animation-timing-function: ease-in;
  }
  to {
    transform: perspective(400px);
    animation-timing-function: ease-in;
  }
}
.animated.flip {
  backface-visibility: visible;
  animation-name: flip;
}

@keyframes flipInX {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}
.flipInX {
  backface-visibility: visible !important;
  animation-name: flipInX;
}

@keyframes flipInY {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}
.flipInY {
  backface-visibility: visible !important;
  animation-name: flipInY;
}

@keyframes flipOutX {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.flipOutX {
  animation-name: flipOutX;
  backface-visibility: visible !important;
}

@keyframes flipOutY {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
.flipOutY {
  backface-visibility: visible !important;
  animation-name: flipOutY;
}

@keyframes lightSpeedIn {
  from {
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    transform: skewX(-5deg);
    opacity: 1;
  }
  to {
    transform: none;
    opacity: 1;
  }
}
.lightSpeedIn {
  animation-name: lightSpeedIn;
  animation-timing-function: ease-out;
}

@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }
  to {
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
.lightSpeedOut {
  animation-name: lightSpeedOut;
  animation-timing-function: ease-in;
}

@keyframes rotateIn {
  from {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    transform-origin: center;
    transform: none;
    opacity: 1;
  }
}
.rotateIn {
  animation-name: rotateIn;
}

@keyframes rotateInDownLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    transform-origin: left bottom;
    transform: none;
    opacity: 1;
  }
}
.rotateInDownLeft {
  animation-name: rotateInDownLeft;
}

@keyframes rotateInDownRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1;
  }
}
.rotateInDownRight {
  animation-name: rotateInDownRight;
}

@keyframes rotateInUpLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    transform-origin: left bottom;
    transform: none;
    opacity: 1;
  }
}
.rotateInUpLeft {
  animation-name: rotateInUpLeft;
}

@keyframes rotateInUpRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1;
  }
}
.rotateInUpRight {
  animation-name: rotateInUpRight;
}

@keyframes rotateOut {
  from {
    transform-origin: center;
    opacity: 1;
  }
  to {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
.rotateOut {
  animation-name: rotateOut;
}

@keyframes rotateOutDownLeft {
  from {
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
.rotateOutDownLeft {
  animation-name: rotateOutDownLeft;
}

@keyframes rotateOutDownRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutDownRight {
  animation-name: rotateOutDownRight;
}

@keyframes rotateOutUpLeft {
  from {
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutUpLeft {
  animation-name: rotateOutUpLeft;
}

@keyframes rotateOutUpRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
.rotateOutUpRight {
  animation-name: rotateOutUpRight;
}

@keyframes hinge {
  0% {
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    transform: rotate3d(0, 0, 1, 80deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    transform: rotate3d(0, 0, 1, 60deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.hinge {
  animation-name: hinge;
}

@keyframes jackInTheBox {
  from {
    opacity: 0;
    transform: scale(0.1) rotate(30deg);
    transform-origin: center bottom;
  }
  50% {
    transform: rotate(-10deg);
  }
  70% {
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.jackInTheBox {
  animation-name: jackInTheBox;
}

@keyframes rollIn {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.rollIn {
  animation-name: rollIn;
}

@keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
.rollOut {
  animation-name: rollOut;
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.zoomIn {
  animation-name: zoomIn;
}

@keyframes zoomInDown {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInDown {
  animation-name: zoomInDown;
}

@keyframes zoomInLeft {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInLeft {
  animation-name: zoomInLeft;
}

@keyframes zoomInRight {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInRight {
  animation-name: zoomInRight;
}

@keyframes zoomInUp {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInUp {
  animation-name: zoomInUp;
}

@keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.zoomOut {
  animation-name: zoomOut;
}

@keyframes zoomOutDown {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutDown {
  animation-name: zoomOutDown;
}

@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform-origin: left center;
  }
}
.zoomOutLeft {
  animation-name: zoomOutLeft;
}

@keyframes zoomOutRight {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(2000px, 0, 0);
    transform-origin: right center;
  }
}
.zoomOutRight {
  animation-name: zoomOutRight;
}

@keyframes zoomOutUp {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutUp {
  animation-name: zoomOutUp;
}

@keyframes slideInDown {
  from {
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInDown {
  animation-name: slideInDown;
}

@keyframes slideInLeft {
  from {
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInLeft {
  animation-name: slideInLeft;
}

@keyframes slideInRight {
  from {
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInRight {
  animation-name: slideInRight;
}

@keyframes slideInUp {
  from {
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInUp {
  animation-name: slideInUp;
}

@keyframes slideOutDown {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, 100%, 0);
  }
}
.slideOutDown {
  animation-name: slideOutDown;
}

@keyframes slideOutLeft {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(-100%, 0, 0);
  }
}
.slideOutLeft {
  animation-name: slideOutLeft;
}

@keyframes slideOutRight {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(100%, 0, 0);
  }
}
.slideOutRight {
  animation-name: slideOutRight;
}

@keyframes slideOutUp {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, -100%, 0);
  }
}
.slideOutUp {
  animation-name: slideOutUp;
}

.editor-text {
  padding: 20px;
}
.editor-text p {
  font-size: 18px;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .editor-text p {
    font-size: 4vw;
  }
}

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

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

.d-block {
  display: block;
}

.overflow-hidden {
  overflow: hidden;
  position: relative;
}

body {
  background-color: #041f52;
}

.wrapper {
  position: relative;
  width: 100%;
  max-width: 100%;
  font-family: "Noto Sans TC", sans-serif;
  background-color: #fff;
  padding-top: 90px;
}
@media (max-width: 1366px) {
  .wrapper {
    padding-top: 76px;
  }
}
.wrapper img {
  width: 100%;
  max-width: 100%;
  font-size: 0;
  display: block;
}
.wrapper .apply-btn {
  position: fixed;
  width: 70px;
  right: 3%;
  top: 65%;
  z-index: 3;
  animation: ani-apply 1s linear infinite;
}
@media (max-width: 768px) {
  .wrapper .apply-btn {
    width: 35px;
  }
}
.wrapper .header {
  position: fixed;
  width: 100%;
  max-width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  top: 0;
  left: 0;
  background-color: #fff;
  z-index: 9;
}
.wrapper .header .logo {
  padding: 20px;
  width: 400px;
  box-sizing: border-box;
}
@media (max-width: 1366px) {
  .wrapper .header .logo {
    width: 300px;
  }
}
.wrapper .header .menu {
  margin-left: auto;
  -ms-flex-item-align: normal;
      align-self: normal;
}
@media (max-width: 992px) {
  .wrapper .header .menu {
    position: fixed;
    -ms-flex-direction: column;
        flex-direction: column;
    width: 450px;
    height: calc(100vh - 76px);
    overflow-x: hidden;
    overflow-y: scroll;
    padding: 0;
    top: 76px;
    right: -100%;
    background-color: #fff;
    z-index: 9;
    transition: right 0.3s ease;
    border-top: 3px solid #000;
  }
}
@media (max-width: 768px) {
  .wrapper .header .menu {
    width: 100%;
  }
}
.wrapper .header .menu.active {
  right: 0;
}
.wrapper .header .menu ul {
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -ms-flex-align: center;
      align-items: center;
}
@media (max-width: 992px) {
  .wrapper .header .menu ul {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    height: auto;
    -ms-flex-pack: center;
        justify-content: center;
  }
}
.wrapper .header .menu ul > li {
  padding: 0 20px;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -ms-flex-align: center;
      align-items: center;
  cursor: pointer;
  box-sizing: border-box;
}
@media (max-width: 1366px) {
  .wrapper .header .menu ul > li {
    padding: 0 1vw;
  }
}
@media (max-width: 992px) {
  .wrapper .header .menu ul > li {
    height: auto;
    -ms-flex-pack: center;
        justify-content: center;
    min-width: 100%;
    -ms-flex: 0 100%;
        flex: 0 100%;
  }
}
@media (min-width: 992px) {
  .wrapper .header .menu ul > li:hover a {
    border-top: 3px solid #000;
    border-bottom: 3px solid #000;
    padding: 10px 10px;
    transition: 0.3s ease all;
  }
}
@media (min-width: 992px) and (max-width: 1366px) {
  .wrapper .header .menu ul > li:hover a {
    border-top: 2px solid #000;
    border-bottom: 2px solid #000;
  }
}
@media (max-width: 992px) {
  .wrapper .header .menu ul > li.drop-down-btn {
    -ms-flex-direction: column;
        flex-direction: column;
  }
}
@media (min-width: 992px) {
  .wrapper .header .menu ul > li.drop-down-btn:hover a {
    border-top: 3px solid #000;
    border-bottom: 3px solid #000;
    padding: 10px 10px;
    transition: 0.3s ease all;
  }
}
@media (min-width: 992px) and (max-width: 1366px) {
  .wrapper .header .menu ul > li.drop-down-btn:hover a {
    border-top: 2px solid #000;
    border-bottom: 2px solid #000;
  }
}
@media (min-width: 992px) {
  .wrapper .header .menu ul > li.drop-down-btn:hover .drop-down-menu ul li a {
    border: none;
    padding: 20px 10px;
  }
  .wrapper .header .menu ul > li.drop-down-btn:hover .drop-down-bg {
    opacity: 1;
  }
  .wrapper .header .menu ul > li.drop-down-btn:hover .drop-down-menu {
    opacity: 1;
    pointer-events: auto;
  }
}
.wrapper .header .menu ul > li a {
  display: block;
  text-decoration: none;
  color: #000;
  font-weight: 600;
  font-size: 20px;
  box-sizing: border-box;
  border-top: 3px solid #fff;
  border-bottom: 3px solid #fff;
  padding: 20px 10px;
  transition: 0.3s ease all;
}
@media (max-width: 1366px) {
  .wrapper .header .menu ul > li a {
    font-size: 1.4vw;
  }
}
@media (max-width: 992px) {
  .wrapper .header .menu ul > li a {
    font-size: 2vw;
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .wrapper .header .menu ul > li a {
    font-size: 4.5vw;
  }
}
.wrapper .header .menu ul > li.menu-apply-btn {
  -ms-flex-item-align: normal;
      align-self: normal;
  height: 100%;
  padding: 0;
}
@media (max-width: 992px) {
  .wrapper .header .menu ul > li.menu-apply-btn {
    -ms-flex-pack: center;
        justify-content: center;
    height: auto;
    margin-bottom: 10px;
    min-width: 35%;
    -ms-flex: 0 35%;
        flex: 0 35%;
    -ms-flex-item-align: auto;
        align-self: auto;
    padding: 0 10px;
  }
}
.wrapper .header .menu ul > li.menu-apply-btn a {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  background-color: #f43c69;
  height: 100%;
  color: #fff;
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: 1px;
  padding: 20px 25px;
  text-align: center;
  border: none;
}
@media (max-width: 1366px) {
  .wrapper .header .menu ul > li.menu-apply-btn a {
    font-size: 1.2vw;
  }
}
@media (max-width: 992px) {
  .wrapper .header .menu ul > li.menu-apply-btn a {
    width: auto;
    font-size: 1.8vw;
    border-radius: 50px;
    padding: 15px 20px;
    -ms-flex-pack: center;
        justify-content: center;
    box-sizing: border-box;
  }
}
@media (max-width: 768px) {
  .wrapper .header .menu ul > li.menu-apply-btn a {
    font-size: 4vw;
  }
}
.wrapper .header .menu ul > li.menu-apply-btn a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 10px 10px;
  border-color: transparent transparent #fff transparent;
  right: 5px;
  bottom: 5px;
  transition: 0.3s ease all;
}
@media (max-width: 992px) {
  .wrapper .header .menu ul > li.menu-apply-btn a::after {
    display: none;
  }
}
.wrapper .header .menu ul > li.menu-apply-btn a:hover {
  background-color: #f62256;
  transition: 0.3s ease all;
}
.wrapper .header .menu ul > li.menu-apply-btn a:hover::after {
  right: 0;
  bottom: 0;
}
.wrapper .header .menu ul > li .m_hide {
  display: block;
}
@media (max-width: 992px) {
  .wrapper .header .menu ul > li .m_hide {
    display: none;
  }
}
.wrapper .header .menu ul > li.line-btn {
  -ms-flex-item-align: normal;
      align-self: normal;
  height: 100%;
  padding: 0;
}
@media (max-width: 992px) {
  .wrapper .header .menu ul > li.line-btn {
    -ms-flex-pack: center;
        justify-content: center;
    height: auto;
    margin-bottom: 10px;
    min-width: 35%;
    -ms-flex: 0 35%;
        flex: 0 35%;
    -ms-flex-item-align: auto;
        align-self: auto;
    padding: 0 10px;
  }
}
.wrapper .header .menu ul > li.line-btn a {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  text-align: center;
  background-color: #06c755;
  height: 100%;
  color: #fff;
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: 1px;
  padding: 20px 25px;
  border: none;
}
@media (max-width: 1366px) {
  .wrapper .header .menu ul > li.line-btn a {
    font-size: 1.2vw;
  }
}
@media (max-width: 992px) {
  .wrapper .header .menu ul > li.line-btn a {
    font-size: 1.8vw;
    width: auto;
    border-radius: 50px;
    padding: 15px 20px;
    -ms-flex-pack: center;
        justify-content: center;
    box-sizing: border-box;
  }
}
@media (max-width: 768px) {
  .wrapper .header .menu ul > li.line-btn a {
    font-size: 4vw;
  }
}
.wrapper .header .menu ul > li.line-btn a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 10px 10px;
  border-color: transparent transparent #fff transparent;
  right: 5px;
  bottom: 5px;
  transition: 0.3s ease all;
}
@media (max-width: 992px) {
  .wrapper .header .menu ul > li.line-btn a::after {
    display: none;
  }
}
.wrapper .header .menu ul > li.line-btn a:hover {
  background-color: #00d557;
  transition: 0.3s ease all;
}
.wrapper .header .menu ul > li.line-btn a:hover::after {
  right: 0;
  bottom: 0;
}
.wrapper .header .menu ul > li .drop-down-bg {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 8;
  width: 100%;
  height: calc(100% - 90px);
  pointer-events: none;
  background-color: rgba(0, 0, 0, 0.6);
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.26, 0.16, 0.1, 1);
}
@media (max-width: 1366px) {
  .wrapper .header .menu ul > li .drop-down-bg {
    height: calc(100% - 76px);
  }
}
@media (max-width: 992px) {
  .wrapper .header .menu ul > li .drop-down-bg {
    display: none;
  }
}
.wrapper .header .menu ul > li .drop-down-menu {
  position: fixed;
  top: 90px;
  width: 60%;
  right: 0;
  background: #000;
  border-radius: 0 0 0 20px;
  padding: 20px 30px;
  box-sizing: border-box;
  z-index: 9;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.26, 0.16, 0.1, 1);
}
@media (max-width: 1366px) {
  .wrapper .header .menu ul > li .drop-down-menu {
    top: 76px;
  }
}
@media (max-width: 992px) {
  .wrapper .header .menu ul > li .drop-down-menu {
    position: relative;
    opacity: 1;
    width: 100%;
    top: 0;
    border-radius: 0;
    display: none;
    pointer-events: all;
  }
}
.wrapper .header .menu ul > li .drop-down-menu ul {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.wrapper .header .menu ul > li .drop-down-menu ul li {
  padding: 0 15px;
}
.wrapper .header .menu ul > li .drop-down-menu ul li a {
  position: relative;
  color: #fff;
  border: none;
  padding: 20px 10px;
}
@media (min-width: 992px) {
  .wrapper .header .menu ul > li .drop-down-menu ul li a:hover::before {
    right: 0;
  }
}
.wrapper .header .menu ul > li .drop-down-menu ul li a::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  right: 100%;
  top: 50%;
  background: #1c5ef2;
  height: 3px;
  transition-property: right;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
}
.wrapper .header .hamburger-btn {
  display: none;
}
@media (max-width: 992px) {
  .wrapper .header .hamburger-btn {
    display: block;
    position: absolute;
    padding: 37px 20px;
    right: 0;
    top: 0;
    cursor: pointer;
    z-index: 3;
  }
}
.wrapper .header .hamburger-btn.animate .hamburger-menu {
  background: rgba(255, 255, 255, 0);
}
.wrapper .header .hamburger-btn.animate .hamburger-menu::before {
  content: "";
  bottom: 0;
  background: #000;
  transform: rotate(-45deg);
  transition: bottom 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
}
.wrapper .header .hamburger-btn.animate .hamburger-menu::after {
  content: "";
  top: 0;
  background: #000;
  transform: rotate(45deg);
  transition: top 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
}
.wrapper .header .hamburger-btn .hamburger-menu,
.wrapper .header .hamburger-btn .hamburger-menu:after,
.wrapper .header .hamburger-btn .hamburger-menu:before {
  width: 40px;
  height: 4px;
  border-radius: 25px;
}
.wrapper .header .hamburger-btn .hamburger-menu {
  position: relative;
  display: block;
  background: #000;
  transition: all 0ms 300ms;
}
.wrapper .header .hamburger-btn .hamburger-menu::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 12px;
  background: #000;
  transition: bottom 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
}
.wrapper .header .hamburger-btn .hamburger-menu::after {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  background: #000;
  transition: top 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
}
.wrapper .kv {
  position: relative;
  background-color: #041f52;
  z-index: 2;
}
.wrapper .kv .kv-canvas-container {
  position: absolute;
  height: 100%;
  width: 100%;
  white-space: nowrap;
  top: 0;
  left: 0;
}
@media (min-width: 1024px) {
  .wrapper .kv .kv-canvas-container {
    display: none;
  }
}
.wrapper .kv .kv-canvas-container:after {
  content: "";
  height: 100%;
  display: inline-block;
  vertical-align: middle;
}
.wrapper .kv .kv-canvas-container .kv-canvas {
  height: 100%;
  display: inline-block;
  vertical-align: middle;
}
.wrapper .kv .apply-btn {
  position: absolute;
  width: 7%;
  top: 42%;
  right: 15%;
  opacity: 0;
}
@media (max-width: 768px) {
  .wrapper .kv .apply-btn {
    width: 19%;
    top: 53%;
    right: 8%;
  }
}
.wrapper .kv .apply-btn.active {
  opacity: 1;
  animation: flipInX 0.8s ease 1;
  animation-fill-mode: both;
  animation-delay: 2s;
}
.wrapper .kv .countdown {
  position: absolute;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  top: 43%;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
}
.wrapper .kv .countdown.active {
  animation: ani-countdown 0.3s ease 1;
  animation-fill-mode: both;
  animation-delay: 2s;
}
.wrapper .kv .countdown > p {
  font-size: 1.5vw;
  line-height: 1.3;
  letter-spacing: 2px;
  color: #fff;
  padding-right: 0.5vw;
}
@media (max-width: 768px) {
  .wrapper .kv .countdown > p {
    font-size: 4vw;
    white-space: nowrap;
  }
}
.wrapper .kv .countdown .time {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: end;
  color: #fff;
}
.wrapper .kv .countdown .time p,
.wrapper .kv .countdown .time b {
  font-size: 5vw;
  color: #fff;
  font-family: "Archivo Black";
}
@media (max-width: 768px) {
  .wrapper .kv .countdown .time p,
  .wrapper .kv .countdown .time b {
    font-size: 10vw;
  }
}
.wrapper .kv .countdown .time span {
  font-size: 1.5vw;
  padding: 0 1vw 0.5vw 0.2vw;
}
@media (max-width: 768px) {
  .wrapper .kv .countdown .time span {
    font-size: 4vw;
    padding: 0 3vw 1.5vw 0.2vw;
  }
}
.wrapper .section {
  position: relative;
  padding: 50px 0;
}
@media (max-width: 1366px) {
  .wrapper .section {
    padding: 5vw 0;
  }
}
.wrapper .section.blue-bg {
  position: relative;
  background-color: #041f52;
  z-index: 1;
}
.wrapper .section.blue-bg::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: url("../img/deco.png");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 100%;
  z-index: -1;
}
.wrapper .section.blue-bg::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  background-image: url("../img/deco02.png");
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: 100%;
  z-index: -1;
}
.wrapper .section.white-bg {
  padding: 0;
  z-index: 0;
}
.wrapper .section.white-bg::after {
  position: fixed;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background-image: linear-gradient(0deg, black 0px, black 1px, transparent 1px, transparent 100px), linear-gradient(90deg, black 0px, black 1px, transparent 1px, transparent 100px);
  background-size: 50px 50px;
  opacity: 0.1;
  z-index: -5;
  pointer-events: none;
}
@media (max-width: 1366px) {
  .wrapper .section.white-bg::after {
    background-size: 40px 40px;
  }
}
@media (max-width: 768px) {
  .wrapper .section.white-bg::after {
    background-size: 30px 30px;
  }
}
.wrapper .section.white-bg > .w-1240 {
  padding: 100px 20px;
}
@media (max-width: 768px) {
  .wrapper .section.white-bg > .w-1240 {
    padding: 8vw 20px;
  }
}
.wrapper .section.section-inner {
  min-height: 75.2vh;
}
.wrapper .section.section-inner.blue-bg::after {
  display: none;
}
.wrapper .section.section-inner.blue-bg .sidebar {
  background-color: #f43c69;
}
.wrapper .section.section-inner.white-bg {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  min-height: 85.7vh;
}
.wrapper .section.section-inner.white-bg .sidebar {
  background-color: #000;
}
.wrapper .section.section-inner.white-bg .page {
  border: 3px solid #000;
}
.wrapper .section .index-title {
  position: relative;
  width: 650px;
  max-width: 100%;
  margin: 0 auto 30px;
}
@media (max-width: 1366px) {
  .wrapper .section .index-title {
    width: 50vw;
  }
}
@media (max-width: 768px) {
  .wrapper .section .index-title {
    width: 80vw;
    margin: 0 auto 4vw;
  }
}
.wrapper .section .index-title h2 {
  position: absolute;
  top: 0;
  opacity: 0;
  z-index: -99;
}
.wrapper .section .w-900 {
  width: 900px;
  max-width: 100%;
  padding: 50px 20px;
  margin: 0 auto;
  box-sizing: border-box;
}
@media (max-width: 1366px) {
  .wrapper .section .w-900 {
    padding: 5vw 20px;
  }
}
.wrapper .section .w-900 .index-info {
  width: 700px;
  max-width: 100%;
  margin: 0 auto;
}
.wrapper .section .w-900 .index-info .text p {
  font-size: 20px;
  color: #fff;
  text-align: center;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .wrapper .section .w-900 .index-info .text p {
    font-size: 4vw;
  }
}
.wrapper .section .w-900 .index-info .count_time {
  padding-top: 100px;
  width: 100%;
  max-width: 100%;
}
@media (max-width: 768px) {
  .wrapper .section .w-900 .index-info .count_time {
    padding-top: 10vw;
  }
}
.wrapper .section .w-900 .index-info .count_time .countdown {
  display: -ms-flexbox;
  display: flex;
  padding-top: 30px;
}
@media (max-width: 768px) {
  .wrapper .section .w-900 .index-info .count_time .countdown {
    padding-top: 4vw;
  }
}
.wrapper .section .w-900 .index-info .count_time .countdown .time {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex: 1 1 auto;
      flex: 1 1 auto;
  -ms-flex-align: center;
      align-items: center;
}
.wrapper .section .w-900 .index-info .count_time .countdown .time p {
  font-family: "Audiowide", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 90px;
  color: #fff;
}
@media (max-width: 768px) {
  .wrapper .section .w-900 .index-info .count_time .countdown .time p {
    font-size: 9vw;
  }
}
.wrapper .section .w-900 .index-info .count_time .countdown .time .pb {
  transform: translateY(-6px);
}
.wrapper .section .w-900 .index-info .count_time .countdown .time span {
  color: #fff;
  font-size: 20px;
  padding-top: 5px;
}
@media (max-width: 768px) {
  .wrapper .section .w-900 .index-info .count_time .countdown .time span {
    font-size: 3.5vw;
  }
}
.wrapper .section .w-900 .mov {
  position: relative;
  padding: 100px 0;
}
@media (max-width: 768px) {
  .wrapper .section .w-900 .mov {
    padding: 10vw 0;
  }
}
.wrapper .section .w-900 .mov .mov-content {
  position: relative;
}
.wrapper .section .w-900 .mov .mov-content .mask {
  position: absolute;
  width: 94%;
  max-width: 100%;
  z-index: 2;
  cursor: pointer;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (min-width: 768px) {
  .wrapper .section .w-900 .mov .mov-content .mask:hover .play img {
    transform: scale(1.1);
    transition: 0.3s ease all;
  }
}
.wrapper .section .w-900 .mov .mov-content .mask .play {
  position: absolute;
  width: 10%;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  pointer-events: none;
}
.wrapper .section .w-900 .mov .mov-content .mask .play img {
  transition: 0.3s ease all;
}
.wrapper .section .w-900 .mov .mov-content .yt-player {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  height: 86%;
  width: 94%;
  transform: translate(-50%, -50%);
}
.wrapper .section .w-900 .index-news ul li:nth-child(odd) {
  background-color: #1e3664;
}
.wrapper .section .w-900 .index-news ul li .news-item {
  position: relative;
  text-decoration: none;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  padding: 20px 70px 20px 20px;
  color: #fff;
}
@media (max-width: 768px) {
  .wrapper .section .w-900 .index-news ul li .news-item {
    -ms-flex-direction: column;
        flex-direction: column;
    -ms-flex-align: start;
        align-items: start;
    padding: 4vw 10vw 4vw 4vw;
  }
}
@media (min-width: 768px) {
  .wrapper .section .w-900 .index-news ul li .news-item:hover::after {
    right: 20px;
    transition: 0.3s ease all;
  }
}
.wrapper .section .w-900 .index-news ul li .news-item::after {
  content: "";
  position: absolute;
  width: 25px;
  height: 25px;
  top: 50%;
  transform: translateY(-50%);
  right: 30px;
  background-image: url("../img/more.svg");
  background-repeat: no-repeat;
  transition: 0.3s ease all;
}
@media (max-width: 768px) {
  .wrapper .section .w-900 .index-news ul li .news-item::after {
    width: 4vw;
    height: 4vw;
    right: 4vw;
  }
}
.wrapper .section .w-900 .index-news ul li .news-item p {
  font-size: 20px;
  font-family: "Audiowide", sans-serif;
  font-weight: 400;
  padding-right: 20px;
}
@media (max-width: 768px) {
  .wrapper .section .w-900 .index-news ul li .news-item p {
    font-size: 4vw;
    margin-bottom: 10px;
    padding-right: 0;
  }
}
.wrapper .section .w-900 .index-news ul li .news-item h3 {
  font-size: 20px;
  line-height: 1.3;
}
@media (max-width: 768px) {
  .wrapper .section .w-900 .index-news ul li .news-item h3 {
    font-size: 4vw;
  }
}
.wrapper .section .w-900 .page {
  width: 800px;
  max-width: 100%;
  padding: 50px;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 30px;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .wrapper .section .w-900 .page {
    padding: 20px;
  }
}
.wrapper .section .w-900 .page .news-page-title {
  border-bottom: 1px solid #b6b6b6;
  padding: 20px;
}
.wrapper .section .w-900 .page .news-page-title p {
  font-size: 20px;
  font-family: "Audiowide", sans-serif;
  font-weight: 400;
  padding-right: 20px;
  color: #041f52;
}
@media (max-width: 768px) {
  .wrapper .section .w-900 .page .news-page-title p {
    font-size: 4vw;
    margin-bottom: 10px;
    padding-right: 0;
  }
}
.wrapper .section .w-900 .page .news-page-title h2 {
  font-size: 24px;
  line-height: 1.3;
  font-weight: 600;
}
@media (max-width: 768px) {
  .wrapper .section .w-900 .page .news-page-title h2 {
    font-size: 5vw;
  }
}
.wrapper .section .w-900 .page .privacy ol {
  padding-left: 20px;
}
@media (max-width: 768px) {
  .wrapper .section .w-900 .page .privacy ol {
    padding-left: 40px;
  }
}
.wrapper .section .w-900 .page .privacy ol li {
  list-style-position: outside;
  list-style: cjk-ideographic;
  font-size: 18px;
  line-height: 1.5;
}
.wrapper .section .w-900 .page .privacy ol li > ul {
  padding-left: 80px;
}
.wrapper .section .w-900 .page .privacy ol li > ul li {
  list-style-position: outside;
  list-style: decimal;
}
.wrapper .section .w-900 .page .privacy ol li .d-flex {
  display: -ms-flexbox;
  display: flex;
}
.wrapper .section .link-btn {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  padding: 50px 0;
}
@media (max-width: 768px) {
  .wrapper .section .link-btn {
    padding: 5vw 0;
  }
}
.wrapper .section .link-btn a {
  position: relative;
  width: 30%;
  display: block;
  transition: 0.3s ease all;
}
@media (max-width: 768px) {
  .wrapper .section .link-btn a {
    width: 50%;
  }
}
.wrapper .section .link-btn a:hover {
  transform: scale(0.9);
  transition: 0.3s ease all;
}
.wrapper .section .link-btn a p {
  position: absolute;
  font-size: 0;
  opacity: 0;
}
.wrapper .section .forms {
  width: 600px;
  max-width: 100%;
  margin: 0 auto;
}
.wrapper .section .forms > p {
  font-size: 18px;
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
}
@media (max-width: 768px) {
  .wrapper .section .forms > p {
    font-size: 4vw;
    padding: 20px 0;
    margin: 0;
  }
}
.wrapper .section .forms .form-group {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-align: center;
      align-items: center;
  margin-bottom: 10px;
}
.wrapper .section .forms .form-group.align-items-start {
  -ms-flex-align: start;
      align-items: start;
}
.wrapper .section .forms .form-group label {
  min-width: 30%;
  -ms-flex: 0 30%;
      flex: 0 30%;
  text-align: right;
  padding: 10px 20px;
  font-size: 20px;
  font-weight: bold;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .wrapper .section .forms .form-group label {
    min-width: 100%;
    -ms-flex: 0 100%;
        flex: 0 100%;
    font-size: 18px;
    text-align: left;
  }
}
.wrapper .section .forms .form-group .form-control {
  min-width: 70%;
  -ms-flex: 0 70%;
      flex: 0 70%;
  background-color: #e3e3e4;
  border: none;
  border-radius: 50px;
  padding: 15px 25px;
  font-size: 20px;
  font-weight: bold;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .wrapper .section .forms .form-group .form-control {
    font-size: 18px;
    min-width: 100%;
    -ms-flex: 0 100%;
        flex: 0 100%;
    padding: 15px 20px;
  }
}
.wrapper .section .forms .form-group .form-check {
  min-width: 100%;
  -ms-flex: 0 100%;
      flex: 0 100%;
}
.wrapper .section .forms .form-group .form-check .form-check-label {
  display: inline-block;
  position: relative;
  padding-left: 25px;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-weight: 500;
  font-size: 18px;
  cursor: pointer;
  text-align: left;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .wrapper .section .forms .form-group .form-check .form-check-label {
    font-size: 18px;
    padding-right: 0;
  }
}
.wrapper .section .forms .form-group .form-check .form-check-label input:checked ~ .checkmark::after {
  display: block;
  opacity: 1;
}
.wrapper .section .forms .form-group .form-check .form-check-label input {
  position: absolute;
  opacity: 0;
  height: 0;
  width: 0;
}
.wrapper .section .forms .form-group .form-check .form-check-label a {
  color: #f84962;
}
.wrapper .section .forms .form-group .form-check .form-check-label .checkmark {
  position: absolute;
  top: 12px;
  left: 0;
  height: 20px;
  width: 20px;
  background-image: url("../img/checkmark.svg");
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.wrapper .section .forms .form-group .form-check .form-check-label .checkmark::after {
  content: "";
  position: absolute;
  display: none;
  left: 0;
  top: 0;
  height: 20px;
  width: 20px;
  opacity: 0;
  background-image: url("../img/checkmark-h.svg");
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.wrapper .section .forms .form-group .form-check-inline {
  min-width: 70%;
  -ms-flex: 0 70%;
      flex: 0 70%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 0 20px;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .wrapper .section .forms .form-group .form-check-inline {
    min-width: 100%;
    -ms-flex: 0 100%;
        flex: 0 100%;
  }
}
.wrapper .section .forms .form-group .form-check-inline .form-check-radio {
  min-width: 50%;
  -ms-flex: 0 50%;
      flex: 0 50%;
}
.wrapper .section .forms .form-group .form-check-inline .form-check-radio .form-check-label {
  display: inline-block;
  position: relative;
  padding-left: 30px;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-size: 20px;
  cursor: pointer;
}
@media (max-width: 768px) {
  .wrapper .section .forms .form-group .form-check-inline .form-check-radio .form-check-label {
    font-size: 18px;
  }
}
.wrapper .section .forms .form-group .form-check-inline .form-check-radio .form-check-label input:checked ~ .checkmark-radio::after {
  display: block;
  opacity: 1;
}
.wrapper .section .forms .form-group .form-check-inline .form-check-radio .form-check-label input {
  position: absolute;
  opacity: 0;
  height: 0;
  width: 0;
}
.wrapper .section .forms .form-group .form-check-inline .form-check-radio .form-check-label .checkmark-radio {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  height: 25px;
  width: 25px;
  background-image: url("../img/checkmark.svg");
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.wrapper .section .forms .form-group .form-check-inline .form-check-radio .form-check-label .checkmark-radio::after {
  content: "";
  position: absolute;
  display: none;
  left: 0;
  top: 0;
  height: 25px;
  width: 25px;
  opacity: 0;
  background-image: url("../img/checkmark-h.svg");
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.wrapper .section .forms .form-group .verification-orm-control {
  min-width: 50%;
  -ms-flex: 0 50%;
      flex: 0 50%;
  box-sizing: border-box;
}
.wrapper .section .forms .form-group .verification_code {
  min-width: 15%;
  -ms-flex: 0 15%;
      flex: 0 15%;
  padding: 20px;
  box-sizing: border-box;
}
.wrapper .section .forms .form-group p {
  font-size: 20px;
  padding: 15px 20px;
}
.wrapper .section .forms .form-group .form-control-select {
  min-width: 70%;
  -ms-flex: 0 70%;
      flex: 0 70%;
  font-size: 20px;
  padding: 15px 30px;
  color: #5b5b5b;
  font-weight: bold;
  background-color: #e3e3e4;
  border-radius: 50px;
  border: none;
  outline: none;
  -webkit-appearance: none;
          appearance: none;
  background-image: url("../img/select_arrow.svg");
  background-repeat: no-repeat;
  background-position: right;
  background-size: 60px 12px;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .wrapper .section .forms .form-group .form-control-select {
    min-width: 100%;
    -ms-flex: 0 100%;
        flex: 0 100%;
    font-size: 18px;
    padding: 15px 20px;
    margin-bottom: 10px;
  }
}
.wrapper .section .forms .form-group .birthday {
  min-width: 70%;
  -ms-flex: 0 70%;
      flex: 0 70%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
@media (max-width: 768px) {
  .wrapper .section .forms .form-group .birthday {
    min-width: 100%;
    -ms-flex: 0 100%;
        flex: 0 100%;
  }
}
.wrapper .section .forms .form-group .birthday .form-control-select {
  min-width: 100%;
  -ms-flex: 0 100%;
      flex: 0 100%;
  margin-bottom: 10px;
}
.wrapper .section .forms .form-group .birthday .form-control-select.half {
  min-width: 49%;
  -ms-flex: 0 49%;
      flex: 0 49%;
  margin-bottom: 0;
}
.wrapper .section .forms .text-center {
  text-align: center;
  margin-top: 30px;
}
.wrapper .section .forms .text-center .form-btn {
  width: 200px;
  border: none;
  display: block;
  background-color: rgba(255, 255, 255, 0);
  margin: 0 auto 20px;
  cursor: pointer;
  transition: 0.3s ease all;
}
.wrapper .section .forms .text-center .form-btn:hover {
  transform: scale(0.95);
  transition: 0.3s ease all;
}
.wrapper .section .forms .text-center .forgot_password {
  display: block;
  font-size: 16px;
  color: #5c5c5c;
}
.wrapper .section .forms .text-center .forgot_password:hover {
  color: #041f52;
}
.wrapper .section .inner-title {
  margin-bottom: 20px;
}
.wrapper .section .inner-title h2 {
  text-align: center;
  font-size: 30px;
  color: #000;
  font-weight: 600;
}
@media (max-width: 768px) {
  .wrapper .section .inner-title h2 {
    font-size: 6vw;
  }
}
.wrapper .section .w-1240 {
  width: 1240px;
  max-width: 100%;
  margin: 0 auto;
  padding: 50px 20px;
  box-sizing: border-box;
}
@media (max-width: 1366px) {
  .wrapper .section .w-1240 {
    padding: 5vw 20px;
  }
}
.wrapper .section .w-1240 .index-ranking {
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 768px) {
  .wrapper .section .w-1240 .index-ranking {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -ms-flex-pack: center;
        justify-content: center;
  }
}
.wrapper .section .w-1240 .index-ranking .score {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex: 1 1 auto;
      flex: 1 1 auto;
}
@media (max-width: 768px) {
  .wrapper .section .w-1240 .index-ranking .score {
    min-width: 90%;
    -ms-flex: 0 90%;
        flex: 0 90%;
    margin-bottom: 5vw;
  }
}
.wrapper .section .w-1240 .index-ranking .score .score-text {
  position: absolute;
  font-size: 30px;
  color: #fff;
  top: 55%;
  left: 50%;
  letter-spacing: 2px;
  line-height: 1.5;
  transform: translate(-50%, -50%);
  text-align: center;
}
@media (max-width: 768px) {
  .wrapper .section .w-1240 .index-ranking .score .score-text {
    font-size: 20px;
  }
}
.wrapper .section .w-1240 .index-ranking .score .score-item {
  position: absolute;
  display: -ms-flexbox;
  display: flex;
  width: 90%;
  max-width: 100%;
  top: 27%;
  left: 50%;
  transform: translateX(-50%);
}
.wrapper .section .w-1240 .index-ranking .score .score-item ul {
  display: -ms-flexbox;
  display: flex;
  -ms-flex: 1 1 auto;
      flex: 1 1 auto;
  -ms-flex-direction: column;
      flex-direction: column;
}
.wrapper .section .w-1240 .index-ranking .score .score-item ul li {
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  padding: 15px 0;
  box-sizing: border-box;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
}
@media (max-width: 1240px) {
  .wrapper .section .w-1240 .index-ranking .score .score-item ul li {
    padding: 1vw 0;
  }
}
.wrapper .section .w-1240 .index-ranking .score .score-item ul li:nth-child(odd) {
  background-color: #364c75;
}
.wrapper .section .w-1240 .index-ranking .score .score-item ul li .ranking {
  width: 30%;
  color: #fff;
  font-size: 60px;
  font-family: "Audiowide", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-align: center;
}
@media (max-width: 1240px) {
  .wrapper .section .w-1240 .index-ranking .score .score-item ul li .ranking {
    font-size: 5vw;
  }
}
@media (max-width: 768px) {
  .wrapper .section .w-1240 .index-ranking .score .score-item ul li .ranking {
    font-size: 10.2vw;
  }
}
.wrapper .section .w-1240 .index-ranking .score .score-item ul li .info {
  width: 40%;
}
.wrapper .section .w-1240 .index-ranking .score .score-item ul li .info p {
  font-size: 20px;
  color: #fff;
  line-height: 1.3;
}
@media (max-width: 1240px) {
  .wrapper .section .w-1240 .index-ranking .score .score-item ul li .info p {
    font-size: 1.8vw;
  }
}
@media (max-width: 768px) {
  .wrapper .section .w-1240 .index-ranking .score .score-item ul li .info p {
    font-size: 3.5vw;
  }
}
.wrapper .section .w-1240 .sports {
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 768px) {
  .wrapper .section .w-1240 .sports {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -ms-flex-pack: center;
        justify-content: center;
  }
}
.wrapper .section .w-1240 .sports .sports-item {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex: 1 1 auto;
      flex: 1 1 auto;
  padding: 0 10px;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .wrapper .section .w-1240 .sports .sports-item {
    min-width: 75%;
    -ms-flex: 0 75%;
        flex: 0 75%;
    margin-bottom: 5vw;
  }
}
.wrapper .section .w-1240 .sports .sports-item .word {
  position: absolute;
  top: 0;
  font-size: 0;
  opacity: 0;
}
.wrapper .section .w-1240 .lottery {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.wrapper .section .w-1240 .lottery .lottery-item {
  min-width: 33%;
  -ms-flex: 0 33%;
      flex: 0 33%;
  padding: 10px;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .wrapper .section .w-1240 .lottery .lottery-item {
    min-width: 50%;
    -ms-flex: 0 50%;
        flex: 0 50%;
    padding: 5px;
  }
}
.wrapper .section .w-1240 .content-inner {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.wrapper .section .w-1240 .content-inner .sidebar {
  min-width: 21%;
  -ms-flex: 0 21%;
      flex: 0 21%;
  border-radius: 20px;
  padding: 20px;
  box-sizing: border-box;
  background-image: url("../img/sidebar-bg.png");
  background-size: 100%;
  background-repeat: repeat-y;
  -ms-flex-item-align: baseline;
      align-self: baseline;
}
@media (max-width: 768px) {
  .wrapper .section .w-1240 .content-inner .sidebar {
    min-width: 100%;
    -ms-flex: 0 100%;
        flex: 0 100%;
    margin-bottom: 20px;
  }
}
@media (max-width: 768px) {
  .wrapper .section .w-1240 .content-inner .sidebar ul {
    display: none;
  }
}
.wrapper .section .w-1240 .content-inner .sidebar ul::before, .wrapper .section .w-1240 .content-inner .sidebar ul::after {
  content: "";
  width: 100%;
  height: 20px;
  display: block;
  background-image: url("../img/sidebar-deco.svg");
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  padding: 5px 0;
}
.wrapper .section .w-1240 .content-inner .sidebar ul li {
  border-bottom: 1px solid #fff;
}
.wrapper .section .w-1240 .content-inner .sidebar ul li:last-child {
  border-bottom: none;
}
.wrapper .section .w-1240 .content-inner .sidebar ul li a {
  position: relative;
  text-decoration: none;
  font-size: 20px;
  display: block;
  color: #fff;
  padding: 15px 40px 15px 0;
}
@media (min-width: 768px) {
  .wrapper .section .w-1240 .content-inner .sidebar ul li a:hover::after {
    opacity: 1;
    right: 0px;
    transition: 0.3s ease all;
  }
}
.wrapper .section .w-1240 .content-inner .sidebar ul li a.active::after {
  opacity: 1;
  right: 0px;
  transition: 0.3s ease all;
}
.wrapper .section .w-1240 .content-inner .sidebar ul li a::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
  background-image: url("../img/more.svg");
  background-repeat: no-repeat;
  transition: 0.3s ease all;
  opacity: 0;
}
@media (max-width: 768px) {
  .wrapper .section .w-1240 .content-inner .sidebar ul li a::after {
    width: 4vw;
    height: 4vw;
    right: 4vw;
  }
}
.wrapper .section .w-1240 .content-inner .sidebar .form-control-select {
  display: none;
}
@media (max-width: 768px) {
  .wrapper .section .w-1240 .content-inner .sidebar .form-control-select {
    display: block;
    width: 100%;
    max-width: 100%;
    font-size: 16px;
    padding: 15px 20px;
    font-weight: bold;
    border: none;
    border-radius: 50px;
    background-color: #fff;
    color: #000;
    box-sizing: border-box;
    outline: none;
    -webkit-appearance: none;
            appearance: none;
    background-image: url("../img/select_arrow.svg");
    background-repeat: no-repeat;
    background-position: right;
    background-size: 60px 12px;
  }
}
.wrapper .section .w-1240 .content-inner .page {
  min-width: 77%;
  -ms-flex: 0 77%;
      flex: 0 77%;
  max-width: 100%;
  min-height: 50vh;
  padding: 50px;
  background-color: #fff;
  border-radius: 30px;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .wrapper .section .w-1240 .content-inner .page {
    min-width: 100%;
    -ms-flex: 0 100%;
        flex: 0 100%;
    padding: 30px 20px;
  }
}
.wrapper .section .w-1240 .content-inner .page .choose-bar {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .wrapper .section .w-1240 .content-inner .page .choose-bar {
    -ms-flex-direction: column;
        flex-direction: column;
    margin-bottom: 10px;
  }
}
.wrapper .section .w-1240 .content-inner .page .choose-bar .search {
  position: relative;
  margin: 0 5px;
}
.wrapper .section .w-1240 .content-inner .page .choose-bar .search .form-control {
  width: 300px;
  max-width: 100%;
  font-size: 18px;
  padding: 15px 60px 15px 30px;
  color: #5b5b5b;
  font-weight: bold;
  background-color: #e3e3e4;
  border-radius: 50px;
  border: none;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .wrapper .section .w-1240 .content-inner .page .choose-bar .search .form-control {
    font-size: 16px;
    padding: 15px 20px;
    margin-bottom: 10px;
  }
}
.wrapper .section .w-1240 .content-inner .page .choose-bar .search a {
  position: absolute;
  background-image: url("../img/search.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 55%;
  padding: 16px;
  width: 50px;
  height: 50px;
  box-sizing: border-box;
  right: 10px;
  top: 0;
}
.wrapper .section .w-1240 .content-inner .page .choose-bar .form-control-select {
  width: 300px;
  max-width: 100%;
  font-size: 18px;
  padding: 15px 30px;
  color: #5b5b5b;
  font-weight: bold;
  background-color: #e3e3e4;
  border-radius: 50px;
  border: none;
  margin: 0 5px;
  outline: none;
  -webkit-appearance: none;
          appearance: none;
  background-image: url("../img/select_arrow.svg");
  background-repeat: no-repeat;
  background-position: right;
  background-size: 60px 12px;
}
@media (max-width: 768px) {
  .wrapper .section .w-1240 .content-inner .page .choose-bar .form-control-select {
    font-size: 16px;
    padding: 15px 20px;
    margin-bottom: 10px;
  }
}
.wrapper .section .w-1240 .content-inner .page .score-list table {
  width: 100%;
  max-width: 100%;
}
.wrapper .section .w-1240 .content-inner .page .score-list table thead {
  background-color: #ecedee;
  position: sticky;
  left: 0;
  top: 90px;
  z-index: 10;
}
@media (max-width: 1366px) {
  .wrapper .section .w-1240 .content-inner .page .score-list table thead {
    top: 76px;
  }
}
.wrapper .section .w-1240 .content-inner .page .score-list table thead th {
  font-weight: bold;
}
@media (max-width: 768px) {
  .wrapper .section .w-1240 .content-inner .page .score-list table thead th {
    font-size: 14px;
    padding: 10px 5px;
    vertical-align: middle;
  }
}
.wrapper .section .w-1240 .content-inner .page .score-list table tr:hover {
  background-color: #f3f3f3;
}
.wrapper .section .w-1240 .content-inner .page .score-list table th,
.wrapper .section .w-1240 .content-inner .page .score-list table td {
  padding: 15px;
  font-size: 18px;
  text-align: center;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .wrapper .section .w-1240 .content-inner .page .score-list table th,
  .wrapper .section .w-1240 .content-inner .page .score-list table td {
    font-size: 14px;
    padding: 10px 3px;
    vertical-align: middle;
  }
}
.wrapper .section .w-1240 .content-inner .page .score-list table .pink {
  color: #f43c69;
}
.wrapper .section .w-1240 .content-inner .page .score-list table .blue {
  color: #041f52;
}
.wrapper .section .w-1240 .content-inner .page .score-list table tbody tr {
  border-bottom: 1px solid #ecedee;
}
.wrapper .section .w-1240 .content-inner .page .score-list table tbody tr:nth-child(5n) {
  border-bottom: 2px solid #b0b0b1;
}
.wrapper .section .w-1240 .content-inner .page .pagination {
  margin-top: 30px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
}
@media (max-width: 768px) {
  .wrapper .section .w-1240 .content-inner .page .pagination {
    margin-top: 40px;
  }
}
.wrapper .section .w-1240 .content-inner .page .pagination .page-item {
  margin: 0 5px 5px;
}
@media (max-width: 768px) {
  .wrapper .section .w-1240 .content-inner .page .pagination .page-item {
    margin: 0 1px 5px;
  }
}
.wrapper .section .w-1240 .content-inner .page .pagination .page-link {
  text-decoration: none;
  border: none;
  font-size: 18px;
  color: #000;
  border-radius: 50px;
  padding: 4px 14px 8px;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .wrapper .section .w-1240 .content-inner .page .pagination .page-link {
    font-size: 16px;
    padding: 4px 8px;
  }
}
.wrapper .section .w-1240 .content-inner .page .pagination .page-link:hover {
  background-color: #dee6f5;
}
@media (max-width: 768px) {
  .wrapper .section .w-1240 .content-inner .page .pagination .page-link:hover {
    background-color: #fff;
  }
}
.wrapper .section .w-1240 .content-inner .page .pagination .page-link.active {
  color: #fff;
  background-color: #041f52;
}
@media (max-width: 768px) {
  .wrapper .section .w-1240 .content-inner .page .pagination .page-link.active {
    padding: 4px 12px;
  }
}
.wrapper .section .w-1240 .content-inner .page .pagination .arrows {
  display: block;
  width: 60px;
  padding: 0 10px;
}
@media (max-width: 425px) {
  .wrapper .section .w-1240 .content-inner .page .pagination .arrows {
    width: 50px;
  }
}
.wrapper .section .w-1240 .content-inner .page .pagination .arrows:hover {
  background-color: #fff;
}
.wrapper .section .w-1240 .content-inner .page .member {
  width: 500px;
  max-width: 100%;
  margin: 0 auto;
}
.wrapper .section .w-1240 .content-inner .page .member .item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-align: center;
      align-items: center;
  border-bottom: 1px solid #f1f1f1;
}
.wrapper .section .w-1240 .content-inner .page .member .item b {
  min-width: 40%;
  -ms-flex: 0 40%;
      flex: 0 40%;
  font-weight: bold;
  font-size: 18px;
  padding: 20px;
  text-align: right;
  box-sizing: border-box;
}
.wrapper .section .w-1240 .content-inner .page .member .item p {
  min-width: 60%;
  -ms-flex: 0 60%;
      flex: 0 60%;
  font-size: 18px;
  padding: 20px;
  box-sizing: border-box;
}
.wrapper .section .w-1240 .content-inner .page .member .item p.check {
  min-width: auto;
  -ms-flex: 0 auto;
      flex: 0 auto;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: center;
      align-self: center;
  background-color: #409cff;
  color: #fff;
  border-radius: 20px;
  padding: 10px 20px;
  margin-left: 20px;
}
@media (max-width: 768px) {
  .wrapper .section .w-1240 .content-inner .page .member .item p.check {
    font-size: 16px;
  }
}
.wrapper .section .w-1240 .content-inner .page .member .item p.no-check {
  min-width: auto;
  -ms-flex: 0 auto;
      flex: 0 auto;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: center;
      align-self: center;
  background-color: #f1f1f1;
  color: #000;
  border-radius: 20px;
  padding: 10px 20px;
  margin-left: 20px;
}
@media (max-width: 768px) {
  .wrapper .section .w-1240 .content-inner .page .member .item p.no-check {
    font-size: 16px;
  }
}
.wrapper .section .w-1240 .content-inner .page .member .item p.pink {
  color: #f43c69;
  min-width: auto;
  -ms-flex: 0 auto;
      flex: 0 auto;
  font-weight: bold;
  display: -ms-flexbox;
  display: flex;
}
.wrapper .section .w-1240 .content-inner .page .member .item span a {
  text-decoration: none;
  min-width: auto;
  -ms-flex: 0 auto;
      flex: 0 auto;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: center;
      align-self: center;
  background-color: #f43c69;
  color: #fff;
  border-radius: 20px;
  padding: 10px 20px;
  font-size: 18px;
  transition: 0.3s ease all;
}
@media (max-width: 768px) {
  .wrapper .section .w-1240 .content-inner .page .member .item span a {
    font-size: 16px;
  }
}
.wrapper .section .w-1240 .content-inner .page .member .item span a:hover {
  transform: scale(0.95);
  transition: 0.3s ease all;
}
.wrapper .section .w-1240 .content-inner .page .member-score {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.wrapper .section .w-1240 .content-inner .page .member-score .item {
  min-width: 50%;
  -ms-flex: 0 50%;
      flex: 0 50%;
  padding: 0 10px;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .wrapper .section .w-1240 .content-inner .page .member-score .item {
    min-width: 100%;
    -ms-flex: 0 100%;
        flex: 0 100%;
    margin-bottom: 20px;
  }
}
.wrapper .section .w-1240 .content-inner .page .events {
  display: block;
  margin-bottom: 50px;
}
.wrapper .section .w-1240 .content-inner .page .events:last-of-type {
  margin-bottom: 0;
}
.wrapper .section .w-1240 .content-inner .page .events h3 {
  display: inline-block;
  font-size: 20px;
  color: #fff;
  padding: 10px 20px;
  border-radius: 50px;
  background-color: #000;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .wrapper .section .w-1240 .content-inner .page .events h3 {
    font-size: 4vw;
  }
}
.wrapper .section .w-1240 .content-inner .page .events span {
  display: inline-block;
}
.wrapper .section .w-1240 .content-inner .page .events span.whiizu {
  width: 100px;
  margin: 0 5px;
  vertical-align: -5px;
}
.wrapper .section .w-1240 .content-inner .page .events span a {
  color: #1e3664;
}
.wrapper .section .w-1240 .content-inner .page .events span a:hover {
  color: #1c5ef2;
}
.wrapper .section .w-1240 .content-inner .page .events p {
  display: block;
  font-size: 20px;
  color: #000;
  margin-bottom: 20px;
  line-height: 1.6;
  font-weight: 500;
}
@media (max-width: 768px) {
  .wrapper .section .w-1240 .content-inner .page .events p {
    font-size: 4vw;
  }
}
.wrapper .section .w-1240 .content-inner .page .events ol {
  padding-left: 20px;
}
.wrapper .section .w-1240 .content-inner .page .events ol li {
  list-style: decimal;
  list-style-position: outside;
  font-size: 20px;
  color: #000;
  line-height: 1.5;
  font-weight: 500;
}
@media (max-width: 768px) {
  .wrapper .section .w-1240 .content-inner .page .events ol li {
    font-size: 4vw;
  }
}
.wrapper .section .w-1240 .content-inner .page .events .photo {
  margin-bottom: 20px;
}
.wrapper .section .w-1240 .content-inner .page .events .photo img {
  width: auto;
  max-width: 100%;
}
.wrapper .section .w-1240 .content-inner .page .events .events-table {
  margin-bottom: 20px;
}
.wrapper .section .w-1240 .content-inner .page .events .events-table.table-layout-fixed table {
  table-layout: fixed;
}
.wrapper .section .w-1240 .content-inner .page .events .events-table.table-hover tbody tr:hover {
  background-color: #f3f3f3;
}
.wrapper .section .w-1240 .content-inner .page .events .events-table table {
  width: 100%;
  max-width: 100%;
}
.wrapper .section .w-1240 .content-inner .page .events .events-table table thead {
  background-color: #ecedee;
  position: sticky;
  left: 0;
  top: 90px;
  z-index: 10;
}
@media (max-width: 1366px) {
  .wrapper .section .w-1240 .content-inner .page .events .events-table table thead {
    top: 76px;
  }
}
.wrapper .section .w-1240 .content-inner .page .events .events-table table thead th {
  font-weight: bold;
  line-height: 1.5;
  vertical-align: middle;
}
@media (max-width: 768px) {
  .wrapper .section .w-1240 .content-inner .page .events .events-table table thead th {
    font-size: 14px;
    padding: 10px 5px;
    vertical-align: middle;
  }
}
.wrapper .section .w-1240 .content-inner .page .events .events-table table th,
.wrapper .section .w-1240 .content-inner .page .events .events-table table td {
  padding: 15px;
  font-size: 18px;
  text-align: center;
  box-sizing: border-box;
  vertical-align: middle;
  line-height: 1.3;
}
@media (max-width: 768px) {
  .wrapper .section .w-1240 .content-inner .page .events .events-table table th,
  .wrapper .section .w-1240 .content-inner .page .events .events-table table td {
    font-size: 14px;
    padding: 10px 3px;
    vertical-align: middle;
  }
}
.wrapper .section .w-1240 .content-inner .page .events .events-table table .pink {
  color: #f43c69;
}
.wrapper .section .w-1240 .content-inner .page .events .events-table table .blue {
  color: #041f52;
}
.wrapper .section .w-1240 .content-inner .page .events .events-table table .bg-blue {
  color: #fff;
  background-color: #041f52;
}
.wrapper .section .w-1240 .content-inner .page .events .events-table table .bg-black {
  color: #fff;
  background-color: #000;
}
.wrapper .section .w-1240 .content-inner .page .events .events-table table .bg-orange {
  color: #fff;
  background-color: #e47b00;
}
.wrapper .section .w-1240 .content-inner .page .events .events-table table .bg-orange.bg-deep {
  background-color: #d6790b;
}
.wrapper .section .w-1240 .content-inner .page .events .events-table table .bg-gray {
  background-color: #f1f1f1;
}
.wrapper .section .w-1240 .content-inner .page .events .events-table table .bg-gray.bg-deep {
  background-color: #ebebeb;
}
.wrapper .section .w-1240 .content-inner .page .events .events-table table .bg-gray.bg-shallow {
  background-color: #f7f7f7;
}
.wrapper .section .w-1240 .content-inner .page .events .events-table table .border-gray {
  border-bottom: 1px solid #ecedee;
}
.wrapper .section .w-1240 .content-inner .page .events .events-table table .male {
  color: #fff;
  background-color: #3e96f7;
}
.wrapper .section .w-1240 .content-inner .page .events .events-table table .female {
  color: #fff;
  background-color: #f43c69;
}
.wrapper .section .w-1240 .content-inner .page .events .events-notice {
  position: relative;
  background-color: #000;
  padding: 40px;
  margin-bottom: 20px;
}
.wrapper .section .w-1240 .content-inner .page .events .events-notice::before {
  content: "";
  position: absolute;
  width: calc(100% - 40px);
  height: calc(100% - 40px);
  top: 50%;
  left: 50%;
  border: 1px solid #fff;
  transform: translate(-50%, -50%);
}
.wrapper .section .w-1240 .content-inner .page .events .events-notice p {
  font-size: 16px;
  color: #fff;
  margin: 0;
}
.wrapper .section .w-1240 .content-inner .page .events .location-item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-align: center;
      align-items: center;
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid #eee;
}
.wrapper .section .w-1240 .content-inner .page .events .location-item .map {
  min-width: 50%;
  -ms-flex: 0 50%;
      flex: 0 50%;
}
@media (max-width: 768px) {
  .wrapper .section .w-1240 .content-inner .page .events .location-item .map {
    min-width: 100%;
    -ms-flex: 0 100%;
        flex: 0 100%;
    margin-bottom: 10px;
  }
}
.wrapper .section .w-1240 .content-inner .page .events .location-item .map iframe {
  width: 100%;
  height: 300px;
}
@media (max-width: 768px) {
  .wrapper .section .w-1240 .content-inner .page .events .location-item .map iframe {
    height: 250px;
  }
}
.wrapper .section .w-1240 .content-inner .page .events .location-item .info {
  min-width: 50%;
  -ms-flex: 0 50%;
      flex: 0 50%;
  padding: 20px;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .wrapper .section .w-1240 .content-inner .page .events .location-item .info {
    min-width: 100%;
    -ms-flex: 0 100%;
        flex: 0 100%;
    padding: 0;
  }
}
.wrapper .section .w-1240 .content-inner .page .events .location-item .info h4 {
  font-size: 24px;
  padding: 10px;
  color: #000;
  font-weight: bold;
  border-bottom: 1px solid #5b5b5b;
}
.wrapper .section .w-1240 .content-inner .page .events .location-item .info p {
  font-size: 18px;
  font-weight: bold;
  padding: 10px;
}
@media (max-width: 768px) {
  .wrapper .section .w-1240 .content-inner .page .events .location-item .info p {
    margin: 0;
  }
}
.wrapper .section .w-1240 .content-inner .page .events .location-item .info .item-all {
  display: -ms-flexbox;
  display: flex;
}
.wrapper .section .w-1240 .content-inner .page .events .location-item .info .item-all .item {
  width: 60px;
  margin: 0 10px;
  font-size: 16px;
  color: #041f52;
  text-align: center;
  font-weight: bold;
}
.wrapper .section .w-1240 .content-inner .page .events .location-item .info .item-all .item img {
  margin-bottom: 5px;
}
.wrapper .section .w-1240 .content-inner .page .events .text-center {
  text-align: center;
}
.wrapper .section .w-1240 .content-inner .page .events .refund-btn {
  text-decoration: none;
  display: inline-block;
  padding: 15px 30px;
  font-size: 18px;
  color: #fff;
  background-color: #b4b4b4;
  border-radius: 50px;
  margin: 20px auto;
  transition: 0.3s ease all;
}
.wrapper .section .w-1240 .content-inner .page .events .refund-btn:hover {
  transform: scale(0.95);
  transition: 0.3s ease all;
}
.wrapper .section .w-1240 .content-inner .page .qa .qa-item {
  margin-bottom: 10px;
}
.wrapper .section .w-1240 .content-inner .page .qa .qa-item.op .qa-q {
  background-color: #041f52;
}
.wrapper .section .w-1240 .content-inner .page .qa .qa-item.op .qa-q::after {
  opacity: 0;
}
.wrapper .section .w-1240 .content-inner .page .qa .qa-item:first-child .qa-a {
  display: block;
}
.wrapper .section .w-1240 .content-inner .page .qa .qa-item .qa-q {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  position: relative;
  color: #fff;
  font-size: 20px;
  padding: 10px 50px 10px 20px;
  line-height: 1.3;
  background-color: #000;
  cursor: pointer;
}
@media (max-width: 1919px) {
  .wrapper .section .w-1240 .content-inner .page .qa .qa-item .qa-q {
    font-size: 1.3vw;
    padding: 1vw 3vw 1vw 2vw;
  }
}
@media (max-width: 768px) {
  .wrapper .section .w-1240 .content-inner .page .qa .qa-item .qa-q {
    font-size: 4vw;
    padding: 4vw 10vw 4vw 3vw;
  }
}
.wrapper .section .w-1240 .content-inner .page .qa .qa-item .qa-q span {
  font-size: 26px;
  padding-right: 10px;
  font-family: "Audiowide", sans-serif;
  font-weight: 400;
  font-style: normal;
}
@media (max-width: 1919px) {
  .wrapper .section .w-1240 .content-inner .page .qa .qa-item .qa-q span {
    font-size: 1.6vw;
  }
}
@media (max-width: 768px) {
  .wrapper .section .w-1240 .content-inner .page .qa .qa-item .qa-q span {
    font-size: 6vw;
  }
}
.wrapper .section .w-1240 .content-inner .page .qa .qa-item .qa-q::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 3px;
  background-color: #fff;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 768px) {
  .wrapper .section .w-1240 .content-inner .page .qa .qa-item .qa-q::before {
    width: 15px;
    height: 3px;
  }
}
.wrapper .section .w-1240 .content-inner .page .qa .qa-item .qa-q::after {
  content: "";
  position: absolute;
  width: 3px;
  height: 20px;
  background-color: #fff;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 768px) {
  .wrapper .section .w-1240 .content-inner .page .qa .qa-item .qa-q::after {
    height: 15px;
    width: 3px;
    right: 26px;
  }
}
.wrapper .section .w-1240 .content-inner .page .qa .qa-item .qa-a {
  display: none;
  color: #000;
  line-height: 1.5;
  font-size: 20px;
  padding: 15px 50px 15px 20px;
}
@media (max-width: 1919px) {
  .wrapper .section .w-1240 .content-inner .page .qa .qa-item .qa-a {
    font-size: 1.3vw;
    padding: 1vw 2vw;
  }
}
@media (max-width: 768px) {
  .wrapper .section .w-1240 .content-inner .page .qa .qa-item .qa-a {
    font-size: 4vw;
    padding: 4vw;
    text-align: justify;
  }
}
.wrapper .section .w-1240 .content-inner .page .qa .qa-item .qa-a > span {
  display: inline-block;
  font-size: 26px;
  padding-right: 10px;
  font-family: "Audiowide", sans-serif;
  font-weight: 400;
  font-style: normal;
  vertical-align: top;
}
@media (max-width: 1919px) {
  .wrapper .section .w-1240 .content-inner .page .qa .qa-item .qa-a > span {
    font-size: 1.6vw;
  }
}
@media (max-width: 768px) {
  .wrapper .section .w-1240 .content-inner .page .qa .qa-item .qa-a > span {
    font-size: 6vw;
  }
}
.wrapper .section .w-1240 .content-inner .page .qa .qa-item .qa-a p {
  display: inline-block;
  width: calc(100% - 45px);
}
.wrapper .section .w-1240 .content-inner .page .qa .qa-item .qa-a p span a {
  color: #000;
  font-size: 20px;
  font-family: "Noto Sans TC", sans-serif;
}
.wrapper .section .w-1240 .sponsors {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.wrapper .section .w-1240 .sponsors .sponsors-item {
  min-width: 25%;
  -ms-flex: 0 25%;
      flex: 0 25%;
}
@media (max-width: 768px) {
  .wrapper .section .w-1240 .sponsors .sponsors-item {
    min-width: 50%;
    -ms-flex: 0 50%;
        flex: 0 50%;
  }
}
.wrapper .section .w-1240 .sponsors .sponsors-item a {
  display: block;
  padding: 40px 20px;
  background-image: url("../img/sponsors-bg.svg");
  background-size: 90%;
  background-position: center;
  background-repeat: no-repeat;
  box-sizing: border-box;
  transition: 0.3s ease all;
}
@media (max-width: 768px) {
  .wrapper .section .w-1240 .sponsors .sponsors-item a {
    padding: 20px 10px;
    margin-bottom: 10px;
  }
}
.wrapper .section .w-1240 .sponsors .sponsors-item a:hover {
  transform: scale(0.95);
  transition: 0.3s ease all;
}
.wrapper .section .w-1240 .sponsors .sponsors-item a img {
  display: block;
  width: 90%;
  margin: 0 auto;
}
.wrapper .section .marquee {
  border-top: 5px solid #000;
  border-bottom: 5px solid #000;
  padding: 20px 0;
  background-color: #fff;
  overflow: hidden;
  color: #000;
  font-size: 5vw;
  font-weight: bold;
  white-space: nowrap;
  margin-top: auto;
  min-width: 100%;
  -ms-flex: 0 100%;
      flex: 0 100%;
}
@media (max-width: 1366px) {
  .wrapper .section .marquee {
    padding: 1vw 0;
  }
}
@media (max-width: 768px) {
  .wrapper .section .marquee {
    padding: 4vw 0;
  }
}
.wrapper .section .marquee [data-run] {
  position: relative;
  font-size: 3vw;
  padding-top: 3vw;
  font-family: "Audiowide", sans-serif;
  font-weight: 400;
  color: #000;
}
@media (max-width: 768px) {
  .wrapper .section .marquee [data-run] {
    font-size: 6vw;
    padding-top: 6vw;
  }
}
.wrapper .section .marquee [data-run]::before {
  content: "" attr(data-run);
  position: absolute;
  display: block;
  top: 0;
  right: 0;
  animation: run 20s linear infinite;
}
.wrapper .section .marquee [data-run]::after {
  content: "" attr(data-run);
  position: absolute;
  display: block;
  top: 0;
  left: 100%;
  animation: run 20s linear infinite;
}
.wrapper .footer {
  position: relative;
  background-color: #fff;
  z-index: 1;
}
.wrapper .footer .content {
  width: 1240px;
  max-width: 100%;
  margin: 0 auto;
  padding: 50px 20px;
  box-sizing: border-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 768px) {
  .wrapper .footer .content {
    padding: 10vw 20px;
  }
}
.wrapper .footer .content .sponsors .title {
  position: relative;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .wrapper .footer .content .sponsors .title {
    margin-bottom: 10px;
  }
}
.wrapper .footer .content .sponsors .title p {
  background-image: url("../img/title-bg.svg");
  font-size: 18px;
  padding: 12px 40px;
  background-size: 100%;
  background-repeat: no-repeat;
  color: #fff;
  display: inline-block;
}
@media (max-width: 1366px) {
  .wrapper .footer .content .sponsors .title p {
    font-size: 2vw;
  }
}
@media (max-width: 768px) {
  .wrapper .footer .content .sponsors .title p {
    font-size: 3.5vw;
  }
}
.wrapper .footer .content .sponsors.sponsors-1 {
  min-width: 20%;
  -ms-flex: 0 20%;
      flex: 0 20%;
}
@media (max-width: 768px) {
  .wrapper .footer .content .sponsors.sponsors-1 {
    min-width: 100%;
    -ms-flex: 0 100%;
        flex: 0 100%;
  }
}
.wrapper .footer .content .sponsors.sponsors-5 {
  min-width: 100%;
  -ms-flex: 0 100%;
      flex: 0 100%;
}
.wrapper .footer .content .sponsors.sponsors-5 ul {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.wrapper .footer .content .sponsors.sponsors-5 ul li {
  min-width: 20%;
  -ms-flex: 0 20%;
      flex: 0 20%;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .wrapper .footer .content .sponsors.sponsors-5 ul li {
    min-width: 50%;
    -ms-flex: 0 50%;
        flex: 0 50%;
  }
}
.wrapper .footer .content .sponsors ul {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.wrapper .footer .content .sponsors ul li {
  padding-right: 20px;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .wrapper .footer .content .sponsors ul li {
    min-width: 50%;
    -ms-flex: 0 50%;
        flex: 0 50%;
    padding: 0 5px;
    margin-bottom: 10px;
    box-sizing: border-box;
  }
}
.wrapper .footer .content .sponsors ul li a {
  display: block;
  border: 2px solid #e6e6e6;
  border-radius: 10px;
  overflow: hidden;
  transition: 0.3s ease all;
}
.wrapper .footer .content .sponsors ul li a:hover {
  transform: scale(0.95);
  transition: 0.3s ease all;
}
.wrapper .copyright {
  background-color: #000;
  font-size: 16px;
  padding: 15px;
  text-align: center;
  color: #fff;
}
@media (max-width: 768px) {
  .wrapper .copyright {
    font-size: 12px;
  }
}

[ani] {
  animation-fill-mode: both;
  backface-visibility: hidden;
  transform-style: preserve-3d;
}
[ani]:not(.ani-active) {
  animation-name: none;
  opacity: 0;
  visibility: hidden;
}

@keyframes run {
  to {
    transform: translateX(-100%);
  }
}
@keyframes menu_run {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
    left: 50%;
    transform: translate3d(-50%, 0, 0);
  }
}
@keyframes menu_run_lg {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
    left: 90%;
    transform: translate3d(-50%, 0, 0);
  }
}
@keyframes star {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes ani-countdown {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes ani-apply {
  from {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  to {
    transform: scale(1);
  }
}
@keyframes ani-apply {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  to {
    transform: scale(1);
  }
}/*# sourceMappingURL=style.css.map */