.images{
    width: 100%;
    height: auto;
    overflow: hidden;
    padding: 50px 0;
}
.image-list{
    width: 100%;
    min-height: 430px;
    max-height: 900px;
    overflow: hidden;
}
.image-item{
    width: 19%;
    height: auto;
    float: left;
    margin-right: 1.25%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}
.image-item:nth-child(5n){
    margin-right: 0;
}
.item-img{
    width: 100%;
    height: 370px;
    cursor: pointer;
}
.item-img img{
    width: 100%;
    height: 100%;
}
.item-content{
    width: 100%;
    height: 40px;
    text-align: center;
    line-height: 40px;
    cursor: pointer;
}
.image-reload{
    width: 550px;
    height: 800px;
    position: fixed;
    top: 1%;
    left: 44%;
    display: none;
}
.image-reload:before{
    content: "×";
    display: inline-block;
    width: 40px;
    height: 40px;
    font-size: 28px;
    border-radius: 50%;
    position: relative;
    top: 40px;
    float: right;
    right: 0;
    background-color:  rgba(12, 84, 166, 1);
    color: #ffffff;
    text-align: center;
    line-height: 40px;
    cursor: pointer;
}
.image-reload-img{
    width: 100%;
    height: 100%;
    user-select: none;
}
.image-reload-img img{
    width: 100%;
    height: 100%;
}
@media (max-width: 600px) {
    .image-list{
        padding: 0 10px;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }
    .image-list{
        min-height: auto;
    }
    .image-item{
        width: 48%;
        margin-right: 0%;
        height: max-content;
    }
    .image-reload{
        width: 80%;
        height: 50vh;
        position: fixed;
        top: 20%;
        left: 10%;
    }
    .item-img{
        height: 260px;
    }
}

