29 lines
438 B
SCSS
29 lines
438 B
SCSS
.test_page {
|
|
width: 100%;
|
|
min-height: 100vh;
|
|
background-color: #fafafa;
|
|
padding: 40rpx;
|
|
|
|
&__content {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
padding-top: 200rpx;
|
|
}
|
|
|
|
&__button {
|
|
width: 400rpx;
|
|
height: 88rpx;
|
|
line-height: 88rpx;
|
|
border-radius: 44rpx;
|
|
font-size: 32rpx;
|
|
}
|
|
|
|
&__tip_wrapper {
|
|
width: 100%;
|
|
margin-top: 40rpx;
|
|
}
|
|
}
|
|
|