.main {
    margin: 52px auto auto auto;
}

/* 页面 */
.byz-sitemap-wrap {
	width: auto;
	margin: 15px 0;
	padding: 15px;
	background: #fff;
}

/* 标题 */
.byz-sitemap-heading {
	margin-bottom: 25px;
}

.byz-sitemap-heading h1 {
	font-size: 22px;
	font-weight: 700;
	color: #111;
	line-height: 1.4;
	margin-bottom: 8px;
}

.byz-sitemap-heading p {
	font-size: 14px;
	color: #888;
	line-height: 1.8;
}

/* 每个栏目 */
.byz-sitemap-section {
	display: block;
	padding: 20px 0;
	border-top: 1px solid #f3f3f3;
}

.byz-sitemap-section:first-child {
	border-top: none;
}

/* 栏目标题 */
.byz-sitemap-title {
	position: relative;
	padding-left: 12px;
	margin-bottom: 15px;
	font-size: 18px;
	font-weight: 600;
	line-height: 1.4;
	color: #222;
}

.byz-sitemap-title::before {
	content: "";
	position: absolute;
	left: 0;
	top: 11px;
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: #2ea44f;
}

/* 链接 */
.byz-sitemap-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
	flex-wrap: wrap;
	gap: 8px;
}

.byz-sitemap-links a {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 36px;
	padding: 0 15px;
	border-radius: 4px;
	background: #f7f8f9;
	color: #555;
	text-decoration: none;
	font-size: 14px;
	transition: .2s;
}

.byz-sitemap-links a:active {
	background: #e9f8f2;
	color: #2ea44f;
}