main {
    background-color: #fff;
    padding: 10px;
    display: flex;
    gap: 15px;

    --main_right_size: 300px;
}

.big-box {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.main_left_box {
    width: calc((100% - var(--main_right_size) - 10px));
    flex-grow: 1;
}

.main_left_list,
.main_right_list {
    margin-bottom: 20px;
}

.main_left_title {
    color: #0088bd;
    font-size: 26px;
    margin: 6px 0 12px;
    font-weight: 550;
}

.main_lift_top_game {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.main_lift_top_game .img-box::before {
    padding-top: 50%;
}

.main_lift_top_game .left_text_box {
    position: absolute;
    width: 100%;
    min-height: 30%;
    background-color: rgba(0, 0, 0, .4);
    bottom: 0;
    left: 0;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 550;
    font-size: 15px;
    padding: 0 10px;
    line-height: 1.1;
}

.main_left_center_game .img-box {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 3px 0 #959795;
    transition: .3s;
}

.main_left_center_game:hover .img-box {
    transform: scale(1.0425531915) translate3d(0, -4px, 0);
}

.main_left_center_game .img-box::before {
    padding-top: 68%;
}

.main_left_center_game .left_center_text_box {
    font-size: 14px;
    font-weight: 550;
    color: #3c3c3c;
    padding: 10px 0 8px;
    text-align: center;
}

.main_left_bottom_big_box {
    gap: 24px;
}

.main_left_bottom_game {
    display: flex;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .24);
    transition: .3s;
    color: #0088bd;
    align-items: center;
}

.main_left_bottom_game:hover {
    transform: scale(1.04) translateY(-4px);
}

.main_left_bottom_game .img-box {
    height: fit-content;
    width: 40%;
    min-width: 40%;
    max-width: 40%;
}

.main_left_bottom_game .img-box::before {
    padding-top: 68%;
}

.main_left_bottom_game p {
    font-size: 15px;
    padding-left: 10px;
    line-height: 1.1;
}

.main_right_box {
    width: var(--main_right_size);
    position: sticky;
    top: 20px;
    margin-bottom: auto;
}

.main_right_box .main_right_title {
    background-color: #0088bd;
    color: #fff;
    font-size: 15px;
    padding: 9px 15px;
    font-weight: 550;
    border-radius: 5px 5px 0 0;
    box-shadow: 0 1px 1px rgba(0, 0, 0, .2);
}

.right_big_box {
    background-color: #f8f8f8;
    padding: 15px;
    border-radius: 0 0 5px 5px;
}

.main_right_top_big_box a {
    color: #3c3c3c;
    font-size: 13px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.main_right_top_big_box a:hover {
    color: #00a8e1;
}

.main_right_bottom_big_box {
    padding: 0px;
}

.main_right_bottom_big_box a {
    width: 100%;
    display: flex;
    padding: 5px 10px 8px;
    color: #0088bd;
    align-items: center;
    font-size: 13px;
    gap: 15px;
    line-height: 1.2;
}

.main_right_bottom_big_box a:hover {
    background-color: #dfedf2;
    color: #00a8e1;
}

.main_right_bottom_big_box a .img-box {
    width: 30%;
    min-width: 30%;
    max-width: 30%;
    border-radius: 6px;
    overflow: hidden;
    height: fit-content;
}

.main_right_bottom_big_box a .img-box::before {
    padding-top: 68%;
}

@media screen and (min-width:770px) {
    .main_lift_top_game {
        width: calc((100% - 12px) / 2);
    }

    .main_left_center_game {
        width: calc((100% - 48px) / 5);
    }

    .main_left_bottom_game {
        width: calc((100% - 48px) / 3);
    }

    .main_right_top_big_box a {
        width: calc((100% - 12px) / 2);
    }
}

@media screen and (max-width:769px) {
    main {
        flex-direction: column-reverse;
    }

    .main_lift_top_game {
        width: 100%;
    }

    .main_left_bottom_big_box {
        gap: 10px;
    }

    .main_left_center_game {
        width: calc((100% - 12px) / 2);
    }

    .main_left_bottom_game {
        width: 100%;
    }

    .main_left_title {
        font-size: 22px;
    }

    .main_left_box {
        width: 100%;
    }

    .main_right_box {
        width: 100%;
        position: relative;
    }

    .main_right_top_big_box a {
        min-width: calc(50% - 6px);
        max-width: calc(50% - 6px);
    }
}