.footer-container{
    padding:32px 0 42px;
    background: #F5F5F5;
    border-top: 1px solid #C9C9C9;
}
.footer-container .footer-wrap{
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-container .footer-wrap .logo-wrap{
    width: 132px;
}
.footer-container .footer-wrap .logo-wrap img{
    width: 100%;
}
.footer-container .footer-wrap .site-info-wrap{
    width: 700px;
}
.footer-container .footer-wrap .site-info-wrap span{
    font-weight: 700;
    font-size: 15px;
    line-height: 32px;
    color: #2C3E50;
}
.footer-container .footer-wrap .site-info-wrap .blue{
    font-weight: 600;
    color: #5469EF;
}
.footer-container .footer-wrap .site-info-wrap .blue:nth-child(3){
    margin-left: 25px;
    position: relative;
}
.footer-container .footer-wrap .site-info-wrap .blue:nth-child(3)::after{
    content: "";
    position: absolute;
    height: 18px;
    width: 1px;
    background: #C9C9C9;
    top: 3px;
    left: -14px;
}
@media all and (max-width:767px) {
    .footer-container .footer-wrap{
        flex-wrap: wrap;
    }
    .footer-container .footer-wrap .logo-wrap{
        width: 100%;
        text-align: center;
        margin-bottom: 10px;
    }
    .footer-container .footer-wrap .logo-wrap img{
        width: 120px;
    }
    .footer-container .footer-wrap .site-info-wrap{
        width: 100%;
        text-align: center;
        word-break: keep-all;
    }
}
