approach.scss 804 B

12345678910111213141516171819202122232425262728293031323334
  1. .hc-new-switch-tab-box {
  2. position: relative;
  3. display: flex;
  4. justify-content: center;
  5. margin-bottom: 24px;
  6. }
  7. .hc-switch-tab-content {
  8. position: relative;
  9. height: calc(100% - 64px);
  10. display: flex;
  11. justify-content: center;
  12. border: 1px solid #e9e9e9;
  13. border-radius: 4px;
  14. .hc-no-table-form {
  15. position: relative;
  16. height: 100%;
  17. display: flex;
  18. justify-content: center;
  19. align-items: center;
  20. .table-form-no {
  21. position: relative;
  22. text-align: center;
  23. img {
  24. width: 200px;
  25. }
  26. .desc {
  27. text-align: center;
  28. font-size: 16px;
  29. color: #aaa;
  30. margin-bottom: 24px;
  31. }
  32. }
  33. }
  34. }