* {
  margin: 0;
  padding: 0;
}
li {
  list-style: none;
}
a {
  text-decoration: none;
}
.communication_title {
  text-align: center;
  margin: 62px 0 45px;
  font-weight: 500;
  font-size: 48px;
  color: #333333;
}
.news_content_lists {
  margin: 0 auto;
}
.news_content_lists .news_list_bg {
  position: relative;
  overflow: hidden;
}
.news_content_lists .news_list {
  display: flex;
  gap: 60px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 40px 28px;
  border-bottom: 1px solid rgb(0, 0, 0, 0.09);
  box-sizing: border-box;
}
.news_content_lists .news_list_bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    0deg,
    rgba(78, 114, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.1) 100%
  );
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.news_content_lists .news_list_bg:hover::after {
  opacity: 1;
}
.news_content_lists .news_list_bg:last-child .news_list {
  border-bottom: none;
}
.news_list .news_img {
  width: 450px; /* 固定宽度 */
  height: 260px; /* 固定高度 */
  flex-shrink: 0; /* 防止图片被压缩 */
  position: relative; /* 为绝对定位的图片提供参照 */
}

.news_list .news_img img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* 保持图片比例并填充容器 */
  position: absolute;
  top: 0;
  left: 0;
}
.news_list .news_time {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 40px;
}
.news_list .news_time .news_time_day {
  font-weight: 400;
  font-size: 80px;
  color: #fb9c05;
  margin-bottom: 30px;
}
.news_list .news_time .news_time_month,
.news_list .news_time .news_time_year {
  font-weight: 400;
  font-size: 16px;
  color: #666666;
}
.news_list .news_title {
  font-size: 30px;
  line-height: 2;
  color: #333333;
  padding-top: 30px;
}
@media (max-width: 1440px) {
  .news_content_lists .news_list {
    align-items: center;
  }
  .news_list .news_time {
    padding-top: 0;
  }
  .news_list .news_title {
    padding-top: 0;
  }
}
@media (max-width: 1100px) {
  .communication_title {
    font-size: 30px;
  }
  .news_content_lists .news_list {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  .news_list .news_img {
    width: 100%;
    height: auto;
    position: relative;
    padding-bottom: 59.02913%;
  }
  .news_list .news_img img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
  }
  .news_list .news_time {
    flex-direction: row;
    gap: 10px;
    align-items: center;
  }
  .news_list .news_time .news_time_day {
    font-size: 48px;
    margin-bottom: 20px;
  }
  .news_list .news_title {
    font-size: 20px;
  }
}
