body {
    background-color: #0073dd;
}

.container {
    margin: 10px;
    border-radius: 10px;
}

.game-info {
    border-radius: 10px;
    width: 88vw;
    height: 50vw;
    position: relative;
    overflow: hidden;
    padding: 27px 12px
}

.game-info .bg-img {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    filter: blur(24px);
}


.game-info .game-info-box {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #1d4ed8;
    text-shadow: 2px 2px 8px #0003;
    text-align: center;
}

.game-info .game-info-box .game-info-icon {
    overflow: hidden;
    width: 120px;
    height: 120px;
    border-radius: 8px;
    border: 2px solid #fff;
    background-color: #fff;
    object-fit: contain;
}

.game-info .game-info-box .game-info-name {
    margin: 6px 0;
    font-size: 18px;
}

.game-info .game-info-box .game-info-star {
    color: #ffcc00;
    font-weight: bold;
}

.game-box {
    overflow: hidden;
    border-radius: 10px;
    background-color: #67d5ff;
}

.game-box .game-title {
    padding: 8px;
    border-bottom: 1px dotted #fff;
    color: #1d4ed8;
    font-size: 1.2rem;
}

.game-box .game-desc {
    margin: 8px;
    margin-bottom: 0;
    color: #1d4ed8;
    font-size: 12px;
    padding-bottom: 10px;
}

.play-btn {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 48px;
    margin: 12px 10px;
    border-radius: 10px;
    border-bottom: 4px solid #65a30d;
    color: #fff;
    text-align: center;
    background-color: #84cc16;
}

.play-btn .play-wat {
    width: 16px;
    margin-right: 10px;
    animation: play-amt 0.3s infinite;
}

.play-btn span {
    margin-left: 2px;
}

.play-load {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.play-btn .play-load {
    width: 16px;
    animation: spin 2s linear infinite;
}


/* 加载条 */
.pannel {
    position: relative;
}

.pannel .playbtn {
    width: 100%;
    height: 48px;
    line-height: 48px;
    color: white;
    font-size: 18px;
    border-radius: 10px;
    margin: auto;
    text-align: center;
    position: relative;
}

.pannel .playbtn .progress_t {
    position: absolute;
    z-index: 2;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    color: white;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
}

.pannel .playbtn .progress_s {
    height: 100%;
    border-radius: 10px;
    background-color: #d97d32;
}


.games {
    overflow: hidden;
    border-radius: 10px;
    background-color: #67d5ff;
}

.games .title {
    padding: 8px;
    border-bottom: 1px dotted #fff;
    color: #1d4ed8;
    font-size: 1.2rem;
    margin: 0;
}


@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes play-amt {
    0% {
        transform: translateX(-1rem);
    }

    to {
        transform: translateX(0);
    }
}

.footer-game {
    height: 12vw;
}

.scroll-container {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 12vw;
    overflow-x: auto;
    white-space: nowrap;
    background-color: #181b62;
}

.scroll-content {
    display: flex;
    padding: 1vw;
    box-sizing: border-box;
}

.scroll-content .li {
    flex-shrink: 0;
    margin-right: 10px;
    width: 11vw;
    height: 11vw;
}

.scroll-content .li img {
    width: 11vw;
    height: 11vw;
}


/* banner */
.adver_banner {
    width: 100%;
    background-color: white;
}

.grid-container {
    width: 100vw;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(12vw, 12vw));
    grid-template-rows: repeat(auto-fill, minmax(12vw, 12vw));
    grid-gap: 15px;
    padding: 5px;
    margin: 0 auto;
}

/* mini 1 * 1  */
.grid-container .mini {
    position: relative;
    grid-column-start: span 1;
    grid-row-start: span 1;
    height: 12vw;
}

/* small 2 * 2  */
.grid-container .small {
    position: relative;
    grid-column-start: span 2;
    grid-row-start: span 2;
    height: calc(12vw * 2 + 5px);
}

/* medium 3 * 3 */
.grid-container .medium {
    position: relative;
    grid-column-start: span 3;
    grid-row-start: span 3;
    height: calc(12vw * 3 + 15px);
}