/* 翠溪山庄 AI 管家 · 受护栏的导览组件（纯前端，仅基于官网口径） */
#cuixi-ai-fab {
  position: fixed; left: 22px; bottom: 22px; z-index: 9999;
  display: flex; align-items: center; gap: 8px;
  background: #2f7d4f; color: #fff; border: none; border-radius: 999px;
  padding: 12px 18px; font-size: 15px; font-weight: 600; cursor: pointer;
  box-shadow: 0 6px 22px rgba(47,125,79,.38); font-family: inherit;
  transition: transform .15s ease, box-shadow .15s ease;
}
#cuixi-ai-fab:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(47,125,79,.5); }
#cuixi-ai-fab .dot { width: 8px; height: 8px; border-radius: 50%; background: #9be8b0; animation: cuixiPulse 1.6s infinite; }
@keyframes cuixiPulse { 0%,100%{opacity:.4} 50%{opacity:1} }

#cuixi-ai-panel {
  position: fixed; left: 22px; bottom: 84px; z-index: 9999;
  width: min(380px, calc(100vw - 32px)); height: min(560px, calc(100vh - 120px));
  background: #fff; border-radius: 16px; overflow: hidden; display: none;
  flex-direction: column; box-shadow: 0 18px 50px rgba(0,0,0,.22);
  border: 1px solid #e7ece8; font-family: inherit;
}
#cuixi-ai-panel.open { display: flex; }
#cuixi-ai-head {
  background: linear-gradient(135deg,#2f7d4f,#3a9a63); color: #fff;
  padding: 14px 16px; display: flex; align-items: center; justify-content: space-between;
}
#cuixi-ai-head b { font-size: 15px; }
#cuixi-ai-head small { display:block; font-weight: 400; opacity: .85; font-size: 11px; margin-top: 2px; }
#cuixi-ai-close { background: rgba(255,255,255,.18); border: none; color: #fff; width: 28px; height: 28px; border-radius: 8px; cursor: pointer; font-size: 16px; line-height: 1; }
#cuixi-ai-msgs { flex: 1; overflow-y: auto; padding: 14px; background: #f6f9f7; }
.cuixi-bubble { max-width: 88%; margin: 8px 0; padding: 10px 13px; border-radius: 14px; font-size: 14px; line-height: 1.6; word-break: break-word; }
.cuixi-bubble.user { margin-left: auto; background: #2f7d4f; color: #fff; border-bottom-right-radius: 4px; }
.cuixi-bubble.bot { margin-right: auto; background: #fff; color: #1f2a24; border: 1px solid #e3eae6; border-bottom-left-radius: 4px; }
.cuixi-bubble.bot .src { display:block; margin-top: 6px; font-size: 11px; color: #6b7d72; }
#cuixi-ai-chips { display: flex; flex-wrap: wrap; gap: 6px; padding: 0 14px 8px; background: #f6f9f7; }
.cuixi-chip { background: #fff; border: 1px solid #d7e3dc; color: #2f7d4f; border-radius: 999px; padding: 5px 11px; font-size: 12px; cursor: pointer; }
.cuixi-chip:hover { background: #eaf3ee; }
#cuixi-ai-input { display: flex; border-top: 1px solid #e7ece8; background: #fff; }
#cuixi-ai-input input { flex: 1; border: none; outline: none; padding: 13px 14px; font-size: 14px; font-family: inherit; }
#cuixi-ai-input button { border: none; background: #2f7d4f; color: #fff; padding: 0 18px; font-size: 14px; cursor: pointer; }
#cuixi-ai-foot { padding: 7px 14px; font-size: 10.5px; color: #8a988f; background: #f6f9f7; border-top: 1px solid #eef2f0; text-align: center; }
