.top-arrow {
	text-align: center;
	margin-top: -20px;
}

.top-arrow img {
	width: 38px;
	height: auto;
}

.block {
	padding: 32px 0;
}

.row {
	display: flex;
	justify-content: space-between;
}

.logoRow {
	display: flex;
	justify-content: space-between;
	padding: 16px 0;
}

.card {
	border: 1px solid #DDDDDD;
	border-radius: 8px;
	background: #FCFCFC;
	text-align: center;
	padding: 64px 28px 0 28px;
	box-sizing: border-box;
	width: 30%;
	height: 400px;
}

.card:hover {
	background: #EDF2FF;
	border-color: #EDF2FF;
}

.card .label {
	font-weight: bold;
	font-size: 16px;
	margin: 40px 0 16px 0;
}

.card .desc {
	font-size: 14px;
	text-align: left;
	text-indent: 2em;
	line-height: 22px;
}

.center-img {
	flex: 1.2;
	position: relative;
	margin: 32px;
}

.desc-left, .desc-right {
	flex: 1;
	align-self: stretch;
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-height: 500px;
}

.desc-left {
	text-align: right;
}

.desc-item .label {
	font-weight: bold;
	font-size: 18px;
	margin-bottom: 8px;
}
.desc-item .desc {
	font-size: 14px;
	line-height: 22px;
}

.bg1 {
	padding: 64px 0;
	background: url("../img/index/bg2.png") no-repeat;
	background-size: 100% 100%;
}

.list {
	flex: 1;
	background: #EDF2FF;
	padding: 16px 32px;
}

.right-img {
	flex: 1;
	position: relative;
	margin-left: 64px;
}

.list .list-item {
	display: flex;
	align-items: center;
	padding: 16px;
}

.list .list-item .info {
	flex: 1;
	margin-right: 32px;
}

.list .list-item .info .label {
	font-size: 16px;
	font-weight: bold;
}
.list .list-item .info .text {
	font-size: 14px;
	margin-top: 8px;
	display: none;
}
.list .list-item .icon {
	width: 28px;
	height: 28px;
}
.list .list-item .icon.blue {
	display: none;
}

.list .list-item.current {
	border-bottom: 2px solid #00C4FF;
}

.list .list-item.current .info .text {
	display: block;
}
.list .list-item.current .icon.grey {
	display: none;
}
.list .list-item.current .icon.blue {
	display: inline-block;
}

.img-text-card {
	width: 22%;
}

.img-text-card .label {
	font-weight: bold;
	padding: 16px 0 8px 0;
}
.img-text-card .text {
	font-size: 12px;
	color: #454545;
	line-height: 20px;
}

@media screen and (max-width: 800px) {
	.top-arrow {
		text-align: center;
		margin-top: -10px;
	}
	
	.top-arrow img {
		width: 6px;
	}

	.row {
		flex-direction: column;
		align-items: stretch;
		padding: 0 16px;
	}

	.card {
		width: auto;
		margin: 8px 0;
	}

	.desc-left {
		text-align: left;
	}

	.bg1 {
		padding: 16px 0;
	}

	.list {
		padding: 8px 16px;
		margin-bottom: 16px;
	}

	.right-img {
		margin-left: 0;
	}

	.img-text-card {
		width: auto;
		padding-bottom: 32px;
	}
}