/* 整站换肤增强(佳意企服式现代 SaaS 风) */
/* 2026-08-26 修复:系统深色模式(prefers-color-scheme:dark)会让 theme-script 把 data-theme 设为 dark,
   --foreground 变成浅色 #fafafa,导致白底导航文字被"漂白"看不见。强制站点始终使用浅色主题变量。 */
:root,
[data-theme="dark"] {
  --background: #fff !important;
  --foreground: #0a0a0a !important;
  --card: #ffffff !important;
  --card-foreground: #0a0a0a !important;
  --popover: #ffffff !important;
  --popover-foreground: #0a0a0a !important;
  --muted-foreground: #4b5563 !important;
  --secondary-foreground: #0a0a0a !important;
  --accent-foreground: #0a0a0a !important;
  --destructive-foreground: #ffffff !important;
  --border: #e5e7eb !important;
  --input: #e5e7eb !important;
  --ring: #0d9488 !important;
}
body {
  background: linear-gradient(180deg, #f0fdfa 0%, #f9fafb 240px, #f9fafb 100%) !important;
}
/* 顶部品牌渐变色条 */
header, [class*="sticky"] {
  border-bottom: 1px solid #e5e7eb !important;
}
/* 卡片更圆润、轻阴影 */
[class*="rounded"] {
  box-shadow: 0 1px 3px rgba(16,24,40,.06) !important;
}
/* 主按钮更立体 */
[class*="bg-brand-primary"], [class*="bg-teal"], button[type="submit"] {
  box-shadow: 0 4px 14px rgba(13,148,136,.25) !important;
}
/* 链接悬停更清爽 */
a:hover { transition: color .15s ease !important; }
/* 头部/页脚品牌 logo 放大显示 */
img[alt="佳意企服logo"] {
  max-height: 60px !important;
  width: auto !important;
}

/* 2026-08-23 用户要求:隐藏页脚两个二维码(微信公众号/知乎),待替换成新二维码后移除本规则 */
footer div[class*="bottom-full"] {
  display: none !important;
}


