/* 网站地图样式 - 适配子比主题 */
.zibi-sitemap-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.sitemap-title {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.sitemap-updated {
    text-align: center;
    color: #666;
    margin-bottom: 30px;
    font-style: italic;
}

.sitemap-section {
    margin-bottom: 40px;
    padding: 20px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.sitemap-section-title {
    margin-top: 0;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
    color: #333;
}

.sitemap-section-title a {
    color: #333;
    text-decoration: none;
}

.sitemap-section-title a:hover {
    color: #007bff;
}

.sitemap-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 10px;
}

.sitemap-list li {
    padding: 5px 0;
    border-bottom: 1px dashed #eee;
}

.sitemap-list li a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s;
}

.sitemap-list li a:hover {
    color: #007bff;
    text-decoration: underline;
}

.sitemap-date {
    color: #999;
    font-size: 0.8em;
}

.sitemap-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.sitemap-tag {
    display: inline-block;
    padding: 5px 10px;
    background-color: #f5f5f5;
    border-radius: 20px;
    color: #666;
    text-decoration: none;
    font-size: 0.9em;
    transition: all 0.3s;
}

.sitemap-tag:hover {
    background-color: #007bff;
    color: #fff;
}

/* 响应式设计 - 适配移动设备 */
@media (max-width: 768px) {
    .sitemap-list {
        grid-template-columns: 1fr;
    }
}
