.byz-sitemap-wrap {
    width: 1200px;
    margin: 20px auto;
    background: #fff;
    border-radius: 12px;
    padding: 40px;
}
/* 标题区域 */

.byz-sitemap-heading {
    margin-bottom: 35px;
}
.byz-sitemap-heading h1 {
    font-size: 32px;
    font-weight: 700;
    color: #111;
    margin-bottom: 10px;
    line-height: 1.2;
}
.byz-sitemap-heading p {
    font-size: 16px;
    color: #888;
    line-height: 1.8;
}
/* 栏目 */

.byz-sitemap-section {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 40px;
    padding: 35px 0;
    border-top: 1px solid #f1f3f5;
}
.byz-sitemap-section:first-of-type {
    border-top: none;
}
.byz-sitemap-title {
    position: relative;
    font-size: 20px;
	line-height: 36px;
    font-weight: 600;
    color: #111;
    padding-left: 16px;
}
.byz-sitemap-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 17px;
    width: 4px;
    height: 4px;
    background: #2ea44f;
    border-radius: 100%;
}
/* 链接 */

.byz-sitemap-links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 18px;
}
.byz-sitemap-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 0 14px;
    background: #fefefe;
    border: 1px solid #edf3ee;
    border-radius: 999px;
    text-decoration: none;
    color: #555;
    font-size: 15px;
    transition: .2s;
}
.byz-sitemap-links a:hover {
    color: #2ea44f;
    background: #f3fff6;
    border-color: #a3ffba;
    transform: translateY(-1px);
}

/* 手机 */

@media(max-width:768px) {
.byz-sitemap-wrap {
    margin: 20px;
    padding: 30px 25px;
}
.byz-sitemap-heading {
    margin-bottom: 35px;
}
.byz-sitemap-heading h1 {
    font-size: 32px;
}
.byz-sitemap-section {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 28px 0;
}
.byz-sitemap-title {
    font-size: 18px;
}
.byz-sitemap-links {
    gap: 10px;
}
}