1234567891011121314151617181920212223 |
- /* components/page-tips/page-tips.wxss */
- .page-tips {
- padding-top: 200rpx;
- width: 100%;
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- }
- .page-tips .icon {
- display: block;
- width: 260rpx;
- height: auto;
- margin-bottom: 30rpx;
- }
- .page-tips .content {
- display: block;
- font-size: 32rpx;
- color: rgba(66, 70, 86, 1);
- line-height: 44rpx;
- }
|