.list {
  padding-top: 0;
  background-color: #fff;
}

.list .item {
  display: block;
  overflow: hidden;
  margin: 30px 0;
}

.list .item .item-dot {
  display: inline-block;
  vertical-align: middle;
  width: 6px;
  height: 6px; 
  border-radius: 50%;
  margin-right: 15px;
  background-color: #C2CDD7;
}

.list .item .item-title {
  display: inline-block;
  vertical-align: middle;
  font-size: 16px;
  color: #666;
}

.list .item .item-time {
  float: right;
  color: #999;
}

.list .item:hover .item-title {
  color: #D90107;
}

.list .item.line {
  width: 100%;
  height: 1px;
  background-color: #E1E1E1;;
}