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

.contentBox .leftBox {
  float: left;
  width: 64%;
}
@media (max-width: 640px) {
  .contentBox .leftBox {
    float: none;
    width: 100%;
  }
}
.contentBox .rightBox {
  float: right;
  width: 30%;
}
@media (max-width: 640px) {
  .contentBox .rightBox {
    float: none;
    width: 100%;
    margin-top: 30px;
  }
}

.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 {
  width: 100%;
}
.documentList .documentItem {
  padding: 15px 5px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.documentList .documentItem .iconDonwload {
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  width: 20px;
  height: 40px;
  fill: #fff;
}
.documentList .documentItem .title {
  font-size: 24px;
}
.documentList .documentItem .title a {
  position: relative;
  font-weight: 400;
  font-size: 20px;
  color: #000;
  cursor: pointer;
}
.documentList .documentItem .title i {
  color: #000;
}
.documentList .documentItem .text {
  font-size: 24px;
  line-height: 1.8;
  color: #474747;
}
.documentList .documentItem .downloadLink {
  display: block;
  width: 40px;
  height: 40px;
  background-color: #000;
  border-radius: 50%;
}
@media (min-width: 1181px) {
  .documentList .documentItem .downloadLink:hover {
    background-color: #c49a6d;
  }
}
.documentList .listHeader {
  position: relative;
}
.documentList .listHeader::after {
  content: "";
  position: absolute;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #474747;
}
.documentList th {
  padding: 10px;
  text-align: start;
  font-size: 18px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.documentList th:first-child {
  width: 250px;
}
.documentList th:last-child {
  width: 150px;
}
.documentList td {
  padding: 20px 10px 10px;
  text-align: start;
}
.documentList th:last-child {
  text-align: center;
}
.documentList td:last-child {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}