/* GAME独立样式 */

.categoryBox {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    background: #ffffff;
    padding: 0.24rem;
    gap: .12rem;
}

.categoryBox a {
    background-color: #f5f5f5;
    border-radius: 0.12rem;
    color: #333;
    text-align: center;
    font-size: 0.28rem;
    line-height: 0.64rem;
    width: calc(25% - .09rem);
}

.categoryBox a.active {
    background-color: #07c5b9;
    color: #ffffff;
}

.pageList {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    width: 100%;
    padding: 0.24rem;
}

.pageList a {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .26rem;
    color: #666;
    background-color: #f5f5f5;
    border-radius: .14rem;
    height: 36px;
    min-width: 36px;
    margin-right: .12rem;
    padding: 0 0.2rem;
}

.pageList a:last-child {
    margin-right: 0;
}

.pageList a.color {
    background-color: rgb(7 197 185 / 9%);
    color: #07c5b9;
}

.pageList a.active {
    background-color: #07c5b9;
    color: #ffffff;
}
