.atphoto-list { display: flex; flex-wrap: wrap; padding: 20rpx; } .atphoto-item { margin: 10rpx; width: calc(50% - 20rpx); aspect-ratio: 4 / 3; overflow: hidden; display: flex; align-items: center; display: flex; animation: goshow 0.3s forwards; transform: translateY(-10px); opacity: 0; border-radius: 8rpx; &.cate { padding-bottom: 40rpx; flex-direction: column; align-items: stretch; justify-content: center; position: relative; .floatname { position: absolute; bottom: 0; left: 0; right: 0; text-align: center; font-size: 30rpx; } } t-image { flex: 1; } .caseimage { width: 100%; height: 100%; border-radius: 8rpx; } } @keyframes goshow { 0% { opacity: 0; } 100% { opacity: 1; transform: translateY(0); } }