.news{
  padding: 0.8rem 10% 1.5rem;
  background-color: #fff;
}
.news-banner .banner-list {
  justify-content: space-around;
}
.news-type-list{
  display: flex;
  align-items: center;
  overflow-x: auto;
}
.news-type-item{
  display: inline-block;
}
.news-type-btn{
  display: inline-block;
  white-space: nowrap;
  padding: 0.3rem 0.7rem;
  background: #FFFFFF;
  border-radius: 0.6rem;
  font-weight: 700;
  font-size: 0.45rem;
  color: #1A1A1A;
  line-height: 0.6rem;
  transition: all 0.3s;
}
.news-type-btn:hover {
  background: rgba(192, 25, 31, 1);
  color: #fff;
}
.news-type-item:not(:first-child) {
  margin-left: 0.8rem;
}
.news-type-item.active >.news-type-btn {
  background: rgba(192, 25, 31, 1);
  color: #fff;
}


.news-list{
  display: flex;
  flex-wrap: wrap;
  margin-top: -0.5rem;
}
.news-item{
  display: block;
  width: 32%;
  margin-top: 1.5rem;
}
.news-item:hover .news-item-title{
  transform: translateY(-0.05rem);
  color: #C0191F;;
}
.news-item:hover .news-item-image{
  transform: scale(1.2);
}

.news-item:not(:nth-child(3n)) {
  margin-right: calc(4% / 2);
}
.news-item-box{
  width: 100%;
  border-radius: 0.4rem;
  overflow: hidden;
}
.news-item-image{
  width: 100%;
  transition: 0.3s all;
}
.news-item-title{
  margin-top: 0.4rem;
  font-size: 0.5rem;
  font-weight: 700;
  color: #1A1A1A;
  line-height: calc(40rem / 40);
  height: calc(80rem / 40);
  white-space: normal;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  transition: 0.3s all;
}
.new-item-footer {
  display: flex;
  justify-content: space-between;
  align-content: center;
  margin-top: 0.4rem;
}
.new-item-label{
  font-weight: 500;
  font-size: 0.4rem;
  color: #C0191F;
  line-height: 0.5rem;
}
.news-item-time{
  text-align: right;
  font-size: 0.4rem;
  font-weight: 400;
  color: #999999;
  line-height: 0.5rem;
}

@media screen and (max-width: 1000px) {
  .news-item{
    width: 48%;
  }
  .news-item:not(:nth-child(3n)) {
    margin-right: 0;
  }
  .news-item:nth-child(even) {
    margin-left: 4%;
  }
}

@media screen and (max-width: 500px) {
  .news {
    padding: 1rem 5%;
  }
  .news-item{
    width: 100%;
  }
  .news-item:nth-child(even) {
    margin-left: 0;
  }
}