/* 移动端响应式设计 */
@media (max-width: 768px) {
    .swiper {
        height: auto;
        overflow: visible;
    }

    .swiper-wrapper {
        flex-direction: column;
        transform: none !important;
    }

    .swiper-slide {
        height: auto;
        min-height: 100vh;
        flex-shrink: 0;
    }

    .swiper-pagination {
        display: none;
    }

    .swiper-button-next,
    .swiper-button-prev {
        display: none;
    }

    .video-background {
        height: 100vh;
        object-fit: cover;
    }

    .scroll-hint {
        display: none;
    }

    .slide-content {
        /* position: relative;
        bottom: auto;
        height: auto; */
        /* min-height: auto; */
        /* background: rgba(0, 0, 0, 0.8); */
        /* padding: 30px 15px; */
        bottom: 0;
    }

    .info-section {
        gap: 20px;
        transform: none;
        opacity: 1;
        transition: none;
        flex-direction: column;
        text-align: center;
    }

    .info-item {
        transform: none;
        opacity: 1;
        transition: none;
        text-align: center;
    }

    .service-item {
        transform: none;
        opacity: 1;
        transition: transform 0.3s ease;
    }

    .service-item:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 480px) {
    .info-section {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .slide-content {
        padding: 20px 10px;
    }

    .info-item.services {
        grid-template-columns: repeat(4, 1fr);
    }

    .service-item img {
        width: 50px;
        height: 50px;
    }

    .service-item p {
        font-size: 10px;
    }
}