.comment-item {
    padding: 12px 0;
}

.user-info {
    display: flex;
    margin-bottom: 5px;
}

.avatar {
    width: 40px;
    height: 40px;
    background: #e0e0e0;
    flex-shrink: 0;
}

.user-meta {
    margin-left: 10px;
}

.username {
    font-weight: bold;
    color: #333;
    display: block;
}

.comment-content {
    margin-left: 50px;
    color: #333;
    line-height: 1.5;
    padding: 12px;
    border-width: 2px;
    box-shadow: 0px 0px 0px 0px #434343, 0px 0px 0px 0px #434343;
    border-color: #434343;
    border-radius: 0.25rem;
    border-top-left-radius: 250px 10px;
    border-top-right-radius: 15px 204px;
    border-bottom-left-radius: 15px 257px;
    border-bottom-right-radius: 230px 15px;
    border: 2px solid #4d4343;
    position: relative;
    background-color: #fff;
    margin-top: -3px;
    /* 关键修改：上移3px */
    transform: translateY(-3px);
    /* 备用方案，确保上移效果 */
    background-color: #e6dece;
}

/* 回复时间 */
.comment-time {
    margin-left: 50px;
    color: #999;
    font-size: 12px;
    margin-top: 7px;
    /* 相应减少上边距 */
    margin-bottom: 7px;
}

.plqxx {
    border-top: 1px solid rgba(50, 50, 50, 0.09);
    padding: 10px 0;
}