.image-list-section {
    width: 100%;
    padding-top: 20px;
    background-color: rgb(247,248,249);
    padding-bottom: 75px;
    position: relative;
    
}
.image-list {
    width: 1200px;
    margin: 0 auto 50px;
    min-height: auto;
    display: flex;
    justify-content: space-between;
}

.image-list .image-list-column {
    width: 32.5%;
}

.loading-box {
    margin-top: 35px;
}
.loading-box .loading-str {
    color: rgb(75,75,75);
    font-size: 14px;
    margin-left: 8px;
}

@media screen and (max-width: 960px) {
    .image-list-section {
        width: 100%;
        padding-top: 0.4rem;
        padding-bottom: 4rem;
    }
    .image-list {
        width: 96%;
        margin: 0 auto;
        min-height: auto;
        display: flex;
        justify-content: space-between;
    }
    
    .image-list .image-list-column {
        width: 49.2%;
    }
    
    .loading-box {
        margin-top: 35px;
    }
    .loading-box .loading-str {
        color: rgb(75,75,75);
        font-size: 14px;
        margin-left: 8px;
    }
}