﻿footer{
    width: 100%;
    display: block;
    position: relative;
    background-color: #000;
    box-sizing: border-box;
    padding: 10px 0;
}
.footer-box{
    width: 1280px;
    max-width: 100%;
    display: block;
    margin: 0 auto;
    font-size: 0;
    position: relative;
    box-sizing: border-box;
    padding: 60px 0;
}
.footer-info:last-child{
    display: flex;
    align-items: center;
}
.footer-info-all-box{
    min-width: 340px;
    max-width: 100%;
    display: inline-block;
    vertical-align: top;
}
.footer-info-title{
    color: #eee;
    letter-spacing: 0.06em;
    font-size: 14px;
    font-family: "Roboto";
    font-weight: 400;
}
.footer-info{
    margin-top: 8px;
}
.footer-info:nth-child(2) .footer-info-a{
    width: calc(100% - 48px);
    vertical-align: top;
}
.footer-info-name{
    font-size: 12px;
    color: #eee;
    letter-spacing: 0.06em;
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
}
.footer-info-a{
    font-size: 12px;
    color: #eee;
    letter-spacing: 0.06em;
    display: inline-block;
    vertical-align: middle;
    transition: all .3s linear;
}
.footer-info-a i{
    color: #a62a32;
    margin-left: 5px;
}
.footer-web{
    letter-spacing: 0.06em;
    font-size: 12px;
    color: #888;
    font-family: "Roboto";
    font-weight: 300;
    margin-top: 40px;
}
.footer-web span{
    font-weight: 300;
}
.footer-top-box{
    position: absolute;
    right: 0;
    bottom: 0;
    display: block;
    cursor: pointer;
    text-align: center;
}
.footer-top-text{
    font-size: 12px;
    color: #888;
    font-family: "roboto";
    font-weight: 300;
    letter-spacing: 0.06em;
    margin-bottom: 5px;
    transition: all .3s linear;
}
.footer-top-line{
    display: inline-block;
    height: 100px;
    width: 1px;
    background-color: #5e696c;
    position: relative;
    transition: all .3s linear;
}
.footer-top-line:before{
    content: "";
    width: 10px;
    height: 1px;
    background-color: #5e696c;
    opacity: 0;
    position: absolute;
    top: 44px;
    right: 0;
    transform: rotateZ(-45deg);
    transition: all .3s linear;
}
.footer-top-line:after{
    content: "";
    width: 10px;
    height: 1px;
    background-color: #5e696c;
    opacity: 0;
    position: absolute;
    top: 44px;
    left: 0;
    transform: rotateZ(45deg);
    transition: all .3s linear;
}
.customer-service-box{
    position: fixed;
    z-index: 9;
    bottom: 100px;
    right: 18pt;
}
.customer-service-box a{
    width: 60px;
    height: 60px;
    display: block;
    margin-top: 20px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 0 5px rgba(0,0,0,0.5);
    transition: all .3s linear;
}

@media only screen and (max-width: 1280px){
    .footer-box{
        width: 1000px;
    }
}

@media only screen and (max-width: 1000px){
    .footer-box{
        width: 95%;
        padding: 30px 0;
    }
    .footer-info-all-box{
        width: 100%;
        margin-bottom: 20px;
    }
    .footer-top-box{
        display: none;
    }
    .footer-web{
        margin-top: 0;
    }
    footer{
        padding: 0;
    }
    .customer-service-box{
        bottom: 90px;
    }
    .customer-service-box a{
        width: 40px;
        height: 40px;
    }
    .fb_dialog{
        transform: scale(0.7);
        right: 11pt!important;
    }
}
@media only screen and (max-width: 550px){
    .footer-box{
        padding: 15px 0; 
    }
    .footer-info{
        margin-top: 3px;
    }
    .footer-info-all-box{
        margin-bottom: 10px;
        min-width: 100%;
    }
    .customer-service-box a{
        width: 35px;
        height: 35px;
        margin-top: 10px;
    }
    .customer-service-box{
        bottom: 80px;
    }
    .fb_dialog{
        transform: scale(0.6);
        right: 10pt!important;
    }
}


/*hover*/
.footer-info-a:hover{
    color: #a62a32;
}
.footer-top-box:hover .footer-top-text{
    color: #a62a32;
}
.footer-top-box:hover .footer-top-line{
    background-color: #a62a32;
    transform-origin: 50% 0%;
    transform: scaleY(0.8);
}
.footer-top-box:hover .footer-top-line:before{
    background-color: #a62a32;
    top: 4px;
    z-index: 1;
    opacity: 1;
}
.footer-top-box:hover .footer-top-line:after{
    background-color: #a62a32;
    top: 4px;
    z-index: 1;
    opacity: 1;
}
.customer-service-box a:hover{
    transform: scale(1.1);
}