38 lines
568 B
SCSS
38 lines
568 B
SCSS
.page {
|
|
background-image: linear-gradient(135deg, rgba(0, 33, 33, 1), rgba(0, 106, 106, 1), );
|
|
position: relative;
|
|
height: 100vh;
|
|
}
|
|
|
|
.j-1 {
|
|
color: white;
|
|
position: absolute;
|
|
margin: auto;
|
|
height: min-content;
|
|
inset: 0;
|
|
text-align: center;
|
|
|
|
.text-1 {
|
|
font-size: 60rpx;
|
|
font-weight: 700;
|
|
margin-bottom: 40rpx;
|
|
}
|
|
|
|
.text-2 {
|
|
line-height: 50rpx;
|
|
color: rgba(255, 255, 255, 0.8);
|
|
}
|
|
}
|
|
|
|
.footer {
|
|
position: absolute;
|
|
left: 40rpx;
|
|
right: 40rpx;
|
|
bottom: 60rpx;
|
|
|
|
.btn {
|
|
width: 100% !important;
|
|
padding: 30rpx 0;
|
|
color: rgba(0, 106, 106, 1);
|
|
}
|
|
} |