.breadcrumbs {
  display: flex;
  align-items: center;
  color: #333;
  margin-bottom: 30px;
  margin-top: 40px;
  font-size: 16px;
}
.breadcrumbs img {
  margin-right: 10px;
}
.breadcrumbs a {
  color: #333;
}
.breadcrumbs a:hover {
  color: #015293;
}
.main .main_head {
  display: flex;
  justify-content: center;
  font-size: 36px;
  color: #015293;
  font-weight: 700;
  padding-bottom: 30px;
  background: url(../images/list_bg_line.png) no-repeat;
  background-size: 100% 10px;
  background-position: bottom;
}
.main .list {
  display: flex;
  flex-wrap: wrap;
}
.main .list li {
  width: 262px;
  height: 65px;
  background-image: linear-gradient(90deg, #ffffff 0%, #fafdff 0%, #f5fbff 0%, #e8f4fe 100%);
  margin-top: 40px;
  margin-right: 50px;
  transition: transform 0.3s;
}
.main .list li:nth-child(4n) {
  margin-right: 0;
}
.main .list li a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  font-size: 18px;
  color: #333;
}
.main .list li:hover {
  transform: translateY(-5px);
}
.main .list li:hover a {
  color: #015293;
}
