.game-table {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* grid-auto-rows: 1fr; */
    /* 自动计算行高 */
    grid-gap: 10px;
    /* 间隔 */
    box-sizing: border-box;
    padding: 15px;
}

.game-table-cell {
    position: relative;
}

.game-cover-big img {
    width: 100%;
    border-radius: 10px;
    height: auto;
    /* 自动高度，用于保持图片比例 */
    aspect-ratio: 1 / 0.6;
    object-fit: cover;
    /* 裁剪超出部分，确保图片始终充满容器 */
    object-position: center;
    /* 图片居中 */
    display: block
}

.game-cover img {
    width: 100%;
    border-radius: 10px;
    height: auto;
    /* 自动高度，用于保持图片比例 */
    aspect-ratio: 1 / 1.2;
    object-fit: cover;
    /* 裁剪超出部分，确保图片始终充满容器 */
    object-position: center;
    /* 图片居中 */
    display: block
}

.game-title-big {
    position: absolute;
    width: 100%;
    height: 60px;
    bottom: 0px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 100%);
    border-radius: 0px 0px 10px 10px;
    /* filter: blur(2px); */
    display: flex;
    align-items: center;
    justify-content: space-between;
}



.game-title-big p {
    margin: 0px;
    color: #fff;
    font-weight: bold;
}

.game-title-big img {
    width: 50px;
    border-radius: 10px;
    /* height: auto; */
    /* 自动高度，用于保持图片比例 */
    aspect-ratio: 1 / 1;
    object-fit: cover;
    /* 裁剪超出部分，确保图片始终充满容器 */
    object-position: center;
    /* 图片居中 */
    display: block
}

.game-info {
    display: flex;
    gap: 20px;
    padding: 10px;
}

#game-play-button{
    width: 45px;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
    padding: 10px;
}

.game-name :first-child {
    font-weight: bold;
    font-size: 1.2rem;
}

.game-name :last-child {
    font-weight: normal;
    font-size: 1rem;
}

.game-big {
    grid-column: span 2;
    grid-row: span 1;
    grid-auto-rows: 2fr;
}


.game-title {
    position: absolute;
    width: 100%;
    height: 60px;
    bottom: 0px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 100%);
    border-radius: 0px 0px 10px 10px;
    /* filter: blur(2px); */
    display: flex;
    align-items: center;
    justify-content: center;
}

.game-title p {
    padding: 20px 0px;
    margin: 0px;
    color: #fff;
    font-weight: bold;
    font-size: 1.2rem;
}

.recommend-text {
   display: flex;
    color: #fff;
    padding: 10px 15px;
    align-items: center;
    justify-content: space-between;
}

.recommend-text h3{
    font-size: 1.2rem;
    margin: 0px;
}

.recommend-games {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 10px;
    margin: 15px;
}

.game-big-2 {
    grid-column: span 2;
    grid-row: span 2;
}

.recommend-game img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 0.6;
    object-fit: cover;
    display: block;
    border-radius: 10px;
}

.web-desc {
    color: #fff;
    margin: 15px;
    background-color: #222233;
    border-radius: 10px;
    padding: 20px;
}