:root {
	--mh-page: #c8eeeb;
	--mh-primary: #08aa9f;
	--mh-primary-dark: #168c84;
	--mh-accent: #ff8018;
	--mh-warm: #ed6741;
	--mh-text: #263433;
	--mh-muted: #788b89;
	--mh-border: #c9e9e5;
	--mh-card: #ffffff;
	--mh-soft: #f4fbfa;
	--mh-shadow: 0 10px 24px rgba(15, 98, 91, .12);
}

body {
	background: var(--mh-page);
	color: var(--mh-text);
	font-size: 14px;
}

a {
	color: var(--mh-primary-dark);
	text-decoration: none;
}

a:hover {
	color: var(--mh-accent);
	text-decoration: none;
}

#body > .container {
	max-width: 1180px;
	padding-left: 10px;
	padding-right: 10px;
}

.mh-wrap {
	width: min(1180px, calc(100% - 20px));
	margin: 0 auto;
}

.mh-header {
	background: var(--mh-page);
	margin-bottom: 10px;
}

.mh-head-main {
	background: var(--mh-primary);
	padding: 15px 0;
}

.mh-head-inner {
	display: grid;
	grid-template-columns: minmax(170px, 260px) minmax(280px, 1fr) auto auto;
	gap: 18px;
	align-items: center;
}

.mh-logo {
	display: flex;
	flex-direction: column;
	min-width: 0;
	color: #fff;
	line-height: 1.1;
}

.mh-logo:hover {
	color: #fff;
}

.mh-logo img {
	max-width: 210px;
	max-height: 52px;
	object-fit: contain;
}

.mh-logo span {
	font-size: 26px;
	font-weight: 800;
	letter-spacing: 0;
}

