.game-main {
    width: var(--game-banner-width);
    height: 560px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}
.game-main > div:nth-child(1) {
    width: 517px;
    z-index: 1;
    padding-top: 86px;
}
#game-banner-container {
    flex: 1;
    position: relative;
    overflow: hidden;
}
#game-banner-mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 80px;
    height: 100%;
    background-image: linear-gradient(
        to right,
        #fff 0 calc(100% - 80px),
        #0000 100%
    );
}
.banner-item > h1 {
    font-size: 64px;
    font-weight: bold;
}
.banner-item > h2 {
    color: #cc2424;
    font-size: 28px;
    font-weight: bold;
    font-family: 'Kelson Sans';
}
.banner-item > span {
    display: block;
    font-size: 14px;
    font-weight: bold;
    color: #707070;
    margin-top: 5px;
}
.banner-tags {
    margin-top: 12px;
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}
.banner-tags > span {
    height: 26px;
    padding: 0 11px;
    line-height: 26px;
    border-radius: 8px;
    border: 1px solid #ececec;
    color: #707070;
    font-size: 14px;
    text-align: center;
    text-wrap: nowrap;
    word-break: keep-all;
    background-color: #ececec;
}
.banner-download {
    margin-top: 70px;
}
.banner-download img {
    width: 150px;
    height: 55px;
}
.banner-switch {
    margin-top: 112px;
    display: flex;
    gap: 6px;
}
.banner-switch > div {
    position: relative;
    display: block;
    width: 61px;
    height: 10px;
    cursor: pointer;
}
.banner-switch > div > span {
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    overflow: hidden;
    width: 100%;
    height: 100%;
    border-radius: 15px;
}
.banner-switch > div > span:nth-child(1) {
    z-index: 1;
    border: 2px solid #e6e6e6;
}
/*.banner-switch > div.active > span:nth-child(1) {
    border: 2px solid #bebebe;
    background-color: #bebebe;
}*/
.banner-switch > div > span:nth-child(2) {
    z-index: 2;
    display: none;
    width: 0%;
    background-color: #bebebe;
}
.banner-bar {
    display: block!important;
}
.switch-bar {
    display: block!important;
    animation: switchBar 6s;/**/
}
@keyframes switchBar {
    0% {
        width: 10%;
    }
    100% {
        width: 100%;
    }
}

