#juanyi-comments-popup-window {
    min-width: 300px;
    max-width: 300px;
    min-height: 80px;
    max-height: 150px;
    bottom: 90px;
    left: 6px;
    position: fixed;
    z-index: 1002;
    color: #363636;
    padding: 8px 16px;
    border-radius: 12px;
    transition: opacity 0.3s ease, transform 0.3s ease;
    background-color: rgba(255, 255, 255, 0.85);
    border: 1px solid #e3e8f7;
    opacity: 0;
    transform: translateY(20px);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition: 0.4s;
    overflow: hidden;
}

#juanyi-comments-popup-window:hover {
    border: 1px solid #425AEF;
    transition: 0.4s;
}

.juanyi-comments-popup-url {
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: #363636;
}

.juanyi-comments-popup-title:hover {
    background-color: #425AEF;
    transition: 0.4s;
}

#juanyi-comments-popup-window.juanyi-comments-show {
    opacity: 1;
    transform: translateY(0);
}

.juanyi-comments-popup-header {
    display: flex;
    align-items: center;
    margin-bottom: 6px;
}

.juanyi-comments-popup-title {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    background: #363636;
    padding: 4px 8px;
    border-radius: 4px;
    transition: 0.4s;
    margin-right: 8px;
}

.juanyi-comments-popup-author {
    font-size: 14px;
    font-weight: 600;
    color: #363636;
}

#juanyi-comments-popup-window .juanyi-comments-popup-window-divider {
    width: 100%;
    border: 1px solid #e3e8f7;
}

#juanyi-comments-popup-window .juanyi-comments-popup-window-content {
    font-size: 15px;
    word-wrap: break-word;
    max-width: 450px;
    margin-top: 5px;
    overflow: hidden;
    white-space: normal;
    text-overflow: ellipsis;
}

.juanyi-comments-popup-window-content p {
    margin: 0;
    padding: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    line-height: 1.5;
}