.runfeng_solution_scene{
    padding: var(--content-gap) 0;
}

.runfeng_solution_scene_title{
    color: var(--title-text-color);
    font-size: var(--title-size-h1);
    font-weight: 700;
    line-height: 1.52;
    text-align: center;
}

.runfeng_solution_scene_list{
    margin-top: calc(var(--text-gap-lg) * 2);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: var(--text-gap-md);
    row-gap: calc(var(--text-gap-lg) * 2);
}

.runfeng_solution_scene_item{
    display: flex;
    flex-direction: column;
}

.runfeng_solution_scene_item img{
    width: 100%;
    aspect-ratio: 700/492;
    object-fit: cover;
}

.runfeng_solution_scene_item_title{
    color: var(--title-text-color);
    font-size: 22px;
    font-weight: 700;
    line-height: 1.54;
    height: calc(22px * 1.54 * 1);
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    margin-top: calc(var(--text-gap-md) / 2);
}

.runfeng_solution_scene_item_desc{
    color: var(--text-color);
    font-size: var(--text-size);
    font-weight: 400;
    line-height: 1.375;
    height: calc(var(--text-size) * 1.375 * 2);
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.runfeng_solution_scene .runfeng-btn2{
    margin-top: calc(var(--text-gap) / 2);
    font-size: var(--text-size);
    line-height: 1.5;
    font-weight: 400;
}
@media screen and (max-width: 1500px) {
    .runfeng_solution_scene_item_title{
        font-size: var(--title-size-h6);
        height: calc(var(--title-size-h6) * 1.54 * 1);
    }
}
@media screen and (max-width: 768px) {
    .runfeng_solution_scene_list{
        grid-template-columns: repeat(1, 1fr);
    }
}