/*导航栏*/
.footer_nav{
    position: absolute;
    bottom: 93px;
    width: 100%;
    height: 40px;
    display: flex;
    justify-content: center;
}
.footer_nav ul{
    width: 555px;
    height: 100%;
}
.footer_nav ul li {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
    text-align: center;
    width: 100%;
    height: 100%;
}
.footer_nav ul li span {
    display: block;
    width: 100%;
    height: 100%;
    line-height: 30px;
    padding: 0 12px;
}

.footer_nav ul li span.active {
    display: block;
    width: 100%;
    height: 100%;
    line-height: 29px;
    padding: 0 12.5px;
}

.footer_nav ul li span div {
    background: #989898;
    width: 80%;
    height: 2px;
    border-radius: 10px;
}

.footer_nav ul li span.active div {
    background: #FB2971;
    height: 4px;
    width: 80%;
    border-radius: 10px;
}

.footer_nav ul li span a{
    font-size: 14px;
    color: #989898;
}

.footer_nav ul li span.active a{
    font-size: 14px;
    font-weight: bold;
    color: #FB2971;
}

.footer_nav ul li span a:hover{
    text-decoration: none;
}