/* 游戏特色轮播图样式 */
.tese_sec {
    position: relative;
    padding: 60px 0;
    background: #fff;
    overflow: hidden;
}

.tese_sec .wrap {
    width: 1200px;
    margin: 0 auto;
    position: relative;
}

.tt_tese {
    display: block;
    width: 200px;
    height: 60px;
    margin: 0 auto 50px;
    background: url('../image/tit_04_c65e6675.png') no-repeat center;
    background-size: contain;
}

.tese-wrap {
    position: relative;
    width: 100%;
    height: 450px;
}

.tese-part {
    width: 100%;
    height: 100%;
}

.tese-part .swiper-slide {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.tese-part .swiper-slide img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.tese-part .swiper-slide .sw_big {
    z-index: 1;
}

.tese-part .swiper-slide .sw_small {
    z-index: 2;
    opacity: 0;
}

.tese-part .swiper-slide-active .sw_small {
    opacity: 1;
    animation: fadeIn 0.5s ease;
}

.tese-part .swiper-slide .mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 3;
}

/* 轮播图左右箭头 */
.tese-swiper-prev,
.tese-swiper-next {
    position: absolute;
    top: 50%;
    margin-top: -30px;
    width: 60px;
    height: 60px;
    z-index: 10;
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0.5);
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.tese-swiper-prev {
    left: 20px;
    background-image: url('../image/arrow_l_a2728ee3.png');
}

.tese-swiper-next {
    right: 20px;
    background-image: url('../image/arrow_r_6395f93c.png');
}

.tese-swiper-prev:hover,
.tese-swiper-next:hover {
    background-color: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}

/* 轮播图分页器 */
.tese-pagination {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 10;
}

.tese-pagination .swiper-pagination-bullet {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 0 8px;
    background: #fff;
    opacity: 0.6;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tese-pagination .swiper-pagination-bullet-active {
    width: 30px;
    border-radius: 6px;
    opacity: 1;
    background: #ff6600;
}

/* 动画效果 */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(1.2);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* 响应式设计 */
@media (max-width: 1240px) {
    .tese_sec .wrap {
        width: 90%;
    }
    
    .tese-wrap {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .tese_sec {
        padding: 40px 0;
    }
    
    .tt_tese {
        margin-bottom: 30px;
    }
    
    .tese-wrap {
        height: 300px;
    }
    
    .tese-swiper-prev,
    .tese-swiper-next {
        width: 40px;
        height: 40px;
        margin-top: -20px;
    }
    
    .tese-pagination .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
        margin: 0 4px;
    }
    
    .tese-pagination .swiper-pagination-bullet-active {
        width: 20px;
    }
}