12345678910111213141516171819202122232425 |
- .page {
- width: 100vw;
- height: 100vh;
- background: linear-gradient(to bottom, #5592ff, #d6e1fa);
- overflow: hidden;
- }
- .content {
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- margin-top: 300rpx;
- }
- .tit {
- color: #fff;
- font-size: 40rpx;
- margin-top: 96rpx;
- }
- .content > image {
- width: 300rpx;
- height: 300rpx;
- }
|