#game-banner {
    width: 100%;
    height: 100%;
}
#game-banner > div {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
}
#game-banner > div img {
    width: 100%;
    height: 100%;
}
#game-banner .banner-1 {
    left: 0;
}
#game-banner .banner-2 {
    left: 100%;
}
#game-banner .banner-3 {
    left: 200%;
}
.move-x {
    animation: moveX 0.5s;
}
@keyframes moveX {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* game content */
.game-content {
    padding: 40px 0 74px;
    background-color: #f9f9f9;
}
.game-content .title {
    width: var(--game-content-width);
    margin: 0 auto;
}
.game-list {
    width: var(--game-content-width);
    margin: 30px auto 0;
    display: flex;
    flex-wrap: wrap;
    column-gap: 15px;
    row-gap: 12px;
}
.game-list > div {
    /*width: calc(25% - 15px * 3 / 4);*/
    width: calc(33.33% - 15px * 2 / 3);
    /*height: 334px;*/
    padding: 13px;
    background-color: #fff;
    border-radius: 14px;
}
/*
.game-logo {
    overflow: hidden;
    border-radius: 8px;
    background-image: linear-gradient(
        to bottom,
        #FFDF92 0 calc(100% - 80px),
        #FFFFFF 100%
    );
}
.game-logo-1 {
    background-image: linear-gradient(to bottom,#FFDF92 0 calc(100% - 80px),#FFFFFF 100%);
}
.game-logo-2 {
    background-image: linear-gradient(to bottom,#FFB197 0 calc(100% - 80px),#FFFFFF 100%);
}
.game-logo-3 {
    background-image: linear-gradient(to bottom,#FEB7D6 0 calc(100% - 80px),#FFFFFF 100%);
}
.game-logo-4 {
    background-image: linear-gradient(to bottom,#FFAD92 0 calc(100% - 80px),#FFFFFF 100%);
}
.game-logo-5 {
    background-image: linear-gradient(to bottom,#B3E5FC 0 calc(100% - 80px),#FFFFFF 100%);
}
.game-logo-6 {
    background-image: linear-gradient(to bottom,#BEECC6 0 calc(100% - 80px),#FFFFFF 100%);
}
.game-logo-7 {
    background-image: linear-gradient(to bottom,#FF7D7D 0 calc(100% - 80px),#FFFFFF 100%);
}
.game-logo-8 {
    background-image: linear-gradient(to bottom,#C4D2FF 0 calc(100% - 80px),#FFFFFF 100%);
}
.game-logo-9 {
    background-image: linear-gradient(to bottom,#8AD2F8 0 calc(100% - 80px),#FFFFFF 100%);
}
*/
.game-logo img {
    width: 100%; /* 364px; */
    height: auto;/* 152px */
    border-radius: 8px;
    display: block;
    cursor: pointer;
}
.game-info {
    display: flex;
    justify-content: space-between;
    margin-top: 18px;
}
.game-title {
    display: flex;
    gap: 10px;
}
.game-icon {
    width: 45px;
    height: 45px;
    border-radius: 8px;
}
.game-name {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    font-weight: bold;
}
.game-name > h2 {
    font-size: 22px;
}
.game-name > date,
.game-desc {
    font-size: 12px;
    color: #919191;
}
.game-desc {
    margin-top: 16px;
}
.game-info, .game-desc {
    margin-left: 11px;
    margin-right: 11px;
}
.game-item-download {
    display: flex;
    gap: 4px;
}
.game-item-download img{
    width: 32px;
    height: 32px;
}
.game-item-play {
    width: 68px;
    height: 32px;
    border-radius: 10px;
    background-color: #fedd92;
    text-align: center;
    line-height: 32px;
    color: #161616;
    font-size: 14px;
    font-weight: bold;
}

/* media queries 
@media (max-width: 1200px) {
    .game-list > div {
        width: calc(50% - 15px * 1 / 2);
    }
}
@media (max-width: 768px) {
    .game-list > div {
        width: calc(100% - 15px * 0 / 1);
    }
} */
@media (min-width: 768px) {
    .game-banner-placeholder {
        display: none;
    }
}
@media (max-width: 768px) {
    .game-main {
        height: auto;
        flex-direction: column;
    }
    .game-main > div:nth-child(1) {
        width: auto;
        padding-top: 30px;
    }
    .banner-item > h1 {
        font-size: 42px;
    }
    .banner-item > h2 {
        font-size: 19px;
    }
    .banner-item > span {
        margin-top: 16px;
    }
    .banner-tags {
        margin-top: 8px;
    }
    .banner-tags > span {
        font-size: 9px;
        padding: 0 6px;
        height: 17px;
        line-height: 17px;
    }
    #game-banner-container {
        position: absolute;
    }
    .game-banner-placeholder {
        margin-top: 59px;
    }
    .game-banner-placeholder img {
        width: 100%;
        height: auto;
        visibility: hidden;
    }
    .banner-download {
        margin-top: 15px;
    }
    .banner-download {
        text-align: center;
    }
    .banner-switch {
        margin-top: 28px;
        margin-bottom: 28px;
        justify-content: center;
    }
    .game-content {
        padding-top: 23px;
    }
    .game-list {
        margin-top: 13px;
    }
    .game-list > div {
        width: calc(100% - 15px * 0 / 1);
    }
    .game-name > h2 {
        font-size: 18px;
    }
    .game-name > date {
        font-size: 10px;
    }
}