html, body {
	background-color: #F6F5FA;
}
#header {
	background-color: white;
}
.main {
	gap: 20px;
	padding-bottom: 86px;
}
.main .left .article {
	padding: 30px;
	border-radius: 10px;
	background-color: white;
}
.main .left .article .title {
	color: rgba(0, 0, 0, 0.95);
	font-size: 40px;
	font-weight: bold;
}
.main .left .article .attr {
	gap: 30px;
	color: rgba(0, 0, 0, 0.5);
	font-weight: 500;
	margin-top: 20px;
}
.main .left .article .content {
	font-size: 18px;
	line-height: 30px;
	margin-top: 20px;
}
.main .left .article .content * {
	max-width: 100%;
}
.main .left .article .content img {
	height: auto;
}
.main .right .similar .list {
	gap: 30px;
}
.main .right .similar .cover {
	width: 100%;
	aspect-ratio: 1.4;
	border-radius: 10px;
}
.main .right .similar .name {
	font-weight: 500;
	margin: 10px 0;
}
.main .discover {
	margin-top: 80px;
	background: none;
}
.main .discover .container {
	padding: 0;
}
.main .discover .home-title {
	font-size: 24px;
	font-weight: bold;
}
.main .discover .home-subtitle-small {
	display: none;
}
.main .discover .list {
	margin-top: 40px;
}
@media(max-width: 992px) {
	.main .left .article {
		padding: 20px;
	}
	.main .left .article .title {
		font-size: 30px;
	}
	.main .discover {
		margin-top: 50px;
	}
	.main .right .similar .name {
		font-size: 14px;
	}
	.main .right .similar .list {
		gap: 20px;
	}
}
@media(max-width: 768px) {
	.main .left .article .title {
		font-size: 24px;
	}
	.main .left .article .attr {
		font-size: 14px;
	}
	.main .left .article .content {
		font-size: 16px;
	}
	.main .right .similar .list {
		gap: 10px;
	}
}