37 lines
614 B
SCSS
37 lines
614 B
SCSS
.app {
|
|
font-family: DengXian;
|
|
color: #C3C1C1;
|
|
font-weight: 400;
|
|
height:100vh;
|
|
background-color: #ffffff;
|
|
.text{
|
|
position: absolute;
|
|
top:37%;
|
|
left:50%;
|
|
transform: translateX(-50%);
|
|
padding-top: 30rpx;
|
|
font-size: 32rpx;
|
|
color: #000000;
|
|
font-weight: 600;
|
|
}
|
|
image{
|
|
position: absolute;
|
|
top:20%;
|
|
left:50%;
|
|
transform: translateX(-50%);
|
|
display: block;
|
|
margin: 0 auto;
|
|
width: 240rpx;
|
|
height: 240rpx;
|
|
}
|
|
|
|
.loginbtn{
|
|
width: 90%;
|
|
position: absolute;
|
|
top:55%;
|
|
left:5%;
|
|
background-color: #26A888;
|
|
color: #ffffff;
|
|
}
|
|
}
|