.qr-hover {
    position: relative;
  }
  
.qr-popup {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 8px;
    padding: 6px;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    display: none;
    z-index: 100;
  }
  
  .qr-popup img {
    width: 120px;
    height: 120px;
  }
  
  .qr-hover:hover .qr-popup {
    display: block;
  }
  
/*备案号*/
.footer-beian {
    width: 100%;
    text-align: center;
    font-size: 14px;
    color: #888;
    padding: 15px 0;
    background-color: transparent; /* ✅ 透明背景 */
    position: relative;
  }
  
  
  /* 若你想始终固定在页面底部（悬浮）可使用下面这段替代上方 position 部分 */
  .footer-beian.fixed {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: transparent; /* ✅ 透明背景 */
    z-index: 999;
    box-shadow: none; /* 也可以取消阴影 */
  }
  