@charset "utf-8";
/* CSS Document */

.lo-1 {

width: 134px;

height: 134px;

outline: 2px solid transparent;

transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);

display: inline-block; /* 根据实际情况调整，确保容器大小合适 */

}

.lo-1 img {

width: 100%;

height: 100%;

transition: transform 0.3s ease; /* 过渡效果应用于transform属性 */

}

.lo-1:hover img {

transform: scale(1.5); /* 鼠标悬停时放大图片 */
outline-color: rgba(255, 255, 255, 0.8);

}


