@use './variables.scss' as *; .safety-platform-container { display: flex; flex-direction: column; gap: 10px; width: 100%; height: 100%; &__main, &__header, &__footer { width: 100%; background-color: $white-color; border-radius: 4px; } &__header { display: flex; flex-direction: column; justify-content: space-between; gap: 16px; padding: 16px 22px; flex-shrink: 0; // 面包屑标题 .breadcrumb-title { font-size: 20px; font-weight: 600; color: rgba($text-color, 0.85); } } &__main { flex: 1; padding: 20px; overflow-y: auto; } &__footer { @include flex-center; justify-content: flex-end; height: 88px; flex-shrink: 0; padding: 28px; } }