.screen-page{ width: 100%; height: 100%; overflow: hidden; position: relative; box-sizing: border-box; } .left-sidebar{ position: absolute; top: 90px; left: 16px; width: 360px; height: calc(100% - 140px); display: flex; flex-wrap: wrap; justify-content: space-evenly; background:rgba(178, 178, 178, 0.1); border-radius: 4px 4px 4px 4px; opacity: 1; z-index: 99; backdrop-filter: blur(40px); -webkit-backdrop-filter: blur(40px); border: 1px solid rgba(255, 255, 255, 0.3); padding: 10px; } .right-sidebar{ position: absolute; top: 90px; right:19px; width: 360px; height: calc(100% - 140px); display: flex; flex-wrap: wrap; justify-content: space-evenly; background:rgba(178, 178, 178, 0.1); border-radius: 4px 4px 4px 4px; opacity: 1; z-index: 99; backdrop-filter: blur(40px); -webkit-backdrop-filter: blur(40px); border: 1px solid rgba(255, 255, 255, 0.3); padding: 10px; } .section-container{ width: 100%; flex: 1; overflow: hidden; } .section-header{ width: 332px; height: 30px; font-weight: 700; color: #FFFFFF; line-height: 30px; background: url('../../assets/img/bigScreen/title.png') no-repeat center / 100% 100%; } .section-header span{ margin-left: 32px; font-size: 14px; } .section-content{ width: 100%; height: calc(100% - 36px); margin-top: 6px; }