<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@media (max-width: 768px) {
    html {
        font-size: 12px;
    }
}

/*疊加上漸層色，最大寬為1922寬*/
body {
    background: linear-gradient(90deg, #FFE8E8 14.01%, #D1E4FF 85.68%);
}

.maxWidth1920 {
    max-width: 1920px;
}

/*a tag 無底線及小手指標*/
a {
    cursor: pointer;
    text-decoration: none;
}

/*頭尾寬度為1366寬，內容置中*/
header, footer {
    max-width: 1366px;
}

    /*拿掉多餘的padding左右寬度*/
    footer div.row &gt; * {
        padding-left: 0px;
        padding-right: 0px;
    }

    /*頁尾div.row*/
    footer div.row {
        width: 100%;
        margin-left: 0px;
        margin-right: 0px;
    }

/*logo圖片及大小，有設定rwd*/
.logo {
    background-image: url(../Images/top_logo.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 303.872223px;
    height: 77px;
}

/*頁首menu分配相同的空間*/
.navbar-nav {
    justify-content: space-around; /*平均分配*/
}

/*頁首menu*/
#navbarNav li {
    font-family: Noto Sans;
    font-size: 1.3rem;
    line-height: 38px;
}

    /*超連結的顏色*/
    #navbarNav li a:link, .footer-nav &gt; p, .footer-info &gt; div:first-child p, .footer-info &gt; div:not(:first-child) p, .footer-info a, .footer-info a:hover, .footer-info a:visited, .footer-info a:visited:hover {
        color: #203B63;
    }

    /*滑鼠移過去時的顏色*/
    #navbarNav li a:hover, #navbarNav li a:visited:hover {
        color: #174AFF;
    }

    /*網站造訪過的顏色*/
    #navbarNav li a:visited {
        color: #6E6E6F;
    }

/*修改Navbar的下拉選單:active的背景色*/
.dropdown-item:active {
    background-color: #e9ecef;
}

/*頁尾標題*/
.footer-nav &gt; p:first-child, .footer-info &gt; div:first-child p {
    font-family: Noto Sans CJK SC;
    font-weight: bold;
    font-size: 1rem;
    line-height: 24px;
}

/*頁尾資訊內容*/
.footer-nav &gt; p:last-child, .footer-info &gt; div:not(:first-child) p {
    font-family: Noto Sans CJK KR;
    font-weight: 500;
    font-size: .8rem;
    line-height: 164%;
    letter-spacing: 0.01em;
}

/*google icon*/
.footer-info .material-icons-outlined {
    font-size: .8rem;
    padding-right: 8px;
}

/*頁尾a hover去除底線*/
.footer-info a:hover {
    text-decoration: none;
}

/*頁尾copyright*/
.copyRight {
    font-family: Noto Sans CJK KR;
    font-weight: 500;
    font-size: 0.8rem;
    line-height: 164%;
    text-align: center;
    letter-spacing: 0.01em;
    color: #203B63;
    background-color: #A9C7F4;
    width: 100%;
}
</pre></body></html>