@import url("./base.css");

.sitemap__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 60px;
  border-bottom: 2px solid #f56c6c;
}

.sitemap__header > :first-child {
  font-size: 20px;
  color: #000;
  margin: 0;
  padding-left: 0.5em;
}

.sitemap__header > ul {
  display: flex;
  font-size: 13px;
  margin: 0 1em 0 0;
  list-style-type: none;
  padding: 0;
}
.sitemap__header > ul li:nth-child(n + 2) {
  padding-right: 1.5em;
  margin-right: 0.5em;
  position: relative;
}
.sitemap__header > ul li:nth-child(n + 2)::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 1em;
  height: 1em;
  line-height: 1em;
  text-align: center;
  content: ">";
}
.sitemap__header > ul li:last-child {
  padding-right: 0;
  margin-right: 0;
}
.sitemap__header > ul li:last-child::after {
  display: none;
}

.sitemap__widget {
  margin-top: 1em;
}
.sitemap__widget__title {
  line-height: 38px;
  background-color: #f5f8fa;
  border: 1px solid #e8e8e8;
  text-indent: 1em;
  color: #000;
  border-bottom: 2px solid #f56c6c;
  font-size: 14px;
}
.sitemap__widget__body {
  padding-top: 1em;
}
.sitemap__widget__body ul {
  padding-left: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  list-style-type: none;
  margin: 0;
}
.sitemap__widget__body ul li a {
  display: inline-block;
  padding: 0 12px;
  margin: 5px 0;
  line-height: 26px;
  font-size: 14px;
}
.sitemap__widget__body ul li a:hover {
  background: #f56c6c;
  color: #fff;
}
