﻿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,
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: inherit;
    box-sizing: border-box;
}
input, select {
    box-sizing: border-box;
}
@font-face {
    font-family: 'GenYoGothic-EL';
    src: url('../Fonts/GenYoGothic-EL.ttf') format("truetype");
}

@font-face {
    font-family: 'GenYoGothic-L';
    src: url('../Fonts/GenYoGothic-L.ttf') format("truetype");
}

@font-face {
    font-family: 'GenYoGothic-N';
    src: url('../Fonts/GenYoGothic-N.ttf') format("truetype");
}

@font-face {
    font-family: 'GenYoGothic-R';
    src: url('../Fonts/GenYoGothic-R.ttf') format("truetype");
}

/*Noto Serif TC 思源宋體*/
@import url(https://fonts.googleapis.com/css?family=Noto+Serif+TC&amp;display=swap);

.text-tiny {
    letter-spacing:0.06vw;
    font-size: 0.7vw;
}
.text-small {
    letter-spacing: 0.07vw;
    font-size: 0.8vw;
}
.text-normal {
    letter-spacing: 0.08vw;
    font-size: 0.9vw;
}
.text-big {
    letter-spacing: 0.09vw;
    font-size: 1vw;
}
.text-huge {
    letter-spacing: 0.1vw;
    font-size: 1.1vw;
}
#TLS_Loading {
    height: 100vh;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    pointer-events: fill;
}
#TLS_Loading_MainDiv {
    margin: 0;
    padding: 0;
    border: 0;
    height: 100vh;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #121212;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    pointer-events: fill;
}
.LoadingfadeIn {
    opacity: 0.85;
    animation-name: LoadingfadeIn;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

.LoadingRotate {
    animation-name: LoadingRotate;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
    transform-origin: center 50%;
}

@keyframes LoadingRotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes LoadingfadeIn {
    0% {
        opacity: 0.85;
    }

    50% {
        opacity: 0.55;
    }

    100% {
        opacity: 0.85;
    }
}