error.css 915 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. * {
  2. padding: 0;
  3. margin: 0;
  4. font-size: 0.38rem;
  5. }
  6. ul {
  7. list-style: none;
  8. }
  9. a {
  10. text-decoration: none;
  11. -webkit-tap-highlight-color: transparent
  12. }
  13. .clearfix:after {
  14. content: '';
  15. width: 0;
  16. height: 0;
  17. display: block;
  18. clear: both;
  19. }
  20. html {
  21. height: 100%;
  22. width: 100%;
  23. }
  24. body {
  25. font-size: 0.28rem;
  26. height: 100%;
  27. width: 100%;
  28. display: flex;
  29. flex-direction: column;
  30. position: relative;
  31. background-color: white !important;
  32. }
  33. .content {
  34. position: absolute;
  35. top: 50%;
  36. transform: translateY(-50%);
  37. width: 100%;
  38. text-align: center;
  39. }
  40. .content>img {
  41. height: 300px;
  42. max-width: 370px;
  43. margin-right: 180px;
  44. }
  45. .content>* {
  46. display: inline-block;
  47. }
  48. .content-r {
  49. vertical-align: top;
  50. }
  51. .content-r>h1 {
  52. font-size: 72px;
  53. color: #434e59;
  54. margin-bottom: 24px;
  55. font-weight: 600;
  56. }
  57. .content-r>p {
  58. font-size: 20px;
  59. color: rgba(0, 0, 0, .45);
  60. margin-bottom: 16px;
  61. }
  62. button {
  63. margin-top: 20px;
  64. }