.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;
}
.pdfList .figure {
  margin-bottom: 30px;
  padding: 20px;
  border-bottom: 1px solid #fcc900;
}
.pdfList .figure:hover {
  box-shadow: 3px 3px 3px 3px rgba(0, 0, 0, 0.1);
}
.pdfList .figure .image img {
  width: 60%;
  height: 60%;
}
.pdfList .figure .content h4 {
  font-weight: 600;
  font-family: Arial;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.pdfList .figure .content h4 .add-date {
  color: #999999;
}
.pdfList .figure .content span {
  word-wrap: break-word;
  color: #999999;
  margin-right: 5px;
}
.pdfList .figure .content .desc {
  word-wrap: break-word;
  white-space: pre-line;
}
@media (max-width: 767px) {
  .pdfList .figure .image {
    height: 150px;
    text-align: center;
  }
  .pdfList .figure .image img {
    width: 140px;
    height: 150px;
  }
  .pdfList .figure .content {
    margin-bottom: 10px;
  }
  .pdfList .figure .content h4 {
    margin-top: 10px;
    font-size: 16px;
    padding-right: 10%;
  }
  .pdfList .figure .content span {
    font-size: 13px;
  }
  .pdfList .figure .content .desc {
    margin-bottom: 10px;
  }
}
@media (min-width: 768px) {
  .pdfList .figure .image {
    height: 150px;
  }
  .pdfList .figure .content h4 {
    margin-top: 12px;
    font-size: 16px;
    padding-right: 20%;
  }
  .pdfList .figure .content h4 .add-date {
    font-size: 13px;
  }
  .pdfList .figure .content span {
    font-size: 13px;
  }
  .pdfList .figure .content .desc {
    min-height: 80px;
  }
}
