.hot-goods {
    position: relative;
    z-index: 1;
}

.hot-goods::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 134, 227, 0.90);
    z-index: -1;
}

.hot-goods .title {
    color: var(--text-color-white);
    text-align: center;
    /* font-family: var(--font-family); */
    font-size: var(--font-title-size);
    font-style: var(--font-style);
    font-weight: var(--font-title-weight);
    line-height: var(--line-height);
    text-transform: capitalize;
    padding-top: 110px;
}

.hot-goods .desc {
    color: var(--text-color-white);
    text-align: center;
    font-family: var(--font-family);
    font-size: var(--font-title-desc);
    font-style: var(--font-style);
    font-weight: var(--font-title-desc-weight);
    line-height: var(--line-height);
    text-transform: capitalize;
    margin-top: 12px;
}

.hot-goods .hot-goods-list {
    margin-top: 60px;
    padding-bottom: 127px;
    position: relative;
}

.hot-goods .swiper-slide {
    width: 370px;
    height: 520px;
    border-radius: 20px;
    background: #FFF;
    box-shadow: 0 4px 4px 0 rgba(64, 64, 64, 0.06);
    padding: 10px 34px 32px 34px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hot-goods .swiper-slide .goods-img {
    width: 302px;
    /* height: 302px; */
    aspect-ratio: 1;
    object-fit: cover;
    transition: 0.5s all ease;
}

.hot-goods .swiper-slide .goods-title {
    color: var(--text-color-black);
    text-align: center;
    font-family: var(--font-family);
    font-size: 26px;
    font-style: var(--font-style);
    font-weight: 700;
    line-height: 40px;
    text-transform: capitalize;
    flex: 1;
}

.hot-goods .swiper-slide .goods-desc {
    color: #666;
    text-align: center;
    font-family: var(--font-family);
    font-size: 16px;
    font-style: var(--font-style);
    font-weight: 400;
    line-height: 22px;
    word-wrap: break-word;
    text-transform: capitalize;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    margin-top: 16px;
}

.hot-goods .swiper-slide .goods-btn {
    margin-top: 26px;
    display: flex;
    justify-content: center;
}

.hot-goods .swiper-slide .goods-button {
    width: 180px;
    height: 50px;
    border-radius: 25px;
    background: #ECEDF2;
    color: var(--text-color-black);
    text-align: center;
    font-family: var(--font-family);
    font-size: 20px;
    font-style: var(--font-style);
    font-weight: 600;
    line-height: var(--line-height);
    text-transform: capitalize;
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    margin-top: 26px;
}

.hot-goods .swiper-slide:hover .goods-button {
    background: var(--second-color);
}

.hot-goods .swiper-slide:hover .goods-img {
    transform: scale(1.2);
}

.hot-goods .swiper-pagination {
    bottom: 80px;
}

.hot-goods .swiper-button-prev,
.hot-goods .swiper-button-next {
    width: 60px;
    height: 60px;
    margin-top: 0;
    border-radius: 60px;
    background: rgba(255, 255, 255, 0.20);
    color: #fff;
    top: 220px;
}

.hot-goods .swiper-button-next {
    right: -84px;
}

.hot-goods .swiper-button-prev {
    left: -84px;
}

.swiper-button-prev:after,
.swiper-button-next:after {
    font-size: 30px;
}

.hot-goods .swiper-button-next:hover,
.hot-goods .swiper-button-prev:hover {
    background: #fff;
    color: var(--primary-color);
}

.hot-goods .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.20);
}

.hot-goods .swiper-pagination-bullet-active {
    background-color: #fff;
}

@media screen and (max-width: 1919px) {
    .hot-goods .hot-goods-list {
        padding: 0 30px 127px 30px;
    }

    .hot-goods .swiper-slide {
        height: auto;
    }

    .hot-goods .swiper-button-prev {
        left: -35px;
    }

    .hot-goods .swiper-button-next {
        right: -35px;
    }

    .hot-goods .swiper-slide .goods-img {
        width: 100%;
        /* height: 100%; */
    }
}

@media screen and (max-width: 1200px) {
    .hot-goods .swiper-slide .goods-title {
        font-size: 24px;
        line-height: 1.5;
    }

    .hot-goods .swiper-slide .goods-button {
        font-size: 18px;
    }

    .hot-goods .swiper-button-prev,
    .hot-goods .swiper-button-next {
        width: 30px;
        height: 30px;
    }

    .swiper-button-prev:after,
    .swiper-button-next:after {
        font-size: 16px;
    }

    .hot-goods .swiper-button-prev {
        left: -10px;
    }

    .hot-goods .swiper-button-next {
        right: -10px;
    }
}