﻿.detail_photoList_right_item {
    width: 310px;
    height: 180px;
    box-sizing: border-box;
    border-radius: 8px;
    cursor: pointer;
    margin: 0 24px 24px 0;
    position: relative;
}


.detail_photoList_right_item_img {
    width: 310px;
    height: 180px;
    border-radius: 8px;
}

.detail_photoList_right_item_title {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 32px;
    line-height: 32px;
    font-size: 14px;
    color: #FFF;
    padding: 0 12px;
    box-sizing: border-box;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 0 0 8px 8px;
}


@media screen and (max-width: 992px) {
    :root {
        --width-min: 164px;
        --width-max: 444px;
        --width-scale: 34vw;

        --height-min: 110px;
        --height-max: 180px;
        --height-scale: 20vw;
    }

    .detail_videoList_right_box {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }


    .detail_photoList_right_item {
        margin: 10px 0;
        width: 49%;
        height: clamp(var(--height-min), var(--height-scale), var(--height-max));
        position: relative;
    }

    .detail_photoList_right_item_img {
        width: 100%;
        height: clamp(var(--height-min), var(--height-scale), var(--height-max));

    }


}