/* ===== 产品画廊轮播小部件 ===== */
.qing-pgal-wrap {
    position: relative;
    width: 100%;
}

/* 主图 Swiper */
.qing-pgal-main {
    width: 100%;
    overflow: hidden;
    position: relative;
    background: #fff;
}
.qing-pgal-main .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}
.qing-pgal-main .swiper-slide img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain;
    display: block;
}

/* 导航箭头 */
.qing-pgal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: transparent;
    border: 2px solid transparent;
    color: #1a56db;
    cursor: pointer;
    transition: all .2s ease;
    opacity: 0;
}
.qing-pgal-wrap:hover .qing-pgal-nav {
    opacity: 1;
}
.qing-pgal-nav:hover {
    border-color: #1a56db;
    background: #fff;
}
.qing-pgal-nav svg {
    width: 20px;
    height: 20px;
}
.qing-pgal-prev {
    left: 8px;
}
.qing-pgal-next {
    right: 8px;
}

/* 缩略图 Swiper */
.qing-pgal-thumbs {
    width: 100%;
    overflow: hidden;
    margin-top: 12px;
}
.qing-pgal-thumbs .swiper-slide {
    cursor: pointer;
    opacity: 0.5;
    border: 2px solid transparent;
    border-radius: 4px;
    overflow: hidden;
    transition: all .2s ease;
}
.qing-pgal-thumbs .swiper-slide-thumb-active {
    opacity: 1;
    border-color: #1a56db;
}
.qing-pgal-thumbs .swiper-slide:hover {
    opacity: 0.8;
}
.qing-pgal-thumbs .swiper-slide img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain;
    display: block;
}
