/* 部门卡片容器 */
.dept-cards-container {
    height: 500px;
    max-height: 500px;
    overflow-y: auto;
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #f8f9fa;
    margin-top: 15px;
    margin-bottom: 15px;
}

/* 部门卡片 */
.dept-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: all 0.2s ease;
}

.dept-card:hover {
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    transform: translateY(-2px);
}

.dept-card.selected {
    background-color: #f0f7ff;
    border-color: #0d6efd;
}

/* 部门卡片标题 */
.dept-card-header {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid #eee;
}

/* 部门卡片行 */
.dept-card-row {
    display: flex;
    margin-top: 8px;
    font-size: 0.9rem;
}

.dept-card-row-label {
    flex: 0 0 100px;
    color: #666;
    font-weight: 500;
}

.dept-card-row-content {
    flex: 1;
} 