/* css reset */
/* css reset */
/* css reset */
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

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;
}
blockquote,
q {
    quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
/* css reset end */
/* css reset end */
/* css reset end */

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

/* 讓網頁平滑滾動 */
html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Roboto', 'Noto Sans TC', 'Segoe UI',
        'Microsoft JhengHei UI', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans',
        'Helvetica Neue', sans-serif;
    /* font-family: 'Roboto', '微軟正黑體', 'Helvetica', 'sans-serif'; */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

code {
    font-family: 'Roboto Mono', 'Courier New', Monaco, Consolas, monospace;
}

/* scroll bar 樣式 */
::-webkit-scrollbar {
    width: 12px;
    height: 12px;
    background-color: transparent;

    @media (max-width: 1536px) {
        width: 10px;
        height: 10px;
    }

    @media (max-width: 1280px) {
        width: 9px;
        height: 9px;
    }
}
::-webkit-scrollbar-button {
    /* background: transparent; */
    /* border-radius: 4px; */
    height: 3px;
}
::-webkit-scrollbar-track-piece {
    /* background: transparent; */
    border-radius: 6px;
    background-color: rgba(225, 225, 225, 1);
}
::-webkit-scrollbar-thumb {
    border-radius: 6px;
    background-color: rgba(170, 170, 170, 1);
    border: 2px solid rgba(225, 225, 225, 1);
}
::-webkit-scrollbar-track {
    box-shadow: transparent;
}
::-webkit-scrollbar-corner {
    background-color: transparent;
}


/*# sourceMappingURL=main.0e0c2a8799bfa5092136.css.map*/