.content {
  width: 100%;
}
.content .top-list {
  width: 100%;
}
.content .top-list .item {
  width: 100%;
  padding: 94px 0;
}
.content .top-list .item .box {
  width: 1440px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.content .top-list .item .box .img {
  width: 734px;
  height: 458px;
  border-radius: 8px;
  overflow: hidden;
}
.content .top-list .item .box .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}
.content .top-list .item .box .img:hover img {
  transform: scale(1.1);
}
.content .top-list .item .box .right {
  width: 559px;
}
.content .top-list .item .box .right .title {
  font-size: 42px;
  font-weight: bold;
  line-height: 42px;
  color: #333333;
}
.content .top-list .item .box .right .p {
  font-size: 18px;
  line-height: 36px;
  color: #333333;
  margin-top: 31px;
  text-align: justify;
}
.content .top-list .item:nth-child(2n) {
  background-color: #f6f6f6;
}
.content .top-list .item:nth-child(2n) .box .right {
  width: 574px;
}
@media screen and (max-width: 1560px) {
  .content .top-list .item .box {
    width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
@media screen and (max-width: 980px) {
  .content .top-list .item .box {
    width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }
  .content .top-list .item .box .img {
    width: 100%;
    height: auto;
    aspect-ratio: 734/458;
    background-color: rgba(94, 108, 128, 0);
    border-radius: 8px;
    overflow: hidden;
  }
  .content .top-list .item .box .right {
    width: 100%;
    margin-top: 30px;
  }
  .content .top-list .item:nth-child(2n) .box {
    flex-direction: column-reverse;
  }
  .content .top-list .item:nth-child(2n) .box .right {
    width: 100%;
  }
}
@media screen and (max-width: 680px) {
  .content .top-list .item {
    width: 100%;
    padding: 60px 0;
  }
  .content .top-list .item .box .right .title {
    font-size: 28px;
    font-weight: bold;
    line-height: 28px;
    color: #333333;
  }
  .content .top-list .item .box .right .p {
    font-size: 16px;
    line-height: 31px;
    color: #333333;
    margin-top: 31px;
  }
}
