/* article_comment.css - 评论区专属样式 */
.comment-module {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #334155;
}
.comment-title {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #f8fafc;
}
.comment-form {
    background: #1e293b;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 30px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.4), 0 2px 4px -1px rgba(0, 0, 0, 0.3);
}
.form-group {
    margin-bottom: 15px;
}
.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #e2e8f0;
}
.form-control {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #334155;
    border-radius: 4px;
    font-size: 0.9rem;
    background: #0f172a;
    color: #f8fafc;
}
.form-control:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2);
}
.btn-submit {
    background: #3b82f6;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
}
.btn-submit:hover {
    background: #2563eb;
}
.message {
    margin-top: 10px;
    padding: 8px;
    border-radius: 4px;
    display: none;
}
.message.success {
    display: block;
    background: #0f172a;
    color: #10b981;
    border: 1px solid #10b981;
}
.message.error {
    display: block;
    background: #0f172a;
    color: #ef4444;
    border: 1px solid #ef4444;
}
.comment-list {
    margin-top: 20px;
}
.comment-item {
    padding: 15px;
    border-bottom: 1px solid #334155;
    margin-bottom: 10px;
    background: #0f172a;
    border-radius: 6px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.3);
}
.comment-item:last-child {
    border-bottom: none;
}
.comment-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 0.9rem;
}
.comment-username {
    font-weight: 500;
    color: #3b82f6;
}
.comment-time {
    color: #94a3b8;
}
.comment-content {
    line-height: 1.6;
    color: #e2e8f0;
}
.no-comment {
    text-align: center;
    padding: 20px;
    color: #94a3b8;
    font-size: 0.9rem;
    background: #0f172a;
    border-radius: 6px;
    margin-top: 20px;
}
