::-webkit-scrollbar {
    /* display: none; */
}

@media screen and (min-width: 769px) {
    .column.is-2 {
        width: ;
    }
}

.swiper-wrapper .swiper-slide {
    /* height: 75px !important; */
}


.column.is-2 {
    width: 20.667% !important;
}


@media (min-width: 910px) and (max-width: 1220px) {
    .column.is-2 {
        width: 26.667% !important;
    }
}

@media screen and (max-width: 910px) {
    .column.is-2 {
        width: 31.667% !important;
    }
}

@media screen and (max-width: 756px) {
    .column.is-2 {
        display: none;
    }
}

/* @media screen and (max-width: 545px) {
    .swiper-container {
        display: none;
    }
} */




.carousel-container {
    width: 80%;
    margin: auto;
    overflow: hidden;
    position: relative;
    margin-bottom: 20px;
}
.carousel {
    display: flex;
    flex-wrap: nowrap; /* 防止换行 */
    transition: transform 0.5s ease;
}
.carousel-item {
    width: 33.333%; /* 默认显示3个图片 */
    box-sizing: border-box;
    text-align: center;
    margin-right: 20px;
    flex-shrink: 0; /* 防止flex项缩放 */
}

.carousel-item p {
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    color: black;
    text-indent: 0;
}

.carousel-item img {
    width: 100%;
    display: block;
    max-height: 400px; /* 限制图片高度 */
    object-fit: cover; /* 确保图片覆盖空间且不扭曲 */
}
.carousel-controls {
    position: absolute;
    top: 38%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 1000;
}
.carousel-controls.left {
    left: 0;
}
.carousel-controls.right {
    right: 0;
}
@media (max-width: 650px) {
    .carousel-item {
        width: 100%; /* 小屏幕下每个图片占满容器 */
        margin-right: 0;
    }
}

.swiper-button-next,.swiper-button-prev {
    top: 50%;
}

.swiper-button-next {
    right: 20px;
}

.swiper-button-prev {
    left: 20px;
}


@media screen and (max-width: 769px) {
    .mobile-logo  {
        max-height: 3rem !important;
    }

    .mobile-item {
        height: 100%;
    }
}