﻿footer {
    width: 100%;
    display: block;
    position: relative;
    box-sizing: border-box;
    /* border-top: 1px solid #eee; */
    padding-top: 100px;
    padding-bottom: 20px;
    background: #003b83;
}

.footer-box {
    width: 1600px;
    max-width: 100%;
    display: block;
    margin: 0 auto;
    position: relative;
    font-size: 0;
}

.footer-logo-box {
    width: 310px;
    display: inline-block;
    vertical-align: top;
}

.footer-info-box {
    width: calc(100% - 310px);
    display: inline-block;
    vertical-align: top;
}

.footer-info {
    display: inline-block;
    vertical-align: top;
    margin-left: 175px;
}

.footer-info-name {
    font-family: "Noto Sans TC";
    font-weight: 700;
    font-size: 18px;
    color: white;
    /* color: #003b83; */
    line-height: 1;
    letter-spacing: 0.2em;
    display: block;
    margin-bottom: 15px;
}

.footer-info-text .footer-info-name {
    margin-bottom: 0;
    margin-top: 15px;
}

.footer-info-text .footer-info-name:hover {
    color: #e48e00;
}

.footer-info-text {
    display: block;
}

.footer-info-a {
    font-family: "Noto Sans TC";
    font-weight: 300;
    font-size: 16px;
    color: white;
    /* color: #666; */
    line-height: 20px;
    box-sizing: border-box;
    padding: 6px 0;
    display: inline-block;
    letter-spacing: 0.2em;
    transition: all .3s linear;
}

.footer-info-list-name {
    font-family: "Noto Sans TC";
    font-size: 16px;
    color: white;
    /* color: #000; */
    line-height: 32px;
    letter-spacing: 0.2em;
}

.footer-info-list-a {
    font-family: "Noto Sans TC";
    font-weight: 300;
    font-size: 16px;
    color: white !important;
    /* color: #666; */
    line-height: 20px;
    box-sizing: border-box;
    padding: 6px 0;
    display: inline-block;
    letter-spacing: 0.2em;
    transition: all .3s linear;
}

.footer-info-list-a span {
    color: white;
    /* color: #003b83; */
    font-weight: 300;
    transition: all .3s linear;
}

.footer-web {
    font-family: "Roboto Condensed";
    font-weight: 300;
    font-size: 12px;
    color: #666;
    letter-spacing: 0.06em;
    line-height: 1;
    box-sizing: border-box;
    margin-top: 100px;
    display: block;
}

.footer-top {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 50px;
    background-color: #003b83;
    box-sizing: border-box;
    padding: 8px 0;
    text-align: center;
    transition: all .3s linear;
}

.footer-top p {
    font-family: "Noto Sans TC";
    font-size: 14px;
    color: #fff;
    line-height: 20px;
    letter-spacing: 0.2em;
}

.footer-top span {
    font-family: "Noto Sans TC";
    font-size: 12px;
    color: #fff;
    line-height: 1;
    transform: scale(0.7);
    display: block;
    margin-top: 2px;
}



@media only screen and (max-width: 1600px) {
    .footer-box {
        width: 1200px;
    }

    .footer-logo-box {
        width: 210px;
    }

    .footer-info {
        margin-left: 75px;
    }

    .footer-info-box {
        width: calc(100% - 210px);
    }
}

@media only screen and (max-width: 1200px) {
    .footer-box {
        width: 750px;
    }

    .footer-logo-box {
        width: 200px;
    }

    .footer-info {
        margin-left: 55px;
    }

    .footer-info:nth-child(2) {
        margin-left: 100px;
    }

    .footer-info:nth-child(3) {
        margin-top: 55px;
    }

    .footer-info-box {
        width: calc(100% - 210px);
    }
}

@media only screen and (max-width: 768px) {
    .footer-top {
        display: none;
    }

    footer {
        padding-top: 40px;

    }

    .footer-box {
        width: 550px;
    }

    .footer-logo-box {
        display: block;
        margin-bottom: 40px;
    }

    .footer-info-box {
        width: 100%;
        display: block;
    }

    .footer-info:nth-child(n) {
        margin-left: 0;
        margin-top: 0;
    }

    .footer-info:nth-child(1),
    .footer-info:nth-child(2) {
        display: none;
    }

    .footer-web {
        margin-top: 40px;
    }
}

@media only screen and (max-width: 550px) {
    footer {
        padding-top: 20px;
        padding-bottom: 10px;
    }

    .footer-box {
        width: calc(100vw - 40px);
    }

    .footer-logo-box {
        width: 140px;
        margin-bottom: 10px;
    }

    .footer-info-name {
        font-size: 16px;
        letter-spacing: 0.06em;
        margin-bottom: 5px;
    }

    .footer-info-text .footer-info-name {
        margin-top: 5px;
    }

    .footer-info-list-name {
        font-size: 14px;
        line-height: 20px;
        letter-spacing: 0.06em;
    }

    .footer-info-list-a {
        font-size: 14px;
        padding: 3px 0;
        line-height: 16px;
    }

    .footer-web {
        margin-top: 20px;
    }
}


@media only screen and (min-width: 769px) {
    .footer-info-a:hover {

        color: #e48e00;
    }



    .footer-info-list-a:hover span {
        color: #e48e00;
    }

    .footer-top:hover {
        background-color: #e48e00;
    }
}