.con {
    padding-top: 0.6rem;
    padding-bottom: 0.7rem;
}

.list {
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 0.8rem;
}

.list li {
    width: 23%;
    background: #fff;
    box-shadow: 0rem 0.04rem 0.2rem rgba(0, 0, 0, 0.04);
    margin-right: 2.66%;
    cursor: pointer;
    padding: 0.22rem 0.22rem 0.3rem 0.22rem;
}

.list li:nth-child(4n) {
    margin-right: 0rem;
}

.list li:nth-child(n+5) {
    margin-top: 0.6rem;
}

.list .imgBox {
    width: 100%;
    padding-top: 77.5%;
    overflow: hidden;
    background: #F7F7F7;
    margin-bottom: 0.25rem;
    position: relative;
}

.list .imgBox img {
    position: absolute;
    top: 0rem;
    left: 0rem;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform: scale(0.8);
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.list li:hover img {
    transform: scale(0.9);
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

@media (max-width: 800px) {
    .list {
        padding-bottom: 0rem;
    }

    .list li {
        width: 100%;
        margin: 0rem;
        padding-bottom: 0.4rem;
    }

    .list li:nth-child(n+2) {
        margin-top: 0.3rem;
    }

    .list .imgBox {
        margin-bottom: 0.4rem;
    }

    .pubPage .el-pagination button {
        background: #fff !important;
    }
}