.qywh_box {
    background: #f6f6f6;
    padding-top: 60px;
    padding-bottom: 60px;
}

.qyconts{
    display: flex;
    flex-wrap: wrap;
}
.qyitem{
    width: 25%;
    padding: 20px 15px;
    text-align: center;
}
.qyitem img{
    width: 120px;
    transition: all 0.4s;
}
.qyitem p{
  text-align: center;  
  line-height: 2;
  font-size: 16px;
  transition: all 0.4s;
}

.qyitem:hover img{
  transform:scaleX(-1);
}
.qyitem:hover p{
    color: #df002c;
    font-weight: bold;
}

@media screen and (max-width: 580px){
    .qyitem{
        width: 50%;
    }
}