404.css 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. @charset "utf-8";
  2. /**
  3. * PC端
  4. */
  5. @media screen and (min-width:768px){
  6. body {
  7. background: #f6f6f6;
  8. min-width: 1184px;
  9. position: relative;
  10. text-align: center;
  11. }
  12. #errorPage{
  13. width: 1184px;
  14. margin:5% auto;
  15. height: 450px;
  16. text-align: center;
  17. }
  18. #errorPage img{width:520px;}
  19. .desc{text-align: left;}
  20. .desc_link{
  21. font-size: 30px;
  22. letter-spacing: 3px;
  23. color: #E15616;
  24. text-decoration: underline;
  25. display: inline-block;
  26. margin: 0 15px;
  27. font-weight: normal;
  28. }
  29. }
  30. /**
  31. * 移动端
  32. */
  33. @media screen and (max-width:768px){
  34. body {
  35. background: #f6f6f6;
  36. position: relative;
  37. text-align: center;
  38. }
  39. #errorPage{
  40. margin: 10% auto;
  41. }
  42. #errorPage img{
  43. width:60%;
  44. }
  45. .desc{background:#F5F5F5;text-align: left;}
  46. .desc_link{
  47. font-size: 8vw;
  48. letter-spacing: 3px;
  49. color: #E15616;
  50. text-decoration: underline;
  51. display: inline-block;
  52. margin: 0 3vw;
  53. font-weight: normal;
  54. }
  55. }