.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;
}
.list {
  display: flex;
  justify-content: center;
  align-items: Center;
}
.list.desc {
  justify-content: left;
}
.list-title {
  border-top: 1px solid #bbbbbb;
  border-left: 1px solid #bbbbbb;
  border-bottom: 1px solid #bbbbbb;
}
.list-title .list {
  height: 100%;
  border-right: 1px solid #bbbbbb;
}
.list-content {
  word-wrap: break-word;
}
.list-content .list-row {
  border-left: 1px solid #bbbbbb;
  border-bottom: 1px solid #bbbbbb;
}
.list-content .list-row .list {
  height: 100%;
  border-right: 1px solid #bbbbbb;
}
.list-content .list-row .list .pro-name {
  margin-left: 5px;
}
.list-content .list-row .list.opration .fa {
  font-size: 18px;
}
@media (max-width: 767px) {
  .list-title {
    height: 40px;
  }
  .list-content .list-row {
    height: 110px;
    font-size: 12px;
  }
  .list-content .list-row .list .pro-name {
    max-width: 60%;
    line-height: 20px;
  }
}
@media (min-width: 768px) {
  .list-title {
    height: 40px;
  }
  .list-content .list-row {
    height: 80px;
    font-size: 14px;
  }
  .list-content .list-row .list .pro-name {
    max-width: 80%;
    line-height: 20px;
  }
}
