/*列表布局*/
.gallery {
    overflow: hidden;
    height: 525px;
    display: flex;
    flex-wrap: wrap;
    &::after {
        content: '';
        flex-grow: 999999999;
    }
}

.gallery div {
    position: relative;
    flex-grow: 1;
    margin: 5px;

    height: 250px;
}

.gallery img {
    height: 250px;
    object-fit: cover;
    max-width: 100%;
    min-width: 100%;
    vertical-align: bottom;
}

/*结束*/
.pressing {
    text-align: center;
    position: fixed;
    bottom: 78px;
    left: 0;
    right: 0;
    z-index: 999;
    width: 51%;
    border: 2px solid #fff;
    border-radius: 50px;
    padding: 7px;
    margin: 0 auto;
}

.pressing p {
    font-size: 1.4rem;
    color: #fff;
}

.gallery div:hover .ljxzk {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 1;
    display: block;
    width: 80px;
    height: 40px;
    background: #d7000f;
    color: #fff;
    line-height: 40px;
}

.gallery div .ljxzk {
    display: none;
}


.gallery div:hover .ljxzk i {
    padding-left: 12px;
    display: inline-block;
    width: 22px;
    height: 36px;
    background: url(../images/common_new.png) -2px -452px no-repeat;
    vertical-align: -10px;
}

.gallery div:hover .actived {
    background: url(../images/common_new.png) 7px -637px no-repeat #fff !important;
}


.gallery div:hover .ljsck {
    position: absolute;
    top: 10px;
    right: 97px;
    z-index: 1;
    display: block;
    width: 40px;
    height: 40px;
    background: url(../images/common_new.png) 3px -35px no-repeat #fff;
    cursor: pointer;
}

.gallery div:hover .tup-title {
    opacity: 1;
}

.tup-title {
    position: absolute;
    left: 0;
    right: 0px;
    bottom: 0px;
    padding: 10px 10px 8px 6px;
    opacity: 0;
    transition: .25s;
    background: linear-gradient(to top, rgba(0, 0, 0, .6) 0, rgba(0, 0, 0, 0) 100%);
    font-size: 14px;
    color: #fff;
}