/**
 * 点击态
 */
.active {
  transition: background-color 0.3s;

  &:active {
    background-color: var(--color-grey-5);
  }
}
