﻿.ba-slider {
    position: relative;
    overflow: hidden;
    height: 100vh;
    max-height: 534px;
    margin-top: 36px;
}

.ba-slider img {
    width: 100%;
    display: block;
    max-width: none;
    height: 100%;
    position: absolute;
    object-fit: cover
}

.ba-slider .resize {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 50%;
    overflow: hidden
}

.ba-slider .handle {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    margin-left: -2px;
    display: block;
    background: rgb(255, 255, 255);
    cursor: ew-resize
}

.ba-slider .handle:after {
    position: absolute;
    top: 50%;
    width: 38px;
    height: 38px;
    margin: -19px 0 0 -19px;
    content: '';
    background: url(../image/2022112812175197026.png) center center / 38px 38px no-repeat;
    border-radius: 50%;
    transition: all .3s ease;
    transform: scale(1);
    z-index: 5;
}

.ba-slider .handle.ba-draggable:after {
    transform: scale(.8)
}