35 lines
698 B
Plaintext
35 lines
698 B
Plaintext
.page-loading-container {
|
|
width: 100%;
|
|
height: 102px;
|
|
position: absolute;
|
|
bottom: 50vh;
|
|
z-index: 9;
|
|
}
|
|
|
|
.page-loading-container .page-loading-wrap {
|
|
width: 116px;
|
|
height: 102px;
|
|
background: rgba(0,0,0,0.80);
|
|
border-radius: 16px;
|
|
font-size: 14px;
|
|
color: #FFFFFF;
|
|
text-align: center;
|
|
line-height: 14px;
|
|
font-weight: 400;
|
|
padding: 24px;
|
|
box-sizing: border-box;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.page-loading-container .page-loading-wrap .pic{
|
|
width: 32px;
|
|
height: 32px;
|
|
display: block;
|
|
margin: 0px auto 8px;
|
|
animation: spin 1s linear infinite;
|
|
}
|
|
|
|
@keyframes spin {
|
|
0% { transform: rotate(0deg); }
|
|
100% { transform: rotate(360deg); }
|
|
} |