.card-list-wrap header {
  font-size: 25px;
  font-weight: 700;
  height: 80px;
  line-height: 80px;
  background: #EAF4EC;
}
.card-list-wrap header ul > li {
  display: inline-block;
  margin-right: 40px;
}
.card-list-wrap header ul > li.active {
  font-size: 35px;
  color: var(--main-color);
}
.card-list-wrap .row {
  display: flex;
  flex-wrap: wrap;
  padding: 20px 0 50px;
}
.card-list-wrap .row .col {
  margin-top: 30px;
}
.card-list-wrap .wrap {
  height: 100%;
  line-height: 1.9;
  font-size: 18px;
  color: #000000;
  padding: 15px 20px;
  background: #fff;
  border: 1px solid #B7EDB4;
  border-radius: 8px;
  transition: box-shadow .3s ease;
  display: block;
  cursor: pointer;
  position: relative;
}
.card-list-wrap .wrap::after {
  position: absolute;
  right: 0;
  bottom: 0;
  content: "";
  width: 125px;
  height: 125px;
  background: url(/images/pm-i-1.png) no-repeat center;
}
.card-list-wrap .wrap:hover {
  box-shadow: 0 0 20px 0 #B7EDB4;
}
.card-list-wrap .wrap p {
  margin: unset;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 640px) {
  .card-list-wrap header {
    height: 60px;
    line-height: 60px;
  }
  .card-list-wrap header ul > li.active {
    font-size: 24px;
  }
  .card-list-wrap header ul > li {
    font-size: 20px;
    margin-right: 20px;
  }
}
