.page-sitemap{}

.page-sitemap .common-title{padding-bottom:24px;} 

/* 分类标签样式 */
.sitemap-categories{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}
.sitemap-categories a{
  padding: 8px 16px;
  background: #e8f4ff;
  border-radius: 20px;
  color: #0066cc;
  text-decoration: none;
  transition: all 0.3s;
}
.sitemap-categories a:hover{
  background: #d0e8ff;
}

/* 列表通用样式 */
.sitemap-list{
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.sitemap-list li{
  width: calc(25% - 12px);
  min-width: 200px;
}
@media screen and (max-width: 1200px) {
  .sitemap-list li{
    width: calc(33.33% - 10px);
    min-width: 160px;
  }
}
@media screen and (max-width: 768px) {
  .sitemap-list li{
    width: calc(50% - 8px);
    min-width: 140px;
  }
}
@media screen and (max-width: 480px) {
  .sitemap-list li{
    width: 100%;
    min-width: auto;
  }
}

/* 列表项链接样式 */
.sitemap-list-item{
  display: block;
  padding: 10px 15px;
  background: #f5f5f5;
  border-radius: 4px;
  color: #333;
  text-decoration: none;
  transition: all 0.3s;
}
.sitemap-list-item:hover{
  background: #e8e8e8;
  transform: translateY(-2px);
}
.sitemap-list-item .en{
  display: block;
  font-size: 12px;
  color: #666;
  margin-top: 5px;
}

/* 区块间距 - 使用 about 页面的盒子样式 */
.sitemap-section{
  padding: 60px 0;
}
@media screen and (max-width: 768px) {
  .sitemap-section{
    padding: 40px 0;
  }
}
