.elementor-4998 .elementor-element.elementor-element-e62af08{--display:flex;}/* Start custom CSS for container, class: .elementor-element-e62af08 */.child-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

/* 卡片 */
.child-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
    transition: all 0.25s ease;
}

/* hover */
.child-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 30px rgba(0,0,0,0.15);
}

/* ⭐ 大幅增加图片高度 */
.child-image {
    width: 100%;
    height: 420px;     /* ⭐ 重点升级 */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #fff;
}

/* 不裁剪 */
.child-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* 内容区（更紧凑，让图片更突出） */
.child-content {
    padding: 6px 10px;
    display: block;
}

/* 标题 */
.child-content h3 {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: #222;
    text-align: center;
    line-height: 1.3;
}

/* 平板 */
@media (max-width: 1024px) {
    .child-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .child-image {
        height: 360px;
    }
}

/* 手机 */
@media (max-width: 600px) {
    .child-grid {
        grid-template-columns: 1fr;
    }

    .child-image {
        height: 320px;
    }
}/* End custom CSS */