.block {
	background: #F5F8FD;
	margin-top: 16px;
	padding: 32px 0;
}

.row {
    display: flex;
    justify-content: space-between;
}
.center-img {
    flex: 1.2;
    position: relative;
    margin: 32px 64px;
}
.desc-left, .desc-right {
    flex: 1;
    align-self: stretch;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 300px;
}
.desc-left {
    text-align: right;
}
.desc-item .label {
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 8px;
}
.desc-item .desc {
    font-size: 16px;
    line-height: 22px;
}

.flow {
    display: flex;
    flex-direction: column;
    background: #EDF2FF;
    padding: 32px 0;
    margin: 48px auto;
}
.item {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: 40px 20px;
    border-radius: 4px;
}
.item .item1 {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.item .icon {
	height: 90px;
    width: 90px;
}
.item .label {
    font-size: 20px;
    margin-top: 16px;
    font-weight: bold;
}
.item .arrow {
    height: 35px;
    width: 36px;
}

.flow2 {
    display: flex;
    flex-direction: column;
    background: white;
    padding: 32px 0;
    margin: 48px auto;
}
.item .item2 {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.item .icon2 {
	height: 60px;
    width: 60px;
}
.item .label2 {
    font-size: 22px;
    margin-top: 16px;
    font-weight: bold;
    padding-bottom: 8px;
    border-bottom: #4BB4F6 5px solid;
}
.item .desc {
    font-size: 18px;
    margin-top: 12px;
}

.flow2 .title2 {
	font-size: 16px;
}

@media screen and (max-width: 800px) {
	.row {
		flex-direction: column;
	}
	.desc-left, .desc-right {
		flex-direction: column;
		min-height: 200px;
	}
	.item {
		flex-direction: column;
		margin: 10px 20px;
	}
	.item .arrow {
		display: none;
	}
}
