* {
    padding: 0;
    margin: 0;
    white-space: nowrap;
    box-sizing: border-box;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

#app {
    width: 100%;
    height: 100vh;
    padding: 20px;
    box-sizing: border-box;
}

#main {
    width: 80%;
    height: inherit;
    overflow: scroll;
}

.game-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    grid-gap: 20px;
    align-items: center;
}

.font-25 {
    font-size: 25px;
}

.font-small {
    font-size: small;
}

.font-bold {
    font-weight: bold;
}

.font-light {
    font-weight: lighter;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.no-wrap {
    white-space: nowrap;
}

.flex {
    display: flex;
}

.flex-grow-1 {
    flex-grow: 1;
}

.flex-middle {
    align-items: center;
}

.flex-left {
    justify-content: flex-start;
}

.flex-center {
    justify-content: center;
}

.flex-right {
    justify-content: flex-end;
}

.height-inherit {
    height: inherit;
}

.height-50 {
    height: 50%;
}

.pointer {
    cursor: pointer;
}

.w-120 {
    width: 120px;
}

.w-100 {
    width: 100%;
}

.h-100 {
    height: 100%;
}

.ml-10 {
    margin-left: 10px;
}

.mr-10 {
    margin-right: 10px;
}

.mr-20 {
    margin-right: 20px;
}

.mt-5 {
    margin-top: 5px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-10 {
    margin-bottom: 10px;
}

.el-avatar {
    img {
        object-fit: cover !important;
        width: 50px;
    }
}

.p-20 {
    padding: 20px;
}

[v-cloak] {
    display: none;
}

::-webkit-scrollbar {
    width: 0;
    height: 0;
}

.van-tabs__content {
    height: calc(100vh - 90px);
    overflow: hidden;

    .van-tab__pane {
        height: 100%;
        overflow: auto;
    }
}

.gamelist {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 10px;
}