.list_t {
  margin-top: -15px;
  margin-bottom: -15px;
}
.list_t li {
  line-height: 1;
  position: relative;
  padding: 15px 0px 15px 20px;
}
.list_t li::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 0px;
  width: 5px;
  height: 5px;
  background-color: #00407f;
  border-radius: 50%;
}
.list_t li a {
  transition: all 0.3s;
  display: block;
  width: calc(100% - 105px);
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  font-size: 17px;
  font-weight: normal;
  color: #333;
}
.list_t li a:hover {
  color: #00407f;
}
.list_t li span {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 0px;
  font-size: 17px;
  font-weight: normal;
  color: #999;
}
.list_t li:nth-child(5n) {
  margin-bottom: 50px;
  position: relative;
}
.list_t li:nth-child(5n)::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: 1px;
  bottom: -25px;
  background-color: #e3e3e3;
}
@media (max-width: 600px) {
  .list_t li a {
    width: 100% !important;
  }
  .list_t li span {
    display: none;
  }
}
