error-page.css 594 B

1234567891011121314151617181920212223242526272829303132333435
  1. /** 错误页面样式 */
  2. .error-page {
  3. position: absolute;
  4. left: 50%;
  5. top: 50%;
  6. transform: translate(-50%, -50%);
  7. text-align: center;
  8. }
  9. .error-page-img {
  10. min-width: 300px;
  11. max-width: 100%;
  12. max-height: 300px;
  13. }
  14. .error-page-info {
  15. display: inline-block;
  16. text-align: center;
  17. vertical-align: middle;
  18. padding-left: 30px;
  19. }
  20. .error-page-info h1 {
  21. color: #434e59;
  22. font-size: 72px;
  23. font-weight: 600;
  24. margin-bottom: 10px;
  25. }
  26. .error-page-info-desc {
  27. color: #777;
  28. font-size: 20px;
  29. line-height: 28px;
  30. margin-bottom: 16px;
  31. }