/* 微信图标悬停显示二维码 */
.social-icon:has(.fa-weixin) {
  position: relative;
}

.social-icon:has(.fa-weixin)::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 150px;
  background-image: url('/weixin.jpg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 1000;
}

.social-icon:has(.fa-weixin):hover::after {
  opacity: 1;
  visibility: visible;
}

/* 确保社交媒体图标区域可以溢出显示 */
.card-info-social-icons,
#site_social_icons,
.card-widget,
.card-info,
aside,
#aside-content {
  overflow: visible !important;
}