.son-main .item {
  margin-top: 30px;
  width: 100%;
  height: 198px;
  background-image: url(../images//list-img-item-bg.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: all 0.2s linear;
}
.son-main .item:hover {
  background-image: url(../images//list-img-item-bg-ac.png);
}
.son-main .item:hover .data {
  background-image: url(../images//list-img-item-data-ac.png);
}
.son-main .item:hover .data p {
  color: #dccda6 !important;
}
.son-main .item:hover .img img {
  transform: scale(1.1);
}
.son-main .item:hover .title p {
  color: #0d776f !important;
}
.son-main .item .data {
  transition: all 0.2s linear;
  width: 106px;
  height: 98px;
  background-image: url(../images//list-img-item-data.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.son-main .item .data p:nth-of-type(1) {
  color: #0d776f;
  font-size: 13px;
  transition: all 0.2s linear;
}
.son-main .item .data p:nth-of-type(2) {
  color: #0d776f;
  font-size: 40px;
  transition: all 0.2s linear;
}
.son-main .item .title {
  width: 65%;
  transition: all 0.2s linear;
}
.son-main .item .title .nowrap-2 {
  line-height: 27px;
  font-size: 18px;
  color: #333333;
  margin-bottom: 15px;
  transition: all 0.2s linear;
}
.son-main .item .title .nowrap-3 {
  line-height: 22px;
  font-size: 16px;
  color: #999999;
  transition: all 0.2s linear;
}
.son-main .item .img {
  width: 239px;
  overflow: hidden;
  height: 147px;
}
.son-main .item .img img {
  transition: all 0.2s linear;
}