.mh-logo em {
	margin-top: 6px;
	color: rgba(255, 255, 255, .82);
	font-style: normal;
	font-size: 12px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.mh-search {
	display: flex;
	height: 38px;
}

.mh-search input {
	flex: 1;
	min-width: 0;
	border: 1px solid var(--mh-primary-dark);
	border-right: 0;
	border-radius: 4px 0 0 4px;
	padding: 0 12px;
	background: #e8fbf9;
	color: var(--mh-primary-dark);
	outline: 0;
}

.mh-search button {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	border: 0;
	border-radius: 0 4px 4px 0;
	padding: 0 18px;
	background: var(--mh-primary-dark);
	color: #fff;
	cursor: pointer;
}

.mh-search button:hover {
	background: var(--mh-accent);
}

.mh-user {
	display: flex;
	align-items: center;
	gap: 8px;
	white-space: nowrap;
}

.mh-user a {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	height: 32px;
	padding: 0 10px;
	border-radius: 4px;
	background: rgba(255, 255, 255, .16);
	color: #fff;
}

.mh-user a:hover {
	background: var(--mh-accent);
	color: #fff;
}

.mh-menu {
	display: none;
	width: 38px;
	height: 38px;
	border: 0;
	border-radius: 4px;
	background: var(--mh-primary-dark);
	color: #fff;
	cursor: pointer;
}

.mh-nav {
	background: var(--mh-primary-dark);
	min-height: 42px;
	overflow: hidden;
}

.mh-nav-inner {
	display: flex;
	align-items: center;
	justify-content: space-around;
	gap: 2px;
}

.mh-nav a {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 0 12px;
	color: #fff;
	font-size: 16px;
	white-space: nowrap;
}

.mh-nav a.active,
.mh-nav a:hover {
	background: var(--mh-warm);
	color: #fff;
}

.mh-header-ads {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 8px;
	padding: 10px 0;
}

.mh-header-ads a,
.mh-header-ads img,
.mh-header-ads iframe {
	display: block;
	width: 100%;
	max-width: 100%;
}

.mh-header-ads img {
	height: auto;
	border-radius: 4px;
}

.mh-page {
	margin: 0 auto 18px;
}

.mh-notice {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin: 0 0 8px;
	border-radius: 8px;
	background: #68aac2;
	color: #fff;
	padding: 8px 12px;
	font-size: 16px;
	text-align: center;
}

.mh-section {
	background: var(--mh-card);
	box-shadow: 0 1px 0 rgba(255, 255, 255, .5);
}

.mh-title {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 42px;
	padding: 0 12px;
	border-bottom: 1px solid var(--mh-border);
	background: var(--mh-card);
}

.mh-title h1,
.mh-title h2 {
	margin: 0;
	padding: 11px 0 10px;
	border-bottom: 2px solid var(--mh-accent);
	color: var(--mh-primary-dark);
	font-size: 17px;
	font-weight: 800;
	line-height: 1.1;
}

.mh-title > a,
.mh-title > div a {
	display: inline-flex;
	align-items: center;
	min-height: 28px;
	padding: 0 9px;
	border-radius: 4px;
	color: var(--mh-primary-dark);
	font-size: 13px;
}

.mh-title > a:hover,
.mh-title > div a.active,
.mh-title > div a:hover {
	background: var(--mh-accent);
	color: #fff;
}

.mh-tabs {
	gap: 14px;
}

.mh-tabs > div {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 4px;
}

.mh-recommend-list,
.mh-hot-list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.mh-recommend-list {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mh-hot-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mh-comic-card {
	position: relative;
	display: grid;
	grid-template-columns: 106px minmax(0, 1fr);
	gap: 12px;
	min-height: 154px;
	padding: 12px;
	border-bottom: 1px solid #eef5f4;
	transition: background .18s ease, transform .18s ease, box-shadow .18s ease;
}

.mh-recommend-list .mh-comic-card {
	border-right: 1px solid #eef5f4;
}

.mh-recommend-list .mh-comic-card {
	grid-template-columns: 116px minmax(0, 1fr);
	min-height: 166px;
}

.mh-recommend-list .mh-cover {
	width: 116px;
	height: 150px;
}

.mh-comic-card:hover {
	background: var(--mh-soft);
	box-shadow: var(--mh-shadow);
	transform: translateY(-1px);
	z-index: 1;
}

.mh-check {
	position: absolute;
	top: 8px;
	left: 8px;
	z-index: 4;
}

.mh-cover {
	position: relative;
	display: block;
	width: 106px;
	height: 138px;
	overflow: hidden;
	border: 1px solid #d7e6e3;
	border-radius: 4px;
	background: linear-gradient(135deg, #08aa9f, #ffb45c);
}

.mh-cover img {
	position: relative;
	z-index: 2;
	width: 100%;
	height: 100%;
	object-fit: cover;
	background: #fff;
}

.mh-cover-fallback {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 10px;
	color: rgba(255, 255, 255, .92);
	font-size: 24px;
	font-weight: 800;
	text-align: center;
}

.mh-cover em {
	position: absolute;
	z-index: 3;
	right: 0;
	bottom: 0;
	left: 0;
	display: block;
	padding: 5px 6px;
	background: rgba(0, 0, 0, .56);
	color: #fff;
	font-style: normal;
	font-size: 12px;
	text-align: center;
}

.mh-card-body {
	min-width: 0;
	display: flex;
	flex-direction: column;
}

.mh-card-body h3 {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	min-height: 40px;
	margin: 2px 0 8px;
	overflow: hidden;
	font-size: 16px;
	line-height: 1.35;
}

.mh-card-body h3 a {
	color: #1f3432;
	font-weight: 700;
}

.mh-card-body h3 a:hover {
	color: var(--mh-accent);
}

.mh-label {
	display: inline-block;
	margin-right: 4px;
	padding: 2px 5px;
	border-radius: 3px;
	background: var(--mh-primary);
	color: #fff;
	font-size: 12px;
	line-height: 1.2;
	vertical-align: 1px;
}

.mh-label.hot {
	background: var(--mh-accent);
}

.mh-card-info {
	display: flex;
	flex-direction: column;
	gap: 4px;
	margin: 0;
	color: #748985;
	font-size: 13px;
	line-height: 1.35;
}

.mh-card-info span {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.mh-card-meta {
	display: flex;
	gap: 12px;
	margin-top: auto;
	color: #93a4a1;
	font-size: 12px;
}

.mh-card-meta span {
	display: inline-flex;
	align-items: center;
	gap: 4px;
}

.mh-update-list {
	margin: 0;
	background: #fff;
}

.mh-update-head,
.mh-update-row {
	display: grid;
	grid-template-columns: 82px minmax(0, 1.25fr) minmax(130px, 1fr) 112px 116px;
	align-items: center;
	gap: 10px;
}

.mh-update-head {
	min-height: 38px;
	padding: 0 12px;
	border-bottom: 1px solid #d9ece9;
	background: #f2fbfa;
	color: var(--mh-primary-dark);
	font-size: 13px;
	font-weight: 700;
}

.mh-update-row {
	position: relative;
	min-height: 72px;
	padding: 8px 12px;
	border-bottom: 1px solid #edf5f4;
	color: #415854;
	transition: background .16s ease;
}

.mh-update-row:hover {
	background: #f8fdfc;
}

.mh-update-kind a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	max-width: 100%;
	min-height: 24px;
	padding: 0 8px;
	border-radius: 3px;
	background: #e7f6f4;
	color: var(--mh-primary-dark);
	font-size: 12px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.mh-update-book {
	display: grid;
	grid-template-columns: 42px minmax(0, 1fr);
	align-items: center;
	gap: 10px;
	min-width: 0;
}

.mh-update-thumb {
	position: relative;
	display: block;
	width: 42px;
	height: 56px;
	overflow: hidden;
	border-radius: 3px;
	background: linear-gradient(135deg, var(--mh-primary), var(--mh-accent));
}

.mh-update-thumb img {
	position: relative;
	z-index: 2;
	width: 100%;
	height: 100%;
	object-fit: cover;
	background: #fff;
}

.mh-update-thumb span {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 18px;
	font-weight: 800;
}

.mh-update-book h3 {
	margin: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.35;
}

.mh-update-book h3 a {
	color: #263433;
}

.mh-update-book p {
	display: flex;
	gap: 10px;
	margin: 5px 0 0;
	color: #91a19e;
	font-size: 12px;
}

.mh-update-chapter,
.mh-update-author,
.mh-update-time {
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	font-size: 13px;
}

.mh-update-chapter a {
	color: var(--mh-accent);
}

.mh-update-author,
.mh-update-time {
	color: #708782;
}

.mh-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 300px;
	gap: 10px;
	margin-top: 10px;
}

.mh-layout.no-sidebar {
	grid-template-columns: minmax(0, 1fr);
}

.mh-main,
.mh-sidebar {
	min-width: 0;
}

.mh-sidebar {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.mh-ad-section {
	overflow: hidden;
}

.mh-main-ad-section {
	margin-bottom: 10px;
	overflow: hidden;
}

.mh-main-ad {
	padding: 10px;
}

.mh-main-ad a,
.mh-main-ad img,
.mh-main-ad iframe {
	display: block;
	width: 100%;
	max-width: 100%;
}

.mh-main-ad img {
	height: auto;
	border-radius: 4px;
}

.mh-sidebar-ad {
	padding: 10px;
}

.mh-sidebar-ad a,
.mh-sidebar-ad img,
.mh-sidebar-ad iframe {
	display: block;
	width: 100%;
	max-width: 100%;
}

.mh-sidebar-ad img {
	height: auto;
	border-radius: 4px;
}

.mh-rank-list {
	margin: 0;
	padding: 6px 10px 10px;
	list-style: none;
}

.mh-rank-list li {
	display: grid;
	grid-template-columns: 24px minmax(0, 1fr) auto;
	align-items: center;
	gap: 8px;
	min-height: 34px;
	border-bottom: 1px dotted #dfeceb;
}

.mh-rank-list em {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
	border-radius: 4px;
	background: #e3f4f2;
	color: var(--mh-primary-dark);
	font-style: normal;
	font-weight: 800;
}

.mh-rank-list li:nth-child(-n+3) em {
	background: var(--mh-warm);
	color: #fff;
}

.mh-rank-list a {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	color: #334744;
}

.mh-rank-list span {
	color: #93a4a1;
	font-size: 12px;
	white-space: nowrap;
}

.mh-category-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 8px;
	padding: 10px;
}

.mh-category-grid a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	min-height: 36px;
	padding: 0 10px;
	border-radius: 4px;
	background: #f2fbfa;
	color: var(--mh-primary-dark);
}

.mh-category-grid a:hover {
	background: var(--mh-primary);
	color: #fff;
}

.mh-category-grid span {
	color: inherit;
	opacity: .72;
	font-size: 12px;
}

.mh-pagination {
	padding: 14px 8px;
	border-top: 1px solid var(--mh-border);
}

.mh-pagination .page-link {
	border-color: var(--mh-primary);
	color: var(--mh-primary-dark);
}

.mh-pagination .active .page-link {
	background: var(--mh-primary);
	border-color: var(--mh-primary);
	color: #fff;
}

.mh-rr-book,
.mh-rr-chapters,
.mh-rr-reader {
	margin-bottom: 10px;
	border: 1px solid var(--mh-border);
	background: #fff;
	box-shadow: none;
}

.mh-crumb,
.mh-rr-reader-crumb {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
	min-height: 38px;
	padding: 8px 12px;
	border-bottom: 1px solid #edf5f4;
	background: #f7fcfb;
	color: #6d807d;
	font-size: 13px;
}

.mh-crumb strong {
	color: var(--mh-primary-dark);
	font-weight: 700;
}

.mh-rr-book-info {
	display: grid;
	grid-template-columns: 140px minmax(0, 1fr);
	gap: 16px;
	padding: 14px;
}

.mh-rr-cover {
	width: 140px;
	aspect-ratio: 3 / 4;
	overflow: hidden;
	border: 1px solid #dbecea;
	background: var(--mh-soft);
}

.mh-rr-cover img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.mh-rr-info h1 {
	margin: 0 0 10px;
	color: #183936;
	font-size: 22px;
	font-weight: 800;
	line-height: 1.3;
}

.mh-rr-info ul {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0;
	margin: 0;
	padding: 0;
	border-top: 1px solid #edf5f4;
	border-left: 1px solid #edf5f4;
	list-style: none;
}

.mh-rr-info li {
	min-height: 38px;
	padding: 9px 10px;
	border-right: 1px solid #edf5f4;
	border-bottom: 1px solid #edf5f4;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	color: #566d69;
}

.mh-rr-mobile-actions {
	display: none;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
	padding: 0 14px 12px;
}

.mh-rr-mobile-actions a {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 38px;
	border-radius: 4px;
	background: var(--mh-primary);
	color: #fff;
	font-weight: 700;
}

.mh-rr-intro {
	padding: 0 14px 14px;
	color: #566d69;
	line-height: 1.8;
}

.mh-copy-share {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 92px;
	gap: 8px;
	padding: 0 14px 14px;
}

.mh-copy-share input {
	min-width: 0;
	height: 36px;
	padding: 0 10px;
	border: 1px solid #dbecea;
	border-radius: 4px;
	color: #657976;
}

.mh-copy-share a {
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 4px;
	background: var(--mh-accent);
	color: #fff;
	font-weight: 700;
}

.mh-rr-title {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	min-height: 38px;
	padding: 9px 12px;
	border-bottom: 1px solid #edf5f4;
	background: #f7fcfb;
}

.mh-rr-title h2 {
	margin: 0;
	color: #183936;
	font-size: 16px;
	font-weight: 800;
}

.mh-rr-title > a {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	min-width: 58px;
	min-height: 28px;
	padding: 0 12px;
	border-radius: 4px;
	background: var(--mh-accent);
	color: #fff;
	font-weight: 700;
}

.mh-rr-title > a:hover {
	color: #fff;
	background: #f06f0d;
}

.mh-chapter-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	border-top: 0;
}

.mh-chapter-grid a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	min-height: 40px;
	padding: 10px 12px;
	border-right: 1px solid #edf5f4;
	border-bottom: 1px solid #edf5f4;
	overflow: hidden;
	white-space: nowrap;
	color: var(--mh-primary-dark);
}

