/* 固定在页面底部中央 */
.bottom-center-img {
  position: fixed;
  bottom: 10px;  /* 距离底部10px */
  left: 50%;
  transform: translateX(-50%);  /* 使图片居中 */
  z-index: 9999;  /* 保证图片位于页面顶部 */
  max-width: 100%;  /* 自适应宽度 */
  height: auto;  /* 保持图片比例 */
}

/* 移动端适配 */
@media (max-width: 768px) {
  .bottom-center-img {
    bottom: 20px;  /* 在小屏幕上稍微增加底部间距 */
    width: 80%;  /* 在小屏幕上缩小图片宽度 */
  }
}

