.son-main .item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #EFEFEF;
  cursor: pointer;
}
.son-main .item p {
  transition: all 0.3s linear;
}
.son-main .item:hover p {
  color: #0D776F;
}
.son-main .item:hover p:nth-of-type(1) {
  transform: translateX(10px);
}
.son-main .item .title {
  width: calc(100% - 140px);
  display: flex;
  align-items: center;
  color: #2B2B2B;
  font-size: 18px;
}
.son-main .item .title span {
  display: inline-block;
  width: 6px;
  height: 6px;
  border: 1px solid #0D776F;
  border-radius: 50%;
  margin-right: 10px;
}
.son-main .item .data {
  width: 130px;
  color: #999999;
  font-size: 18px;
}
