/* 网格-图集框架 */
.post-9.post-list ul.b2_gap {
    display: flex;
    flex-flow: wrap;
    align-items: stretch;
}

.post-9.post-list .dahai-gallery-list-item > .item-in.box {
    overflow: hidden;
    padding: 0;
    background: #fff;
    transition: transform .25s ease, box-shadow .25s ease;
}

.post-9.post-list .dahai-gallery-list-item > .item-in.box:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 26px rgba(0, 0, 0, .10);
}

.post-9.post-list .dahai-gallery-grid {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.post-9.post-list .dahai-gallery-grid::before {
    content: "";
    display: block;
    padding-top: 68%;
}

.post-9.post-list .dahai-gallery-left {
    position: absolute;
    inset: 12px;
    display: grid;
    grid-template-columns: 3fr 2fr;
    grid-template-rows: repeat(3, 1fr);
    gap: 3px;
}

.post-9.post-list .dahai-gallery-cell {
    position: relative;
    display: block;
    overflow: hidden;
    background: #f5f6f7;
}

.post-9.post-list .dahai-gallery-cell-1 {
    grid-column: 1;
    grid-row: 1 / 4;
}

.post-9.post-list .dahai-gallery-cell-2 {
    grid-column: 2;
    grid-row: 1;
}

.post-9.post-list .dahai-gallery-cell-3 {
    grid-column: 2;
    grid-row: 2;
}

.post-9.post-list .dahai-gallery-cell-4 {
    grid-column: 2;
    grid-row: 3;
}

.post-9.post-list .dahai-gallery-cell .post-thumb {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .32s ease, filter .32s ease;
}

.post-9.post-list .dahai-gallery-list-item > .item-in.box:hover .dahai-gallery-cell .post-thumb {
    transform: none;
    filter: none;
}

.post-9.post-list .dahai-gallery-info {
    padding: 0px 14px 13px;
}

.post-9.post-list .dahai-gallery-info h2 {
    margin: 0 0 10px;
    font-size: 16px;
    line-height: 1.45;
    font-weight: 700;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    line-clamp: 1;
}

.post-9.post-list .dahai-gallery-info h2 a {
    color: inherit;
}

.post-9.post-list .dahai-gallery-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    min-height: 28px;
}

.post-9.post-list .dahai-gallery-cat {
    min-width: 0;
}

.post-9.post-list .dahai-gallery-cat .post-list-cat {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0;
    padding: 0;
    background: transparent;
    box-shadow: none;
}

.post-9.post-list .dahai-gallery-cat .post-list-cat-item {
    display: inline-flex;
    align-items: center;
    max-width: 100%;
    padding: 4px 8px;
    line-height: 1.25;
    background: rgba(40, 130, 197, .09);
    border: 0;
    box-shadow: none;
}

.post-9.post-list .dahai-gallery-count {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    gap: 4px;
    color: #777;
    font-size: 12px;
    line-height: 1.25;
}

.post-9.post-list .dahai-gallery-count i {
    font-size: 13px;
}

body.night .post-9.post-list .dahai-gallery-list-item > .item-in.box {
    background: var(--beijing);
}

body.night .post-9.post-list .dahai-gallery-grid,
body.night .post-9.post-list .dahai-gallery-cell {
    background: rgba(255, 255, 255, .06);
}

body.night .post-9.post-list .dahai-gallery-count {
    color: rgba(255, 255, 255, .72);
}

body.night .post-9.post-list .dahai-gallery-cat .post-list-cat-item {
    background: rgba(255, 255, 255, .08);
}
