/*文字标签划痕*/
.tag--strike{
  color: var(--muted);
  border-style: dashed;
  opacity: .85;
  text-decoration: line-through;
  text-decoration-thickness: 1.5px;
  text-decoration-color: currentColor;
  text-decoration-skip-ink: none;
}

/*拷贝支持*/
.linkCard { position: relative; cursor: pointer; }

.linkCard.is-copied::after {
  content: attr(data-tip);
  position: absolute;
  right: 12px;
  top: 12px;
  padding: 4px 8px;
  border-radius: 8px;
  font-size: 12px;
  background: var(--card);
  color: --text;
  pointer-events: none;
}

/*拷贝支持*/
