.son-main .item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 66px;
  background: #FFFFFF;
  box-shadow: 0px 2px 42px 0px rgba(220, 205, 166, 0.18);
  border: 1px solid #DCCDA6;
  margin-top: 30px;
  cursor: pointer;
  border-left: 6px solid #DCCDA6;
  padding: 0 20px;
  transition: all 0.2s linear;
}
.son-main .item .title {
  width: calc(100% - 135px);
  color: #2B2B2B;
  font-size: 18px;
line-height:26px;
}

/* Chrome/Safari */
.son-main .item .title::-webkit-scrollbar {
  height: 8px; /* 水平滚动条的高度 */
}

.son-main .item .title::-webkit-scrollbar-track {
  background-color: #f0f0f0;
  border-radius: 4px;
}

.son-main .item .title::-webkit-scrollbar-thumb {
  background-color: #888;
  border-radius: 4px;
}

.son-main .item .title::-webkit-scrollbar-thumb:hover {
  background-color: #555;
}

.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: 110px;
  color: #999999;
  font-size: 18px;
}
.son-main .item:hover {
  background-image: url(../images//list-v-item-ac.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  /* border-color: transparent !important; */
  border-left: 6px solid #0D776F !important;
  
}
.son-main .item:hover p {
  color: #0D776F !important;
}
