.documentList .documentItem .title i, .documentList .documentItem {
  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;
  }
}

.dataTitleBox {
  overflow-x: auto;
  position: relative;
  margin-top: 40px;
}
.dataTitleBox table {
  width: 100%;
  min-width: 960px;
  border-collapse: collapse;
  border: none;
}
@media (max-width: 1023px) {
  .dataTitleBox table {
    min-width: unset;
  }
}
.dataTitleBox table tr th {
  border-bottom: 1px solid #000;
}
.dataTitleBox table tr td {
  border-bottom: 1px solid #ddd;
}
.dataTitleBox table tr td, .dataTitleBox table tr th {
  padding: 10px 5px;
}
.dataTitleBox table tr td:nth-of-type(1), .dataTitleBox table tr th:nth-of-type(1) {
  min-width: 120px;
  width: 120px;
  text-align: left;
}
@media (max-width: 1023px) {
  .dataTitleBox table tr td:nth-of-type(1), .dataTitleBox table tr th:nth-of-type(1) {
    display: none;
  }
}
.dataTitleBox table tr td:nth-of-type(2), .dataTitleBox table tr th:nth-of-type(2) {
  width: 250px;
  text-align: left;
}
@media (max-width: 767px) {
  .dataTitleBox table tr td:nth-of-type(2), .dataTitleBox table tr th:nth-of-type(2) {
    width: calc(100% - 100px);
  }
}
.dataTitleBox table tr td:nth-of-type(3), .dataTitleBox table tr th:nth-of-type(3) {
  width: calc(100% - 470px);
  text-align: left;
}
@media (max-width: 767px) {
  .dataTitleBox table tr td:nth-of-type(3), .dataTitleBox table tr th:nth-of-type(3) {
    display: none;
  }
}
.dataTitleBox table tr td:nth-of-type(4), .dataTitleBox table tr th:nth-of-type(4) {
  width: 100px;
}
.dataTitleBox table td .detail {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
}

.more {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: 0 0 16px rgba(31, 61, 93, 0.1);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
}
.more .icon {
  width: 15px;
  height: 15px;
}

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

.documentList .documentItem {
  padding: 15px 5px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
@media (min-width: 1024px) {
  .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:hover .more {
    background-color: #1f3d5d;
    color: #fff;
  }
}
.documentList .documentItem .title a {
  position: relative;
  padding: 10px 0;
  font-weight: 400;
  font-size: 15px;
  color: #000;
  cursor: pointer;
}
.documentList .documentItem .title i {
  color: #000;
}
.documentList .documentItem .text {
  font-size: 13px;
  line-height: 1.8;
  color: #474747;
}