/* 表格行悬停效果 */
.table-hover {
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 200ms;
}

.table-hover:hover {
    background-color: rgba(0, 0, 255, 0.05);
}

/* 链接下划线效果 */
.link-effect {
    position: relative;
    color: #2563eb;
    text-decoration: none;
}

.link-effect::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 0.125rem;
    width: 0;
    background-color: blue;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
}

.link-effect:hover::after {
    width: 100%;
}

.link-effect:hover {
    color: #1d4ed8;
}
