@charset "utf-8";

.marquee_con .product_lt {width:100%;overflow:hidden;}
.marquee_con .marquee {width:100%;height:70px;overflow:hidden;position:relative;}
.marquee_con .track {display:flex;width:max-content;will-change:transform;animation:trackLeft 90s linear infinite;}
.marquee_con .item {width:20vw;padding:0 30px;flex-shrink:0;display:flex;align-items:center;justify-content:center;}
.marquee_con .item img {max-width:100%;max-height:100px;object-fit:contain;}
@keyframes trackLeft {
from {transform:translateX(0);}
to {transform:translateX(-50%);}
}

@media screen and (max-width:960px) {
.marquee_con .item {width:200px;padding:0 25px;}
}
@media screen and (max-width:640px) {
.marquee_con .marquee {height:60px;}
.marquee_con .item {width:145px;padding:0 15px;}
}