html {
	font-size: 14px;
}
body {
	--bs-body-bg: #f9fbfb;

	height: 100%;

	font-family: var(--bs-body-font-family);
	font-size: var(--bs-body-font-size);
	font-weight: var(--bs-body-font-weight);
	line-height: var(--bs-body-line-height);
	color: var(--bs-body-color);
	text-align: var(--bs-body-text-align);
}
.text-primary {
	color: var(--bs-primary) !important;
}
a,
a:hover,
a:focus {
	text-decoration: none;
}
.wrapperPC {
	display: flex;
	flex-direction: column;
	height: 100%;
	overflow: hidden;
}
.mainHeader {
	background-color: #fff;
	box-shadow: 0 1px 2px #0002;
	position: relative;
	z-index: 2;
	flex-shrink: 0;
	padding: 0 1.5rem;
}
.headerPC {
	display: flex;
	align-items: center;
	max-width: 1400px;
	width: 100%;
	margin: auto;
}
.mainNav {
	display: flex;
	width: 680px;
}
.mainNavItem {
	display: flex;
	flex-direction: column;
	text-align: center;
	padding: 0.75rem 1rem;
	flex-grow: 1;
	color: #0006;
}
.mainNavItem i {
	/* font-weight: 300; */
	font-size: 21px;
	line-height: 24px;
	font-weight: 900;
	color: #56c6b5;
	background: var(--bs-gradient, var(--bs-primary));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
.mainNavItem small {
	line-height: 12px;
	font-size: 10px;
}
.mainNavItem:hover {
	color: var(--bs-primary);
}
.mainNavItem.active {
	color: var(--bs-primary);
	box-shadow: inset 0 -3px 0 var(--bs-primary);
}
.searchPC {
	background: #0001;
	width: 100%;
	padding: 0.75rem 1.5rem;
	border-radius: 30px;
	display: flex;
	color: #0005 !important;
	align-items: center;
}

.bodyPC {
	display: flex;
	flex-direction: row;
	flex-grow: 1;
	height: 100%;
	overflow: hidden;
	max-width: 1400px;
	width: 100%;
	margin: auto;
}
.mainContent {
	width: 680px;
	margin: 0 auto;
	height: 100%;
	position: relative;
}
.frameContent {
	position: absolute;
	opacity: 0;
	transition: all ease-in-out 300ms;
}

.frameContent.active {
	position: absolute;
	opacity: 1;
	z-index: 1;
}
.colLeft,
.colRight {
	width: 280px;
	overflow: auto;
}

.colLeft {
	padding: 1rem;
}
.lefNavGroup {
	display: flex;
	flex-direction: column;
}
.leftNavItem {
	display: flex;
	align-items: center;
	padding: 0.5rem;
	margin-bottom: 0.25rem;
	color: var(--bs-body-color);
	font-weight: 500;
	font-size: 15px;
}
.leftNavItem:hover {
	background: #fff;
	border-radius: 8px;
	color: var(--bs-body-color);
}
.leftNavItem i {
	font-size: 18px;
	width: 36px;
	height: 36px;
	line-height: 36px;
	text-align: center;
	margin-right: 0.75rem;
	border-radius: 8px;
	background: #fff;
}
.leftNavItem img {
	width: 36px;
	height: 36px;
	margin-right: 0.75rem;
	border-radius: 8px;
	object-fit: cover;
	padding: 0.25rem;
}

@media (max-width: 1024px) {
	.srsInfo {
		font-size: 80%;
	}
}

@media (max-width: 768px) {
	.colLeft,
	.colRight,
	.logo,
	.headerPC div:last-child {
		display: none;
	}
	.mainContent {
		width: 100%;
	}
	.mainHeader {
		order: 1;
		padding: 0;
		box-shadow: 0 -1px 1px #0001;
	}
	.mainNav {
		width: 100%;
	}
}

@media (max-width: 576px) {
	.mainNavItem {
		padding: 10px 0;
	}
	.mainNavItem.active {
		color: var(--bs-primary);
		box-shadow: inset 0 2px 0 var(--bs-primary);
	}
}

::-webkit-scrollbar {
	width: 3px;
	height: 3px;
	background-color: #f5f5f5;
}
::-webkit-scrollbar-track {
	border-top: 2px solid #fff;
}
::-webkit-scrollbar-thumb {
	background-color: #0001;
	border-bottom: 1px solid #f5f5f5;
}
