/* 企业信息 */
.footer-info{
    background-color: #333333;
    padding: 12px 14px 50px 14px;
    text-align: center;
}
.footer-info .line-1{
    color: #D0BA85;
    font-size: 2.6rem;  /*原大小为3.7rem */
    padding-bottom: 5px;
}
.footer-info .line-2{
    color: #FFFFFF;
    font-size: 1.6rem;
}
.footer-info .line-3{
    color: #FFFFFF;
    font-size: 1.6rem;
}
.footer-info .copyright{
    color: #000000;
    font-size: 1.6rem;
}
.footer-info .copyright a{
    color: #000000;
    font-size: 1.6rem;
}

.footer .img{
    padding-bottom: 0px;
    margin: 0px;
}
.footer .img img{
    width: 100%;
}
/* 备案信息 */

/* 底部菜单 */
.footer-menu{
    position: fixed !important;
    bottom: 0px !important;
    width: 100% !important;
    max-width: 750px !important;
    margin: 0px !important;
    z-index: 50;
}
.footer-nav{
    width: 100%;
    margin: 0px auto;
    padding: 0px;
}
.footer-nav > li{
    width: 33.3%;
    text-align: center;
    float: left;
    border-right: 1px solid #CFE2FA;
}
.footer-nav > li:last-child{
    border-right: none;
}
.footer-nav > li a ,
.footer-nav > li a:hover,
.footer-nav > li a:visited,
.footer-nav > li a:focus {
    background-color: #005bac;
    color: #FFFFFF;
}
@media (min-width: 414px) {
    .footer-info .line-1{
        font-size: 1.9rem;
    }
}
/* 二维码悬停效果 */
.footer-nav > li a#weixin-dis {
position: relative;
}
#weixin-dis img {
visibility: hidden;
opacity: 0;
transform: translate(0, 10px);
transition: all 0.3s ease-in-out;
position: absolute;
right: -30px;
bottom: 40px;
width: 45px;
height: 45px;
}
#weixin-dis:hover img {
visibility: visible;
transform: translate(0, 0px);
opacity: 1;
}