.mh-chapter-grid a span {
	flex: 0 0 auto;
	color: #9aadaa;
	font-size: 12px;
}

.mh-chapter-grid .mh-chapter-name {
	flex: 1 1 auto;
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	color: inherit;
	font-size: inherit;
}

.mh-chapter-locked {
	color: #80928f;
}

.mh-chapter-locked:hover {
	background: #fff8f2;
}

.mh-chapter-grid a:hover {
	background: var(--mh-soft);
	color: var(--mh-accent);
}

.mh-rr-related {
	margin-top: 10px;
}

.mh-related-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	border-top: 0;
}

.mh-related-item {
	display: grid;
	grid-template-columns: 94px minmax(0, 1fr);
	gap: 14px;
	min-height: 146px;
	padding: 14px;
	border-right: 1px solid #edf5f4;
	border-bottom: 1px solid #edf5f4;
	background: #fff;
}

.mh-related-cover {
	display: block;
	width: 94px;
	aspect-ratio: 3 / 4;
	overflow: hidden;
	border: 1px solid #dbecea;
	background: var(--mh-soft);
}

.mh-related-cover img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.mh-related-info {
	min-width: 0;
	color: #6a7d7a;
	line-height: 1.5;
}

.mh-related-info h3 {
	margin: 0 0 6px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	font-size: 16px;
	font-weight: 700;
}

