.ormau-carousel{position:relative;width:100%;max-width:100%;overflow:hidden;box-sizing:border-box;}
.ormau-carousel-track{display:flex;flex-wrap:nowrap;transition:transform .5s ease;background:white;}
.ormau-slide{width:100%;min-width:100%;max-width:100%;flex-shrink:0;flex-grow:0;position:relative;box-sizing:border-box;background:white;}
.ormau-slide-img-wrapper{position:relative;width:100%;}
.ormau-slide img{width:100%!important;max-width:100%!important;height:auto;display:block;box-sizing:border-box;line-height:0;}
.ormau-slide img.pc{display:block!important;}
.ormau-slide img.mobile{display:none!important;}
.ormau-carousel-text{width:80%;margin:0 auto;padding:20px 20px;font-size:20px;color:#333;text-align:center;}
.ormau-slide-img-wrapper .ormau-dots{position:absolute;bottom:20px;left:50%;transform:translateX(-50%);display:flex;gap:10px;z-index:100;pointer-events:all;}
.ormau-dot{width:10px;height:10px;border-radius:50%;background:rgba(255,255,255,.7);cursor:pointer;position:relative;overflow:hidden;box-shadow:0 2px 4px rgba(0,0,0,.3);}
.ormau-dot.active{background:rgba(255,255,255,.9);}
.ormau-dot-progress{position:absolute;top:0;left:0;width:0;height:100%;background:#fff;}
.ormau-dot.active .ormau-dot-progress{animation:carouselProgress 5s linear;}
@keyframes carouselProgress{from{width:0}to{width:100%}}
@media(max-width:768px){
    .ormau-slide img.pc{display:none!important;}
    .ormau-slide img.mobile{display:block!important;}
    .ormau-carousel-text{width:95%;font-size:14px;padding:12px 16px;}
}