.news_list {
  width: 100%;
  min-height: 300px;
}
.news_list > li {
  width: 100%;
  height: 120px;
  display: flex;
  display: -moz-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  justify-content: space-between;
  margin-top: 20px;
  cursor: pointer;
}
.news_list > li .news_item_img {
  width: 200px;
  height: 100%;
  overflow: hidden;
}
.news_list > li .news_item_img img {
  width: 100%;
  height: auto;
  transition: transform 1s;
  -ms-transition: transform 1s;
  /* IE 9 */
  -moz-transition: transform 1s;
  /* Firefox */
  -webkit-transition: transform 1s;
  /* Safari 和 Chrome */
  -o-transition: transform 1s;
}
.news_list > li .news_item_img img:hover {
  transform: scale(1.3);
  -ms-transform: scale(1.3);
  /* IE 9 */
  -moz-transform: scale(1.3);
  /* Firefox */
  -webkit-transform: scale(1.3);
  /* Safari 和 Chrome */
  -o-transform: scale(1.3);
  -webkit-filter: contrast(1.3);
}
.news_list > li .news_item_intro {
  width: 550px;
  border-bottom: 1px solid #d9d9d9;
}
.news_list > li .news_item_intro .news_item_title_time {
  width: 100%;
  display: flex;
  display: -moz-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  justify-content: space-between;
}
.news_list > li .news_item_intro .news_item_title_time:hover {
  color: #138ee2;
}
.news_list > li .news_item_intro .news_item_title_time .news_item_title {
  width: 80%;
}
.news_list > li .news_item_intro .news_item_content {
  width: 100%;
  height: 66px ;
  margin-top: 15px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: box;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.news_list > li .news_item_intro .news_item_content * {
  max-width: 100% !important;
  font-size: 14px!important;
  line-height: 22px!important;
  color: #5d5d5d !important;
  margin: 0!important;
  padding: 0!important;
  text-indent: 0!important;
  font-style: normal!important;
}
.news_list > li .news_item_intro .news_item_content img {
  display: none!important;
}
.company_new_detail {
  width: 100%;
}
.company_new_detail .company_new_title {
  text-align: center;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 3px;
  font-weight: bold;
}
.company_new_detail .company_new_little_title {
  text-align: right;
  font-size: 14px;
  color: #a0a0a0;
  margin: 10px 70px;
}
.company_new_detail .company_new_text {
  font-size: 14px;
  line-height: 24px;
}
.company_new_detail .company_new_text p {
  max-width: 100% !important;
}
.company_new_detail .company_new_text img {
  max-width: 100%!important;
  height: auto!important;
  margin: 20px 0!important;
  display: inline-block !important;
}
.periodical_list {
  width: 100%;
  min-height: 300px;
  padding: 0 20px;
  display: flex;
  display: -moz-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  flex-wrap: wrap;
}
.periodical_list > li {
  width: 200px;
  height: auto;
  margin: 0 25px 20px 20px;
  cursor: pointer;
}
.periodical_list > li .periodical_item_img {
  width: 100%;
  height: 250px;
  overflow: hidden;
  border: 1px solid #d9d9d9;
}
.periodical_list > li .periodical_item_img img {
  width: 100%;
  height: auto;
  transition: transform 1s;
  -ms-transition: transform 1s;
  /* IE 9 */
  -moz-transition: transform 1s;
  /* Firefox */
  -webkit-transition: transform 1s;
  /* Safari 和 Chrome */
  -o-transition: transform 1s;
}
.periodical_list > li .periodical_item_img img:hover {
  transform: scale(1.3);
  -ms-transform: scale(1.3);
  /* IE 9 */
  -moz-transform: scale(1.3);
  /* Firefox */
  -webkit-transform: scale(1.3);
  /* Safari 和 Chrome */
  -o-transform: scale(1.3);
  -webkit-filter: contrast(1.3);
}
.periodical_list > li .periodical_item_title {
  text-align: center;
  padding: 15px 10px 0;
  line-height: 18px;
}
@media (max-width: 768px) {
  .news_list > li {
    height: 110px!important;
  }
  .news_list > li .news_item_img {
    width: 45% !important;
    display: flex!important;
  }
  .news_list > li .news_item_img img {
    align-self: center!important;
  }
  .news_list > li .news_item_intro {
    width: 50% !important;
  }
  .news_list > li .news_item_intro .news_item_title_time .news_item_title {
    width: 50% !important;
    font-size: 14px!important;
  }
  .news_list > li .news_item_intro .news_item_title_time .news_item_time {
    font-size: 12px!important;
    line-height: 20px!important;
  }
  .news_list > li .news_item_intro .news_item_content {
    font-size: 12px!important;
    line-height: 18px!important;
  }
  .periodical_list {
    justify-content: space-around !important;
  }
}
