/*************** 应用展示 特殊 ***************/
.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 .list .figure{
  position: relative;
}
.home-app .list .figure .image{
  display: block;
  width: 100%;
  height: 100%;
}
.home-app .list .figure .image img{
  width: 100%;
  height: 100%;
  object-fit: scale-down;
}
.home-app .list .figure .opt-box{
  display: flex;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  text-decoration: none;
}
.home-app .list .figure .text{
  display: flex;
  justify-content: center;
  align-items: start;
  flex-direction: column;
  background-color: rgba(0,0,0,0.5);
  color: #fff;
  overflow: hidden;
}
.home-app .list .figure .text .name{
  color: inherit;
}
.home-app .list .figure .text .summary{
  color: inherit;
  margin-bottom: 0;
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
}
.home-app .app-right .app-list .content .title {
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.home-app .app-right .app-list .content .descr {
  word-wrap: break-word;
}
@media (max-width: 767px) {
  .home-app .list .figure .opt-box{
    justify-content: center;
    align-items: center;
  }
  .home-app .list .figure .text{
    align-items: center;
    padding: 10px 20px;
  }
  .home-app .list .figure .text .name{
    font-size: 16px;
    font-weight: 600;
  }
  .home-app .list .figure .text .summary{
    font-size: 13px;
    max-height: 37px;
  }
}
@media (min-width: 768px) {
  .home-app .list{
    padding-left: 2.5px; 
    padding-right: 2.5px; 
  }
  .home-app .figure{
    margin-bottom: 5px;
  }
  .home-app .list .figure .opt-box{
    justify-content: left;
    align-items: end;
  }
  .home-app .top-row .list:first-child .figure .opt-box{
    justify-content: right;
  }
  .home-app .list .figure .text{
    width: 60%;
    height: 50%;
    padding: 10px 20px;
  }
  .home-app .top-row .list .figure .text .name{
    font-size: 26px;
    font-weight: 600;
  }
  .home-app .bottom-row .list .figure .text .name{
    font-size: 26px;
    font-weight: 600;
  }
  .home-app .list .figure .text .summary{
    font-size: 13px;
    max-height: 37px;
  }
}
