.list-download001 ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.list-download001 ul li {
  width: 48%;
  margin-bottom: 0.2rem;
  position: relative;
}

.list-download001 ul li a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s;
  background-color: #fff;
  border: #eaeaeb 1px solid;
}

@keyframes showArrow1 {
  0% {
    opacity: 0;
    transform: translateY(-0.1rem);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.list-download001 ul li a:hover {
  border-color: var(--ruifox-color-primary-2);
}

.list-download001 ul li a:hover i {
  animation: showArrow1 1s;
}

.list-download001 ul li a p {
  font-size: 0.18rem;
  line-height: 0.27rem;
  max-height: 0.27rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  word-wrap: break-word;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  color: #333;
  margin-right: 0.2rem;
}

.list-download001 ul li a i {
  color: var(--ruifox-color-primary-1);
  font-size: 0.24rem;
}

@media (max-width: 960px) {
  .list-download001 ul li {
    width: 100%!important;
  }
}

/*# sourceMappingURL=list-download001.css.map */