.home_saleGoods {
    margin-bottom: 30px;
}

/* 标题图标 */
.home_saleGoods .title .iconfont-ut {
    font-size: 20px;
}

.home_saleGoods ul {
    display: flex;
    flex: 1;
    flex-wrap: wrap;
    height: 100%;
}

.home_saleGoods ul li {
    border: 1px solid hsla(0, 0%, 83%, .3);
    border-radius: 6px;
    height: 50%;
    transform: scale(.95);
    transition: all .3s;
    width: 20%;
}

.home_saleGoods ul li:last-child {
    display: none !important;
}

.home_saleGoods ul li a img {
    height: 80px;
    margin-bottom: 20px;
    width: 80px;
}


.home_saleGoods ul li a {
    padding: 16px 12px;
    height: 100%;
    width: 100%;
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-align: center;
    align-items: center;
}

.home_saleGoods ul li a:hover {
    cursor: pointer;
    box-shadow: 2px 0 9px rgb(0 0 0 / 9%);
}

.home_saleGoods ul li a div p {
    word-break: break-all;
}

/* 小屏时 */
@media screen and (max-width: 1024px) {
    .home_saleGoods ul {
        flex-wrap: wrap;
    }

    .home_saleGoods ul li {
        width: 50%;
    }

    .home_saleGoods ul li:last-child {
        display: list-item !important;
    }
}