/* F12开发者工具标�?*/

/* 为开发者工具添加背景和文字 */
@media (max-width: 0px) {
  /* 这个媒体查询不会被实际触发，只用于在开发者工具中显示 */
  body::before {
    content: '云梦';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-size: 48px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
  }
}

/* 为开发者工具元素添加样�?*/
/* 这些样式会在开发者工具中显示，给用户一个美观的体验 */
::selection {
  background: rgba(102, 126, 234, 0.3);
}

::-moz-selection {
  background: rgba(102, 126, 234, 0.3);
}

/* 为开发者工具中的元素添加一些特殊效�?*/
* {
  transition: all 0.3s ease;
}

/* 移除可能导致黑点点的伪元�?*/
