body {
  line-height: 1.5;
}
.cont {
  width: 100%;
  overflow: hidden;
  background: linear-gradient(to bottom, #f9f9f9, #fff);
  padding: 50px 0 90px;
}
.cont svg {
  margin: 0!important;
}
.cont ul {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.cont ul li {
  width: 32%;
  margin-right: 2%;
  margin-bottom: 2%;
  background: #fff;
  border: 1px solid #eee8de;
  padding: 4px;
}
.cont ul li:nth-child(3n) {
  margin-right: 0;
}
.cont ul li .in-frame {
  padding: 3% 0 4%;
}
.cont ul li .ic {
  width: 90px;
  margin: 0 auto;
}
.cont ul li .txt {
  width: 80%;
  text-align: center;
  color: #333333;
  margin: 2% auto 0;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  line-height: 1.5;
  height: 3em;
  transition: all 0.3s;
}
.cont ul li:hover .ic {
  animation: an1 0.5s linear 0s 1 forwards;
}
.cont ul li:hover .txt {
  color: #b69660;
}
@keyframes an1 {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-5px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/* 125% */
@media screen and (max-width: 1440px) {
  .cont ul li .ic {
    width: 80px;
  }
  .cont ul li .txt {
    font-size: 18px;
  }
}
@media screen and (max-width: 1366px) {
  .cont ul li .ic {
    width: 70px;
  }
  .cont ul li .txt {
    font-size: 16px;
  }
}
/* 150 */
@media screen and (max-width: 998px) {
  .cont ul {
    justify-content: space-between;
  }
  .cont ul li {
    width: 49%;
    margin-right: 0;
  }
}
@media screen and (max-width: 768px) {
  .cont {
    padding: 30px 0;
  }
  .cont ul li {
    width: 100%;
  }
  .cont ul li .txt {
    display: block;
    height: auto;
  }
}
/*# sourceMappingURL=./business-scope.css.map */