/* B2 AI评论插件样式 */

.b2-ai-comment-button-container {
    margin: 15px 0;
    text-align: right;
}

.b2-ai-comment-button {
    background-color: #ff3355;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 8px 15px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.b2-ai-comment-button:hover {
    background-color: #e62e4d;
}

.b2-ai-comment-button:before {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-right: 6px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-1 16h-2v-2h2v2zm2.07-7.75l-.9.92c-.5.51-.86.97-1.04 1.69-.08.32-.13.68-.13 1.14h-2v-.5c0-.46.08-.9.22-1.31.2-.58.53-1.1.95-1.52l1.24-1.26c.46-.44.68-1.1.55-1.8-.13-.72-.69-1.33-1.39-1.53-1.11-.31-2.14.32-2.47 1.27-.12.37-.43.65-.82.65h-.3C6.4 8 6 7.57 6.1 7.08c.17-.8.62-1.58 1.48-2.09.8-.47 1.69-.7 2.58-.7.97 0 1.94.28 2.75.82.95.64 1.58 1.69 1.58 2.8 0 1.77-1.29 2.4-1.42 2.34z"/></svg>');
    background-size: cover;
}

.b2-ai-comment-loading {
    margin-top: 10px;
    padding: 10px;
    background-color: #f5f5f5;
    border-radius: 4px;
    text-align: center;
}

.b2-ai-comment-loading:before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 8px;
    vertical-align: middle;
    border: 2px solid #ff3355;
    border-top-color: transparent;
    border-radius: 50%;
    animation: b2-ai-comment-spin 1s linear infinite;
}

@keyframes b2-ai-comment-spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.b2-ai-comment-error {
    color: #ff3355;
    margin-top: 5px;
} 