<div class="loadingWrap">
<div class="loading">
</div>
</div>
.loadingWrap {
width: 100%;
height: 80px;
display: flex;
justify-content: center;
align-items: center;
background-color: #fff;
}
.loadingWrap .loading {
width: 30px;
height: 30px;
border: 2px solid rgb(22, 15, 15);
border-top-color: transparent;
border-radius: 50%;
animation: rotate 1s linear infinite;
}
@keyframes rotate {
to {
transform: rotate(360deg);
}
}