.background_color {
  padding-bottom: 2rem;
  background-color: #f3f5f6;
}

.path {
  display: flex;
}

.top_title {
  padding: 2rem 0;
  text-align: center;
  background-image: url(../static/images/title_bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  font-family: SourceHanSansCN-Light;
  font-size: 2rem;
  font-weight: normal;
  font-stretch: normal;
  letter-spacing: 0rem;
  color: #ffffff;
}

.list {
  background-color: #fff;
  padding: 4rem 8rem;
}

.list li {
  margin-bottom: 2rem;
}

.list li .detail {

  display: none;
}

.list li p {
  padding: 1rem;
  white-space: pre-wrap;
  font-family: SourceHanSansCN-Light;
  font-size: 0.8rem;
  line-height: 1.2rem;
  letter-spacing: 0.1rem;
  color: var(--theme);
}

.list li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1rem;
  border-bottom: 0.05rem dotted var(--theme);
  font-size: 1rem;
  font-weight: 600;
  color: var(--theme);
}

.list .iconfont {
  transform: rotate(90deg);
}


@media screen and (max-width:768px) {
  .top_title {
    padding: 1rem 0;
  }

  .list {
    background-color: #fff;
    padding: 2rem 1rem;
  }

}