.footer_recommend {
  background: #E7EDF3;
}
.footer_recommend .w {
  padding: 30px 0 50px;
}
.footer_recommend .w .title {
  line-height: 42px;
  font-size: 18px;
  font-weight: 400;
  color: #333;
  border-bottom: 1px solid #fff;
}
.footer_recommend .w .title > span {
  position: relative;
}
.footer_recommend .w .title > span::after {
  position: absolute;
  bottom: -13px;
  left: 0;
  display: block;
  content: "";
  width: 100%;
  height: 3px;
  border-radius: 2px;
  background-color: #05C8A8;
}
.footer_recommend .w .content {
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
}
.footer_recommend .w .content .item {
  width: 224px;
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
}
.footer_recommend .w .content .item-img {
  height: 148px;
  overflow: hidden;
}
.footer_recommend .w .content .item-img .bg {
  height: 100%;
  background: no-repeat center center;
  background-size: 224px auto;
  transition: all 0.3s ease-in-out;
}
.footer_recommend .w .content .item-img .bg:hover {
  transform: scale(1.2);
}
.footer_recommend .w .content .item:hover .desc {
  color: #fff;
  background: #06BCBA;
}
.footer_recommend .w .content .item .desc {
  line-height: 24px;
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  padding: 10px 15px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  background: #CAD0D6;
  transition: all 0.3s;
}
