@charset "utf-8";

.main {
	padding: 8px 12px;
}

.card {
	border-radius: 8px;
	background-color: var(--bg-white);
	box-shadow: 1px 1px 5px var(--color-shadow);
}

.staple {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
}
.staple .card {
	width: calc((100% - 44px) / 2);
	margin-top: 8px;
	padding: 8px;
}
.staple .icon {
	width: 56px;
}
.staple .text {
	flex-grow: 1;
	align-self: flex-start;
	margin-left: 4px;
	/* background-color: crimson; */
}
.staple .name {
	color: var(--color-title);
	font-weight: 700;
	font-size: var(--fsize-title);
}
.staple .description {
	margin-top: 6px;
	color: var(--color-desc);
	font-size: var(--fsize-desc);
}

.func {
	margin-top: 8px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
}
.func .card {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: calc((100% - 64px) / 3);
	height: 24vw;
	max-height: 132px;
	padding: 8px;
	margin-top: 8px;
	text-align: center;
}
.func .name {
	color: var(--color-basic);
}
.func .description {
	margin-top: 6px;
	color: var(--color-desc);
	font-size: var(--fsize-desc);
}

.copyright {
	margin-top: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	color: var(--color-grey);
}
.copyright a {
	margin-left: 8px;
	color: var(--color-grey);
}