2023-02-21 22:34:08 +08:00

22 lines
313 B
Plaintext

.container{
height: 1100rpx;
/* border: 1rpx solid #ccc; */
}
.image{
width: 100%;
height: 90%;
border-radius: 15rpx;
}
/* 当前图片 */
image.active{
transform: none;
transition: all .2s ease-in;
}
/* 不是当前图片 */
image.quiet{
transform: scale(0.9);
transition: all .2s ease-in;
}