/* ========== 全局样式 ========== */
body {
    background-color: #f5f7fa;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
}

/* 通用卡片样式 */
.common-card {
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.2s;
    background: #fff;
    border: 1px solid #f0f0f0;
}
.common-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
    border-color: #e2e2e2;
}

/* 卡片主体内容布局 */
.common-card-body {
    display: flex;
    align-items: center;
    padding: 14px 16px;
}

/* 图标圆形容器 */
.common-icon-wrap {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background: #f2f5fc;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    flex-shrink: 0;
}
.common-icon-wrap i {
    font-size: 28px;
    color: #16baaa;
}

/* 卡片信息区域 */
.common-info {
    flex: 1;
    min-width: 0;
}
.common-title {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.common-meta {
    font-size: 12px;
    color: #909399;
}

/* 进度条统一样式（覆盖layui默认，保持绿色主题） */
.layui-progress-bar {
    background-color: #16baaa !important;
}

/* 全局按钮辅助 */
.layui-btn-normal {
    background-color: #16baaa !important;
}
.layui-btn-normal:hover {
    background-color: #0e9c8f !important;
}

/* 辅助边距类 */
.mb-2 { margin-bottom: 8px; }
.mb-3 { margin-bottom: 16px; }
.mt-2 { margin-top: 8px; }
.mt-3 { margin-top: 16px; }

/* 空状态样式 */
.empty-state {
    text-align: center;
    padding: 60px 0;
}
.empty-state i {
    font-size: 56px;
    color: #ddd;
}
.empty-state p {
    color: #bbb;
    margin-top: 12px;
    font-size: 14px;
}

/* 右键菜单自定义（提升体验） */
.layui-dropdown-item {
    padding: 8px 16px;
}
.layui-dropdown-item i {
    margin-right: 8px;
    font-size: 14px;
}