.block {
	padding: 64px 0;
}

.block.bg2 {
	background: #F6F8FF;
}

.row {
	display: flex;
	justify-content: space-between;
	padding: 16px 0;
}

.img, .list, .ticket {
	width: 46%;
}

.list .item {
	margin-bottom: 24px;
}
.list .item .label {
	font-size: 16px;
	font-weight: bold;
}
.list .item .text {
	font-size: 14px;
	margin-top: 8px;
	color: #454545;
}
.list .item .grid {
	display: flex;
	flex-wrap: wrap;
	position: relative;
}
.list .item .grid .tag {
	font-size: 12px;
	min-width: 30%;
	padding: 8px 0;
	color: #454545;
}
.list .item .grid .tag .icon {
	width: auto;
	height: 18px;
	vertical-align: middle;
	margin-right: 8px;
}
.list .item .grid .tag span {
	vertical-align: middle;
}

.row .ticket {
	display: flex;
	align-items: center;
	height: 100px;
	padding: 0 24px;
	box-sizing: border-box;
	border-top-right-radius: 50px;
	border-bottom-right-radius: 50px;
}
.row .ticket .icon {
	width: 64px;
	height: auto;
}
.row .ticket .text {
	flex: 1;
	margin-left: 24px;
}
.row .ticket .label {
	font-size: 16px;
	font-weight: bold;
	margin-bottom: 8px;
}
.row .ticket .desc {
	font-size: 12px;
	color: #454545;
}
.row .ticket:first-child {
	background: #EDF2FF;
}
.row .ticket:last-child {
	background: #DBF0FD;
}
.row .ticket:first-child .label {
	color: #FF9D33;
}
.row .ticket:last-child .label {
	color: #4BB4F6;
}

@media screen and (max-width: 800px) {
	.block {
		padding: 16px 0;
	}

	.row {
		flex-direction: column;
		align-items: stretch;
		padding: 0 16px;
	}

	.img, .list, .ticket {
		width: auto;
	}

	.row .ticket {
		margin-top: 16px;
	}

	.block.bg2 .row .img {
		margin-bottom: 16px;
	}
}

