/* 评论通知弹窗 — 右下角浮动通知 */
#zm-comment-popup {
    min-width: 300px;
    max-width: 500px;
    bottom: 20px;
    right: 20px;
    position: fixed;
    z-index: 1002;
    color: #363636;
    padding: 8px 16px;
    border-radius: 12px;
    background-color: rgba(255,255,255,.85);
    border: 1px solid #e3e8f7;
    max-height: 300px;
    opacity: 0;
    transform: translateY(20px);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition: .3s;
    cursor: pointer;
}
#zm-comment-popup:hover {
    border: 1px solid var(--theme-color, #425aef);
}
#zm-comment-popup.zm-cp-show {
    opacity: 1;
    transform: translateY(0);
}
.zm-cp-header {
    position: relative;
    display: flex;
    align-items: center;
}
.zm-cp-title {
    font-size: 14px;
    font-weight: 700;
    background: #363636;
    color: #fff;
    padding: 4px 8px;
    border-radius: 4px;
    margin-right: 8px;
    transition: .3s;
}
.zm-cp-title:hover { background-color: var(--theme-color, #425aef); }
.zm-cp-author {
    font-size: 14px;
    font-weight: 600;
    color: #363636;
    display: flex;
    align-items: center;
    cursor: pointer;
}
.zm-cp-avatar {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    margin-right: 6px;
    background-color: #f5f6f7;
}
.zm-cp-divider {
    width: 100%;
    height: 1px;
    background: #e3e8f7;
    margin: 5px 0;
}
.zm-cp-body {
    font-size: 15px;
    word-wrap: break-word;
    max-width: 450px;
    white-space: normal;
    text-overflow: ellipsis;
}
.zm-cp-body p {
    margin: 0;
    padding: 0;
    line-height: 1.5;
    display: inline-block;
}

@media screen and (max-width: 768px) {
    #zm-comment-popup { display: none !important; }
}
