共享电动车管理平台-前端
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

48 Zeilen
869B

  1. .aui-page__not-found {
  2. .aui-content {
  3. display: flex;
  4. flex-flow: column wrap;
  5. align-items: center;
  6. min-height: 100vh;
  7. padding: 15% 50px 50px;
  8. text-align: center;
  9. &__wrapper {
  10. height: 100vh;
  11. background-color: transparent;
  12. overflow-x: hidden;
  13. overflow-y: auto;
  14. }
  15. }
  16. .title {
  17. margin: 0 0 15px;
  18. font-size: 10em;
  19. font-weight: 400;
  20. color: $--color-text-regular;
  21. }
  22. .desc {
  23. margin: 0 0 20px;
  24. font-size: 26px;
  25. color: $--color-text-secondary;
  26. > em {
  27. margin: 0 5px;
  28. font-style: normal;
  29. color: $--color-warning;
  30. }
  31. }
  32. .btn-bar .el-button {
  33. margin: 0 15px;
  34. }
  35. }
  36. @media (max-width: 767px) {
  37. .aui-page__not-found {
  38. .title {
  39. font-size: 8em;
  40. }
  41. .desc {
  42. font-size: 20px;
  43. }
  44. .btn-bar .el-button {
  45. margin: 0 7.5px;
  46. }
  47. }
  48. }