#wangboAvatar{
    position:fixed;
    right:25px;
    bottom:25px;
    width:80px;
    height:80px;
    border-radius:50%;
    border:3px solid #D4AF37;
    box-shadow:0 5px 15px rgba(0,0,0,0.2);
    cursor:move;
    z-index:998;
    transition:transform .3s;
    object-fit:cover;
    user-select:none;
}
#wangboAvatar:hover{transform:scale(1.08);}

#aiInputPanel{
    position:fixed;
    width:280px;
    padding:10px;
    background:#fff;
    border-radius:12px;
    box-shadow:0 5px 20px rgba(0,0,0,0.15);
    z-index:999;
    display:none;
}
#aiInputPanel.show{display:block;}

#aiInput{
    width:100%;
    height:42px;
    padding:0 12px;
    border:2px solid #C41E3A;
    border-radius:8px;
    font-size:14px;
    outline:none;
}

#suggestList{
    position:absolute;
    left:0;
    bottom:55px;
    width:100%;
    background:#fff;
    border-radius:8px;
    box-shadow:0 3px 10px rgba(0,0,0,0.1);
    max-height:180px;
    overflow-y:auto;
    display:none;
    box-sizing:border-box;
    z-index: 9999;
}
.suggest-item{
    padding:10px 12px;
    cursor:pointer;
    font-size:13px;
}
.suggest-item:hover{
    background:#fbeaec;
    color:#C41E3A;
}

#answerPopup{
    position:fixed;
    width:280px;
    background:#fff;
    border-radius:12px;
    padding:15px;
    box-shadow:0 5px 20px rgba(0,0,0,0.15);
    z-index:1000;
    display:none;
    border-left:4px solid #C41E3A;
}
#answerPopup.show{display:block;}
#answerPopup .title{
    font-size:14px;
    font-weight:bold;
    color:#C41E3A;
    margin-bottom:6px;
}
#answerPopup .close{
    position:absolute;
    right:12px;
    top:10px;
    cursor:pointer;
    color:#999;
    font-size:16px;
}