.news-container {
  width: 80%;
  min-width: 1024px;
  margin: 0 auto;

}
.news-header-container {
  /* display: block; */
  padding: 0.8rem 0;
  display: flex;
  justify-content: space-between;
}

.news-header-container::before, .news-header-container::after {
  content: none;
}

.news-header-container .news-left-last {
  width: 48%;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0px 2px 10px 0px rgba(35, 24, 21, 0.1);
  color: black;
}
/* .news-header-container .news-left-last:last-child {
  margin-left: 10%;
} */

#container {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.placeholder:after {
  content: '';
  display: block;
  margin-top: 50%;
}

.news-left-last-img {
  position: absolute;
  top: 0;
  width: 100%;
}

.last-container {
  width: 100%;
  padding: 0.8rem 1.2rem;
}

.last-container-title {
  font-size: 1.5rem;
  color: rgba(21, 48, 109, 1);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.last-container-content {
  font-size: 1rem;
  margin: 1rem 0;
  color: #555;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.news-left-last .last-container-more {
  display: block;
  text-align: right;
  font-size: 1rem;
  font-family: Microsoft YaHei;
  font-weight: 400;
  color: #15306d;
  line-height: 1rem;
  position: relative;
}

.news-left-last .last-container-more::before {
  content: '';
  position: absolute;
  height: 1px;
  left: 0;
  top: 50%;
  right: 5rem;
  background: #15306d;
}

.section {
  display: flex;
  width: 100%;
  color: black;
  padding: 20px 0;
  padding-right: 0;
  border-radius: 10px;
  box-shadow: 0px 2px 10px 0px rgba(35, 24, 21, 0.1);
  margin-bottom: 1.6rem;
  background: url(../static/newbj.png) center  no-repeat ;
  background-size: 100%;
}
.active.section {
  color: #ffffff;
}
.section-date {
  color: #ffffff;
  text-align: right;
  min-width: 9rem;
  margin-right: 1.2rem;
}

.section-date-month {
  width: 100%;
  font-size: 2rem;
  font-family: Microsoft YaHei;
  font-weight: 400;
}

.section-date-year {
  font-size: 1.2rem;
  font-family: Microsoft YaHei;
  font-weight: 400;
}
.section-date > img {
  margin: .5rem;
}
.section-content-title {
  padding-top: .5rem;
  padding-right: .5rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  font-size: 1.2rem;
  font-family: Microsoft YaHei;
  font-weight: bold;
  color: #f8b62b;
}

.section-content-detail {
  padding-right: .5rem;
  margin-top: 1rem;
  font-size: 1rem;
  color: #ffffff;
  font-family: Microsoft YaHei;
  font-weight: 400;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  overflow: hidden;
  -webkit-box-orient: vertical;
}

.active {
  cursor: pointer;
  background: url('../static/newbj.png') no-repeat center;
  background-size: cover;
  box-shadow: 1px 1px 10px #888888;
}
.active .section-content-detail , .active .section-date{
  color: #ffffff;
}

@media (max-width: 1024px) {
  .news-header-container .news-left-last {
    float: none;
    /* width: 100%; */
  }
  .news-header-container .news-left-last:last-child {
    /* margin: 1rem 0 0 0; */
    margin-left: 0;
  }
  .news-container {
    width: 96%;
    min-width: 0;
  }
}
@media (max-width:580px){
  .news-header-container .news-left-last:last-child {
    display: none;
  }
  .news-header-container .news-left-last {
    width: 100%;
  }
  .section {
        background-size: 100% 100%;
	}
}