.qp-hot-goods{
    padding-top: 140px;
    position: relative;
}
.qp-hot-goods .title{
    color: var(--text-color-black);
    text-align: center;
    font-family: var(-font-title-family);
    font-size: var(--font-title-size);
    font-style: var(--font-style);
    font-weight: var(--font-title-weight);
    line-height: var(--line-height); /* 150% */
    max-width: 1200px;
    margin: auto;
}
.qp-hot-goods .desc{
    color: #666;
    text-align: center;
    font-family: var(--font-family);
    font-size: var(--font-desc-size);
    font-style: var(--font-style);
    font-weight: var(--font-desc-weight);
    line-height: var(--line-height); /* 150% */
    max-width: 1000px;
    padding-top: 12px;
    margin: auto;
}
.qp-hot-goods .hot-goods-list{
    margin-top: 60px;
    padding-bottom: 206px;
    position: relative;
}
.hot-goods-list .swiper-slide{
    height: unset;
    background: var(--second-color);
    padding: 30px 30px 40px 30px;
    cursor: pointer;
}
.hot-goods-list .swiper-slide:hover {
    background: var(--primary-color);
}
.hot-goods-list .swiper-slide:hover .goods-title,
.hot-goods-list .swiper-slide:hover .goods-desc{
    color: #fff;
}
.hot-goods-list .swiper-slide:hover .goods-img{
    transform: scale(1.1);
}
.hot-goods-list .swiper-slide .goods-img{
    background: #fff;
    width: 100%;
    aspect-ratio: 1;
    object-fit: contain;
    transition: all 0.5s ease;
}
.hot-goods-list .swiper-slide .goods-title{
    color: var(--text-color-black);
    font-family: var(--font-family);
    font-size: 22px;
    font-style: var(--font-style);
    font-weight: 600;
    line-height: 32px; /* 145.455% */
    text-transform: capitalize;
    margin: 30px 0 10px 0;
    -webkit-line-clamp: 6;
}
.hot-goods-list .swiper-slide .goods-desc{
    color: #666;
    font-family: var(--font-family);
    font-size: 16px;
    font-style: var(--font-style);
    font-weight: 400;
    line-height: 22px; /* 137.5% */
    margin-top: 10px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.qp-hot-goods .swiper-button-prev,
.qp-hot-goods .swiper-button-next {
    width: 36px;
    height: 36px;
    top: inherit;
    bottom: 90px;
    color: #333;
}
.qp-hot-goods .swiper-button-prev:after,
.qp-hot-goods .swiper-button-next:after{
    font-size: 24px;
}
.qp-hot-goods .swiper-button-prev{
    left: 50%;
    transform: translateX(-56px);
}
.qp-hot-goods .swiper-button-next{
    right: 50%;
    transform: translateX(56px);
}
.qp-hot-goods .swiper-button-next:hover,
.qp-hot-goods .swiper-button-prev:hover{
    color: var(--primary-color);
}
@media (max-width: 767px) {
    .qp-hot-goods {
        padding-top: 50px;
    }
    .qp-hot-goods .hot-goods-list {
        margin-top: 30px;
        padding-bottom: 100px;
    }
    .qp-hot-goods .swiper-button-prev, .qp-hot-goods .swiper-button-next {
        bottom: 30px;
    }
}