@charset "UTF-8";
* {
  box-sizing: content-box;
}
*:focus {
  outline: none;
}

html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: arial, "LiHei Pro", "Microsoft JhengHei", "微軟正黑體", "新細明體," sans-serif;
  font-size: 13px;
  margin: 0;
  padding: 0;
  line-height: 1.8;
  color: #4a4a4a;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding-bottom: constant(safe-area-inset-bottom);
  padding-bottom: env(safe-area-inset-bottom);
}
@media screen and (max-width: 1164px) {
  body {
    min-height: none;
    display: block;
  }
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

audio, canvas, progress, video {
  display: inline-block;
  vertical-align: baseline;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden],
template {
  display: none;
}

img {
  width: 100%;
  border: 0px;
  vertical-align: middle;
}

ul, li, p, ol, figure {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

a, button {
  background-color: transparent;
  text-decoration: none;
  color: #f4f4f4;
  outline: none;
  hlbr: expression(this.onFocus=this.blur());
}
a:focus, button:focus {
  outline: none;
}
a:hover, button:hover {
  outline: 0;
  color: gold;
}
a:active, button:active {
  outline: 0;
  color: gold;
}

article, aside, dialog, footer, header, section, footer, nav, figure, menu {
  display: block;
}

abbr[title] {
  border-bottom: 1px dotted;
}

b, strong {
  font-weight: bold;
}

dfn {
  font-style: italic;
}

hr {
  box-sizing: content-box;
  height: 0;
}

mark {
  background: yellow;
  color: black;
}

code, kbd, pre, samp {
  font-family: monospace, serif;
  font-size: 1em;
}

pre {
  white-space: pre-wrap;
}

q {
  quotes: "“" "”" "‘" "’";
}

small {
  font-size: 80%;
}

sub {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

svg:not(:root) {
  overflow: hidden;
}

figure {
  margin: 0;
}

fieldset {
  border: 1px solid silver;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  border: 0;
  padding: 0;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
  margin: 0;
}

button, input {
  line-height: normal;
}

button, select {
  text-transform: none;
}

button, html input[type=button] {
  -webkit-appearance: button;
  cursor: pointer;
}

input[type=reset], input[type=submit] {
  -webkit-appearance: button;
  cursor: pointer;
}

button[disabled],
html input[disabled] {
  cursor: default;
}

input[type=checkbox], input[type=radio] {
  box-sizing: border-box;
  padding: 0;
}
input[type=search] {
  -webkit-appearance: textfield;
  -moz-box-siaing: content-box;
  box-sizing: content-box;
}
input[type=search]::-webkit-search-cancel-button, input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
  vertical-align: top;
}

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

.hidden {
  display: none;
  visibility: hidden;
  height: 0;
}

.numberList {
  padding-left: 25px;
}
.numberList li {
  list-style-type: decimal;
}
.numberList a {
  display: inline-block;
}

@keyframes roate-360a {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes roate-360b {
  0% {
    transform: rotate(30deg);
  }
  100% {
    transform: rotate(390deg);
  }
}
html {
  background-image: url("/theme/images/loading/img_bg.png");
  background-repeat: no-repeat;
  background-color: #212121;
  background-position: 108% -20%;
  background-size: contain;
}
@media screen and (max-width: 1440px) {
  html {
    background-position: 110% -10%;
    background-size: contain;
  }
}
@media screen and (max-width: 1024px) {
  html {
    background-position: 40% -20%;
    background-size: cover;
  }
}

.wrapper {
  position: relative;
  width: 100%;
  min-height: 100vh;
}
.wrapper .text {
  width: 100%;
  max-width: 365px;
  min-height: 50vh;
  margin: 0 auto;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  z-index: 2;
  background: url("/theme/images/loading/img_text01.png") no-repeat center center;
  background-size: contain;
}

.fx {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

.fx-base {
  position: absolute;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  animation-duration: 40s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

.fx-1 {
  max-width: 1523px;
  left: -30%;
  top: 0%;
  background-image: url("/theme/images/loading/img_fx02.png");
  animation-name: roate-360a;
}
@media screen and (max-width: 1440px) {
  .fx-1 {
    left: -50%;
    top: 0%;
  }
}
@media screen and (max-width: 1024px) {
  .fx-1 {
    left: -65%;
    top: 0%;
  }
}

.fx-2 {
  max-width: 1310px;
  right: -25%;
  top: -48%;
  background-image: url("/theme/images/loading/img_fx01.png");
  transform: rotate(30deg);
  animation-name: roate-360b;
}
@media screen and (max-width: 1440px) {
  .fx-2 {
    right: -40%;
    top: -45%;
  }
}
@media screen and (max-width: 1024px) {
  .fx-2 {
    right: -60%;
    top: -40%;
  }
}

.fx-3 {
  max-width: 1523px;
  right: -34%;
  top: 25%;
  background-image: url("/theme/images/loading/img_fx02.png");
  animation-name: roate-360a;
}
@media screen and (max-width: 1440px) {
  .fx-3 {
    right: -45%;
    top: 35%;
  }
}
@media screen and (max-width: 1024px) {
  .fx-3 {
    right: -48%;
    top: 45%;
  }
}
