62 lines
950 B
Plaintext
62 lines
950 B
Plaintext
|
|
.page-container {
|
|
width: 100vw;
|
|
height: 100vh;
|
|
position: relative;
|
|
}
|
|
.call-kit-wrapper {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100vw;
|
|
height: 100vh;
|
|
z-index: 9999;
|
|
}
|
|
.loginBox {
|
|
margin-top: 200px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
position: relative;
|
|
z-index: 1;
|
|
}
|
|
input {
|
|
display: flex;
|
|
font-size: 20px;
|
|
}
|
|
.login {
|
|
width: 100vw;
|
|
bottom: 5vh;
|
|
margin: 70rpx;
|
|
}
|
|
.login button {
|
|
width: 80%;
|
|
background-color: #006eff;
|
|
border-radius: 50px;
|
|
color: white;
|
|
}
|
|
.login button:disabled {
|
|
background-color: #cccccc;
|
|
}
|
|
.status-info {
|
|
margin-top: 20px;
|
|
padding: 10px;
|
|
background-color: #f0f0f0;
|
|
border-radius: 5px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
gap: 8px;
|
|
}
|
|
.status-info text {
|
|
font-size: 14px;
|
|
color: #666;
|
|
}
|
|
.status-info .tip {
|
|
font-size: 12px;
|
|
color: #999;
|
|
text-align: center;
|
|
line-height: 1.5;
|
|
}
|