#home1 {
  min-height: 200vh;
  height: auto;
}
#home1 .main .news-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  flex-direction: column;
  margin-top: 35px;
}
#home1 .main .news-list .news-item {
  display: flex;
  gap: 20px;
  padding: 25px 0;
  border-bottom: 1px solid #474656;
  cursor: pointer;
  transition: all 0.3s ease;
}
#home1 .main .news-list .news-item:hover {
  transform: translateY(-5px);
}
#home1 .main .news-list .news-item:hover .news-title {
  color: #85efee;
}
#home1 .main .news-list .news-item:hover .news-img img {
  transform: scale(1.05);
}
#home1 .main .news-list .news-item .news-img {
  width: 395px;
  height: 250px;
  border-radius: 10px;
  overflow: hidden;
}
#home1 .main .news-list .news-item .news-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
#home1 .main .news-list .news-item .news-info {
  display: flex;
  flex-direction: column;
  gap: 40px;
  justify-content: space-around;
  flex: 1;
}
#home1 .main .news-list .news-item .news-info .news-title {
  font-size: 24px;
  font-weight: 600;
  color: #fff;
}
#home1 .main .news-list .news-item .news-info .news-desc {
  font-size: 16px;
  color: #c5c8d0;
  font-weight: 500;
  line-height: 24px;
  display: -webkit-box;
  display: -moz-box;
  display: box;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-all;
  /* 防止长单词不换行 */
  max-height: 80px;
}
#home1 .main .news-list .news-item .news-info .news-desc * {
  margin: 0;
  padding: 0;
  line-height: 24px;
  font-size: 16px;
}
#home1 .main .news-list .news-item .news-info .news-desc p,
#home1 .main .news-list .news-item .news-info .news-desc div,
#home1 .main .news-list .news-item .news-info .news-desc span {
  display: inline;
}
#home1 .main .news-list .news-item .news-info .news-desc ul {
  display: none;
}
#home1 .main .news-list .news-item .news-info .news-time {
  font-size: 16px;
  width: 200px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  border-radius: 10px;
  background-color: #474656;
  color: #fff;
}
#home1 .main .news-list .news-item .news-info .news-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #999;
}
#home1 .main .news-list .news-item .news-info .news-bottom .news-read {
  font-size: 16px;
  color: #999;
}
#home1 .main .news-list .news-item .news-info .news-bottom .fa-icon {
  margin-right: 10px;
  color: #999;
}
@media (max-width: 1920px) and (min-width: 960px) {
  body {
    zoom: 0.8;
  }
}
@media (max-width: 3840px) and (min-width: 2560px) {
  body {
    zoom: 1.2;
  }
}
