footer {
    font-family: "Roboto", "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", "sans-serif", "Font Awesome 5 Pro" !important;
    /* 解決在EC字體不一的問題*/
}

.footer-wrap {
    width: 100%;
    background: #FFF;
    padding-bottom: 24px;

    @media (max-width: 1220px) {
        padding-bottom: 20px;
    }
}

.footer-wrap::before {
    content: "";
    display: block;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #0093C1 0%, #00A59B 100%);
}

.logo-social-wrap {
    width: 1220px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 20px;
    padding: 20px 0 16px 0;
    margin: 0 auto;

    @media (max-width: 1220px) {
        flex-direction: column;
        width: 100%;
        gap: 24px;
        padding: 24px 16px 16px 16px;
    }
} 

.footer-logo {
    width: 140px;
    height: 30px;

    @media (max-width: 576px) {
        width: 86px;
        height: 18px;
    }
}

.social-container {
    display: flex;
    align-items: center;
    gap: 20px;
}

.social-item > img {
    width: 24px;
    height: 24px;

    @media (max-width: 576px) {
        width: 20px;
        height: 20px;
        
    }
}

.link-container {
    width: 1220px;
    display: flex;
    gap: 24px;
    align-items: center;
    margin: 0 auto;
    padding-bottom: 16px;

    @media (max-width: 1220px) {
        width: 100%;
        justify-content: center;
        gap: 20px;
        padding: 0 16px 16px 16px;
    }
}

.footer-link,
.footer-link:hover,
.footer-link:visited,
.footer-link:active,
.footer-link:focus,
.footer-link:focus-visible {
    color: #0C0E1F !important;
    font-size: 14px !important;
    font-weight: 400;
    line-height:  20px;
    text-decoration:  underline !important;
    text-underline-position: from-font;
}

.decoration-footer-line {
    width: 100%;
    height: 1px;
    background-color: #D9DBDC;
    margin: 0;
}

.footer-info{
    width: 1220px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    padding-top: 12px;

    @media (max-width: 1220px) {
        width: 100%;
        flex-direction: column;
        padding: 20px 16px;
        text-align: center;
        gap: 12px;        
    }
}

.copyright-text {
    color:  #0C0E1F;
    font-size:  14px;
    font-weight: 400;
    line-height: 20px; /* 142.857% */
}

.browser-info {
    color:  #0C0E1F;
    font-size:  14px;
    font-weight: 400;
    line-height: 20px; /* 142.857% */

    @media (max-width: 1220px) {
        font-size: 12px;
        line-height: 18px; /* 150% */
    }
}

.preview {
    display: none;
}