/* 企业级软件落地页 追加样式 */

/* 方案入口网格 */
.es-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.es-card {
    background: #fff;
    border: 1px solid #edf2f9;
    border-radius: 12px;
    padding: 26px 20px;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.04);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.es-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(46, 140, 254, 0.12);
}

.es-card-logo {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: #f2f7ff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.es-card-logo img {
    max-width: 44px;
    max-height: 44px;
    object-fit: contain;
}

.es-card-name {
    font-size: 15px;
    font-weight: 600;
    color: #1f2d3d;
    line-height: 1.5;
}

.es-card-more {
    font-size: 13px;
    color: #2E8CFE;
}

.es-loading {
    grid-column: 1 / -1;
    text-align: center;
    color: #7a8aa0;
    font-size: 15px;
    padding: 40px 0;
}

.es-adv {
    margin-top: 0;
}

.es-adv-card h3 {
    font-size: 18px;
    color: #1f2d3d;
    margin: 0 0 12px;
}

.es-adv-card p {
    color: #5b6b80;
    font-size: 14px;
    line-height: 1.8;
    margin: 0;
}

#es-grid,
#es-contact {
    scroll-margin-top: 70px;
}

@media (max-width: 992px) {
    .es-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .es-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .es-card {
        padding: 18px 12px;
    }
}
