.new_box {
  padding-top: 40px;
  padding-bottom: 160px;
}

.new_body {
  display: flex;
  gap: 145px;
}

.new_body .left {
  flex: 2.4;
}

.new_body .right {
  flex: 1;
}

.new_body .new_title {
  padding-top: 20px;
  padding-bottom: 40px;
  margin-bottom: 45px;
  border-bottom: 1px solid #E1E1E1;
  font-weight: 400;
  font-size: 30px;
  color: #0D1012;
  line-height: 52px;
}

.new_body .new_html p {
  text-indent: 2em;
  line-height: 38px;
}

.new_body .new_btn_body {
  padding: 55px 0;
  margin-top: 60px;
  border-top: 1px solid #E1E1E1;
  border-bottom: 1px solid #E1E1E1;
  display: flex;
  justify-content: space-between;
}

.new_body .new_btn_body .row {
  max-width: 49.5%;
}

.new_body .new_btn_body .row .tip {
  font-size: 16px;
  color: #0D1012;
}

.new_body .new_btn_body .row .text {
  font-size: 16px;
  color: #0D1012;
  line-height: 36px;
  -webkit-line-clamp: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

.new_body .new_btn_body .row .text:hover {
  color: var(--primary-color);
}

.new_body .recommend_title {
  padding-bottom: 30px;
  margin-bottom: 40px;
  border-bottom: 1px solid #E1E1E1;
  font-weight: 400;
  font-size: 30px;
  color: #0D1012;
  line-height: 40px;
}

.new_box .new_body .right .list {
  grid-template-columns: 1fr;
}

@media screen and (max-width: 1100px) {
  .new_body {
    gap: 50px;
  }
}

@media screen and (max-width: 900px) {
  .new_body {
    flex-direction: column;
    gap: 1rem;
  }

  .new_box {
    padding-top: 0.45rem;
    padding-bottom: 2rem;
  }

  .new_body .new_title {
    padding: 0;
    padding-bottom: 0.4rem;
    margin-bottom: 0.2rem;
    font-size: 0.34rem;
    line-height: 0.5rem;
  }

  .new_body .new_html p {
    line-height: 0.4rem;
  }

  .new_body .new_btn_body {
    padding: 0.3rem 0;
    margin-top: 0.6rem;
  }

  .new_body .new_btn_body .row .tip {
    font-size: 0.26rem;
    line-height: 0.26rem;
  }

  .new_body .new_btn_body .row .text {
    margin-top: 0.12rem;
    font-size: 0.26rem;
    line-height: 0.34rem;
  }

  .new_body .recommend_title {
    padding-bottom: 0.3rem;
    margin-bottom: 0.3rem;
    font-size: 0.34rem;
    line-height: 0.34rem;
  }

  .new_box .new_body .right .list {
    grid-template-columns: 1fr 1fr;
  }
}