.news-image-list-container {
  margin-left: 25px;
  flex-grow: 1;
}
.news-image-list-container .tab {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 38px;
}
.news-image-list-container .tab .tab-one {
  min-width: 115px;
  padding: 0 5px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: #F4F5F7;
  border-radius: 4px;
  border: 1px solid #DFDFDF;
  margin-right: 6px;
  margin-bottom: 6px;
}
.news-image-list-container .tab .tab-one.active {
  border: 1px solid transparent;
  color: #FFF;
  background: linear-gradient(134deg, #6DC2F2 0%, #299FE1 0%, #0054A6 100%);
}
.news-image-list-container .tab .tab-one.active .tab-title,
.news-image-list-container .tab .tab-one.active .tab-remark {
  color: #FFF;
}
.news-image-list-container .tab .tab-one .tab-title,
.news-image-list-container .tab .tab-one .tab-remark {
  font-weight: 500;
  font-size: 14px;
  color: #2C2828;
}
.news-image-list-container .news-image-list-content {
  margin-top: 22px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.news-image-list-container .news-image-list-content .news-image-one {
  padding: 10px 10px 12px;
  margin-bottom: 30px;
  box-shadow: 0 4px 17px 3px rgba(0, 0, 0, 0.04);
  background: #FFF;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 20%;
}
.news-image-list-container .news-image-list-content .news-image-one:nth-child(4n - 1),
.news-image-list-container .news-image-list-content .news-image-one:nth-child(4n - 2),
.news-image-list-container .news-image-list-content .news-image-one:nth-child(4n - 3) {
  /*margin-right: 44px;*/
}
.news-image-list-container .news-image-list-content .news-image-one > img {
  width: 156px;
  height: 218px;
  object-fit: cover;
  margin-bottom: 12px;
}
.news-image-list-container .news-image-list-content .news-image-one .news-text {
  font-weight: 600;
  font-size: 14px;
  color: #272727;
}
.news-image-list-container .news-image-list-content .news-image-one .news-text.no-wrap { 
  font-size:12px;  
}
.news-image-list-container .news-image-list-content .news-image-one .news-text:nth-child(2) {
  margin-bottom: 3px;
}
.news-image-list-container .news-image-list-content .news-image-one .news-text:nth-child(3) {
  font-weight: 400;
}
@media screen and (max-width: 600px) {
  .news-image-list-container {
    margin-left: 0;
  }
  .news-image-list-container .tab {
    margin-bottom: 16px;
    margin-top: 13px;
  }
  .news-image-list-container .tab .tab-one {
    min-width: 57px;
    padding: 0 14px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: #F4F5F7;
    border-radius: 4px;
    border: 1px solid #DFDFDF;
    margin-right: 12px;
    margin-bottom: 12px;
    background: none;
  }
  .news-image-list-container .tab .tab-one.active {
    border: 1px solid #0054A6;
    background: none;
  }
  .news-image-list-container .tab .tab-one.active .tab-title,
  .news-image-list-container .tab .tab-one.active .tab-remark {
    color: #0054A6;
  }
  .news-image-list-container .tab .tab-one .tab-title,
  .news-image-list-container .tab .tab-one .tab-remark {
    font-weight: 400;
    font-size: 14px;
    color: #545454;
  }
  .news-image-list-container .tab .tab-one .tab-remark {
    display: none;
  }
  .news-image-list-container .news-image-list-content {
    margin-top: 13px;
    justify-content: space-between;
  }
  .news-image-list-container .news-image-list-content .news-image-one {
    width: calc(50% - 10px);
    padding: 10px 10px 12px;
    margin-bottom: 16px;
  }
  .news-image-list-container .news-image-list-content .news-image-one:nth-child(4n - 1),
  .news-image-list-container .news-image-list-content .news-image-one:nth-child(4n - 2),
  .news-image-list-container .news-image-list-content .news-image-one:nth-child(4n - 3) {
    margin-right: 0;
  }
  .news-image-list-container .news-image-list-content .news-image-one > img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    margin-bottom: 12px;
  }
  .news-image-list-container .news-image-list-content .news-image-one .news-text {
    font-size: 14px;
    color: #272727;
  }
}