.screen-page{ width: 100%; height: 100%; overflow: hidden; position: relative; box-sizing: border-box; } .left-sidebar{ position: absolute; top: 125px; left: 40px; width: 360px; height: calc(100% - 180px); display: flex; flex-wrap: wrap; justify-content: space-evenly; background:rgba(#0d1825, 0.1); border-radius: 4px; opacity: 1; z-index: 99; backdrop-filter: blur(40px); -webkit-backdrop-filter: blur(40px); padding: 16px; box-sizing: border-box; background: url('../../assets/img/bigScreen/decoration-l.png') no-repeat center / 100% 100%; } .left-sidebar.blue{ border: 1px solid #177EE5; box-shadow: inset 0 0 30px 8px rgba(#177EE5, 0.6); } .left-sidebar::before{ content: ''; position: absolute; left: -32px; top: -34px; width: 100%; height: calc(100% + 66px); background: url('../../assets/img/bigScreen/decoration-left.png') no-repeat center / 100% 100%; z-index: 0; pointer-events: none; } .right-sidebar{ position: absolute; top: 125px; right: 40px; width: 360px; height: calc(100% - 180px); display: flex; flex-wrap: wrap; justify-content: space-evenly; background:rgba(#0d1825, 0.1); border-radius: 4px; opacity: 1; z-index: 99; backdrop-filter: blur(40px); -webkit-backdrop-filter: blur(40px); padding: 10px; box-sizing: border-box; background: url('../../assets/img/bigScreen/decoration-r.png') no-repeat center / 100% 100%; } .left-sidebar.blue-border,.right-sidebar.blue-border{ border: 1px solid #177EE5; box-shadow: inset 0 0 30px 8px rgba(22, 125, 227, 0.6); } .right-sidebar::before{ content: ''; position: absolute; right: -32px; top: -34px; width: 100%; height: calc(100% + 66px); background: url('../../assets/img/bigScreen/decoration-right.png') no-repeat center / 100% 100%; z-index: 0; pointer-events: none; } .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.long{ width: 680px; background: url('../../assets/img/bigScreen/header-title-long.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; } .scroll-table-header{ width: 100%; height: 38px; width: 100%; display: flex; justify-content: space-around; align-items: center; background: linear-gradient(90deg, rgba(10,31,51,0.2) 0%, #0A1F33 53%, rgba(10,31,51,0.2) 100%); border-radius: 0px 0px 0px 0px; border: 1px solid; border-image: linear-gradient(90deg, rgba(51, 153, 255, 0), rgba(178, 216, 255, 0.2), rgba(51, 153, 255, 0)) 1 1; .header-item { font-size: 14px; color: #fff; text-align: center; padding: 0 4px; box-sizing: border-box; } } .scroll-table-body{ width: 100%; height: calc(100% - 38px); overflow: hidden; color: #fff; } .scroll-table-column{ width: 100%; display: flex; justify-content: space-around; align-items: center; gap: 6px; line-height: 38px; height: 38px; background: linear-gradient(90deg, rgba(0,13,26,0.1) 0%, #001A33 50%, rgba(0,26,51,0) 100%); opacity: 1; border: 1px solid; border-image: linear-gradient(90deg, rgba(51, 153, 255, 0), rgba(178, 216, 255, 0.2), rgba(51, 153, 255, 0)) 1 1; } .column-item { text-align: center; font-size: 12px; box-sizing: border-box; font-weight: 400; color: #fff; padding: 0 4px; box-sizing: border-box; .dot{ display: inline-block; border-radius: 8px; width: 16px; height: 16px; position: relative; margin-right: 4px; } .dot::after{ position: absolute; content:''; left: 50%; top: 50%; transform: translate(-50%, -50%); border-radius: 6px; width: 6px; height: 6px; opacity: 1; } .dotshine.dot{ animation: shine1 4s linear infinite; } .dotshine.dot::after{ animation: shine2 4s linear infinite; } } .column-item { .dot1{ background: rgba(0, 230, 230, 0.15); } .dot1::after{ background: #00E5E5; } .dot2{ background: rgba(255, 218, 129, 0.15); } .dot2::after{ background: #FFDA81; } .dot3{ background: rgba(255, 136, 77, 0.15); } .dot3::after{ background: #FF884D; } } @keyframes shine1 { 0% { transform: scale(0.5) ; } 50% { transform: scale(1.2); } 100% { transform: scale(0.5) ; } } @keyframes shine2 { 0% { opacity: 0.6; } 100% { opacity: 1; } 100% { opacity: 0.6; } }