/* 管理员微信按钮 */
.admin-wechat-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 12px;
  margin-bottom: 10px;
  background: linear-gradient(135deg, #07c160 0%, #06ad56 100%);
  border: 1px solid #06ad56;
  border-radius: 8px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 2px 8px rgba(7, 193, 96, 0.3);
}
.admin-wechat-btn:hover {
  background: linear-gradient(135deg, #06ad56 0%, #059a4c 100%);
  border-color: #059a4c;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(7, 193, 96, 0.4);
}
.admin-wechat-btn:active {
  transform: translateY(0);
}
.admin-wechat-icon {
  font-size: 18px;
}
.admin-wechat-text {
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* 管理员微信弹窗 */
.admin-wechat-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 99999;
}
.admin-wechat-modal-overlay.active {
  display: flex;
}
.admin-wechat-modal {
  background: #fff;
  border-radius: 12px;
  width: 340px;
  max-width: 90%;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}
.admin-wechat-modal-header {
  background: linear-gradient(135deg, #07c160 0%, #06ad56 100%);
  padding: 20px;
  text-align: center;
  color: #fff;
}
.admin-wechat-modal-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
}
.admin-wechat-modal-subtitle {
  font-size: 13px;
  opacity: 0.9;
}
.admin-wechat-modal-body {
  padding: 24px;
  text-align: center;
}
.admin-wechat-qr-container {
  width: 200px;
  height: 200px;
  margin: 0 auto 16px;
  border-radius: 8px;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.admin-wechat-qr-container img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.admin-wechat-qr-placeholder {
  color: #999;
  font-size: 13px;
  text-align: center;
  line-height: 1.5;
}
.admin-wechat-tip {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
}
.admin-wechat-tip strong {
  color: #07c160;
}
.admin-wechat-modal-footer {
  padding: 12px 20px 20px;
  text-align: center;
}
.admin-wechat-close-btn {
  padding: 8px 32px;
  background: #f5f5f5;
  border: none;
  border-radius: 6px;
  color: #666;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s;
}
.admin-wechat-close-btn:hover {
  background: #e8e8e8;
  color: #333;
}
