64 lines
1.2 KiB
Plaintext
64 lines
1.2 KiB
Plaintext
.sync-mask {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
background-color: rgba(37, 37, 53, 0.6);
|
|
z-index: 100;
|
|
}
|
|
|
|
.sync-panel {
|
|
position: fixed;
|
|
top: 50%;
|
|
left: 50%;
|
|
transform: translate(-50%, -50%);
|
|
width: 560rpx;
|
|
box-sizing: border-box;
|
|
background-color: #FFFFFF;
|
|
border-radius: 24rpx;
|
|
z-index: 101;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
padding: 64rpx 48rpx;
|
|
|
|
.sync-title {
|
|
color: #252535;
|
|
height: 32rpx;
|
|
font-size: 32rpx;
|
|
line-height: 32rpx;
|
|
}
|
|
|
|
.sync-status {
|
|
color: #808080;
|
|
height: 24rpx;
|
|
font-size: 24rpx;
|
|
line-height: 24rpx;
|
|
margin-top: 24rpx;
|
|
}
|
|
|
|
.sync-percent {
|
|
color: #77849E;
|
|
height: 24rpx;
|
|
font-size: 24rpx;
|
|
line-height: 24rpx;
|
|
margin-top: 48rpx;
|
|
}
|
|
|
|
.sync-progress {
|
|
width: 464rpx;
|
|
height: 10rpx;
|
|
border-radius: 6rpx;
|
|
background-color: #D9D9D9;
|
|
margin-top: 16rpx;
|
|
overflow: hidden;
|
|
|
|
.sync-progress-inner {
|
|
height: 10rpx;
|
|
border-radius: 6rpx;
|
|
background-color: #1385FA;
|
|
}
|
|
}
|
|
}
|