.dynamic .item {
  width: 100%;
  height: 69px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #efefef;
  cursor: pointer;
}
.dynamic .item .nowrap {
  width: 80%;
  font-size: 16px;
  color: #333;
  transition: all 0.3s;
}
.dynamic .item .nowrap::before {
  content: "";
  width: 4px;
  height: 4px;
  border: 2px solid #B5130A;
  display: inline-block;
  transform: rotate(45deg);
  margin: 0 10px 0 2px;
}
.dynamic .item .data {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
}
.dynamic .item .data p:nth-of-type(1) {
  font-size: 14px;
  font-weight: 400;
  color: #999999;
}
.dynamic .item:hover .nowrap {
  color: #B5130A;
  transform: translateX(10px);
}
