.scarusel {
    overflow: hidden;
    position: relative;
    padding: 5px 0;
}
.scarusel .scu {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-content: flex-start;
    margin: -2px -2px 0px;
    line-height: 0px;
    flex-wrap: nowrap;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
.scarusel .sitem{
    width: 175px;
    max-width: 175px;
    flex: 0 0 175px;
    flex-basis: 175px;
    padding: 0 8px;
}
@media(max-width:720px){
    .scarusel .sitem{
        width: 160px;
        max-width: 160px;
        flex: 0 0 160px;
        flex-basis: 160px;
    } 
}
.scarusel .scausel-btn{
    position: absolute;
    top: 50%;
    z-index: 3;
    display: block;
    width: 27px;
    height: 30px;
    margin: -14px 0 0 0;
    border-radius: 14px;
    padding: 8px 10px;
    background: #fff;
    outline: 0;
    cursor: pointer;
    border: 0;
    -webkit-box-shadow: 0 0 3px rgb(181 189 192 / 60%);
    box-shadow: 0 0 3px rgb(181 189 192 / 60%);
    -webkit-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
}
.scarusel .scausel-btn [class*=icon] {
    width: 6.772px;
    height: 12.045px;
    margin: 0 auto;
    fill: #494949;
    pointer-events: none;
    stroke: #9fa2ce;
}
.scarusel .scausel-btn[data-slide="prev"] svg {
    -webkit-transform: rotate(-180deg);
    -moz-transform: rotate(-180deg);
    -o-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    transform: rotate(-180deg);
}
.scarusel .scausel-btn[data-slide="next"] {
    right: 20px;
    -webkit-transform: translate3d(200px, 0, 0);
    transform: translate3d(200px, 0, 0);
}
.scarusel .scausel-btn[data-slide="prev"] {
    left: 20px;
    -webkit-transform: translate3d(-200px, 0, 0);
    transform: translate3d(-200px, 0, 0);
}
.scarusel:hover > .scausel-btn:hover {
    background-color: #e6e6e6;
}
.scarusel:hover > .scausel-btn {
    -webkit-transform: translate3D(0, 0, 0);
    -ms-transform: translate3D(0, 0, 0);
    transform: translate3D(0, 0, 0);
}
