.fuxuan-related-case .related-case-wrap{
    background: #F8F8F8;
    padding: 51px 38px;
}
.related-case-wrap .related-title{
    color: #000;
    font-family: var(--font--family);
    font-size: 38px;
    font-style: normal;
    font-weight: 500;
    line-height: 78.947%; /* 78.947% */
    text-align: center;
}
.related-case-wrap .related-list{
    position: relative;
    margin-top: 42px;
}
.related-list .swiper-slide{
    position: relative;
}
.related-list .swiper-slide img{
    width: 100%;
    aspect-ratio: 43/29;
    object-fit: cover;
}
.related-list .swiper-slide .case-con{
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    padding: 21px 33px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, 0.45);
    box-shadow: 0 0 10.3px 0 rgba(0, 0, 0, 0.04);
    transition: all 0.5s;
    transform: translateY(100%);
    opacity: 0;
    visibility: hidden;
}
.case-con .case-con-title{
    color: #FFF;
    font-family: var(--font--family);
    font-size: var(--small-title-size);
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.related-list .swiper-slide:hover .case-con{
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.related-list .swiper-button-prev,
.related-list .swiper-button-next{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 38px;
    height: 74px;
    background: rgba(0, 0, 0, 0.25);
    border: none;
}
.related-list .swiper-button-prev::after,
.related-list .swiper-button-next::after{
    font-size: 16px;
    color: #fff;
}
.related-list .swiper-button-next{
    right: 0;
}
.related-list .swiper-button-prev{
    left: 0;
}
.related-list .swiper-button-prev:hover,
.related-list .swiper-button-next:hover{
    background: var(--primary-color);
}

@media screen and (max-width: 992px) {
    .related-case-wrap .related-title{
        font-size: 30px;
    }
    .fuxuan-related-case .related-case-wrap{
        padding: 30px;
    }
}
@media screen and (max-width: 768px) {
    .related-case-wrap .related-title{
        font-size: 24px;
    }
}