error.less 471 B

12345678910111213141516171819202122232425
  1. .errorWrap {
  2. position: absolute;
  3. left: 50%;
  4. top: 40%;
  5. width: 100%;
  6. transform: translateX(-50%) translateY(-50%);
  7. text-align: center;
  8. .errorTips {
  9. color: #3494FF;
  10. font-size: 28px;
  11. margin: 42px 0 65px 0;
  12. }
  13. .back {
  14. display: inline-block;
  15. width: 120px;
  16. height: 52px;
  17. line-height: 52px;
  18. background-color: #3494FF;
  19. color: #fff;
  20. cursor: pointer;
  21. font-size: 24px;
  22. border-radius: 4px;
  23. text-align: center;
  24. }
  25. }