/* 去掉所有a标签的默认下划线 */
.widget-nav a {
    text-decoration: none;  /* 去掉默认下划线 */
    margin-bottom: 5px;  /* 增加链接之间的间距 */
    display: inline-block;  /* 确保margin和padding生效 */
    padding: 3px 0; /* 增加上下间距，提升可点击区域 */
}

/* 悬停时显示下划线 */
.widget-nav a:hover {
    text-decoration: underline;  /* 悬停时添加下划线 */
}

.list-inline a {
    text-decoration: none;
}

.list-inline a:hover {
    text-decoration: underline;
}