.site-map {
  padding: 1.5rem 0 2.5rem;
}
.site-map .item {
  padding: 0.5rem 0;
  border-bottom: 0.05rem dashed #ddd;
}
.site-map .item a {
  line-height: 1.8;
}
.site-map .item a:hover {
  color: #0252c7;
}
.site-map .item h3 {
  font-size: 0.8rem;
  color: #6444;
}
.site-map .item h4 {
  color: #999;
  line-height: 1.8;
}
.site-map .item ul {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 0.5rem;
}
.site-map .item li {
  position: relative;
  margin-right: 1rem;
}
.site-map .item li::after {
  content: "|";
  position: absolute;
  right: -0.5rem;
  top: 50%;
  transform: translateY(-50%);
  color: #ddd;
}
.site-map .item li:last-child {
  margin-right: 0;
}
.site-map .item li:last-child::after {
  content: '';
}
.site-map .item li a {
  color: #444;
}

