/*---------------list_item-----------------*/
.list_item {
  margin-top: 10px;
}
.list_item .row_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-right: -20px;
}
@media (max-width: 999px) {
  .list_item .row_item {
    margin-right: -10px;
  }
}
.list_item .row_item .col_item {
  width: 25%;
  padding-right: 20px;
  margin-bottom: 20px;
}
@media (max-width: 999px) {
  .list_item .row_item .col_item {
    padding-right: 10px;
    margin-bottom: 10px;
  }
}
@media (max-width: 900px) {
  .list_item .row_item .col_item {
    width: 33.3%;
  }
}
@media (max-width: 767px) {
  .list_item .row_item .col_item {
    width: 50%;
  }
}
@media (max-width: 425px) {
  .list_item .row_item .col_item {
    width: 100%;
  }
}
.list_item .row_item .col_item .img {
  position: relative;
  border-bottom: 2px solid #d17219;
}
.list_item .row_item .col_item .img a:first-child {
  display: block;
  border-radius: 4px;
  padding-top: 100%;
}
.list_item .row_item .col_item .img a:first-child img {
  width: 100%;
}
.list_item .row_item .col_item .img .title {
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  font-family: Montserrat-Regular;
  font-size: 15px;
  color: #FFF;
  background: rgba(2, 96, 168, 0.9);
  padding-left: 30px;
  padding-top: 11px;
  padding-bottom: 10px;
  padding-right: 5px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}
@media (max-width: 999px) {
  .list_item .row_item .col_item .img .title {
    padding-left: 20px;
  }
}
.list_item .row_item .col_item .img .title:before {
  content: url("../images/left_title_list_news.png");
  position: absolute;
  left: 8px;
  top: 16px;
}
@media (max-width: 999px) {
  .list_item .row_item .col_item .img .title:before {
    left: 2px;
  }
}

.box_other {
  margin-top: 25px;
}
.box_other .box-title {
  border-bottom: none;
}
.box_other .box-title span {
  padding-bottom: 5px;
  border-bottom-width: 1px;
}
@media (max-width: 999px) {
  .box_other .box-title span {
    font-size: 16px;
  }
}
.box_other .box-content {
  background: none;
  padding-top: 15px;
  margin-top: 0px;
}
.box_other .box-content ul li {
  padding-bottom: 5px;
}
@media (max-width: 999px) {
  .box_other .box-content ul li {
    padding-bottom: 2px;
  }
}
.box_other .box-content ul li a {
  font-family: Montserrat-Regular;
  font-size: 15px;
  color: #323232;
  padding-left: 8px;
  position: relative;
  -webkit-transition: unset;
  -o-transition: unset;
  transition: unset;
  display: inline-block;
}
.box_other .box-content ul li a:hover {
  color: #006db2;
}
.box_other .box-content ul li a:hover:before {
  background: #006db2;
}
.box_other .box-content ul li a:before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #323232;
  position: absolute;
  left: 0px;
  top: 10px;
}