/* 产品展示 */
.ggh-case-case .container .row .col {
    padding: 0;
}

#case-content-item {
    position: relative;
    cursor: pointer;
    display: flex;
    justify-content: center;
}


#product-name {
    position: absolute;
    bottom: 0;
    /* left: 0; */
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 666;
    background-color: rgba(0, 0, 0, 0.3);
    color: white;
}

#case-content-item:hover #product-name {
    background-color: var(--main-color);
}

#ggh-cases-case-content {
    display: flex;
    flex-wrap: wrap;
    /* justify-content: center; */
}

/* 调节container的尺寸 */


@media screen and (max-width: 576px) {
    #case-content-item img {
        width: 100%;
        height: auto;
    }
    #product-name {
        width: 100%;
        height: 40px
    }
}

@media screen and (min-width: 576px) {
    #case-content-item img {
        width: 100%;
        height: auto;
    } #product-name {
        width: 100%;
        height: 40px
    }

}

@media screen and (min-width: 768px) {
    #case-content-item img {
        width: 352px;
        height: 234px;
    }
    #product-name {
        width: 352px;
        height: 46px
    }
}

@media screen and (min-width: 992px) {
    #case-content-item img {
        width: 307px;
        height: 205px;
    }
    #product-name {
        width: 307px;
        height: 40px
    }
}


@media screen and (min-width: 1200px) {
    #case-content-item img {
        width: 372px;
        height: 248px;
    }
    #product-name {
        width: 372px;
        height: 48px
    }
}