﻿footer{
    width: 100%;
    display: block;
    position: relative;
    box-sizing: border-box;
    padding: 120px 0;
    border-top: 5px solid #bd9b60;
}
.footer-box{
    width: 1600px;
    max-width: 100%;
    display: block;
    margin: 0 auto;
    font-size: 0;
    position: relative;
    box-sizing: border-box;
}
.footer-left-box{
    width: 540px;
    display: inline-block;
    vertical-align: middle;
}
.footer-left-text{
    font-family: "Noto Sans TC";
    font-size: 16px;
    color: #bd9b60;
    letter-spacing: 0.2em;
    line-height: 1;
    box-sizing: border-box;
    margin-top: 20px;
}
.footer-info-box{
    width: 520px;
    display: inline-block;
    vertical-align: middle;
}
.footer-info{
    display: inline-block;
    vertical-align: middle;
    font-family: "Noto Sans TC";
    font-weight: 300;
    font-size: 16px;
    color: #666;
    letter-spacing: 0.2em;
    line-height: 36px;
    position: relative;
    transition: all .3s linear;
}
.footer-info::after{
    content: "";
    width: 0%;
    height: 1px;
    background-color: #bd9b60;
    position: absolute;
    bottom: 3px;
    left: 0;
    display: block;
    transition: all .3s linear;
}
.footer-right-box{
    width: 540px;
    display: inline-block;
    vertical-align: middle;
    text-align: right;
}
.footer-url{
    font-size: 50px;
    color: #bd9b60;
    line-height: 50px;
    display: inline-block;
    vertical-align: middle;
    margin-left: 50px;
    transition: all .3s linear;
}
.footer-web{
    font-family: "Noto Sans TC";
    font-weight: 300;
    font-size: 14px;
    color: #888;
    letter-spacing: 0.06em;
    line-height: 1.2;
    margin-top: 30px;
}
.footer-web span{
    font-weight: 300;
}

.footer-goTop{
    width: 50px;
    height: 50px;
    display: block;
    margin-left: auto;
    background-color: #bd9b60;
    text-align: center;
    overflow: hidden;
    transition: all .3s linear;
}
.footer-goTop p{
    font-family: "Noto Sans TC";
    font-weight: 300;
    font-size: 14px;
    color: #fff;
    line-height: 50px;
    transform: rotateZ(-90deg) translateX(2px);
}






@media only screen and (max-width: 1600px){
    .footer-box{
        width: 1200px;
    }
    .footer-left-box{
        width: 320px;
    }
    .footer-info-box {
        width: 410px;
    }
    .footer-right-box {
        width: 470px;
    }
}
@media only screen and (max-width: 1200px){
    .footer-box{
        width: 1000px;
    }
    .footer-left-box{
        width: 300px;
    }
    .footer-info-box {
        width: 410px;
    }
    .footer-right-box {
        width: 290px;
    }
}
@media only screen and (max-width: 1000px){
    footer{
        padding: 70px 0;
    }
    .footer-box{
        width: 750px;
    }
    .footer-right-box {
        width: 100%;
        text-align: left;
        margin-top: 40px;
    }
    .footer-url{
        font-size: 30px;
        line-height: 30px;
        margin-left: 0;
        margin-right: 30px;
    }
    .footer-web{
        margin-top: 20px;
    }
}
@media only screen and (max-width: 768px){
    footer{
        padding: 40px 0;
    }
    .footer-box{
        width: 550px;
    }
    .footer-left-box{
        width: 100%;
        display: block;
    }
    .footer-info-box {
        width: 100%;
        display: block;
        margin-top: 20px;
    }
    .footer-right-box {
        margin-top: 20px;
    }
    .footer-goTop-box{
        display: none;
    }
}
@media only screen and (max-width: 550px){
    footer{
        padding: 20px;
    }
    .footer-box{
        width: 100%;
    }
    .footer-logo{
        width: 116px;
    }
    .footer-left-text{
        font-size: 14px;
        margin-top: 5px;
        letter-spacing: 0.06em;
    }
    .footer-info-box{
        margin-top: 10px;
    }
    .footer-info{
        font-size: 14px;
        letter-spacing: 0.06em;
        line-height: 20px;
        margin-top: 5px;
    }
    .footer-url{
        margin-right: 20px;
    }
    .footer-web{
        font-size: 12px;
        margin-top: 10px;
    }
}
@media only screen and (max-width: 340px){
    .footer-web span{
        display: inline-block;
    }
}



@media only screen and (min-width: 769px){
    a.footer-info:hover{
        color: #bd9b60;
    }
    .footer-goTop:hover{
        background-color: #333;
    }
}