.free_game .tabs .swiper {
    border-bottom: 2px solid var(--key-color);
    padding-right: 50px;
    box-sizing: border-box;
}
.free_game .tabs .swiper-slide {
    width: auto;
}
.free_game .tabs .swiper-slide button {
    min-width: 112px;
    padding: 0 10px;
	height: 49px;
	line-height: 49px;
	color: #777;
	font-size: 16px;
	text-align: center;
	border-radius: 10px 10px 0px 0px;
	border: 1px solid var(--border);
	background: var(--white);
	box-sizing: border-box;
}
.free_game .tabs .swiper-slide button.active {
	background: var(--key-color);
	color: var(--white);
	border: 1px solid var(--key-color);
}
.free_game .tabs .controls {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    height: 100%;
}
.free_game .tabs .controls .swiper-button-prev:after,
.free_game .tabs .controls .swiper-button-next:after {
    display: none;
}
.free_game .tabs .controls .swiper-button-prev,
.free_game .tabs .controls .swiper-button-next {
    position: static;
    width: 39px;
    height: 100%;
    border: 1px solid var(--border);
    margin-top: 0;
    box-sizing: border-box;
}
.free_game .tabs .controls .swiper-button-prev {
    background: var(--white) url("../images/slide-prev.svg")no-repeat 50% 50%;
}
.free_game .tabs .controls .swiper-button-next {
    background: var(--white) url("../images/slide-next.svg")no-repeat 50% 50%;
    margin-left: -1px;
}
.free_game .tabs .controls .swiper-button-disabled {
    display: none;
}

.free_game .list {
    gap: 30px 10px;
}
.free_game .list .item {
    width: calc(25% - 8px);
}
.free_game .list .item .thumb {
    position: relative;
    height: 0;
    padding-bottom: 73%;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 10px;
}
.free_game .list .item .thumb img {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.free_game .list .item .info {
    gap: 5px;
}
.free_game .list .item .info p {
    font-size: 16px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}
.free_game .list .item .info strong {
    font-size: 18px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}




@media screen and (max-width: 1560px) {
}
@media screen and (max-width: 1024px) {
    .free_game .list .item {
        width: calc(33.333% - 7px);
    }
}
@media screen and (max-width: 768px) {
    .free_game .list .item {
        width: calc(50% - 5px);
    }

    .free_game .tabs .swiper-slide button {
        font-size: 14px;
    }
}
@media screen and (max-width: 480px) {
}
@media screen and (max-width: 380px) {

}