index.less 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  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. position: relative;
  54. display: flex;
  55. flex: 1;
  56. width: 100%;
  57. height: 100%;
  58. overflow: hidden;
  59. gap: @gap-size;
  60. &Left {
  61. position: absolute;
  62. left: 72px;
  63. }
  64. &Center {
  65. position: absolute;
  66. width: 1708px;
  67. left: 1064px;
  68. }
  69. &Right {
  70. position: absolute;
  71. right: 72px;
  72. }
  73. .mapContainer {
  74. position: absolute;
  75. left: 540px;
  76. top: 180px;
  77. width: 2400px;
  78. height: 1176px;
  79. z-index: 0;
  80. }
  81. }