12345678910111213141516171819202122232425 |
- .errorWrap {
- position: absolute;
- left: 50%;
- top: 40%;
- width: 100%;
- transform: translateX(-50%) translateY(-50%);
- text-align: center;
- .errorTips {
- color: #3494FF;
- font-size: 28px;
- margin: 42px 0 65px 0;
- }
- .back {
- display: inline-block;
- width: 120px;
- height: 52px;
- line-height: 52px;
- background-color: #3494FF;
- color: #fff;
- cursor: pointer;
- font-size: 24px;
- border-radius: 4px;
- text-align: center;
- }
- }
|