#body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.main {
  flex: 1;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}
.main .container {
  flex: 1;
  position: relative;
}
.main .container .no-data {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1rem;
  color: #373737;
  text-align: center;
}
.new-top {
  padding-top: calc(6.875rem + 6rem);
  display: flex;
  align-items: center;
  width: 100%;
  gap: 3rem;
  position: relative;
}
.new-top .left {
  z-index: 1;
  flex: 1;
}
.new-top .left .ratio-box {
  width: 100%;
  height: 0;
  padding-bottom: 61.37%;
  position: relative;
}
.new-top .right {
  z-index: 1;
  flex: 1;
  padding: 2.5rem 0 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.new-top .right .detail .title {
  color: #0062B1;
  font-size: 1.75rem;
  font-weight: bold;
}
.new-top .right .detail .desc {
  margin-top: 1.5rem;
  font-size: 1rem;
  line-height: 2rem;
  color: #373737;
}
.new-top .right .btn-more {
  margin-top: 6rem;
  width: 10rem;
  height: 3.375rem;
  background-color: #0064B4;
  border-radius: 1.75rem;
  cursor: pointer;
  position: relative;
}
.new-top .right .btn-more .arrow {
  position: absolute;
  top: 50%;
  left: 1rem;
  transform: translateY(-50%);
  display: block;
  width: 2.375rem;
  transition: left 0.5s ease-in-out;
}
.new-top .right .btn-more:hover .arrow {
  left: calc(100% - 3.25rem);
}
.new-top .bg {
  position: absolute;
  right: -7.5rem;
  bottom: 0;
  top: 0;
  width: 80%;
  background-color: rgba(134, 201, 255, 0.2);
  border-radius: 0rem 0rem 6.25rem 0rem;
}
.news {
  padding: 10rem 0 5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5.5rem 0;
}
.news .item {
  padding: 0 4rem 0.75rem;
  position: relative;
  color: #373737;
  cursor: pointer;
}
.news .item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0.125rem;
  height: 50%;
  background-color: #0062B1;
  transition: height 0.3s ease-in-out;
}
.news .item:hover {
  color: #0062B1;
}
.news .item:hover::before {
  height: 100%;
}
.news .item .title {
  font-size: 1.25rem;
  line-height: 1.875rem;
  font-weight: bold;
}
.news .item .desc {
  margin-top: 1.5rem;
  font-size: 1rem;
  line-height: 1.5rem;
}
.news .item .createTime {
  margin-top: 2.375rem;
  font-size: 0.875rem;
}
@media screen and (max-width: 768px) {
  .main .new-top {
    margin-top: 1rem;
    background-color: rgba(134, 201, 255, 0.2);
    padding: 1rem;
    flex-direction: column;
    gap: 1rem;
    border-radius: 0.75rem;
  }
  .main .new-top .left {
    width: 100%;
  }
  .main .new-top .bg {
    display: none;
  }
  .main .new-top .right {
    padding: 0;
  }
  .main .new-top .right .detial .desc {
    margin-top: 0.5rem;
  }
  .main .new-top .btn-more {
    margin-top: 1rem;
  }
  .main .news {
    padding: 2rem 0;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
  }
  .main .news .item {
    padding: 0 1rem 0.75rem;
  }
  .main .news .item::before {
    height: 50%;
  }
  .main .news .item .desc {
    margin-top: 0.75rem;
  }
  .main .news .item .createTime {
    margin-top: 1rem;
  }
}
