.crumbsBox {
    background: #b1b1b124;
}

.honor {
    padding: 0.8rem 0rem;
}

.honorUl {
    display: flex;
    flex-wrap: wrap;
}

.honorUl li {
    width: 23%;
    margin-right: 2.66%;
    margin-bottom: 0.35rem;
    background: #F5F5F5;
    padding: 0.12rem;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

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

.honorUl li>div {
    width: 100%;
    padding-top: 142%;
    overflow: hidden;
    position: relative;
}

.honorUl img {
    position: absolute;
    top: 0rem;
    left: 0rem;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.honorUl i {
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translate(-50%, -50%);
    z-index: 3;
    background: url(../images/viewIcon.png)no-repeat center center;
    background-size: 100% 100%;
    display: block;
    width: 0.7rem;
    height: 0.7rem;
    opacity: 0;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.honorUl li:hover i {
    left: 50%;
    opacity: 1;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

/* 分页 */
.pubPage {
    margin-top: 0.5rem;
}


/* 查看大图 弹窗 */
.honorPopup {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.5);
    padding: 0.5rem;
    display: none;
    cursor: pointer;
}

.honorPopupCon {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.honorPopupCon img {
    display: block;
    height: 100%;
    max-height: 100%;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}


@media (max-width: 800px) {
    .honorUl {
        justify-content: space-between;
    }

    .honorUl li {
        width: 48%;
        margin: 0rem 0rem 0.3rem 0rem;
    }

    .honorUl li:hover i {
        display: none !important;
    }

    .honorPopup {
        padding: 0.25rem;
    }
}