.aic {
  display: flex;
  align-items: center;
}
@keyframes scale-bg {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
.banner {
  padding: 110px 0;
  overflow: hidden;
  position: relative;
}
.banner img {
  position: absolute;
  width: 100%;
  top: 0;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  animation-name: scale-bg;
  animation-duration: 6s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
.banner-content {
  width: 504px;
  margin: 0 auto;
}
.banner-content .title {
  height: 83px;
  line-height: 83px;
  text-align: center;
  background: rgba(255, 255, 255, 0.85);
  font-weight: 800;
  font-size: 36px;
  color: #D90C0C;
  display: flex;
  justify-content: center;
}
.banner-content .title2 {
  height: 134px;
  line-height: 134px;
  text-align: center;
  background: rgba(217, 12, 12, 0.85);
  font-weight: 800;
  font-size: 80px;
  color: rgba(255, 255, 255, 0.85);
}
.wrap {
  padding: 160px 0 260px;
}
.wrap .list {
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 30px;
}
.wrap .list .report-item {
  display: flex;
  padding: 40px 0;
  border-bottom: 1px solid #E4E4E4;
}
.wrap .list .report-item:nth-last-child(1) {
  border-bottom: 0;
}
.wrap .list .report-item:hover .report-item__content h5 {
  color: #E70B0B;
}
.wrap .list .report-item img {
  width: 250px;
  height: 170px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
}
.wrap .list .report-item__content {
  padding: 16px 0;
  margin-left: 12px;
  flex: 1;
}
.wrap .list .report-item__content h5 {
  transition: all 0.3s;
  font-weight: 500;
  font-size: 24px;
  color: #1A1A1A;
  line-height: 24px;
}
.wrap .list .report-item__content p {
  margin: 8px 0 50px;
  font-size: 14px;
  color: #808080;
  line-height: 20px;
}
.wrap .list .report-item__content .info {
  display: flex;
  font-size: 16px;
  color: #808080;
  line-height: 16px;
}
.wrap .list .report-item__content .info .tv {
  width: 98px;
}
@media screen and (max-width: 768px) {
  .navbar-wrapper .content .logo1 {
    display: none;
  }
  .navbar-wrapper .content .logo2 {
    display: block;
  }
  .banner {
    padding: 40px 0;
  }
  .banner-content {
    width: 195px;
  }
  .banner-content .title {
    font-size: 16px;
    line-height: 38px;
    height: 38px;
  }
  .banner-content .title2 {
    font-size: 33px;
    line-height: 63px;
    height: 63px;
  }
  .wrap {
    padding: 20px 0;
  }
  .wrap .list {
    padding: 0 15px;
  }
  .wrap .list .report-item {
    padding: 20px 0;
  }
  .wrap .list .report-item img {
    width: 120px;
    height: 85px;
  }
  .wrap .list .report-item__content {
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .wrap .list .report-item__content h5 {
    font-size: 15px;
    line-height: 21px;
  }
  .wrap .list .report-item__content p {
    display: none;
  }
  .wrap .list .report-item__content .info {
    justify-content: space-between;
    font-size: 11px;
    line-height: 17px;
  }
}
