#quick-reply-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 12px;
    font-weight: 800;
    border-radius: 5px;
    margin-right: 10px;
    height: 30px;
    width: 70px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    background: rgba(136, 136, 136, 0.1);
    color: #888;
}
#quick-reply-btn:hover {
    color: #fff;
    background: #000;
    transition: 1.0s;
}
.quick-reply-modal {
    position: absolute;
    background: white;
    padding: 15px;
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    display: none;
    z-index: 9999;
    min-width: 250px;
    bottom: calc(40% + 5px);
    right: 110px;
    transform: none; /* 移除之前的居中变换 */
}
/* 三角形指示器 */
.quick-reply-modal::after {
    content: '';
    position: absolute;
    top: 100%;
    right: 15px;
    border-width: 8px;
    border-style: solid;
    border-color: white transparent transparent transparent;
}
.quick-reply-content h3 {
    margin-top: 0;
    margin-bottom: 10px;
    color: #333;
    font-size: 15px;
}
.quick-reply-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 200px;
    overflow-y: auto;
}
.quick-reply-content li {
    padding: 8px 12px;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
    transition: background-color 0.2s;
    font-size: 14px;
}
.quick-reply-content li:last-child {
    border-bottom: none;
}
.quick-reply-content li:hover {
    background-color: #f8f8f8;
}
.quick-reply-content button.close-modal {
    margin-top: 12px;
    padding: 6px 12px;
    background-color: #f44336;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    float: right;
    font-size: 13px;
}    