﻿footer{
    width: 100%;
    display: block;
    position: relative;
    background-color: #292929;
}
.footer-box{
    width: 1600px;
    max-width: 100%;
    display: block;
    margin: 0 auto;
    font-size: 0;
}
.footer-info-box{
    width: calc(100% - 30px);
    display: inline-block;
    vertical-align: bottom;
    box-sizing: border-box;
    padding: 50px 0;
}
.footer-info{
    display: inline-block;
    vertical-align: top;
    margin-right: 50px;
}
.footer-info:last-child{
    margin-right: 0;
}
.footer-info-name{
    line-height: 36px;
    font-size: 16px;
    color: #fff;
    font-family: 'Noto Sans TC';
    font-weight: 300;
    letter-spacing: 0.1em;
    margin-bottom: 5px;
    display: block;
}
.footer-info-text{
    line-height: 26px;
    font-size: 14px;
    color: #999;
    font-family: 'Noto Sans TC';
    font-weight: 300;
    letter-spacing: 0.1em;
    display: block;
    transition: all .3s linear;
}
.footer-notMenu .footer-info-text{
    line-height: 36px;
}
.footer-web{
    line-height: 36px;
    font-size: 12px;
    color: #555;
    font-family: 'Noto Sans TC';
    font-weight: 300;
    letter-spacing: 0.1em;
    display: block;
}
.footer-web span{
    font-family: 'Roboto';
    font-weight: 300;
}
.footer-info-follow{
    font-size: 30px;
    color: #fff;
    transition: all .3s linear;
}

.footer-top-box{
    width: 30px;
    display: inline-block;
    vertical-align: bottom;
    text-align: center;
    cursor: pointer;
}
.footer-top-box p{
    font-size: 12px;
    font-family: 'Roboto';
    color: #999;
    line-height: 46px;
    letter-spacing: 0.1em;
    transition: all .3s linear;
}
.footer-top-box span{
    width: 1px;
    height: 230px;
    display: inline-block;
    vertical-align: middle;
    position: relative;
    transition: all .3s linear;
}
.footer-top-box span::after{
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #999;
    transition: all .3s linear;
}
.footer-top-box span::before{
    content: '';
    width: 7px;
    height: 7px;
    background-color: #999;
    position: absolute;
    right: -3px;
    top: 0;
    transition: all .3s linear;
}



.footer-info-text:hover,
.footer-info-follow:hover{
    color: #1e7ccc;
}
.footer-info-text:not([href]):hover{
    color: #999;
}
.footer-top-box:hover p{
    color: #1e7ccc;
}
.footer-top-box:hover span::after{
    height: 40%;
    background-color: #1e7ccc;
}
.footer-top-box:hover span::before{
    content: '\e800';
    font-family: "fontello";
    font-size: 21px;
    line-height: 13px;
    width: 12px;
    height: 13px;
    right: -5px;
    z-index: 1;
    top: -4px;
    color: #1e7ccc;
    background-color: transparent;
    transform: rotateZ(-90deg);
}

@media only screen and (max-width: 1600px){
    .footer-box{
        width: 1400px;
    }
}
@media only screen and (max-width: 1400px){
    .footer-box{
        width: 1200px;
    }
}
@media only screen and (max-width: 1200px){
    .footer-box{
        width: 1000px;
    }
    .footer-info{
        margin-right: 20px;
    }
    .footer-web{
        line-height: 1.4;
        margin-top: 10px;
    }
    .footer-web span{
        display: block;
    }
}
@media only screen and (max-width: 1000px){
    .footer-box{
        width: 95%;
    }
    .footer-info:not(.footer-notMenu){
        display: none;
    }
    .footer-notMenu{
        margin-right: 0;
    }
}
@media only screen and (max-width: 768px){
    .footer-top-box{
        display: none;
    }
    .footer-info-box{
        width: 100%;
        padding: 40px 0;
    }
}
@media only screen and (max-width: 550px){
    .footer-info-box{
        padding: 20px 0;
    }
    .footer-notMenu .footer-info-text{
        font-size: 12px;
        line-height: 26px;
    }
}