.banner {
  width: 100%;
  height: 420px;
  overflow: hidden;
}
.banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: zoomIn 1s ease-out;
}
@keyframes zoomIn {
  from {
    transform: scale(1.1);
  }
  to {
    transform: scale(1);
  }
}
.download {
  width: 74%;
  height: auto;
  margin: 80px auto;
}
.download .title {
  font-family: Raleway, Raleway;
  font-weight: 700;
  font-size: 36px;
  color: #292929;
  margin-bottom: 40px;
}
.download .list {
  display: flex;
  align-items: center;
  width: 100%;
  height: 60px;
  margin-bottom: 20px;
  padding: 0 20px;
  border-bottom: 1px solid #F0F0F0;
}
.download .list .le {
  display: flex;
  align-items: center;
}
.download .list img {
  width: 24px;
  height: 24px;
  margin-right: 10px;
}
.download .list .name {
  font-family: Raleway, Raleway;
  font-weight: 400;
  font-size: 20px;
  color: #292929;
}
.download .list .click {
  font-family: Raleway, Raleway;
  font-weight: 400;
  font-size: 20px;
  color: #E71215;
  margin-left: auto;
}
@media (max-width: 961px) {
  .banner {
    height: 150px;
  }
  .download {
    width: 100%;
    margin: 30px 0;
    padding: 0 15px;
  }
  .download .title {
    margin-bottom: 20px;
    font-size: 24px;
  }
  .download .list {
    height: auto;
    display: block;
  }
  .download .list img {
    width: 18px;
    height: 18px;
  }
  .download .list .name {
    font-size: 16px;
  }
  .download .list .click {
    display: flex;
    justify-content: flex-end;
    margin: 10px 0;
    font-size: 16px;
  }
}
