.text-list {
  padding: 20px 0;
}
.text-list > a {
  height: 50px;
  line-height: 50px;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  position: relative;
  color: #333;
  font-size: 16px;
  padding: 0 90px 0 0;
  transition: 0.3s;
}
.text-list > a > span {
  position: absolute;
  right: 0;
  top: 1px;
}
    .text-list > a::before {
        content: "";
        position: absolute;
        bottom: 0px;
        left: 0;
        width: 0;
        height: 2px;
        background-color: #033d85;
        transition: 0.5s;
    }
    .text-list > a:hover {
        color: #033d85;
    }
.text-list > a:hover::before {
  width: 100%;
}
.pic-list {
  padding: 20px 8px;
  margin: 0 -10px 0 -10px;
}
.pic-list > a {
  float: left;
  width: 240px;
  margin: 0 60px 30px 10px;
  text-align: center;
}
.pic-list > a:nth-child(3n) {
    margin-right: 0px;
}
.pic-list > a > img {
  width: 240px;
  height: 180px;
  transition: 0.3s;
}
.pic-list > a > span {
  color: #333;
  margin-top: 10px;
  font-size: 16px;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  position: relative;
  transition: 0.3s;
}
    .pic-list > a:hover > span {
        color: #033d85;
    }
