.ask-like-collection {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    gap: 20px;
    
}

.ask-like-collection .collection-swiper-box {
    width: 53%;
    padding: 0 30px;
     user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

.ask-like-collection .heading-box {
    width: 40%;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.ask-like-collection .heading-box .content {
    margin-top: 30px;
}

.ask-like-collection .head-left,
.ask-like-collection .card-left {
    text-align: start;
}

.ask-like-collection .head-center,
.ask-like-collection .card-center {
    text-align: center;
}

.ask-like-collection .head-right,
.ask-like-collection .card-right {
    text-align: end;
}

.ask-like-collection .swiper-slide .col-title {
    font-weight: 500;
}

/* .ask-like-collection .swiper-slide .swiper-media {
    display: inline-block;
} */

.ask-like-collection .original_proportion .swiper-slide .swiper-media img {
    width: 100%;
    height: auto;
     object-fit: cover;
}

.ask-like-collection .one .swiper-slide .swiper-media {
    width: 100%;
    padding-top: 100%;
}

.ask-like-collection .one .swiper-slide .swiper-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ask-like-collection .round .swiper-slide .swiper-media img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.ask-like-collection .cus-swiper-button-prev,
.ask-like-collection .cus-swiper-button-next {
    color: var(--color-text);
    user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    opacity: 0.5;
    cursor: pointer;
    width: 24px;
    height: 24px;
    /* ⭐ 移动端点击高亮去除 */
    -webkit-tap-highlight-color: transparent;

}

.ask-like-collection .cus-swiper-button-next svg,
.ask-like-collection .cus-swiper-button-prev svg {
    width: 100%;
    height: 100%;
}

.ask-like-collection .cus-swiper-button-next {
    transform: translate3d(-30px);
}

.ask-like-collection .cus-swiper-button-next svg {
    transform: rotate(180deg);
}

.ask-like-collection .swiper-wrapper-container {
    position: relative;
    /* 为按钮创建定位基准 */
    width: 100%;
    /* 或你需要的宽度 */
}

/* 按钮定位到外层容器两侧的外部 */
.ask-like-collection .cus-swiper-button-prev {
    position: absolute;
    left: 0;
    /* 调整到容器左侧外部 */
    top: 50%;
    transform: translate3d(-30px, -100%, 0);
}

.ask-like-collection .cus-swiper-button-next {
    position: absolute;
    right: 0;
    /* 调整到容器右侧外部 */
    top: 50%;
    transform: translate3d(30px, -100%, 0);
}

.ask-like-collection .swiper-button-disabled {
    display: none;
}

.ask-like-collection .swiper-pagination {
    color: rgb(var(--color-text));
    display: none;
}
.ask-like-collection .col-url:hover .col-title{
    color: rgb(var(--color-light-text));
}
@media (max-width:760px) {
    .ask-like-collection {
        flex-direction: column;
    }

    .ask-like-collection .collection-swiper-box,
    .ask-like-collection .heading-box {
        width: 100%;
    }

    .ask-like-collection .collection-swiper-box {
        padding: 0;
    }

    .ask-like-collection .cus-swiper-button-prev,
    .ask-like-collection .cus-swiper-button-next {
        display: none;
    }

    .ask-like-collection .swiper-pagination {
        position: relative;
        margin: 0;
        padding-top: 20px;
        display: block;
    }

    .ask-like-collection .swiper-pagination-bullet-active {
        background: rgb(var(--color-text));
    }
}