/* 导航链接 hover 下划线 */
.hover-lift:hover::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.5px;
  background-color: rgba(107, 114, 128, 0.5);
  border-radius: 999px;
  transition: all 0.3s ease;
}

.relative span {
  z-index: 1;
}
