home-game-fine .swiper-container {
    width: 100%;
    height: 314px;
}
.home-game-fine .swiper-slide {
    position: relative;
    overflow: hidden;
}
.home-game-fine .swiper-slide img {
    width: 100%;
    height: 265px;
    object-fit: cover;
}
.home-game-fine .slide-download {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 49px;
    background: url("/static/images/home-down-bg.png") no-repeat;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px;
    box-sizing: border-box;
}
.home-game-fine .slide-title {
    color: #ffffff;
    font-size: 14px;
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-right: 10px;
}
.home-game-fine .download-btn {
    width: 100px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    background: url("/static/images/home-game-down.png") no-repeat;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}
.home-game-fine .download-btn:hover {
    background: url("/static/images/home-game-down-1.png") no-repeat;
}
.home-game-fine .download-btn.active {
    background: url("/static/images/home-game-down-2.png") no-repeat;
}
.home-game-fine .swiper-pagination-bullet {
    background: #ffffff;
    width: 14px;
    height: 14px;
    opacity: 0.4;
    transform: rotate(45deg);
    border-radius: 0;
    margin: 0 10px;
}
.home-game-fine .swiper-pagination-bullet-active {
    background: #FDA100;
    opacity: 1;
    border: 1px solid #FDA100;
}
.home-game-fine .swiper-button-next,
.home-game-fine .swiper-button-prev {
    display: none;
}
.home-game-fine .swiper-pagination {
    bottom: 49px !important;
    cursor:  pointer;
    left: 50% !important;
    transform: translateX(-50%) !important;
}