.documentList .documentItem, .documentList .documentItem::before, .documentList .documentItem .title i {
  -webkit-transition: all .5s;
  transition: all .5s;
}

.note {
  padding: 10px;
  font-size: 15px;
  line-height: 1.6;
  background-color: #f1f1f1;
}

.note a {
  font-size: 18px;
  color: #09f;
}

.note a:hover {
  text-decoration: underline;
}

.documentListBox {
  background-color: #fff;
  -webkit-box-shadow: 0px 3px 65px 0px rgba(0, 0, 0, 0.07);
          box-shadow: 0px 3px 65px 0px rgba(0, 0, 0, 0.07);
  border-radius: 15px;
  padding: 60px;
  position: relative;
}

@media (max-width: 1180px) {
  .documentListBox {
    padding: 20px;
  }
}

@media (max-width: 640px) {
  .documentListBox {
    background-color: transparent;
    -webkit-box-shadow: 0px 3px 65px 0px rgba(0, 0, 0, 0);
            box-shadow: 0px 3px 65px 0px rgba(0, 0, 0, 0);
    padding: 0;
    border-radius: 0px;
  }
}

.documentList .documentItem {
  padding: 15px 5px;
  border-bottom: 1px solid #ccc;
  position: relative;
}

.documentList .documentItem::before {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background-color: #2d95fc;
  bottom: 0px;
  left: 0px;
}

.documentList .documentItem:hover {
  padding: 15px;
  background-color: #fff;
}

.documentList .documentItem:hover::before {
  width: 20%;
}

.documentList .documentItem:hover .title a {
  color: #2d95fc;
}

.documentList .documentItem .title a {
  position: relative;
  padding: 8px 5px;
  font-weight: 400;
  font-size: 20px;
  color: #000;
  cursor: pointer;
  display: block;
  width: 100%;
}

.documentList .documentItem .title i {
  color: #000;
  margin: 0 10px 0 0;
}

.documentList .documentItem .text {
  font-size: 13px;
  line-height: 1.8;
  color: #474747;
}
