55 lines
764 B
Plaintext
55 lines
764 B
Plaintext
.loading-layout {
|
|
width: 100%;
|
|
height: 100%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.pay-certification-detail {
|
|
display: flex;
|
|
width: 100%;
|
|
height: 100%;
|
|
|
|
.left {
|
|
width: 220px;
|
|
flex-grow: 0;
|
|
flex-shrink: 0;
|
|
height: 100vh;
|
|
overflow-y: auto;
|
|
}
|
|
|
|
.right {
|
|
width: calc(100vw - 220px);
|
|
height: 100vh;
|
|
}
|
|
|
|
&.empty {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
flex-direction: column;
|
|
|
|
p {
|
|
line-height: 36px;
|
|
}
|
|
|
|
.empty-title {
|
|
color: #111;
|
|
font-size: 16px;
|
|
}
|
|
|
|
.empty-subTitle {
|
|
color: #666;
|
|
font-size: 14px;
|
|
}
|
|
|
|
.iconEmpty {
|
|
i {
|
|
color: #5d9cec;
|
|
font-size: 43px;
|
|
}
|
|
}
|
|
}
|
|
}
|