.flow_wrap {
    display: flex;
    align-items: flex-start;
    gap: 30px 0;
    justify-content: space-between;
}

.flow_wrap .logo {
    display: flex;
    width: 94px;
    margin-bottom: 12px;
}

.flow_wrap .desc_wrap {
    width: calc((100% - 50px) * 0.6);
    max-width: 603px;
}

.flow_wrap .desc_box {
    margin-top: 32px;
}

.flow_wrap .img_wrap {
    width: calc((100% - 50px) * 0.4);
    max-width: 409px;
    aspect-ratio: 1/0.60041;
    border-radius: 8px;
    overflow: hidden;
}

.flow_wrap .img_wrap img {
    object-fit: cover;
    object-position: center;
    height: 100%;
}

.flow_sect {
    background: url(/static/app_www/base/img/bg_flow.png) no-repeat center/cover;
}


.flow_sect .sect_sub_title,
.flow_sect .sect_title,
.flow_sect .sect_desc {
    text-align: center;
}

.flow_sect .sect_desc {
    margin-top: 16px;
}

.flow_list {
    margin-top: 60px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.flow_item {
    display: block;
    background-color: #fff;
    padding: 24px;
    border-radius: 8px;
    border: 1px solid #EBEBEB;
    width: calc((100% - 20px) / 2);
}

.flow_item .item_no {
    margin-bottom: 4px;
    font-size: 24px;
    font-weight: 700;
    color: var(--main-color);
}

.flow_item .item_title {
    font-size: 18px;
    font-weight: 600;
    color: #222;
}

.flow_item .item_desc {
    margin-top: 16px;
    font-size: 16px;
    font-weight: 400;
    color: #5E5E5E;
}


@media screen and (max-width:1023px) {
    .flow_wrap {
        flex-direction: column;
    }

    .flow_wrap .desc_wrap {
        width: 100%;
        max-width: 100%;
    }

    .flow_wrap .img_wrap {
        width: 100%;
        max-width: 100%;
    }

    .flow_list {
        margin-top: 30px;
    }


    .flow_item {
        width: 100%;
        padding: 16px;
    }

    .flow_item .item_no {
        font-size: 18px;
    }
}