.JumpTag{
    display: inline-block;
    padding: 8px 16px;
    margin: 4px 2px;
    font-size: 16px;
    text-decoration: none;
    color: white; /* 默认颜色 */
    background-color: transparent;
    border-radius: 10px;
    transition: color 0.3s, background-color 0.3s;
}

/* 鼠标悬停效果 */
.JumpTag:hover {

    color: #005cbf;
}

/* 确保链接在所有设备上都可点击 */
.JumpTag {
    cursor: pointer;
}

/* 对于有视觉障碍用户的辅助技术 */
.JumpTag:focus, a:active {
    outline: 2px solid #005cbf;
    outline-offset: 2px;
}
