/*基础合同---开始*/
:root {
	color-scheme: light;
	font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	color: #25282c;
	background: #ffffff;
}
* {
	box-sizing: border-box;
}
body {
	margin: 0;
	line-height: 1.7;
}
a {
	color: #4f6f8f;
}
body > header,
body > main,
body > footer {
	width: min(100% - 32px, 1080px);
	margin-inline: auto;
}
body > header,
body > footer {
	padding-block: 24px;
}
[data-slot="primary-navigation"] {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 20px;
	margin-top: 12px;
}
[data-slot="breadcrumbs"] {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-block: 12px 24px;
	font-size: 14px;
}
.mp-node-cover img,
.mp-article-content img,
.mp-article-content video {
	max-width: 100%;
	height: auto;
}
.mp-article-content table {
	display: block;
	max-width: 100%;
	overflow-x: auto;
}
.mp-skip-link {
	position: absolute;
	inset: 8px auto auto 8px;
	padding: 8px 12px;
	transform: translateY(-160%);
	background: #ffffff;
	border: 1px solid #68717a;
	z-index: 10;
}
.mp-skip-link:focus {
	transform: none;
}
[data-component="content-item"] {
	padding-block: 20px;
	border-bottom: 1px solid #e1e4e8;
}
@media (max-width: 640px) {
	body > header,
	body > main,
	body > footer {
		width: min(100% - 24px, 1080px);
	}
}
/*基础合同---结束*/
