.breadcrumbs {
  display: flex;
  align-items: center;
  font-size: 18px;
  color: #999;
}
.breadcrumbs img {
  margin-right: 10px;
}
.breadcrumbs a {
  color: #999;
}
.breadcrumbs a:hover {
  color: #015293;
}
.list_head {
  display: flex;
  align-items: center;
  height: 105px;
  background: url(../images/list_bg_head.png) no-repeat;
  background-position: right 16px bottom 0px;
  background-color: #f9f9f9;
  border-bottom: 1px solid #015293;
  margin-top: 17px;
  padding-left: 59px;
}
.list_head h2 {
  color: #015293;
  font-size: 36px;
}
.list_head .line {
  font-style: normal;
  font-size: 36px;
  color: #015293;
  margin: 0 20px;
}
.list_head h3 {
  font-size: 24px;
  color: #333;
  font-weight: normal;
}
.list_main {
  display: flex;
  margin-top: 30px;
  margin-bottom: 80px;
}
.list_main .side {
  width: 299px;
}
.list_main .side .side_item {
  position: relative;
  width: 100%;
  height: 72px;
  background-color: #f9f9f9;
  margin-bottom: 18px;
}
.list_main .side .side_item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 7px;
  height: 0;
  background-color: #ff6c00;
  transition: height 0.3s ease-in-out;
}
.list_main .side .side_item a {
  display: flex;
  align-items: center;
  height: 100%;
  padding-left: 50px;
  font-size: 24px;
  color: #333;
}
.list_main .side .side_item:last-child {
  margin-bottom: 0;
}
.list_main .side .side_item:hover a,
.list_main .side .side_item.active a {
  color: #015293;
  font-weight: 700;
}
.list_main .side .side_item:hover::before,
.list_main .side .side_item.active::before {
  height: 100%;
}
.list_main .inner {
  flex: 1;
  padding-left: 33px;
}
.list_main .inner .inner_list li {
  width: 100%;
  height: 142px;
  border-bottom: 1px solid #f3f3f3;
}
.list_main .inner .inner_list li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.list_main .inner .inner_list li a .left {
  transition: transform 0.3s ease-in-out;
}
.list_main .inner .inner_list li a .left .title {
  font-size: 18px;
  color: #333;
  margin-bottom: 15px;
}
.list_main .inner .inner_list li a .left .info {
  display: flex;
  font-size: 16px;
  color: #999;
}
.list_main .inner .inner_list li a .left .info .source {
  margin-right: 40px;
  color: #ff6c00;
}
.list_main .inner .inner_list li a .icon {
  transition: all 0.3s ease-in-out;
}
.list_main .inner .inner_list li a .icon .active {
  display: none;
}
.list_main .inner .inner_list li:hover,
.list_main .inner .inner_list li.active {
  border: 1px solid #015293;
}
.list_main .inner .inner_list li:hover a .left,
.list_main .inner .inner_list li.active a .left {
  transform: translateX(30px);
}
.list_main .inner .inner_list li:hover a .icon,
.list_main .inner .inner_list li.active a .icon {
  transform: translateX(-30px);
}
.list_main .inner .inner_list li:hover a .icon .active,
.list_main .inner .inner_list li.active a .icon .active {
  display: block;
}
.list_main .inner .inner_list li:hover a .icon .normal,
.list_main .inner .inner_list li.active a .icon .normal {
  display: none;
}
