.float-l {
  float: left;
}
.float-r {
  float: right;
}
.clear {
  clear: both;
}
.center {
  margin: 0 auto;
}
.ft-wei {
  font-weight: 600;
}
.hide-excess-text {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.v-center {
  display: flex;
  justify-content: center;
  align-items: Center;
}
@keyframes imgHover {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.2);
  }
}
.imgHover {
  animation: imgHover 1s forwards;
}
.app-list .figure {
  margin-bottom: 30px;
  padding: 20px;
  border: 1px solid transparent;
  border-bottom: 1px solid #2B2B2B;
}
.app-list .figure:hover {
  border: 1px solid #2B2B2B;
}
.app-list .figure .image {
  overflow: hidden;
}
.app-list .figure .image a {
  width: 100%;
  height: 100%;
}
.app-list .figure .image a img {
  max-width: 100%;
  max-height: 100%;
  margin: 0 auto;
}
.app-list .figure .desc {
  float: left;
}
.app-list .figure .desc h4 {
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
}
.app-list .figure .desc h4 a {
  color: #323534;
}
.app-list .figure .desc span {
  word-wrap: break-word;
  color: #645f5f;
}
@media (max-width: 767px) {
  .app-list .figure .image {
    height: 150px;
    text-align: center;
  }
  .app-list .figure .image a {
    display: inline-block;
    width: auto;
  }
  .app-list .figure .image a img {
    width: 180px;
  }
  .app-list .figure .desc {
    margin-bottom: 10px;
  }
  .app-list .figure .desc h4 {
    margin-top: 10px;
    font-size: 13px;
    line-height: 18px;
    padding-bottom: 5px;
  }
  .app-list .figure .desc span {
    font-size: 13px;
  }
}
@media (min-width: 768px) {
  .app-list .figure .image {
    height: 180px;
  }
  .app-list .figure .desc h4 {
    margin-top: 24px;
    font-size: 14px;
    line-height: 20px;
    height: 45px;
    text-align: center;
  }
  .app-list .figure .desc span {
    font-size: 13px;
  }
}
