﻿.footer-top-box{
    display: block;
    width: 100%;
    text-align: center;
}
.footer-top{
    width: 100%;
    font-size: 14px;
    color: #64bcc1;
    margin: 10px 0;
}
#news-page .footer-top-box,
#service-page .footer-top-box{
    display: none;
}
footer{
    width: 100%;
    display: block;
    position: relative;
    font-size: 0;
    background-color: #1b1b1b;
}
.footer-box{
    width: 1560px;
    max-width: 100%;
    display: block;
    margin: 0 auto;
    box-sizing: border-box;
    padding: 50px 0;
}
.footer-left{
    display: inline-block;
    vertical-align: middle;
    width: calc((100% - 100px) / 2);
}
.footer-name{
    font-size: 14px;
    display: block;
    font-weight: bold;
    color: #fff;
    letter-spacing: 5px;
}
.footer-info-box{
    margin-top: 10px;
}
.footer-info-name,
.footer-info-text{
    font-size: 14px;
    display: inline-block;
    color: #ddd;
    font-weight: lighter;
    letter-spacing: 1px;
    transition: all .3s linear; 

}
.footer-info-box:nth-child(3),
.footer-info-box:nth-child(4){
    display: inline-block;
    vertical-align: middle;
}
.footer-info-box:nth-child(4){
    margin-left: 15px;
}
.footer-logo{
    width: 100px;
    display: inline-block;
    vertical-align: middle;
    text-align: center;
}
.footer-right{
    display: inline-block;
    vertical-align: bottom;
    width: calc((100% - 100px) / 2);
    text-align: right;
}
.footer-menu-box{
    margin-bottom: 30px;
}
.footer-menu-title{
    font-size: 12px;
    font-weight: lighter;
    letter-spacing: 1px;
    color: #888;
    transition: all .3s linear; 
}
.footer-menu> li{
    display: inline-block;
    margin-left: 20px;
    position: relative;
    vertical-align: middle;
}
.footer-menu> li:after{
    content: '/';
    font-size: 12px;
    position: absolute;
    right: -11px;
    top: -1px;
    color: #888;
}
.footer-menu> li:last-child:after{
    content: '';
}
.footer-web{
    font-size: 12px;
    color: #ddd;
}

/*----------hover----------*/
.footer-top-box .footer-top i{
    animation: arrow_ttob .8s linear infinite alternate;
}
.footer-info-box a:hover{
    color: #61942d;
}
.footer-menu-title:hover{
    color: #61942d;
}


@media only screen and (max-width: 800px){
    .footer-top{
        margin: 5px 0;
    }
}





@keyframes arrow_ttob {
    0%{
        transform: translateY(0);
    }
    to {
        transform: translateY(-10px);
    }
}



@media only screen and (max-width: 1560px){
    .footer-box{
        width: 1380px;
    }
}
@media only screen and (max-width: 1380px){
    .footer-box{
        width: 1200px;
    }
}
@media only screen and (max-width: 1200px){
    .footer-box{
        width: 1000px;
    }
}
@media only screen and (max-width: 1000px){
    .footer-box{
        width: 95%;
    }
    .footer-logo,
    .footer-menu-box{
        display: none;
    }
    .footer-left{
        width: 100%;
    }
    .footer-right{
        width: 100%;
        text-align: left;
        margin-top: 10px;
    }
}
@media only screen and (max-width: 550px){
    .footer-box{
        padding: 20px 0;
    }
    .footer-info-name, .footer-info-text{
        font-size: 12px;
    }
    .footer-top{
        margin: 5px 0;
        font-size: 12px;
    }
}
/*animation*/
/*<-------------動畫------------->*/

@media only screen and (min-width: 1001px){
    .footer-top-box{
        opacity: 0;
    }
    .footer-top-box.active{
        animation: animation_btot 1s ease both;
    }
}

