.pglay-game-container {
    margin: 10px 1rem;
}

.pglay-game-title {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    /* margin: 10px 0px; */
    background-color: #fff;
    border-radius: 10px;
    
}

.pglay-game-title p {
    font-size: 1rem;
    color: #000;
    padding: 10px;
    font-weight: bold;
    margin: 0px;
}

.pglay-game-title img {
    width: 30px;
    height: 30px;
    display: block;
}

.pglay-game-item-div {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* Two columns layout */
    gap: 15px;
    /* Gap between items */
    padding: 10px 0px ;
}

.pglay-nav-game-info {
    display: flex;
    justify-content: start;
    align-items: center;
    width: 100%;
    min-height: 35px;
    bottom: 0px;
    /* background: linear-gradient(180deg, rgba(255, 255, 255,0) 0%, #000 100%); */
    border-radius:0px 0px 10px 10px;
    position: absolute;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 1%, rgba(0, 0, 0, 0.6) 100%);
}


.pglay-nav-game-info p {
    color: #fff;
    margin: 0px;
    font-size: 0.8rem;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* 限制为 3 行 */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 5px;
}

.recommend {
    margin: 10px 1rem;
}

.recommend-content {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* Two columns layout */
    gap: 0.5rem;
    /* Gap between items */
}

.pglay-common-recommend-title {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    /* box-shadow: #b6e05d 5px 5px 5px; */
    border-radius: 10px;
    padding: 10px 0px;
    background-color: #fff;
}

.pglay-common-recommend-title p {
    
    font-size: 0.8rem;
    color: #000;
    padding:0px  10px;
    font-weight: bold;
    margin: 0px;
    text-align: center;

}

.pglay-common-recommend-title-left{
    display: flex;
    align-items: center;
}

.pglay-common-recommend-title-left p{
    color: #000;
    font-size: 1rem;
}

.pglay-common-recommend-title img {
    width: 20px;
    height: 20px;
}