* {
    box-sizing: border-box;
    line-height: 140%;
    font-family: "Roboto", "Noto Sans TC", sans-serif;
}

*, ::after, ::before {
    box-sizing: border-box;
    border-width: 0px;
    border-style: solid;
    border-color: currentColor;
}

html, body {
    margin: 0;
    padding: 0;
    color: #12122C;
    background-color: white;
    font-size: 16px;
    font-weight: 500;
    min-height: 100%;
}

audio, canvas, embed, iframe, img, object, svg, video {
    display: block;
}

img, video {
    height: auto;
}

svg {
    /* 避免svg圖片與父層的高度不一致 */
    vertical-align: middle;
}

h1, h2, h3, h4, h5 {
    margin: 0px;
    font-weight: 600;
}

pre {
    margin: 0px;
    padding: 0px;
}

button, input, optgroup, select, textarea {
    font-family: inherit;
    font-feature-settings: inherit;
    font-variation-settings: inherit;
    font-size: 100%;
    font-weight: inherit;
    line-height: inherit;
    color: inherit;
    margin: 0;
    padding: 0;
}

mark, span {
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    color: inherit;
    font-weight: inherit;
    font-family: inherit;
}

[role=button], button {
    cursor: pointer;
}

button, select {
    text-transform: none;
}

button {
    appearance: button;
    background-color: transparent;
    background-image: none;
}

a {
    color: inherit;
    text-decoration: inherit;
}

table {
    text-indent: 0;
    border-color: inherit;
    border-collapse: separate;
    border-spacing: 0;
}

ul, li, p {
    margin: 0;
    padding: 0;
    text-indent: 0px;
}

video {
    pointer-events: none; /* 禁止點擊 */
    user-select: none;     /* 禁止選取 */
}

video::-webkit-media-controls-fullscreen-button {
    display: none;
}

video.new-version-video {
    pointer-events: initial;
    user-select: initial;
}