/* 设置猫咪图片的样式 */
#catcat {
  position: fixed; /* 固定定位 */
  width: 57px; /* 宽度设置为57px */
  height: 70px; /* 高度设置为70px */
  background-image: url('/images/mao.svg'); /* 设置背景图片 */
  background-position: center; /* 背景图片居中显示 */
  background-size: cover; /* 背景图片覆盖整个元素 */
  background-repeat: no-repeat; /* 背景图片不重复 */
  right: -5px; /* 从右侧固定位置开始，初始为-5px */
  bottom: 130px; /* 从底部固定位置开始 */
  transition: right 0.3s ease-in-out; /* 右侧移动时的过渡效果 */
  z-index: 999;
}

/* 在移动端隐藏猫咪图片 */
@media (max-width: 768px) {
  #catcat {
    display: none; /* 隐藏元素 */
  }
}