.list_p {
  margin-left: -10px;
  margin-right: -10px;
}
.list_p::after {
  content: '';
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
.list_p > li {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 25%;
  padding-left: 10px;
  padding-right: 10px;
  float: left;
}
.list_p > li:nth-child(n) {
  margin-top: 0;
}
.list_p > li:nth-child(n + 4) {
  margin-top: 20px;
}
.list_p > li:nth-child(4) {
  margin-top: 0;
}
.list_p a {
  display: block;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
@media (max-width: 992px) {
  .list_p {
    margin-left: -10px;
    margin-right: -10px;
  }
  .list_p::after {
    content: '';
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
  }
  .list_p > li {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 33.333%;
    padding-left: 10px;
    padding-right: 10px;
    float: left;
  }
  .list_p > li:nth-child(n) {
    margin-top: 0;
  }
  .list_p > li:nth-child(n + 3) {
    margin-top: 20px;
  }
  .list_p > li:nth-child(3) {
    margin-top: 0;
  }
  .list_p a {
    display: block;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
}
@media (max-width: 600px) {
  .list_p {
    margin-left: -10px;
    margin-right: -10px;
  }
  .list_p::after {
    content: '';
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
  }
  .list_p > li {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
    float: left;
  }
  .list_p > li:nth-child(n) {
    margin-top: 0;
  }
  .list_p > li:nth-child(n + 1) {
    margin-top: 20px;
  }
  .list_p > li:nth-child(1) {
    margin-top: 0;
  }
  .list_p a {
    display: block;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
}
.news_item {
  transition: all 0.3s ease;
  background: #ffffff;
}
.news_item > a,
.news_item > div {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
}
.news_item .news_img_container {
  width: 100%;
  height: 334px;
  overflow: hidden;
}
.news_item .news_img {
  display: block;
  width: 100%;
  height: 100%;
  transition: all 0.3s ease;
  object-fit: contain;
  background-color: #f5f9fe;
}
.news_item .news_content {
  width: 100%;
  background: #f4f9ff;
  box-sizing: border-box;
  border-width: 0px 1px 1px 1px;
  border-style: solid;
  border-color: #d8ebff;
  padding: 15px 20px;
}
.news_item .news_item_title {
  transition: all 0.3s ease;
  font-size: 16px;
  font-weight: bold;
  color: #333;
  line-height: 1.5;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  height: 3em;
}
.news_item .news_info {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.news_item .news_link,
.news_item .news_date {
  font-size: 16px;
  font-weight: normal;
  color: #808080;
}
.news_item:hover .news_img {
  transform: scale(1.05);
}
.news_item:hover .news_item_title {
  color: #1361cb;
}
.news_item.news_item_hor .news_img_container {
  flex-shrink: 0;
  width: 400px;
}
.news_item.news_item_hor .news_content {
  flex-shrink: 0;
  width: calc(100% - 400px);
}
@media (min-width: 993px) {
  .news_item.news_item_hor .news_content {
    padding-top: 0;
    padding-left: 30px;
  }
}
@media (max-width: 992px) {
  .news_item .news_img_container,
  .news_item .news_content {
    width: 100% !important;
  }
}
