

.indexPage{
    width: 100%;
    min-height: 100vh;

    background: url(./Public/image/fullpage.jpg) no-repeat;
        background-size: cover;
}
.section {
    width: 73%;
    margin: 0 auto;
}

.home {
    width: 100%;
    height: 1080px;
}
.news{
    margin-top: 40px;
    height: 633px;
}
.news .content {
    width: 76%;
    margin: 150px auto 0;
    display: flex;
    justify-content: center;
    gap: 5px;
    align-items: flex-start;
}

.news .content .swiper {
    flex: 1.1;
}

.news .content .swiper img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.news-tab {
    flex: 0.8;
    width: 100%;
    background: url(./Public/image/news-tab-bg.png) no-repeat;
    background-size: cover;
}

.tab-buttons {
    display: flex;
    border-bottom: 2px solid #41e7d2;
    width: 90%;
    margin: 0 auto;
}

.tab-btn {
    padding: 0 25px;
    line-height: 79px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 18px;
    color: #000000;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    font-weight: 600;
}



.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: 26px;
    right: 5px;
    width: 38px;
    height: 12px;
    background: linear-gradient(to right, #41e7d2, #41d5e7);
    z-index: -1;
}


.tab-content {
    margin: 25px 0 40px 0;
        min-height: 198px;
}

.tab-pane {
    display: none;
    animation: fadeIn 0.5s;
}
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tab-pane.active {
    display: block;
}



.tab-pane a p.title {
    font-size: 16px;
    color: #fff;
    background: linear-gradient(to right, #41e7d2, #41d5e7);
    display: inline-block;
    padding: 0 5px;
    line-height: 22px;
}

.tab-pane .li-con {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.tab-pane .li-con p {
    color: #000;
    font-size: 15px;
    line-height: 34px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;

}

.tab-pane .li-con span {
    font-size: 12px;
    line-height: 34px;
    flex: 0.3;
}


.news-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.news-list li {
margin: 0 auto 15px;
    background: url(./Public/image/news-tab-list-bg.png) center no-repeat;
    width: 90%;
    background-size: cover;
    padding: 0px 15px;
}

.games {
    margin: 200px auto;
    height: 870px;
}

.games .content {
    width: 1200px;
    margin: 50px auto 0;
}

.games-swiper-container {
    width: 100%;
    padding: 20px 0;
    position: relative;
}

.games-swiper {
    width: 100%;
    overflow: hidden;
    padding: 0 50px;
    box-sizing: border-box;
}

.games-swiper .swiper-slide {
    width: 33.33%;
    height: auto;
    min-height: 200px;
    transition: transform 0.7s cubic-bezier(0.25, 0, 0.1, 1), opacity 0.5s ease;
    transform: scale(0.8);
    opacity: 0.6;
    z-index: 1;
}

.games-swiper .swiper-slide-active {
    transform: scale(1);
    opacity: 1;
    z-index: 20;
}

.games-swiper .swiper-slide-prev {
    transform-origin: right center;
    transform: scale(0.8) translateX(88%);
    z-index: 10;
    opacity: 0.6;
}

.games-swiper .swiper-slide-prev img {
    clip-path: inset(0 20% 0 0);
}

.games-swiper .swiper-slide-next {
    transform-origin: left center;
    transform: scale(0.8) translateX(-88%);
    z-index: 10;
    opacity: 0.6;
}

.games-swiper .swiper-slide-next img {
    clip-path: inset(0 0 0 20%);
}

@media (max-width: 1400px) {
    .games .content {
        width: 90%;
    }

    .games-swiper .swiper-slide {
        width: 40%;
    }
}

@media (max-width: 768px) {
    .games-swiper {
        padding: 0 20px;
    }

    .games-swiper .swiper-slide {
        width: 80%;
    }
}

.games-swiper .swiper-slide img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.games-swiper .swiper-button-next,
.games-swiper .swiper-button-prev {
    width: 175px;
    height: 176px;
    transform: translateY(-15%);
}

.games-swiper .swiper-button-next{
    background: url(./Public/image/games-swiper-btn-right.png)
}
.games-swiper .swiper-button-prev {
     background: url(./Public/image/games-swiper-btn-left.png)
}







@media (min-width: 2560px) {
    .home{
        height: 1440px;
    }
    .news{
        height: 750px;
    }
    .games {
    margin: 200px auto;
    height: 830px;
}
    .tab-content {
    min-height: 315px;
}
}

