.banner {
  width: 100%;
  height: 420px;
  overflow: hidden;
}
.banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: zoomIn 1s ease-out;
}
@keyframes zoomIn {
  from {
    transform: scale(1.1);
  }
  to {
    transform: scale(1);
  }
}
.news {
  width: 74%;
  height: auto;
  margin: 80px auto;
}
.news .titlename {
  font-family: Raleway, Raleway;
  font-weight: 700;
  font-size: 36px;
  color: #292929;
  margin-bottom: 40px;
}
.news .list {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: auto;
  border-bottom: 1px solid #F0F0F0;
  margin-bottom: 40px;
}
.news .list .left {
  width: 62%;
  height: auto;
  padding-bottom: 40px;
}
.news .list .left .time {
  font-family: Raleway, Raleway;
  font-weight: 700;
  font-size: 20px;
  color: #E71215;
  line-height: 23px;
  text-align: left;
  margin-bottom: 20px;
}
.news .list .left .title {
  font-family: Raleway, Raleway;
  font-weight: 700;
  font-size: 1.875vw;
  color: #292929;
  line-height: 42px;
  text-align: left;
  margin-bottom: 2.083vw;
  transition: transform 0.3s;
}
.news .list .left p {
  width: 90%;
  font-family: Raleway, Raleway;
  font-weight: 400;
  font-size: 18px;
  color: #757575;
  line-height: 27px;
  text-align: left;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.news .list .right {
  width: 15vw;
  height: 11.25vw;
  border-radius: 36px 0 36px 0;
  overflow: hidden;
}
.news .list .right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s;
}
.news .list::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #E71215;
  transition: all 0.5s;
}
.news .list:hover::after {
  width: 100%;
}
.news .list:hover .left .title {
  color: #E71215;
  transform: translateX(10px);
}
.news .list:hover .left p {
  color: #E71215;
  text-decoration: underline;
}
.news .list:hover .right img {
  transform: scale(1.1);
}
@media (max-width: 961px) {
  .banner {
    height: 150px;
  }
  .news {
    width: 100%;
    height: auto;
    margin: 30px 0;
    padding: 0 15px;
  }
  .news .titlename {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .news .list {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
  }
  .news .list .left {
    padding-bottom: 20px;
  }
  .news .list .left .time {
    font-size: 16px;
    margin-bottom: 5px;
  }
  .news .list .left .title {
    font-size: 16px;
    line-height: 24px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .news .list .left p {
    font-size: 14px;
  }
  .news .list .right {
    width: 120px;
    height: 120px;
  }
}
