﻿footer{
    width: 100%;
    display: block;
    position: relative;
    overflow: hidden;
    background-color: #121212;
    border-top: 5px solid #ffe100;
    box-sizing: border-box;
    padding-top: 140px;
    padding-bottom: 50px;
}
.footer-box{
    width: 1560px;
    max-width: 100%;
    display: block;
    margin: 0 auto;
    font-size: 0;
    position: relative;
    box-sizing: border-box;
}
.footer-left-box{
    width: 50%;
    display: inline-block;
    vertical-align: bottom;
}
.footer-left-logo-box{
    width: 140px;
}
.footer-left-address-box{
    width: 100%;
    display: block;
    margin-top: 20px;
    margin-bottom: 25px;
}
.footer-left-address{
    font-family: "IBM Plex Sans";
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0.06em;
    color: #fff;
    transition: all .3s linear;
}
.footer-left-text span,
.footer-left-text p{
    font-family: "Noto Sans TC";
    font-size: 16px;
    letter-spacing: 0.06em;
    line-height: 26px;
    color: #fff;
    display: inline-block;
    vertical-align: middle;
    transition: all .3s linear;
}
.footer-left-text span{
    margin-right: 10px;
}
.footer-left-text span:nth-child(1){
    width: 35px;
}
.footer-left-text p{
    width: calc(100% - 45px - 16px);
}
.footer-left-text p{
    font-weight: 300;
}
.footer-right-box{
    width: 50%;
    display: inline-block;
    vertical-align: bottom;
}
.footer-right-info-box{
    text-align: right;
    margin-bottom: 15px;
}
.footer-right-info{
    display: inline-block;
    vertical-align: middle;
    font-size: 24px;
    color: #fff;
    line-height: 1;
    letter-spacing: 0.06em;
    margin-left: 20px;
    transition: all .3s linear;
}
.footer-web{
    text-align: right;
    width: 100%;
    font-family: "Noto Sans TC";
    font-weight: 300;
    font-size: 14px;
    letter-spacing: 0.06em;
    line-height: 26px;
    color: #ccc;
    transition: all .3s linear;
}
.footer-web span{
    font-weight: 300;
}
.footer-web a{
    transition: all .3s linear;
}




@media only screen and (max-width: 1560px){
    .footer-box{
        width: 1200px;
    }
}
@media only screen and (max-width: 1200px){
    .footer-box{
        width: 1000px;
    }
}
@media only screen and (max-width: 1000px){
    footer{
        padding-top: 80px;
    }
    .footer-box{
        width: 750px;
    }
}
@media only screen and (max-width: 768px){
    footer{
        padding-top: 40px;
        padding-bottom: 30px;
    }
    .footer-box{
        width: 550px;
    }
}
@media only screen and (max-width: 550px){
    footer{
        padding-top: 20px;
        padding-bottom: 20px;
    }
    .footer-box{
        width: calc(100% - 40px);
    }
    .footer-left-box{
        width: 100%;
        display: block;
    }
    .footer-left-address-box{
        margin-top: 10px;
        margin-bottom: 15px;
    }
    .footer-left-address{
        font-size: 14px;
        line-height: 24px;
    }
    .footer-left-text span, 
    .footer-left-text p{
        font-size: 14px;
        line-height: 24px;
    }
    .footer-left-text span{
        margin-right: 5px;
    }
    .footer-left-text span:nth-child(1){
        width: 30px;
    }
    .footer-left-text p{
        width: calc(100% - 35px - 10px);
    }
    .footer-right-box{
        width: 100%;
        display: block;
        margin-top: 20px;
    }
    .footer-right-info-box{
        text-align: left;
        margin-bottom: 10px;
    }
    .footer-web{
        text-align: left;
        font-size: 12px;
        line-height: 16px;
        letter-spacing: 0.01em;
    }
}
@media only screen and (max-width: 400px){
    .footer-web span{
        display: block;
    }
}


@media only screen and (min-width: 769px){
    .footer-left-address:hover{
        color: #ffe100;
    }
    .footer-left-text:hover span,
    .footer-left-text:hover p{
        color: #ffe100;
    }
    .footer-right-info:hover{
        color: #ffe100;
    }
    .footer-web a:hover{
        color: #ffe100;
    }
}