.wyqq-floating-buttons {
  position: fixed;
  right: 24px;
  bottom: 120px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.wyqq-fb-group {
  background: var(--wyqq-fb-bg, #111);
  color: #fff;
  border-radius: 999px;
  padding: 12px 0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  width: 78px; /* 椭圆竖条视觉 */
  align-items: stretch;
  display: flex;
  flex-direction: column;
}

.wyqq-fb-item {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 6px;
  padding: 10px 12px;
  color: var(--wyqq-fb-text-color, #fff) !important;
  text-decoration: none;
  background: transparent;
  border: 0;
  cursor: pointer;
  position: relative;
}

.wyqq-fb-group .wyqq-fb-item .wyqq-fb-icon {
  font-size: 20px;
  width: 24px;
  height: 24px;
  line-height: 24px;
  color: var(--wyqq-fb-icon-color, #333) !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.wyqq-fb-item .wyqq-fb-icon.img {
  width: 24px; height: 24px; object-fit: contain;
}
.wyqq-fb-item .wyqq-fb-text {
  font-size: 12px;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
}

.wyqq-fb-item.with-divider::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: -6px;
  height: 1px;
  background: rgba(255,255,255,0.25);
}

.wyqq-fb-item:hover {
  background: rgba(255,255,255,0.06);
}

.wyqq-fb-item.type-qrcode .wyqq-fb-qrcode {
  position: absolute;
  right: 84px;
  top: 50%;
  transform: translateY(-50%) scale(0.9);
  background: #fff;
  padding: 8px;
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.2);
  display: none;
}
.wyqq-fb-item.type-qrcode .wyqq-fb-qrcode img {
  width: 140px; height: 140px; object-fit: contain;
}

.wyqq-fb-item.show-qrcode .wyqq-fb-qrcode { display: block; }

@media (max-width: 768px) {
  .wyqq-floating-buttons { right: 12px; bottom: 80px; }
  .wyqq-fb-group { width: 64px; padding: 8px 0; }
  .wyqq-fb-item.hide-mobile { display: none; }
}