.comments-area {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #eee;
    color: #444;
}

.comments-title {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

/* --- 表单样式 --- */
.respond {
    margin-bottom: 40px;
}

.auth-status {
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.comment-inputs {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.comment-inputs input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.85rem;
}

textarea {
    width: 100%;
    height: 120px;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 10px;
    display: block;
    resize: vertical;
}

.comment-button {
    display: flex;
    justify-content: space-between;
}

.submit{
    background: #333;
    color: #fff;
    border: none;
    padding: 8px 20px;
    border-radius: 4px;
    cursor: pointer;
}

.submit:hover {
    background: var(--accent, #555);
}

.cancel-reply a{
    text-decoration: none;
    font-size: 12px;
    color: var(--accent);
}


.comment-list,
.comment-list ol {
    list-style: none;
    margin: 0;
    padding: 0;
}

.comment-list li {
    padding: 20px 0;
    border-bottom: 1px solid #f9f9f9;
}

.comment-author {
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.comment-author .avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    vertical-align: middle;
    margin-right: 8px;
}

.comment-author cite {
    font-style: normal;
    font-weight: bold;
}

.comment-meta {
    font-size: 0.8rem;
    color: #999;
    margin-left: 10px;
}

.comment-content {
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 10px 0;
}

.comment-content p {
    margin: 0;
}

.comment-reply {
    font-size: 0.85rem;
    text-align: right;
}

.comment-reply a {
    color: #007bff;
    text-decoration: none;
}

.comment-children {
    margin-left: 40px;
    padding-left: 15px;
    border-left: 1px solid #eee;
}

@media (max-width: 600px) {
    .comment-inputs {
        flex-direction: column;
    }

    .comment-children {
        margin-left: 20px;
    }
}