.discover {
	background-image: url(../../images/home-discover-bottom-bg.png);
}
.discover .list {
	display: grid;
	gap: 20px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin-top: 80px;
}
.discover .list .item {
	padding: 30px;
	border-radius: 20px;
	background-color: white;
}
.discover .list .img {
	width: 80px;
	height: 80px;
	padding: 15px;
	margin-right: 20px;
	border-radius: 20px;
}
.discover .item:nth-child(1) .img {
	background-color: rgba(60, 150, 255, 0.1);
}
.discover .item:nth-child(2) .img {
	background-color: rgba(0, 186, 119, 0.1);
}
.discover .item:nth-child(3) .img {
	background-color: rgba(254, 0, 0, 0.1);
}
.discover .item:nth-child(4) .img {
	background-color: rgba(60, 150, 255, 0.1);
}
.discover .item:nth-child(5) .img {
	background-color: rgba(143, 90, 255, 0.1);
}
.discover .item:nth-child(6) .img {
	background-color: rgba(243, 122, 0, 0.1);
}
.discover .list .name {
	color: rgba(0, 0, 0, 0.95);
	font-size: 20px;
	font-weight: bold;
	line-height: 24px;
}
.discover .list .introduce {
	color: rgba(0, 0, 0, 0.75);
	font-size: 18px;
	font-weight: 420;
	line-height: 25px;
	margin-top: 10px;
}
@media(max-width: 992px) {
	.discover .list .item {
		padding: 20px;
	}
	.discover .list .img {
		width: 70px;
		height: 70px;
	}
}
@media(max-width: 768px) {
	.discover .list {
		margin-top: 60px;
	}
	.discover .list .item {
		padding: 10px;
	}
	.discover .list .img {
		width: 60px;
		height: 60px;
	}
	.discover .list .name {
		font-size: 20px;
		line-height: 20px;
	}
	.discover .list .introduce {
		font-size: 16px;
		line-height: 20px;
	}
}
@media(max-width: 576px) {
	.discover .list {
		grid-template-columns: repeat(1, minmax(0, 1fr));
	}
	.discover .list .item {
		padding: 15px;
	}
}