.new {
  width: 100%;
  padding: 50px 0 100px;
  background: #fff;
}

.new .new_title {
  text-align: center;
  color: #141414;
  font-size: 40px;
  font-weight: 500;
  line-height: 1.2;
}

.new .new_menv {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.new .new_menv a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 40px;
  height: 50px;
  border-radius: 50px;
  border: 1px solid #e6e6e6;
  transition: all 0.3s;
  font-size: 16px;
  color: #808080;
  margin-top: 20px;
  margin-right: 16px;
}

.new .new_menv a:last-child {
  margin-right: 0;
}

.new .new_menv a.act {
  background: #81ccdb;
  color: #fff;
}

.new .new_menv a:hover {
  background: #81ccdb;
  color: #fff;
}

.new .new_bom {
  display: flex;
  flex-wrap: wrap;
}

.new .new_bom .new_Box {
  margin-top: 40px;
  width: 23.125%;
  margin-right: 2.5%;
}

/* 370/240 */
.new .new_bom .new_Box:nth-child(4n) {
  margin-right: 0;
}

.new_Box .new_prc {
  width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}

.new_Box .new_prc img {
  display: block;
  width: 100%;
  min-height: 100%;
  object-fit: cover;
  transition: all 0.3s;
}

.new_Box:hover .new_prc img {
  transform: scale(1.1);
}

.new_Box .new_prc .new_ico {
  width: 110px;
  height: 30px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #81ccdb;
  color: #fff;
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 14px;
}

.new_Box .new_bom {
  padding: 10px 0 10px;
}

.new_Box .new_bom .new_name {
  font-size: 18px;
  font-weight: bold;
  line-height: 28px;
  color: #333333;
  transition: all 0.3s;
  min-height: 84px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: all 0.3s;
}

.new_Box:hover .new_bom .new_name {
  color: #81ccdb;
}

.new_Box .new_bom .new_info {
  margin-top: 8px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  color: #999999;
  font-weight: 500;
  transition: all 0.3s;
}

.new_Box:hover .new_bom .new_info {
  color: #81ccdb;
}

.fyq {
  margin-top: 50px;
}

/* 响应式设计 */
@media (max-width: 1500px) {
  .new {
    padding: 40px 0 80px;
  }
  .new .new_title {
    font-size: 36px;
  }
  .new .new_menv a {
    padding: 0 35px;
    height: 48px;
    font-size: 15px;
    margin-right: 14px;
  }
  .new_Box .new_bom .new_name {
    font-size: 17px;
    line-height: 26px;
  }
  .new_Box .new_bom .new_info {
    font-size: 15px;
  }
}

@media (max-width: 1200px) {
  .new .new_title {
    font-size: 32px;
  }
  .new .new_menv a {
    padding: 0 30px;
    height: 46px;
    font-size: 15px;
    margin-right: 12px;
  }
  .new .new_bom .new_Box:nth-child(n) {
    width: 33%;
    margin-right: 0.5%;
  }
  .new .new_bom .new_Box:nth-child(3n) {
    margin-right: 0%;
  }
  .new_Box .new_prc .new_ico {
    width: 100px;
    height: 28px;
    font-size: 13px;
    top: 15px;
    left: 15px;
  }
  .new_Box .new_bom .new_name {
    font-size: 16px;
    line-height: 25px;
  }
}

@media (max-width: 992px) {
  .new {
    padding: 30px 0 60px;
  }
  .new .new_title {
    font-size: 28px;
  }
  .new .new_bom .new_Box {
    width: 48%;
    margin-right: 4%;
    margin-top: 30px;
  }
  .new .new_bom .new_Box:nth-child(n) {
    width: 49%;
    margin-right: 2%;
  }
  .new .new_bom .new_Box:nth-child(2n) {
    margin-right: 0%;
  }
  .new_Box .new_bom .new_name {
    min-height: 75px;
  }
  .fyq {
    margin-top: 40px;
  }
}

@media (max-width: 768px) {
  .new {
    padding: 30px 0px;
  }
  .new .new_title {
    font-size: 24px;
  }
  .new .new_menv a {
    padding: 0 25px;
    height: 44px;
    font-size: 14px;
    margin-right: 10px;
    margin-top: 15px;
  }
  .new .new_bom {
    margin-top: 10px;
  }

  .new .new_bom .new_Box:nth-child(n) {
    margin-right: 0;
    width: 100%;
    margin-right: 0;
    margin-top: 25px;
  }
  .new_Box .new_prc .new_ico {
    width: 90px;
    height: 26px;
    font-size: 12px;
    top: 12px;
    left: 12px;
  }
  .new_Box .new_bom {
    padding: 8px 0 8px;
  }
  .new_Box .new_bom .new_name {
    font-size: 16px;
    line-height: 24px;
    min-height: 72px;
  }
  .new_Box .new_bom .new_info {
    font-size: 14px;
    margin-top: 6px;
  }
  .fyq {
    margin-top: 30px;
  }
}
