.urll{
    margin-top: 18px;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap
}
.fuwuqi{
    width: 280px;
    height: 120px;
    text-align: center;

}
.fuwuqi img{
    width: 70%;
    margin-top: 12px;
}
.ping-dot {
    animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}
.urlimg{
    width: 70%;
    text-align: center;
}
@keyframes ping {
    75%, 100% {
        transform: scale(1.5);
        opacity: 0;
    }
}
@media (max-width: 599px) {
    .urll{
        margin-top: 18px;
        display: flex;
        justify-content: space-around;
        flex-wrap: nowrap; /* 纵向排列 */
        flex-direction: column; /* 确保纵向排列 */
    }
    .fuwuqi{
        margin: 12px 5px 0 12px;
        width: 100%;
        height: 120px;

    }
}