.content {
  background-color: #000;
  height: 100%;
  margin-top: 100px;
}

.title {
  width: 80%;
  margin: 0 auto;
  margin-top: 30px;
  min-height: 58px;
  text-align: center;
  overflow: hidden;
  text-indent: -1000px;
  background: url('/assets/img/news-title.png') no-repeat center;
}

.news-card-wrapper {
  margin: 50px auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  padding: 10px 62px;
}

.news-card-wrapper .img-card {
  position: relative;
  box-sizing: border-box;
  width: 25%;
  /* flex: 1; */
  padding: 20px;
  overflow: hidden;
}

.news-card-wrapper .img-wrapper {
  width: 100%;
  max-height: 236px;
  border-radius: 6px;
  overflow: hidden;
}

.news-card-wrapper .des-box {
  display: flex;
  margin-top: 15px;
}

.news-card-wrapper .date {
  width: 64px;
  flex-shrink: 0;
  text-align: center;
  margin-right: 20px;
}

.news-card-wrapper .date div {
  height: 60px;
  line-height: 60px;
  background-color: #000;
  color: #fff;
}

.news-card-wrapper .date div:nth-child(1) {
  background-color: #ffa200;
}

.news-card-wrapper .des {
  flex: 1;
  overflow: hidden;
  color: #bbb;
}

.news-card-wrapper .des-title {
  color: #ffa200;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: normal;
  font-size: 1.12rem;
  margin: 0;
  margin-bottom: 0.5em;
}

.news-card-wrapper .des .more {
  margin-top: 5px;
  color: #fff;
  text-align: right;
  font-size: 1rem;
}

.news-card-wrapper .des p {
  font-size: 1rem;
  margin: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

@media screen and (max-width:1023px) {
  .news-card-wrapper{
    padding: 20px
  }
  .news-card-wrapper .img-card{
    width: 33.3%;
  }
  .news-card-wrapper{
    margin-top: 0px;
  }
}

@media screen and (max-width:750px) {
  
  .news-card-wrapper .img-card{
    width: 50%;
    padding: 10px;
  }
  .news-card-wrapper{
    padding: 0;
  }
  .title{
    margin-top: 10px;
  }
}

