.nav2 {
  width: 100%;
  background: #f3f4f9;
}
.nav2 .inner {
  width: 75%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 68px;
}
.nav2 .inner .item {
  width: calc((100% - 60px) / 2);
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.6);
  overflow: hidden;
  padding: 120px 0px 20px 30px;
  filter: brightness(50%);
  cursor: pointer;
  transition: 0.5s;
  color: #ffffff;
  font-family: "Alibaba PuHuiTi";
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  text-decoration-line: underline;
  text-underline-offset: 42%;
  text-underline-position: from-font;
  text-decoration-skip-ink: auto;
  text-transform: uppercase;
}
.nav2 .inner .item1 {
  background-image: url(../img/about/nav2-back1.png);
}
.nav2 .inner .item2 {
  background-image: url(../img/about/nav2-back2.png);
}
.nav2 .inner .item-active {
  filter: brightness(100%);
}
.new {
  width: 100%;
  background: #f3f4f9;
  padding-bottom: 20px;
}
.new .inner {
  display: flex;
  flex-direction: column;
  gap: 85px;
}
.new .inner .item {
  width: 100%;
  display: flex;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}
.new .inner .item .left {
  width: 40%;
  overflow: hidden;
}
.new .inner .item .left img {
  width: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1);
  transition: 0.5s;
}
.new .inner .item .left:hover img {
  transform: scale(1.05);
}
.new .inner .item .right {
  width: 60%;
  padding: 35px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.new .inner .item .right .title {
  color: #000000;
  font-family: "Alibaba PuHuiTi";
  font-weight: 700;
  font-size: 24px;
  line-height: 28px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  transition: 0.5s;
}
.new .inner .item .right .desc {
  color: #000000;
  font-family: "Alibaba PuHuiTi";
  font-weight: 400;
  font-size: 14px;
  line-height: 26px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  transition: 0.5s;
}
.new .inner .item .right .bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.new .inner .item .right .bottom .bottom-left {
  display: flex;
  align-items: center;
  gap: 9px;
}
.new .inner .item .right .bottom .bottom-left .num {
  color: #000000;
  font-family: "Alibaba PuHuiTi";
  font-weight: 400;
  font-size: 24px;
  line-height: 33px;
}
.new .inner .item:hover .right .title {
  color: #015caf;
}
@media only screen and (max-width: 768px) {
  .nav2 .inner {
    padding-bottom: 30px;
  }
  .nav2 .inner .item {
    width: calc((100% - 20px) / 2);
    padding: 80px 0px 20px 30px;
  }
  .nav2 .inner .item a {
    font-size: 16px;
  }
  .new .inner .item {
    flex-wrap: wrap;
  }
  .new .inner .item .left {
    width: 100%;
    overflow: hidden;
  }
  .new .inner .item .right {
    width: 100%;
    padding: 20px;
    gap: 5px;
  }
  .new .inner .item .right .title {
    font-size: 20px;
  }
  .new .inner .item .right .bottom .bottom-left svg {
    width: 20px;
    height: 20px;
  }
  .new .inner .item .right .bottom .bottom-right svg {
    width: 40px;
    height: 40px;
  }
  .new .inner .item .right .bottom .bottom-left .num {
    font-size: 20px;
  }
}
@media only screen and (max-width: 521px) {
  .nav2 .inner .item {
    padding: 30px 0px 20px 30px;
  }
}
