/*************** 应用展示 特殊 ***************/
.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;
}
.home-app {
  position: relative;
}
.home-app .figure .image a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: Center;
}
.home-app .figure .image a img {
  max-width: 100%;
  max-height: 100%;
}
.home-app .figure .title {
  overflow: hidden;
  text-overflow: ellipsis;
  word-wrap: normal;
}
.home-app .figure .title .t {
  text-align: left;
  padding: 0 20px;
  background-color: #2e3754;
  color: #fff;
  font-size: 18px;
}
.home-app .figure .title .t:hover {
  text-decoration: none;
}
.home-app .figure .title .more {
  color: #fff;
  background-color: #fba31d;
  font-weight: 1;
}
.home-app .figure .summary {
  word-wrap: break-word;
  padding: 3px  15px;
}
@media (max-width: 767px) {
  .home-app .figure {
    height: 300px;
  }
  .home-app .figure .image {
    height: 250px;
  }
  .home-app .figure .title {
    font-size: 14px;
    line-height: 40px;
    height: 40px;
  }
  .home-app .figure .title .more {
    line-height: 30px;
    padding: 5px 0;
  }
  .home-app .figure .title .more span {
    display: inline-block;
    width: 100%;
    overflow: hidden;
    padding: 0 5px;
  }
}
@media (min-width: 768px) {
  .home-app .figure {
    height: 300px;
  }
  .home-app .figure .image {
    height: 250px;
  }
  .home-app .figure .title {
    line-height: 50px;
    height: 50px;
  }
  .home-app .figure .title .more {
    line-height: 20px;
    padding: 5px 0;
    font-size: 12px;
  }
  .home-app .figure .title .more .fa {
    font-size: 16px;
  }
}
