/* 添加淡入/淡出的 CSS 过渡效果 */

#copySuccess {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out, visibility 0.3s linear;
}

