* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
}

body {
  background: #ffffff;
  color: #333333;
  font-family: Source Han Sans CN, Microsoft YaHei, Arial, sans-serif;
}

.list-page {
  padding: 18px min(8.33vw, 160px) 0;
  background: #ffffff;
}

.list-breadcrumb {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 24px;
  color: #999999;
  font-size: 16px;
  line-height: 22px;
}

.list-breadcrumb a {
  color: #0E4CA2;
  text-decoration: none;
}

.list-layout {
  display: grid;
  grid-template-columns: 285px minmax(0, 1fr);
  gap: 20px;
}

.list-sidebar {
  background: #EAF3FF;
  align-self: start;
}

.list-sidebar-title {
  height: 80px;
  padding: 0 38px;
  background: #1559A8;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 26px;
  font-weight: 700;
  line-height: 32px;
}

.list-sidebar-title span {
  font-weight: 700;
}

.list-sidebar a {
  height: 80px;
  padding-left: 38px;
  display: flex;
  align-items: center;
  color: #333333;
  font-size: 22px;
  line-height: 28px;
  text-decoration: none;
  border-left: 4px solid transparent;
}

.list-sidebar a:hover,
.list-sidebar a.active {
  background: #CFE2FA;
  border-left-color: #1559A8;
}

.list-card {
  min-height: 813px;
  padding: 30px 30px 58px;
  border: 1px solid #DDDDDD;
}

.list-card-head {
  height: 34px;
  border-bottom: 1px solid #DDDDDD;
}

.list-card-head h1 {
  display: inline-flex;
  height: 34px;
  margin: 0;
  color: #1559A8;
  font-size: 22px;
  font-weight: 700;
  line-height: 28px;
  border-bottom: 4px solid #1559A8;
}

.article-list {
  margin: 14px 0 0;
  padding: 0;
}

.article-list li {
  height: 62px;
  padding: 0 30px 0 15px;
  display: flex;
  align-items: center;
}

.article-list li.highlight {
  background: linear-gradient(90deg, #EAF3FF 0%, #ffffff 100%);
}

.article-list a {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #333333;
  font-size: 18px;
  line-height: 26px;
  text-decoration: none;
}

.article-list li.highlight a {
  color: #1559A8;
  //font-weight: 700;
}

.article-list span {
  flex: 0 0 112px;
  margin-left: 20px;
  color: #999999;
  text-align: right;
  font-size: 16px;
  line-height: 24px;
}

.list-pagination {
  margin-top: 40px;
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

.list-pagination a {
  min-width: 28px;
  height: 28px;
  padding: 0 8px;
  border: 1px solid #D5D5D5;
  border-radius: 3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #777777;
  font-size: 14px;
  line-height: 20px;
  text-decoration: none;
}

.list-pagination a.active {
  border-color: #1559A8;
  color: #1559A8;
}

@media screen and (max-width: 1024px) {
  .list-page {
    padding: 16px 24px 0;
  }

  .list-layout {
    grid-template-columns: 230px minmax(0, 1fr);
  }

  .list-sidebar-title {
    height: 66px;
    padding: 0 26px;
    font-size: 22px;
  }

  .list-sidebar a {
    height: 66px;
    padding-left: 26px;
    font-size: 19px;
  }

  .list-card {
    min-height: 0;
    padding: 24px 24px 42px;
  }
}

@media screen and (max-width: 768px) {
  .list-page {
    padding: 14px 16px 0;
  }

  .list-breadcrumb {
    margin-bottom: 14px;
    font-size: 14px;
  }

  .list-layout {
    display: block;
  }

  .list-sidebar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 16px;
  }

  .list-sidebar-title {
    grid-column: 1 / -1;
    height: 52px;
    padding: 0 18px;
    font-size: 20px;
  }

  .list-sidebar a {
    height: 44px;
    padding: 0 8px;
    justify-content: center;
    font-size: 15px;
    border-left: 0;
    border-bottom: 3px solid transparent;
  }

  .list-sidebar a.active {
    border-bottom-color: #1559A8;
  }

  .list-card {
    padding: 18px 14px 28px;
  }

  .list-card-head h1 {
    font-size: 18px;
  }

  .article-list li {
    height: 52px;
    padding: 0 10px;
  }

  .article-list a {
    font-size: 15px;
    line-height: 22px;
  }

  .article-list span {
    flex-basis: 82px;
    margin-left: 10px;
    font-size: 12px;
  }

  .list-pagination {
    margin-top: 26px;
    justify-content: center;
    gap: 5px;
  }

  .list-pagination a {
    min-width: 26px;
    height: 26px;
    padding: 0 6px;
    font-size: 12px;
  }
}

@media screen and (max-width: 480px) {
  .list-sidebar {
    grid-template-columns: repeat(2, 1fr);
  }

  .article-list li {
    height: 48px;
  }

  .article-list a {
    font-size: 14px;
  }
}
