.fuxuan-exhibition{
    margin-top: 84px;
}
.fuxuan-exhibition .exhibition-list{
    margin-top: 34px;
    display: grid;
    grid-template-columns: repeat(6,1fr);
    grid-template-rows: repeat(3,260px);
    column-gap: 12px;
    row-gap: 8px;
}
.exhibition-list img{
    grid-column: span 2;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.exhibition-list img:first-child,
.exhibition-list img:nth-of-type(2){
    grid-column: span 3;
}
.exhibition-list img:nth-of-type(3){
    grid-row: span 2;
}
.exhibition-list img:last-child{
    grid-column: span 4;
}

.fuxuan-exhibition .exhibition-moblie-list{
    margin-top: 34px;
    display: none;
}
.fuxuan-exhibition .exhibition-moblie-list .swiper-slide{
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}
.fuxuan-exhibition .exhibition-moblie-list img{
    width: 100%;
    height: auto;
    object-fit: cover;
}

@media screen and (max-width: 1200px) {
    .fuxuan-exhibition .exhibition-list{
        grid-template-rows: repeat(3,200px);
    }
    .fuxuan-exhibition{
        margin-top: 50px;
    }
}
@media screen and (max-width: 768px) {
    .fuxuan-exhibition .exhibition-list{
        display: none;
    }
    .fuxuan-exhibition .exhibition-moblie-list{
        display: block;
    }
}