index.scss 549 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. .not-container {
  2. display: flex;
  3. align-items: center;
  4. justify-content: center;
  5. width: 100%;
  6. height: 100%;
  7. .not-img {
  8. margin-right: 120px;
  9. }
  10. .not-detail {
  11. display: flex;
  12. flex-direction: column;
  13. h2,
  14. h4 {
  15. padding: 0;
  16. margin: 0;
  17. }
  18. h2 {
  19. font-size: 60px;
  20. color: var(--el-text-color-primary);
  21. }
  22. h4 {
  23. margin: 30px 0 20px;
  24. font-size: 19px;
  25. font-weight: normal;
  26. color: var(--el-text-color-regular);
  27. }
  28. .el-button {
  29. width: 100px;
  30. }
  31. }
  32. }