.main {
  margin-top: 40px;
  margin-bottom: 40px;
  padding: 0 30px;
}
.main .head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid #016bb5;
}
.main .head .title {
  font-size: 30px;
  color: #016bb5;
  font-weight: 700;
}
.main .head .breadcrumbs {
  display: flex;
  align-items: center;
  font-size: 18px;
  color: #333;
}
.main .head .breadcrumbs .icon {
  width: 17px;
  height: 23px;
  margin-right: 30px;
}
.main .head .breadcrumbs a {
  color: #333;
}
.main .head .breadcrumbs a:hover {
  color: #016bb5;
  font-weight: 700;
}
.main .list {
  margin-top: 20px;
}
.main .list li {
  position: relative;
  padding-left: 38px;
  line-height: 42px;
}
.main .list li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 5px;
  height: 5px;
  background-color: #016bb5;
  border-radius: 50%;
  transform: translateY(-50%);
}
.main .list li a {
  display: flex;
  justify-content: space-between;
  font-size: 18px;
  color: #333;
}
.main .list li a:hover {
  color: #016bb5;
}
.main .paging {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
.main .paging a {
  display: flex;
  justify-content: center;
  margin: 0 5px;
  width: 38px;
  height: 38px;
  line-height: 38px;
  background: #fff;
  border: 1px solid #ebebeb;
  color: #bdbdbd;
  font-size: 14px;
}
.main .paging a:hover {
  background-color: #016bb5;
  color: #fff;
}
.main .paging .active {
  display: flex;
  justify-content: center;
  margin: 0 5px;
  width: 38px;
  height: 38px;
  line-height: 38px;
  background: #016bb5;
  color: #fff;
  font-size: 14px;
  border: 1px solid #016bb5;
}
.main .paging .jump-ipt {
  display: flex;
  justify-content: center;
  margin: 0 5px;
  width: 38px;
  height: 38px;
  line-height: 38px;
  text-align: center;
  background: #fff;
  border: 1px solid #ebebeb;
  outline: none;
  color: #016bb5;
  font-size: 14px;
}
