// 设置向导 .stupWizard { height: 70vh; display: flex; .stupWizardLeft { background-color: #0C111A; flex-shrink: 0; width: 154px; height: 100%; overflow-y: auto; >div { display: flex; align-items: center; cursor: pointer; padding: 12px 16px; box-sizing: border-box; >span { color: #EEEEEE; font-size: 16px; margin-left: 10px; } >img { height: 20px; } } .active { background-color: #131924; >span { color: #5575F2; } } } .stupWizardRight { flex-grow: 1; height: 100%; position: relative; >div { display: flex; flex-direction: column; height: 100%; >span { flex-shrink: 0; color: #FFFFFF; font-size: 16px; border-bottom: 1px solid #292E33; padding: 10px 20px; box-sizing: border-box; } >div { flex-grow: 1; overflow-y: auto; overflow-x: hidden; padding: 20px; box-sizing: border-box; } } } } .videoComponents { >div:nth-child(1) { width: 100%; height: 296px; border-radius: 10px; overflow: hidden; border: 1px #292E33 solid; position: relative; >video { width: 100%; height: 100%; z-index: 1; position: absolute; left: 0; top: 0; } } >div:nth-child(2) { width: 100%; margin-top: 10px; display: flex; align-items: center; >span { color: white; } } }