.documentList .documentItem .title i, .documentList .documentItem {
  transition: all 0.5s ease-in-out;
}

.note {
  padding: 10px;
  font-size: 15px;
  line-height: 1.6;
  background-color: #f1f1f1;
}
.note a {
  font-size: 18px;
  color: #09f;
}
@media (min-width: 1181px) {
  .note a:hover {
    text-decoration: underline;
  }
}

.documentList .documentItem {
  position: relative;
  display: flex;
  padding: 15px 5px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .documentList .documentItem {
    flex-direction: column;
    align-items: center;
    border-bottom: none;
  }
}
@media (min-width: 1181px) {
  .documentList .documentItem:hover {
    padding: 15px;
    background-color: #fff;
  }
  .documentList .documentItem:hover h3 a,
  .documentList .documentItem:hover h3 i {
    margin: 0 5px;
    color: #c30e22;
  }
}
.documentList .documentItem .Img {
  position: relative;
  width: 200px;
  height: auto;
  aspect-ratio: 350/250;
  border-radius: 20px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .documentList .documentItem .Img {
    width: 100%;
    max-width: 350px;
    border-radius: 0 20px 0 0;
  }
}
.documentList .documentItem .Img a {
  position: absolute;
}
.documentList .documentItem .Img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.documentList .documentItem .Txt {
  flex: 1;
  padding: 15px;
}
@media (max-width: 768px) {
  .documentList .documentItem .Txt {
    width: 100%;
    max-width: 350px;
    border: 1px solid #231917;
    border-radius: 0 0 0 20px;
  }
}
.documentList .documentItem .title {
  margin-bottom: 10px;
}
.documentList .documentItem .title a {
  position: relative;
  padding: 10px 0;
  font-weight: 400;
  font-size: 20px;
  color: #000;
  cursor: pointer;
}
.documentList .documentItem .title i {
  color: #000;
}
.documentList .documentItem .text {
  font-size: 13px;
  line-height: 1.8;
  color: #474747;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}