.pic-list {
    flex-wrap: wrap;
    padding-top: 30px;
}

.pic-list li {
    position: relative;
    width: 380px;
    height: 254px;
    overflow: hidden;
    margin-right: 30px;
    margin-bottom: 30px;
}

.pic-list li a {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9;
}

.pic-list li:nth-child(3n + 3) {
    margin-right: 0;
}

.pic-list li .view-title {
    position: absolute;
    height: 40px;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: space-between;
    color: #fff;
    box-sizing: border-box;
    padding: 0 10px;
}

.pic-list li .view-title img {
    display: block;
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.pic-list li img {
    width: 100%;
    height: 254px;
}

.this_get_more {
    width: 1200px !important;
    line-height: 30px !important;
    height: auto !important;
    text-align: center;
}

/* 移动端适配 */

@media only screen and (max-width: 768px) {
    .pic-list li {
        width: 100%;
        margin-right: 0;
    }

    .pic-list {
        flex-wrap: wrap;
    }

    .pic-list li img {
        width: 100%;
    }

    .this_get_more {
        width: 100% !important;
        line-height: 3rem !important;
        height: auto !important;
        text-align: center;
    }
}