@charset "UTF-8";

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-family: "Microsoft YaHei", "Microsoft JhengHei";
  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;
  background-color: #000;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

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

header {
  background-color: #000f20;
  border-bottom: 1px solid #c9b176;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1;
}

header .logo {
  width: 140px;
  height: 60px;
  background-image: url("../img/logo.png");
  background-position: top center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  margin: 0 auto;
}

header .logo a {
  width: 100%;
  height: 100%;
  display: inline-block;
}

footer {
  background-color: #000000;
  bottom: 0;
  width: 100%;
  position: fixed;
  padding: 0 0 5vh;
  z-index: 1;
}

@media (max-width: 768px) {
  footer {
    padding: 5px 0 30px;
  }
}

@media (max-width: 500px) {
  footer {
    padding: 5px 0 2vh;
  }
}

@media (max-width: 350px) {
  footer {
    padding: 5px 0 1vh;
  }
}

footer .footer-top {
  width: 100%;
}

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

footer .footer-top img {
  width: 100%;
}

footer .footer-wrapper {
  color: #767676;
  height: 100%;
  width: 100%;
  margin: auto;
  max-width: 1050px;
  padding: 0 5%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media (max-width: 1200px) {
  footer .footer-wrapper {
    padding: 0;
  }
}

footer .footer-wrapper .text {
  display: block;
  max-width: 50%;
}

@media (max-width: 575px) {
  footer .footer-wrapper .text {
    font-size: 0.75rem;
    max-width: 100%;
  }
}

footer .footer-wrapper .text ul {
  padding: 0 10px 0 30px;
}

@media (max-width: 1024px) {
  footer .footer-wrapper .text ul {
    padding: 0 10px 0 3vw;
  }
}

footer .footer-wrapper .text ul li {
  margin: 10px 0;
}

@media (max-width: 575px) {
  footer .footer-wrapper .text ul li {
    margin: 0 0 10px;
  }
}

footer .footer-wrapper .website {
  max-width: 250px;
  width: calc(50% - 30px);
  height: 45px;
  margin-right: 30px;
}

@media (max-width: 1024px) {
  footer .footer-wrapper .website {
    margin-right: 3vw;
    width: calc(50% - 3vw);
  }
}

@media (max-width: 575px) {
  footer .footer-wrapper .website {
    display: none;
  }
}

.main {
  background-color: #000;
  position: absolute;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
}

.main .container {
  background-image: url("../img/bg.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  max-width: 1900px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: auto;
}

@media (max-width: 1200px) {
  .main .container {
    background-image: url("../img/bg_mb.jpg");
  }
}

@media (max-width: 768px) {
  .main .container {
    top: 0;
  }
}

.main .container .box {
  max-width: 660px;
  width: 90%;
  padding: 80px 0 150px 370px;
  margin: auto;
}

@media (max-width: 1200px) {
  .main .container .box {
    padding: 80px 0 150px;
  }
}

@media (max-width: 768px) {
  .main .container .box {
    padding: 80px 0 120px;
  }
}

@media (max-width: 500px) {
  .main .container .box {
    padding: 80px 0 90px;
  }
}

@media (max-width: 350px) {
  .main .container .box {
    padding: 70px 0 80px;
  }
}

.main .container .box .content {
  width: 100%;
  height: 100%;
}

.main .container .box .content .title {
  width: 100%;
  margin: 0 0 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-animation: lightSpeedIn 1s alternate;
  animation: lightSpeedIn 1s alternate;
}

@media (min-width: 1201px) and (max-height: 800px) {
  .main .container .box .content .title {
    margin: 0 0 20px;
  }
}

@media (max-width: 350px) {
  .main .container .box .content .title {
    margin: 0 0 15px;
  }
}

.main .container .box .content .title img {
  max-width: 100%;
}

.main .container .box .content .title img:first-child {
  max-height: calc(100vh - 670px);
  min-height: 100px;
}

@media (max-width: 1200px) {
  .main .container .box .content .title img:first-child {
    display: none;
  }
}

.main .container .box .content .title img:last-child {
  max-height: calc(100vh - 670px);
  min-height: 70px;
}

@media (min-width: 1201px) {
  .main .container .box .content .title img:last-child {
    display: none;
  }
}

@media (max-width: 700px) {
  .main .container .box .content .title img:last-child {
    max-height: calc(100vh - 570px);
  }
}

@-webkit-keyframes lightSpeedIn {
  0% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    -ms-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: translateX(-20%) skewX(30deg);
    -ms-transform: translateX(-20%) skewX(30deg);
    transform: translateX(-20%) skewX(30deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: translateX(0%) skewX(-15deg);
    -ms-transform: translateX(0%) skewX(-15deg);
    transform: translateX(0%) skewX(-15deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(0%) skewX(0deg);
    -ms-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
}

@keyframes lightSpeedIn {
  0% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    -ms-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: translateX(-20%) skewX(30deg);
    -ms-transform: translateX(-20%) skewX(30deg);
    transform: translateX(-20%) skewX(30deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: translateX(0%) skewX(-15deg);
    -ms-transform: translateX(0%) skewX(-15deg);
    transform: translateX(0%) skewX(-15deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(0%) skewX(0deg);
    -ms-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
}

.main .container .box .content .news {
  width: 100%;
  height: 50%;
  background-image: url("../img/news_border.png");
  background-position: top center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding: 15px 0 2.3vh;
  position: relative;
  -webkit-animation: bounce 1s alternate;
  animation: bounce 1s alternate;
  margin: 0 0 25px;
}

@media (max-width: 1200px) {
  .main .container .box .content .news {
    height: 55%;
    padding: 15px 0 25px;
  }
}

@media (max-width: 575px) {
  .main .container .box .content .news {
    height: 65%;
    margin: 0 0 20px;
    padding: 15px 0;
  }
}

@-webkit-keyframes bounce {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }

  90% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes bounce {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }

  90% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}

.main .container .box .content .news .imgTitle {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 115px;
}

@media (max-width: 500px) {
  .main .container .box .content .news .imgTitle {
    width: 100px;
  }
}

.main .container .box .content .news .imgTitle:before {
  content: "";
  display: block;
  width: 100%;
  padding: 0 0 29.5%;
  background-image: url("../img/new_title.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
}

.main .container .box .content .news .coin_left {
  display: none;
}

@media (max-width: 1200px) {
  .main .container .box .content .news .coin_left {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transform: translate(-50%, -40%);
    -ms-transform: translate(-50%, -40%);
    transform: translate(-50%, -40%);
    width: 18.6vw;
  }

  .main .container .box .content .news .coin_left:before {
    content: "";
    display: block;
    width: 100%;
    padding: 0 0 90%;
    background-image: url("../img/coin_left_mb.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
  }
}

.main .container .box .content .news .site {
  margin: 10px auto;
  width: 80%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media (max-width: 1200px) {
  .main .container .box .content .news .site {
    height: 15%;
    margin: 20px auto;
  }
}

@media (max-width: 575px) {
  .main .container .box .content .news .site {
    margin: 10px auto;
    width: 90%;
  }
}

.main .container .box .content .news .site .subTitle {
  text-align: center;
  color: #ffffff;
}

.main .container .box .content .news .site .subTitle strong {
  color: red;
  font-size: 20px;
}

@media (max-width: 1200px) {
  .main .container .box .content .news .site .subTitle strong {
    font-size: 2vw;
  }
}

@media (max-width: 768px) {
  .main .container .box .content .news .site .subTitle strong {
    font-size: 3vw;
  }
}

@media (max-width: 500px) {
  .main .container .box .content .news .site .subTitle strong {
    font-size: 3.5vw;
  }
}

@media (max-width: 1200px) {
  .main .container .box .content .news .site .subTitle {
    font-size: 2vw;
  }
}

@media (max-width: 768px) {
  .main .container .box .content .news .site .subTitle {
    font-size: 3vw;
  }
}

@media (max-width: 500px) {
  .main .container .box .content .news .site .subTitle {
    font-size: 3.5vw;
  }
}

.main .container .box .content .news .site input {
  display: block;
  font-weight: 600;
  width: 60%;
  max-width: calc(100% - 175px);
  height: 38px;
  padding: 0 10px 0 30px;
  border: none;
  border-radius: 20px 0px 0px 20px;
  font-size: 1.375rem;
  font-family: "Arial", 微軟正黑體;
  color: #01102a;
  cursor: pointer;
}

@media (max-width: 1200px) {
  .main .container .box .content .news .site input {
    font-size: 2vw;
    height: auto;
    padding: 10px 10px 10px 30px;
    max-width: calc(100% - 110px);
  }
}

@media (max-width: 768px) {
  .main .container .box .content .news .site input {
    font-size: 3vw;
  }
}

@media (max-width: 600px) {
  .main .container .box .content .news .site input {
    width: calc(100% - 25vw - 20px);
    max-width: none;
  }
}

@media (max-width: 500px) {
  .main .container .box .content .news .site input {
    font-size: 4vw;
    padding: 5px 0 5px 10px;
  }
}

.main .container .box .content .news .site input::-webkit-input-placeholder {
  color: #01102a;
}

.main .container .box .content .news .site input:-ms-input-placeholder {
  color: #01102a;
}

.main .container .box .content .news .site input::-ms-input-placeholder {
  color: #01102a;
}

.main .container .box .content .news .site input::placeholder {
  color: #01102a;
}

.main .container .box .content .news .site input.disabled {
  pointer-events: none;
  cursor: default;
}

.main .container .box .content .news .site a {
  width: 175px;
}

@media (max-width: 1200px) {
  .main .container .box .content .news .site a {
    width: 140px;
  }
}

@media (max-width: 600px) {
  .main .container .box .content .news .site a {
    width: 25vw;
  }
}

.main .container .box .content .news .site a:before {
  content: "";
  display: block;
  background-image: url("../img/btn.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  width: 100%;
  padding: 0 0 25.1%;
}

@media (max-width: 1200px) {
  .main .container .box .content .news .site a:before {
    background-image: url("../img/btn_mb.png");
    padding: 0 0 38.8%;
  }
}

.main .container .box .content .warn {
  width: 100%;
  height: 25%;
  background-image: url("../img/warn_border.png");
  background-position: top center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding: 35px 0 20px;
  position: relative;
  -webkit-animation: bounce 1s alternate;
  animation: bounce 1s alternate;
}

@media (max-width: 1200px) {
  .main .container .box .content .warn {
    height: 30%;
  }
}

@media (max-width: 992px) {
  .main .container .box .content .warn {
    height: 30%;
  }
}

@media (max-width: 768px) {
  .main .container .box .content .warn {
    height: 25%;
  }
}

@media (max-width: 500px) {
  .main .container .box .content .warn {
    padding: 25px 0 20px;
  }
}

@media (max-width: 350px) {
  .main .container .box .content .warn {
    padding: 25px 0 15px;
  }
}

@media (max-width: 375px) {
  .main .container .box .content .warn {
    height: 28%;
  }
}

@media (max-width: 320px) {
  .main .container .box .content .warn {
    height: 30%;
  }
}

.main .container .box .content .warn .imgTitle {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 205px;
}

@media (max-width: 500px) {
  .main .container .box .content .warn .imgTitle {
    width: 170px;
  }
}

.main .container .box .content .warn .imgTitle:before {
  content: "";
  display: block;
  width: 100%;
  padding: 0 0 17%;
  background-image: url("../img/warn_title.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
}

.main .container .box .content .warn .subTitle_pc {
  display: block;
  text-align: center;
  color: #ffffff;
  font-size: 1vw;
}

@media (max-width: 1200px) {
  .main .container .box .content .warn .subTitle_pc {
    display: none;
  }
}

.main .container .box .content .warn .subTitle {
  display: none;
  text-align: center;
  color: #ffffff;
}

@media (max-width: 1200px) {
  .main .container .box .content .warn .subTitle {
    display: block;
    font-size: 2vw;
    margin-bottom: 1vh;
  }
}

@media (max-width: 768px) {
  .main .container .box .content .warn .subTitle {
    font-size: 3vw;
  }
}

@media (max-width: 500px) {
  .main .container .box .content .warn .subTitle {
    font-size: 3.5vw;
  }
}

.main .container .box .content .warn .btn_group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  max-width: 330px;
  margin: 20px auto 0;
}

@media (max-width: 575px) {
  .main .container .box .content .warn .btn_group {
    margin: 15px auto 0;
  }
}

.main .container .box .content .warn .btn_group .custom {
  width: 40%;
}

@media (max-width: 575px) {
  .main .container .box .content .warn .btn_group .custom {
    width: 40%;
  }
}

.main .container .box .content .warn .btn_group .custom a {
  width: 100%;
  display: block;
  padding: 0 0 36.5%;
  background-image: url("../img/cs24.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.main .container .box .content .warn .coin {
  position: absolute;
  bottom: 0;
  right: 0;
  -webkit-transform: translate(45%, 30%);
  -ms-transform: translate(45%, 30%);
  transform: translate(45%, 30%);
  width: 150px;
  z-index: 1;
}

@media (max-width: 1200px) {
  .main .container .box .content .warn .coin {
    bottom: auto;
    top: 0;
    -webkit-transform: translate(50%, -55%);
    -ms-transform: translate(50%, -55%);
    transform: translate(50%, -55%);
    max-width: 150px;
    width: 22vw;
  }
}

.main .container .box .content .warn .coin:before {
  content: "";
  display: block;
  width: 100%;
  padding: 0 0 77.2%;
  background-image: url("../img/coin.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.main .container .box .content .warn .coin_right {
  display: none;
}

@media (max-width: 1200px) {
  .main .container .box .content .warn .coin_right {
    display: block;
    position: absolute;
    top: -2vh;
    right: -5vw;
    width: 17vw;
    height: 11vh;
    background-image: url("../img/coin_right_mb.png");
    background-position: top center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.alertBox {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: none;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.alertBox.open {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-animation: fadeIn .4s both;
  animation: fadeIn .4s both;
}

.alertBox.close {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-animation: fadeOut .4s both;
  animation: fadeOut .4s both;
}

.alertBox>* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.alertBox div {
  background-color: #fff;
  border-radius: 10px;
  width: 90%;
  max-width: 500px;
  padding: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

@media (max-width: 500px) {
  .alertBox div {
    padding: 5vw;
  }
}

.alertBox div p {
  font-size: 1rem;
  font-family: "Arial", 微軟正黑體;
}

.alertBox div button {
  background-color: transparent;
  border: none;
  color: #1f74d6;
  font-size: 1rem;
  font-family: "Arial", 微軟正黑體;
  margin: 20px 0 0 auto;
  cursor: pointer;
}
