.item-pic { width: 200rpx; height: 200rpx; position: relative; box-sizing: border-box; border-radius: 6px; border: 2rpx solid rgba(232, 232, 232, 1); margin-right: 20rpx; margin-bottom: 30rpx; justify-content: center; align-items: center; float: left; } .show-img { width: 200rpx; height: 200rpx; border-radius: 6px; } .loading { position: absolute; background: rgba(0, 0, 0, 0.5); left: 0; top: 0; width: 100%; height: 100%; border: 2rpx solid rgba(0, 0, 0, 0.5); border-radius: 6px; } .loading-img { animation: rotation 2s linear infinite; position: absolute; width: 50rpx; height: 50rpx; left: 75rpx; top: 75rpx; } @keyframes rotation { from { -webkit-transform: rotate(0deg); } to { -webkit-transform: rotate(360deg); } } .loading .text { color: #fff; font-size: 20rpx; text-align: center; line-height: 150rpx; display: block; margin: 0 auto; } /* .loading image { width: 150rpx; height: 150rpx; } */ .close { position: absolute; right: -15rpx; top: -15rpx; background: #fff; height: 40rpx; width: 40rpx; border-radius: 100%; } .close .image { height: 40rpx; width: 40rpx; display: block; }