.content{
  width: 100%;
  min-height: calc(100% - 200px);
  margin-top: 80px;
}
.banner{
  width: 100%;
  height: auto;
}
.news{
  width: 100%;
  height: auto;
  margin: 40px 0;
}
.news-content{
  width: 1200px;
  height: 100%;
  margin-left: 50%;
  transform: translateX(-50%);
}
.aboutus-title{
  text-align: center;
  font-size: 30px;
  font-weight: 900;
  position: relative;
}
.circle{
  width: 40px;
  height: 40px;
  border-radius: 20px;
  background: #ff5ab8;
  position: absolute;
  left: 45%;
  top: 4px;
  z-index:-1;
}
.title-sub{
  text-align: center;
  font-size: 18px;
  font-weight: 400;
  white-space: 5px;
  letter-spacing: 5px;
  margin-bottom: 20px;
}
.news-list{
  width: 100%;
  height: auto;
}
.news-list-item{
  width: 100%;
  height: auto;
  padding: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #cccccc;
  margin-bottom: 20px;
}
.left-img{
  width: 360px;
  height: 225px;
  margin-right: 40px;
}
.right-content{
  flex: 1;
  height: 100%;
}
.news-title{
  font-size: 24px;
  font-weight: 900;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  color: #000000;
}
.news-descripe{
  font-size: 18px;
  color: #b3b3b3;
  font-weight: 400;
  margin: 16px 0;
  text-indent: 40px;
}
.source{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 80px;
}
.source>a {
  color: #000000;
}
@media (max-width: 600px){
  .news-content{
    width: 100% !important;
    height: 100% !important;
    padding: 0 16px;
    margin: 0;
    transform: none;
  }
  .news-list-item{
    display: block;
  }
  .left-img{
    width: 100%;
    height: 100%;
    margin: 0;
  }
  .left-img img{
    width: 100% !important;
  }
  /* .right-content{
    display: none;
  } */
}