﻿/* 追加回复容器 */
.additional-reply-wrapper {
    padding: 16px 20px;
    background: #f9fafc;
}

.additional-reply-header {
    font-size: 15px;
    font-weight: 600;
    color: #1a5a9e;
    margin-bottom: 14px;
    padding-bottom: 8px;
    border-bottom: 1px dashed #dce3ec;
}

    .additional-reply-header i {
        margin-right: 6px;
    }

/* 单条追加回复 */
.additional-reply-item {
    background: #ffffff;
    border: 1px solid #e8edf4;
    border-radius: 8px;
    padding: 14px 18px;
    margin-bottom: 12px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.02);
}

    .additional-reply-item:last-child {
        margin-bottom: 0;
    }

/* 元信息行 */
.reply-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 13px;
    color: #64748b;
    margin-bottom: 10px;
}

    .reply-meta span {
        white-space: nowrap;
    }

    .reply-meta .meta-unit {
        font-weight: 600;
        color: #334155;
    }

    .reply-meta .meta-time {
        color: #94a3b8;
    }

    .reply-meta .meta-handler {
        color: #64748b;
    }

/* 回复内容 */
.reply-content {
    font-size: 14px;
    line-height: 1.7;
    color: #1e293b;
}

    .reply-content p {
        margin: 0;
    }