.mh-related-info p {
	margin: 3px 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.mh-related-info a {
	color: var(--mh-primary-dark);
}

.mh-related-info a:hover {
	color: var(--mh-accent);
}

.mh-rr-reader h1 {
	margin: 0;
	padding: 18px 12px 10px;
	color: #183936;
	font-size: 22px;
	font-weight: 800;
	text-align: center;
	line-height: 1.35;
}

.mh-rr-reader-nav {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 120px));
	justify-content: center;
	gap: 10px;
	padding: 10px 12px 14px;
	text-align: center;
}

.mh-rr-reader-nav a,
.mh-rr-reader-nav span {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 34px;
	border: 1px solid #dbecea;
	border-radius: 4px;
	background: #fff;
	color: var(--mh-primary-dark);
}

.mh-rr-reader-nav a:hover {
	border-color: var(--mh-primary);
	background: var(--mh-soft);
}

.mh-rr-reader-nav span {
	color: #a0b1ae;
}

.mh-reader-images {
	max-width: 980px;
	margin: 0 auto;
	padding: 10px 0;
	background: #fff;
}

.mh-reader-images img {
	display: block;
	max-width: 100%;
	width: auto;
	height: auto;
	margin: 0 auto;
}

.mh-forum-hero {
	display: flex;
	align-items: stretch;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 10px;
	padding: 18px;
	border-radius: 8px;
	background: linear-gradient(135deg, #ffffff 0%, #e8fbf9 62%, #ffe1c7 100%);
	box-shadow: var(--mh-shadow);
}

.mh-forum-hero span {
	color: var(--mh-primary-dark);
	font-weight: 700;
}

.mh-forum-hero h1 {
	margin: 6px 0;
	color: #193a36;
	font-size: 28px;
	font-weight: 800;
}

.mh-forum-hero p {
	margin: 0;
	max-width: 650px;
	color: #66817d;
	line-height: 1.7;
}

.mh-forum-stats {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
	justify-content: flex-end;
	min-width: 260px;
}

.mh-forum-stats strong {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-width: 76px;
	min-height: 64px;
	border-radius: 6px;
	background: #fff;
	color: var(--mh-primary-dark);
	font-size: 22px;
	box-shadow: 0 1px 0 rgba(255, 255, 255, .8);
}

.mh-forum-stats strong span {
	margin-top: 4px;
	color: #7b9290;
	font-size: 12px;
	font-weight: 400;
}

.mh-forum-stats a {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	min-height: 38px;
	padding: 0 14px;
	border-radius: 4px;
	background: var(--mh-warm);
	color: #fff;
}

.mh-category-strip {
	display: flex;
	gap: 6px;
	margin-bottom: 10px;
	padding: 8px;
	overflow-x: auto;
	background: var(--mh-card);
}

.mh-category-strip a {
	flex: 0 0 auto;
	padding: 6px 12px;
	border-radius: 4px;
	background: #f3fbfa;
	color: var(--mh-primary-dark);
	white-space: nowrap;
}

.mh-category-strip a.active,
.mh-category-strip a:hover {
	background: var(--mh-accent);
	color: #fff;
}

.mh-search-page {
	margin-bottom: 10px;
}

.mh-search-large {
	display: flex;
	gap: 8px;
	padding: 14px 12px 6px;
}

.mh-search-large input {
	flex: 1;
	min-width: 0;
	height: 40px;
	border: 1px solid var(--mh-border);
	border-radius: 4px;
	padding: 0 12px;
	color: var(--mh-text);
	outline: 0;
}

.mh-search-large input:focus {
	border-color: var(--mh-primary);
	box-shadow: 0 0 0 3px rgba(8, 170, 159, .12);
}

.mh-search-large button {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	border: 0;
	border-radius: 4px;
	padding: 0 18px;
	background: var(--mh-primary-dark);
	color: #fff;
	cursor: pointer;
}

.mh-search-page p {
	margin: 0;
	padding: 0 12px 14px;
	color: var(--mh-muted);
}

.mh-side-text {
	margin: 0;
	padding: 12px;
	color: #607976;
	line-height: 1.7;
}

.mh-mod-list {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	padding: 0 12px 12px;
}

.mh-mod-list span {
	padding: 4px 8px;
	border-radius: 999px;
	background: #f2fbfa;
	color: var(--mh-primary-dark);
	font-size: 12px;
}

.mh-empty {
	display: block;
	padding: 18px;
	color: var(--mh-muted);
	text-align: center;
}

.mh-footer {
	margin-top: 14px;
	padding: 24px 0;
	background: var(--mh-primary);
	color: #eefdfb;
	text-align: center;
}

.mh-footer strong {
	display: block;
	margin-bottom: 6px;
	color: #fff;
	font-size: 18px;
}

.mh-footer p {
	margin: 4px 0;
}

.mh-footer a {
	color: #fff;
}

.mh-footer-links {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 10px;
	margin: 10px 0;
}

.mh-footer-links a {
	padding: 4px 8px;
	border-radius: 4px;
	background: rgba(255, 255, 255, .12);
}

.mh-copyright {
	color: rgba(255, 255, 255, .78);
	font-size: 12px;
}

.mh-backtop {
	position: fixed;
	right: 24px;
	bottom: 26px;
	z-index: 40;
	display: none;
	width: 42px;
	height: 42px;
	border: 0;
	border-radius: 50%;
	background: var(--mh-accent);
	color: #fff;
	box-shadow: 0 10px 18px rgba(0, 0, 0, .18);
	cursor: pointer;
}

.mh-backtop.show {
	display: block;
}

.card,
.card-body,
.list-group-item,
.form-control,
.btn {
	border-radius: 4px;
}

.btn-primary,
.btn-secondary {
	border-color: var(--mh-primary-dark);
	background-color: var(--mh-primary-dark);
}

.btn-primary:hover,
.btn-secondary:hover {
	border-color: var(--mh-accent);
	background-color: var(--mh-accent);
}

@media (max-width: 1024px) {
	.mh-head-inner {
		grid-template-columns: minmax(160px, 220px) minmax(220px, 1fr) auto;
	}

	.mh-user {
		display: none;
	}

	.mh-hot-list {
		grid-template-columns: 1fr;
	}

	.mh-update-head,
	.mh-update-row {
		grid-template-columns: 74px minmax(0, 1.2fr) minmax(120px, 1fr) 100px;
	}

	.mh-update-head span:nth-child(4),
	.mh-update-row .mh-update-author {
		display: none;
	}

	.mh-layout {
		grid-template-columns: minmax(0, 1fr);
	}

	.mh-sidebar {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 760px) {
	#body > .container {
		padding-left: 6px;
		padding-right: 6px;
	}

	.mh-head-main {
		padding: 12px 0;
	}

	.mh-head-inner {
		grid-template-columns: 1fr auto;
		gap: 10px;
	}

	.mh-logo span {
		font-size: 24px;
	}

	.mh-search {
		grid-column: 1 / -1;
		order: 3;
	}

	.mh-menu {
		display: inline-flex;
		align-items: center;
		justify-content: center;
	}

	.mh-nav {
		max-height: 0;
		transition: max-height .2s ease;
	}

	.mh-nav.open {
		max-height: 220px;
	}

	.mh-nav-inner {
		display: grid;
		grid-template-columns: repeat(4, minmax(0, 1fr));
		align-items: stretch;
		gap: 0;
		width: 100%;
	}

	.mh-nav a {
		min-height: 36px;
		padding: 0 4px;
		font-size: 14px;
	}

	.mh-header-ads {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 6px;
		width: calc(100% - 12px);
		padding: 8px 0;
	}

	.mh-notice {
		border-radius: 6px;
		font-size: 14px;
	}

	.mh-recommend-list,
	.mh-hot-list {
		grid-template-columns: 1fr;
	}

	.mh-comic-card {
		grid-template-columns: 90px minmax(0, 1fr);
		min-height: 132px;
		padding: 10px;
	}

	.mh-cover {
		width: 90px;
		height: 118px;
	}

	.mh-recommend-list .mh-comic-card {
		grid-template-columns: 90px minmax(0, 1fr);
		min-height: 132px;
	}

	.mh-recommend-list .mh-cover {
		width: 90px;
		height: 118px;
	}

	.mh-update-head {
		display: none;
	}

	.mh-update-row {
		grid-template-columns: minmax(0, 1fr) auto;
		gap: 6px 10px;
		min-height: 74px;
		padding: 10px;
	}

	.mh-update-kind {
		grid-column: 2;
		grid-row: 1;
		align-self: start;
	}

	.mh-update-kind a {
		max-width: 86px;
	}

	.mh-update-book {
		grid-column: 1;
		grid-row: 1 / span 2;
		grid-template-columns: 46px minmax(0, 1fr);
	}

	.mh-update-thumb {
		width: 46px;
		height: 60px;
	}

	.mh-update-book h3 {
		white-space: normal;
		display: -webkit-box;
		-webkit-line-clamp: 2;
		-webkit-box-orient: vertical;
	}

	.mh-update-chapter {
		grid-column: 1 / -1;
		grid-row: 3;
		padding-left: 56px;
	}

	.mh-update-time {
		grid-column: 2;
		grid-row: 2;
		align-self: end;
		max-width: 86px;
		font-size: 12px;
		text-align: right;
	}

	.mh-update-author {
		display: none;
	}

	.mh-card-body h3 {
		min-height: auto;
		margin-top: 0;
		font-size: 15px;
	}

	.mh-card-info {
		gap: 3px;
		font-size: 12px;
	}

	.mh-title {
		align-items: flex-start;
		flex-direction: column;
		gap: 6px;
		padding-bottom: 8px;
	}

	.mh-title h1,
	.mh-title h2 {
		font-size: 16px;
	}

	.mh-tabs > div {
		justify-content: flex-start;
	}

	.mh-sidebar {
		display: flex;
	}

	.mh-forum-hero {
		flex-direction: column;
		padding: 14px;
	}

	.mh-forum-hero h1 {
		font-size: 24px;
	}

	.mh-forum-stats {
		justify-content: flex-start;
		min-width: 0;
	}

	.mh-category-grid {
		grid-template-columns: 1fr;
	}

	.mh-rr-book-info {
		grid-template-columns: 96px minmax(0, 1fr);
		gap: 12px;
		padding: 10px;
	}

	.mh-rr-cover {
		width: 96px;
	}

	.mh-rr-info h1 {
		font-size: 18px;
	}

	.mh-rr-info ul {
		grid-template-columns: 1fr;
	}

	.mh-hide-sm {
		display: none;
	}

	.mh-rr-mobile-actions {
		display: grid;
	}

	.mh-copy-share {
		grid-template-columns: 1fr;
	}

	.mh-copy-share a {
		min-height: 36px;
	}

	.mh-chapter-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.mh-related-grid {
		grid-template-columns: 1fr;
	}

	.mh-related-item {
		grid-template-columns: 82px minmax(0, 1fr);
		min-height: 120px;
		padding: 10px;
	}

	.mh-related-cover {
		width: 82px;
	}

	.mh-rr-reader h1 {
		font-size: 18px;
	}

	.mh-rr-reader-nav {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.mh-search-large {
		flex-direction: column;
	}

	.mh-search-large button {
		justify-content: center;
		height: 38px;
	}
}

@media (max-width: 420px) {
	.mh-nav-inner {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.mh-search button span {
		display: none;
	}

	.mh-search button {
		width: 44px;
		justify-content: center;
		padding: 0;
	}

	.mh-comic-card {
		grid-template-columns: 78px minmax(0, 1fr);
	}

	.mh-cover {
		width: 78px;
		height: 104px;
	}

	.mh-card-info span:nth-child(2) {
		display: none;
	}
}
