/* 底部导航 */
.tabnav{
    width: 100%;
    height: .6rem;
    display: flex;
    flex-direction: row;
    background-color: #fff;
    position: fixed;
    left: 0;
    bottom: 0;
}
.tabnav1{
    width: 100%;
    height: .6rem;
    display: flex;
    flex-direction: row;
    background-color: #fff;
}
.tabnav_list{
    width:33.3%;
    height: 100%;
    text-align: center;
}
.tabnav_list a{
    display: block;
    width: 100%;
    height: 100%;
    color: #000;
    font-size: .15rem;
    margin: 0 auto;
    text-decoration: none;
}
.tabnav_list a img{
    width: .3rem;
    height: .3rem;
    margin-top: .1rem;
}
.tabnav_list p{
    color: #bbb;
    font-size: 14px;
}
.tabnav_list p.hongse{
    color: #48C997;
}
@media screen and (min-width:768px){
    .tabnav{
        height: 90px;
    }
    .tabnav1{
        height: 90px;
    }
    .tabnav_list a{
        font-size: 20px;
    }
    .tabnav_list a img{
        width: 50px;
        height: 50px;
    }
    .tabnav_list p{
        line-height: 30px;
    }
}



