.documentList .downloadBox, .documentList .category {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.contentBox {
  width: 100%;
  margin-bottom: 100px;
}

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

.documentList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 45px;
}
@media (max-width: 768px) {
  .documentList {
    margin-top: 0;
  }
}
.documentList .documentItem {
  width: 100%;
}
@media (min-width: 769px) {
  .documentList .documentItem {
    width: 50%;
  }
  .documentList .documentItem:nth-child(odd) .item {
    margin-right: 25px;
  }
  .documentList .documentItem:nth-child(even) .item {
    margin-left: 20px;
  }
}
.documentList .documentItem .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 18px 0;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  border-bottom: 1px solid #c0c1c1;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
}
@media (min-width: 1201px) {
  .documentList .documentItem:hover .item {
    padding-left: 15px;
  }
  .documentList .documentItem:hover .category {
    background-color: #bc1a20;
  }
}
.documentList .infoBox {
  padding-right: 15px;
  max-width: calc(100% - 45px);
}
.documentList .category {
  min-width: 86px;
  height: 25px;
  border-radius: 15px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #929ead;
  color: #fff;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 15px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 15px;
  margin-bottom: 10px;
}
@media (max-width: 1023px) {
  .documentList .category {
    margin-bottom: 5px;
  }
}
@media (max-width: 768px) {
  .documentList .category {
    margin-bottom: 0px;
  }
}
.documentList .title {
  font-size: 20px;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.documentList .spec {
  margin-top: 8px;
}
.documentList .downloadBox {
  width: 40px;
  height: 40px;
  display: block;
}
.documentList .downloadBox img {
  width: 100%;
  height: auto;
  display: block;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.documentList .linkWrap {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
}