/* 热评弹窗 */
#wniui-popup-window {
    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, 0.85);
    border: 1px solid #e3e8f7;
    max-height: 300px;
    opacity: 0;
    transform: translateY(20px);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition: opacity 0.4s ease, transform 0.4s ease, border-color 0.4s ease;
    pointer-events: none;
}

#wniui-popup-window.wniui-show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

#wniui-popup-window:hover {
    border-color: #425AEF;
}

.wniui-popup-header {
    display: flex;
    align-items: center;
    margin-bottom: 6px;
}

.wniui-popup-title {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    background: #363636;
    padding: 4px 8px;
    border-radius: 4px;
    transition: background-color 0.4s;
    margin-right: 8px;
    cursor: default;
}

.wniui-popup-title:hover {
    background-color: #425AEF;
}

.wniui-popup-author {
    font-size: 14px;
    font-weight: 600;
    color: #363636;
}

#wniui-popup-window .wniui-popup-window-divider {
    width: 100%;
    border: 1px solid #e3e8f7;
}

#wniui-popup-window .wniui-popup-window-content {
    font-size: 15px;
    word-wrap: break-word;
    max-width: 450px;
    margin-top: 5px;
    overflow: hidden;
    white-space: normal;
    text-overflow: ellipsis;
}

.wniui-popup-window-content p {
    margin: 0;
    padding: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    line-height: 1.5;
}

/* 移动端隐藏 */
@media (max-width: 768px) {
    #wniui-popup-window {
        display: none !important;
    }
}
