 
.menu-card-container {
    margin-top: 10px;
    padding: 0 20px;
    
    @media (max-width: 568px) {
         margin-top: 30px;
    }
}

.menu-header {
    margin-bottom: 24px;
}

.cards-grid {
    /* PC端一行6列 */
    grid-template-columns: repeat(6, 1fr);
    /* 手机端一行2列 */
    @media (max-width: 568px) {
        grid-template-columns: repeat(1, 1fr);
    }
    display: grid;
    gap: 24px;
}

.card {
    width: 250px;
    height: 70px;
    display: flex;
    align-items: center;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.card i {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card img {
    
}

.card-info{
   margin-left: 5px;
}

/* 图标颜色示例，可根据需要调整 */
.fa-chart-line { color: #3b82f6; }
.fa-table { color: #22c55e; }
.fa-database { color: #f97316; }
.fa-chart-bar { color: #a855f7; }
.fa-download { color: #10b981; }
.fa-upload { color: #ef4444; }
 
.bg-primary {
    background-color: rgb(255, 255, 255);
}

.text-light {
    color: rgb(109, 111, 98);
}

.bg-secondary {
    background-color: rgb(255, 255, 255);
}

.hover\:bg-secondary:hover {
    background-color: rgb(182, 205, 227);
}

.border-accent {
    border-color: rgb(255, 255, 255);
}
