.sitemap {
    position: relative;
    background: #fff;
}

.sitemapCard {
    background: #fff;
}

/* 标题区 */
.sitemapTitle {
    font-size: 1.05rem;
    font-weight: 600;
    margin: 0 0 12px;
    line-height: 1.25;
}

.sitemapTitle i {
    font-size: 1.05rem;
}

/* 分组卡片 */
.groupBox {
    padding: 10px;
    margin: 0;
}
.sitemapGroup {
    border: 1px solid #eef0f3;
    border-radius: 12px;
    padding: 16px;
    height: 100%;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.12s ease;
    background: #fff;
}

.sitemapGroup:hover {
    border-color: rgba(0, 123, 255, 0.25);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    transform: translateY(-1px);
}

/* 列表链接 */
.sitemapLink {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 2px;
    padding-right: 10px;
    text-decoration: none;
    color: #1f2328;
    border-radius: 8px;
    line-height: 1.35;
    transition: color 0.15s ease, background-color 0.15s ease, padding-left 0.15s ease;
}

.sitemapLink::before {
    content: "›";
    opacity: 0.55;
    transform: translateX(0);
    transition: transform 0.15s ease, opacity 0.15s ease;
}

.sitemapLink:hover {
    color: #0b5ed7;
    background: rgba(13, 110, 253, 0.06);
    padding-left: 6px;
}

.sitemapLink:hover::before {
    transform: translateX(2px);
    opacity: 0.8;
}

.sitemap .text-muted {
    color: #6c757d !important;
}

.banner .banner-title-text .tip {
    font-size: 1rem;
    color: #6c757d;
}

.bg .bg-line + .page-content .sitemapCard {
    backdrop-filter: saturate(120%) blur(2px);
}

@media (max-width: 767.98px) {
    .sitemapCard {
        box-shadow: none;
        padding: 0;
    }
    .groupBox {
        padding: 10px 0;
    }
    .sitemapLink {
        padding-top: 10px;
        padding-bottom: 10px;
    }
}
