.list_container {
  width: 1200px;
  margin: 0 auto;
  padding-top: 20px;
}
.list_title {
  width: 100%;
  border-bottom: 1px solid #eeeeee;
}
.list_title h4 {
  font-weight: normal;
  font-size: 22px;
  padding-left: 10px;
  margin: 20px 0;
  border-left: 5px solid #2277da;
}
/* 列表单条 */
.list_item {
  width: 100%;
  padding: 30px 0;
  display: flex;
  border-bottom: 1px solid #eee;
}
/* 图片 */
.list_img {
  width: 200px;
  height: 130px;
  overflow: hidden;
}
.list_img a {
  width: 100%;
  height: 100%;
}
.list_img a img {
  width: 100%;
  height: 100%;
  transition: 0.5s;
}
.list_img a img:hover {
  transform: scale(1.1);
}
/* 文章 */
.list_article {
  width: calc(100% - 215px);
  margin-left: 12px;
}
.list_article_title a {
  /* width: 100%; */
  display: block;
  font-family: "Microsoft YaHei";
  font-size: 18px;
  color: #333;
  text-decoration: none;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.list_article_title a:hover {
  text-decoration: underline;
}
.list_article_subtitle {
  margin-top: 10px;
  font-family: "Microsoft YaHei";
  font-size: 12px;
  color: #666;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.list_article_subtitle a:hover{color:#666}
.list_article_date {
  margin-top: 20px;
  font-family: "Microsoft YaHei";
  font-size: 12px;
  color: #999;
}
/* 分页 */
.page {
  width: 100%;
  padding: 40px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page_btn {
  margin-right: 10px;
  height: 30px;
  padding: 0 10px;
  font-family: Arial, "Lucida Grande", "Microsoft Yahei", "Hiragino Sans GB",
    "Hiragino Sans GB W3", SimSun, STHeiti;
  font-size: 12px;
  line-height: 30px;
  text-align: center;
  border-radius: 3px;
  border: 1px solid #ddd;
  cursor: pointer;
}
.page_btn:hover {
  background: #eee;
}