/* CodeFull 站内 Logo - 条形码 + 文案，各页通用 */
.codefull-logo {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: var(--secondary-color, #3498db);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.3px;
  flex-shrink: 0;
}
.codefull-logo:hover {
  color: var(--primary-color, #2c3e50);
}
.codefull-logo-icon {
  width: 28px;
  height: 28px;
  display: block;
}
.codefull-logo-text {
  font-family: 'Poppins', system-ui, sans-serif;
}

/* 嵌入 CodeFull 品牌动态按钮（iframe 方式） */
.codefull-brand-iframe {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 340px;
  height: 480px; /* 提高 iframe 高度，确保对话框上移后顶部不被裁剪 */
  border: none;
  background: transparent;
  z-index: 2000;
}

@media (max-width: 900px) {
  .codefull-brand-iframe {
    display: none;
  }
}
