.container {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  padding: 20px 0 40px 0;
  box-sizing: border-box;
}
.container_inset_big{
  width: calc(100% - 360px);
}
.container_inset_small{
  width: 340px;
}
/* 筛选项 */
.filter_items {

}

.filter_items > li {
  width: 96px;
  height: 39px;
  line-height: 39px;
  text-align: center;
  background: #e0e0e2;
  margin: 0 5px 5px 0;
  border-radius: 4px;
  font-size: 14px;
  color: #666666;
  cursor: pointer;
}

/* 筛选项-选中 */
.filter_items > li.active {
  background: #00b150;
  color: #ffffff;
}

/* 结果列表 */
.news_list_items {
  margin-top: 15px;
}

/* 结果列表-列表项 */
.news_list_items > li {
  width: 100%;
  height: 140px;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #ffffff;
  border-radius: 4px;
  border: 1px solid #ffffff;
  box-sizing: border-box;
}

.news_list_items > li:hover {
  border: 1px solid #00b150;
  box-shadow: 0px 5px 20px rgba(0, 177, 80, 0.1);
}

.news_list_items > li + li {
  margin-top: 10px;
}

/* 日期标签 */
.news_list_items .date_tag {
  width: 80px;
  height: 70px;
  opacity: 0.98;
  border-radius: 2px;
  border: 1px solid #00b150;
}

.news_list_items .date_tag b,
.news_list_items .date_tag i {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  font-size: 14px;
}

.news_list_items .date_tag b {
  height: 38px;
  font-size: 25px;
  font-weight: 1000;
  color: #00b150;
}

.news_list_items .date_tag i {
  height: 32px;
  background: #00b150;
  color: #ffffff;
}

.secondarymsg--pcmlayout {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}

.secondarymsg--pcmlayout ul.tags {
  flex-wrap: wrap;
  width: 76%;
  height: 22px;
  overflow: hidden;
}

.secondarymsg--pcmlayout ul li {
  background: #F3F5F7;
  border-radius: 2px;
  font-size: 12px;
  color: #666;
  padding: 0px 3px;
  margin-right: 4px;
  display: inline-block;
  max-width: 110px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  cursor: pointer;
  box-sizing: border-box;
  height: 22px;
  line-height: 22px;
}

.secondarymsg--pcmlayout ul li:hover {
  color: #00b150;
  background: rgba(0, 177, 80, 0.16);
}

/* 正文 */
.news_list_items .text {
  display: flex;
  flex-direction: column;
  width: calc(100% - 100px);
  /* text-align: justify; */
  font-size: 13px;
  color: #999;
  word-break: break-all;
}
/* 标题 */
.news_list_items .text h2 {
  font-size: 18px;
  color: #000000;
  font-weight: bold;
  margin-bottom: 10px;
}
.news_list_items > li:hover .text h2{
  color:#00b150 ;
}
/* 文字描述 */
.news_list_items .text > p {
  width: 100%;
  /* height: 34px; */
  font-size: 13px;
  line-height: 1.4;
  color: #999999;
}

/* 图片 */
.news_list_items .image {
  width: 125px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.news_list_items .image > img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}

/* 加载更多按钮 */
/*.tech_news_exist > .btn_getmore {*/
/*  width: 100%;*/
/*  display: flex;*/
/*  justify-content: center;*/
/*  font-size: 14px;*/
/*}*/

/* 按钮可用 */
.loading_more {
  display: none;
  width: 150px;
  height: 37px;
  background: #ffffff;
  border: 1px solid #00b150;
  border-radius: 4px;
  color: #00b150;
  cursor: pointer;
  margin: 20px auto 0;
  font-size: 14px;
  line-height: 37px;
  text-align: center;
}
.loading_complate{
  display: none;
  font-size: 14px;
  padding: 20px 0 0;
  margin: 0px auto;
  text-align: center;
}

  /* 按钮不可用 */
/*.btn_getmore .disabled {*/
/*  border: 1px solid #999999;*/
/*  color: #999999;*/
/*  cursor: not-allowed;*/
/*}*/

/* 右侧 */
/* 搜索 */
.container_inset_small > .result_search {
  width: 100%;
  height: 46px;
  line-height: 46px;
  font-size: 14px;
  position: relative;
}

.container_inset_small > .result_search input {
  width: 260px;
  height: 100%;
  color: #333;
  float: left;
  padding-left: 10px;
  border: 1px solid #00b150;
  border-right: none;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  box-sizing: border-box;
}

.container_inset_small > .result_search button {
  width: 80px;
  height: 100%;
  float: left;
  background: #00b150;
  color: #ffffff;
  border: none;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  cursor: pointer;
}

/* 搜索图标 */
/*.container_inset_small > .result_search i {*/
/*  transform: rotate(45deg);*/
/*  position: absolute;*/
/*  right: 90px;*/
/*  top: 1px;*/
/*  cursor: pointer;*/
/*}*/

/* 推荐位上方 */
.container_inset_small > .news_recommend {
  margin-top: 20px;
}
