/* ======================
   底部全新样式 - 无冲突版 - 陕西新势力网络科技有限公司 - 18049287565
   ====================== */

/* 最外层容器 */
.footer-bottom-wrap {
  width: 100%;
  background: #f5f5f5; /* 可自行修改背景色 */
  padding: 15px 0;
  box-sizing: border-box;
  border-top: 1px solid #eee;
}

/* 内容居中容器 */
.footer-inner-container {
  max-width: 1200px; /* PC端最大宽度 */
  margin: 0 auto;
  padding: 0 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap; /* 移动端自动换行 */
  gap: 15px;
}

/* 左侧友情链接 */
.footer-left-links {
  flex: 1;
  font-size: 14px;
  color: #333;
  line-height: 1.6;
}

/* 右侧公众号整体 */
.footer-right-qrcode {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

/* 公众号文字按钮 */
.qrcode-trigger-btn {
  font-size: 14px;
  color: #333;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

/* 微信小图标（用字体图标/背景图均可） */
.wechat-mini-icon {
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url("static/image/wechat-icon.png") center center / contain no-repeat;
  /* 如无小图标，可删除这行 */
}

/* 二维码弹窗 默认隐藏 */
.qrcode-popup-box {
  position: absolute;
  bottom: 100%;
  right: 0;
  background: #fff;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  display: none;
  z-index: 999;
  margin-bottom: 8px;
}

/* 鼠标悬浮显示二维码（PC） / 点击显示（移动端兼容） */
.footer-right-qrcode:hover .qrcode-popup-box {
  display: block;
}

/* 二维码图片大小 */
.qrcode-popup-box img {
  width: 130px;
  height: 130px;
  display: block;
  object-fit: contain;
}

/* ======================
   移动端适配（手机）
   ====================== */
@media (max-width: 768px) {
  .footer-inner-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-left-links {
    width: 100%;
  }

  .qrcode-trigger-btn {
    justify-content: center;
  }

  .qrcode-popup-box {
    right: 50%;
    transform: translateX(50%);
  }
}