﻿footer{
    width: 100%;
    display: block;
    background-color: #1b1b1b;
    position: relative;   
}
.footer-box{
    width: 1360px;
    max-width: 100%;
    display: block;
    position: relative;
    margin: 0 auto;
    font-size: 0;
    box-sizing: border-box;
    padding: 95px 0;
    z-index: 1;
}
.footer-bg-box{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.05;
}
.footer-bg-box>.main-bg{
    background-size: 5%;
    background-repeat: repeat;
}
.footer-logo-box{
    margin-bottom: 30px;
}
.footer-left-box{
    width: calc(100% - 460px);
    display: inline-block;
    vertical-align: bottom;
}
.footer-left-box>li{
    width: 50%;
    display: inline-block;
    vertical-align: middle;
}
.footer-info{
    font-size: 16px;
    color: #fff;
    letter-spacing: 0.1em;
    line-height: 36px;
    font-family: "Noto Sans TC";
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
    transition: all .3s linear;
}
.footer-right-box{
    width: 460px;
    display: inline-block;
    vertical-align: bottom;
    text-align: right;
}
.footer-url-box a{
    font-size: 36px;
    color: #ffcd1e;
    line-height: 1;
    margin-left: 20px;
    transition: all .3s linear;
}
.footer-web{
    margin-top: 5px;
    font-size: 14px;
    color: #ccc;
    letter-spacing: 0.06em;
    line-height: 36px;
    display: block;
    font-family: "Noto Sans TC";
}
.footer-goTop-box{
    width: 50px;
    height: 50px;
    display: block;
    position: fixed;
    bottom: 0;
    right: 0;
}
.footer-goTop{
    width: 100%;
    height: 100%;
    display: block;
    background-color: #000;
    font-size: 18px;
    color: #fff;
    line-height: 50px;
    text-align: center;
    transition: all .3s linear;
}




@media only screen and (max-width: 1360px){
    .footer-box{
        width: 1200px;
    }
    .footer-left-box>li:nth-child(odd){
        width: 44%;
    }
    .footer-left-box>li:nth-child(even){
        width: 56%;
    }
}
@media only screen and (max-width: 1200px){
    .footer-box{
        width: 1000px;
    }
    .footer-left-box>li:nth-child(n){
        width: 100%;
    }
}
@media only screen and (max-width: 1000px){
    .footer-box{
        width: 750px;
    }
    .footer-info{
        margin-right: 0;
    }
    .footer-left-box{
        width: calc(100% - 445px);
    }
    .footer-right-box{
        width: 445px;
    }
    a.footer-info + p{
        display: none;
    }
}
@media only screen and (max-width: 768px){
    .footer-box{
        width: 550px;
        padding: 40px 0;
    }
    .footer-left-box{
        width: 100%;
        display: block;
    }
    .footer-right-box{
        width: 100%;
        text-align: left;
        margin-top: 20px;
    }
    .footer-url-box a{
        margin-left: 0;
        margin-right: 20px;
    }
    .footer-goTop-box{
        display: none;
    }
}
@media only screen and (max-width: 550px){
    .footer-box{
        width: calc(100vw - 40px);
        padding: 20px 0;
    }
    .footer-logo-box{
        width: 140px;
        margin-bottom: 10px;
    }
    .footer-info{
        font-size: 14px;
        line-height: 24px;
        letter-spacing: 0.06em;
    }
    .footer-url-box a{
        font-size: 26px;
        margin-right: 10px;
    }
    .footer-web{
        font-size: 12px;
        margin-top: 10px;
        line-height: 1.2;
    }
    .footer-web span{
        display: block;
    }
}



@media only screen and (min-width: 769px){
    a.footer-info:hover{
        color: #ffcd1e;
    }
    .footer-url-box a:hover{
        color: #fff;
    }
    .footer-goTop:hover{
        background-color: #ffcd1e;
        color: #000;
    }
}