#shareIcons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 10px 0;
  max-width: 100%;
  box-sizing: border-box;
}

.share-icon {
  position: relative;
  width: 35px;
  height: 35px;
  flex-shrink: 0;
  cursor: pointer;
  margin: 20px 5px; /* 上下 20px，左右 5px */
}

.share-icon object {
  width: 100%;
  height: 100%;
  pointer-events: none;
  transition: transform 0.3s ease;
}

.share-icon:hover object {
  transform: scale(1.2);
}

.qr-wrap {
  display: none;
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-bottom: 12px;
  padding: 6px;
  background: #fff;
  border: 1px solid #ccc;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  z-index: 1000;
}

.share-icon.wechat:hover .qr-wrap {
  display: block;
}

.qr-inner {
  width: 100px;
  height: 100px;
}