2023-11-27 09:57:03 +08:00
|
|
|
|
|
|
|
.content {
|
2023-12-05 16:45:28 +08:00
|
|
|
display: -webkit-box;
|
|
|
|
display: -webkit-flex;
|
2023-11-27 09:57:03 +08:00
|
|
|
display: flex;
|
2023-12-05 16:45:28 +08:00
|
|
|
-webkit-box-orient: vertical;
|
|
|
|
-webkit-box-direction: normal;
|
|
|
|
-webkit-flex-direction: column;
|
|
|
|
flex-direction: column;
|
|
|
|
-webkit-box-align: center;
|
|
|
|
-webkit-align-items: center;
|
|
|
|
align-items: center;
|
|
|
|
-webkit-box-pack: center;
|
|
|
|
-webkit-justify-content: center;
|
|
|
|
justify-content: center;
|
2023-11-27 09:57:03 +08:00
|
|
|
}
|
|
|
|
.logo {
|
|
|
|
height: 200rpx;
|
|
|
|
width: 200rpx;
|
|
|
|
margin-top: 200rpx;
|
|
|
|
margin-left: auto;
|
|
|
|
margin-right: auto;
|
|
|
|
margin-bottom: 50rpx;
|
|
|
|
}
|
|
|
|
.text-area {
|
2023-12-05 16:45:28 +08:00
|
|
|
display: -webkit-box;
|
|
|
|
display: -webkit-flex;
|
2023-11-27 09:57:03 +08:00
|
|
|
display: flex;
|
2023-12-05 16:45:28 +08:00
|
|
|
-webkit-box-pack: center;
|
|
|
|
-webkit-justify-content: center;
|
|
|
|
justify-content: center;
|
2023-11-27 09:57:03 +08:00
|
|
|
}
|
|
|
|
.title {
|
|
|
|
font-size: 36rpx;
|
|
|
|
color: #8f8f94;
|
|
|
|
}
|
|
|
|
|