.card-common.card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s;
    height: 100%;
}
.card-common.card:hover {
    transform: translateY(-10px);
}
.card-common .card-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* margin: 20px auto; */
    color: white;
    font-size: 30px;
    background: rgba(255, 255, 255, 0.2);
    margin-right: 20px;
}
.card-common .card-title {
    font-weight: 600;
    /* margin-bottom: 15px; */
}
.card-common .card-text {
    color: rgba(255, 255, 255, 0.8);
}

/* 渐变背景 */
.dynamic-partition {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}
.static-partition {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
}
.smart-dispatch {
    background: linear-gradient(135deg, #43b0e9 0%, #3874f9fc 100%);
    color: white;
}
.linked-dispatch {
    background: linear-gradient(135deg, #086b4ecf 0%, #10c85e 100%);
    color: white;
}