index.less 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. @import "./theme.less";
  2. .screenWrapper {
  3. width: 100%;
  4. height: calc(100vh - 60px);
  5. display: flex;
  6. justify-content: center;
  7. align-items: center;
  8. flex-direction: column;
  9. overflow: hidden;
  10. position: relative;
  11. background: url("../../../assets/bigscreen/screen-bg.jpg") no-repeat center
  12. center;
  13. background-size: cover;
  14. .fullscreenBtn {
  15. position: absolute;
  16. top: 0;
  17. right: 0;
  18. z-index: 10000;
  19. background: rgba(0, 0, 0, 0.7);
  20. color: #00ff88;
  21. border: none;
  22. border-radius: 4px;
  23. padding: 8px 18px;
  24. font-size: 16px;
  25. cursor: pointer;
  26. transition: background 0.2s;
  27. &:hover {
  28. background: rgba(0, 0, 0, 0.9);
  29. }
  30. }
  31. }
  32. .screenContainer {
  33. position: absolute;
  34. left: 0;
  35. top: 0;
  36. width: 3840px;
  37. height: 2160px;
  38. padding: 24px;
  39. display: flex;
  40. flex-direction: column;
  41. box-sizing: border-box;
  42. overflow: hidden;
  43. // gap: @gap-size;
  44. left: 0;
  45. top: 0;
  46. // z-index: 2000;
  47. }
  48. .headPanel {
  49. height: 200px;
  50. gap: @gap-size;
  51. }
  52. .contentPanel {
  53. display: flex;
  54. flex: 1;
  55. width: 100%;
  56. height: 100%;
  57. overflow: hidden;
  58. gap: @gap-size;
  59. &Left,
  60. &Center,
  61. &Right {
  62. display: flex;
  63. flex-direction: column;
  64. height: 100%;
  65. }
  66. &Left {
  67. width: 25%;
  68. }
  69. &Center {
  70. width: 50%;
  71. }
  72. &Right {
  73. width: 25%;
  74. }
  75. }
  76. .mapContainer {
  77. position: absolute;
  78. width: 2336px;
  79. height: 1080px;
  80. border: 1px solid red;
  81. z-index: 0;
  82. }