/* 清除底部导航里所有 a 标签默认样式 */
.tab-bar a {
    text-decoration: none !important; /* 去掉下划线 */
    color: inherit !important;        /* 继承父级颜色，不自己变色 */
    font-weight: inherit !important;  /* 继承字体粗细 */
    font-size: inherit !important;    /* 继承字体大小 */
    display: block;                   /* 填满区域 */
    width: 100%;
    height: 100%;
}

/* 确保点击、hover、访问过都不会出现奇怪样式 */
.tab-bar a:link,
.tab-bar a:visited,
.tab-bar a:hover,
.tab-bar a:active {
    text-decoration: none !important;
    color: inherit !important;
    background: transparent !important;
    border: none !important;
    outline: none !important;
}