.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;
}
.span {
    float: right;
}
.text-list > a::before {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #b10703;
  transition: 0.5s;
}
.text-list > a:hover {
  color:#b10703;
}
.text-list > a:hover::before {
  width: 100%;
}
.pic-list {
  padding: 20px 0;
  margin: 0 -10px 0 -10px;
}
.pic-list > a {
  float: left;
  width: 240px;
  margin: 0 10px 30px 10px;
  text-align:center;
}
.pic-list > a > img {
  width: 240px;
  height: 280px;
  transition: 0.3s;
}
.pic-list > a > span {
  color: #333;
  font-size: 16px;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  position: relative;
  transition: 0.3s;
}
.pic-list > a:hover > span {
  color:#b10703;
}