index.less 791 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. .real-view {
  2. width: 100%;
  3. height: 100%;
  4. position: absolute;
  5. top: 0;
  6. left: 0;
  7. z-index: 99;
  8. background-color: #f7f7f9;
  9. .header {
  10. height: 48px;
  11. display: flex;
  12. align-items: center;
  13. padding-left: 18px;
  14. background-color: #fff;
  15. .back-button {
  16. display: flex;
  17. align-items: center;
  18. cursor: pointer;
  19. }
  20. }
  21. .tabs {
  22. width: 100%;
  23. height: 45px;
  24. background-color: #fff;
  25. padding-left: 10px;
  26. }
  27. .real-view-content {
  28. width: 100%;
  29. height: 100%;
  30. padding: 18px;
  31. padding-bottom: 168px;
  32. overflow: hidden;
  33. overflow-y: auto;
  34. }
  35. .footer {
  36. width: 100%;
  37. height: 60px;
  38. background-color: #fff;
  39. position: absolute;
  40. right: 0;
  41. bottom: 60px;
  42. padding-left: 18px;
  43. z-index: 100;
  44. }
  45. }