.special_header {
  height: 466px;
  background: url(../images/special_bg_header.png) no-repeat;
  background-size: cover;
}
.special_header .top {
  display: flex;
  justify-content: space-between;
  padding-top: 43px;
}
.special_header .top .back {
  width: 157px;
  height: 42px;
  background-color: #e6f5ff;
  border-radius: 21px;
  border: solid 1px #8bc5e6;
  transition: all 0.3s;
}
.special_header .top .back:hover {
  transform: translateX(5px);
}
.special_header .top .back a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-size: 18px;
  color: #015293;
}
.special_header .top .back a img {
  margin-right: 10px;
}
.special_header .special_title {
  display: flex;
  justify-content: flex-end;
  margin-top: 50px;
}
.special_header .special_title img {
  width: 90%;
}
.breadcrumbs {
  display: flex;
  align-items: center;
  color: #333;
  margin-bottom: 40px;
  font-size: 18px;
  margin-top: 50px;
}
.breadcrumbs img {
  margin-right: 10px;
}
.breadcrumbs a {
  color: #333;
}
.breadcrumbs a:hover {
  color: #016bb5;
}
.special_list {
  display: flex;
  flex-wrap: wrap;
}
.special_list li {
  width: 100%;
  margin-right: 0;
  margin-bottom: 70px;
}
.special_list li:nth-child(3n) {
  margin-right: 0;
}
.special_list li a {
  display: block;
  width: 100%;
}
.special_list li a .img {
  width: 100%;
  height: 300px;
  overflow: hidden;
}
.special_list li a .img img {
  width: 100%;
  height: 100%;
  transition: all 0.3s ease;
}
.special_list li a .title {
  margin-top: 10px;
  font-size: 18px;
  color: #333;
  text-align: center;
  padding: 0 40px;
}
.special_list li:hover .img img {
  transform: scale(1.03);
}
.special_list li:hover .title {
  color: #015293;
}
.archive .archive_title {
  border-bottom: 1px solid #d9d9d9;
}
.archive .archive_title .text {
  display: inline-block;
  font-size: 24px;
  border-bottom: 3px solid #016bb5;
  padding-bottom: 3px;
  color: #015293;
  font-weight: 700;
}
.archive .archive_list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 20px;
}
.archive .archive_list li {
  position: relative;
  width: 100%;
  padding-left: 20px;
  line-height: 66px;
}
.archive .archive_list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #015293;
  transform: translateY(-50%);
}
.archive .archive_list li a {
  font-size: 18px;
  color: #333;
}
.archive .archive_list li a:hover {
  color: #016bb5;
}
