/* 全局样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body,
html {
    width: 100%;
    height: 100%;
}

/* 容器样式 */
.container {
    /* max-width: 1200px; */
    margin: 0 auto;
    /* padding: 2rem; */
}

/* 标题样式 */
h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #222;
}

/* 段落样式 */
p {
    margin-bottom: 2rem;
    color: #666;
}

/* 游戏排名区域样式 */
.game-ranking {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    overflow: scroll;
}


/* 单个游戏项样式 */
.game-item {
    display: inline-block;
    width: 100%;
    vertical-align: top;
}


/* 排名信息样式 */
.rank {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 1rem;

}

.text {
    padding: 20px;
    background: #000;
    color: #fff;
}

.text div {
    white-space: pre-wrap;
}

.text * {
    color: #fff;
}

.rank>.tag {
    display: inline-block;
    height: 60px;
    width: 155px;
    background: #BCBCBC;
    color: #636363;
    font-size: 40px;
    padding: 0.3rem 0.6rem;
    border-radius: 5px;
    font-weight: 400;
    border-bottom-right-radius: 40%;
}

.rank>.gold {
    background: #FFD700;
    color: white;
}

.rank>.silver {
    background: #6AA1C1;
    color: white;
}

.rank>.bronze {
    background: #CD7F32;
    color: white;
}

.date {
    font-size: 0.8rem;
    color: #000;
}

/* 游戏图片样式 */
.game-item img {
    display: block;
    margin: 0 auto;
    width: 100%;
    max-width: 210px;
    object-fit: cover;
}

/* 游戏信息区域样式 */
.game-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid #e0e0e0;
}

/* 评分区域样式 */
.rating {
    display: flex;
    align-items: center;
    width: 100%;
}

.progress-bar {
    width: 80%;
    display: block;
    height: 10px;
    background-color: #e0e0e0;
    border-radius: 22px;
    margin-right: 0.5rem;
    position: rel ative;
    margin: 0 auto;
}

.progress {
    height: 100%;
    background-color: #000;
    border-radius: 5px;
}

.score {
    font-size: 1rem;
    font-weight: bold;
    color: #000;
}

/* 评测结论区域样式 */
.conclusion {
    position: relative;
    padding: 1rem;
}

.conclusion h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #222;
}

.conclusion p {
    margin-bottom: 1rem;
    color: #666;
}

.conclusion ul {
    list-style-type: none;
    margin-bottom: 1rem;
}

.conclusion li {
    margin-bottom: 0.3rem;
    color: #555;
}

/* 了解更多链接样式 */
.read-more {
    font-size: 50px;
    display: block;
    text-align: right;
    color: #000;
    text-decoration: none;
    position: absolute;
    right: 30px;
    bottom: 20px;
}

.read-more:hover {
    color: #0056b3;
}


@media screen and (max-width: 800px) {
    .game-ranking {
        grid-template-columns: repeat(1, 1fr);
    }

    .conclusion {
        font-size: 3rem;
    }

    .conclusion h3 {
        font-size: 4rem;
    }
    .rank .date{
        font-size: 2.5rem;
    }

    .score{
        font-size: 3rem;
        margin-right: 40px;
    }

    .read-more{
        font-size: 6rem;
    }

    .text h1{
        font-size: 4rem;
    }
    .text div{
        font-size: 2rem;
    }

}