1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- @import "./theme.less";
- .screenWrapper {
- width: 100%;
- height: calc(100vh - 60px);
- display: flex;
- justify-content: center;
- align-items: center;
- flex-direction: column;
- overflow: hidden;
- position: relative;
- background: url("../../../assets/bigscreen/screen-bg.jpg") no-repeat center
- center;
- background-size: cover;
- .fullscreenBtn {
- position: absolute;
- top: 0;
- right: 0;
- z-index: 10000;
- background: rgba(0, 0, 0, 0.7);
- color: #00ff88;
- border: none;
- border-radius: 4px;
- padding: 8px 18px;
- font-size: 16px;
- cursor: pointer;
- transition: background 0.2s;
- &:hover {
- background: rgba(0, 0, 0, 0.9);
- }
- }
- }
- .screenContainer {
- position: absolute;
- left: 0;
- top: 0;
- width: 3840px;
- height: 2160px;
- padding: 24px;
- display: flex;
- flex-direction: column;
- box-sizing: border-box;
- overflow: hidden;
- // gap: @gap-size;
- left: 0;
- top: 0;
- // z-index: 2000;
- }
- .headPanel {
- height: 200px;
- gap: @gap-size;
- }
- .contentPanel {
- display: flex;
- flex: 1;
- width: 100%;
- height: 100%;
- overflow: hidden;
- gap: @gap-size;
- &Left,
- &Center,
- &Right {
- display: flex;
- flex-direction: column;
- height: 100%;
- }
- &Left {
- width: 25%;
- }
- &Center {
- width: 50%;
- }
- &Right {
- width: 25%;
- }
- }
- .mapContainer {
- position: absolute;
- width: 2336px;
- height: 1080px;
- border: 1px solid red;
- z-index: 0;
- }
|