/* Quill 编辑器全局样式 */


.summary-text{
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 10px;
    color: #666;
}

/* 用户统计信息样式 */
.user-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin: 20px 0;
}

.stat-card {
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.stat-card .number {
    font-size: 24px;
    font-weight: 600;
    color: #fd7e14;
    margin-bottom: 5px;
}

.stat-card .label {
    color: #666;
    font-size: 14px;
}
/* 快捷操作区域 */
.quick-actions {
    margin: 20px 0;
    padding: 15px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.action-button {
    display: flex;
    align-items: center;
    padding: 12px;
    background: #f8f9fa;
    border: none;
    border-radius: 8px;
    color: #333;
    width: 100%;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.action-button:hover {
    background: #fd7e14;
    color: #fff;
}

.action-button i {
    margin-right: 10px;
}

.article-cover {
    height: 200px;
    object-fit: cover;
    margin: 15px 0;
}
