/**
品牌特馆
 */
.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: 680px;
    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 img {
    width: 100px;
    height: 100px;
    margin-top: 20px;
}

.pptg-list ul li p {
    margin-top: 10px;
    color: #999999;
}

.img {
    max-width: 100%;
}