12345678910111213141516171819202122232425262728 |
- page{
- height: 100%;
- }
- .box{
- width: 100%;
- height: 100%;
- display: flex;
- flex-direction: column;
- align-items: center;
- background:rgba(238,238,238,1);
- }
- .box image{
- margin-bottom: 30rpx;
- margin-top: 45%;
- }
- .box text:nth-of-type(1){
- font-size:30rpx;
- font-family:PingFang SC;
- font-weight:500;
- color:rgba(77,77,77,1);
- }
- .box text:nth-of-type(2){
- font-size:22rpx;
- font-family:PingFang SC;
- font-weight:500;
- color:rgba(155,155,155,1);
- margin-top: 21rpx;
- }
|