70 lines
1.1 KiB
SCSS
70 lines
1.1 KiB
SCSS
.login-wrapper {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
box-sizing: border-box;
|
|
font-family: PingFang SC, PingFang SC;
|
|
height: 100vh;
|
|
padding-top: 168px;
|
|
position: relative;
|
|
|
|
.bg {
|
|
position: absolute;
|
|
left: 0;
|
|
top: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
z-index: -1;
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
|
|
.login-header {
|
|
text-align: center;
|
|
|
|
.login-avatar {
|
|
width: 150px;
|
|
display: block;
|
|
}
|
|
|
|
.login-title {
|
|
width: 137px;
|
|
margin: 6px auto;
|
|
}
|
|
|
|
.login-desc {
|
|
font-size: 12px;
|
|
color: #1E4C69;
|
|
line-height: 24px;
|
|
}
|
|
}
|
|
|
|
.login-btn-area {
|
|
margin-top: 46px;
|
|
width: 297px;
|
|
|
|
.login-btn {
|
|
background: linear-gradient( 246deg, #22A7FF 0%, #2567FF 100%);
|
|
width: 100%;
|
|
border-radius: 50px;
|
|
}
|
|
}
|
|
|
|
.login-agreement {
|
|
margin-top: 20px;
|
|
display: flex;
|
|
align-items: center;
|
|
|
|
.login-agreement-text {
|
|
font-size: 14px;
|
|
color: #666;
|
|
}
|
|
|
|
.login-agreement-link {
|
|
font-size: 14px;
|
|
color: #007aff;
|
|
margin: 0 5px;
|
|
}
|
|
}
|
|
} |