1234567891011121314151617181920212223242526272829303132 |
- .error {
- background-color: #fff;
- display: flex;
-
- flex-direction: column;
- min-height: calc(100vh);
- align-items: center;
- justify-content: center;
- .info {
- display: flex;
- align-items: center;
- margin-bottom: 30px;
- span {
- display: inline-block;
- margin-left: 10px;
- color: #58727e;
- font-size: 18px;
- }
- }
- :global {
- .o-result-container,
- .van-empty {
- padding-top: 0;
- }
- .van-button {
- width: 50%;
- }
- }
- }
|