/**
品牌特馆
 */
.pptg {
    padding: 20px 0px 50px 0px;
}

/**
列表
 */

.pptg-list {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 100px;
}

.pptg-list ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 均分4份 */
    gap: 40px; /* 设置间距为10px */
    justify-content: center;
}

.pptg-list ul li {
    width: 620px;
    height: 430px;
    background: #333333;
    border-radius: 10px 10px 10px 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.pptg-list ul li a{
    display: flex;
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.pptg-list ul li img {
    width: 100%;
    height: 100%;
}

.pptg-list ul li p {
    text-align: center;
    color: #fff;
    position: absolute;
    bottom: 0px;
    left: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 50px;
    background: rgba(0, 0, 0, 0.5);
    line-height: 50px;
    font-size: 15px;
}
