/* 社交媒体二维码弹窗样式 */
.qr-code-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.qr-code-container {
  background-color: #fff;
  border-radius: 8px;
  width: 90%;
  max-width: 360px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.qr-code-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  border-bottom: 1px solid #eee;
}

.qr-code-header h3 {
  margin: 0;
  font-size: 1.2rem;
  color: #333;
}

.qr-code-close {
  background: none;
  border: none;
  font-size: 1.2rem;
  color: #999;
  cursor: pointer;
  transition: color 0.3s;
}

.qr-code-close:hover {
  color: #333;
}

.qr-code-content {
  padding: 20px;
  text-align: center;
}

.qr-code-image {
  width: 200px;
  height: 200px;
  margin: 0 auto 15px;
  border: 1px solid #eee;
  padding: 10px;
  background-color: #fff;
}

.qr-code-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.qr-code-desc {
  margin-bottom: 20px;
  color: #666;
}

.qr-mobile-actions {
  display: none; /* 默认隐藏，在移动端显示 */
  flex-direction: column;
  gap: 10px;
}

.social-icon-btn {
  transition: transform 0.3s, color 0.3s;
}

.social-icon-btn:hover {
  transform: scale(1.2);
}

.social-icon-btn.active {
  color: var(--primary-color);
  transform: scale(1.2);
}

/* 按钮样式 */
.btn-outline {
  background-color: transparent;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  padding: 8px 15px;
  border-radius: 4px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-outline:hover {
  background-color: rgba(0, 116, 217, 0.1);
}

.save-qr-btn, .copy-id-btn {
  width: 100%;
}

/* 响应式样式 */
@media (max-width: 768px) {
  .qr-mobile-actions {
    display: flex;
  }
} 