48 lines
686 B
Plaintext
48 lines
686 B
Plaintext
.center {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
text-align: center;
|
|
}
|
|
|
|
.pulse {
|
|
width: 132rpx;
|
|
height: 132rpx;
|
|
border-radius: 50%;
|
|
background: #00e0b8;
|
|
opacity: 0.88;
|
|
animation: pulse 1.4s ease-in-out infinite;
|
|
box-shadow: 0 0 72rpx rgba(0, 224, 184, 0.44);
|
|
}
|
|
|
|
.title {
|
|
margin-top: 44rpx;
|
|
font-size: 40rpx;
|
|
font-weight: 800;
|
|
}
|
|
|
|
.subtitle {
|
|
margin-top: 20rpx;
|
|
color: #9db0b4;
|
|
font-size: 28rpx;
|
|
line-height: 1.7;
|
|
}
|
|
|
|
.action {
|
|
margin-top: 48rpx;
|
|
width: 100%;
|
|
}
|
|
|
|
@keyframes pulse {
|
|
0% {
|
|
transform: scale(0.86);
|
|
}
|
|
50% {
|
|
transform: scale(1);
|
|
}
|
|
100% {
|
|
transform: scale(0.86);
|
|
}
|
|
}
|