* {
    box-sizing: border-box;
    line-height: 160%;
    font-family: "Roboto", "Noto Sans TC", sans-serif;
}

html, body {
    margin: 0px;
    font-size: 18px;
    color: #595757;

}

h1 {
    font-size: 32px;
}

h2 {
    font-size: 24px;
}
h3 {
    font-size: 22px;
}
a {
    color: #267CC9;
}

table {
    border: 1px solid #eee;
    width: 100%;
}

table thead {
    background-color: #267CC9;
    color: white;
}

table thead a {
    color: white;
}

table thead th {
    color: white;
    padding: 10px;
}

table tr {
    border: 1px solid #eee;
}

table tr td {
    border: 1px solid #eee;
    text-align: center;
    padding: 10px;
}

table tr:nth-of-type(even) {
    background: #dbeeff;
}

ul li {
    margin: 20px 0px;
}

blockquote {
    width: 100%;
    margin-left: 0px;
    border-left: solid 10px #71a4d0;
    padding: 10px 0 10px 30px;
}

strong {
    font-size: inherit;
    color: inherit;
}

img {
    display: block;
    /* width: 100%; */
    max-width: 100%;
    margin: auto;
}

main {
    max-width: 1000px;
    margin: auto;
    padding: 32px 12px;
}

@media screen and (max-width: 767px) {
    * {
        font-size: 18px;
        line-height: 160%;
        box-sizing: border-box;
    }

    h1 {
        font-size: 26px;
    }
}