.newList {
  position: relative;
}
img {
  display: block;
}
.newList_row2 {
  padding: 80px 0;
  box-sizing: border-box;
  background: #f5f9fc;
}
.newList_row2 .newList_row2_top {
}
.newList_row2 .newList_row2_top .new_top_list {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  height: 100%;
  margin-bottom: 48px;
}

.newList_row2 .newList_row2_top .new_top_list li {
  display: flex;
  flex-direction: column;
  min-width: 30%;
  height: 300px;
  border-radius: 4px;
  background-color: #fff;
}
.newList_row2 .newList_row2_top .new_top_list .img_box {
  height: 200px;
}
.newList_row2 .newList_row2_top .new_top_list .img_box img {
  width: 100%;
  height: 100%;
  border-radius: 4px;
}
.newList_row2 .newList_row2_top .new_top_list li .text_box {
  padding: 16px 28px;
  box-sizing: border-box;

  line-height: 1.6em;
  background-color: #fff;
  border-radius: 0 0 4px 4px;
}

.newList_row2 .newList_row2_bottom .new_main_list {
  border-radius: 12px;
  background-color: #fff;
}
.newList_row2 .newList_row2_bottom .new_main_list ul {
  padding: 12px 0;
  box-sizing: border-box;
}
.newList_row2 .newList_row2_bottom .new_main_list ul .li {
  display: flex;
  gap: 24px;
  padding: 20px 0;
  box-sizing: border-box;
  margin: 0 24px;
  border-bottom: 2px solid #f5f5f5;
}
.newList_row2 .newList_row2_bottom .new_main_list ul .li .left {
  width: 200px;
  height: 100px;
  border-radius: 4px;
}
.newList_row2 .newList_row2_bottom .new_main_list ul .li .left img {
  width: 100%;
  height: 100%;
  border-radius: 4px;
}
.newList_row2 .newList_row2_bottom .new_main_list ul .li:nth-last-child(1) {
  border-style: none;
}
.newList_row2 .newList_row2_bottom .new_main_list ul .li .right {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}
.time {
  display: flex;
  gap: 12px;
  align-items: center;
}
.time .timer {
  color: #999;
}

.ellipsis {
  white-space: nowrap; /* 确保文本在一行内显示 */
  overflow: hidden; /* 隐藏溢出的内容 */
  text-overflow: ellipsis; /* 使用省略号表示文本溢出 */
}
